@import "/public/css/variables_new.css";

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

h1, h2, h3, h4, h5, h6, p, ul, ol, dl {
    margin: 0;
    padding: 0;
}

ul, ol {
    padding-left: 0;
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

input,
textarea,
select,
button {
    font: inherit;
}

html,
:has(:target) {
    scroll-behavior: smooth;
}

@supports not (scroll-behavior: smooth) {
    html {
        scroll-behavior: auto;
    }
}

a,
button,
input,
div,
span,
textarea,
svg * {
    -webkit-transition-duration: var(--transition-duration);
    transition-duration: var(--transition-duration);
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
}

/**  Приводим к единому цвету svg-элементы */
svg *[fill] {
    fill: currentColor;
}

svg *[stroke] {
    stroke: currentColor;
}

/** Чиним баг задержки смены цвета при взаимодействии с svg-элементами */
/*svg * {*/
/*    -webkit-transition-property: fill, stroke;*/
/*    -o-transition-property: fill, stroke;*/
/*    transition-property: fill, stroke;*/
/*}*/

@font-face {
    font-family: "Be Vietnam Pro";
    src: url(/public/fonts/new_landing/BeVietnamPro-Regular.woff2) format("woff2");
    src: url(/public/fonts/new_landing/BeVietnamPro-Regular.woff) format("woff");
    src: url(/public/fonts/new_landing/BeVietnamPro-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url(/public/fonts/new_landing/BeVietnamPro-Medium.woff2) format("woff2");
    src: url(/public/fonts/new_landing/BeVietnamPro-Medium.woff) format("woff");
    src: url(/public/fonts/new_landing/BeVietnamPro-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url(/public/fonts/new_landing/BeVietnamPro-SemiBold.woff2) format("woff2");
    src: url(/public/fonts/new_landing/BeVietnamPro-SemiBold.woff) format("woff");
    src: url(/public/fonts/new_landing/BeVietnamPro-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url(/public/fonts/new_landing/BeVietnamPro-Black.woff2) format("woff2");
    src: url(/public/fonts/new_landing/BeVietnamPro-Black.woff2) format("woff");
    src: url(/public/fonts/new_landing/BeVietnamPro-Black.ttf) format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: var(--main-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-text-size-adjust: none;
    -moz-osx-font-smoothing: grayscale;
}

.landing-container {
    max-width: calc(var(--container-width) + var(--paddinx-x) * 2);
    margin: 0 auto;
    padding-inline: var(--paddinx-x);
}

@media (max-width: 767px) {
    .landing-container {
        padding-inline: var(--paddinx-x-mob);
    }
}

.btn-reset {
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    border: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    clip-path: inset(100%) !important;
    -webkit-clip-path: inset(100%) !important;
    clip: rect(0 0 0 0) !important;
    overflow: hidden !important;
}

.stop-scroll {
    overflow: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.stop-scroll::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(28, 28, 28, 0.20);
    z-index: 500;
}

.header-position {
    width: 100%;
    background-color: #3AB6F2;
    position: relative;
    z-index: 40;
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: var(--header-height);
}

.header__logo {
    margin-right: 24px;
    flex-shrink: 0;
}

.header__menu-container {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-right: auto;
}


.header__menu-list {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.header__menu-link {
    display: inline-block;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px;
    text-transform: lowercase;
    color: var(--color-link);
    letter-spacing: 0.128px;
    -webkit-transition: color var(--transition-duration) ease-in-out;
    transition: color var(--transition-duration) ease-in-out, background-color var(--transition-duration) ease-in-out;
}

@media (any-hover: hover) {
    .header__menu-link:hover {
        color: var(--color-link-hover);
        background-color: rgba(255, 255, 255, 0.30);
    }
}

.header__menu-link--active, .header__menu-link--active:hover, .header__menu-link:active {
    color: var(--white-color);
}

.download-btn {
    font-weight: 600;
    padding: 12px 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--button-height);
    /*color: var(--color-button);*/
    background-color: var(--bg-color-button);
    border-radius: var(--border-radius);
    letter-spacing: 0.128px;
    white-space: nowrap;
    transition: background-color var(--transition-duration) ease-in-out;
}

@media (any-hover: hover) {
    .download-btn:hover {
        background-color: var(--bg-color-button-hover);
    }
}
.download-btn:active {
    background-color: var(--bg-color-button-hover);
}

.download-btn--big {
    padding: 32px 48px;
    min-width: 512px;
    height: var(--button-height-big);
    font-size: 28px;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: 0.288px;
    border-radius: 100px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}

.download-btn--big:active {
    box-shadow: none;
}

.download-btn--alt {
    color: var(--accordion-title);
    background-color: var(--white-color);
}

@media (any-hover: hover) {
    .download-btn--alt:hover {
       background-color: var(--bg-color);
       color: var(--color-link-second-hover);
    }
}

.download-btn--alt:active {
    background-color: var(--bg-color);
    color: var(--color-link-second-hover);
}

.header__download-icon, .burger-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    aspect-ratio: 1;
    padding: 12px;
    flex-shrink: 0;
    outline: 0;
    background-color: rgba(255, 255, 255, 0.20);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    -webkit-transition: background-color var(--transition-duration) ease-in-out;
    transition: background-color var(--transition-duration) ease-in-out;
}

.burger-btn {
    background-image: url(/public/img/landing/new/menu.svg);
}

.header.open .burger-btn {
    background-image: url(/public/img/landing/new/close.svg);
}

.header__download-icon {
    background-color: var(--bg-color-button);
}

.header__download-icon use {
    stroke: var(--color-header-icon);
    fill: none;
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-linecap: round;
}

@media (any-hover: hover) {
    .burger-btn:hover, .header.open .burger-btn:hover  {
        background-color: rgba(255, 255, 255, 0.30);
    }

    .header__download-icon:hover {
        background-color: var(--bg-color-button-hover);
    }
}

.burger-btn:active {
    background-color: rgba(255, 255, 255, 0.30);
}
.header__download-icon:active {
    background-color: var(--bg-color-button-hover);
}

.hero {
    position: relative;
    padding-top: 204px;
    /*overflow: hidden;*/
}

.hero__container {
    position: relative;
}

.hero__circle {
    display: flex;
    justify-content: center;
    align-items: end;
    position: absolute;
    top: -304px;
    left: 19%;
    width: 370px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #DAE0E780;
}

.hero__circle-slogan {
    margin-left: 47px;
    padding: 0 34px;
    max-width: 302px;
    position: absolute;
    top: 150px;

    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

.hero__circle-dash {
    display: inline-block;
    margin-left: -47px;
    margin-right: 10px;
}

[lang="en"] .hero__circle-slogan, [lang="pt"] .hero__circle-slogan  {
    font-size: 36px;
}

[lang="es"] .hero__circle-slogan  {
    top: 160px;
    font-size: 38px;
}

[lang="de"] .hero__circle-slogan  {
    margin-left: 42px;
    top: 160px;
    font-size: 32px;
}
[lang="de"] .hero__circle-dash {
    margin-left: -38px;
}

[lang="fr"] .hero__circle-slogan  {
    margin-left: -20px;
    max-width: 286px;
    top: 160px;
    font-size: 32px;
}
[lang="fr"] .hero__circle-dash {
   margin-left: -38px;
}

[lang="zh"] .hero__circle-slogan {
    top: 175px;
    font-size: 44px;
}

.shape {
    position: absolute;
    right: 0;
    top: -28px;
    z-index: -1;
}

.shape img {
    width: clamp(119px, 19.4vw, 317px);  /* calc(317 / 1630 * 100) */
    height: clamp(126px, 20.3vw, 331px);
}

.shape-big {
    z-index: -2;
}

.shape-big img {
    width: clamp(244px, 39.6vw, 647px);  /* calc(647 / 1630 * 100) */
    height: clamp(253px, 40.6vw, 662px);
}

.hero__top {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 8px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 101;
}

.hero__title {
    max-width: 616px;
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}
.hero__slogan {
    display: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.hero__faster {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -126px;
    /*right: 480px;*/
    right: 29.5%;
    width: 274px;
    height: 274px;
    background-image: url(/public/img/landing/new/speedometer.svg);
    background-size: cover;
    z-index: 10;
}

.hero__faster-descr {
    text-align: center;
}

.hero__faster-text {
    line-height: 1;
}

.hero__faster-percent {
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
}

.hero__platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__platforms .download-btn--big {
    /*margin-inline: 6px;*/
    z-index: 2;
}

.benefits__download .download-btn--big {
    font-weight: 600;
}

.hero__platforms-container {
    padding: 12px 40px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    border-radius: 0 0 16px 16px;
    background-color: rgba(218, 224, 231, 0);
}

.hero__platforms-link {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 81px;
    aspect-ratio: 1;
    color: var(--blue-color);
    -webkit-transition: color var(--transition-duration) ease-in-out;
    transition: color var(--transition-duration) ease-in-out;
}

.hero__platforms-link svg {
    width: 42px;
    height: 41px;
}

.hero__platforms-link use {
    fill: currentColor;
}

@media (any-hover: hover) {
    .hero__platforms-link:hover use {
        color: var(--blue-color-hover);
    }
}
.hero__platforms-link:active use {
    color: var(--blue-color-hover);
}

.hero__bottom {
    display: flex;
    justify-content: space-between;
    column-gap: 98px;
    position: relative;
}

.hero__flamingo {
    position: absolute;
    bottom: 98%;
    /*right: 170px;*/
    right: 96px;
    z-index: 100;
}
.hero__flamingo img {
    height: 100%;
    aspect-ratio: 5 / 4;
}

.hero__bottom-bg {
    margin-top: -86px;
    width: 790px;
    aspect-ratio: 790 / 500;
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    border: 1px solid var(--border-color-img);
    border-radius: 16px;
    box-shadow: 0 0 16px 0 rgba(98, 114, 138, 0.25);
    position: relative;
}

.hero__bottom-bg--en {
    background-image: url(/public/img/landing/client/light/en.png);
}
.hero__bottom-bg--ru {
    background-image: url(/public/img/landing/client/light/ru.png);
}
.hero__bottom-bg--de {
    background-image: url(/public/img/landing/client/light/de.png);
}
.hero__bottom-bg--es {
    background-image: url(/public/img/landing/client/light/es.png);
}
.hero__bottom-bg--fr {
    background-image: url(/public/img/landing/client/light/fr.png);
}
.hero__bottom-bg--pt {
    background-image: url(/public/img/landing/client/light/pt.png);
}
.hero__bottom-bg--zh {
    background-image: url(/public/img/landing/client/light/zh.png);
}

.benefits__bg-container {
    position: absolute;
    width: 100%;
    top: -138px;
    height: 900px;
    background-size: cover;
    overflow-x: hidden;
    z-index: -1;
}

.benefits__bg-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(/public/img/landing/new/wave_1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (min-width: 1921px) {
    .benefits__bg-container::before {
        transform: scaleX(2);
        background-size: auto;
        background-position: top;
    }
}

.benefits {
    position: relative;
}

.benefits__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefits__body {
    margin-top: 124px;
    margin-bottom: 262px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    row-gap: var(--card-gap);
    flex-wrap: wrap;
    position: relative;
}

.benefits__card-container {
    display: flex;
    gap: var(--card-gap);
}

.benefits__card {
    display: flex;
    align-items: center;
    padding: 32px 48px;
    max-width: 684px;
    min-height: 104px;
    width: calc(50% - var(--card-gap));
    column-gap: 36px;
    border-radius: 30px;
    color: var(--card-color);
    background-color: var(--bg-color);
    flex: 1 0 auto;
}

.benefits__card-icon {
    display: block;
    /*width: 85px;*/
    /*height: 86px;*/
    width: clamp(42px, 5.97vw, 86px);
    aspect-ratio: 1;
    flex-shrink: 0;
}

.benefits__card-icon svg {
    width: clamp(42px, 5.97vw, 86px);
}

.icon-protection svg {
    /*height: 106px;*/
    height: clamp(52px, 7.36vw, 106px);
}

.benefits__card-divider {
    width: 4px;
    height: 98px;
    background-color: #6A7585;
    border-radius: 28px;
    flex-shrink: 0;
}

.benefits__card-title {
    margin-bottom: 8px;
    font-size: clamp(16px, 2.08vw, 30px); /* calc(30 / 1440 * 100) */
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.benefits__card-descr {
    font-size: clamp(16px, 1.67vw, 24px); /* calc(24 / 1440 * 100) */
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-wrap: pretty;
}

.benefits__card:last-child .benefits__card-descr {
    text-wrap: balance;
}

.benefits__body img {
    height: 100%;
    min-height: 110px;
}

.benefits__download {
    margin-bottom: 60px;
    padding-top: 100px;
    position: relative;
    text-align: center;
}

.benefits__title {
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
}

.benefits__descr {
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
}

.questions {
    position: relative;
}

.questions__container {
    padding-block: 65px;
    margin-bottom: 30px;
    max-width: 1400px;
}

.questions__container::before {
    content: '';
    width: 12px;
    height: 100%;
    background-color: #D9F21A;
    border-radius: 21px;
    position: absolute;
    top: 0;
}

.questions__title {
    margin-bottom: 40px;
    padding-left: 112px;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    color: var(--card-color);
}

.questions__accordion {
    padding-left: 112px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.accordion__item {
    position: relative;
    padding: 13px 17px 13px 30px;
    border-radius: 16px;
    background-color: var(--bg-accordion);
}

.accordion__item--open {
    background-color: var(--bg-accordion-open);
}

.accordion__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion__title {
    margin-right: 56px;
    padding-block: 17px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: var(--accordion-title);
}

.accordion__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-duration) ease-in-out, -ms-grid-rows var(--transition-duration) ease-in-out;
}

.accordion__wrapper--open {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}

.accordion__content {
    overflow: hidden;
}

.accordion__content-text {
    margin-right: 48px;
    padding: 8px 0 12px;
    color: var(--accordion-desc);
    font-size: 20px;
    line-height: 1.2;
}

.accordion__icon {
    position: absolute;
    top: 12px;
    right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    aspect-ratio: 1;
    flex-shrink: 0;
    color: var(--accordion-icon);
    transition: color var(--transition-duration) ease-in-out;
}

.accordion__content-text > a {
    text-decoration: underline;
}

.accordion__icon svg {
    stroke-width: 3px;
    stroke: currentColor;
    transition: rotate var(--transition-duration) ease-in-out;
}

@media (any-hover: hover) {
    .accordion__icon:hover {
        color: var(--color-link-second-hover);
    }
    .accordion__content-text > a:hover {
        color: var(--color-link-second-hover);
    }
}

.accordion__content-text > a:active {
    color: var(--color-link-second-hover);
}

.accordion__icon:active {
    color: var(--color-link-second-hover);
}

.accordion__icon--open svg{
    rotate: 180deg;
}

.benefits__card-title {
    margin-bottom: 8px;
    /*font-size: 30px;*/
    font-size: clamp(16px, 2.08vw, 30px); /* calc(30 / 1440 * 100) */
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.benefits__card-descr {
    /*font-size: 24px;*/
    font-size: clamp(16px, 1.67vw, 24px); /* calc(24 / 1440 * 100) */
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-wrap: pretty;
}

.benefits__card:last-child .benefits__card-descr {
    text-wrap: balance;
}

.footer__inner {
    position: relative;
    background-color: var(--bg-accordion);
}

.footer__container {
    padding-block: 60px;
}

.footer__bg-container {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    column-gap: 75px;
    /*margin-bottom: 40px;*/
}

.footer__body {
    display: flex;
    column-gap: 75px;
}

.footer__logo {
    display: block;
    width: 68px;
    height: 68px;
    /*background-image: url(/public/img/landing/new/logo_big.svg);*/
    /*background-repeat: no-repeat;*/
    /*background-size: contain;*/
    flex-shrink: 0;
}

.footer__navigation, .footer__agreements {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 24px;
}

.footer__nav-item {
    padding-block: 8px;
}

.footer__nav-link {
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.128px;
    white-space: nowrap;
    -webkit-transition: color var(--transition-duration) ease-in-out;
    transition: color var(--transition-duration) ease-in-out;
    color: var(--color-link);
}

@media (any-hover: hover) {
    .footer__nav-link:hover {
        color: var(--color-link-second-hover);
    }
}

.footer__nav-link:active {
    color: var(--color-link-second-hover);
}

/*.footer__bottom {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    column-gap: 96px;*/
/*}*/

.footer__copyright, .footer__connect {
    color: var(--main-color);
    letter-spacing: 0.128px;
}

.footer__copyright {
    font-size: 14px;
}

/*.footer__connect {*/
/*    margin-right: auto;*/
/*}*/

@media (any-hover: hover) {
    .footer__connect:hover {
        color: var(--color-link-second-hover);
    }
}

.footer__connect:active {
    color: var(--color-link-second-hover);
}

.footer__support {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.footer__support-container {
    display: flex;
    column-gap: 16px;
}

.footer__lang {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding-left: 12px;
    flex-shrink: 0;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
}

.footer__lang-dd {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    bottom: 48px;
    left: 50%;
    translate: -50%;
    padding-left: 12px;
    padding-block: 8px;
    row-gap: 6px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 0 16px 0 rgba(98, 114, 138, 0.25);
}

.footer__lang-select  {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.lang_slct::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.lang_slct.ru::before {
    background-image: url(/public/img/landing/flags/ru.svg);
}
.lang_slct.en::before {
    background-image: url(/public/img/landing/flags/en.svg);
}
.lang_slct.de::before {
    background-image: url(/public/img/landing/flags/de.svg);
}
.lang_slct.es::before {
    background-image: url(/public/img/landing/flags/es.svg);
}
.lang_slct.fr::before {
    background-image: url(/public/img/landing/flags/fr.svg);
}
.lang_slct.pt::before {
    background-image: url(/public/img/landing/flags/pt.svg);
}
.lang_slct.zh::before {
    background-image: url(/public/img/landing/flags/zh.svg);
}

.lang__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    aspect-ratio: 1;
    flex-shrink: 0;
    cursor: pointer;
    color: var(--accordion-icon);
}

.lang__icon svg {
    width: 24px;
    height: 24px;
    -webkit-transition: rotate var(--transition-duration) ease-in-out;
    transition: rotate var(--transition-duration) ease-in-out;
}

@media (any-hover: hover) {
    .lang__icon:hover {
        color: var(--color-link-second-hover);
    }
}

.lang__icon:active {
    color: var(--color-link-second-hover);
}

.lang__icon--active svg {
    rotate: 180deg;
    color: var(--color-link-second-hover);
}

.footer__lang-link {
    position: relative;
    display: inline-block;
    padding-left: 42px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-link-lang);
    text-transform: uppercase;
    -webkit-transition: color var(--transition-duration) ease-in-out;
    transition: color var(--transition-duration) ease-in-out;
}

@media (any-hover: hover) {
    .footer__lang-link:hover {
        color: var(--color-link-second-hover);
    }
}
.footer__lang-link:active {
    color: var(--color-link-second-hover);
}

.footer__lang-link::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 0;
    width: 25px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer__lang-link.ru::before, .mobile-menu__lang-link.ru::before {
    background-image: url(/public/img/landing/flags/ru.svg);
}
.footer__lang-link.en::before, .mobile-menu__lang-link.en::before {
    background-image: url(/public/img/landing/flags/en.svg);
}
.footer__lang-link.de::before, .mobile-menu__lang-link.de::before {
    background-image: url(/public/img/landing/flags/de.svg);
}
.footer__lang-link.es::before, .mobile-menu__lang-link.es::before {
    background-image: url(/public/img/landing/flags/es.svg);
}
.footer__lang-link.fr::before, .mobile-menu__lang-link.fr::before {
    background-image: url(/public/img/landing/flags/fr.svg);
}
.footer__lang-link.pt::before, .mobile-menu__lang-link.pt::before {
    background-image: url(/public/img/landing/flags/pt.svg);
}
.footer__lang-link.zh::before, .mobile-menu__lang-link.zh::before {
    background-image: url(/public/img/landing/flags/zh.svg);
}

.header__mobile-container {
    z-index: 1000;
}

.header__mobile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: 460px;
    padding: 20px;
    flex-direction: column;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    z-index: 501;
}

.header.open .header__mobile-menu {
    display: flex;
}

.mobile-menu__lang {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--bg-accordion);
    border-radius: 12px;
    overflow: hidden;
}

.mobile-menu__container {
    padding-left: 12px;
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


.mobile-menu__select {
    width: 30px;
    height: 24px;
    position: relative;
}
.mobile-menu__dd {
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--bg-accordion);
}

.mobile-menu__lang-link {
    padding-block: 8px;
    padding-left: 50px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-link-lang);
    position: relative;
}

.mobile-menu__lang-link::before {
    content: '';
    position: absolute;
    left: 12px;
    width: 30px;
    height: 24px;
    background-size: cover;
    background-repeat: no-repeat;
}

.mobile-menu__link {
    padding: 12px;
    display: flex;
    height: 44px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--card-color);
}

@media (any-hover: hover) {
    .mobile-menu__link:hover, .mobile-menu__lang-link:hover {
        background-color: var(--bg-accordion);
    }
}
.mobile-menu__link--active {
    font-weight: 600;
    color: var(--blue-color);
}

.mobile-menu__link:active, .mobile-menu__lang-link:active {
    background-color: var(--bg-accordion);
}


@media (max-width: 1439px) {
    .header-position {
        z-index: 501;
    }

    .header-inner {
        height: var(--header-height-mob);
    }

    .hero {
        padding-top: 60px;
    }

    .hero__top {
        margin-left: 40px;
        margin-bottom: 16px;
    }

    .hero__title {
        font-size: 40px;
        max-width: 304px;
    }

    .hero__faster, .hero__circle {
        display: none;
    }
    .hero__slogan {
        display: block;
    }

    .hero__bottom {
        flex-direction: column;
        row-gap: 38px;
        align-items: start;
    }

    .hero__platforms {
        margin-left: 40px;
    }

    .hero__platforms-container {
        padding: 6px 20px;
        height: 50px;
        gap: 10px;
        flex-shrink: 0;
    }

    .hero__platforms-link {
        padding: 8px;
        width: 40px;
    }

    .hero__bottom-bg {
        margin: 0 auto;
        width: calc(100% - 160px);
        max-width: 900px;
        border-radius: 10px;
    }

    .hero__flamingo {
        right: -80px;
        bottom: 99%;
        width: 395px;
        height: 316px;
    }

    .shape {
        top: 0;
    }
    .shape img {
        object-fit: cover;
        object-position: bottom;
    }

    .download-btn--big {
        padding: 16px 24px;
        min-width: 275px;
        height: var(--button-height-big-mob);
        font-size: 16px;
        box-shadow: 0 1.924px 1.924px 0 rgba(0, 0, 0, 0.25);
    }
    .hero__platforms .download-btn--big {
        margin: 0;
    }

    .benefits__bg-container {
        top: -308px;
        max-height: 828px;
        transform: scaleY(.6);
    }

    .benefits__body {
        margin-top: 60px;
        margin-bottom: 80px;
        row-gap: var(--card-gap-mob);
    }

    .benefits__card-container {
        width: 100%;
        gap: var(--card-gap-mob);
    }

    .benefits__card {
        padding: var(--paddinx-x-mob);
        max-width: none;
        width: calc(50% - var(--card-gap-mob));
        column-gap: var(--paddinx-x-mob);
    }

    .benefits__card-icon {
        width: 42px;
        height: 42px;
    }

    .benefits__card-icon svg {
        width: inherit;
        height: inherit;
    }

    .icon-protection {
        height: 52px;
    }

    .benefits__card-divider {
        width: 2px;
        height: 48px;
    }

    .benefits__card-title, .benefits__card-descr {
        font-size: 18px;
    }

    .benefits__title {
        font-size: 28px;
    }
    .benefits__descr {
        font-size: 16px;
    }

    .benefits__download {
        padding: 0;
    }

    .questions__title {
        margin-bottom: 24px;
        padding: 0;
        text-align: center;
        font-size: 28px;
    }

    .questions__container {
        margin-bottom: 60px;
        padding-block: 0;
    }
    .questions__container::before {
        display: none;
    }

    .questions__accordion {
        padding: 0;
    }

    .accordion__title, .accordion__content-text {
        font-size: 18px;
    }
    .accordion__item {
        padding: 12px 12px 12px 20px;
    }

    .accordion__content-text {
        margin: 0;
    }

    .accordion__title {
        padding-block: 8px;
    }

    .accordion__icon {
        width: 34px;
    }

    .accordion__icon svg {
        width: 20px;
        height: 20px;
        stroke-width: 4px;
    }

    .footer__logo {
        width: 40px;
        height: 40px;
    }
    .footer__logo img {
        height: 100%
    }

}

@media (min-width: 1025px) {
    .visible-tablet {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .header__logo {
        margin-right: auto;
    }
    .header__menu-container {
        margin: 0 0 0 16px;
        order: 1;
    }

    .footer__container {
        padding-top: 24px;
        padding-bottom: 20px;
    }
    .footer__top {
        /*flex-direction: column;*/
        row-gap: 40px;
        column-gap: 60px;
        flex-wrap: wrap;
    }

    .footer__body {
        column-gap: 60px;
    }

    .footer__support {
        align-items: start;
        row-gap: 40px;
    }
    .footer__support-container {
        column-gap: 10px;
    }

    .footer__lang {
        order: 1;
    }

    .footer__nav-item {
        padding-right: 48px;
    }

    .hidden-tablet {
        display: none !important;
    }
}


@media (max-width: 900px) {
    .benefits__bg-container {
        max-height: 544px;
        top: -118px;
        transform: scaleY(.75);
    }
}

@media (min-width: 768px) {
    .visible-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero__top {
        margin: 0 0 112px 0;
    }

    .hero__title {
        max-width: 230px;
    }
    .hero__slogan {
        max-width: 250px;
    }

    .hero__platforms {
        margin: 0;
        order: 1;
    }

    .hero__bottom {
        margin-inline: -16px;
        padding-inline: var(--paddinx-x-mob);
        align-items: center;
        row-gap: 24px;
        overflow-x: clip;
    }

    .hero__bottom-bg {
        width: 100%;
    }
    .hero__flamingo {
        right: -140px;
    }

    .benefits__body {
        margin: 40px 0;
    }

    .benefits__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .benefits__descr {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .benefits__bg-container {
        max-height: 620px;
        top: -44px;
        transform: scaleY(.85);
    }

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

    .benefits__card {
        width: 100%;
    }

    .benefits__card-title, .benefits__card-descr {
        font-size: 16px;
    }

    .benefits__download {
        margin-bottom: 40px;
    }

    .questions__title {
        margin-bottom: 16px;
    }

    .accordion__title {
        font-size: 16px;
        margin-right: 44px;
    }

    .accordion__content-text {
        /*padding: 4px 0 0 0;*/
        padding: 0;
        font-size: 16px;
    }

    .footer__container {
        padding-block: 16px;
    }

    .footer__top {
        flex-direction: column;
        row-gap: 16px;
        margin-bottom: 24px;
    }

    .footer__body {
        flex-direction: column;
        align-items: start;
    }

    .footer__logo {
        margin-bottom: 16px;
    }

    .footer__support {
        flex-direction: column;
        align-items: stretch;
        row-gap: 16px;
    }

    .footer__support-container {
        flex-direction: column;
        row-gap: 16px;
    }

    .footer__bottom {
        flex-direction: column;
        row-gap: 8px;
        align-items: start;
    }
    .footer__lang {
        width: max-content;
    }

    .hidden-mobile {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .benefits__bg-container {
        top: -28px;
        transform: scaleY(.88);
    }

    .benefits__title {
        max-width: 280px;
    }
}