/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

@font-face{
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Extrabold.woff2') format('woff2'),
         url('../fonts/Gilroy-Extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2'),
         url('../fonts/Gilroy-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
         url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
         url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'RockStar';
    src: url('../fonts/RockStar-ExtraBold.woff2') format('woff2'),
         url('../fonts/RockStar-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'RockStar';
    src: url('../fonts/RockStar-SemiBold.woff2') format('woff2'),
         url('../fonts/RockStar-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'RockStar';
    src: url('../fonts/RockStar.woff2') format('woff2'),
         url('../fonts/RockStar.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



p,
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
    font-weight: 400;
}
html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*{outline:none;}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    overflow-x: hidden;
    font-family: 'Gilroy';
    background-color: #F2F2F2;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.container{
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

.header{
    position: fixed;
    top: 16px;
    width: 100%;
    z-index: 10;
    left: 0;
    transition: all 0.3s;
}
.header.fixed{
    opacity: 0;
}
.header.fixed:hover{
    opacity: 1;
}
.header_wrapper{
    background: #FFFFFF;
    backdrop-filter: blur(25.399999618530273px);
    width: calc(100% + 80px);
    margin-left: -40px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}
.menu{
    display: flex;
    gap: 68px;
}
.menu a{
    line-height: 19.72px;
    color: #000;
    position: relative;
    font-size: 17px;
    transition: all 0.3s;
}
.menu a::before{
    position: absolute;
    content: attr(data-title);
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}
.menu a:hover{
    color: #00000000; 
}
.menu a:hover::before{
    opacity: 1;
}
.header_links{
    display: flex;
    gap: 15px;
}

.main{
    padding: 520px 0 34px;
    position: relative;
    z-index: 1;
}
.main_bg{
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.main_bg::before{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 44.01%);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.main_bg video,
.main_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_wrapper{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.main h1{
    font-weight: 600;
    line-height: 78.06px;
    letter-spacing: -0.003em;
    font-family: 'RockStar';
    color: #fff;
    max-width: 700px;
    text-transform: uppercase;
    font-size: 60px;
}
.main h1 span{
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 614px;
    height: 94px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    line-height: 23.54px;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    gap: 83px;
}
.main_btn::after{
    position: relative;
    content: "";
    background-image: url(../img/btn_arrow.svg);
    background-size: cover;
    width: 49px;
    height: 49px;
    display: block;
}
.main_btn::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../img/main_btn.png);
    background-size: cover;
    z-index: -1;
}
.preloader{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: #fff;
    height: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.9em;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 180%;
}  
.preloader.done{
    display: none;
}
.preloader span {
   /* width:20px;
    height:20px;*/
    border-radius: 50%;
    background:#0583BE ;
    box-shadow: 0 0 0 0 #0583be40 ;
    animation:pl1 1s infinite;

    width:64px;
    height:64px;
    background: url(../img/loader.png) center no-repeat;
    background-size: contain;
  }
  @keyframes pl1 {
      100% {box-shadow: 0 0 0 30px #0583be00 }
  }
.why{
    padding: 56px 0 34px;
    position: relative;
}
.why::before{
    position: absolute;
    content: "";
    background-image: url(../img/why_bef.png);
    background-size: cover;
    width: 937px;
    height: 625px;
    bottom: 200px;
    right: calc(50% - 1020px);
}
h2{
    font-weight: 600;
    line-height: 52px;
    font-family: 'RockStar';
    text-transform: uppercase;
    font-size: 52px;
}
.why h2{
    margin-bottom: 32px;
}
.why_img{
    width: calc(100% + 114px);
    margin-left: -57px;
    max-width: 100vw;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
}
.why_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why_items{
    margin-top: -58px;
    display: flex;
    flex-wrap: wrap;
    gap: 26px 20px;
}
.why_item{
    width: calc(33.333% - 13.333px);
  
}
.why_item-bg{
    position: absolute;
    top: -1px;
    right: -1px;
    left: -1px;
    bottom: -1px;
    z-index: -1;
    border-radius: 29px;
    overflow: hidden;
}
.why_item-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why_item-arrow{
    position: absolute;
    top: 15px;
    right: 20px;
    background: #018BC1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
}
.why_item-wrapper{
    background: #F2F2F2;
    border: 1px solid #018BC1;
    border-radius: 30px;
    padding: 26px 35px 20px;
    position: relative;
    min-height: 264px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 1;
}
.why_item-title{
    font-weight: 800;
    line-height: 39.2px;
    letter-spacing: 0.01em;
    color: #018BC1;
    font-size: 32px;
    padding-right: 50px;
    margin-bottom: 20px;
}
.why_item-text{
    font-weight: 400;
    line-height: 23.2px;
    color: #414141;
    font-size: 20px;
}
.why_item-quote{
    display: flex;
    justify-content: center;
    padding-left: 38px;
    flex-direction: column;
    height: 100%;
    line-height: 23.2px;
    font-size: 20px;
    width: fit-content;
}
.why_item-quote span{
    color: #018BC1;
    display: block;
    text-align: right;
    margin-right: -50px;
}
.why_item-wrapper.gradient{
    background: linear-gradient(105.36deg, #018BC1 10.71%, #0583BE 35.75%, #199ECC 57.85%, #2FBBDB 133.47%);
    border: none;
}
.why_item-wrapper.gradient .why_item-text,
.why_item-wrapper.gradient .why_item-title{
    color: #fff;
}
.why_item-wrapper.gradient .why_item-arrow{
    background-color: #fff;
}
.why_item-wrapper.gradient .why_item-arrow path{
    stroke: #018BC1;
}
.why_item:nth-child(5){
    margin-right: calc(33.333% - 13.333px);
}

.comprehensive{
    padding: 56px 0;
}
.comprehensive h2{
    text-align: center;
    margin-bottom: 60px;
}
.comprehensive_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 20%;
}
.comprehensive_item{
    background: #FFFFFF59;
    border: 1px solid #EEEEEE;
    backdrop-filter: blur(10.5px);
    width: 376px;
    padding: 20px 30px 24px;
    margin: 0 36px;
    border-radius: 30px;
}
.comprehensive_item:nth-child(3n){
    margin-left: -18px;
}
.comprehensive_item:nth-child(4n){
    margin-right: -18px;
}
.comprehensive_item-title{
    font-size: 24px;
    line-height: 28.63px;
    color: #0C0707;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.comprehensive_item-text{
    font-weight: 400;
    line-height: 18.56px;
    color: #414141;
    font-size: 16px;
    margin-bottom: 20px;
}
.btn{
    max-width: 100%;
    width: 300px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/omprehensive_item-btn.svg);
    background-size: cover;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 16.41px;
    position: relative;
    z-index: 1;
}
.btn:hover::before{
    opacity: 1;
}
.btn::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    background-image: url(../img/omprehensive_item-btn2.svg);
    opacity: 0;
    transition: all 0.3s;
}
.comprehensive_wrapper{
    position: relative;
}
.comprehensive_img{
    position: absolute;
    display: flex;
    top: 115px;
    z-index: -1;
    pointer-events: none;
    right: 50%;
    transform: translateX(50%);
}
.team{
    padding: 60px 0 130px;
    position: relative;
    z-index: 5;
}
.team::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100vw;
    background-image: url(../img/team.png);
    background-size: cover;
    background-position: center top;
    z-index: -1;
    top: 0;
    right: 0;
    pointer-events: none;
}
.team h2{
    margin-bottom: 15px;
}
.team_wrapper{
    position: relative;
}
.team_info{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 476px;
}
.team_subtitle{
    font-size: 36px;
    line-height: 42.37px;
    font-weight: 500;
    margin-bottom: 36px;
}
.team_text{
    font-weight: 500;
    line-height: 32.96px;
    font-size: 28px;
}
.team_text span, .team_text b{
    color: #018BC1;
    display: block;
    font-weight: inherit;
}
.team_items{
    display: flex;
    flex-wrap: wrap;
    gap:36px  85px  ;
    margin-left: 200px;
}
.team_item{
    width: calc(33.333% - 56.66666px);
}

.team_item:nth-child(1){
    margin-left: calc(33.333% + 28.33333px);

}
.team_item:nth-child(1),
.team_item:nth-child(4){
    transform:translateY(136px);
}
.team_item-img{
    height: 316px;
    width: 100%;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.team_item-img img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
}
.team_item:hover .team_item-img img:nth-child(2){
    opacity: 1;
}
.team_item-img img:nth-child(2){
    opacity: 0;
    transition: all 0.3s;
}
.team_item-btn{
    position: absolute;
    bottom: 10px;
    font-size: 16px;
    right: 50%;
    justify-content: flex-start;
    padding-left: 35px;
    transform: translateX(50%);
    text-align: left;
}
.team_item-btn::after{
    position: absolute;
    content: "";
    background-size: cover;
    width: 31px;
    height: 31px;
    right: 26px;
    background: #FFFFFF33;
    background-image: url(../img/btn_arrow2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    backdrop-filter: blur(7.160046577453613px);
    animation: btnAnim 1s infinite alternate;
}
@keyframes btnAnim{
    0%{
        background-size: 100%;
    }
    100%{
        background-size: 130%;
    }
}
.team_item-title{
    font-weight: 600;
    line-height: 23.86px;
    color: #23233F;
    font-size: 20px;
    text-transform: uppercase;
    padding-right: 40px;
    margin-bottom: 12px;
}
.team_item-text{
    font-size: 18px;
    line-height: 21.19px;
    color: #414141;
    font-weight: 500;
    height: 0;
}

.team_item:nth-child(3){
   
    margin-top: 230px;
}
.team_desc{
    font-weight: 500;
    line-height: 16.48px;
    background: #018BC1;
    height: 316px;
    border-radius: 15px;
    font-size: 14px;
    font-size: 20px;
    line-height: 23.54px;
    color: #fff;
    font-weight: 500;
    padding: 38px;
    display: flex;
    justify-content: center;
    text-align: left;
    align-items: center;
}
.atmosphere{
    padding: 100px 0 40px;
    position: relative;
    z-index: 1;
}
.atmosphere::before{
    position: absolute;
    content: "";
    background-image: url(../img/atmosphere_bef.png);
    background-size: cover;
    width: 451px;
    height: 715px;
    right: 0;
    top: 1150px;
}
.atmosphere h2{
    margin-bottom: 52px;
}
.atmosphere_item{
    overflow: hidden;
    min-height: 315px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    line-height: 20.44px;
    text-align: center;
    position: relative;
    font-size: 20px;
    font-family: 'RockStar';
    color: #018BC1;
}
.atmosphere_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.atmosphere_item.video::before{
    width: 77px;
    height: 77px;
    position: absolute;
    content: "";
    background-image: url(../img/play.svg);
    background-size: cover;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    backdrop-filter: blur(7px);
    border-radius: 50%;
}
.atmosphere_items{
    display: grid; 
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px 20px;
 }
   
 .atmosphere_item:nth-child(1) {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-column-end: 2;
 }
 .atmosphere_item:nth-child(2) {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
 }
 .atmosphere_item:nth-child(3) {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 3;
 }
 .atmosphere_item:nth-child(4) {
    grid-row-start: 1;
    grid-column-start: 3;
    grid-row-end: 3;
    grid-column-end: 5;
 }
 .atmosphere_item:nth-child(5) {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-row-end: 4;
    grid-column-end: 2;
 }
 .atmosphere_item:nth-child(6) {
    grid-row-start: 3;
    grid-column-start: 2;
    grid-row-end: 4;
    grid-column-end: 3;
 }
 .atmosphere_item:nth-child(7) {
    grid-row-start: 3;
    grid-column-start: 3;
    grid-row-end: 4;
    grid-column-end: 4;
 }
 .atmosphere_item:nth-child(8) {
    grid-row-start: 3;
    grid-column-start: 4;
    grid-row-end: 4;
    grid-column-end: 5;
 }
 .atmosphere_item:nth-child(9) {
    grid-row-start: 4;
    grid-column-start: 1;
    grid-row-end: 5;
    grid-column-end: 2;
 }
 .atmosphere_item:nth-child(10) {
    grid-row-start: 5;
    grid-column-start: 1;
    grid-row-end: 6;
    grid-column-end: 2;
 }
 .atmosphere_item:nth-child(11) {
    grid-row-start: 4;
    grid-column-start: 2;
    grid-row-end: 6;
    grid-column-end: 4;
 }
 .atmosphere_item:nth-child(12) {
    grid-row-start: 6;
    grid-column-start: 1;
    grid-row-end: 7;
    grid-column-end: 2;
 }
 .atmosphere_item:nth-child(13) {
    grid-row-start: 6;
    grid-column-start: 2;
    grid-row-end: 7;
    grid-column-end: 3;
 }
 .atmosphere_item:nth-child(14) {
    grid-row-start: 6;
    grid-column-start: 3;
    grid-row-end: 7;
    grid-column-end: 4;
 }
 .atmosphere_item:nth-child(15) {
    grid-row-start: 6;
    grid-column-start: 4;
    grid-row-end: 7;
    grid-column-end: 5;
 }
 .atmosphere_item:nth-child(16) {
    grid-row-start: 7;
    grid-column-start: 1;
    grid-row-end: 9;
    grid-column-end: 3;
 }
 .atmosphere_item:nth-child(17) {
    grid-row-start: 7;
    grid-column-start: 3;
    grid-row-end: 8;
    grid-column-end: 4;
 }
 .atmosphere_item:nth-child(18) {
    grid-row-start: 8;
    grid-column-start: 3;
    grid-row-end: 10;
    grid-column-end: 5;
 }
 .advantages{
    padding: 40px 0 120px;
    position: relative;
 }
 .advantages_title{
     font-weight: 400;
     line-height: 20.88px;
     font-size: 18px;
     margin-bottom: 30px;
 }
 .advantages_title span{
    display: block;
    margin-left: 92px;
    color: #018BC1;
 }
 .advantages_items{
    display: flex;
    gap: 20px;
    position: relative;
    overflow: hidden;
 }
 .advantages_item{
    width: calc(25% - 15px);
    backdrop-filter: blur(28.600000381469727px);
    background-color: #fff;
    border: 1px solid #FFFFFF;
    padding: 40px 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    min-height: 215px;
    font-size: 16px;
    line-height: 18.56px;
    font-weight: 400;
    overflow: hidden;
    text-align: center;
 }
 .advantages_items-overlay{
    position: absolute;
    width:200%;
    height: 200%;
    z-index: 1;
    top: 0;
    animation: linear reveal both;
	animation-timeline: scroll(root);
    background: linear-gradient(-90deg, rgba(255,255,255,0.8) 90%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    right: -100%;
 }
@keyframes reveal {
	0% {
        top: -20%;
	}
	60% {
        top: 150%;
	}
}

 .advantages_item:nth-child(3){
    border: 1px solid #018BC1;
    background-color: #F2F2F2;
 } 
 .advantages_item:nth-child(3)  .advantages_items-overlay{
    background: linear-gradient(-90deg, rgba(242,242,242,0.8) 90%, rgba(242,242,242,0) 100%);
 }
 .advantages_item span{
    display: contents;
    color: #018BC1;
 }
 .advantages_img{
    position: absolute;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    z-index: -1;
 }
 .advantages_img{
    animation: linear posAnim both;
	animation-timeline: scroll(root);
}
@keyframes posAnim {
	from {
        transform: translateY(0%);
	}
	to {
        transform: translateY(130%);
	}
}
@keyframes posAnim2 {
	from {
        transform: translateY(0%);
	}
	to {
        transform: translateY(-110%);
	}
}
 .advantages_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
 .advantages_wrapper{
    position: relative;

 }
 .advantages_img.one{
    left: -48px;
        animation: linear posAnim2 both;
        animation-timeline: scroll(root);
        top: 40%;
 }
 .advantages_img.two{
    left: 246px;
    top: 60%;
 }

 .advantages_img.three{
    left: 439px;
        animation: linear posAnim2 both;
        animation-timeline: scroll(root);
        top: 20%;
 }
 .advantages_img.four{
    right: -111px;
 }
 .about{
    padding-top: 120px;
 }
 .about_title{
     font-weight: 600;
     line-height: 46px;
     font-family: 'RockStar';
     font-size: 26px;
 }
 .about_top{
    margin-bottom: 60px;
 }
 .about_title span{
    color: #018BC1;
 }
 .about_title-quote{
     font-weight: 700;
     line-height: 24.76px;
     font-size: 20px;
     margin-top: 20px;
     font-style: italic;
     text-align: right;
 }
 .about_wrapper{
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
 }
 .about_column{
    width: calc(33.333% - 13.333px);
 }
 
 .about_info-title{
     line-height: 18.56px;
     color: #414141;
     font-size: 16px;
     margin-bottom: 20px;
     text-transform: uppercase;
 }
 .about_info-text{
     line-height: 18.56px;
     font-size: 16px;
     overflow: hidden;
     position: relative;
     transition: all 0.6s;
 }
 .about_info-text::before{
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 100%;
    height: 19px;
    background: linear-gradient(-90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
 }
 .about_info-text strong{
    font-weight: 500;
 }
 .about_column:nth-child(1){
    transform: translateY(164px);
 }
 .about_column:nth-child(1) .about_info:nth-child(1) .about_info-text{
    max-height: 38px;
 }
 .about_column:nth-child(1) .about_info:nth-child(3) .about_info-text{
    max-height: 76px;
 }
 .about_column:nth-child(3) .about_info:nth-child(2) .about_info-text{
    max-height: 57px;
 }
 .about_column:nth-child(3) .about_info:nth-child(2){
    border-radius: 30px  0 30px 30px;
 }
 .about_column:nth-child(1) .about_info:nth-child(1){
    border-radius: 30px 30px 0 30px;
 }
 .about_column:nth-child(1) .about_info:nth-child(3){
    border-radius: 30px 0 0 30px;
    margin-top: 40px;
 }
 .about_info:hover .about_info-text{
    max-height: 300px !important;
}
.about_info:hover .about_info-text::before{
    display: none;
}
 .about_info{
    background: #FFFFFF;
    padding: 20px 35px 20px 20px;
    border-radius: 30px;
 }
 .about_img:first-child{
    margin-top: 0;
 }
 .about_img{
    height: 272px;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    margin: 20px 0;
 }
 .about_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
 .about_item{
    height: 579px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 20px;
    border-radius: 30px;
    z-index: 1;
    overflow: hidden;
    position: relative;
 }
 .about_item-title{
     font-size: 20px;
     line-height: 23.86px;
     color: #23233F;
     font-weight: 600;
     margin-bottom: 14px;
}
.about_item-text{
    font-weight: 400;
    line-height: 18.56px;
    color: #414141;
    font-size: 16px;
}
.about_item-img{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    height: 100%;
    z-index: -1;
}

.about_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.about_inner-info{
        width: calc(33.333% - 13.333px);
}
.about_inner-img{
    height: 453px;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    width: 66%;
}
.about_inner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_inner-title{
    font-weight: 500;
    line-height: 58.85px;
    margin-bottom: 16px;
    font-size: 50px;
}
.about_inner-text{
    font-weight: 400;
    line-height: 18.56px;
    font-size: 16px;
}
.about_inner-text span, .about_inner-text b{
    color: #018BC1;
    font-weight: inherit;
}
.about_inner + .about_img{
    width: calc(33.333% - 13.333px);
    margin: 0;
    margin-left: auto;
}
.reviews{
    margin: 66px 0 14px;
}
.reviews h2{
    max-width: 780px;
    margin-bottom: 67px;
}
.reviews_wrapper{
    display: flex;
    gap: 20px;
    position: relative;
}
.reviews_wrapper::before{
    position: absolute;
    content: "";
    background-image: url(../img/reviews_bef.png);
    background-size: cover;
    bottom: 98px;
    left: -225px;
    width: 492px;
    height: 500px;
}
.reviews_column{
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    gap: 30px;
}
.reviews_video{
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    height: 391px;
    z-index: 1;
    padding: 20px 30px;
    position: relative;
}
.reviews_video::before{
    position: absolute;
    content: "";
    background-image: url(../img/play2.svg);
    background-size: cover;
    width: 77px;
    height: 77px;
    bottom: 20px;
    right: 30px;
    backdrop-filter: blur(6.5px);
    border-radius: 50%;
}
.reviews_video-img{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
}
.reviews_video-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews_video-title{
    font-weight: 500;
    line-height: 23.54px;
    color: #FFFFFF;
    font-size: 20px;
    padding: 17px 21px;
    background: #DAE2E633;
    backdrop-filter: blur(6.5px);
    width: fit-content;
    border-radius: 100px;
}
.reviews_item{
    background: #FFFFFF;
    border-radius: 30px;
    padding: 22px 30px;
}
.reviews_item-title{
    font-weight: 600;
    line-height: 28.63px;
    color: #018BC1;
    margin-bottom: 50px;
    font-size: 24px;
    text-transform: uppercase;
}
.reviews_item-text{
    line-height: 18.56px;
    font-size: 16px;
/*    max-height: 114px; */
    max-height: 60px; 
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.6s;
}
.reviews_item-text::before{
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 100%;
    height: 19px;
    background: linear-gradient(-90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
 }
 .reviews_item:hover .reviews_item-text{
/*    max-height: 400px !important;*/
}
.reviews_item:hover .reviews_item-text::before{
    display: none;
}
.reviews_item-text span{
    color: #018BC1;
}
.reviews_item-info{
    margin-left: auto;
    width: fit-content;
}
.reviews_item-subtitle{
    font-weight: 400;
    line-height: 16.24px;
    color: #414141;
    font-size: 14px;
    margin-bottom: 11px;
}
.reviews_item-stars{
    display: flex;
    gap: 3px;
}
.reviews_column:nth-child(2){
    margin-top: 180px;
}
.reviews_subtitle{
    font-weight: 600;
    line-height: 52px;
    font-family: 'RockStar';
    color: #23233F;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: auto;
    order: 1;
}
.sales{
    padding: 154px 0 222px;
}
.sales h2{
    display: none;
}
.sales_wrapper{
    position: relative;
    width: 862px;
    margin: 0 auto;
}
.sales_img{
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
.sales_item{
    position: absolute;
    border: 1px solid #018BC1;
    border-radius: 25px;
    width: 325px;
    padding: 10px 30px 20px;
    background: #FFFFFF4D;
    backdrop-filter: blur(6.5px);
}
.sales_item.gradient{
    background: linear-gradient(105.36deg, #018BC1 10.71%, #0583BE 35.75%, #199ECC 57.85%, #2FBBDB 133.47%);
}

.sales_item-title{
font-size: 107.03px;
font-weight: 800;
background: -webkit-linear-gradient(0.36deg, #018BC1 10.71%, #0583BE 35.75%, #199ECC 57.85%, #2FBBDB 133.47%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.sales_item.gradient .sales_item-title{
    background: none;
    color: #fff;
    -webkit-text-fill-color:#fff;
}
.sales_item.gradient .sales_item-text{
    color: #fff;
}
.sales_item-text{
    font-weight: 500;
    line-height: 21.19px;
    color: #424242;
    font-size: 18px;
}
.sales_item:nth-child(1){
    left: 60px;
    top: -78px;
}
.sales_item:nth-child(2){
    top: 58px;
    right: -84px;
}
.sales_item:nth-child(3){
    bottom: 38px;
    right: -114px;
}
.sales_item:nth-child(4){
    left: 38px;
    bottom: -78px;
}
.sales_item:nth-child(5){
    left: -198px;
    top: 292px;
}
.conslult{
    margin: 50px 0 100px;
}
.conslult_wrapper{
    background: #018BC1;
    border-radius: 30px;
    padding: 54px 54px 34px;
    position: relative;
}
.conslult_img{
    position: absolute;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
}
.conslult_img:nth-child(1){
    right: 375px;
    top: 66px;
 width: 157px; 
        height: 157px;  
    img{
        
    }
}
.conslult_img:nth-child(2){
    right: 148px;
    top: 146px;
 width: 115px; 
        height: 115px; 
    img{
         
    }
}
.conslult_img:nth-child(3){
    right: 163px;
    bottom: -96px;
 width: 212px; 
        height: 212px; 
    img{
         
    }
}
.conslult_title{
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 49.2px;
    font-family: 'RockStar';
    max-width: 740px;
    margin-bottom: 36px;
    text-transform: uppercase;
}
.conslult_text{
    font-weight: 400;
    line-height: 27.84px;
    max-width: 630px;
    font-size: 24px;
    color: #fff;
    margin-bottom: 70px;
}
.conslult_btn{
    width: 466px;
    height: 70.73px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    gap: 151px;
    line-height: 18.83px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
    z-index: 1;
    background-image: url(../img/conslult_btn.svg);
    background-size: cover;
    transition: all 0.3s;
}
.conslult_btn::after{
    position: relative;
    content: "";
    background-image: url(../img/btn_arrow.svg);
    background-size: cover;
    width: 36px;
    height: 36px;

}
.conslult_btn:hover::before{
    opacity: 1;
}
.conslult_btn::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../img/conslult_btn2.svg);
    background-size: cover;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}
.footer{
    padding: 64px 0 124px;
    overflow: hidden;
    position: relative;
}
.footer::before{
    position: absolute;
    content: "ДЕНТАЛ СТУДИЯ";
    font-family: 'RockStar';
    font-size: 145px;
    font-weight: 600;
    line-height: 148.62px;
    background: -webkit-linear-gradient(180deg, rgba(1, 139, 193, 0) 0.98%, #018BC1 97.32%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    bottom: -35px;
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
    text-align: center;
}
.footer_wrapper{
    display: flex;
    justify-content: space-between;
}
.footer_left{
    width: 420px;
}
.footer_logo{
    margin-bottom: 20px;
    display: flex;
    width: 127px;
}
.footer_logo img{
    width: 100%;
    height: auto;
}
.footer_title{
    font-family: 'RockStar';
    font-size: 32px;
    font-weight: 600;
    line-height: 32.8px;
    margin-bottom: 18px;
}
.footer_items{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 26px;
    gap: 25px;
}
.footer_item-title{
    line-height: 16.24px;
    color: #272727;
    font-size: 14px;
    margin-bottom: 20px;
}
.footer_item-subtitle{
    line-height: 16.24px;
    font-size: 14px;
}
.footer_item-adres{
    font-weight: 500;
    line-height: 28.25px;
    font-size: 24px;
}
.footer_desc{
    font-weight: 400;
    line-height: 16.24px;
    color: #272727;
    font-size: 14px;
}
.footer_right-top{
    display: flex;
}
.footer_subtitle{
    line-height: 16.24px;
    margin-bottom: 20px;
    font-size: 14px;
}
.footer_menu-wrapper,
.footer_links{
    margin-right: 165px;
}
.footer_menu a{
    line-height: 27.84px;
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    display: block;
}
.footer_link{
    font-weight: 500;
    line-height: 28.25px;
    color: #000;
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}
.footer_messages{
    display: flex;
    gap: 15px;
    margin: 15px 0;
}
.footer_inner{
    margin-top: 40px;
    display: flex;
    gap: 113px;
}
.footer_inner-item{
    font-weight: 400;
    line-height: 16.24px;
    color: #272727;
    font-size: 14px;
}
.header_logo{
    display: flex;
    background-color: #fff;
    width: 127px;
}
.header_logo img{
    width: 100%;
    height: auto;
}
.sales_item-btn,
.sales_item-img{
    display: none;
}
.menu_burger{
    display: none;
}
.header_inner .header_links{
    display: none;
}
.about_info.mobile{
    display: none;
}

.about_quote-mobile{
    display: none;
}
.about_inner-text .mobile{
    display: none;
}
.about_inner-text br{
    display: none;
}
.reviews_item-link{
    display: none;
}
.header_page{
    background-color: #fff;
    top: 0;
}
.crumbs_block{
    margin-top: 142px;
    margin-bottom: 33px;
}
.crumb{
    line-height: 17.4px;
    color: #000000;
    transition: all 0.3s;
    font-size: 15px;
}
.crumb::after{
    position: relative;
    content: "-";
    margin: 0 8px;
    color: #000;
    background: none;
}
a.crumb:hover{
    color: #018BC1;
}
.crumb:last-child::after{
    display: none;
}
.crumb:last-child{
    color: #B5B5B5;
}
.service_main-wrapper{
    position: relative;
}
.service_main{
    padding-bottom: 262px;
}
.service_main-info{
    max-width: 650px;
}
.service_main h2{
    background: -webkit-linear-gradient(0, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'RockStar';
    font-size: 60px;
    font-weight: 600;
    line-height: 78.06px;
    margin-bottom: 56px;
}
.page-id-322{
   .service_main h2 {
        @media (min-width: 768px) { 
            &{
            font-size: 50px;
            }
        }
   }
}

.service_main p{
    font-size: 24px;
    line-height: 28.25px;
    font-weight: 500;
}
.service_main p span, .service_main p b{
    color: #018BC1;
    font-weight: inherit;
}
.service_main-img{
    position: absolute;
    top: -98px;
    right: -28px;
    display: flex;
    width: 698px;
}
.service_main-img img{
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}
.service_block{
    margin-bottom: 166px;
    position: relative;
}
.service_block-wrapper::before{
    position: absolute;
    content: "";
    background-image: url(../img/service_block.png);
    background-size: cover;
    width: 845px;
    height: 844px;
    bottom: -430px;
    right: -410px;
}
.service_block h2{
    text-align: center;
    margin-bottom: 50px;
}
.service_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 184px 20%;
}
.service_item{
    background: #FFFFFF;
    border-radius: 30px;
    width: 427px;
    min-height: 264px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 32px;
}
.service_item.gradient{
    background: linear-gradient(105.36deg, #018BC1 10.71%, #0583BE 35.75%, #199ECC 57.85%, #2FBBDB 133.47%);

}
.service_item.gradient .service_item-text,
.service_item.gradient .service_item-title{
    color: #fff;
}
.service_item:nth-child(2){
    transform: translateY(110px);
}
.service_item-title{
    font-weight: 800;
    line-height: 39.2px;
    letter-spacing: 0.01em;
    color: #018BC1;
    margin-bottom: 20px;
    font-size: 32px;
}
.service_item-text{
    line-height: 18.56px;
    color: #414141;
    font-size: 16px;
}
.service_item:nth-child(3){
    margin-left: 120px;
    background-image: url(../img/service_item.jpg);
    background-size: cover;
    background-position: center;
}
.service_item:nth-child(4){
    margin-right: 80px;
    border: 1px solid #018BC1;
    transform: translateY(146px);
    background: none;
}
.service_block-wrapper{
    position: relative;
}
.service_block-img{
    display: flex;
    position: absolute;
    top: 80px;
    right: 50%;
    height: 620px;
    transform: translateX(50%);
}
.service_block-img img{
    height: 100%;
    width: auto;
}
.steps{
    margin-bottom: 86px;
    margin-top: 20px;
    position: relative;
}
.steps::before{
    position: absolute;
    content: "";
    background-image: url(../img/steps_bef.png);
    background-size: cover;
    width: 927px;
    height: 927px;
    left: -327px;
    top: 642px;
    pointer-events: none;
}
.steps h2{
    width: 500px;
}
.steps_item{
    display: flex;
    justify-content: space-between;
    padding-right: 150px;
}
.steps_item:nth-child(2n){
    flex-direction: row-reverse;
}
.steps_item:nth-child(2n) .steps_item-info{
    text-align: right;
}
.steps_item:nth-child(2n) .steps_item-number{
    margin-left: auto;
}
.steps_item:not(:last-child){
    margin-bottom: 50px;
}
.steps_item-info{
    width: 348px;
    position: relative;
}
.steps_item:nth-child(2n) .steps_item-info::before{
    right: auto;
    left: 100%;
    transform: scale(-1,1);
}
.steps_item-info::before{
    position: absolute;
    content: "";
    background-image: url(../img/steps_line.svg);
    width: 612px;
    height: 192px;
    top: 34px;
    right: 100%;
}
.steps_item-number{
    font-weight: 600;
    line-height: 28.63px;
    text-align: center;
    color: #018BC1;
    padding: 20px 25px;
    font-size: 24px;
    background: #FFFFFF;
    border-radius: 15px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}
.steps_item-title{
    font-weight: 600;
    line-height: 36.43px;
    font-family: 'RockStar';
    margin-bottom: 20px;
    font-size: 28px;
}
.steps_item-text{
    line-height: 18.56px;
    font-size: 16px;
    color: #414141;
}
.steps_item-img{
    width: 452px;
    height: 452px;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    margin-top: 30px;
}
.steps_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.steps_item:nth-child(2n) .steps_item-img{
    margin-top: -20px;
}
.steps_item:nth-child(3){
    padding-right: 0;
    padding-left: 130px;
}
.steps_item:nth-child(3) .steps_item-img{
    margin-top: -70px;
}
.steps_item:nth-child(4){
    padding: 0;
}
.steps_item:nth-child(4) .steps_item-info{
    margin-top: 40px;
}
.steps_item-img{
    position: relative;
}
.steps_item-img.video::before{
    width: 77px;
    height: 77px;
    position: absolute;
    content: "";
    background-image: url(../img/play.svg);
    background-size: cover;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    backdrop-filter: blur(7px);
    border-radius: 50%;
}
.service_advantages{
    margin: 90px 0;
}
.service_advantages h2{
    margin-bottom: 56px;
}
.service_advantages-items{
    display: flex;
    gap: 22px;
}
.service_advantages-item{
    flex: 1;
    position: relative;
    background: linear-gradient(208.86deg, rgba(244, 244, 244, 0.8) 64.58%, rgba(220, 220, 220, 0.8) 92.78%);
    padding: 30px 30px 40px;
    z-index: 1;
    border-radius: 29px;
}
.service_advantages-item::before{
    position: absolute;
    content: "";
    top: 1px;
    right: 1px;
    left: 1px;
    bottom: 1px;
    background-color: #F2F2F2;
    z-index: -1;
    border-radius: 29px;
}
.service_advantages-icon{
    margin-bottom: 44px;
}
.service_advantages-title{
    background: -webkit-linear-gradient(90deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 30px;
    font-family: 'RockStar';
    font-weight: 800;
    line-height: 30px;
    margin-bottom: 44px;
}

.service_advantages-text{
    line-height: 21.09px;
    color: #454545;
    font-size: 18px;
}
.conslult_form .conslult_title{
    text-transform: none;
    max-width: 400px;
}
.conslult_inp{
    border: 1px solid #FFFFFF;
    display: block;
    width: 110px;
    height: 55px;
    width: 462px;
    border: 1px solid #FFFFFF;
    background: #FFFFFF1A;
    border-radius: 15px;
    margin-bottom: 15px;
    padding-left: 30px;
    color: #fff;
    max-width: 100%;
}
.conslult_inp::placeholder{
    color: #FFFFFF;
}
.conslult_ok{
    display: block;
    margin-bottom: 25px;
    padding-left: 28px;
    position: relative;
    line-height: 11.6px;
    cursor: pointer;
    color: #fff;
    font-size: 10px;
    user-select: none;
}
.conslult_ok a{
    color: #fff;
    text-decoration: underline;
}
.conslult_ok input{
    display: none;
}
.conslult_ok span{
    border: 1px solid #FFFFFF;
    width: 16px;
    height: 16px;
    margin-right: 12px;
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
}
.conslult_ok input:checked + span::before{
    position: absolute;
    content: "";
    background-image: url(../img/check.svg);
    background-size: cover;
    width: 8px;
    height: 6px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}
.conslult_form-btn{
    background: none;
    cursor: pointer;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    height: 69px;
    width: 469px;
    font-weight: 500;
    line-height: 25.65px;
    color: #FFFFFF;
    font-size: 21.89px;
    position: relative;
}
.conslult_form-btn::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../img/conslult_form-btn.svg);
    background-size: cover;
    z-index: -1;
}
.conslult_form-btn::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../img/conslult_form-btn2.svg);
    background-size: cover;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}
.conslult_form-btn:hover::after{
    opacity: 1;
}
.works_item-img{
    position: relative;
    height: 328px;
    border-radius: 30px;
    margin-bottom: 22px;
    overflow: hidden;
}
.works_item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.works{
    margin-bottom: 60px;
}
.works h2{
    text-align: center;
    margin-bottom: 50px;
}
.works_slide{
    display: flex !important;
    gap: 20px;
}
.works_item{
    border: 1px solid #018BC1;
    background: #F2F2F2;
    padding: 16px 16px 20px;
    border-radius: 30px;
    width: calc(50% - 10px);
}
.works_item-title{
    font-family: 'RockStar';
    font-size: 24px;
    line-height: 31.22px;
    font-weight: 600;
    text-align: center;
}
.works_slider .slick-dots{
    display: flex;
    margin-top: 26px;
    justify-content: center;
    gap: 10px;
}
.works_slider .slick-dots li{
    display: flex;
}
.works_slider .slick-dots button{
    padding: 0;
    font-size: 0;
    border: none;
    cursor: pointer;
    border: 1px solid #018BC1;
    width: 13px;
    height: 13px;
    border-radius: 50%;
}
.works_slider .slick-dots .slick-active button{
    background: #018BC1;
}
.twentytwenty-handle{
    background-image: url(../img/handle.svg);
    background-size: cover;
    width: 35px;
    height: 35px;
    box-shadow: none;
}
.twentytwenty-handle span{
    display: none;
}

.licenses{
    margin: 35px 0 100px;
}
.licenses h2{
    font-size: 160px;
    font-weight: 600;
    text-align: center;
    text-transform: none;
}
.licenses_wrapper{
    padding: 250px 0;
    position: relative;
}
.licenses_item{
    border: 1px solid #018BC1;
    background: #E9E9E91A;
    backdrop-filter: blur(15px);
    padding: 1rem;
    position: absolute;
    border-radius: 15px;
    animation: 3s ease-in-out infinite rotate;
}
@keyframes rotate{
    0%, 100% {
        -webkit-transform: rotate(0) translateY(0);
        transform: rotate(-6deg) translateY(0);
    }
    
    50% {
        -webkit-transform: rotate(-2deg) translateY(-.5em);
        transform: rotate(-8deg) translateY(-.5em);
    }
}

@keyframes rotate2{
    0%, 100% {
        -webkit-transform: rotate(0) translateY(0);
        transform: rotate(6deg) translateY(0);
    }
    
    50% {
        -webkit-transform: rotate(-2deg) translateY(-.5em);
        transform: rotate(8deg) translateY(-.5em);
    }
}

.licenses_item img{
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}
.licenses_item:nth-child(1){
    top: 350px;
    left: 0;
    width: 251px;
}
/*.licenses_item:nth-child(2){
    width: 145px;
    bottom: 84px;
    left: 396px;
    animation-delay: 0.3s;
}*/
.licenses_item:nth-child(2){
    width: 186px;
    top: -10px;
    left: 502px;
    animation: 3s 0.2s ease-in-out infinite rotate2;
}
.licenses_item:nth-child(3){
    width: 220px;
    bottom: 0;
    right: 340px;
    animation: 3s ease-in-out infinite rotate2;
}
.licenses_item:nth-child(4){
    width: 198px;
    top: 20px;
    right: 80px;
}
.faq{
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
.faq_top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 65px;
}
.faq_top h2{
    align-items: center;
}
.faq_top h2 span{
    display: inline-flex;
    margin: 0 20px;
    transform: translateY(-10px);
}
.faq_text{
    color: #454545;
    font-size: 18px;
    line-height: 21.09px;
    width: 401px;
}
.faq_item{
    background: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 20px;
}
.faq_item:last-child{
    margin-bottom: 0;
}
.faq_item-title{
    font-weight: 500;
    line-height: 30.6px;
    cursor: pointer;
    padding: 26px 35px;
    padding-right: 90px;
    position: relative;
    font-size: 26px;
}
.faq_item-title span{
    position: absolute;
    background: #018BC1;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    right: 35px;
    top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.faq_item-title span svg{
    display: flex;
}
.faq_item-title.active span{
    border: 1px solid #018BC1;
    background: none;
    transform: rotate(-90deg);
}
.faq_item-title.active span path{
    stroke:#018BC1 ;
}
.faq_item-text{
    line-height: 23.2px;
    color: #414141;
    padding: 0 35px 34px;
    font-size: 20px;
    display: none;
}
.licenses{
    position: relative;
    z-index: 1;
}
.services_page{
    padding-bottom: 78px;
    position: relative;
    z-index: 1;
}
.services_page::before{
    position: absolute;
    content: '';
    width: 100%;
    height: calc(100% + 120px);
    top: -120px;
    left: 0;
    background-image: url(../img/services_page.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.services_page-wrapper{
    position: relative;
}
.services_page-info{
    width: 700px;
}
.services_page h2{
    font-weight: 600;
    line-height: 78.06px;
    font-size: 60px;
    margin-bottom: 14px;
    font-family: 'RockStar';
}
.services_page h2 span{
    display: block;
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.services_page p{
    font-weight: 500;
    line-height: 28.25px;
    font-size: 24px;
    margin-bottom: 46px;
    max-width: 600px;
}
.services_page-items{
    display: flex;
    width: 516px;
    flex-wrap: wrap;
    gap: 20px;
}
.services_page-item{
    background: #FFFFFF;
    border: 1px solid #018BC1;
    padding: 20px 25px;
    border-radius: 15px;
    font-weight: 600;
    line-height: 28.63px;
    text-align: center;
    color: #018BC1;
    font-size: 24px;
    opacity: 0.5;
    transition: all 0.3s;
}
.services_page-item:nth-child(4){
    margin-right: 10px;
}
.services_page-item:hover{
    opacity: 1;
    background: #018BC1;
    color: #fff;
}
.services_page-img{
    position: absolute;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.2s linear;
    z-index: -1;
}
.services_page-img:nth-child(1){
    width: 215px;
    height: 215px;
    top: -50px;
    right: 480px;
}
.services_page-img:nth-child(2){
    width: 178px;
    height: 178px;
    top: 40px;
    right: 120px;
}
.services_page-img:nth-child(3){
    width: 377px;
    height: 377px;
    top: 211px;
    right: 236px;
}
.services_page-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.team_page{
    overflow: hidden;
    padding-top: 0;
}
.team_page::before{
    z-index: -1;
}
.team_page h2{
    font-size: 60px;
    line-height: 78.06px;
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 40px;
}
.team_page .team_info{
    max-width: 520px;
}
.team_page .team_text{
    margin-bottom: 34px;
}

.team_page p{
    font-weight: 500;
    line-height: 28.25px;
    font-size: 24px;
    margin-bottom: 34px;
}
.team_page-body{
    position: relative;
}
.team_card-wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}
.team_card{
    display: none;
}
.team_card-close{
    position: absolute;
    cursor: pointer;
    top: 0;
    display: flex;
    right: 0;
}
.team_card-img{
    width: 650px;
    height: 650px;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}
.team_card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team_card-person{
    width: 540px;
    display: flex;
    flex-direction: column;
    padding-top: 102px;
}
.team_card-title{
    font-weight: 600;
    line-height: 62.04px;
    color: #23233F;
    margin-bottom: 18px;
    font-size: 52px;
    text-transform: uppercase;
}
.team_card-option{
    line-height: 27.84px;
    color: #4F4F4F;
    font-size: 24px;
    margin-bottom: 44px;
}
.team_card-btn{
    width: 403px;
    font-size: 21px;
    height: 59px;
    margin-top: auto;
}
.team_card-btn::before{
    background-size: cover;
}
.team_card-desc{
    line-height: 16.24px;
    color: #2D2D2D;
    margin-bottom: 10px;
    font-size: 14px;
}
.team_card-inner{
    display: flex;
    justify-content: space-between;
}
.team_card-info{
    width: 650px;
}
.team_card-right{
    width: 574px;
}
.team_card-right .team_card-img{
    width: 574px;
    height: 804px;
}
.team_card-subtitle{
    font-weight: 500;
    line-height: 28.8px;
    letter-spacing: -0.2800000011920929px;
    color: #1E2639;
    font-size: 24px;
    margin-bottom: 30px;
}
.team_card-text{
    font-size: 20px;
    line-height: 23.2px;
    font-weight: 400;
    position: relative;
    max-height: 46px;
    overflow: hidden;
    transition: all 0.6s;
}
.team_card-text:hover::before{
    opacity: 0;
}
.team_card-text::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    transition: all 0.3s;
    width: 100%;
    height: 19px;
    background: linear-gradient(-90deg, rgba(242, 242, 242, 0.8) 0%, rgba(242, 242, 242, 0) 100%);
}
.team_card-text span, .team_card-text p{
    display: block;
    margin-bottom: 8px;
}
.team_card-text span:last-child, .team_card-text p:last-child{
    margin-bottom: 0;
}
.team_card-item{
    margin-bottom: 55px;
}
.team_card-item:last-child{
    margin-bottom: 0;
}
.sales_page h2{
    display: block;
    margin-bottom: 120px;
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    line-height: 78.06px;
    -webkit-background-clip: text;
}
.sales_page{
    padding-top: 0;
}
.contacts h2{
    display: block;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    line-height: 78.06px;
    -webkit-background-clip: text;
}
.contacts_items{
    display: flex;
    gap: 276px;
    margin-bottom: 25px;
}
.contacts_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contacts_item-subtitle{
    line-height: 16.24px;
    color: #272727;
    margin-bottom: 15px;
    font-size: 14px;
}
.contacts_item-adres{
    font-size: 28px;
    line-height: 32.96px;
    font-weight: 500;
    max-width: 340px;
}
.contacts_item-messages{
    gap: 20px;
    display: flex;
}
.contacts_item-message{
    display: flex;
    width: 52px;
}
.contacts_item-messages img{
    width: 100%;
    height: auto;
}
.contacts_map{
    height: 478px;
    border-radius: 30px;
    overflow: hidden;
}
.contacts_map iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq_item-text p{
    margin-bottom: 20px;
}
.faq_item-text p:last-child{
    margin-bottom: 0;
}
.vacancies h2{
    display: block;
    margin-bottom: 172px;
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    line-height: 78.06px;
    -webkit-background-clip: text;
}
.vacancies_wrapper{
    position: relative;
}
.vacancies_img{
    position: absolute;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.1s linear;
}
.vacancies_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vacancies_img:nth-child(1){
    width: 249px;
    height: 249px;
    top: -61px;
    left: 590px;
}
.vacancies_img:nth-child(2){
    width: 179px;
    height: 179px;
    top: 51px;
    right: 272px;
}
.conslult_team {
    margin-top: 100px;
}
.conslult_team .conslult_wrapper{
    background: linear-gradient(90deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
}
.conslult_team .conslult_title{
    max-width: 1100px;
    text-transform: none;
}
.conslult_team .conslult_text{
    max-width: 474px;
}
.conslult_team .conslult_btn{
    font-size: 16px;
    gap: 30px;
}
.conslult_team .conslult_img:nth-child(1){
    left: 778px;
    top: 223px;
    width: 157px;
    height: 157px;
}
.conslult_team .conslult_img:nth-child(2){
    right: 146px;
    top: 193px;
    width: 131px;
    height: 131px;
}
.license{
    background-color: #F2F2F2;
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}
.license h2{
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 24px;
}
.license_wrapper{
    display: flex;
    justify-content: space-between;
}
.license_info{
    width: 424px;
}
.license_inner{
    width: calc(100% - 480px);
}

.license_img{
    width: 100%;
    display: flex;
    margin-bottom: 45px;
}
.license_img img{
    width: 100%;
    height: auto;
}
.license_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 15px;
    width: 293px;
    height: 69px;
    font-weight: 600;
    line-height: 28.63px;
    text-align: center;
    color: #018BC1;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0 auto;
}
.license_title{
    font-weight: 600;
    line-height: 62.04px;
    margin-bottom: 20px;
    color: #23233F;
    font-size: 52px;
    text-transform: uppercase;
}
.license_item{
    font-weight: 400;
    line-height: 23.2px;
    color: #2D2D2D;
    display: block;
    position: relative;
    font-size: 20px;
    margin-bottom: 12px;
    text-decoration: underline 1px;
    text-underline-offset: 2px;
    padding-left: 37px;
    transition: all 0.3s;
}
.license_item:hover{
    color: #018BC1;
}
.license_item::before{
    position: absolute;
    content: '';
    background-image: url(../img/license_item.svg);
    background-size: cover;
    width: 28px;
    height: 29px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


.license + .footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.error_page{
    margin-bottom: 80px;
}
.error_page-subtitle{
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-family: 'RockStar';
    font-size: 60px;
    font-weight: 600;
    line-height: 78.06px;
    text-transform: uppercase;
    margin: 0 auto 48px;
    text-align: center;
}
.error_page-title{
    background: -webkit-linear-gradient(180deg, rgba(1, 139, 193, 0) 10%, #018BC1 97.32%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-family: 'RockStar';
    font-weight: 600;
    line-height: 520.4px;
    font-size: 400px;
    text-align: center;
}
.error_page-btn{
    height: 67px;
    width: 449px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-weight: 500;
    line-height: 23.44px;
    gap: 62px;
    color: #fff;
    font-size: 20px;
    background-image: url(../img/error_page-btn.svg);
    background-size: cover;
    position: relative;
    z-index: 1;
}
.error_page-btn::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    transition: all 0.3s;
    opacity: 0;
    background-size: cover;
    right: 0;
    background-image: url(../img/error_page-btn2.svg);
}
.error_page-btn:hover::before{
    opacity: 1;
}
.error_page-btn::after{
    position: relative;
    content: "";
    display: block;
    background-image: url(../img/error_page-arrow.svg);
    width: 45px;
    height: 45px;
}
.thanks_page{
    margin-bottom: 80px;
    margin-top: 100px;
}
.thanks_page-title{
    font-weight: 600;
    line-height: 156.12px;
    background: -webkit-linear-gradient(0deg, #018BC1 0%, #0583BE 20.4%, #199ECC 38.4%, #2FBBDB 100%);
    font-size: 120px;
    text-transform: uppercase;
    text-align: center;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-family: 'RockStar';
    margin-bottom: 132px;
}
.questionnaire_popup{
    border: 5px solid #FFFFFF;
    background: #F2F2F2;
    padding: 30px 64px 40px 30px;
    border-radius: 30px;
    width: 1220px;
}
.questionnaire_popup-logo{
    display: flex;
    width: 127px;
    margin: 0 auto 30px;
}
.questionnaire_popup-logo img{
    width: 100%;
    height: auto;
}
.questionnaire_popup-title{
    font-weight: 600;
    line-height: 52px;
    margin-bottom: 20px;
    font-family: 'RockStar';
    margin-bottom: 20px;
    font-size: 52px;
    text-align: center;
}
.questionnaire_popup-subtitle{
    font-weight: 600;
    line-height: 28.63px;
    text-align: center;
    color: #414141;
    margin: 0 auto 38px;
    font-size: 24px;
    max-width: 920px;
}
.questionnaire_popup-text{
    font-weight: 500;
    line-height: 25.89px;
    margin-bottom: 26px;
    color: #414141;
    font-size: 22px;
}
.questionnaire_item-title{
    font-weight: 800;
    line-height: 26.95px;
    color: #414141;
    font-size: 22px;
    margin-bottom: 25px;
}
.questionnaire_item-title strong{
    font-weight: 800;
    text-transform: uppercase;
}
.questionnaire_item-inps{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}
.questionnaire_item-inp{
    width: calc(50% - 31px);
}
.questionnaire_item-inp input{
    width: 100%;
    display: block;
    background: #FFFFFF;
    height: 55px;
    border: none;
    padding-left: 30px;
    border-radius: 15px;
}
.questionnaire_item{
    margin-bottom: 40px;
}
.questionnaire_item:last-child{
    margin-bottom: 0;
}
.questionnaire_item-inp input::placeholder{
    color: #414141;
}
.questionnaire_item-cheks{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.questionnaire_item-chek .wpcf7-list-item-label, .questionnaire_item-cheks label span{
    display: flex;
    align-items: center;
    gap: 21px;
   
    cursor: pointer;
}
.questionnaire_item-cheks span.wpcf7-list-item{
     width: 390px;
}
.questionnaire_item-cheks label{
    display: block;
    width: 100%;
}
.questionnaire_item-chek:nth-child(2n), .questionnaire_item-cheks span.wpcf7-list-item:nth-child(2n){
    width: calc(100% - 410px);
}
.questionnaire_item-chek input, .questionnaire_item-cheks input{
    display: none;
}
.questionnaire_item-cheks label span:before, .questionnaire_item-chek span.wpcf7-list-item-label:before{
    border: 1px solid #000000;
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: block;
}
.questionnaire_item-chek input:checked + span:before, .questionnaire_item-cheks input:checked + span:before{
    background: #018BC1;
    background-image: url(../img/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px 13px;
}
.questionnaire_item-inp.full{
    width: 100%;
}
.questionnaire_list{
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
}
.questionnaire_list-item, .questionnaire_list span.wpcf7-list-item{
    padding: 12px 30px;
    width: 50%;
    
    cursor: pointer;
    border-bottom: 1px solid #000000;
    color: #414141;
}
.questionnaire_list span.wpcf7-list-item-label, .questionnaire_item-ways span.wpcf7-list-item-label{
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
}
.questionnaire_list-item:nth-last-child(2),
.questionnaire_list-item:last-child, .questionnaire_list span.wpcf7-list-item:nth-last-child(2), .questionnaire_list span.wpcf7-list-item:last-child {
    border-bottom: none;
    cursor: pointer;
}
.questionnaire_list-item input, .questionnaire_list input, .questionnaire_item-ways input{
    display: none;
}
.questionnaire_list label{
    width: 100%;
}

.questionnaire_list-item span, .questionnaire_list span.wpcf7-list-item-label:before, .questionnaire_item-ways .wpcf7-list-item-label:before{
    display: block;
    border: 1px solid #000000;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    min-width: 26px;
}
.questionnaire_list-item input:checked + span, .questionnaire_list input:checked + span.wpcf7-list-item-label:before, .questionnaire_item-ways  input:checked + span.wpcf7-list-item-label:before{
    background: #018BC1;
    background-image: url(../img/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px 13px;
}
.questionnaire_desc{
    font-size: 24px;
    line-height: 28.63px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 50px;
}
.questionnaire_desc span{
    font-weight: 400;
    line-height: 27.84px;
    text-align: center;
    color: #414141;
    font-size: 24px;
    display: block;
    margin-top: 5px;
}
.questionnaire_item-ways{
    display: flex;
    flex-wrap: wrap;
    gap:  28px 18px;
}
.questionnaire_item-ways .questionnaire_list-item, .questionnaire_item-ways .wpcf7-list-item{
    border: none;
    width: calc(25% - 14px);
    color: #000000;
    padding: 0;
    gap: 20px;
}
.questionnaire_item-ways .questionnaire_list-item:nth-child(3), .questionnaire_item-ways .wpcf7-list-item:nth-child(3){
    margin-right: 40px;
}
.questionnaire_item-chek.full{
    width: 100%;
    margin-bottom: 12px;
    display: block;
}
.questionnaire_btn{
    margin-top: 50px;
    font-size: 18px;
}
.questionnaire_popup .fancybox-close-small {
    background-image: url(../img/questionnaire_close.svg);
    width: 55px;
    height: 55px;
    top: 30px;
    right: 30px;
}
.questionnaire_popup .fancybox-close-small svg{
    display: none;
}
.questionnaire_item-inp.hide{
    display: none;
    margin-top: 18px;
}
.questionnaire_item-inp.hide.active{
    display: flex;
}
.order_popup{
    background: #018BC1;
    width: 1320px;
    padding: 45px 56px;
    border-radius: 15px;
}
.order_popup-title{
    font-family: 'RockStar';
    font-size: 48px;
    font-weight: 600;
    line-height: 49.2px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.order_popup-subtitle{
    font-size: 36px;
    line-height: 52px;
    color: #fff;
    font-weight: 500;
    width: 100%;
    margin-bottom: 30px;
}
.order_popup-inps{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1065px;
    gap: 50px;
}
.order_popup .conslult_form-btn{
    margin-top: 50px;
}
.fancybox-close-small {
    opacity: 1;
}
.order_popup .fancybox-close-small {
    background-image: url(../img/questionnaire_close2.svg);
    width: 55px;
    height: 55px;
    top: 20px;
    right: 30px;
}
.order_popup .fancybox-close-small svg{
    display: none;
}


.team_serive.team::before{
    display: none;
}
.team_serive .team_item:nth-child(1){
    transform: none;
}

.team_item-desc{
    width: 316px;
    height: 316px;
    background: #018BC1;
    border-radius: 15px;
    padding: 38px;
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 23.54px;
    font-weight: 500;
    color: #fff;
}
.team_serive .team_items{
    gap: 20px;
    justify-content: flex-end     ;
}





@media(max-width:1400px){
    .header_wrapper{
        width: 100%;
        margin: 0;
    }
}
@media(max-width:1350px){
    .container {
        max-width: 930px;
    }
    .menu{
        gap: 24px;
    }
    .header_wrapper{
        padding: 20px;
    }
    .main h1 {
        line-height: 62.06px;
        max-width: 552px;
        font-size: 48px;
    }
    .main_btn {
        width: 343px;
        height: 52px;
        font-size: 14px;
        gap: 17px;
    }
    .main_btn::after {
        width: 27px;
        margin-bottom: 4px;
        height: 27px;
    }
    .why_item-wrapper{
        padding: 20px;
        min-height: 200px;
    }
    .why_item-arrow{
        width: 44px;
        height: 44px;
        top: 13px;
        right: 13px;
    }
    .why_item-title{
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    .why_item-text {
        line-height: 18.2px;
        font-size: 16px;
    }
    .why_item-quote{
        padding-left: 20px;
    }
    .why::before {
        width: 770px;
        height: 490px;
        bottom: 200px;
        right: calc(50% - 758px);
    }
    .comprehensive_item{
        width: 310px;
    }
    .comprehensive_items{
        gap: 30px 10%;
    }
    .comprehensive_item-btn {
        height: 36px;
    }
    .comprehensive_img{
        top: 170px;
    }
    .team_items{
        margin-left: 40px;
    }
    .team_item-img{
        height: 246px;
    }
    .team_item-btn{
        width: 248px;
        height: 36px;
    }
    .team_items {
        gap: 30px 40px;
    }
    .team_item {
        width: calc(33.333% - 26.66666px);
    }
    .team_item:nth-child(1) {
        margin-left: calc(33.333% + 13.33333px);
    }
    .team_item-btn::after{
        width: 26px;
        height: 26px;
    }
    .atmosphere_item{
        font-size: 18px;
        min-height: 210px;
    }
    .atmosphere::before{
        top: 820px;
    }
    .advantages_item{
        padding: 20px;
        font-size: 14px;
        line-height: 16.24px;
    }
    .about_title {
        line-height: 32px;
        font-size: 22px;
    }
    .about_img{
        height: 183px;
    }
    .about_item{
        height: 450px;
    }
    .about_column:nth-child(1) {
        transform: translateY(60px);
    }
    .about_inner-img {
        height: 350px;
    }
    .about_inner-title {
        line-height: 40.85px;
        font-size: 34px;
    }
    .about_inner{
        margin-bottom: 30px;
    }
    .reviews h2{
        margin-bottom: 30px;
    }
    .reviews_video{
        height: 270px;
        padding: 20px;
    }
    .reviews_video-title{
        font-size: 18px;
    }
    .reviews_item-title{
        margin-bottom: 30px;
    }
    .sales_wrapper{
        width: 780px;
    }
    .sales_img{
        width: 100%;
        display: flex;
    }
    .sales_img img{
        width: 100%;
        height: auto;
    }
    .sales_item{
        width: 300px;
    }
    .sales_item:nth-child(2) {
        top: 50px;
        right: -102px;
    }
    .sales_item:nth-child(3) {
        bottom: 58px;
        right: -98px;
    }
    .sales_item:nth-child(5) {
        left: -102px;
        top: 242px;
    }
    .sales{
        padding-bottom: 160px;
    }
    .footer_menu-wrapper, .footer_links{
        margin-right: 40px;
    }
    .footer_left {
        width: 340px;
    }
    .footer_title {
        font-size: 26px;
    }
    .conslult_img:nth-child(3) {
        right: 100px;
        bottom: -92px;
    }
    .conslult_img:nth-child(2) {
        right: 70px;
    }
    .conslult_img:nth-child(1) {
        right: 29px;
        top: -70px;
    }
    .footer::before {
        font-size: 10vw;
        line-height: 122%;
    }
    .conslult_title{
        font-size: 42px;
        max-width: 640px;
    }
    .service_main-img{
        width: 540px;
        top: -20px;
        right: -50px;
    }
    .service_main-img img{
        width: 100%;
        height: auto;
    }
    .service_main-info {
        max-width: 600px;
    }
    .service_items{
        gap: 160px 0;
    }
    .service_item{
        width: 370px;
        z-index: 1;
    }
    .service_item:nth-child(3) {
        margin-left: 35px;
    }
    .service_item:nth-child(4) {
        margin-right: 50px;
        transform: translateY(50px);
    }
    .service_block-img{
        height: 460px;
    }
    .steps_item{
        align-items: center;
        padding-right: 0;
    }
    .steps_item-info::before {
        width: 400px;
        background-size: cover;
        height: 140px;
        top: -27px;
    }
    .steps_item{
        margin-bottom: 80px;
    }
    .steps_item:nth-child(3) .steps_item-img{
        margin-top: 0;
    }
    .steps_item:nth-child(3){
        padding-left: 30px;
    }
    .steps_item-img {
        width: 360px;
        height: 360px;
    }
    .steps_item:nth-child(4) .steps_item-info{
        margin-top: 80px;
    }
    .service_advantages-title{
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 30px;
    }
   .conslult_form .conslult_img:nth-child(2){
        top: 220px;
    }
    .works_item-img{
        height: 270px;
    }
    .licenses_item:nth-child(1){
        width: 220px;
    }
   /* .licenses_item:nth-child(2){
        width: 132px;
        left: 260px;
    }*/
    .licenses_item:nth-child(3) {
        width: 180px;
        bottom: 0;
        right: 226px;
    }
    .licenses_item:nth-child(4) {
        width: 169px;
        top: 40px;
        right: -10px;
    }
    .licenses_item:nth-child(2) {
        width: 159px;
        top: 24px;
        left: 431px;
    }
    .licenses h2 {
        font-size: 132px;
    }
    .faq_text{
        width: 350px;
    }
    .faq_top h2{
        width: 450px;
    }
    .services_page-img:nth-child(2){
        right: 30px;
    }
    .services_page-img:nth-child(3){
        right: -10px;
    }
    .services_page-img:nth-child(1) {
        width: 215px;
        height: 215px;
        top: -127px;
        right: 280px;
    }
    .team_card-img {
        width: 420px;
        height: 530px;
    }
    .team_card-person{
        width: 440px;
    }
    .team_card-title {
        line-height: 54.04px;
        font-size: 44px;
    }
    .team_card-right {
        width: 450px;
    }
    .team_card-right .team_card-img{
        width: 100%;
        height: 520px;
    }
    .team_card-info {
        width: 430px;
    }
    .vacancies_img:nth-child(1){
        left: auto;
        right: 40px;
    }
    .vacancies_img:nth-child(2){
        top: 80px;
    }
    .conslult_team .conslult_img:nth-child(2) {
        right: 176px;
        top: 232px;
    }
    .license_info {
        width: 340px;
    }
    .license_inner {
        width: calc(100% - 370px);
    }
    .error_page-subtitle{
        font-size: 52px;
        margin-bottom: 10px;
    }
    .error_page-title {
        line-height: 394px;
        font-size: 308px;
        margin-bottom: 30px;
    }
    .questionnaire_popup{
        padding: 30px;
    }
    .order_popup-inps{
        width: 100%;
        gap: 30px;
    }
    .order_popup-inps .conslult_inp{
/*        width: calc(50% - 15px);*/
    }
    .order_popup-inps > div{
        width: calc(50% - 15px);
    }

    .team_serive .team_item:nth-child(1){
        margin-left: 0;
    }
    .team_item-desc{
        width: 246px;
        height: 246px;
        font-size: 18px;
        padding: 24px;
    }

}
@media (max-width: 991.98px){
    .container{
        max-width: 730px;
    }
    .header_links{
        display: none;
    }
    .header_inner{
        position: fixed;
        opacity: 0;
        visibility: hidden;
        top: -16px;
        right: 50%;
        transform: translateX(50%);
        width: 100vw;
        height: 100vh;
        padding-top: 120px;
        transition: all 0.6s;
        overflow: auto;
        background-color: #fff;
        padding-bottom: 40px;
    }
    .header_inner .header_links{
        display: flex;
        max-width: 670px;
        margin: 40px auto 0;
    }
    .header_logo{
        z-index: 1;
    }
    .menu{
        flex-direction: column;
        max-width: 670px;
        margin: 0 auto;
    }
    .menu a{
        font-size: 18px;
    }
    .header_inner.active{
        opacity: 1;
        visibility: visible;
    }
    .header_wrapper{
        padding:10px 20px ;
    }
    .main_wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
    .main{
        padding-top: 120px;
    }
    .main h1{
        margin-bottom: 400px;
    }
    h2{
        font-size: 42px;
    }
    .main_btn::before {
        backdrop-filter: blur(5px);
        background-image: url(../img/main_btn.svg);
    }
    .why::before{
        display: none;
    }
    .why_item{
        width: calc(50% - 10px);
    }
    .why_item:nth-child(5){
        margin-right: 0;
    }
    .why_item:nth-child(6){
        display: none;
    }
    .why_item:nth-child(2){
        order: 1;
    }
    .comprehensive_items{
        gap: 30px;
    }
    .comprehensive_item{
        width: calc(50% - 15px);
        margin: 0 !important;
        display: flex;
        flex-direction: column;
    }
    .comprehensive_item-btn{
        margin-top: auto;
        height: 40px;
    }
    .comprehensive_img{
        display: none;
    }
    .comprehensive h2{
        margin-bottom: 20px;
    }
    .team::before{
        display: none;
    }
    .team_info{
        position: relative;
        margin-bottom: 18px;
    }
    .team_items{
        margin-left: 0;
    }
    .team_item:nth-child(1){
        margin-left: 0;
    }
    .team_item:nth-child(3),
    .team_item:nth-child(1), .team_item:nth-child(4){
        transform: none;
        margin-top: 0;
    }
    .team_item:nth-child(4){
        order: -1;
        width: 100%;
    }
    .team_desc{
        height: auto;
    }
    .team_subtitle{
        display: none;
    }
    .team_items{
        gap: 30px;
    }
    .team_item{
        width: calc(50% - 15px);
    }
    .team{
        padding-bottom: 0;
    }
    .team_item-img {
        height: 330px;
    }
    .team_item-btn {
        width: 300px;
        height: 44px;
    }
    .atmosphere_items{
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr;
     }
     .atmosphere_item:nth-child(1){
        grid-row-start: 1;
        grid-column-start: 1;
        grid-row-end: 2;
        grid-column-end: 2;
     }
     .atmosphere_item:nth-child(2) {
        grid-row-start: 1;
        grid-column-start: 2;
        grid-row-end: 2;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(3){
        grid-row-start: 2;
        grid-column-start: 2;
        grid-row-end: 3;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(4){
        grid-row-start: 3;
        grid-column-start: 1;
        grid-row-end: 5;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(5) {
        grid-row-start: 5;
        grid-column-start: 1;
        grid-row-end: 6;
        grid-column-end: 2;
     }
     .atmosphere_item:nth-child(6){
        grid-row-start: 5;
        grid-column-start: 2;
        grid-row-end: 6;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(7) {
        grid-row-start: 6;
        grid-column-start: 1;
        grid-row-end: 7;
        grid-column-end: 2;
     }
     .atmosphere_item:nth-child(8) {
        grid-row-start: 6;
        grid-column-start: 2;
        grid-row-end: 7;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(9) {

        grid-row-start: 9;
        grid-column-start: 2;
        grid-row-end: 10;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(10) {
        grid-row-start: 9;
        grid-column-start: 1;
        grid-row-end: 10;
        grid-column-end: 2;
     }
     .atmosphere_item:nth-child(11) {
        grid-row-start: 7;
        grid-column-start: 1;
        grid-row-end: 9;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(12){
        grid-row-start: 10;
        grid-column-start: 1;
        grid-row-end: 11;
        grid-column-end: 2;
     }
     .atmosphere_item:nth-child(13){
        grid-row-start: 10;
        grid-column-start: 2;
        grid-row-end: 11;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(14) {
        grid-row-start: 11;
        grid-column-start: 1;
        grid-row-end: 12;
        grid-column-end: 2;
     }
     .atmosphere_item:nth-child(15) {
        grid-row-start: 11;
        grid-column-start: 2;
        grid-row-end: 12;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(16) {
        grid-row-start: 12;
        grid-column-start: 1;
        grid-row-end: 14;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(17) {
        grid-row-start: 14;
        grid-column-start: 2;
        grid-row-end: 15;
        grid-column-end: 3;
     }
     .atmosphere_item:nth-child(18) {
        grid-row-start: 15;
        grid-column-start: 2;
        grid-row-end: 16;
        grid-column-end: 3;
     }
     .atmosphere::before{
        top: auto;
        bottom: 140px;
        left: 0;
        right: auto;
        background-image: url(../img/atmosphere_bef2.png);
        background-size: cover;
        height: 570px;
        width: 340px;
     }
     .about{
        padding-top: 50px;
     }
     .advantages_items{
        flex-wrap: wrap;
     }
     .advantages_item{
        width: calc(50% - 10px);
        font-size: 16px;
        line-height: 1.4;
     }
     .advantages_img.four{
        display: none;
     }
     .advantages_img.three{
        left: auto;
        right: -18px;
        top: 6px;
     }
     .advantages_img.two{
        right: -41px;
        left: auto;
     }
     .about_wrapper{
        flex-wrap: wrap;
     }
     .about_column:nth-child(1) .about_info:nth-child(1){
        display: none;
     }
     .about_column:nth-child(2){
        order: -1;
     }
     .about_column{
        width: calc(50% - 10px);
     }
     .about_column:nth-child(1){
        transform: none;
     }
     .about_img{
        margin-top: 0;
     }
     .about_inner-img{
        display: none;
     }
     .about_inner-info{
        width: 100%;
     }
     .about_inner + .about_img{
        display: none;
     }
     .about_column:nth-child(1) .about_info:nth-child(3){
        margin-top: 20px;
     }
     .about_item{
        padding: 20px;
     }
     .reviews_column:nth-child(2){
        margin-top: 80px;
     }
     .reviews_item-title{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
     }
     .reviews_subtitle{
        display: none;
     }
     .reviews_wrapper::before{
        bottom: 0;
        left: -130px;
        width: 370px;
        height: 408px;
     }
     .reviews_video-title{
        font-size: 12px;
        padding: 10px 12px;
     }
     .reviews_video::before{
        width: 42px;
        height: 42px;
     }
     .reviews_video {
        height: 204px;
     }
     .sales{
        padding-top: 100px;
     }
     .sales_img{
        display: none;
     }
     .sales h2{
        display: block;
        margin-bottom: 24px;
     }
     .sales_wrapper{
        width: 100%;
     }
     .sales_items{
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
     }
     .sales_item{
        position: relative;
        width: calc(50% - 12px);
        inset: auto !important;
        height: 240px;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        padding: 10px;
        z-index: 1;
     }
     .sales_item-btn{
        display: flex;
        position: relative;
        z-index: 1;
        width: 320px;
        height: 64px;
        font-weight: 600;
        line-height: 20.28px;
        color: #fff;
        font-size: 17px;
        gap: 120px;
        text-transform: uppercase;
        justify-content: center;
        align-items: center;
    }
    .sales_item-btn::after {
        position: relative;
        content: "";
        background-size: cover;
        width: 52px;
        height: 52px;
        background: #FFFFFF33;
        background-image: url(../img/btn_arrow2.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        backdrop-filter: blur(7.160046577453613px);
        transform: rotate(-90deg);
        animation: btnAnim 1s infinite alternate;
    }
    .sales_item-btn::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background-image: url(../img/sales_item-btn.svg);
        background-size: cover;
        background-position: center;
        z-index: -1;
        backdrop-filter: blur(5.5px)
    }
    .sales_item-img{
        display: flex;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }
    .sales_item-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .sales_item{
        position: relative;
    }
    .sales_item-title,
    .sales_item-text{
        display: none;
    }
    .sales{
        padding-bottom: 80px;
    }
    .conslult_text{
        margin-bottom: 384px;
    }
    .conslult_img:nth-child(1){
        top: 305px;
        left: 15px;
        right: auto;
    }
    .conslult_img:nth-child(2){
        right: 200px;
        top: 300px;
    }
    .conslult_img:nth-child(3){
        bottom: 108px;
        right: 15px;
    }
    .footer_wrapper{
        position: relative;
        flex-direction: column;
        padding-bottom: 60px;
    }
    .conslult{
        margin-bottom: 40px;
    }
    .footer_menu-wrapper{
        position: absolute;
        width: calc(100% - 380px);
     
        top: 150px;
        right: 0;
        margin-right: 0;
    }
    .footer_desc{
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
    }
    .footer_desc.insta{
        position: relative;
        bottom: auto;
        left: auto;
        width: 60%;
        color: #272727;
        font-size: 10px;
        text-transform: none;
        margin-bottom: 10px;
    }
    .menu_burger{
        display: block;
        width: 38px;
        height: 18px;
        transition: all 0.3s;
        position: relative;
    }
    .menu_burger.active{
        width: 30px;
    }
    .menu_burger::before{
        position: absolute;
        content: "";
        background-color: #018BC1;
        height: 2px;
        width: 100%;
        right: 0;
        top: 0;
        transition: all 0.3s;
        border-radius: 2px;
    }
    .menu_burger.active::before{
        transform: rotate(45deg);
        top: 8px;
    }
    .menu_burger.active::after{
        transform: rotate(-45deg);
        bottom: 8px;
        width: 100%;
    }
    .menu_burger.active span{
        transform: scale(0);
    }
    .menu_burger::after{
        position: absolute;
        content: "";
        background-color: #018BC1;
        height: 2px;
        width: 80%;
        right: 0;
        bottom: 0;
        transition: all 0.3s;
        border-radius: 2px;
    }
    .menu_burger span{
        position: absolute;
        content: "";
        background-color: #018BC1;
        height: 2px;
        width: 60%;
        right: 0;
        top: 8px;
        transition: all 0.3s;
        border-radius: 2px;
    }
    .about_info.mobile{
        display: block;
        margin-bottom: 20px;
    }
    .header.fixed{
        opacity: 1;
    }
    .service_main-info{
        width: 100%;
    }
    .service_main{
        padding-bottom: 380px;
    }
    .service_main-img{
        right: calc(50% - 220px);
        width: 440px;
        top: auto;
        bottom: -320px;
    }
    .service_item {
        width: 300px;
        padding: 20px;
    }
    .service_item-title {
        line-height: 32px;
        margin-bottom: 20px;
        font-size: 26px;
    }
    .service_item:nth-child(2) {
        transform: translateY(70px);
    }
    .service_items{
        gap: 60px 0;
    }
    .service_item:nth-child(4){
        margin-right: 0;
    }
    .service_block-img{
        height: 420px;
    }
    .steps_item-info::before{
        display: none;
    }
    .steps_item-img{
        display: none;
    }
    .steps_item:nth-child(2n){
    
        flex-direction: row;
    }
    .steps h2{
        margin-bottom: 40px;
    }
    .steps_item:nth-child(2n) .steps_item-number{
        margin-left: 0;
    }
    .steps_item:nth-child(2n) .steps_item-info{
        text-align: left;
    }
  .steps_item-info{
        width: 100%;
    }
    .steps_item:nth-child(3){
        padding-left: 0;
    }
    .steps_item:nth-child(4) .steps_item-info{
        margin-top: 0;
    }
    .service_advantages-items{
        flex-wrap: wrap;
    }
    .service_advantages-item{
        width: calc(50% - 11px);
    }
    .conslult_form .conslult_title{
        margin-bottom: 320px;
    }
    .works_slide{
        flex-direction: column;
    }
    .works_item{
        width: 100%;
    }
    .conslult_form .conslult_img:nth-child(2){
        top: 180px;
    }
    .conslult_form  .conslult_img:nth-child(1){
        top: 170px;
    }
    .conslult_form  .conslult_img:nth-child(3) {
        bottom: 240px;
    }
    .licenses_item{
        position: relative;
        transform: none;
        animation: none !important;
        inset: auto !important;
    }
    .licenses h2{
        margin-bottom: 100px;
        font-size: 92px;
    }
    .licenses_items{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .licenses_item{
        width: calc(50% - 10px) !important;
    }
    .licenses_wrapper{
        padding: 0;
    }
    .licenses{
        padding-top: 60px;
    }
    .faq_top h2{
        width: 100%;
    }
    .faq_top{
        flex-direction: column;
        gap: 30px;
    }
    .faq_text{
        width: 100%;
    }
    .services_page-imgs{
        display: none;
    }
    .team_card-wrapper{
        flex-direction: column;
    }
    .team_card-img {
        width: 562px;
        height: 600px;
    }
    .team_card-person{
        padding-top: 20px;
        width: 100%;
    }
    .team_card-desc{
        display: none;
    }
    .team_card-right .team_card-img{
        display: none;
    }
    .team_card-inner{
        flex-direction: column-reverse;
    }
    .team_card-right{
        width: 100%;
    }
    .team_card-item{
        margin-bottom: 30px;
    }
    .team_card-text::before{
        display: none;
    }
    .team_card-text{
        max-height: none !important;
    }
    .team_card-info{
        width: 100%;
    }
    .contacts_items{
        gap: 40px;
    }
    .vacancies_img{
        display: none;
    }
    .vacancies h2{
        margin-bottom: 30px;
    }
    .conslult_team .conslult_img:nth-child(2) {
        right: 200px;
        left: auto;
        top: auto;
        bottom: 300px;
    }
    .conslult_team .conslult_img:nth-child(1) {
        bottom: 205px;
        left: 35px;
        top: auto;
        right: auto;
    }
    .conslult_img{
        transform: none !important;
    }
    .license + .footer{
        position: relative;
    }
    .license{
        margin-bottom: 0 !important;
    }
    .license_wrapper{
        flex-direction: column;
    }
    .license_info{
        width: 400px;
    }
    .license_inner{
        width: 100%;
        margin-top: 50px;
    }
    .crumbs_block{
        margin-top: 110px;
    }
    .error_page-subtitle {
        font-size: 40px;
    }
    .error_page-title {
        line-height: 320px;
        font-size: 240px;
    }
    .thanks_page-title{
        font-size: 90px;
        line-height: 1.4;
        margin-bottom: 80px;
    }
    .questionnaire_item-chek{
        width: calc(50% - 10px);
    }
    .questionnaire_item-inp {
        width: calc(50% - 15px);
    }
    .questionnaire_item-ways .questionnaire_list-item:nth-child(3), .questionnaire_item-ways .wpcf7-list-item:nth-child(3){
        margin-right: 0;
    }
    .questionnaire_item-ways .questionnaire_list-item, .questionnaire_item-ways .wpcf7-list-item {
        width: calc(33.3333% - 14px);
    }
    .order_popup{
        padding: 40px 20px;
    }
    .order_popup-title{
        padding-right: 70px;
    }
     .team_serive .team_items{
        justify-content: space-between;
    }
    .team_item-desc{
        width: 330px;
        height: 330px;
        font-size: 20px;
    }
}
@media (max-width: 767.98px){
    .container{
        max-width: 100%;
    }
    .header{
        top: 9px;
    }
    .header_wrapper{
        padding: 8px 10px;
        width: calc(100% + 20px);
        margin-left: -10px;
    }
    .header_logo{
        width: 90px;
    }
    .header_logo img{
        width: 100%;
        height: auto;
    }
    .main{
        padding: 84px 0 29px;
    }
    .main h1{
        line-height: 33.83px;
        font-size: 26px;
    }
    .main_btn::before {
        backdrop-filter: blur(4px);
    }
    .main_bg img {
        object-position: 32%;
    }
    .header_inner{
        top: -9px;
    }
    .header_inner .header_links,
    .menu{
        padding-left: 15px;
        padding-right: 15px;
    }
    .why{
        padding-top: 43px;
    }
    .why h2{
       
        margin-bottom: 24px;
    }
    h2{
        font-size: 22px;
        line-height: 22.55px;
    }
    .why_img{
        width: 100%;
        margin: 0;
    }
    .why_items{
        margin-top: 0;
        gap: 0;
    }
    .why_item{
        width: 100%;
        margin-top: -15px;
    }
    .why_item-wrapper{
        padding: 20px 25px 25px;
        border-radius: 25px;
        min-height: 218px;
    }
    .why_item-bg img{
        display: none;
    }
    .why_item-bg{
        border-radius: 25px;
        background-color: #fff;
    }
    .why_item-title{
        line-height: 31.85px;
        font-size: 26px;
    }
    .why_item:nth-child(3){
        order: 1;
    }
    .why_item:nth-child(2){
        order: 2;
        margin-top: 20px;
    }
    .why_item-quote{
        padding-left: 26px;
        line-height: 20.28px;
        font-size: 17px;
    }
    .why_item-quote span{
        margin-right: -110px;
    }
    .comprehensive{
        padding: 0;
    }
    .comprehensive_item{
        width: 100%;
        padding: 20px 27px 15px;
    }
    .comprehensive_item-title{
        line-height: 26.25px;
        margin-bottom: 20px;
        font-size: 22px;
    }
    .comprehensive_item-btn{
        width: 286px;
        height: 44px;
        min-width: 286px;
        align-self: center;
    }
    .comprehensive_item{
        display: flex;
        flex-direction: column;
    }
    .btn{
        background-image: url(../img/comprehensive_item-btn3.svg);
    }
    .btn::before{
        display: none;
    }
    .comprehensive_item:nth-child(2n){
        order: 1;
    }
    .team_text{
        line-height: 20.01px;
        font-size: 17px;
    }
    .team_items{
        gap: 20px;
    }
    .team_item{
        width: 100%;
    }
    .team_desc{
        font-size: 14px;
        text-align: center;
        line-height: 16.48px;
        padding: 10px 32px;
    }
    .team_item-img {
        height: 92vw;
    }
    .team_item-title{
        line-height: 26.25px;
        font-size: 22px;
    }
    .team_item-text {
        font-size: 16px;
    }
    .atmosphere{
        padding-top: 40px;
    }
    .atmosphere h2{
        margin-bottom: 16px;
    }
    .atmosphere_item{
        min-height: 170px;
    }
    .atmosphere_items{
        gap: 6px;
    }
    .atmosphere_item{
        font-size: 12px;
        line-height: 1.4;
    }
    .atmosphere_item.video::before{
        height: 59px;
        width: 59px;
    }
    .atmosphere::before{
        bottom: 20px;
        height: 456px;
        width: 270px;
    }
    .advantages{
        padding: 0;
    }
    .advantages_title{
        line-height: 18.56px;
        font-size: 16px;
        margin-bottom: 18px;
    }
    .advantages_title span{
        margin-left: 0;
    }
    .advantages_img.three{
        width: 73px;
        height: 73px;
    }
    .advantages_img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .advantages_img.one{
        width: 66px;
        height: 66px;
    }
    .advantages_img.two{
        width: 117px;
        height: 117px;
        bottom: -36px;
    }
    .advantages_items{
        gap: 10px;
    }
    .advantages_item{
        width: 100%;
        min-height: 1px;
        padding: 16px 20px;
        line-height: 16.24px;
        border-radius: 15px;
        font-size: 14px;
    }
    .about_title{
        font-size: 16px;
        line-height: 18.56px;
        font-weight: 400;
        font-family: 'Gilroy';
    }
    .about_top{
        margin-bottom: 32px;
    }
    .about_title-quote{
        display: none;
    }
    .about_column{
        width: 100%;
    }
    .about_info{
        padding: 10px;
    }
    .about_info-title{
        font-size: 12px;
        line-height: 13.92px;
        margin-bottom: 20px;
    }
    .about_info-text{
        line-height: 16.38px;
        font-size: 14px;
    }
    .about_info-text strong{
        font-style: italic;
        display: block;
    }
    .about_info-text::before{
        display: none;
    }
    .about_info-text span{
        color: #018BC1;
    }
    .about_item {
        height: 109vw;
        padding: 10px 15px;
        border-radius: 16px;
    }
    .about_item-title{
        line-height: 19.09px;
        font-size: 16px;
        margin-bottom: 7px;
    }
    .about_info-text {
        line-height: 13.92px;
        font-size: 12px;
        max-height: none !important;
    }
    .about_column:nth-child(1){
        flex-direction: column-reverse;
        display: flex;
    }
    .about_column:nth-child(1) .about_info:nth-child(3){
        margin-top: 0;
        margin-bottom: 20px;
    }
    .about_info{
        border-radius: 15px !important;
    }
    .about_img{
        border-radius: 15px;
    }
    .about_title span{
        color: #000;
    }
    .about_img {
        height: 59vw;
    }
    .about_img:first-child{
        display: none;
    }
    .about_wrapper{
        margin-bottom: 18px;
    }
    .about_inner-title{
        line-height: 16.24px;
        font-size: 14px;
        margin-bottom: 0;
        display: none;
    }
    .about_inner-text{
        line-height: 16.24px;
        font-size: 14px;
    }
    .about_inner-text .mobile{
        color: #000;
        display: inline;
    }
    .about_inner-text br{
        display: block;
    }
    .reviews h2{
        margin-bottom: 20px;
    }
    .about_quote-mobile{
        display: block;
        background: #FFFFFF;
        border-radius: 13px 13px 0 13px;
        padding: 8px 10px;
        line-height: 13.92px;
        font-size: 12px;
    }
    .about_quote-mobile span{
        display: block;
        font-style: italic;
        font-weight: 700;
        line-height: 12.38px;
        color: #000000;
        font-size: 10px;
        margin-left: auto;
        text-align: right;
        margin-top: 6px;
    }
    .reviews_wrapper{
        flex-direction: column;
    }
    .reviews_column{
        width: 100%;
        gap: 15px;
    }
    .reviews_video {
        padding: 10px 16px;
        border-radius: 16px;
        height: 69vw;
    }
    .reviews_video::before{
        bottom: 9px;
        right: 16px;
    }
    .reviews_video-title {
        font-size: 10px;
        padding: 4px 10px;
    }
    .reviews_column{
        display: none;
    }
    .reviews_item{
        padding: 11px 16px 20px;
        border-radius: 15px;
    }
    .reviews_item-title{
        line-height: 16.7px;
        font-size: 14px;
        margin-bottom: 30px;
    }
    .reviews_item:hover .reviews_item-text{
        max-height: 126px !important;
    }
    .reviews_item-text{
        line-height: 13.92px;
        font-size: 12px;
        max-height: 126px;
    }
    .reviews_item:hover .reviews_item-text::before{
        display: block !important;
    }
    .reviews_wrapper::before{
        display: none;
    }
    .reviews_wrapper .reviews_video:nth-child(3){
       order: -7;
    }
    .reviews_wrapper .reviews_item:nth-child(6){
        order: -6;
     }
     .reviews_wrapper .reviews_item:nth-child(4){
        order: -5;
     }
     .reviews_wrapper .reviews_item:nth-child(7){
        order: -4;
     }
     .reviews{
        margin-bottom: 0;
     }
     .sales{
        padding-top: 50px;
     }
     .sales_items{
        gap: 22px;
     }
     .sales_item{
        width: 100%;
        height: 67vw;
        border-radius: 26px;
     }
     .reviews_wrapper::before{
        display: none;
    }
    .sales{
        padding-bottom: 0;
    }
    .conslult_wrapper{
        padding: 24px 15px;
    }
    .conslult_title{
        font-size: 26px;
        line-height: 26.65px;
        text-transform: none;
        margin-bottom: 20px;
    }
    .conslult_text{
        line-height: 16.24px;
        font-size: 14px;
        margin-bottom: 420px;
    }
    .conslult_img:nth-child(2){
        top: 175px;
        right: 108px;
        width: 66px;
        height: 66px;
    }
    .conslult_img:nth-child(1){
        width: 90px;
        height: 90px;
        top: 196px;
        left: 15px;
    }
    .conslult_btn{
        gap: 70px;
        background-image: url(../img/conslult_btn2.svg);
        width: 333px;
        height: 51px;
        margin: 0 auto;
        position: absolute;
        bottom: 24px;
        right: 50%;
        transform: translateX(50%);
    }
    .conslult{
        margin-bottom: 0;
    }
    .footer_title{
        line-height: 18.45px;
        margin-bottom: 16px;
        font-size: 18px;
    }
    .footer_left{
        width: 270px;
    }
    .footer_item-title{
        line-height: 9.28px;
        margin-bottom: 15px;
        font-size: 8px;
    }
    .footer_subtitle{
        line-height: 9.28px;
        margin-bottom: 15px;
        font-size: 8px;
    }
    .footer_items{
        gap: 20px;
        margin-bottom: 20px;
    }
    .footer_item-subtitle{
        line-height: 11.6px;
        font-size: 10px;
    }
    .footer_item-adres{
        line-height: 11.77px;
        font-size: 10px;
    }
    .footer_link{
        line-height: 11.77px;
        font-size: 10px;
    }
    .footer_message{
        display: flex;
        width: 21px;
    }
    .footer_message img{
        width: 100%;
        height: auto;
    }
    .footer_messages{
        gap: 8px;
    }
    .footer_inner{
        margin-top: 20px;
        flex-direction: column;
        gap: 5px;
    }
    .footer_inner-item{
        font-size: 8px;
        line-height: 9.28px;
    }
    .footer_wrapper{
        padding-bottom: 80px;
    }
    .footer_desc{
        line-height: 19.72px;
        color: #D8D8D8;
        font-size: 17px;
        text-transform: uppercase;
    }
    .footer::before{
        font-size: 37px;
        line-height: 37.92px;
        bottom: -8px;
    }
    .footer{
        padding-bottom: 30px;
    }
    .footer::before {
        background: -webkit-linear-gradient(0deg, rgba(1, 139, 193, 0) 0%, #018BC1 97.32%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .footer_menu-wrapper{
        left: 228px;
        width: 155px;
    }
    .footer_menu a{
        line-height: 11.6px;
        margin-bottom: 12px;
        font-size: 10px;
    }

    .reviews_item{
        position: relative;
    }
    .reviews_item-link{
        display: block;
        line-height: 13.92px;
        color: #018BC1;
        font-size: 12px;
        position: absolute;
        left: 16px;
        bottom: 24px;
    }
    .reviews_item-text::before{
        height: 16px;
    }
    .reviews_items-popup{
        border-radius: 15px;
        padding: 64px 15px;
    }
    #reviewsPopup  .reviews_item-text{
        max-height: none !important;
    }
    #reviewsPopup  .reviews_item-text::before{
        display: none;
    }
    #reviewsPopup .fancybox-close-small {
        background-color: #018BC1;
        border-radius: 50%;
        top: 10px;
        right: 12px;
        color: #fff;
    }
    .header_page{
        top: 0;
    }
    .crumbs_block{
        display: none;
    }
    .service_main{
        padding: 84px 0 412px;
    }
    .service_main h2{
        font-weight: 600;
        line-height: 33.83px;
        letter-spacing: -0.003em;
        margin-bottom: 40px;
        font-size: 26px;
    }
    .service_main p{
        font-size: 17px;
        line-height: 19.72px;
        max-width: 315px;
    }
    .service_main-img{
        bottom: -360px;
    }
    .service_block h2{
        text-align: left;
        margin-bottom: 224px;
    }
    .service_block-img{
        top: -240px;
        bottom: 0;
        height: 246px;
        transform: translateX(50%);
    }
    .service_item{
        width: 100%;
        padding: 25px 20px;
        min-height: 225px;
    }
    .service_item:nth-child(2){
        transform: none;
        order: 1;
    }
    .service_items{
        gap: 10px;
    }
    .service_item-title{
        margin-bottom: 8px;
    }
    .service_item:nth-child(3){
        margin-left: 0;
   
    }
    .service_item:nth-child(4){
        order: 2;
        transform: none;
    }
    .service_block{
        margin-bottom: 40px;
    }
    .service_block-wrapper::before{
        bottom: -120px;
    }
    .steps h2{
        width: 100%;
        margin-bottom: 15px;
    }
    .steps_item-number{
        line-height: 17.89px;
        padding: 7px 17px;
        font-size: 15px;
        border-radius: 10px;
        margin-bottom: 18px;
    }
    .steps_item-title{
        line-height: 28.62px;
        margin-bottom: 18px;
        font-size: 22px;
    }
    .steps_item:not(:last-child) {
        margin-bottom: 30px;
    }
    .steps::before{
        top: -100px;
        bottom: auto;
        width: 720px;
        height: 720px;
    }
    .service_advantages h2{
        margin-bottom: 38px;
        text-align: center;
    }
    .service_advantages-item{
        width: 100%;
        padding: 16px 26px;
    }
    .service_advantages-icon{
        margin-bottom: 21px;
    }
    .service_advantages-title{
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 31.85px;
    }
    .service_advantages-text{
        line-height: 18.56px;
        font-size: 16px;
    }
    .service_advantages-items{
        gap: 11px;
    }
    .service_advantages{
        margin-bottom: 50px;
    }
    .conslult_inp{
        width: 100%;
    }
    .conslult_form-btn{
        width: 315px;
        margin: 0 auto;
        height: 46px;
        font-size: 16px;
    }
    .conslult_form .conslult_img:nth-child(1) {
        top: 116px;
    }
    .conslult_form .conslult_img:nth-child(2) {
        top: 150px;
        right: 82px;
    }
    .conslult_form .conslult_img:nth-child(3){
        width: 140px;
        bottom: auto;
        top: 246px;
        height: 140px;
    }
    .works{
        margin: 60px 0 50px;
    }
    .works h2{
        margin-bottom: 35px;
        text-align: left;
    }
    .works_item-img{
        height: 172px;
    }
    .works_item{
        border: none;
        background-color: #fff;
    }
    .works_item-title{
        line-height: 20.82px;
        font-size: 16px;
    }
    .works_item{
        padding: 12px;
    }
    .works_item-img{
        margin-bottom: 11px;
    }
    .licenses h2{
        line-height: 26.65px;
        margin-bottom: 30px;
        font-size: 26px;
        text-align: left;
    }
    .licenses_item{
        width: 100% !important;
        padding: 20px 75px;
    }
    .licenses{
        margin-bottom: 50px;
    }
    .faq_top h2 span{
        transform: none;
        width: 32px;
        margin: 0 14px;
    }
    .faq_top h2 span svg{
        width: 100%;
        height: auto;
    }
    .faq_top{
        margin-bottom: 30px;
    }
    .faq_text{
        line-height: 19.92px;
        font-size: 17px;
    }
    .faq_item-title{
        padding: 28px 15px;
        line-height: 18.83px;
        font-size: 16px;
        padding-right: 80px;
    }
    .faq_item-text{
        font-size: 14px;
        line-height: 16.24px;
        padding: 0 20px 34px ;
    }
    .faq_item-title span{
        top: 10px;
        right: 22px;
    }
    .footer{
        margin-bottom: 10px;
    }
    .works + .team{
        padding-top: 0;
    }
    .services_page{
        padding: 100px 0 40px;
    }
    .services_page h2{
        font-size: 28px;
        line-height: 1.4;
    }
    .services_page-info{
        width: 100%;
    }
    .services_page p{
        width: 100%;
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 24px;
    }
    .services_page-items{
        width: 100%;
        gap: 10px;
    }
    .services_page-item {
        font-size: 18px;
        padding: 12px 20px;
    }
    .services_page-item:nth-child(4){
        margin-right: 0;
    }
    .team{
        padding-top: 84px;
    }
    .team_page h2{
        line-height: 33.83px;
        margin-bottom: 38px;
        font-size: 26px;
    }
    .team_page p{
        line-height: 19.72px;
        margin-bottom: 20px;
        font-size: 17px;
    }
    .team_item-btn{
        height: 64px;
        background-image: url(../img/team_item-btn.png);
        width: calc(100% - 32px);
        line-height: 26.25px;
        font-size: 22px;
        text-transform: uppercase;
        backdrop-filter: blur(5.5px);
    }
    .team_item-btn::after{
        width: 52px;
        height: 52px;
        transform: rotate(-90deg);
        right: 16px;
    }
    .team_card{
        padding-top: 56px;
    }
    .team_card-close{
        width: 43px;
    }
    .team_card-close img{
        width: 100%;
        height: auto;
    }
    .team_card-img{
        width: 100%;
        height: auto;
    }
    .team_card-title{
        line-height: 26.25px;
        margin-bottom: 14px;
        font-size: 22px;
    }
    .team_card-option{
        font-size: 16px;
        line-height: 18.56px;
        margin-bottom: 30px;
    }
    .team_card-btn{
        width: 100%;
        height: 14vw;
    }
    .team_card-subtitle{
        line-height: 28.8px;
        font-size: 20px;
        margin-bottom: 30px;
    }
    .team_card-text{
        line-height: 18.56px;
        font-size: 16px;
    }
    .sales_page{
        padding-top: 100px;
    }
    .vacancies h2,
    .contacts h2,
    .sales_page h2 {
        font-size: 22px;
        line-height: 22.55px;
    }
    .vacancies,
    .contacts{
        padding-top: 100px;
    }
    .contacts_items{
        flex-direction: column;
        gap: 20px;
    }
    .contacts_item-adres {
        font-size: 22px;
        line-height: 28px;
    }
    .contacts_map{
        height: 350px;
    }
    .conslult{
        margin-top: 40px;
    }
    .conslult_team .conslult_img:nth-child(2){
        right: 108px;
        width: 66px;
        height: 66px;
        bottom: 340px;
    }
    .conslult_team .conslult_img:nth-child(1){
        width: 90px;
        height: 90px;
        bottom: 300px;
        left: 15px;
    }
    .conslult_team .conslult_btn{
        font-size: 13px;
        gap: 10px;
    }
    .license{
        padding-top: 100px;
        padding-bottom: 20px;
    }
    .license_info{
        width: 100%;
    }
    .license_img{
        margin-bottom: 20px;
    }
    .license_btn{
        width: 100%;
        height: 60px;
        font-size: 16px;
    }
    .license_title{
        font-size: 22px;
        line-height: 22.55px; 
    }
    .license_item{
        font-size: 16px;
    }
    .error_page{
        margin-top: 100px;
        margin-bottom: 30px;
    }
    .error_page-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .error_page-subtitle {
        font-size: 32px;
        line-height: 1.4;
    }
    .error_page-title {
        line-height: 180px;
        font-size: 120px;
    }
    .error_page-btn {
        height: 49px;
        gap: 24px;
        font-size: 18px;
        width: 330px;
        margin: 0;
    }
    .error_page-btn::after{
        width: 35px;
        height: 35px;
        background-position: center;
    }
    .thanks_page{
        margin-top: 140px;
        margin-bottom: 80px;
    }
    .thanks_page-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
    .questionnaire_popup .fancybox-close-small{
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        background-size: cover;
    }
    .questionnaire_popup{
        padding: 30px 15px;
    }
    .questionnaire_popup-title {
        line-height: 42px;
        margin-bottom: 20px;
        font-size: 36px;
    }
    .questionnaire_popup-subtitle {
        line-height: 22px;
        font-size: 16px;
    }
    .questionnaire_popup-text {
        line-height: 22px;
        margin-bottom: 14px;
        font-size: 16px;
    }
    .questionnaire_item-title {
        line-height: 22.95px;
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 18px;
    }
    .questionnaire_item-inp{
        width: 100%;
    }
    .questionnaire_item-inps{
        gap: 10px;
    }
    .questionnaire_item-chek:nth-child(2n),
    .questionnaire_item-chek, .questionnaire_item-cheks span.wpcf7-list-item, .questionnaire_item-cheks span.wpcf7-list-item:nth-child(2n){
        width: 100%;
    }
    .questionnaire_item{
        margin-bottom: 30px;
    }
    .questionnaire_item-inp input{
        padding-left: 20px;
        font-size: 14px;
    }
    .questionnaire_list-item, .questionnaire_list span.wpcf7-list-item{
        width: 100%;
        padding: 12px;
    }
    .questionnaire_list-item:nth-last-child(2), .questionnaire_list span.wpcf7-list-item:nth-last-child(2){
        border-bottom: 1px solid #000000;
    }
    .questionnaire_item-ways .questionnaire_list-item, .questionnaire_item-ways .wpcf7-list-item{
        width: 100%;
     
    }
    .questionnaire_item-ways    .questionnaire_list-item:nth-last-child(2), .questionnaire_item-ways .wpcf7-list-item:nth-last-child(2){
        border: none;
    }
    .questionnaire_item-ways{
        gap: 14px;
    }
    .questionnaire_btn{
        margin-top: 30px;
    }
    .order_popup{
        padding: 50px 20px;
        overflow: visible;
    }
    .order_popup-title{
        padding-right: 0;
    }
    .order_popup-title {
        font-size: 28px;
        line-height: 40.2px;
        padding-right: calc(100% - 300px);
    }
    .order_popup-subtitle {
        font-size: 26px;
        line-height: 32px;
    }
    .order_popup-inps .conslult_inp{
        width: 100%;
    }
    .order_popup-inps{
        gap: 0px;
    }
    .order_popup .conslult_form-btn{
        margin: 0;
        margin-top: 10px;
    }
    .order_popup .fancybox-close-small{
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        background-size: cover;
    }
    .order_popup-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}