html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style-type: none;
}

button {
    background-color: transparent;
    padding: 0;
    border: 0;
    cursor: pointer;
}

:root {
    --primary-color: #00a6eb;
}

.container {
    max-width: 1150px;
    padding: 0 15px;
    margin: 0 auto;
}

body {
    /* font-family: "PT Serif", serif; */
    font-family: "Roboto", sans-serif;
    color: #303239;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    font-style: normal;
}

.hidden {
    display: none;
}

/* Header */

.header {
    position: absolute;
    z-index: 20;
    margin: 0 auto;
    top: 50px;
    left: 0;
    right: 0;
    padding: 0 1.875em;
}

.header.open {
    z-index: 2000;
}

.header.open .sidebar {
    transform: translateX(100%);
}

.header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header__logo a img {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

.header__right-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px 30px;
}

.header__signUp a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    padding: 15px 15px 13px;
    border: 1px solid rgba(255, 255, 255, .3);

    transition: background-color .2s ease-out;
}

.header__signUp:hover a {
    background-color: var(--primary-color);
}

.header__burger {
    z-index: 150;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
}

.header__burger span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 5px;
    transition: transform .5s, opacity .5s, background-color .5s;
}

.header__burger span:nth-child(1) {
    transform: translateY(-10px);
}

.header__burger span:nth-child(3) {
    transform: translateY(10px);
}

.header.open .header__burger span {
    background-color: var(--primary-color);
}

.header.open .header__burger span:nth-child(1) {
    transform: translateY(0) rotate(135deg);
}

.header.open .header__burger span:nth-child(2) {
    opacity: 0;
    transform: translateX(150%);
}

.header.open .header__burger span:nth-child(3) {
    transform: translateY(0) rotate(-135deg);
}

.sidebar {
    transition: transform ease-in .5s;
    position: relative;
    top: -105px;
    left: -380px;
    right: 0;
    bottom: 0;
    z-index: 101;
    padding: 150px 20px 20px 20px;
    height: 100vh;
    width: 350px;
    background-color: #fff;
}

.sidebar__menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--primary-color);
    font-family: "PT Serif", serif;
    font-size: 20px;
    color: #333366;
}

.sidebar__menu li a {
    transition: color .2s linear;
}

.sidebar__menu li a:hover {
    color: var(--primary-color);
    transition: color .2s linear;
}

.sidebar__phones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar__phones-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar__phones-item p {
    font-size: 20px;
}

.switch_lang {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
}

.switch_lang a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .5s linear;
}

.switch_lang ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.switch_lang p {
    padding: 5px 0 0 0;
    border-bottom: 1px solid var(--primary-color);
}

.switch_lang-list > li {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    margin-bottom: 2px;
}

.switch_lang-sublist {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 15;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: .5s ease-in-out;
}

.switch_lang-sublist li {
    position: relative;
    top: 0;
    left: 0;
}

.switch_lang-sublist .switch_lang-sublist {
    position: absolute;
    top: 0;
    left: calc(100% - 1px);
    left: -webkit-calc(100% - 1px);
}

.switch_lang-list li:hover > .switch_lang-sublist{
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

/* Intro */

.intro {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.intro__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ccc;
}

.intro__media::before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: linear-gradient(to bottom, rgba(17, 16, 16, 0.64) 0%, rgba(125, 185, 232, 0) 50%);
}

.intro__media-video {
    opacity: 0;
    z-index: 8;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.intro__media-video:last-child {
    top: 70%;
}

.intro__media-video.active {
    opacity: 1;
}

.intro__buttons {
    position: relative;
    z-index: 21;
    display: flex;
    gap: 20px;
    top: -10%;
    left: 10%;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.intro__btn {
    text-align: center;
    padding: 24px 16px;

    font-family: "PT Serif", serif;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;

    transition: all .2s ease-in;
}

.intro__btn.active {
    color: #fff;
    transform: scale(1.3);
}

.intro__indicator {
    position: absolute;
    z-index: 11;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #fff;
    width: calc(100% / 3);
    transition: 0.3s;
}

.intro__content-title {
    max-width: 1000px;
    position: absolute;
    top: 45%;
    left: 26%;
    z-index: 10;
    font-family: "PT Serif", serif;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    opacity: 0;
    user-select: none;
}

.intro__content-title.active {
    opacity: 1;
}

.intro__scroll-down {
    position: absolute;
    bottom: 15%;
    left: 15%;
    z-index: 100;
}

.arrow-down {
    margin: 40px auto 10px auto;
    width: 38px;
    height: 100px;
}

.arrow-down span {
    display: block;
    width: 22px;
    height: 22px;
    border-bottom: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: rotate(45deg);
    margin: -16px 0;
    animation: arrow-down 2s infinite;
}

.arrow-down span:nth-child(2){
    animation-delay: -0.2s;
}

.arrow-down span:nth-child(3){
    animation-delay: -0.4s;
}

@keyframes arrow-down {
    0% {
        opacity: 0;
        transform: translate(0, -20px) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(0, 20px) rotate(45deg);
    }
}

.intro__app {
    position: absolute;
    bottom: 5%;
    right: 3%;
    z-index: 25;
}

.intro__app ul {
    display: flex;
    gap: 20px;
}


/* Info */

.info {
    background-color: #fff;
}

.info__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.info__left {
    position: relative;
    margin-bottom: -20px;
    margin-left: -160px;
    margin-top: -20px;
    margin: -20px 0 -20px -160px;
    padding: 60px 40px 60px 50px;
    width: 1000px;
    height: 850px;
}

.info__left-active {
    position: absolute;
    background-color: #fff;
    bottom: 0;
    box-shadow: 0 0 81px 0 rgba(30, 48, 85, 0.4);
    left: 0;
    right: 0;
    top: 0;
    z-index: 90;
}

.info__left-next {
    background-color: #ffffff;
    bottom: 10px;
    box-shadow: 0 0 81px 0 rgba(30, 48, 85, 0.4);
    left: 10px;
    margin-right: -30px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 80;
}

.info__right {
    flex: 0 0 352px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 0 98px 50px;
}

.info__right h2 {
    font-family: 'PT Serif';
    font-size: 24px;
    font-weight: 500;
}

.info__right-btn {
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 3px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}




/* Tabs */

.tab__btns {
    position: relative;
    display: flex;
    flex-direction: column;
}

.tab__indicator {
    position: absolute;
    top: 12px;
    left: 0;
    width: 4px;
    height: 25px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.tab__btn {
    padding: 16px 0 16px 16px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
    color: #9da0a6;
    text-transform: uppercase;
    user-select: none;
}

.tab__btn.active {
    color: #303239;
}

.tab__body {
    position: relative;
    z-index: 100;
}

.tab__slide {
    position: absolute;
    /* top: -20%; */
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 500ms ease-in-out 0ms, transform 500ms ease-in-out 0ms;
    visibility: hidden;
}

.tab__slide.active {
    top: 0;
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    display: block;
}

/* <-- Tabs --> */

.tab__slide-title {
    font-family: 'PT Serif';
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 48px;
}

.tab__slide-text {
    margin-bottom: 32px;
    line-height: 1.67;
    word-spacing: 3px;
}

.tab__slide-text p+p {
    margin-top: 32px;
}

.tab__slide-complex {
    display: flex;
    justify-content: space-between;
    gap: 20px 10px;
    flex-wrap: wrap;
}

.tab__slide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 220px;
}

.tab__slide-item_img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 170px;
    margin-bottom: 15px;
}

.tab__slide-item img {
    width: 100%;
}

.tab__slide-item p {
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
}


/* Statistics */

.statistics {
    padding: 80px 0 128px 0;
    background-color: #2d2f36;
}

.statistics__title {
    font-family: 'PT Serif';
    font-size: 48px;
    font-weight: 400;
    color: #e1e4e6;
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: solid 1px rgba(225, 228, 230, 0.3);
}

.statistics__list {
    display: flex;
    justify-content: space-between;
    gap: 64px 56px;
    flex-wrap: wrap;
}

.statistics__item {
    display: flex;
    align-items: center;
    flex-basis: 500px;
    gap: 32px;
}

.statistics__item-img {
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    padding: 30px;
    font-size: 0;
}

.statistics__item-img img {
    width: 70px;
    height: auto;
}

.statistics__item-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
}

.statistics__item-box p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}


/* map */

.map {
    padding: 40px 0;
    background-color: #105e8b;
}

.container__map {
    max-width: 1500px;
    margin: 0 auto;
}

.map__title {
    font-family: 'PT Serif';
    font-size: 48px;
    font-weight: 400;
    color: #e1e4e6;
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: solid 1px rgba(225, 228, 230, 0.3);
}

.map__img {
    width: 100%;
}


/* awards */

.awards {
    background-color: #fff;
}

.awards__wrapper {
    position: relative;
}

.award {
    user-select: none;
    height: 300px;
    display: flex;
    flex-direction: column;
    padding: 48px;
    border: 1px solid #d7e5f0;
}

.award img {
    margin-bottom: 40px;
    max-width: 37px;
}

.award__title {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.33;
}

.award__descr {
    color: #8b98a7;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: none;
}

.awards__arrows {
    user-select: none;
    position: absolute;
    top: 60px;
    right: -60px;
}

.awards__arrows-left img{
    width: 26px;
    height: 26px;
}

.awards__arrows-right img{
    width: 26px;
    height: 26px;

}

.awards__arrows-left {
    padding: 15px 22px;
    border: 1px solid #d7e5f0;
}

.awards__arrows-right {
    padding: 10px 20px;
    border: 1px solid #d7e5f0;

    position: absolute;
    top: 0;
    left: 55px;
}


/* contacts */

.contacts {
    padding-top: 50px;
    background-color: #fff;
}

.contacts__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
}

.contacts__body {
    padding: 0 40px;
}

.contacts__title {
    margin-top: -7px;
    font-family: 'PT Serif';
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
}

.contacts__info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contacts__info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts__info-item p {
    font-size: 20px;
    font-weight: 500;
}

.contacts__content-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.contacts__content-text p+p {
    margin-top: 15px;
}

.contacts__tab {
    height: 1000px;
}

.contacts__tab:has(.contacts__tab-slide--long.active) {
    height: 1220px;
}
  
.contacts__tab-top {
    max-width: 550px;
    margin-bottom: 25px;
}
  
.contacts__tab-btns {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.contacts__tab-btn {
    width: calc(100% / 2);
    text-align: center;
    color: #778899;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}
  
.contacts__tab-btn.active {
    color: var(--primary-color);
}
  
.contacts__tab-indicator {
    position: relative;
    left: 0;
    height: 3px;
    background-color: var(--primary-color);
    width: calc(100% / 2);
    transition: .7s;
}
  
.contacts__tab-text {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}
  
.contacts__tab-body {
    position: relative;
}
  
.contacts__tab-slide {
    position: absolute;
    top: -200%;
    opacity: 0;
    transition: opacity .5s ease-in;
  
    display: flex;
    flex-direction: column;
    gap: 30px;
    visibility: hidden;
}

.contacts__tab-slide.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.contacts__tab-slide .contacts__content-text {
    transform: translateX(-10%);
    transition: transform .5s ease-in;
}

.contacts__tab-slide.active .contacts__content-text {
    transform: translateX(0);
}

/* .contacts__tab-slide .form {
    transform: translateY(-10%);
    transition: transform .5s ease-in;
}

.contacts__tab-slide.active .form {
    transform: translateY(0);
} */


/* form */

.form {
    padding: 40px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.form__title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
}

.form__block {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.form__block-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.form__block input {
    font-family: "Roboto", sans-serif;
    background: transparent;
    height: 40px;
    border: none;
    border-bottom: 1px solid #303239;
    padding-left: 10px;
    font-size: 18px;
    color: #303239;
}

.form__block input::placeholder {
    font-size: 16px;
    color: #8b98a7;
}

.form__block input:focus::placeholder {
    color: var(--primary-color);
}

.form__block input:focus {
    outline: none;
}

.text__area {
    margin-bottom: 10px;
    width: 100%;
    height: 80px;
    padding: 10px 14px;
    font-family: "Roboto", sans-serif;
    border: none;
    border: 1px solid #303239;
    border-radius: 5px;
    outline: none;
    background: transparent;
    font-size: 18px;
    color: #303239;
    resize: none;
    border-color: rgba(0, 0, 0, .3);
}

.text__area::placeholder {
    font-size: 14px;
    line-height: 1.35;
    color: #8b98a7;
}

.text__area:focus::placeholder {
    color: var(--primary-color);
}

.form__agreement {
    user-select: none;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 50px;
}

.form__agreement a {
    color: var(--primary-color);
}

.real-checkbox {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #7e9bbd;
    border-radius: 4px;
    vertical-align: sub;
    margin-right: 5px;
}

.custom-checkbox::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url('./../images/icons/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    margin-top: 1px;

    transition: .2s ease-in;
}

.real-checkbox:checked + .custom-checkbox::before {
    transform: translate(-50%, -50%) scale(1);
}

.form__btn {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: none;
}




/* footer */

.footer {
    position: relative;
    padding: 80px 0;
    color: #9da0a6;
    background-color: #2d2f36;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__app {
    position: absolute;
    right: 0;
}

.footer__app ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footer__app img {
    width: 80%;
}

.copyrigt {
    color: #fff;
}

.author {
    font-size: 13px;
}






/* agreement */

.agreement-section {
    padding: 100px 0 50px;
    color: #8b98a7;
}

.agreement-container {
    max-width: 800px;
}

.agreement-section__top {
    color: #2d2f36;
    margin-bottom: 50px;
}

.agreement-section__title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #00a1d9;
}

.agreement-section__text {
    font-size: 18px;
}

.agreement-section__main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.agreement-section__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agreement-section__item-title {
    font-size: 18px;
    color: #303239;
}

.agreement-section__item-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



/* scroll to top */

.scroll-top {
    position: fixed;
    right: 7%;
    bottom: 10%;
    z-index: 200;
    font-size: 20px;
    cursor: pointer;
    transition: opacity .2s ease-in;
    visibility: hidden;
    opacity: 0;
}

.scroll-top--show {
    visibility: visible;
    opacity: 1;
}

.arrow-to-top span {
    display: block;
    width: 26px;
    height: 26px;
    border-bottom: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color);
    transform: rotate(135deg);
    margin: -12px 0;
    animation: arrow-top 2s infinite;
}

.arrow-to-top span:nth-child(1){
    animation-delay: -0.2s;
}

.arrow-to-top span:nth-child(2){
    animation-delay: -0.4s;
}

.arrow-to-top span:nth-child(3){
    animation-delay: -0.6s;
}

@keyframes arrow-top {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(225deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(0, 0) rotate(225deg);
    }
}











@media (max-width: 1350px) {
    .intro__content-title {
        left: 20%;
        font-size: 36px;
        max-width: 900px;
    }
    .info__left {
        padding-left: 110px;
    }
}

@media (max-width: 1230px) {
    .intro__content-title {
        max-width: 880px;
    }
    .info__left {
        padding-left: 177px;
    }
    .tab__slide-complex {
        justify-content: space-around;
        gap: 10px;
    }
    .tab__slide-item {
        max-width: 180px;
    }
}

@media (max-width: 1130px) {
    .intro__content-title {
        left: 13%;
    }
    .intro__buttons {
        left: 15%;
    }
    .intro__btn {
        font-size: 12px;
        padding: 20px 12px;
    }
    .statistics__title,
    .map__title,
    .contacts__title {
        font-size: 42px;
    }
    .statistics__list {
        justify-content: space-around;
        gap: 64px 5px;
    }
    .statistics__item {
        flex-basis: 430px;
    }
}

@media (max-width: 1030px) {
    .intro__content-title {
        left: 10%;
        max-width: 800px;
        font-size: 32px;
    }
    .tab__slide-title {
        margin-bottom: 30px;
    }
    .tab__slide-item_img {
        height: 100px;
        align-items: center;
    }
    .tab__slide-item img {
        width: 70%;
    }
    .tab__slide-item p {
        font-size: 10px;
    }
    .tab__slide-complex {
        gap: 20px 10px;
    }
    .statistics__item {
        flex-direction: column;
        text-align: center;
    }
    .form__block {
        flex-direction: column;
        gap: 30px;
    }
    .contacts__body {
        padding: 0 120px;
    }
    .contacts__tab:has(.contacts__tab-slide--long.active) {
        height: 1460px;
    }
    .contacts__tab {
        height: 1260px;
    }
}

@media (max-width: 900px) {
    .intro__content-title {
        max-width: 730px;
        font-size: 32px;
    }
    .intro__app ul {
        gap: 0;
    }
    .intro__app img {
        width: 80%;
    }
    .info__left {
        padding: 40px 10px 0 160px;
    }
    .statistics {
        padding: 80px 0;
    }
    .statistics__title,
    .map__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .statistics__item {
        flex-basis: 300px;
    }
    .statistics__item-box p {
        font-size: 16px;
    }
    .contacts__title {
        font-size: 32px;
    }
    .contacts__body {
        padding: 0;
    }
    .footer__logo {
        width: 155px;
    }
    .footer__logo img {
        width: 100%;
    }
    .footer {
        padding-top: 60px;
        padding-bottom: 90px;
    }
    .footer__app {
        bottom: 14%;
    }
    .copyrigt {
        font-size: 14px;
    }
}

@media (max-width: 800px) {
    .intro__content-title {
        max-width: 645px;
    }
    .sidebar {
        width: 300px;
        padding-top: 120px;
        padding-left: 70px;
        top: -93px;
    }
    .sidebar__menu {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .sidebar__phones-item p {
        font-size: 16px;
    }
    .sidebar__phones-item a {
        font-size: 14px;
    }
    .arrow-down span {
        width: 16px;
        height: 16px;
    }
    .arrow-to-top span {
        width: 20px;
        height: 20px;
        margin: -10px 0;
    }
    .header__signUp a {
        font-size: 12px;
    }
    .header__signUp:hover a {
        background-color: unset;
    }
    .header__logo a img {
        max-width: 150px;
    }
    .tab__slide-complex {
        gap: 30px;
    }
    .info {
        padding: 15px;
    }
    .info__wrapper {
        flex-direction: column-reverse;
    }
    .info__right {
        border-bottom: 1px solid var(--primary-color);
        padding: 20px 0;
        gap: 10px;
        flex: unset;
    }
    .info__right h2 {
        font-size: 32px;
    }
    .info__right-btn {
        display: none;
    }
    .info__left-active,
    .info__left-next {
        display: none;
    }
    .info__left {
        max-width: 700px;
        height: 660px;
        padding: 0;
        margin: 0;
    }
    .tab__slide-title {
        font-size: 24px;
    }
    .tab__slide-item p {
        font-size: 12px;
    }
    .tab__btns {
        z-index: 3000;
    }
    .statistics,
    .map,
    .contacts {
        padding: 30px 0;
    }
    .sidebar__menu li a:hover {
        color: unset;
    }
}

@media (max-width: 740px) {
    .intro__content-title {
        font-size: 26px;
        max-width: 550px;
    }
    .intro__app {
        bottom: 8%;
    }
    .intro__app ul {
        flex-direction: column;
        gap: 5px;
    }
    .info__left {
        max-width: -webkit-fill-available;
    }
    .contacts__top {
        gap: 20px;
        flex-wrap: wrap;
    }
    .contacts__title {
        width: 100%;
    }
    .contacts__wrapper {
        gap: 20px;
    }
    .contacts__tab-top {
        max-width: unset;
    }
    .footer__logo {
        width: 93px;
    }
}

@media (max-width: 620px) {
    .intro__content-title {
        font-size: 20px;
        max-width: 500px;
        left: 7%;
    }
    .header__row {
        align-items: flex-start;
    }
    .header__right-menu {
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    .header__burger {
        height: 30px;
    }
    .sidebar {
        top: -123px;
    }
    .statistics__list {
        gap: 30px 5px;
    }
    .statistics__item {
        gap: 8px;
    }
    .form {
        padding: 20px;
    }
    .contacts__tab-top {
        margin-bottom: 15px;
    }
    .contacts__tab-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .contacts__tab-btn {
        font-size: 16px;
    }
    .contacts__content-text {
        font-size: 14px;
    }
    .contacts__content-text p+p {
        margin-top: 5px;
    }
    .contacts__tab {
        height: 1130px;
    }
    .form__title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .form__block {
        margin-bottom: 20px;
        gap: 20px;
    }
    .form__block-col {
        gap: 20px;
    }
    .form__block input {
        height: 30px;
        font-size: 14px;
    }
    .form__block input::placeholder {
        font-size: 12px;
    }
    .text__area {
        font-size: 14px;
    }
    .text__area::placeholder {
        font-size: 12px;
    }
    .form__agreement {
        margin-bottom: 20px;
        font-size: 12px;
    }
    .custom-checkbox {
        width: 15px;
        height: 15px;
    }
    .form__btn {
        font-size: 12px;
        padding: 10px 40px;
    }
    .contacts__tab {
        /* height: 880px; */
    }
    .contacts__tab:has(.contacts__tab-slide--long.active) {
        height: 1160px;
    }
    .switch_lang p {
        padding-top: 7px;
    }
    .footer__app {
        bottom: 10%;
    }
}

@media (max-width: 510px) {
    .intro__content-title {
        font-size: 20px;
        max-width: 420px;
    }
    .header__right-menu {
        gap: 10px;
    }
    .header__signUp a {
        font-size: 10px;
        padding: 8px 8px 6px;
    }
    .header__logo a img {
        max-width: 120px;
    }
    .header__burger {
        width: 22px;
        height: 22px;
    }
    .header__burger span {
        width: 22px;
        height: 2px;
        left: 0;
    }
    .header__burger span:nth-child(1) {
        transform: translateY(-8px);
    }
    .header__burger span:nth-child(3) {
        transform: translateY(8px);
    }
    .sidebar {
        top: -113px;
        padding-top: 100px;
    }
    .tab__slide-text p+p {
        margin-top: 20px;
    }
    .map {
        padding-bottom: 5px;
    }
    .contacts__tab-btns {
        gap: 5px;
    }
    .footer {
        padding: 40px 10px 60px;
    }
    .footer__wrapper {
        flex-wrap: wrap;
    }
    .footer__app {
        bottom: 5%;
    }
    .author {
        width: 100%;
        text-align: end;
    }
    .scroll-top {
        right: 9%;
    }
    .contacts__info-item:nth-child(3){
        text-align: center;
        flex-grow: 1;
    }
}

@media (max-width: 467px) {
    .intro__content-title {
        left: 10%;
        font-size: 18px;
        max-width: 380px;
    }
    .header__row {
        gap: 10px;
    }
    .tab__slide-item {
        max-width: 300px;
    }
    .tab__slide-item_img {
        height: auto;
    }
    .tab__slide-item img {
        width: 80%;
    }
    .tab__slide-text {
        font-size: 14px;
    }
    .info__left:has(.tab__slide-long.active) {
        height: 1450px;
    }
    .contacts__tab {
        /* height: 950px; */
    }
    .contacts__tab:has(.contacts__tab-slide--long.active) {
        height: 1220px;
    }
    .footer__app ul {
        gap: 0;
    }
    .footer__app {
        text-align: center;
    }
}

@media (max-width: 400px) {
    .contacts__tab {
        /* height: 970px; */
    }
    .contacts__tab:has(.contacts__tab-slide--long.active) {
        height: 1260px;
    }
    .footer__wrapper {
        gap: 10px;
    }
}

@media (max-width: 370px) {
    .header__logo a img {
        max-width: 105px;
    }
    .info__right h2 {
        font-size: 28px;
    }
    .copyrigt {
        font-size: 12px;
    }
}