/*@Betsyweb*/
/*https://betsyweb.ru*/
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-color: #030303;
    --grey-color: #26272A;
    --light-grey: #969696;
    --white-color: #FFFFFF;
    --red-color: #FE5225;
    --blue-color: #9CABC5;
    --black-color: #000000;
}

:focus, button, button:focus, input, input:focus {
    outline: 0;
}

:after, :before {
    box-sizing: border-box;
}

a {
    color: var(--dark-color);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.list--unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

.text-uppercase {
    text-transform: uppercase;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.w-100p {
    width: 100%;
}

.h-100p {
    height: 100%;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.center {
    margin: 0 auto;
    text-align: center;
}

.font, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

body {
    min-height: 100vh;
    font-family: "Inter Tight", sans-serif;
    font-size: 22px;
    font-weight: 500;
    background: var(--dark-color);
    color: var(--white-color);
    line-height: 140%;
    overflow-x: hidden;
}

.wrap {
    overflow: hidden;
}

a {
    color: var(--dark-color);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    color: var(--red-color);
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1490px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 25px;
    padding-left: 25px;
    box-sizing: border-box;
}

.header-logo__x {
    margin: 0 13px
}

.header-menu li {
    margin: 0 15px;
    font-size: 18px;
    letter-spacing: 0.03em;
}

.btn {
    font-weight: 600;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 420px;
    height: 67px;
    font-size: 20px;
    background: linear-gradient(92.85deg, #FE5225 -3.29%, #941718 51.64%, #050100 109.84%);
    color: var(--white-color);
    border: unset;
    position: relative;
}

.top-title__btn {
    margin: 14px 0 45px;
    letter-spacing: 0.03em;
}

.transition,
.slider-experts__slide p {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    height: 130px;
    top: 0;
    transition: all 0.5s linear;
    background-color: #000;
    padding-top: 3px;
    border-bottom: 1px solid #313131;
    z-index: 9998;
}

/* .header:after {
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #d1d8e3 0%, #e0e3e8 70%, rgba(223, 230, 240, 0) 100%);

    transition: all 0.5s linear;
    position: absolute;
    z-index: -1;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
} */

.header-btn {
    font-size: 16px;
    height: 58px;
    width: 252px;
    background: #000;
    display: none;
    color: var(--white-color);
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn:after {
    content: '';
    height: 100%;
    width: 0;
    left: 0;
    background: var(--red-color);
    position: absolute;
    -webkit-transition: all 0.2s linear;
    transition: all 0.3s linear;

}

.header-btn:after {
    background: linear-gradient(to left, var(--black-color), var(--red-color));

}

.header-btn:hover {
    color: var(--white-color);
}

.btn:hover{
    color: var(--white-color);
}
.btn:hover:after {
    width: 100%;
}

.header-btn:hover:after {
    width: 50%;
}

.header-menu li a {
    position: relative;
    cursor: pointer;
    color: #fff;
}

.header-menu li:hover a {
    color: var(--white-color);
}

.header-menu li a:before {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--white-color);
    transition: all 0.2s linear;
}
.header-menu li:hover a:before {
    width: 100%;
}

.whiteBlock {
    background: var(--white-color);
    color: var(--dark-color);
}

.top {
    background: #000 url("../images/top-bg-dark2.png") no-repeat top center;
    background-size: 100% auto;
    background-position: center 127px;
    padding-top: 224px;
}

.topWhite-top {
    color: var(--light-grey);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 125px;
    letter-spacing: 0.03em;
}

.slider-top-arrows {
    position: absolute;
    bottom: 0;
    z-index: 9997;
}

.slider-top-arrows .slick-prev path,
.slider-top-arrows .slick-next path {
    stroke: #fff
}
.slider-top-arrows .slick-prev.slick-disabled path,
.slider-top-arrows .slick-next.slick-disabled path {
    stroke: #CFCFCF
}


.top-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
}
.topBottom{
    margin-top: 80px;
}
.topBottom img {
    margin-left: auto;
    margin-right: auto;
}
.top-title h1 {
    text-align: center;
}

.top-title h1, .map h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.01em;
}

.top-title__img {
    width: 545px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.top-title p {
    margin: 6px 20px;
    letter-spacing: 0.03em;
}

.top .whiteBlock {
    border-radius: 20px;
    overflow: hidden;
}

.marginLeftRight {
    margin-left: 40px;
    margin-right: 40px;
}

.topWhite-text {
    max-width: 785px;
    margin-left: auto;
    color: #26272a;
}

.topWhite-slider .topWhite-text {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity .6s ease, transform .6s ease;
    transition-delay: .2s;
}

.topWhite-slider .slick-active .topWhite-text {
    opacity: 1;
    transform: translateY(0);
}

.topWhite-text h3 {
    font-size: 40px;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.topWhite-slide {
    display: flex;
}

.topWhite-text p {
    max-width: 95%;
    letter-spacing: 0.03em;
    margin-top: 30px;
}

.topWhite-text p:last-child {
    margin-bottom: 0;
}

.topWhite-text h3,
.topOwner b {
    line-height: 120%;
    font-weight: 700;

}

.topOwner {
    font-size: 16px;
    line-height: 130%;
    flex-shrink: 0;
}

.topOwner-images {
    margin-bottom: 32px;
}

.topOwner-images div,
.topOwner-images img {
    width: 185px;
    height: 185px;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    display: block;
}

.topWhite-slide.slick-slide.slick-current.slick-active
.topOwner-images div.is--unActive {
    opacity: 0.2;
}

.topOwner-images div:first-of-type {
    z-index: 2;
}

.topOwner-images div + div {
    left: -40px;
}

.topOwner b {
    font-size: 32px;
    display: block;
    letter-spacing: 0.02em;
    color: #26272a;
}

.topOwner span {
    letter-spacing: 0.03em;
    color: #26272a;
    opacity: .8;
}

.topWhite {
    padding: 40px 0 0;
}

.topWhite-slider {
    position: relative;
}

.topWhite-slide {
    width: 100%;
}

.topWhite .slick-track {
    align-items: flex-start;
    display: flex;
}

.topWhite-slider .slick-list {
    align-items: flex-start;
}

.map {
    margin-top: 140px;
    margin-bottom: 130px;
    z-index: 9;
}

.map-title {
    margin-bottom: 112px;
}

.map-title p {
    letter-spacing: 0.03em;
}

.map h2 span {
    display: block;
}

.map p {
    max-width: 430px;
    line-height: 140%;
}

.mapWrap-elem {
    opacity: 0;
}

.mapWrap-elem:hover {
    opacity: 1;
}

.mapWrap-elem__1 {
    left: 342px;
    top: 298px;
}

.mapWrap-elem__text {
    transform: scale(0);
}

.mapWrap-elem:hover
.mapWrap-elem__text {
    transform: scale(1);
}

.mapWrap-elem__1 .mapWrap-elem__text {
    top: 0;
    left: -90%;
    max-width: 220px;;
}

.mapWrap-elem__2 {
    left: 230px;
    top: 265px;
}

.mapWrap-elem__2 .mapWrap-elem__text {
    top: 60%;
    left: -45%;
    max-width: 220px;;
}

.mapWrap-elem__3 {
    left: 638px;
    top: 117px;
}

.mapWrap-elem__3 .mapWrap-elem__text {
    top: -180px;
    left: -140px;
    width: 250px;
}

.mapWrap-elem__4 {
    left: 687px;
    top: 15px;
}

.mapWrap-elem__4 .mapWrap-elem__text {
    top: -70px;
    left: -170px;
    width: 230px;
}

.mapWrap-elem__5 {
    left: 614px;
    top: 200px;
}

.mapWrap-elem__5 .mapWrap-elem__text {
    top: 100px;
    left: -30px;
    width: 230px;
}

.mapWrap-elem__6 {
    left: 752px;
    top: 16px;
}

.mapWrap-elem__6 .mapWrap-elem__text {
    top: -110px;
    left: 400px;
    width: 250px;
}

.mapWrap-elem__7 {
    left: 778px;
    top: 180px;
}

.mapWrap-elem__7 .mapWrap-elem__text {
    top: 80px;
    left: 100px;
    width: 230px;
}

.mapWrap-elem__8 {
    left: 964px;
    top: 180px;
}

.mapWrap-elem__8 .mapWrap-elem__text {
    top: 80px;
    left: 240px;
    width: 220px;
}
.mapWrap-elem__text {
    display: none;
}

.mapWrap-elem.is--active .mapWrap-elem__text {
    display: flex;
}

.mapWrap-elem__9 {
    left: 912px;
    top: 200px;
}

.mapWrap-elem__9 .mapWrap-elem__text {
    top: 100px;
    left: -30px;
    width: 230px;
}

.mapWrap-elem__text b {
    font-size: 75px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 130%;
}

.mapWrap-elem__text span {
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
}

.mapWrap-elem__text p {
    font-size: 20px;
    line-height: 130%;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.mapWrap-elem.is--active {
    opacity: 1;
}

.mapWrap-elem.is--active .mapWrap-elem__text {
    transform: scale(1);
}

.bgLight__img {
    position: absolute;
    top: -10%;
    z-index: -1;
    pointer-events: none;
}

.stat {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(180deg, #505050 0%, rgba(0, 0, 0, 0) 100%);

    backdrop-filter: blur(20px);
    /* background: linear-gradient(180deg, #16171a 0%, rgba(22, 23, 26, 0) 100%); */
    padding: 85px 0 95px;
}

.stat::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    /* backdrop-filter: blur(20px); */
    /* background: rgba(0, 0, 0, 0.29); */
    background: linear-gradient(180deg, #16171a 0%, rgba(22, 23, 26, 0) 100%);
    border-radius: 19px;
    pointer-events: none;
}

.stat > * {
    position: relative;
    z-index: 1;
}

.stat-title h2 {
    background: linear-gradient(89.49deg, #E7E7E7 -19.45%, #383838 99.56%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 50px;
    letter-spacing: 0.03em;
    line-height: 120%;
    max-width: 1010px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.stat-title p {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0.03em;
    color: #aab7c9;
}

.statList {
    margin-top: 48px;
    margin-left: -15px;
    margin-right: -15px;
}

/*.statList-item {*/
/*    margin: 0 -15px;*/
/*    background: linear-gradient(145.4deg, #505050 4.97%, rgba(0, 0, 0, 0) 41.71%),*/
/*    linear-gradient(137.44deg, rgba(0, 0, 0, 0) 41.56%, #505050 94.61%);*/
/*    border-radius: 20px;*/
/*    position: relative;*/
/*    padding: 0 50px 30px;*/
/*}*/


/*.statList-item::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 1px;*/
/*    left: 1px;*/
/*    right: 1px;*/
/*    bottom: 1px;*/
/*    background: linear-gradient(*/
/*            45deg,*/
/*            #1D222A 0%,*/
/*            #13161A 20%,*/
/*            #0B0C0D 100%*/
/*    );*/
/*    border-radius: 20px;*/
/*    pointer-events: none;*/
/*}*/
/* .statList-item {
    margin: 0 -15px;
    position: relative;
    padding: 0 60px 38px 60px;
    border-radius: 20px;
    background: transparent;
    overflow: hidden;
}

.statList-item::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(
            45deg,
            #1D222A 0%,
            #13161A 20%,
            #0B0C0D 100%
    );
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.statList-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            linear-gradient(145.4deg, #505050 4.97%, rgba(0, 0, 0, 0) 41.71%),
            linear-gradient(137.44deg, rgba(0, 0, 0, 0) 41.56%, #505050 94.61%);
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
} */

.statList-item {
    margin: 0 -15px;
    position: relative;
    padding: 0 60px 38px 60px;
    border-radius: 20px;
    background: 
        linear-gradient(145.4deg, #505050 4.97%, rgba(0, 0, 0, 0) 41.71%),
        linear-gradient(137.44deg, rgba(0, 0, 0, 0) 41.56%, #505050 94.61%);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.statList-item::before {
    content: '';
    position: absolute;
    inset: 1px; /* Отступ создает видимую границу */
    background: rgba(0, 0, 0, .79);
    border-radius: 19px; /* На 1px меньше чем родитель */
    z-index: 1;
    pointer-events: none;
}

.statList-item::after {
    content: '';
    /* Удаляем - больше не нужен */
    display: none;
}

.statList-item > * {
    position: relative;
    z-index: 2;
}

/* .statList-item__text {
    max-width: 90%;
} */

.statList-item--2 .statList-item__text {
    width: 325px;
    max-width: 100%;
}

.statList-item--2 .statList-item__text b {
    padding-right: 20px;
}

.statList-item--3 .statList-item__text b {
    padding-right: 20px;
}

.statList-item--3 .statList-item__text p {
    margin-right: -20px;
}

.statList-item b {
    display: block;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.statList-item p {
    color: #5f5f5f;
    font-size: 16px;
    margin-top: 10px;
    line-height: 140%;
    letter-spacing: 0.03em;
}

.statList-item__img {
    margin-top: 32px;
    margin-bottom: 32px;
}

.statList-item {
    width: calc(33.3% - 30px);
    margin: 0 15px;
}

.statList-item--4 .statList-item__text,
.statList-item--5 .statList-item__text {
    max-width: 260px;
}

.statList-item--4,
.statList-item--5 {
    width: calc(50% - 30px);
    display: flex;
    margin-top: 30px;
    padding-top: 30px;
}

.statList-item--4 {
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
}

.statList-item--5 {
    padding-top: 0;
    padding-bottom: 0;
}

.statList-item--5 .statList-item__inset .statList-item__text {
    order: 1;
    margin-right: auto;
    max-width: 220px;
}

.statList-item--5 .statList-item__inset .statList-item__text p {
    max-width: 220px;
}

.statList-item--5 .statList-item__inset .statList-item__img {
    order: 2;
    width: 302px;
}

.statList-item--4 .statList-item__img {
    width: 383px;
    margin-top: 0;
    margin-bottom: 0;
}

.statList-item--5 .statList-item__inset,
.statList-item--4 .statList-item__inset {
    align-items: center;
    /* height: calc(100% + 30px); */
    display: flex;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;

}

.statList-item--4 .statList-item__img {
    position: absolute;
    right: -70px;
    bottom: -8px;
}

.statList-item--1 .statList-item__img,
.statList-item--2 .statList-item__img,
.statList-item--3 .statList-item__img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-experts {
    position: relative;
    overflow: visible;
    /* margin-top: 230px; */
    margin-top: 2px;
}

.slider-experts .slick-list {
    overflow: hidden;
}

.slider-experts .slick-track {
    display: flex;
    align-items: center;
}

.slider-experts .slick-slide {
    padding: 0 10px;
    opacity: 1;
    transform: scale(0.8);
    align-self: flex-end;
    transition: transform .3s ease, opacity .3s ease;
}

.slider-experts .slick-slide img {
    width: 100%;
    display: block;
    background: #101010;
    /*padding-top: 40px;*/
    border-radius: 20px;
}

.slider-experts .slick-center {
    opacity: 1;
    transform: scale(1);
}

.slider-experts .slide {
    position: relative;
}

.slider-experts .caption {
    opacity: 0;
    position: relative;
    width: 950px;
    text-align: left;
    font-size: 26px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 70px;
    letter-spacing: 0.01em;

    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.slider-experts .caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: -122px;
    width: 104px;
    height: 65px;
    background: url("../images/expert-arrow-text2.png") no-repeat;
    background-size: contain;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.slider-experts .slick-center .caption:before {

    transform: translateX(0);
}

.slider-experts .slick-center .caption {
    opacity: 1;
    transform: translateX(0);
}

.slider-experts .slider-experts__slide {
    position: relative;
    top: 50px;
    transition: top .3s ease;
    display: flex;
    align-items: flex-end;
}
.slider-experts .slider-experts__slide p {
    position: absolute;
    left: 20px;
    top: 20px;
    margin: 0;
    color: var(--white-color);
    z-index: 2;
    opacity: 0;
}

.slider-experts .slider-experts__slide p b {
    display: block;
    font-size: 32px;
    letter-spacing: 0.03em;
    line-height: 130%;
}

.slider-experts .slider-experts__slide p span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.03em;
}

.slider-experts .slick-center .slider-experts__slide p {
    opacity: 1;
}

.slider-experts .slick-center .slider-experts__slide {
    top: 0;
}

.slider-experts .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 2;
}

button.slick-prev.slick-arrow.slick-disabled,
button.slick-next.slick-arrow.slick-disabled {
    background: #F6F6F6;
}

.slick-prev, .slick-next {
    background: #212121;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    font-size: 0;
    border: unset;
    cursor: pointer;
}
.slick-prev svg, .slick-next svg {
    fill: transparent;
}
.slick-prev:hover, .slick-next:hover {
    background: var(--red-color);
}

.slick-prev {
    left: 40px;
}

.slick-next {
    right: 40px;
    margin-left: 20px;
}

.slider-experts-arrows {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slider-experts-arrows .slick-arrow {
    position: static;
    transform: none;
}

.cube {
    background: #D6D8DC url("../images/cube-bg.png") no-repeat right bottom;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    padding: 147px 0;
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    margin-top: 120px;
}

.cube h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.cube-text {
    max-width: 60%;
}

.cube-text p {
    letter-spacing: 0.03em;
}

.cube-text__btn {
    margin-top: 32px;
}

.topOwner-images > div {
    flex-shrink: 0;
}

.footer {
    border-top: 1px solid #353535;
    margin-top: 40px;
}

.footer_description {
    font-weight: 400;
    letter-spacing: 0.03em;
}

.form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: url("../images/form-bg3.png") no-repeat center top/cover;
    width: 100%;
    max-width: 1550px;
    opacity: 0;
    z-index: 9999;
    padding: 95px 20px 0;
    box-sizing: border-box;
    border-radius: 20px;
    transition: .4s ease;
}

.formWrap {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    position: fixed;
    inset: 0;
    z-index: 9998;
}

.formWrap.is--active {
    opacity: 1;
    visibility: visible;
}

.formWrap.is--active .form {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.formOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.form-title {
    color: var(--black-color);
    margin-bottom: 35px;
}

.form-title p {
    font-size: 20px;
    margin-bottom: 7px;
}

.form-title h3 {
    font-size: 64px;
    line-height: 90%;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.form-title h3 span {
    background: linear-gradient(92.85deg, #FE5225 -3%, #941718 52%, #050100 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.formForm {
    width: 705px;
    border-radius: 20px;
    background: var(--white-color);
    padding: 35px;
}

.formForm input {
    background: #F4F4F6;
    border-radius: 10px;
    height: 71px;
    line-height: 71px;
    border: unset;
    font-size: 18px;
    color: #989898;
    padding: 0 20px;
    margin-bottom: 10px;
}
.formForm input:-webkit-autofill,
.formForm input:-webkit-autofill:hover,
.formForm input:-webkit-autofill:focus,
.formForm input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #F4F4F6 inset;
    box-shadow: 0 0 0 1000px #F4F4F6 inset;
    -webkit-text-fill-color: #989898;
    caret-color: #989898;
    border-radius: 10px;
    transition: background-color 9999s ease-in-out 0s;
}

.formLine--two input {
    width: calc(50% - 5px);
}

.formForm .custom-checkbox {
    color: #989898;
    font-size: 14px;
    line-height: 130%;
}

.formForm .custom-checkbox .text {
    letter-spacing: 0.03em;
}

.formForm .custom-checkbox .text a {
    color: #989898;
}
.formForm .custom-checkbox .text a:hover {
    color: var(--dark-color);
}

.custom-checkbox label {
    display: flex;
    align-items: center;
    font-size: 21px;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
}

.custom-checkbox {
    position: relative;
    width: unset;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-checkbox .box {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: #f4f4f6;
    flex-shrink: 0;
    position: relative;
    transition: background 0.2s ease;
}

.custom-checkbox .box::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    left: 10px;
    top: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.custom-checkbox input:checked + .box {
    background: var(--red-color);
}

.custom-checkbox input:checked + .box::after {
    opacity: 1;
}

.formForm .btn {
    width: 100%;
    height: 70px;
    letter-spacing: 0.03em;
    margin-top: 40px;
}

.formImg img {
    width: 568px;
}

.close-btn {
    position: absolute;
    right: 70px;
    top: -50px;
    width: 25px;
    height: 25px;
    background: none;
    border: 0;
    cursor: pointer;
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 3px;
    background: var(--black-color);
    transform-origin: center;
}

.close-btn:hover::before,
.close-btn:hover::after {
    background: var(--red-color);
}

.close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mapWrap-slider {
    display: none;
}

@media screen and (max-width: 1550px) {
    body, .topWhite-top, .cube {
        font-size: 20px;
    }

    .topWhite-top {
        margin-bottom: 110px;
    }

    .container {
        max-width: 1280px;
    }

    .header-logo {
        max-width: 250px;
    }

    .btn {
        width: 357px;
        height: 57px;

    }

    .header-btn {
        height: 50px;
        width: 230px;
    }

    .top-title__img {
        width: 400px;
    }

    .top-title h1,
    .map h2 {
        font-size: 60px;
    }

    .top {
        padding-top: 200px;
        background-size: 1600px auto;
    }

    .marginLeftRight {
        margin-left: 30px;
        margin-right: 30px;
    }

    .topWhite {
        padding: 30px 0 0;
    }

    .topOwner-images div,
    .topOwner-images img {
        width: 145px;
        height: 145px;
    }

    .topWhite-text h3 {
        font-size: 35px;
    }

    .topWhite-text {
        max-width: 740px;
    }

    .topWhite .container {
        justify-content: space-around;
    }

    img.mapWrap-map {
        width: 1200px;
    }

    .mapWrap-elem__text b {
        font-size: 54px;
    }

    .mapWrap-elem__text span {
        font-size: 20px;
    }

    .mapWrap-elem__text p {
        font-size: 14px;
    }

    .mapWrap-elem__1 {
        left: 285px;
        top: 247px;
    }

    .mapWrap-elem__1 .mapWrap-elem__text {
        top: 0;
        left: -105px;
        max-width: 145px;
    }

    .mapWrap-elem__2 {
        left: 191px;
        top: 220px;
    }

    .mapWrap-elem__2 .mapWrap-elem__text {
        top: 50px;
        left: -37px;
        max-width: 183px;
    }

    .mapWrap-elem__3 {
        left: 531px;
        top: 97px;
    }

    .mapWrap-elem__3 .mapWrap-elem__text {
        top: -150px;
        left: -116px;
        width: 191px;
    }

    .mapWrap-elem__4 {
        left: 573px;
        top: 12px;
    }

    .mapWrap-elem__4 .mapWrap-elem__text {
        top: -58px;
        left: -141px;
        width: 191px;
    }

    .mapWrap-elem__5 {
        left: 512px;
        top: 168px;
    }

    .mapWrap-elem__5 .mapWrap-elem__text {
        top: 83px;
        left: -25px;
        width: 174px;
    }

    .mapWrap-elem__6 {
        left: 630px;
        top: 13px;
    }

    .mapWrap-elem__6 .mapWrap-elem__text {
        top: -92px;
        left: 333px;
        width: 191px;
    }

    .mapWrap-elem__7 {
        left: 647px;
        top: 152px;
    }

    .mapWrap-elem__7 .mapWrap-elem__text {
        top: 66px;
        left: 83px;
        width: 191px;
    }

    .mapWrap-elem__8 {
        left: 805px;
        top: 150px;
    }

    .mapWrap-elem__8 .mapWrap-elem__text {
        top: 66px;
        left: 200px;
        width: 191px;
    }

    .mapWrap-elem__9 {
        left: 760px;
        top: 166px;
    }

    .mapWrap-elem__9 .mapWrap-elem__text {
        top: 83px;
        left: -25px;
        width: 191px;
    }

    .mapWrap-elem__1 img {
        width: 176px;
        height: 171px;
    }

    .mapWrap-elem__2 img {
        width: 170px;
        height: 42px;
    }

    .mapWrap-elem__3 img {
        width: 67px;
        height: 75px;
    }

    .mapWrap-elem__4 img {
        width: 123px;
        height: 162px;
    }

    .mapWrap-elem__5 img {
        width: 212px;
        height: 175px;
    }

    .mapWrap-elem__6 img {
        width: 571px;
        height: 182px;
    }

    .mapWrap-elem__7 img {
        width: 119px;
        height: 82px;
    }

    .mapWrap-elem__8 img {
        width: 234px;
        height: 173px;
    }

    .mapWrap-elem__9 img {
        width: 113px;
        height: 91px;
    }

    .slider-experts .caption {
        width: 808px;
        font-size: 22px;
    }

    .slider-experts .caption::before {
        left: -104px;
        width: 88px;
        height: 54px;
        transform: translateX(-85px);
    }

    .slider-experts .slider-experts__slide p b {
        font-size: 25px;
    }

    .slider-experts .slider-experts__slide p span {
        font-size: 14px;
    }

    .slider-experts .slider-experts__slide p {
        top: 15px;
    }

    .statList-item {
        padding: 0 40px 25px;
    }

    .statList-item--4 .statList-item__img {
        width: 286px;
        right: -40px;
        bottom: -3px;
    }

    .statList-item--5 .statList-item__inset .statList-item__img {
        width: 242px;
    }

    .cube {
        background-size: 1390px auto;
        padding: 95px 0;
    }

    .cube h2 {
        font-size: 50px;
        max-width: 90%;
    }

    .slider-experts {
        margin-top: 180px;
    }

    .stat-title h2 {
        font-size: 45px;
    }

    .form {
        max-width: 1200px;
    }

    .formImg img {
        width: 450px;
    }

    .form-title h3 {
        font-size: 44px;
    }

    .formForm input {
        height: 50px;
        line-height: 50px;
    }

    .formForm {
        width: 535px;
        padding: 30px;
    }
    .statList-item--2 .statList-item__text b{
        max-width: 240px;
    }
}

@media screen and (max-width: 1279px) {
    .header-btn {
        display: none;
    }

    .top-title h1, .map h2 {
        font-size: 50px;
    }

    .top-title__img {
        width: 300px;
    }

    body, .topWhite-top, .cube {
        font-size: 18px;
    }

    .statList-item p {
        font-size: 14px;
    }

    .statList-item {
        width: calc(33.3% - 20px);
        margin: 0 10px;
        padding: 0 35px 20px;
    }

    .statList-item--1 .statList-item__text b {
        max-width: 250px;
    }

    .statList-item--4, .statList-item--5 {
        margin-top: 20px;
        width: calc(50% - 20px);
    }

    .statList-item--1 .statList-item__img, .statList-item--2 .statList-item__img, .statList-item--3 .statList-item__img {
        height: 150px;
    }

    .statList-item--4 .statList-item__img {
        width: 196px;
        bottom: -26px;
    }

    .statList-item--4 .statList-item__text, .statList-item--5 .statList-item__text {
        max-width: 200px;
    }

    .statList-item--5 .statList-item__inset .statList-item__img {
        width: 172px;
    }

    .stat-title h2 {
        font-size: 36px;
        max-width: 80%;
    }

    .stat {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .slider-experts {
        margin-top: 90px;
    }

    .cube {
        background-image: url("../images/cube-bg-sm.png");
        background-size: cover;
        background-position: center bottom;
        padding-top: 60px;
        padding-bottom: 550px;
    }

    .cube-text {
        max-width: 100%;
    }

    .slider-experts .caption {
        width: 600px;
    }

    .topOwner {
        font-size: 14px;
    }

    .topOwner b {
        font-size: 24px;
    }

    .topWhite-slider .slick-active .topWhite-text {
        margin-left: 20px;
    }

    .form {
        max-width: 900px;
        padding-top: 75px;
        padding-bottom: 20px;
    }

    .formForm input {
        font-size: 16px;
    }

    .formImg img {
        width: 350px;
        margin-bottom: -20px;
    }

    .form-title h3 {
        font-size: 36px;
    }

    .form-title {
        margin-bottom: 30px;
    }

    .formForm {
        width: 405px;
    }

    .formForm .btn {
        font-size: 16px;
        height: 50px;
    }

    .formForm .custom-checkbox {
        font-size: 10px;
    }

    .close-btn {
        right: 50px;
    }

    .topWhite-text h3 {
        font-size: 30px;
    }

    img.mapWrap-map {
        width: 900px;
    }

    .mapWrap-elem__1 {
        left: 218px;
        top: 174px;
    }

    .mapWrap-elem__2 {
        left: 139px;
        top: 166px;
    }

    .mapWrap-elem__3 {
        left: 398px;
        top: 69px;
    }

    .mapWrap-elem__4 {
        left: 427px;
        top: 10px;
    }

    .mapWrap-elem__5 {
        left: 386px;
        top: 124px;
    }

    .mapWrap-elem__6 {
        left: 460px;
        top: 0;
    }

    .mapWrap-elem__7 {
        left: 490px;
        top: 119px;
    }

    .mapWrap-elem__8 {
        left: 602px;
        top: 116px;
    }

    .mapWrap-elem__9 {
        left: 570px;
        top: 130px;
    }

    .mapWrap-elem__1 img {
        width: 131px;
        height: 151px;
    }

    .mapWrap-elem__2 img {
        width: 140px;
        height: 35px;
    }

    .mapWrap-elem__3 img {
        width: 47px;
        height: 62px;
    }

    .mapWrap-elem__4 img {
        width: 87px;
        height: 115px;
    }

    .mapWrap-elem__5 img {
        width: 159px;
        height: 140px;
    }

    .mapWrap-elem__6 img {
        width: 440px;
        height: 160px;
    }

    .mapWrap-elem__7 img {
        width: 80px;
        height: 56px;
    }

    .mapWrap-elem__8 img {
        width: 170px;
        height: 125px;
    }

    .mapWrap-elem__9 img {
        width: 80px;
        height: 62px;
    }

    /* .mapWrap-elem__text b {
        font-size: 45px;
    } */

    .mapWrap-elem__text span {
        font-size: 18px;
    }

    .mapWrap-elem__text p {
        font-size: 12px;
    }

    .mapWrap-elem__1 .mapWrap-elem__text {
        top: 0;
        left: -90px;
        max-width: 140px;
    }

    .mapWrap-elem__2 .mapWrap-elem__text {
        top: 40px;
        left: -35px;
        max-width: 160px;
    }

    .mapWrap-elem__3 .mapWrap-elem__text {
        top: -120px;
        left: -100px;
        width: 170px;
    }

    .mapWrap-elem__4 .mapWrap-elem__text {
        top: -50px;
        left: -140px;
        width: 170px;
    }

    .mapWrap-elem__5 .mapWrap-elem__text {
        top: 70px;
        left: -20px;
        width: 160px;
    }

    .mapWrap-elem__6 .mapWrap-elem__text {
        top: -80px;
        left: 300px;
        width: 170px;
    }

    .mapWrap-elem__7 .mapWrap-elem__text {
        top: 60px;
        left: 70px;
        width: 170px;
    }

    .mapWrap-elem__8 .mapWrap-elem__text {
        top: 60px;
        left: 180px;
        width: 170px;
    }

    .mapWrap-elem__9 .mapWrap-elem__text {
        top: 70px;
        left: -20px;
        width: 170px;
    }

}

@media screen and (max-width: 991px) {
    body, .topWhite-top, .cube {
        font-size: 16px;
    }
    .cube {
        margin-top: 55px;
    }

    .statList-item p {
        font-size: 12px;
    }

    .top-title h1, .map h2 {
        font-size: 40px;
    }

    .top-title__img {
        width: 200px;
    }

    .header-logo {
        max-width: 220px;
    }

    .header-mobile {
        display: flex;
        width: 22px;
        height: 14px;
        cursor: pointer;
        align-self: center;
        position: relative;
        z-index: 9999;
        margin-left: -32px;
    }

    .header-mobile span:before {
        width: 22px;
        bottom: -12px;
        border-radius: 10px;
    }

    .header-mobile span:before,
    .header-mobile span:after {
        content: "";
        position: absolute;
        right: 0;
    }

    .header-mobile span:after {
        width: 15px;
        bottom: -6px;
        right: 50%;
        transform: translateX(50%);
    }

    .header-mobile span:before,
    .header-mobile span:after,
    .header-mobile span {
        height: 2px;
        background: var(--white-color);
        transition: all 0.2s linear;
    }

    .header-mobile span {
        width: 22px;
        position: relative;
    }

    .header {
        height: 87px;
    }

    .header-menu {
        display: none;
    }

    .header.is--active .header-mobile span:after,
    .header.is--active .header-mobile span:before {
        width: 23px;
        bottom: -6px;
        background-color: #000;
    }

    .header.is--active .header-logo__tech,
    .header.is--active .header-logo__ggate {
        z-index: 901;
    }

    .header.is--active .header-logo__tech .d-block,
    .header.is--active .header-logo__ggate .d-block {
        display: none !important;
    }
    .header.is--active .header-logo__tech .d-none,
    .header.is--active .header-logo__ggate .d-none {
        display: block !important;
    }

    .header.is--active .header-mobile span:after {
        transform: rotate(-45deg);
        bottom: -6px;
        right: 0;
    }

    .header.is--active .header-mobile span:before {
        transform: rotate(45deg);
    }

    .header.is--active .header-mobile span {
        background: transparent;
    }

    .header-menu {
        width: 100%;
    }

    .header-menu li a {
        color: #000;
    }

    .header-menu li a:hover {
        color: #000;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: var(--white-color);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease;
        z-index: 900;
        padding: 0 25px;
        display: flex;
        flex-direction: column;
    }

    .header.is--active .header-logo {
        z-index: 10000;
    }

    .header.is--active .mobile-overlay__copy {
        font-size: 12px;
        color: #707070;
        font-weight: 500;
        padding: 0 5px;
        margin-top: 80px;
        margin-bottom: 26px;
        letter-spacing: 0.03em;
    }

    .header.is--active .mobile-overlay__social {
        width: 100%;
        justify-content: space-between;
        margin: auto auto 0;
        max-width: 334px;
    }

    .header.is--active .header-btn {
        display: flex;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10000;
        position: fixed;
        bottom: 194px;
        width: 343px;
        max-width: calc(100% - 50px);
        margin: 0 auto;
    }

    .header.is--active .header-menu {
        display: flex;
        flex-direction: column;
        z-index: 10000;
        position: absolute;
        top: 108px;
        font-size: 18px;
        letter-spacing: 0.03em;
        font-weight: 400;
    }

    .header.is--active .mobile-overlay {
        opacity: 1;
        visibility: visible;
    }

    .header-menu li {
        margin: 0 0 30px;
    }

    .header-btn {
        height: 45px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.03em;
    }

    .top-title__mini {
        display: flex;
        font-size: 10px;
        color: #7B7B7B;
        border: 1px solid;
        border-radius: 5px;
        width: 70px;
        height: 25px;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .top {
        padding-top: 140px;
        background-size: 1280px auto;
    }

    .marginLeftRight {
        margin-left: 0;
        margin-right: 0;
    }

    .topWhite-top {
        font-size: 16px;
        margin-bottom: 55px;
    }

    .statList-item {
        width: calc(33.3% - 14px);
        margin-left: 7px;
        margin-right: 7px;
        padding: 0 20px 15px;
    }

    .statList-item--4, .statList-item--5 {
        margin-top: 14px;
    }

    .statList-item--4, .statList-item--5 {
        width: calc(50% - 14px);
    }


    .slider-experts .caption {
        width: 430px;
        font-size: 18px;
    }

    .slider-experts {
        margin-top: 40px;
    }

    .stat-title p {
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        letter-spacing: 0.03em;
    }

    .map-title {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 32px;
    }

    .map-title h2 {
        margin-bottom: 20px;
    }

    .topWhite-slide {
        flex-direction: column;
    }

    .slider-top-arrows {
        bottom: unset;
        top: 120px;
        right: 25px;
        z-index: 999;
    }

    .topWhite-slider .slick-active .topWhite-text {
        margin-left: unset;
        margin-top: 20px;
    }

    .topWhite-slider .topWhite-text {
        max-width: 100%;
        transform: unset;
    }

    .formImg img {
        width: 280px;
    }

    .form-title h3 {
        font-size: 32px;
    }

    .formForm input {
        height: 44px;
        line-height: 44px;
    }

    /* .formForm .custom-checkbox {
        font-size: 12px;
    } */

    .form {
        max-width: 90%;
    }

    .close-btn {
        right: 30px;
    }

    .formForm {
        padding: 20px;
        width: 342px;
        flex-shrink: 0;
        margin-left: 20px;
    }

    .topWhite-text h3 {
        font-size: 24px;
    }

    .mapWrap .mapWrap-elem .mapWrap-elem__text {
        display: none;
    }
    .mapWrap-slider .mapWrap-elem__text {
        display: flex;
        flex-direction: column;
        transform: none;
        text-align: center;
    }

    .mapWrap-slider .mapWrap-elem__text {
        transform: unset;
    }

    .mapWrap .slick-prev, .mapWrap .slick-next {
        position: relative;
    }

    .mapWrap-slider .slick-list {
       overflow: hidden;
    }

    .mapWrap {
        width: 500px;
        margin: 0 auto;
        position: relative;
    }

    .mapWrap-slider {
        max-width: 500px;
        position: relative;
        margin: 0 auto 40px;
        display: block;
    }
    .mapWrap-slider .slick-track {
        display: flex;
    }

    .mapWrap-slider .slick-slide {
        display: flex;
        justify-content: center;
    }
    .mapWrap-slider .slick-prev{
        left: 0;
    }
    .mapWrap-slider .slick-next{
        right: 0;
    }
    .mapWrap-slider .slick-prev,
    .mapWrap-slider .slick-next {
        position: absolute;
        top: 50%;
        transform : translateY(-50%);
        z-index: 1;
    }

    .mapWrap-elem__text {
        max-width: 166px;
    }

    img.mapWrap-map {
        width: 500px;
    }

    .slick-prev, .slick-next {
        flex-shrink: 0;
    }

    .mapWrap-elem__1 {
        left: 120px;
        top: 95px;
    }

    .mapWrap-elem__2 {
        left: 77px;
        top: 90px;
    }

    .mapWrap-elem__3 {
        left: 220px;
        top: 37px;
    }

    .mapWrap-elem__4 {
        left: 235px;
        top: 5px;
    }

    .mapWrap-elem__5 {
        left: 212px;
        top: 67px;
    }

    .mapWrap-elem__6 {
        left: 253px;
        top: 0;
    }

    .mapWrap-elem__7 {
        left: 270px;
        top: 64px;
    }

    .mapWrap-elem__8 {
        left: 330px;
        top: 63px;
    }

    .mapWrap-elem__9 {
        left: 313px;
        top: 70px;
    }

    .mapWrap-elem__1 img {
        width: 76px;
        height: 88px;
    }

    .mapWrap-elem__2 img {
        width: 80px;
        height: 20px;
    }

    .mapWrap-elem__3 img {
        width: 27px;
        height: 35px;
    }

    .mapWrap-elem__4 img {
        width: 50px;
        height: 66px;
    }

    .mapWrap-elem__5 img {
        width: 92px;
        height: 81px;
    }

    .mapWrap-elem__6 img {
        width: 255px;
        height: 93px;
    }

    .mapWrap-elem__7 img {
        width: 46px;
        height: 32px;
    }

    .mapWrap-elem__8 img {
        width: 99px;
        height: 73px;
    }

    .mapWrap-elem__9 img {
        width: 46px;
        height: 36px;
    }
/* 
    .mapWrap-elem__text b {
        font-size: 25px;
    } */

    .mapWrap-elem__text span {
        font-weight: 600;
        font-size: 18px;
        line-height: 130%;
        letter-spacing: -0.02em;
        margin-top: -9px;
        margin-bottom: 2px;
        display: block;
    }

    .mapWrap-elem__text p {
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        letter-spacing: 0.03em;
    }

    .mapWrap-elem__1 .mapWrap-elem__text {
        top: 0;
        left: -70px;
        max-width: 80px;
    }

    .mapWrap-elem__2 .mapWrap-elem__text {
        top: 20px;
        left: -20px;
        max-width: 90px;
    }

    .mapWrap-elem__3 .mapWrap-elem__text {
        top: -70px;
        left: -60px;
        width: 90px;
    }

    .mapWrap-elem__4 .mapWrap-elem__text {
        top: -30px;
        left: -80px;
        width: 90px;
    }

    .mapWrap-elem__5 .mapWrap-elem__text {
        top: 40px;
        left: -10px;
        width: 90px;
    }

    .mapWrap-elem__6 .mapWrap-elem__text {
        top: -45px;
        left: 170px;
        width: 90px;
    }

    .mapWrap-elem__7 .mapWrap-elem__text {
        top: 35px;
        left: 40px;
        width: 90px;
    }

    .mapWrap-elem__8 .mapWrap-elem__text {
        top: 35px;
        left: 95px;
        width: 90px;
    }

    .mapWrap-elem__9 .mapWrap-elem__text {
        top: 40px;
        left: -10px;
        width: 90px;
    }
    .mapWrap-slider .mapWrap-elem__text{
        margin: 0 auto;
    }
}


@media screen and (max-width: 767px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
        max-width: 100%;
    }
    .cube {
        padding-top: 26px;
    }
    .header-logo__tech{
        width: 101px;
        height: 24px;
    }
    .header-logo__tech img {
        width: 101px;
        height: 24px;
    }
    .header-logo__ggate {
        width: 69px;
        height: 24px;
    }
    .header-logo__ggate img {
        width: 69px;
        height: 24px;
    }
    .top-title__img {
        width: 189px;
    }

    .top-title__btn {
        margin: 0 auto 19px;
        font-weight: 600;
        font-size: 9px;
        line-height: 83%;
        height: 33px;
        border-radius: 7px;
        width: 205px !important;
        max-width: 100%;
        letter-spacing: 0.07em;
    }

    .top-title p {
        text-align: center;
        font-weight: 400;
        font-size: 10px;
        line-height: 140%;
        letter-spacing: 0.02em;
        margin: 1px 0 13px;
    }

    .top-title h1 span {
        display: block;
    }

    .top {
        padding-top: 134px;
        background-size: 100% auto;
        background-position: center 110px;
        background-image: url("../images/top-bg-mobile-dark.png");
    }

    .topWhite-top {
        font-size: 14px;
    }

    .topBottom {
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
        margin-top: 25px;
    }

    .topBottom img {
        max-width: unset;
        width: 1020px;
        flex-shrink: 0;
    }

    .cube {
        padding-bottom: 254px;
    }

    .cube h2 {
        font-weight: 600;
        font-size: 32px;
        line-height: 110%;
        letter-spacing: -0.01em;
        max-width: none;
    }

    .cube-text p {
        max-width: 274px;
        font-size: 14px;
        font-weight: 400;
    }

    .cube-text__btn {
        font-weight: 600;
        font-size: 11px;
        line-height: 83%;
        letter-spacing: 0.03em;
        border-radius: 9px;
        height: 40px;
        margin-top: 15px;
    }

    .slider-experts .slick-track {
        margin-left: -20%;
    }

    .slider-experts .caption::before {
        left: -54px;
        width: 48px;
    }

    .slider-experts .slider-experts__slide p b {
        font-size: 18px;
    }

    .slider-experts .slick-slide img {
        border-radius: 11px;
    }

    .slider-experts .slider-experts__slide p span {
        font-size: 12px;
    }

    .statList-item {
        width: 100%;
        margin-top: 14px;
    }

    .statList-item__img {
        margin-top: 0;
        margin-bottom: 28px;
    }

    .statList-item__img img {
        max-height: 100%;
    }

    .statList-item--3 .statList-item__text b {
        padding-right: 0;
        width: 220px;
        max-width: 100%;
    }

    .statList-item__text {
        /*margin: 0 auto;*/
    }

    .statList-item--3 .statList-item__img {
        margin-bottom: 22px;
    }

    .statList-item--1 .statList-item__img, .statList-item--2 .statList-item__img, .statList-item--3 .statList-item__img {
        height: 150px;
        padding: 0;
    }

    .statList-item--5 .statList-item__inset .statList-item__img {
        width: 80%;
        margin-top: 20px;
    }

    .statList-item--5 .statList-item__inset {
        flex-direction: column;
    }

    .statList-item--5 .statList-item__inset .statList-item__text {
        max-width: 270px;
        margin-left: 0;
    }

    .statList-item--4 .statList-item__text {
        margin-left: 0;
    }

    .statList-item--4 .statList-item__img {
        background: url("../images/stat4-sm.png") no-repeat right top;
        width: 156px;
        height: 184px;
        background-size: contain;
        right: -38px;
        top: -19px;
    }

    .statList-item--4 .statList-item__text {
        max-width: 190px;
    }

    .statList-item--4 .statList-item__img img {
        display: none;
    }

    .statList-item {
        padding: 29px 39px 26px 44px;
    }

    .statList-item--4 {
        padding-top: 15px;
        padding-bottom: 14px;
    }

    .statList-item--5 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .statList-item--5 .statList-item__inset .statList-item__img {
        margin-bottom: 3px;
    }

    .statList-item b br {
        display: none;
    }

    .stat-title h2 {
        font-size: 21px;
    }

    .map {
        margin-top: 60px;
        margin-bottom: 50px;
    }

    .form {
        background-position: left center;
        background-image: unset;
        padding: 0;
        border-radius: 0;
    }

    .form .container {
        flex-direction: column;
    }

    .formImg {
        align-self: center;
        margin-bottom: -60px;
        display: none;
    }

    .formForm {
        width: 100%;
        margin-left: unset;
        border-radius: 9px;
        padding: 18px 16px 20px;
    }
    
    .form-title__first {
        font-weight: 500;
        font-size: 8px;
        line-height: 100%;
        letter-spacing: 0.03em;
        margin-bottom: 3px;
    }

    .formForm input {
        border-radius: 4px;
    }

    .formForm .btn {
        height: 31px;
        margin-top: 18px;
        font-weight: 600;
        font-size: 8px;
        border-radius: 7px;
        letter-spacing: 0.03em;
    }

    .form-title {
        margin-bottom: 15px;
    }
    
    .form-title h3 {
        font-size: 28px;
    }

    .formImg img {
        width: 230px;
    }

    .form-title h3 + img {
        width: 37px;
    }

    /* .header.is--active .header-btn {
        width: unset;
    } */

    .topWhite-text h3 {
        font-size: 18px;
    }
    .bgLight__img{
        top: 0;
    }

    .footer-menu-wrapper {
        width: 280px;
        align-self: flex-start;
    }

    .footer-right__contact{
        display: none;
    }

    .footer-center {
        justify-content: flex-start;
        /* flex-direction: row; */
        /* flex-wrap: wrap; */
    }

    .footer-menu-wrapper ul {
        flex-direction: column;
        flex-wrap: wrap;
        height: 50px;
        justify-content: flex-start;
        width: 100%;
    }

    .footer-menu-wrapper ul li:nth-child(1){
        order: 1;
    }
    .footer-menu-wrapper ul li:nth-child(2){
        order: 3;
    }
    .footer-menu-wrapper ul li:nth-child(3){
        order: 2;
    }
    .footer-menu-wrapper ul li:nth-child(4){
        order: 3;
    }
    /* .footer-menu-wrapper ul li:nth-child(odd) {
        width: 150px;
    }
    .footer-menu-wrapper ul li:nth-child(even) {
        flex: 1;
    } */
}

@media screen and (max-width: 550px) {

    .topWhite-top {
        font-size: 12px;
    }

    .top {
        background-position: center 200px;
    }

    .slider-experts .caption {
        width: calc(100% + 50px);
        font-size: 14px;
        position: unset;
        height: unset;
        margin-bottom: 47px;
    }

    .slider-experts-arrows {
        margin-top: 15px;
    }

    .slider-experts-arrows .slick-next {
        margin-left: 6px;
    }

    .statList-item--4 .statList-item__text br {
        display: block;
    }

    .stat-title h2 {
        font-size: 16px;
    }

    .stat-title {
        font-size: 12px;
        max-width: 100%;
    }

    .statList {
        margin-top: 10px;
    }

    .stat {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .map-title h2 {
        font-size: 18px;
        letter-spacing: -0.01em;
        margin-bottom: 12px;
    }

    .map-title h2 span {
        display: inline;
    }

    .map-title p {
        font-size: 14px;
        width: 302px;
        max-width: 100%;
    }

    .topOwner-images div, .topOwner-images img {
        width: 102px;
        height: 102px;
    }

    .slider-top-arrows {
        top: 110px;
    }

    .slick-arrow {
        width: 35px;
        height: 35px;
        border-radius: 6px;
    }

    .slick-arrow svg {
        width: 14px;
        height: 14px;
    }

    .slider-top-arrows .slick-next {
        margin-left: 8px;
    }

    .mapWrap-slider .slick-prev,
    .mapWrap-slider .slick-next {
        top: 50%;
        z-index: 1;
        transform: translateY(-50%);
    }

    .formForm .custom-checkbox {
        font-size: 7px;
        letter-spacing: 0.03em;
        gap: 5px;
    }

    .custom-checkbox .box {
        width: 11px;
        height: 11px;
        border-radius: 2px;
    }

    .custom-checkbox .box::after {
        width: 4px;
        height: 9px;
        left: 4px;
        top: 0px;
    }

    /* .form-title h3 + img {
        width: 37px;
    } */

    .form .container {
        padding-left: 0;
        padding-right: 0;
    }

    /* .formLine--two {
        flex-direction: column;
    } */

    /* .formLine--two input {
        width: 100%;
    } */

    .topWhite-text h3 {
        font-size: 16px;
    }

    .topWhite-text p {
        font-size: 14px;
    }
    .map{
        overflow: hidden;
    }
    .mapWrap {
        width: 500px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

}

@media screen and (max-width: 450px) {
    .top-title h1 {
        font-size: 36px;
    }

    .btn {
        width: 100%;
    }

    .topWhite {
        padding-top: 20px;
    }

    .topWhite-top {
        font-size: 8px;
    }

    .topBottom img {
        width: 700px;
    }

    /* .form-title h3 {
        font-size: 24px;
    } */

    .formForm input {
        font-size: 12px;
        padding: 0 10px;
    }

    /* .formForm .btn {
        font-size: 12px;
        height: 40px;
        border-radius: 10px;
    } */
    .mapWrap-elem__text {
        max-width: 166px;
    }
}