/*Generics*/
*{
    box-sizing: border-box;
    outline: none;
    list-style: none;
    border: none;
}
html,body,figure,ul,li, fieldset{
    padding: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
img{
    display: block;
    width: 100%;
}
a{
    text-decoration: none;
}
body{
    font-family: Poppins;
    overflow-x: hidden;
}
main{
    position: relative;
}
p{
    font-size: 19px;
    line-height: 140%;
}

/* Preloader */
.preloader{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 1000;
    flex-direction: column;
    padding: 20%;
    text-align: center;
    font-size: 14px;
    line-height: 141%;
                
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
}
.preloader img{
    width: 200px;
    margin-bottom: 10px;

    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d; 

    -webkit-animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);
    -moz-animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);
    -ms-animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);
    -o-animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);
    animation: logo 2.5s infinite cubic-bezier(0.410, 0.060, 0.170, 1.550);

    transition: all .2s;
}
.preloader span{
    display: block;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #999;
    width: 270px;
    text-align: center;
    font: 300 1.2em Roboto;
}
.preloader span::after{
    content:'';

    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-name: loading-dots;
    animation-direction: linear;
}

@keyframes loading-dots{
    0%{content: '';}
    25%{content: '.';}
    50%{content: '..';}
    90%{content: '...';}
    100%{content: '';}
};
@-webkit-keyframes loading-dots{
    0%{content: '';}
    25%{content: '.';}
    50%{content: '..';}
    90%{content: '...';}
    100%{content: '';}
};
@keyframes logo{
    0%{
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    70%{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
    100%{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
@-webkit-keyframes logo{
    0%{
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    70%{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
    100%{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}


/*Objects*/
.container{
    position: relative;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}
.center{text-align: center}
.center-obj{
    margin-left: auto;
    margin-right: auto;
}

.title-xxl{
    text-align: center;
    margin-bottom: 50px;
}
.title-xxl span{
    position: relative;
    display: block;
    font-size: 45px;
    line-height: 120%;  
}
.title-xxl strong{
    position: relative;
    text-transform: uppercase;
    color: #185c98;
    font-size: 80px;
    font-weight: 400;
    display: block;
    line-height: 100%;
}
.title-xxl.icon span{
    left: 50%;
    width: 50%;
}
.title-xxl.icon strong{
    left: 50%;
    width: 50%;
}
.title-xxl.icon{
    text-align: left;
    margin-bottom: 60px;
}
.title-xxl.icon img{
    position: absolute;
    top: 50%;
    right: 50%;
    height: 193px;
    width: auto;
    transform: translateY(-50%);
    margin-right: 30px;
}

.title-l{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}




.wa-modal{
    position: fixed;
    z-index: 100;
    background-color: rgba(0,0,0,0.6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;pointer-events: none;

    transition: all .2s;
}
.wa-modal .wrapper{
    background-color: #f1f1f1;
    max-width: 440px;
    min-width: 300px;
    width: 90%;
    border-radius: 10px 10px 15px 15px;
    pointer-events: all;

    transition: all .2s;
}
.wa-modal .wrapper p{
    font-size: 0.8rem;
    text-align: center;
    line-height: 135%;
    margin: 15px 15px;
}
.wa-modal .wrapper fieldset{}
.wa-modal .wrapper fieldset textarea{
    width: 100%;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.3);
    height: 160px;
    font: 400 1rem Poppins;
    padding: 20px 25px;
}
.wa-modal .wrapper a{
    display: block;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 0 0 10px 10px;
    padding: 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: -7px;
}
.wa-modal .wrapper a i{
    margin-left: 10px;
}

#close-wamodal{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0;
}
#close-wamodal:checked{
    visibility: hidden;
    opacity: 0;
}
#close-wamodal:checked ~ .wa-modal{
    visibility: hidden;
    opacity: 0;    
}
#close-wamodal:checked ~ .wa-modal .wrapper{
    transform: scale(0.8);
}
#close-wamodal{
    visibility: visible;
}
#close-wamodal ~ .wa-modal{
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
#close-wamodal ~ .wa-modal .wrapper{
    transform: scale(1);
}






/*Components*/

/* NAV */
header{
    background: url("../images/header-bg.png") no-repeat bottom center;
    margin-top: 40px;
    margin-bottom: 120px;
}
header .nav-bar{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}
header .nav-bar > i,
header .nav-bar > input{
    display: none;
}
header .nav-bar .logo-p{
    margin-bottom: -25px;
}
header .nav-bar .logo-p figure{}
header .nav-bar .logo-p figure img{
    width: 280px;
}
header .nav-bar nav{}
header .nav-bar nav ul{
    display: flex;
}
header .nav-bar nav ul li{
    margin-left: 25px;
}
header .nav-bar nav ul li a{
    font-weight: 600;
    font-size: 19px;
    cursor: pointer;
    color: #444;
}
header .nav-bar nav ul li a i{
    font-size: 25px;
}
header .nav-bar .contact-info{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    line-height: 25px;
}
header .nav-bar .contact-info strong{
    font-size: 25px;
    font-weight: 300;
}
header .nav-bar .contact-info small{
    font-size: 18px;
}

header .slider{
    border: 10px solid #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
    position: relative;
}
header .slider .slide{
    position: relative;
    display: block;
    overflow: hidden;
    height: 570px;
}
header .slider .slide figure{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
header .slider .slide figure img{
    position: absolute;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    margin: 0 auto;
}
header .slick-arrow{
    background: #fff;
    font-size: 30px;
    position: absolute;    
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    z-index: 10;
    cursor: pointer;
}
header .slick-arrow.left{
    left: 0;
}
header .slick-arrow.right{
    right: 0;
}

header .head-caption{
    text-align: center;
    color: #fff;
    margin-top: 40px;
    padding-bottom: 60px;
}
header .head-caption h5{
    font-size: 40px;
    line-height: 120%;
}
header .head-caption p{
    font-size: 20px;
    line-height: 120%;
    margin-top: 15px;
}



/* CONTENT */
main{}
main .history{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
main .history .block{
    width: 48%;
}
main .history .block:nth-child(1){
    text-align: right;
}
main .history .block:nth-child(2){
    text-align: left;
}
main .history .block h5{
    font-size: 100px;
    color: #185c98;
    font-weight: 300;
    margin-bottom: 5px;
}
main .history .block p{}
main .bg-blue-block{
    margin-bottom: 70px;
    background-color: #185c98;
    border-radius: 10px;
    padding: 30px 50px;
    color: #fff;
}
main .bg-blue-block h5{
    font-size: 30px;
}
main .bg-blue-block p{
    margin-bottom: 30px;
}
main .services{
    background: url(../images/serv-bg.png) no-repeat center;
    padding: 50px 70px;
    padding-right: 40%;
    margin-bottom: 90px;
}
main .services h5{
    color: #185c98;
}
main .services p{
    margin-bottom: 50px;
}
main .services .service-flow{
    display: flex;
    flex-wrap: wrap;
}
main .services .service-flow .block{
    width: 48%;
    display: flex;
    align-items: flex-start;
}
main .services .service-flow .block img{
    width: 45px;
    margin-right: 30px;
}
main .services .service-flow .block .caption{
    font-size: 20px;
    font-weight: 400;
}
main .services .service-flow .block .caption h5{
    font-size: 20px;
    font-weight: 400;
}
main .services .service-flow .block .caption p{
    font-size: 16px;
    line-height: 120%;
}



/* FOOTER */
footer{
    padding-top: 0%;
    position: relative;
    display: block;
    background: url(../images/footer-bg.png) no-repeat bottom center;
}
footer > img{
    position: absolute;
    left: 0;
    height: 1025px;
    width: auto;
    bottom: 0;
}
footer form iframe{
    height: 740px;
    max-width: 400px;
    position: relative;
    z-index: 10;
}
footer form{
    width: 400px;
    margin-left: 50%;
}
footer form .title-xxl strong{
    text-transform: capitalize;
}
footer .contact-info{
    display: flex;
    justify-content: flex-end;
    padding-bottom: 40px;
    padding-top: 70px;
}
footer .contact-info .logo-footer{}
footer .contact-info .logo-footer figure{}
footer .contact-info .logo-footer figure img{
    width: 510px;
}
footer .contact-info .block{
    color: #fff;
    display: flex;
    text-align: left;
    justify-content: center;
    flex-direction: column;
    margin-left: 50px;
}
footer .contact-info .block strong{
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
}
footer .contact-info .block p{
    font-size: 22px;
    line-height: 120%;
}


@media only screen and (max-width: 1025px){
    main .services {
        padding: 50px 70px;
    }
    footer > img {
        height: 745px;
    }
    footer .contact-info {
        flex-direction: column;
    }
    footer .contact-info .logo-footer {
        margin-left: 40%;
    }
    footer .contact-info .logo-footer figure img {
        width: 300px;
    }
    footer .contact-info .block {
        flex-direction: column;
        margin-left: 40%;
    }
    footer .contact-info .block strong {
        font-size: 16px;
    }
    footer .contact-info .block p {
        font-size: 17px;
    }
    main .services {
        margin-bottom: 40px;
    }
    header .slider .slide{
        height: 480px;
    }
    footer form {
        margin-left: 0;
        margin: auto;
    }
    footer .contact-info {
        padding-top: 30px;
    }
    
}
@media only screen and (max-width: 770px){
    header .slider .slide {
        height: 280px;
    }
    header .nav-bar .contact-info {
        display: none;
    }
}
@media only screen and (max-width: 550px){
    header .nav-bar {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 0px;
        z-index: 100;
        background-color: #fff;
        top: 0;
        box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
        padding: 0 20px;
        width: 100%;
    }
    header .nav-bar .logo-p {
        margin-bottom: -4px;
    }
    header .nav-bar .logo-p figure img{
        width: 180px;
    }
    header .nav-bar nav {
        position: fixed;
        left: 0;
        top: 0;
        background-color: rgba(0,0,0,0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        display: none;
    }
    header .nav-bar nav ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: 100%;
        color: #fff;
    }
    header .nav-bar nav ul li a {
        font-weight: 600;
        font-size: 19px;
        cursor: pointer;
        padding: 5px 10px;
        display: block;
        color: #fff;
    }
    .title-xxl.icon img {
        height: 83px;
        right: 60%;
    }
    .title-xxl.icon span,
    .title-xxl.icon strong {
        left: 40%;
    }
    main .history .block h5 {
        font-size: 50px;
    }
    main .history .block p {
        font-size: 15px;
    }
    .title-xxl.icon {
        margin-bottom: 20px;
    }
    .title-xxl span {
        font-size: 25px;
    }
    .title-xxl strong {
        font-size: 50px;
    }
    header {
        margin-bottom: 60px;
        padding-top: 80px;
        background-size: 1080px;
    }
    p{
        font-size: 16px;
        line-height: 120%;
    }
    main .services .service-flow .block {
        width: 100%;
    }
    footer > img {
        height: auto;
        width: 100%;
        transform: rotate(18deg);
        left: -140px;
        bottom: -30px;
    }
    header .head-caption h5 {
        font-size: 25px;
        line-height: 105%;
    }
    header .head-caption p {
        font-size: 16px;
    }
    footer {
        overflow: hidden;
    }
    footer .contact-info .logo-footer,
    footer .contact-info .block {
        margin-left: 0%;
        text-align: center;
    }
    footer .contact-info {
        justify-content: center;
        align-items: center;
    }
    header .slider .slide figure img {
        width: 100%;
    }
    header .head-caption {
        margin-top: 20px;
    }
    header .slider .slide {
        height: 200px;
    }
    header .slick-arrow {
        width: 20px;
        height: 20px;
        font-size: 15px;
    }
    main .history .block {
        width: 100%;
    }
    main .history {
        flex-direction: column;
    }
    main .bg-blue-block {
        padding: 10px 20px;
    }
    main .services {
        padding: 30px 30px;
    }
    header .nav-bar > i,
    header .nav-bar > input{
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }
    header .nav-bar > i{
        font-size: 20px;
    }
    header .nav-bar > input{
        margin: 0;
        height: 20px;
        width: 20px;
        z-index: 101;
        opacity: 0;
    }

    header .nav-bar > input ~ i.fa-bars {
        display: block;
    }
    header .nav-bar > input ~ i.fa-times {
        display: none;
    }

    header .nav-bar > input:checked ~ nav {
        display: block;
    }
    header .nav-bar > input:checked ~ nav {}
    header .nav-bar > input:checked ~ i{
        color: #fff;
    }
    header .nav-bar > input:checked ~ i.fa-bars {
        display: none;
    }
    header .nav-bar > input:checked ~ i.fa-times {
        display: block;
    }
    header .slider {
        border: 5px solid #fff;
    }
}
@media only screen and (max-width: 400px){}
@media only screen and (max-width: 321px){}
