html {
    font-family: $primaryFont;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
//@include mqn(t){
//    *,
//    *::after,
//    *::before {
//        cursor: none !important;
//    }
//}
body {
    font: 16px/1.42857143 $primaryFont;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: $primaryColor;
    text-decoration: none;
    @include trans(.2s);
    outline: none;
    cursor: pointer;
}

a:hover,
a:focus {
    color: darken($primaryColor, 10%);
    text-decoration: none;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    text-align: left;
    font: 16px/1.6 $primaryFont;
    color: $textColor;
}



.btn {
    padding: 13px 35px;
    text-align: center;
    display: block;
    background: transparent;
    color: #333;
    border-radius: 50px;
    font: 14px/1.2 $primaryFont;
    @include trans(.2s);
    outline: 0;
    border: 1px solid #333;

    &:hover, &:focus {
        border: 1px solid $primaryColor;
        outline: 0;
        color: #fff;
        background: darken($primaryColor, 10%);
    }
    //@media (max-width: $laptop) {
    //    font-size: 12px;
    //    padding: 10px 20px;
    //}
}

.main-title {
    font: 39px/1 $primaryFont;
    font-weight: 800;
    color: $primaryColor;

    @media (max-width: $tablet) {
        font-size: 25px;
    }

}

.input-field {
    width: 100%;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #d6d6d6;
    font: 14px/1 $primaryFont;
    outline: 0;
    background: #dedede;
}

select.input-field {
    padding: 5px 20px;
}
textarea{
    resize: none;
}
.text_center {
    text-align: center;
}

.vcenter {
    @include flex_align_items(center);
    @include flex_justify_content(flex-start);
    @include display_flex();

    @media (max-width: $laptop) {
        display: block;
    }
}

label {
    color: $textColor;
    font: 17px/45px $primaryFont;
    margin-bottom: 0;
}

input {
    width: 100%;
    padding: 13px 25px;
    border-radius: 25px;
    border: 1px solid #d0d0d0;
    background: #fff;
    font: 14px/1 $primaryFont;
    outline: 0;
}
.cover{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.parsley-required, .parsley-equalto {
    color: #a94442;
    padding: 10px;
    font: 13px/1 $primaryFont;
}
.blue-text{
    color: $primaryColor;
}
.red-text{
    color: $secondaryColor;
}

.cursor{
    @include mqn(t){
        &.hover{
            .cursor-inner-dot{
                background: $secondaryColor;
            }
            .cursor-inner-circle{
                border: 1px solid $secondaryColor;
            }
        }
        .cursor-inner {
            z-index: 9999;
            pointer-events: none;
            position: absolute;
            top: 0;
            left: 0;
            mix-blend-mode: difference;
            border-radius: 50%;
        }
        .cursor-inner-dot {
            width: 6px;
            height: 6px;
            background: $primaryColor;
        }
        .cursor-inner-circle {
            width: 20px;
            height: 20px;
            border: 1px solid $primaryColor;
        }
    }
    &.project-hover{
        .cursor-inner{
            mix-blend-mode: multiply;
        }
    }
}


.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;


    .circular {
        -webkit-animation: rotate 2s linear infinite;
        animation: rotate 2s linear infinite;
        height: 50px;
        left: 50%;
        position: absolute;
        top: 50%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
        width: 50px;
        z-index: 4;
    }

    .path {
        stroke-dasharray: 1, 500;
        stroke-dashoffset: 0;
        -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
        animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
        stroke-linecap: round;
        stroke: #0066b3;
    }

    @-webkit-keyframes rotate {
        0% {
            -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
        }
        100% {
            -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    @keyframes rotate {
        0% {
            -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
        }
        100% {
            -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    @-webkit-keyframes dash {
        0% {
            stroke-dasharray: 1, 200;
            stroke-dashoffset: 0;
        }
        50% {
            stroke-dasharray: 89, 200;
            stroke-dashoffset: -35;
        }
        100% {
            stroke-dasharray: 89, 200;
            stroke-dashoffset: -124;
        }
    }

    @keyframes dash {
        0% {
            stroke-dasharray: 1, 200;
            stroke-dashoffset: 0;
        }
        50% {
            stroke-dasharray: 89, 200;
            stroke-dashoffset: -35;
        }
        100% {
            stroke-dasharray: 89, 200;
            stroke-dashoffset: -124;
        }
    }
}

// Make Collapse breakpoint in 1024px
@media (max-width: 1024px) {
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar-form {
        padding: 10px 15px;
        margin-top: 8px;
        margin-right: -15px;
        margin-bottom: 8px;
        margin-left: -15px;
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
        width:auto;
        float:none!important;
    }
}

.col-sm-4-o{
    @media (min-width: 768px) {
        width: 100%;
    }
    @include mqn(t) {
        width: 330px;
        padding-right: 0;
        padding-left: 30px;
        border-left: 1px solid #eee;
    }
}
.col-sm-8-o{
    @media (min-width: 768px) {
        width: 100%;
    }
    @include mqn(t) {
        width: 100%;
        margin-right: -330px;

        .col-container{
            margin-right:350px;
        }
    }
}
.inner{
    .container{
        @include mqx(d){
            width: 98%;
        }
    }
}