/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

*{
    padding: 0;
    margin: 0;
}
a { 
    text-decoration: none;
    cursor: pointer;
}
li{
    list-style-type: none;
}
input[type="checkbox"],input[type="radio"]{
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    padding:0;
}
.box-content{
  max-width: 1600px;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* header */
header{
    position: relative;
    padding-top: 40px;
}
header > img{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.menu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 90px;
}
.menu > ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu li{
    margin-right: 32px;
}
.menu li a{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    display: block;
    position: relative;
}
.menu li a:after{
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    content: '';
    background-color: #b4f6ff;
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.menu li:last-child a:after{
    display: none;
}
.menu li:hover a:after{
    opacity: 1;
}
.menu li:last-child{
    margin-right: 0; 
    margin-left: 23px;
}
.menu li:last-child a{
    padding: 15px 24px;
    border-radius: 21px;
    background: -webkit-gradient(linear, left top, right top, from(#2963bb), to(#18386b));
    background: -o-linear-gradient(left, #2963bb, #18386b);
    background: linear-gradient(to right, #2963bb, #18386b);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.menu li:last-child:hover a{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.logo-contact__box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.logo .line{
    margin: 0 20px 0 24px;
    width: 6px;
    background: #588cfc;
}
.logo__text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 7.5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-family: 'CentraleSansX';
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    color: #588cfc;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.logo__text span:first-child{
    color: #ffa024;
}
.contact{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
}
.contact a{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
}
header.burger .contact{
    margin: 0;
}
header.burger .contact a{
    margin: 0;
}
header.burger .contact a:last-child{
    margin-top: 5px;
}
/* /header */
/* Burger */
header.burger{
    display: none;
    background: -webkit-gradient(linear, left top, right top, from(#b5f2ff), to(#3985ff));
    background: -o-linear-gradient(left, #b5f2ff, #3985ff);
    background: linear-gradient(to right, #b5f2ff, #3985ff);
}
.hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 21px;
    height: 2px;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background: #333333;
    border-radius: 3px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.hamburger:before,
.hamburger:after {
    content: "";
    width: 31px;
    height: 2px;
    position: absolute;
    background: #333333;
    border-radius: 3px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.icon.active .hamburger {
    background: rgba(0, 0, 0, 0);
}

.icon.active .hamburger:before {
    top: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.icon.active .hamburger:after {
    top: 0;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
}
.burger_menu{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: -webkit-gradient(linear, left top, right top, from(#b5f2ff), to(#3985ff));
  background: -o-linear-gradient(left, #b5f2ff, #3985ff);
  background: linear-gradient(to right, #b5f2ff, #3985ff);
}
.burger_menu > div{
  margin-top: 90px;
  height: calc(100% - 90px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 110px;
}
/* /Burger */
/* Section 1 */
.main__title{
    margin-top: 120px;
    position: relative;
}
.main__title > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    padding-left: 100px;   
}
.main__title > img{
    position: absolute;
    left: 0;
    z-index: -1;
    bottom: -55%;
}
.main__title > div > div{
    width: 50%;
}
.main__title > div > div:first-child h1{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 66px;
    color: #112d58;
}   
.main__title > div > div:first-child p{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    color: #c9c6d4;
    margin: 40px 0;
}
.main__title > div > div:last-child{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.main__title form{
    -webkit-box-shadow: 0 0 80px 0px #d3d4d4;
            box-shadow: 0 0 80px 0px #d3d4d4;
    border-radius: 40px;
    width: 75%;
    height: 75px;
    padding:0 10px 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.main__title form button{
    background-color: #ffa024;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.main__title form button:hover{
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}
.main__title form input{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    border:none;
    background:none;
    outline:none;
    padding:0;
    color: #000;
    width: calc(100% - 60px);
    padding: 18px 0;
}
.main__title form input::-webkit-input-placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #b6b1c5;
}
.main__title form input::-moz-placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #b6b1c5;
}
.main__title form input:-ms-input-placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #b6b1c5;
}
.main__title form input::-ms-input-placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #b6b1c5;
}
.main__title form input::placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #b6b1c5;
}
/* /Section 1 */
/* Section 2 */
.section2{
    margin-top: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.section2 > div{
    width: 50%;
}
.section2 > div:last-child{
    width: calc(50% - 175px);
    margin: 0 100px 0 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.section2 > div:last-child h2{
    color: #112d58;
    font-family: 'CentraleSansX';
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    max-width: 360px;
    margin-left: 40px;
    margin-bottom: 70px;
}
.section2 > div:last-child p{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    color: #8597b4;
}
.section2__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.section2__list > div{
    width: 50%;
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
}
.section2__list > div img{
    height: 340px;
}
.section2__list > div span{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    opacity: 0.7;
    position: relative;
    top: -15px;
}
.section2__list > div.white span{
    color: #8597b4;
}
.section2__list > div.blue{
    background-color: #8cb0f1;
}
.section2__list > div.black{
    background-color: #2b2d33;
}
.section2__list > div.orange{
    background-color: #ff9b82;
}
/* /Section 2 */
/* Section 3 */
.section3{
    margin-top: 165px;
    position: relative;
}
.section3 > img{
    position: absolute;
    top: -15%;
    right: 0;
    z-index: -1;
}
.section3 .box-content{
    max-width: 1300px;
}
.section3 > div > h2{
    text-align: center;
    font-family: 'CentraleSansX';
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    color: #112d58;
    margin-bottom: 30px;
}
.section3 > div > p{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 350;
    font-size: 22px;
    color: #70819b;
    text-align: center;
}
.section3__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 115px;
}
.section3__list.mob{
    display: none;
}
.section3__list:last-child{
    margin-top: 140px;
}
.section3__list > a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(33% - 40px);
    height: 390px;
    -webkit-box-shadow: 0px 20px 98.58px 7.42px rgba(33, 138, 218, 0.12);
            box-shadow: 0px 20px 98.58px 7.42px rgba(33, 138, 218, 0.12);
    border-radius: 30px;
    max-width: 350px;
    position: relative;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    background: #fff;
}
.section3__list > a > *{
    position: relative;
    z-index: 1;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.section3__list > a > .hover{
    opacity: 0;
    position: absolute;
    top: 60px;
}
.section3__list > a:last-child > .hover{
    top: 68px;
}
.section3__list > a:hover > img{
    opacity: 0;
}
.section3__list > a:hover > .hover{
    opacity: 1;
}
.section3__list > a:hover{
    -webkit-box-shadow: 0px 24px 69.92px 6.08px rgba(90, 129, 253, 0.5);
            box-shadow: 0px 24px 69.92px 6.08px rgba(90, 129, 253, 0.5);  
}
.section3__list.mob > a:last-child > .hover{
    top: 40px;
}

.section3__list > a:after{
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#5c75fe), to(#4ec7f5));
    background: -o-linear-gradient(bottom, #5c75fe, #4ec7f5);
    background: linear-gradient(to top, #5c75fe, #4ec7f5);
    border-radius: 30px;
    opacity: 0;
}
.section3__list > a:hover:after{
    opacity: 1;
}
.section3__list > a:hover > *{
    color: #fff;
}


.section3__list h3{
    font-family: 'CentraleSansX';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #254c86;
}
.section3__list p{
    color: #1f3a63;
    margin-top: 15px;
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
}
.section3__list img{
    margin-bottom: 50px;
}
/* /Section 3 */
/* Section 4 */
.section4{
    margin-top: 120px;
    max-width: 1420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.section4 h2{
    font-family: 'CentraleSansX';
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    color: #112d58;
    margin-bottom: 110px;
}
.section4 p{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    color: #7989a1;
}
.section4 > div{
    width: 48%;
}
.section4 > div:last-child{
    width: 51%;
    height: 660px;
}
.section4__list{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.section4__list > div{
    position: absolute;
    background: #fff;
    -webkit-box-shadow: 0px 10px 46px 4px rgba(33, 138, 218, 0.1);
            box-shadow: 0px 10px 46px 4px rgba(33, 138, 218, 0.1);
    border-radius: 50%;
    width: 185px;
    height: 185px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.section4__list > div.three,.section4__list > div.eight,.section4__list > div.six{
    width: 200px;
    height: 200px;
}
.section4__list > div.nine{
    width: 165px;
    height: 165px;
    bottom: 145px;
    right: 0;
}
.section4__list > div.nine img{
    position: relative;
    top: 10px;
    left: 10px;
}
.section4__list > div.seven{
    width: 155px;
    height: 155px;
    bottom: 0;
    left: 200px;
}
.section4__list > div.six img{
    position: relative;
    left: -8px;
}
.section4__list > div.five img{
    position: relative;
    top: -5px;
}
.section4__list > div.four{
    width: 260px;
    height: 260px;
    top: 190px;
    left: 205px;
}
.section4__list > div.one{
    top: 0;
    left: 130px;
}
.section4__list > div.five{
    left: -15px;
    top: 177px;
}
.section4__list > div.two{
    right: 205px;
    top: 20px;
    width: 165px;
    height: 165px;
}
.section4__list > div.three{
    top: 145px;
    right: 35px;
}
.section4__list > div.eight{
    bottom: 25px;
    right: 140px;
}
.section4__list > div.six{
    bottom: 80px;
    left: 20px;
}
/* /Section 4 */
/* Section 5 */
.section5{
    position: relative;
    margin-top: 120px;
}
.section5 > img{
    position: absolute;
    top: 50%;
    left: 0;
}
.section5 > img:last-child{
    right: 0;
    top: 27%;
    left: auto;
}
.section5 > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
/* /Section 5 */
/* Section 6 */
.section6{
    margin-top: 60px;
}
.section6__title h2{
    text-align: center;
    font-family: 'CentraleSansX';
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    color: #112d58;
    margin-bottom: 30px;
}
.section6__title p{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 350;
    font-size: 22px;
    color: #70819b;
    text-align: center;
}
.section6__list{
    max-width: 1300px;
    margin-top: 200px;
}
.section6__list .title > span{
    text-align: center;
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    color: #112d58;
}
.section6__list .title{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 100px;
    margin-bottom: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.pagination{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.pagination > div{
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    opacity: 0.5;
}
.pagination > div:hover{
    opacity: 1;
    cursor: pointer;
}
.pagination > div.prev svg{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.pagination > div.prev{
    margin-right: 35px;
}
.slider__item{
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.slider__item > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    padding-bottom: 60px;
}
.slider__item > div:after{
    content: '';
    top: -62px;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    border-radius: 20px;
    height: 480px;
    background: #fff;
    -webkit-box-shadow: 4px 6.928px 32.55px 2.45px rgba(33, 138, 218, 0.1);
            box-shadow: 4px 6.928px 32.55px 2.45px rgba(33, 138, 218, 0.1);
}
.slider__item .stars{
    margin: 60px 0 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.slider__item .slider__info{
    text-align: center;
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    color: #7989a1;
    padding: 0 10px;
}
.slider{
    margin: 0 -50px;
}
.slick-slide {
    padding: 0 50px 50px;
}
/* /Section 6 */
/* Footer */
footer{
    position: relative;
    margin-top: 550px;
    padding-bottom: 150px;
}
footer > img{
    position: absolute;
}
footer > img.one, footer > img.two{
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    -o-object-fit: cover;
       object-fit: cover;
}
footer > img.one{
    min-height: 700px;
}
footer > img.two{
    min-height: 600px;
}
footer > img.three{
    right: 0;
    bottom: 0;
}
footer > div{
    position: relative;
    z-index: 1;
}
.footer__box{
    max-width: 1200px;
}
.footer__box > .footer__form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
}
.footer__form h2{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    color: #fff;
}
.footer__form form{
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer__form form > *{
    height: 100%;
}
.footer__form form input{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    border:none;
    background:none;
    outline:none;
    color: #000;
    padding-left: 35px;
    border-radius: 5px 0 0 5px;
    background: #fff;
}
.footer__form form input::-webkit-input-placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #112d58;
}
.footer__form form input::-moz-placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #112d58;
}
.footer__form form input:-ms-input-placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #112d58;
}
.footer__form form input::-ms-input-placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #112d58;
}
.footer__form form input::placeholder{
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #112d58;
}
.footer__form form button{
    font-family: 'CentraleSans';
    font-style: normal;
    border-radius: 0 5px 5px 0;
    font-weight: 700;
    font-size: 16px;
    padding: 25px 50px;
    border: none;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    background-image: linear-gradient( 170deg, rgb(24,56,107) 1%, rgb(41,99,187) 100%);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.footer__box > div:last-child{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.footer__box > div:last-child a{
    margin-right: 35px;
    height: 60px;
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: linear-gradient( 170deg, rgb(24,56,107) 1%, rgb(41,99,187) 100%);
    border-radius: 50%;
}
.footer__box > div:last-child a > *{
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    height: 27px;
    width: auto;
}
.footer__box > div:last-child a:hover > *{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.footer__box > div:last-child a:last-child{
    margin-right: 0;
}

/* Modul */
#modal{
    display: none;
    z-index: 10000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: #0004;
    padding: 0 10px;
}
#modal > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
}
#modal > div > div{
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    font-family: 'CentraleSans';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
}
/* /Modul */
/* /Footer */
@media(min-width: 2100px){
    header > img{
        width: 75%;
    }
}
@media(max-width: 1600px){
    header > img{
        width: 80%;
    }
    .main__title{
        margin-top: 60px;
    }
    .section2 > div{
        width: 55%;
    }
    .section2 > div:last-child{
        width: calc(45% - 115px);
        margin: 0 60px 0 55px;
    }
}
@media(max-width: 1450px){
    .section4 > div{
        width: 40%;
    }
    .section4 > div:last-child{
        width: 60%;
        max-width: 704px;
    }
}
@media(max-width: 1420px){
    .slider{
        margin: 0;
    }
    .slick-slide {
        padding: 0 25px 50px;
    }
    .slider__item .stars{
        margin: 30px 0 40px;
    }
    .slider__item > div:after{
        height: 400px;
    }
    .section5 > img{
        width: 60%;
    }
    .section5 > div > img{
        width: 60%;
    }
    .main__title > div > div:first-child h1{
        font-size: 50px;
    }
    .main__title > div > div:first-child p{
        font-size: 20px;
    }
    .main__title form input{
        font-size: 20px;
    }
    .main__title form input::-webkit-input-placeholder{
        font-size: 20px;
    }
    .main__title form input::-moz-placeholder{
        font-size: 20px;
    }
    .main__title form input:-ms-input-placeholder{
        font-size: 20px;
    }
    .main__title form input::-ms-input-placeholder{
        font-size: 20px;
    }
    .main__title form input::placeholder{
        font-size: 20px;
    }
    .main__title form{
        height: 60px;
    }
    .main__title form button{
        width: 50px;
        height: 50px;
    }
    .contact a{
        font-size: 35px;
    }
    .menu{
        padding-right: 10px;
    }
    .logo{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .logo > img{
        width: 250px;
    }
    .logo__text{
        font-size: 45px;
        margin-top: 0;
    }
    .logo .line{
        height: 115px;
    }
    .main__title > div > div:last-child img{
        width: 75%;
    }
    .main__title > img{
        width: 10%;
        bottom: -45%;
    }
}
@media(max-width: 1270px){
    .section4{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .section4 > div,.section4 > div:last-child{
        width: 100%;
    }
    .section4__list{
        margin-top: 30px;
    }
    .section4 h2{
        margin-bottom: 50px;
    }
    footer > img.one {
        min-height: 600px;
    }
    footer > img.two {
        min-height: 500px;
    }
    footer > img.three{
        width: 75%;
    }
    .footer__box > .footer__form{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 50px;
    }
    .footer__form form{
        margin-top: 20px;
    }
    footer{
        margin-top: 400px;
        padding-bottom: 50px;
    }
    .section6__list{
        margin-top: 100px;
    }
    .slider__item .slider__info{
        font-size: 16px;
        line-height: 30px;
    }
    .section3__list{
        margin-top: 60px;
    }
    .section3__list > a{
        width: calc(33% - 30px);
        padding: 10px;
    }
    .section3{
        margin-top: 100px;
    }
    .section3__list h3{
        text-align: center;
    }
    .section3__list:last-child {
        margin-top: 30px;
    }
    .section3__list p{
        text-align: center;
    }
    .section2 > div{
        width: 60%;
    }
    .section2 > div:last-child{
        width: calc(40% - 45px);
        margin: 0 15px 0 30px;
    }
    .menu li{
        margin-right: 15px;
    }
    .menu li:last-child{
        margin-right: 0;
        margin-left: 5px;
    }
    .menu li a{
        font-size: 20px;
    }
    .main__title > div > div:first-child h1{
        font-size: 40px;
    }
    .main__title > div > div:first-child p{
        font-size: 15px;
        margin: 15px 0;
    }
    .main__title > div > div:last-child img{
        width: 65%;
    }
    .main__title > div > div:last-child{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .section2 > div:last-child h2{
        font-size: 40px;
        margin-bottom: 30px;
    }
    .section2 > div:last-child p{
        font-size: 15px;
        line-height: 25px;
    }
}
@media(max-width: 1200px){
    .section2{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .section2 > div{
        width: 100%;
    }
    .section2 > div:last-child{
        width: 100%;
        margin: 0;
        margin-top: 50px;
    }
}
@media(max-width: 950px){
    #modal > div > div{
        font-size: 18px;
    }
    footer{
        margin-top: 300px;
    }
    .footer__form form{
        height: 60px;
    }
    .footer__form h2,.section4 h2{
        font-size: 40px;
    }
    .footer__form form input::-webkit-input-placeholder{
        font-size: 15px;
    }
    .footer__form form input::-moz-placeholder{
        font-size: 15px;
    }
    .footer__form form input:-ms-input-placeholder{
        font-size: 15px;
    }
    .footer__form form input::-ms-input-placeholder{
        font-size: 15px;
    }
    .footer__form form input,.footer__form form input::placeholder{
        font-size: 15px;
    }
    .footer__form form button br{
        display: none;
    }
    .footer__form form button{
        padding: 0 25px;
        font-size: 12px;
    }
    .section6__list{
        margin-top: 50px;
    }
    .section6__title h2{
        font-size: 40px;
        padding: 0 20px;
    }
    .section6__list .title{
        padding: 0 20px;
    }
    .section6__title p,.section4 p{
        font-size: 15px;
    }
    .section5{
        margin-top: 60px;
    }
    .section3__list p{
        font-size: 13px;
    }
    .section3__list h3{
        font-size: 20px;
    }
    .section3 > div > h2,.section6__list .title > span{
        font-size: 40px;
    }
    .section3 > div > p{
        font-size: 15px;
    }
    .section3__list > a {
        width: calc(50% - 30px);
        padding: 10px;
        max-width: 100%;
        height: 290px;
    }
    .section3__list img {
        margin-bottom: 25px;
    }
    .section3__list.mob{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .section3__list > a:last-child,.section3__list:last-child > a:first-child{
        display: none;
    }
    .section3__list:last-child > a:last-child{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .section3__list.mob > a{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .section2__list > div span{
        font-size: 20px;
    }
    .section2__list > div{
        height: 350px;
    }
    .section2__list > div img{
        height: 280px;
    }
    .main__title > img,.section3 > img,header.desctop{
        display: none;
    }
    .main__title > div{
        padding-left: 20px;
    }
    body{
        padding-top: 90px;
    }
    header.burger{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 50px;
        display: block;
        padding: 20px 0;
        z-index: 100;
    }
    header.burger > div{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .logo > img {
        width: 100px;
    }
    .logo .line{
        height: 45px;
        width: 2px;
    }
    .logo__text{
        font-size: 20px;
    }
    .logo .line {
        margin: 0 5px 0 10px;
    }
    .menu{
        padding: 0;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .menu > ul{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .menu li{
        margin: 0;
        margin-bottom: 15px;

    }
    .menu li:last-child{
        margin: 0;
    }
    .contact a {
        font-size: 22px;
        margin-top: 35px;
    }
    .contact a:last-child{
        margin-top: 15px;
    }
}
@media(max-width: 815px){
    .section2__list > div span{
        letter-spacing: 1.5px;
    }
    .section2__list{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .section2__list > div img {
        height: 90%;
    }
    .section2__list > div{
        width: 100%;
        height: 320px;
    }
    .section4 > div:last-child{
        max-width: 100%;
        height: 615px;
    }
    .section2 > div:last-child h2{
        margin-left: 0;
    }
    .main__title > div{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .main__title > div > div{
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .main__title > div > div:last-child img{
        max-width: 300px;
    }
    .main__title > div > div:first-child h1,.main__title > div > div:first-child p{
        text-align: center;
    }
    .main__title > div > div:last-child{
        margin-top: 50px;
    }
    .section4__list > div{
        width: 160px;
        height: 160px;
    }
    .section4__list > div img{
        height: 80px;
    }
    .section4__list > div.two,.section4__list > div.nine{
        width: 140px;
        height: 140px;
    }
    .section4__list > div.nine img{
        height: 135px;
    }
    .section4__list > div.three, .section4__list > div.eight, .section4__list > div.six{
        width: 175px;
        height: 175px;
    }
    .section4__list > div.two img,.section4__list > div.nine img,.section4__list > div.three img, .section4__list > div.eight img, .section4__list > div.six img,.section4__list > div.seven img,.section4__list > div.five img{
        height: 100px;
    }
    .section4__list > div.four{
        width: 235px;
        height: 235px;
    }
    .section4__list > div.four img{
        height: 110px;
    }
    .section4__list > div.seven{
        width: 130px;
        height: 130px;
    }
}
@media(max-width: 700px){
    .section4__list > div{
        width: 130px;
        height: 130px;
    }
    .section4__list > div img{
        height: 60px;
    }
    .section4__list > div.two,.section4__list > div.nine{
        width: 110px;
        height: 110px;
    }
    .section4__list > div.nine img{
        height: 115px;
    }
    .section4__list > div.three, .section4__list > div.eight, .section4__list > div.six{
        width: 145px;
        height: 145px;
    }
    .section4__list > div.two img,.section4__list > div.nine img,.section4__list > div.three img, .section4__list > div.eight img, .section4__list > div.six img,.section4__list > div.seven img,.section4__list > div.five img{
        height: 80px;
    }
    .section4__list > div.four{
        width: 205px;
        height: 205px;
    }
    .section4__list > div.four img{
        height: 90px;
    }
    .section4__list > div.seven{
        width: 100px;
        height: 100px;
    }
    .section4 > div:last-child {
        height: 555px;
    }
    .section4__list > div.two{
        right: 160px;
    }
    .section4__list > div.eight{
        right: 100px;
    }
    .section4__list > div.four{
        left: 160px;
    }
}
@media(max-width: 600px){
    header.burger .contact a{
            font-size: 18px;
    }
    .section3__list > a > .hover{
        top: 40px;
    }
    .section3__list:last-child > a:last-child > .hover{
        top: 50px;
    }
    .section4{
        margin-top: 50px;
    }
    .section4 h2{
        font-size: 30px;
    }
    .section4__list > div{
        position: initial;
    }
    .section4 > div:last-child{
        height: auto;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }
    .section4__list > div{
        margin-top: 20px;
    }
    footer > img.one {
        min-height: 500px;
    }
    footer > img.two {
        min-height: 450px;
    }
    footer {
        margin-top: 200px;
    }
    .footer__form h2{
        text-align: center;
        font-size: 35px;
    }
    .slider{
        margin: 0 -20px;
    }
    .slider__item > div:after {
        height: 365px;
    }
    .pagination > div.prev {
        margin-right: 15px;
    }
    .section6__list .title{
        margin-bottom: 20px;
        padding: 0;
    }
    .slick-slide{
        padding: 0 10px 60px;
    }
    .section5{
        margin-top: 40px;
    }
    .section2 > div:last-child{
        margin-top: 30px;
    }
    .section3{
        margin-top: 60px;
    }
    .section3 > div > p{
        margin-bottom: 30px;
    }
    .section3__list,.section3__list:last-child{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: 0;
    }
    .section2__list > div span{
        font-size: 16px;
    }
    .section3__list > a{
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }
    .section2 > div:last-child h2{
        font-size: 30px;
    }
    .main__title{
        margin-top: 30px;
    }
    .main__title > div > div:last-child{
        margin-top: 30px;
    }
    .main__title > div > div:first-child h1{
        font-size: 30px;
    }
    .main__title form{
        height: 50px;
        padding-left: 25px;
    }
    .main__title form input{
        font-size: 16px;
    }
    .main__title form input::-webkit-input-placeholder{
        font-size: 16px;
    }
    .main__title form input::-moz-placeholder{
        font-size: 16px;
    }
    .main__title form input:-ms-input-placeholder{
        font-size: 16px;
    }
    .main__title form input::-ms-input-placeholder{
        font-size: 16px;
    }
    .main__title form input::placeholder{
        font-size: 16px;
    }
    .main__title form button {
        width: 40px;
        height: 40px;
    }
    .main__title form button img{
        width: 20px;
    }
}
@media(max-width: 500px){
    header.burger .contact a {
        font-size: 15px;
    }
    header.burger > div{
        padding: 0 10px;
    }
    .logo > img {
        width: 85px;
    }
    .logo__text {
        font-size: 16px;
    }
    footer{
        margin-top: 100px;
    }
    footer > img.one {
        min-height: 550px;
    }
    footer > img.two {
        min-height: 500px;
    }
    .section2__list > div span{
        text-align: center;
    }
    .footer__form form{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
        height: 120px;
    }
}
@media(max-width: 400px){
    header.burger{
        height: 40px;
    }
    header.burger .contact a {
        font-size: 13px;
    }
    header.burger .contact{
        margin-right: 10px;
    }
    .logo .line {
        height: 35px;
        width: 1px;
    }
    .logo .line{
        margin: 0 3px;
    }
    .logo > img {
        width: 75px;
    }
    .logo__text {
        font-size: 14px;
    }
}