:root{
    --mainFont: 'Archivo', sans-serif;


}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #00589D #EFE5DF;

}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
    padding: 10px;

}

*::-webkit-scrollbar-track {
    background: #EFE5DF
}

*::-webkit-scrollbar-thumb {
    background-color: #00589D;

}

html {
    font-size: 62.5%;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    line-height: 1;
    font-family: var(--mainFont);
    font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: inherit;
    margin: 0;
}

ol,
ul,
li {
    list-style: none;
}

a {
    outline: none;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

img {
    border-style: none;
}
  
.img-res {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: bottom;
}

::-moz-selection {
    color: #fff;
    background: #000;
    text-shadow: none;
}

::selection {
    color: #fff;
    background: #000;
    text-shadow: none;
}

/* ! Global */
.cnt{
    width: 100%;
    margin: 0 auto;
}

.cnt__1245{
    max-width: 124.5rem; 
}

.cnt__1345{
    max-width: 134.5rem;
}

.cnt__1745{
    max-width: 174.5rem;
}

.cnt__wrapper{
    width: 100%;
    display: flex;
}

.banner{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.banner::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.logo{
    width: 144px;
    position: absolute;
    top: 5%;
    left: 10%;
    z-index: 1;
}

.banner__desc{
    color: #fff;
    position: absolute;
    z-index: 1;
    font-weight: 300;
    font-size: 1.8rem;
    line-height: 2.4rem;
    top: 50%;
    left: 25%;
    width: 40%;
    transform: translateY(-50%);
}

.banner__desc h1{
    font-size: 6.5rem;
    line-height: 6.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.header{
    height: 55px;
    background: #00589D;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
}

.header__cnt{
    max-width: 157.5rem;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.header__wrapper{
    display: flex;
    width: 100%;
    height: 100%;
}

.header nav {
    width: 100%;
    display: flex;
    height: 100%;
}

.header nav > ul {
    width: 100%;
    display: flex;
    align-items: center;
}

.header nav > ul > li{
    width: 16.6666%;
    padding: 0 24px;
    height: 100%;
    border-left: 1px solid #1C6FB1;
    display: flex;
    align-items: center;
}

.header nav > ul > li:last-child{
    border-right: 1px solid #1C6FB1;
}

.header nav > ul > li > a{
    font-size: 1.6rem;
    color: #fff;
}

.header nav > ul > li > a span{
    font-weight: 700;
    color: #3479AF;
    margin-right: 10px;
}

.menu{
    display: none;
}

@media (max-width: 700px) {
    .menu {
        position: fixed;
        right: 5%;
        top: 3%;
        cursor: pointer;
        z-index: 999;
        width: 45px;
        display: inline;
    }
    
    .menu svg{
        width: 100%;
    }
    
    .menucl {
        stroke: #fff;
        transition: all .3s ease-in-out;
    }
    
    #MENU {
        fill: #fff;
        transition: all .3s ease-in-out;
    }
    
    .menu.close .openmenu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .closemenu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
        right: 0;
    }
    
    .menu.close .closemenu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        fill: #fff
    }



    .header {
        height: 55px;
        background: transparent;
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 998;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);

        transition: all .3s linear;
    }

    .header.active{
        transform: translateX(40%);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        background: rgba(0, 88, 155, .6);
    }

    .header nav{
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header.active nav{

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

    }

    .header nav > ul {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .header nav > ul > li {
        width: 100%;
        padding: 15px 15px;
        height: auto;
        border-left: none;
        display: flex;
        align-items: center;
    }

    .header nav > ul > li > a {
        font-size: 1.8rem;
    }

    .logo {
        width: 80px;
        position: fixed;
        top: 3%;
        left: 5%;
        z-index: 999;
    }

    .header nav > ul > li > a span {
        font-weight: 700;
        color: #fff;
    }

}

/* ! intro */
.intro{
    padding-top: 11.4rem;
}

.intro .cnt__wrapper{
    justify-content: space-between;
}

.intro__left{
    width: 23.3457%;
}

.intro__right{
    width: 74.3494%;

    max-width: 100rem;
}

.intro__desc{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.intro__right--img{
    width: 30%;
}

.intro__right--desc{
    width: 61%;
    font-weight: 300;
    line-height: 2rem;
    color: #213450;
    padding-top: 3rem;
}

.suptitle{
    color: #546886;
    font-size: 1.6rem;
    display: flex;
    margin-bottom: 15px;
}

.suptitle span{
    font-weight: 700;
    color: #00589D; 
    display: flex;
    align-items: center;
}

.suptitle span::after{
    content:'';
    width: 55px;
    height: 1px;
    background: #ADAEC1;
    margin: 0 10px;
}

.maintitle{
    font-weight: 700;
    color: #00589D;
    font-size: 3.5rem;
    line-height: 3.8rem;
}

.intro__key{
    width: 60%;
    margin-top: 10px;
    position: relative;
}

.intro__key span{
    font-weight: 700;
    color: #00589D;
    font-size: 6rem;
    line-height: 6.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    display:none;
}

.intro__key small{
    font-weight: 300;
    font-size: 2.6rem;
    line-height: 2.8rem;
    color: #213450;
}

.intro__key .key1{
    top: 45%;
    transform: translateY(-50%);
    left: 30%;
}

.intro__key .key2{
    top: 45%;
    transform: translateY(-50%);
    right:13%;
}

.services{
    padding: 5rem 0
}

.services__title{
    width: 35%;
}

.services .cnt__wrapper{
    flex-direction: column;
}

.services__wrapper{
    display: flex;
    margin-top: 16rem;
}

.services__box{
    width: 33.3333%;
    padding: 0 15px;
    height: 515px;
}

.services__box:nth-child(2){
    position: relative;
    top: -90px;
}

.services__inner{
    box-shadow: 0px 2px 31px -10px rgba(0,0,0,.25);
    -webkit-box-shadow: 0px 2px 31px -10px rgba(0,0,0,.25);
    -moz-box-shadow: 0px 2px 31px -10px rgba(0,0,0,.25);
    height: 100%;
    padding: 0 40px;
}

.services__img{
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    top: -70px;
}

.services__desc{
    font-weight: 300;
    color: #213450;
    line-height: 2.1rem;
    text-align: center;
    position: relative;
    top: -70px;
}

.services__desc h3{
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.2rem;
    color: #00589D;
    margin-bottom: 10px;
}

.services__contact{
    font-weight: 300;
    font-size: 2rem;
    text-align: center;
    color: #213450;
    margin: 7rem 0 0;
}

.services__contact a{
    color: #00589D;
    font-weight: 700;
}

.services__contact a:hover{
    color: #213450;
}


.mission{
    padding: 13rem 0;
}

.mission__img{
    position: relative;
}

.mission__title .suptitle{
    color: #fff;
}

.mission__title .maintitle{
    color: #fff;
    width: 35%;
}

.mission__title .suptitle span{
    color: #fff;
}

.mission__desc{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
    left: 0;
    z-index: 1;
    align-items: center;
}

.mission__block{

}

.mission__block .cnt__wrapper {
    justify-content: space-between;
}

.mission__left{
    width: 46%;
}

.mission__right{
    width: 46%;
}

.mission__block--title{
    font-size: 2.6rem;
    line-height: 3rem;
    font-weight: 300;
    color: #213450;

    padding: 0 15px;
}

.mission__block--title .maintitle{
    margin-bottom: 2rem;
}

.mission__left .suptitle {
    margin-bottom: 5rem;
}

.mission__left .mission__block--title{
    margin-bottom: 8rem;
}

.mission__right .mission__block--title{
    margin-top: 8rem;
}

.slider{
    padding: 10rem 0;
}

.slider .maintitle{
    text-align: center;
    margin-bottom: 6rem;
}

.swiper-slide::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
}

.swiper-slide.swiper-slide-active::after{
    background: rgba(255, 255, 255, 0);
}

.slider{
    position: relative;
}

.swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 80px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullet-active {
    background: #213450;
}

.contact{
    background: #00589D;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact .cnt{
    position: relative;
    z-index: 2;
}

.contact .cnt__wrapper{
    flex-direction: column;
}

.contact--title {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.contact--title h3,.contact--title h4 span{
    color: #fff;
}

.contact--title h4{
    color: #fff;
}

form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.contact input[type="text"],
.contact input[type="tel"],
.contact input[type="email"]{
    width: 100%;
    height: 55px;
    border: none;
    background: #4D8BBB;
    border-radius: 15px;
    margin-bottom: 20px;

    color: #fff;
    font-family: var(--mainFont);
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0px 30px;
}

.contact textarea{
    width: 100%;
    height: 180px;
    border: none;
    background: #4D8BBB;
    border-radius: 15px;
    padding: 0px 30px;

    
    color: #fff;
    font-family: var(--mainFont);
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0px 30px;
}

.contact input[type="submit"] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.1rem;
    background: none;
    border: none;
    color: #fff;

    margin: 0 auto;
    margin-top: 3rem;
    cursor: pointer;

    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABHNCSVQICAgIfAhkiAAAAI9JREFUKFOV0oERQDAMBVDZwCZsgEmwgU0YoSZhBBvVb69cVZJee+e4tE8kQhWzrLU1wgeui4hm7gwJcEF8DXuGwyx0AFkNbqOERZjDKtQw4ZM2HGi4WqNYHz37mh20GcRtD0/GNoO7aH9Hxqm0Ro/cS0q6+iIVJv/xg0QIFE/OD2nQzeoZZtXXlK5sc6Ru3+WqQExoUqqxAAAAAElFTkSuQmCC)100% center no-repeat;
    padding-right: 35px;
    cursor: pointer;
    transition: all .3s ease-in-out;

}

.contact input[type="submit"]:hover{
    color: #213450;
}

::-webkit-input-placeholder { /* Edge */
    font-family: var(--mainFont);
    font-size: 1.8rem;
    font-weight: 600;
    color: #00589D;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: var(--mainFont);
    font-size: 1.8rem;
    font-weight: 600;
    color: #00589D;
}

::placeholder { 
    font-family: var(--mainFont);
    font-size: 1.8rem;
    font-weight: 600;
    color: #00589D;
}
    
.contact__svg{
    width: 45.8333%;
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1;
}


.footer{
    height: 449px;
    padding: 75px 0;
    overflow: hidden;
}

.footer__cnt{
    max-width: 162.5rem;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.footer__cnt .cnt__wrapper{
    height: 100%;
    justify-content: space-between;
}

.footer__left{
    display: flex;
    width: 25%;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo{
    width: 120px;
}

.footer__copyright{
    font-weight: 300;
    color: #213450;
    
}

.footer__right{
    width: 66.9538%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.footer__right::before {
    content: '';
    position: absolute;
    height: 200%;
    width: 1px;
    background: #CDCCD1;
    left: 7%;
    top: -50%;
}


.footer__box a{
    font-weight: 300;
    color: #213450;
    line-height: 2rem;
    font-size: 1.6rem;
}

.footer__box a.mainMail{
    color: #00589D;
    font-size: 3rem;
    font-weight: 400;
}

.footer__box{
    display: flex;
    flex-direction: column;
    margin-left: 75px;
}

.footer__title{
    color: #00589D;
    font-size: 2rem;
    font-weight: 400;
}

.footer__sub{
    font-weight: 700;
    font-size: 1.8rem;
    color: #213450;
}

.footer__box  ul{
    display: flex;
}

.footer__box  ul li{
    margin-left: 30px;
}

.footer__box  ul li:first-child{
    margin-left: 0;
}

.footer__box  ul li a{
    color: #00589D;
    font-size: 2.6rem;
    font-weight: 300;
}

.bot{
    margin-top: auto;
}

.footer__box a:hover{
    color: #00589D;
}


.form-item{
    margin-top: 0;
    margin-bottom: 0;
    width: 48%;
}

.form-actions{
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.js-form-item.form-item.js-form-type-textarea{
    width: 100%;
}

.path-user .header,
.path-user .block-footerblock{
    display:none
}


.webform-confirmation{
    width: 100%;
    font-weight: 600;
    color: #ffff;
    font-size: 2.5rem;
    line-height: 2.8rem;
}