/* Указываем box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
    padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
form,
dd {
    margin: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 156px;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
    list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
    max-width: 100%;
    display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
    margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
    font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --font-76: 76px;
    --font-60: 60px;
    --font-40: 40px;
    --font-24: 24px;
    --font-20: 20px;
    --font-18: 18px;
    --font-16: 16px;
}

html,
body {
    height: 100%;
    background: #F2F3F7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid;
    border-color: transparent;
    transition: border-bottom 0.25s, background-color 0.25s;
}

header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid;
    border-color: rgba(133, 143, 156, 0.3);;
    height: 116px;
    padding-top: 24px;
    width: 100%;
    transition: border-color 0.25s, background-color 0.25s;
}

header.scrolled {
    background-color: #F2F3F7;
    border-color: rgba(133, 143, 156, 0.3);

}
header.scrolled > .container {
    border-bottom: 1px solid transparent;
}

main {
    height: auto;
    width: 100%;
    /* max-width: 1920px; */
    margin: 0 auto;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.button-link {
    display: flex;
    width: 200px;
    height: 65px;
    padding: 0px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--logo-color, #20395F);
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--logo-color, #20395F);
    cursor: pointer;
    transition: all 0.25s;
}

.button-link:hover {
    background: var(--logo-color, #20395F);
    color: var(--Primary-white, #FEFEFE);
}

.button-link.button-link--reversed {
    background: var(--logo-color, #20395F);
    color: var(--Primary-white, #FEFEFE);
}

.button-link.button-link--reversed:hover {
    background: var(--Primary-Blue, #0B63E5);
    border-color: #0B63E5;
}

.button-link.button-link--white {
    background: var(--Primary-white, #FEFEFE);
    color: var(--logo-color, #20395F);
    border: 2px solid var(--Primary-white, #FEFEFE);
}

.button-link.button-link--white:hover {
    color: var(--Primary-white, #FEFEFE);
    background: var(--Secondary-blue, #CEE0FA);
    border: 2px solid var(--Secondary-blue, #CEE0FA);
}

.button-link.button-link--full-w {
    width: 100%;
}

.button-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(133, 143, 156, 0.20);
    cursor: pointer;
}

.section-title {
    color: var(--Secondary-black, #051733);
    text-align: center;
    font-family: Inter;
    font-size: var(--font-60);
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.2px;
}

.section-title span {
    color: var(--Primary-Blue, #0B63E5);
}

.section-subtitle {
    padding-top: 32px;
    color: var(--Body-text, #858F9C);
    text-align: center;
    /* Subtitle 1 */
    font-family: Inter;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

.form-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 568px;
    width: 100%;
}

.form__input-container {
    width: 100%;
    position: relative;
}

.form__input-container input:focus + label::before, .form__input-container input:not(:placeholder-shown) + label::before {
    font-size: 13px;
    top: 12px;
}

.form__input-container label::before {
    content: attr(title);
    position: absolute;
    top: 22px;
    left: 24px;
    line-height: 20px;
    color: var(--Body-text, #858F9C);
    font-size: 16px;
    transition: 300ms all;
}

.form__input-container .form__input {
    padding: 24px 24px 0 24px;
}

.form__input-container input:not(:placeholder-shown) + label::before {
    content: attr(title);
}

.form__input {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    height: 65px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px;
    justify-content: space-between;
    border: 1px solid #CEE0FA;
}

.form__input:focus {
    border: 1px solid var(--Primary-Blue, #0B63E5);
}

.form__input::placeholder {
    color: var(--Body-text, #858F9C);
    font-size: var(--font-16);
}

.form__label {
    margin-bottom: 20px;
    color: var(--Secondary-black, #051733);
    text-align: center;
    font-family: Inter;
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
}

.modal {
    position: fixed;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    color: #dce1e5;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: scroll;
    overscroll-behavior: contain;
}

@supports (min-height: -webkit-fill-available) {
    .modal {
        min-height: -webkit-fill-available;
    }
}

@supports (backdrop-filter: blur(10px)) {
    .modal {
        backdrop-filter: blur(10px);
        background: #DFE0E3BF;
    }
}

@supports (-webkit-backdrop-filter: blur(10px)) {
    .modal {
        -webkit-backdrop-filter: blur(10px);
        background: #DFE0E3BF;
    }
}

body.modal-open {
    scrollbar-gutter: stable;
    overflow-y: hidden;
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

.modal__close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    outline: none;
    background: none;
    border: none;
    color: #dce1e5;
    cursor: pointer;
    transition: transform, 0.25s;
}

.modal__close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 15px;
    width: 15px;
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform, 0.25s;
    transform: rotate(45deg);
}

.modal__close-button:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #051733;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal__close-button:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #051733;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.25s;
}

.modal__close-button:hover {
    transform: rotate(135deg);
}

.modal__content {
    position: relative;
    width: 900px;
    height: 500px;
    flex-shrink: 0;
    border-radius: 24px;
    border: 1px solid rgba(11, 99, 229, 0.30);
    box-shadow: 0px 7px 80px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
    gap: 10px;
    background-color: var(--Secondary-white, #FAFBFF);
    background: url(/img/bg-modal-d.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.modal__content .section-title {
    font-size: 50px;
}

.okay-btn {
    margin-top: 32px;
}

.toaster-ui-lib-container {
    top: initial !important;
    bottom: 0 !important;
}

.header-logo {
    height: 52px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.header-nav .button-link {
    height: 52px;
}

.header-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;

}

.header-nav__list > li {
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 94px;
}

.header-nav__list > li > a {
    text-decoration: none;
    color: var(--Text-2, #858F9C);
    /* Text 1 */
    font-family: Inter;
    font-size: var(--font-16);
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
}

.header-nav__list > li:hover {
    border-color: #0B63E5
}

.header-nav__list > li:hover > a {
    color: #0B63E5
}

.section-1 {
    /* min-height: 100vh; */
    /* height: 100%; */
    height: auto;
    width: 100%;
    background: url(/img/bg-first-screen.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 116px 0 160px;
}

.section-1-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    padding-top: 108px;
}

.section-1-content__art {
    width: 50%;
}

.section-1-content__art > img {
    height: auto;
    max-height: 100%;
    width: auto;
}

.section-1-content__text > h1 {
    font-family: Inter;
    font-size: var(--font-76);
    color: var(--Secondary-black, #051733);
    font-weight: 700;
    line-height: 80px;
    letter-spacing: -0.02em;
    text-align: left;
}

.section-1-content__text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    max-width: 724px;
}

.section-1-content__text > h1 > span {
    color: #0B63E5;
}

.section-1-content__text > p {
    font-family: Inter;
    font-size: var(--font-24);
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #051733
}

.section-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(/img/bg-2.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 502px;
    margin-top: 140px !important;
    margin-bottom: 200px !important;
    border: 1px solid #CEE0FA;
    box-shadow: 0px 7px 60px 0px rgba(0, 0, 0, 0.07);
    border-radius: 24px;
    padding: 32px;
}

.section-2-art {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 665px;
    width: 100%;
    height: 438px;
    border-radius: 24px;
    background: url(/img/art-2.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.section-2-art > h2 {
    color: var(--Secondary-blue, #CEE0FA);
    /* Headline 2 */
    font-family: Inter;
    font-size: var(--font-60);
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.2px;
}

.section-2-art > h2 > span {
    color: var(--Primary-white, #FEFEFE);
}

.section-2-art > h2 > sup {
    color: var(--Primary-white, #FEFEFE);
    /* Headline 4 */
    font-family: Inter;
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
}

.section-3 {
    margin-top: 140px !important;
    min-height: 1000px;
    background: url(/img/bg-third-screen.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.section-3__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(336px, 1fr));
    padding: 70px 0 200px;
}

.section-3__benefit {
    width: 336px;
    height: 351px;
    padding: 32px 60px 52px 32px;
    border-radius: 12px;
    background: var(--Tretiary-white, #FDFDFD);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 91px;
}

.section-3__benefit-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-3__benefit-title {
    color: var(--Secondary-black, #051733);
    font-family: Inter;
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.48px;
}

.section-3__benefit-description {
    color: var(--Body-text, #858F9C);
    /* Text 1 */
    font-family: Inter;
    font-size: var(--font-16);
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
}

.section-3__step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.section-3__step > img {
    max-width: 700px;
    height: auto;
}

.section-3__step-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;

}

.section-3__step-info > div {
    color: var(--Primary-Blue, #0B63E5);
    font-family: Inter;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
    display: flex;
    width: 108px;
    height: 38px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 2px solid var(--Primary-Blue, #0B63E5);
    background: rgba(81, 151, 255, 0.05);
}

.section-3__step-info > h6 {
    color: var(--Secondary-black, #051733);
    /* Headline 3 */
    font-family: Inter;
    font-size: var(--font-40);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.8px;
}

.section-4 {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 0;
    padding: 400px 0 0;
}
.section-4 .blue-line {
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: rotate(-2deg) translate(-50%, -50%);
    z-index: 2;
    font-family: Inter;
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #FEFEFE;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 16px;
    padding: 25px 0;
    background: linear-gradient(0deg, #0B63E5, #0B63E5), radial-gradient(143.49% 618.08% at 48.99% 49.19%, rgba(57, 219, 255, 0.45) 0%, rgba(57, 219, 255, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

}
.section-4 .white-line {
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: rotate(2deg) translate(-50%, -50%);
    z-index: 1;
    font-family: Inter;
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: rgba(30, 32, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 16px;
    padding: 25px 0;
    background: #FEFEFE;


}
.section-4 .white-line img {
    opacity: 0.2;
}
.section-5 {
    background: url(/img/bg-5.png);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.countries-collapse {
    margin-top: 70px;
    margin-bottom: 200px;
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--Secondary-blue, #CEE0FA);
    background: var(--Secondary-white, #FAFBFF);
    box-shadow: 0px 7px 60px 0px rgba(0, 0, 0, 0.07);
    color: var(--logo-color, #20395F);
    /* Button text 1 */
    font-family: Inter;
    font-size: var(--font-16);
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 250% */
    letter-spacing: -0.32px;
    text-transform: capitalize;
}

.countries-grid {
    height: 200px;
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
    padding: 40px 40px 32px;
    gap: 44px 12px;
    overflow: hidden;
}

.countries-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(206, 224, 250, 0.65);
    height: 93px;
    cursor: pointer;
}

.countries-in-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    padding-top: 8px;
    color: var(--Body-text, #858F9C);

    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.countries-more-btn .expand-button {
    border-radius: 8px;
    background: rgba(32, 57, 95, 0.10);
    margin-left: 12px;
    transition: transform 0.25s;
    display: flex;
    width: 40px;
    height: 34px;
    padding: 10px;
    justify-content: center;
    align-items: center;
}

.countries-more-btn .expand-button > img {
    transition: transform 0.25s;
}

.countries-more-btn:hover .expand-button {
    transform: scale(1.05);
}

.countries-grid.opened {
    height: auto;
}

.countries-more-btn.opened .expand-button > img {
    transform: rotate(180deg)
}

.country-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.country-item__flag {
    height: 40px;
    width: 53.5px;
    border-radius: 5px 0px 0px 5px;
    overflow: hidden;
}

.country-item__flag > img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.country-item__name {
    background: #E2EEFF;
    height: 40px;
    width: 122px;
    border-radius: 0px 5px 5px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Secondary-black, #051733);
    font-family: Inter;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
}

.stay-informed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    border: 1px solid var(--Secondary-blue, #CEE0FA);
    background: var(--Secondary-white, #FAFBFF);
    box-shadow: 0px 7px 60px 0px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    margin-top: 70px;
    margin-bottom: 200px;
}

.stay-informed > img {
    max-width: 623px;
    height: auto;
    width: 100%;
}

.stay-informed__text {
    max-width: 500px;
    margin: 0 auto;
}

.stay-informed__text h6 {
    color: var(--Secondary-black, #051733);
    /* Headline 4 */
    font-family: Inter;
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
    margin-bottom: 16px;
}

.stay-informed__text p {
    color: var(--Body-text, #858F9C);
    /* Text 1 */
    font-family: Inter;
    font-size: var(--font-16);
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
    margin-bottom: 32px;
}

.section-6 {
    margin-bottom: 200px;
}

.plans {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin-top: 110px;
}

.subscription-plan {
    border-radius: 24px;
    border: 1px solid var(--Secondary-blue, #CEE0FA);
    background-color: var(--Tretiary-white, #FDFDFD);
    background: radial-gradient(at 120% -10%, #CEE0FA80 0%, #CEE0FA00 60%);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 100px;
    padding: 64px 72px;
    max-width: 460px;
}

.subscription-plan__title {
    color: var(--Secondary-black, #051733);
    text-align: center;
    /* Headline 4 */
    font-family: Inter;
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
}

.subscription-plan__title p {
    margin-top: 32px;
    color: var(--Secondary-black, #051733);
    /* Headline 2 */
    font-family: Inter;
    font-size: var(--font-60);
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 100% */
    letter-spacing: -1.2px;
}

.subscription-plan__title sup {
    color: var(--Body-text, #858F9C);
    text-align: center;
    /* Subtitle 1 */
    font-family: Inter;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-left: 5px;
}

.subscription-plan__options p {
    color: var(--Body-text, #858F9C);
    text-align: center;
    /* Subtitle 1 */
    font-family: Inter;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
}

.subscription-plan__options p:first-of-type {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--Secondary-blue, #CEE0FA);
}

.subscription-plan__options p:not(.subscription-plan__options p:first-of-type, .subscription-plan__options p:last-of-type) {
    padding: 20px 0;
    border-bottom: 1px solid var(--Secondary-blue, #CEE0FA);
}

.subscription-plan__options p:last-of-type {
    padding-top: 20px;
}

.subscription-plan.subscription-plan--favorite {
    position: relative;
    top: -20px;
    background: url('/img/art-7.png'), radial-gradient(54.38% 93.56% at 28.68% 77.38%, rgba(57, 219, 255, 0.30) 0%, rgba(57, 219, 255, 0.00) 100%), radial-gradient(104.02% 104.02% at 50% -2.09%, rgba(255, 255, 255, 0.30) 0%, rgba(0, 0, 0, 0.00) 100%), #0B63E5;
    box-shadow: 0px 10px 40px 0px rgba(14, 97, 218, 0.35);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.subscription-plan.subscription-plan--favorite > .subscription-plan__title {
    color: var(--Primary-white, #FEFEFE);
}

.subscription-plan.subscription-plan--favorite > .subscription-plan__title p {
    color: var(--Primary-white, #FEFEFE);
}

.subscription-plan.subscription-plan--favorite > .subscription-plan__title sup {
    color: var(--Primary-white, #FEFEFE);
}

.subscription-plan.subscription-plan--favorite > .subscription-plan__options p {
    color: var(--Secondary-blue, #CEE0FA);
}


.section-7 {
    margin-bottom: 140px;
}

.accordion {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 70px;
}

.accordion__item {
    width: 100%;
    padding: 20px 40px;
    border-radius: 12px;
    border: 1px solid var(--Secondary-blue, #CEE0FA);
    background: var(--Tretiary-white, #FDFDFD);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}

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

.accordion__item-title {
    color: var(--Secondary-black, #051733);
    /* Desktop/Headline 4 */
    font-family: Inter;
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
}

.accordion__item.opened .accordion__item-title {
    color: var(--Primary-Blue, #0B63E5);
}

.accordion__item-plus {
    width: 28px;
    height: 28px;
    position: relative;
}

.accordion__item-plus:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #051733;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion__item-plus:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #051733;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.25s;
}

.accordion__item-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.25s;
}

.accordion__item.opened .accordion__item-plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__item.opened > .accordion__item-content {
    grid-template-rows: 1fr;
    margin-top: 12px;
}

.accordion__item-content > div {
    min-height: 0;
    color: var(--Body-text, #858F9C);
    /* Desktop/Text 1 */
    font-family: Inter;
    font-size: var(--font-16);
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
}

.section-8 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    border-top: 1px solid var(--Secondary-blue, #CEE0FA);
    background: url('/img/bg-8.png'), var(--Tretiary-white, #FDFDFD);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-8__art-desc {
    max-height: 694px;
    width: auto;
}

.section-8__art-mob {
    display: none;

    align-items: center;
    justify-content: center;
    width: 100%;
    height: 438px;
    border-radius: 24px;
    background: url(/img/art-2.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.section-8__art-mob > h2 {
    color: var(--Secondary-blue, #CEE0FA);
    /* Headline 2 */
    font-family: Inter;
    font-size: var(--font-60);
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.2px;
}

.section-8__art-mob > h2 > span {
    color: var(--Primary-white, #FEFEFE);
}

.section-9 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url('/img/bg-9.png');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 80px 20px 0px;
    margin: 0 12px 12px;
    width: auto;
}
.section-9 > h2 {
    color: var(--Secondary-blue, #CEE0FA);
    font-family: Inter;
    font-size: var(--font-60);
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.2px;
    text-align: center;
    padding-bottom: 32px;
}

.section-9 > h2 > span {
    color: var(--Primary-white, #FEFEFE);
}
.section-9__art-desc { margin-top: 50px;}
.section-9__art-mob { margin-top: 50px; display: none; }

@media screen and (max-width: 1439px) {
    :root {
        --font-76: 40px;
        --font-60: 30px;
        --font-40: 20px;
        --font-24: 18px;
        --font-20: 14px;
        --font-18: 16px;
        --font-16: 12px;
    }

    .container {
        max-width: 900px;
    }

    .header-logo {
        height: 32px;
    }

    .header-nav {
        gap: 20px;
    }

    .header-nav .button-links {
        display: flex;
        align-items: center;
    }

    .header-nav .button-link {
        height: 40px;
    }

    .header-nav__list {
        gap: 15px;
    }

    .header-nav__list > li > a {

    }

    .section-title {
        line-height: 36px;
    }

    .section-subtitle {
        padding-top: 16px;
        font-weight: 500;
        font-size: 16px;
    }

    .form__label {
        line-height: 18px;
        font-size: 16px;
    }

    .section-1 {
        padding: 96px 0 80px;
    }

    .section-1-content__text {
        max-width: 400px;
    }

    .section-1-content__text > h1 {
        line-height: 44px;
    }

    .section-1-content__text > p {
        line-height: 26px;
    }

    .section-2 {
        padding: 16px;
        height: 334px;
        margin-top: 70px !important;
        margin-bottom: 100px !important;
    }

    .section-2-art {
        height: 300px;
        min-width: 400px;
    }

    .section-2-art > h2 {
        line-height: 30px;
    }

    .section-3 {
        background-size: 100% 100%;
    }

    .section-3__benefits {
        grid-template-columns: repeat(auto-fill, minmax(213px, 1fr));
        gap: 16px;
        padding: 35px 0 100px;
        justify-items: center;
    }

    .section-3__benefit {
        width: 100%;
        height: auto;
        padding: 16px 30px 26px 16px;
        gap: 30px;
    }

    .section-3__benefit-img {
        max-width: 70px;
    }

    .section-3__steps {
        padding-bottom: 10px;
    }

    .section-3__step > img {
        max-width: 400px;
    }

    .section-3__step-info > h6 {

    }

    .section-4 {
        padding: 200px 0 0;
    }
    .section-4 .blue-line {
        font-size: 20px;
        padding: 10px 0;
    }
    .section-4 .white-line {
        font-size: 20px;
        padding: 10px 0;
    }

    .modal__content .section-subtitle {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .form__input::placeholder {
        font-size: 16px;
    }

    .countries-collapse {
        margin-top: 35px;
        margin-bottom: 80px;
    }

    .stay-informed {
        margin-top: 35px;
        margin-bottom: 80px;
    }

    .stay-informed > img {
        max-width: 400px;
    }

    .stay-informed__text {
        max-width: 400px;
        padding: 64px 10px 62px 10px;

    }

    .stay-informed__text h6 {
        margin-bottom: 8px;
        line-height: 18px;
        font-weight: 600;
    }

    .stay-informed__text p {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .countries-more-btn {
        height: 76px;
        font-size: 14px;
        font-weight: 700;
    }

    .subscription-plan {
        gap: 20px;
        padding: 32px 36px;
    }

    .subscription-plan__title p {
        margin-top: 16px;
        line-height: 36px;
    }

    .section-6 {
        margin-bottom: 83px;
    }

    .accordion {
        margin-top: 35px;
    }

    .section-7 {
        margin-bottom: 70px;
    }

    .section-8__art-desc {
        max-height: 500px;
    }

    .section-9 {
        padding-top: 46px;
    }
    .section-9 > h2 {
        font-family: Inter;
        font-weight: 700;
        font-style: Bold;
        font-size: 32px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
    }
    .button-social {
        width: 20px;
        height: 20px;
        padding: 6px;
        border-radius: 6px;
    }

    .modal__content {
        width: 500px;
    }

    .okay-btn {
        margin-top: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .section-8__art-desc {
        max-height: 400px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --font-76: 40px;
        --font-60: 30px;
        --font-40: 20px;
        --font-24: 18px;
        --font-20: 14px;
        --font-18: 16px;
        --font-16: 12px;
    }

    html {
        scroll-padding-top: 106px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .button-link {
        font-size: 14px;
        height: 52px;
    }

    .form__input-container input:focus + label::before, .form__input-container input:not(:placeholder-shown) + label::before {
        font-size: 12px;
        top: 6px;
    }

    .form__input-container label::before {
        top: 16px;
        left: 24px;
        line-height: 20px;
        font-size: 16px;
        font-weight: 500;
    }

    .form__input-container .form__input {
        padding: 18px 24px 0 24px;
    }

    header > .container {
        height: 76px;
        padding-top: 0;
    }
    
    .header-nav .button-link {
        height: 34px;
        width: 140px;

    }

    .header-nav__list {
        display: none;
    }

    .section-1 {
        padding: 76px 0 40px;
        background-image: url(/img/bg-first-screen-m.png);
        background-position: bottom center;
    }

    .section-1-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding-top: 44px;
    }

    .section-1-content__text {
        max-width: 100%;
    }

    .section-1-content__text > p {
        font-size: 16px;
    }

    .section-1-content__art {
        width: auto;
    }

    .section-2 {
        margin-top: 40px !important;
        margin-bottom: 80px !important;
        margin-left: 16px;
        margin-right: 16px;
        flex-direction: column;
        height: auto;
        gap: 24px;
    }

    .section-2-art {
        height: 240px;
        min-width: 311px;
    }

    .section-2-art > h2 {
        font-size: 32px;
        line-height: normal;
    }

    .section-3__benefit {
        padding: 20px;
    }

    .section-3__benefit-img {
        max-width: 52px;
    }

    .section-3__benefit-title {
        font-weight: 600;
    }

    .section-3__benefit-description {
        font-size: 16px;
    }

    .section-3__steps > .section-subtitle {
        margin-bottom: 32px;
    }

    .section-3__steps-container {
        border-radius: 24px;
        border: 1px solid var(--Secondary-blue, #CEE0FA);
        background: var(--Secondary-white, #FAFBFF);
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .section-3__step {
        flex-direction: column-reverse;
        gap: 0;
    }

    .section-3__step-info {
        gap: 12px;
        padding-left: 30px;
        padding-right: 30px;
        width: 100%;
    }

    .section-3__step-info > h6 {
        font-size: 18px;
    }

    .section-3__step-info > div {
        width: 64px;
        height: 24px;
        border-radius: 8px;
        border: 2px solid var(--Primary-Blue, #0B63E5);
        background: rgba(81, 151, 255, 0.05);

    }

    .section-3__step > img {
        max-width: none;
        width: 100%;
    }

    .stay-informed {
        flex-direction: column;
        margin-bottom: 80px;
    }

    .stay-informed > img {
        max-width: 100%;
    }

    .stay-informed__text {
        padding: 24px 24px 28px;
        max-width: 100%;
    }

    .plans {
        margin-top: 32px;
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .subscription-plan.subscription-plan--favorite {
        top: 0;
    }

    .countries-in-progress {
        padding-bottom: 24px;
        padding-top: 0;

        font-size: 14px;
    }

    .section-8 {
        flex-direction: column;
        padding-left: 16px;
        padding-right: 16px;
        gap: 24px;
    }

    .section-8__art-desc {
        display: none;
    }

    .section-8__art-mob {
        display: flex;
        max-height: 240px;
        padding: 62px 54px;
    }

    .section-8__art-mob > h2 {
        font-size: 32px;
        line-height: normal;
        letter-spacing: normal;
    }

    .stay-informed__text h6 {
        margin-bottom: 16px;
    }

    .subscription-plan {
        width: 100%;
        max-width: none;
        height: 100%;
    }

    .section-9__art-desc {
        display: none;
    }
    .section-9__art-mob {
        display: block;
    }


    .subscription-plan > .button-link {
        margin-top: auto;
    }

    .button-link-fullwidth-mobile {
        width: 100%;
    }

    .form__label {
        margin-bottom: 16px;
    }

    .form__input {
        height: 52px;
        border-radius: 12px;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .accordion__item-title {
        line-height: 20px;
        font-size: var(--font-18);
        font-weight: 600;
    }

    .accordion__item-content > div {
        font-size: var(--font-18);
        font-weight: 500;
    }

    .countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        padding: 24px;
        height: 416px;
        gap: 16px 12px;
    }

    .countries-more-btn .expand-button {
        width: 36px;
        margin-left: 10px;
    }

    .button-social {
        width: 32px;
        height: 32px;
        padding: 8px;
    }

    .modal__content {
        width: 343px;
        background-color: var(--Secondary-white, #FAFBFF);
        background-image: url(/img/bg-modal-m.png);
    }

    .modal__content .section-title {
        font-size: 22px;
        font-weight: 600;
        line-height: normal;
    }
}

@media screen and (max-width: 475px) {
    .section-3__benefits {
    }

    .section-3__benefit {
        width: 100%;
        height: auto;
        gap: 24px;
    }

    .section-3__benefit-info {
        gap: 12px;
    }

    .plans {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

@media screen and (min-width: 1921px) {
    .section-3 {
        background-size: 100% 90%;
    }

    .section-4 {
        padding: 600px 0 0;
    }

    .section-5 {
        background-size: auto 100%;
    }

    .section-8 .form-container {
        width: auto;
        min-width: 670px;
        margin: 0 50px;
    }

    .section-8__art-desc {
        display: none;
    }

    .section-8__art-mob {
        display: flex;
        max-width: 670px;
    }
}
