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;
}

body {
    font: 16px/1.42857143 $primaryFont;
    overflow-x: hidden;

}
h1,h2,h3,h4,h5,h6,span{
    text-align: left;
}
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: $primaryColor;
    text-decoration: none !important;
    outline: 0;
    @include trans(.2s);
}

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;
    direction: ltr;
}

p {
    text-align: left;
    font: 16px/1.4 $primaryFont;
    color: $textColor;

    @include mq(t){
        font-size: 18px !important;
    }
}

a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    text-align: left;
}

i{
    @include trans(.2s);
}

.btn {
    background: transparent;
    color: #fff;
    text-align: left;
    padding: 0;
    font: 21px/1 $primaryFont;
    display: block;
    @include trans(.2s);
    outline: 0;
    border: 0;
    float: left;
    direction: ltr;
    border-radius: 0;
    text-decoration: none !important;

    @include mq(t){
        font-size: 18px;
    }
    i.fa-long-arrow-alt-right{
        &:before{
            content: '\f30b' #{"/*rtl:'\f30a'*/"};
            transform:rotate(45deg);
        }
    }
    i.fa-long-arrow-alt-left{
        &:before{
            content: '\f30a' #{"/*rtl:'\f30b'*/"};
            transform:rotate(45deg);
        }
    }
    &:active{
        &:hover, &:focus {
            background: none;
            outline: 0;
            background: transparent;
            color: darken(#fff, 10%);
            box-shadow: none;
        }
    }
    &:hover, &:focus {
        background: none;
        outline: 0;
        background: transparent;
        color: darken(#fff, 10%);
        box-shadow: none;

        i{
            margin-left: 13px;
        }
    }
}

.main-title {
    font: 39px/1 $primaryFont;
    font-weight: 800;
    color: $primaryColor;

    @media (max-width: $tablet) {
        font-size: 25px;
    }

}

.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 17px;
    border: 0;
    border-bottom: 2px solid #787878;
    background: #fff;
    font: 15px/1 $primaryFont;
    outline: 0;
    text-align: left;
}

input[type="submit"] {
    background: $primaryColor;
    width: 205px;
    height: auto !important;
    margin: 0 auto;
    color: #fff;
    @include trans(.2s);

    &:hover {
        background: darken($primaryColor, 10%);
    }
}

.parsley-required, .parsley-equalto {
    color: #a94442;
    padding: 10px;
    font: 13px/1 $primaryFont;
}

a.ideax-btn{
    font: 500 18px/1 $primaryFont;
    display: block;
    color: #fff;

    i{
        position: relative;
        top: 2px;
    }
    &:hover{
        color: #d4d4d4;
    }
    span{
        font:  italic 900 18px/1 $primaryFont;
    }
}
.section-btn{
    color: #000;

    &:hover{
        color: lighten(#000,20%);
    }
}
.cover{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.overlay{
    position: relative;

    &:after{
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.5);
        position: absolute;
        top: 0;
        left: 0;
        @include trans(.2s);
    }
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
button.btn{
    float: right;
    text-align: right;
    padding: 15px 95px 15px 20px;
    background: #ebebeb;
    font-size: 20px;
    width: 100%;

    &.section-btn-left{
        padding: 15px 20px 15px 95px;

        @include mq(m){
            padding: 15px 20px 15px 0;
        }
    }
}
.arrow-right{
    width: 23px;
    display: inline-block;
    height: 20px;
    transform: none #{"/*rtl: rotate(180deg) */"};

    &.arrow-left{
        transform: rotate(-180deg) translateY(-6px) #{"/*rtl: none */"};
    }
    &.arrow-bottom{
        transform: rotate(90deg) translate(15px, 13px) #{"/*rtl: rotate(90deg) translate(15px, -17px) */"} ;
    }
    &.slick-arrow{
        width: 50px;
        padding: 15px 10px 25px;

        @include mq(t){
            padding: 15px 8px 25px;
        }
        img{
            display: block;
        }
    }
    img{
        width: 100%;

        @include mq(t){
            width: 20px;
        }
    }

}
button.section-btn {
    .arrow-right {
        transform: none #{"/*rtl: rotate(180deg) translateY(-3px) */"};
    }
    .arrow-left {
        transform: rotate(180deg) translateY(-3px) #{"/*rtl: none */"};

        @include mq(t){
            float: left;
        }
    }
}
.mob-off {
    @include mq(t){
        display: none !important;
    }
}
.mob-on{
    display: none;

    @include mq(t){
        display: block !important;
    }
}

[class*="col-"]{
    &.is-visible{
        opacity: 1 !important;
    }
}
.projects-list{
    .row{
        &:before,
        &:after{
            @include mq(t){
                content: none;
            }
        }
    }
}




.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}

.sticky + main {
    padding-top: 60px;
}
.sticky + body{
    padding-top: 110px
}



.afa{
    animation: fadeInUp .8s ease .5s both;
    -webkit-animation: fadeInUp .8s ease .5s both;
}
.afb{
    animation: fadeInUp .8s ease .8s both;
    -webkit-animation: fadeInUp .8s ease .8s both;
}
.afc{
    animation: fadeInUp .8s ease 1.1s both;
    -webkit-animation: fadeInUp .8s ease 1.1s both;
}
.afd{
    animation: fadeInUp .8s ease 1.4s both;
    -webkit-animation: fadeInUp .8s ease 1.4s both;
}

.is-visible{
    .afa{
        animation: fadeInUp .8s ease .5s both !important;
        -webkit-animation: fadeInUp .8s ease .5s both !important;
    }
    .afb{
        animation: fadeInUp .8s ease .8s both !important;
        -webkit-animation: fadeInUp .8s ease .8s both !important;
    }
    .afc{
        animation: fadeInUp .8s ease 1.1s both!important;
        -webkit-animation: fadeInUp .8s ease 1.1s both!important;
    }
    .afd{
        animation: fadeInUp .8s ease 1.4s both!important;
        -webkit-animation: fadeInUp .8s ease 1.4s both!important;
    }
}
.d-100{
    animation-delay: 1s;
}
.d-150{
    animation-delay: 1.5s;
}
.d-200{
    animation-delay: 2s;
}



// Remove Hover from all the website

//html *:hover {
//    @include mq(t){
//        pointer-events: none !important;
//    }
//}