html {
    height: 100%;
    -webkit-box-sizing: border-box;
        box-sizing: border-box;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
        box-sizing: inherit;
    transition: .2s;
    transition-property: opacity, color, background-color;
}
  
body {
    margin: 0;
    height: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: #0B1C1B;
    line-height: 1.4;
    min-width: 350px;
    background-color: #EEEDEB;
}
  
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

input,
textarea,
select,
button {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
    outline: none;
}
  
a {
    text-decoration: none;
    cursor: pointer;
    color: #19D98D;
}
  
a:hover {
    opacity: .7;
    text-decoration: none;
    color: #19D98D;
}
  
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

ul, ol, li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

button {
    padding: 0;
    cursor: pointer;
}

img {
    display: block;
}
  
table {
    border-collapse: collapse;
}

.clean-btn {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.btn {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-color: #19D98D;
    border-radius: 72px;
    padding: 0 28px;
    display: inline-flex;
    height: 56px;
    align-items: center;
    justify-content: center;
    color: #050711;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.btn:hover {
    color: #050711;
    opacity: .7;
}

.__hide {
    display: none;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pagination-item a,
.pagination-item span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.pagination-item a:hover {
    color: #000000;
}

.pagination-item_active a {
    color: #000000 !important;
}

.pagination-item_next a {
    display: flex;
    align-items: center;
    width: auto;
}

.pagination-item_next small {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
}

.pagination-item_next img {
    width: 24px;
    height: 24px;
}

.pagination-item_next.disabled {
    display: none;
}

.pagination-item_prev a {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: auto;
}

.pagination-item_prev small {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
}

.pagination-item_prev img {
    width: 24px;
    height: 24px;
    transform: rotate(180deg);
}

.pagination-item_prev.disabled {
    display: none;
}

.form-loading {
    position: relative;
}

.form-loading > * {
    visibility: hidden;
}

.form-loading:after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

@media (max-width: 992px) {
    .btn {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .pagination-list {
        gap: 6px;
    }

    .pagination-item_prev small,
    .pagination-item_next small {
        display: none;
    }
}

/* ======= container ======== */

.ui-container {
    max-width: 1244px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1244px) {
    .ui-container {
        max-width: 992px;
    }
}

@media (max-width: 992px) {
    .ui-container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .ui-container {
        padding: 0 16px;
    }
}

/* ======= alert ======== */

.alert-js {
    position: fixed;
    right: 16px;
    top: 16px;
    max-width: 700px;
    min-height: 50px;
    padding: 16px 20px;
    border-radius: 6px;
    background-color: #0d6efd;
    font-size: 14px;
    padding-right: 50px;
    color: #FFFFFF;
    z-index: 1060;
    display: none;
    transition: 0;
}

.alert_danger {
    background-color: #dc3545;
}

.alert_success {
    background-color: #198754;
}

.alert-js__close {
    position: absolute;
    right: 12px;
    top: 14px;
    cursor: pointer;
    color: #FFFFFF;
}

.alert-js__close svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .alert-js {
        max-width: none;
        left: 16px;
    }
}

/* ======= header ======= */

.main-wrapper {
    background-color: #EEEDEB;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.main-content {
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
    padding-bottom: 80px;
}

.main-content__inner {
    position: relative;
    z-index: 1;
}

.header {
    position: relative;
    z-index: 4;
}

.header-menu {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.header-menu__logo img {
    width: 125px;
}

.header-menu__btn {
    width: auto;
    padding: 0 20px;
    height: 46px;
}

.header-menu__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 18px;
}

.header-menu__nav-link {
    font-size: 14px;
    line-height: 136%;
    font-weight: 500;
    color: #FFFFFF;
}

.header-menu__nav-link:hover {
    color: #14DF8E;
    opacity: 1;
}

.header-menu__nav-link.dropdown-toggle:after {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    content: "";
    border: none;
    width: 10px;
    height: 6px;
    background: url("../img/header/dropdown-arrow-white.svg") center no-repeat;
    opacity: 0.5;
}

.header-menu__nav-dropdown {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-menu__nav-dropdown .dropdown-item {
    padding: 8px 15px;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    color: #0B1C1B;
    cursor: pointer;
}

.header-menu__burger {
    display: none;
}

.header-menu__burger-icon {
    width: 46px;
    height: 46px;
    cursor: pointer;
    background: url("../img/header/burger-light.svg") center no-repeat;
}

.header-burger-dropdown {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: #1D1B20;
    padding: 13px 16px 16px;
    overflow: auto;
}

.header-burger-dropdown__container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.header-burger-dropdown_active {
    display: block;
}

.header-burger-dropdown__close {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 10px;
    right: 16px;
    cursor: pointer;
    background: url("../img/header/close-light.svg") center no-repeat;
    background-size: 16px;
}

.header-burger-dropdown__nav-list {
    margin-top: 40px;
    flex-grow: 1;
    overflow: auto;
}

.header-burger-dropdown__nav-item:not(:last-child) {
    margin-bottom: 24px;
}

.header-burger-dropdown__nav-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}

.header-burger-dropdown__control {
    margin-top: 40px;
}

.header-burger-dropdown__header img {
    width: 125px;
}

.header-burger-dropdown__item-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}

.header-burger-dropdown__item-title::after {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    content: "";
    border: none;
    width: 10px;
    height: 6px;
    background: url("../img/header/dropdown-arrow-white.svg") center no-repeat;
}

.header-burger-dropdown__nav-item_active .header-burger-dropdown__item-title::after {
    transform: rotate(180deg);
}

.header-burger-dropdown__item-list {
    display: none;
    margin-top: 16px;
    padding-left: 16px;
}

.header-burger-dropdown__nav-item_active .header-burger-dropdown__item-list {
    display: block;
}

.header-burger-dropdown__item-link {
    display: block;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
}

.header-burger-dropdown__item-link:last-child {
    margin-bottom: 0;
}

.header-menu__login {
    margin-right: 18px;
}

.header-menu__lang {
    margin-right: 18px;
}

.header-menu__lang-selected {
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    color: #0B1C1B;
    text-transform: uppercase;
    cursor: pointer;
}

.header-menu__lang-selected:hover {
    opacity: 0.7;
    text-decoration: none;
    color: #0B1C1B;
}

.header-menu__lang-selected img {
    height: 24px;
}

.header-menu__lang-selected.dropdown-toggle:after {
    display: none;
}

.header-menu__lang-switch {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-menu__lang-switch img {
    height: 24px;
}

@media (max-width: 1244px) {
    .header-menu__nav-item_desktop {
        display: none;
    }
}

@media (max-width: 992px) {
    .header-menu__nav {
        gap: 12px;
    }

    .header-menu__login {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 0;
    }

    .header-menu {
        padding-top: 10px;
    }

    .header-menu__nav,
    .header-menu__control {
        display: none;
    }

    .header-menu__btn {
        width: 100%;
    }

    .header-menu__logo img {
        width: 125px;
    }

    .header-menu__burger {
        display: block;
    }

    .header-menu__lang {
        margin-left: auto;
        margin-right: 8px;
    }

    .header-menu__lang-selected img {
        height: 28px;
    }
}

/* ======= footer ======= */

.footer {
    width: 100%;
    padding: 32px 0 12px;
}

.footer__top {
    display: flex;
    justify-content: center;
}

.footer__logo {}

.footer__logo img {
    width: 110px;
}

.footer__menu {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer__menu-link {
    font-size: 14px;
    line-height: 135%;
    font-weight: 500;
    color: #1D1B20;
    opacity: 0.6;
}

.footer_light .footer__menu-link {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .footer {
        padding: 0 0 24px;
    }

    .footer__menu {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer__menu-link {
        font-size: 12px;
    }
}

/* ======= packages-header ======= */

.packages-header {
    background-color: #1D1B20;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.packages-header::after {
    content: '';
    position: absolute;
    width: 852px;
    height: 673px;
    background: url("../img/land-packages/header-bg.webp") center no-repeat;
    background-size: contain;
    right: 0;
    bottom: 0;
}

.packages-header__content {
    max-width: 645px;
    min-height: 660px;
    padding-top: 80px;
    padding-bottom: 116px;
    position: relative;
    z-index: 3;
}

.packages-header__subtitle {
    font-size: 20px;
    line-height: 135%;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.5;
}

.packages-header__title {
    margin-top: 12px;
    font-size: 44px;
    line-height: 110%;
    font-weight: 600;
    color: #FFFFFF;
}

.packages-header__title span {
    color: #19D98D;
}

.packages-header__trust {
    margin-top: 18px;
    padding: 12px;
    display: inline-flex;
    gap: 8px;
    font-size: 14px;
    line-height: 135%;
    font-weight: 500;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.packages-header__trust img {
    width: 18px;
}

.packages-header__control {
    margin-top: 74px;
}

.packages-header__control img {
    width: 232px;
    margin-top: 16px;
}

.packages-header__btn {
    width: 232px;
}

@media (max-width: 1244px) {
    .packages-header::after {
        width: 852px;
        height: 473px;
        background: url("../img/land-packages/header-bg.webp") right center no-repeat;
        background-size: contain;
    }
}

@media (max-width: 992px) {
    .packages-header::after {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .packages-header {
        border-radius: 0 0 24px 24px;
    }

    .packages-header::after {
        width: 100%;
        opacity: 0.8;
        background: url("../img/land-packages/header-bg.webp") right bottom no-repeat;
        background-size: contain;
    }

    .packages-header__content {
        padding-top: 24px;
        padding-bottom: 300px;
    }

    .packages-header__subtitle {
        font-size: 16px;
    }

    .packages-header__title {
        margin-top: 12px;
        font-size: 32px;
    }

    .packages-header__trust {
        padding: 14px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .packages-header__control {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .packages-header__btn {
        width: 100%;
    }
}

/* ======= packages-features ======= */

.packages-features {
    margin-top: 32px;
}

.packages-features__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.packages-features__item {
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 24px 24px 24px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.packages-features__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(25, 217, 141, 0.1);
}

.packages-features__value {
    font-size: 34px;
    line-height: 100%;
    font-weight: 600;
    color: #050711;
}

.packages-features__label {
    margin-top: 4px;
    font-size: 14px;
    line-height: 135%;
    font-weight: 600;
    color: #1D1B20;
}

@media (max-width: 1244px) {
    .packages-features__value {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .packages-features__list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .packages-features {
        margin-top: 16px;
    }

    .packages-features__list {
        gap: 8px;
    }

    .packages-features__item {
        border-radius: 12px;
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        min-height: 137px;
    }

    .packages-features__icon {
        width: 40px;
        height: 40px;
    }

    .packages-features__icon img {
        width: 18px;
        height: 18px;
    }
}

/* ======= packages-profit ======= */

.packages-profit {
    margin-top: 106px;
}

.packages-profit__title {
    text-align: center;
    font-size: 40px;
    line-height: 120%;
    font-weight: 600;
    color: #1D1B20;
}

.packages-profit__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.packages-profit__item {
    border-radius: 18px;
    padding: 32px;
    padding-bottom: 290px;
    position: relative;
    overflow: hidden;
}

.packages-profit__item_stock {
    background-color: #19D98D;
}

.packages-profit__item_advice {
    background-color: #1D1B20;
}

.packages-profit__item_education {
    background-color: #FFFFFF;
}

.packages-profit__item-title {
    font-size: 24px;
    line-height: 110%;
    font-weight: 600;
    color: #1D1B20;
}

.packages-profit__item-desc {
    margin-top: 24px;
    font-size: 16px;
    line-height: 137%;
    font-weight: 600;
    color: #1D1B20;
    opacity: 0.5;
}

.packages-profit__item-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    min-width: 216px;
    border: 1px solid rgba(29, 27, 32, 0.3);
    padding: 0 16px;
    gap: 4px;
    font-size: 14px;
    line-height: 135%;
    font-weight: 600;
    color: #1D1B20;
    border-radius: 72px;
}

.packages-profit__item-img {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.packages-profit__item_advice .packages-profit__item-title {
    color: #FFFFFF;
}

.packages-profit__item_advice .packages-profit__item-desc {
    color: #FFFFFF;
}

.packages-profit__access-list {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.packages-profit__access-item {
    padding: 30px 24px;
    border-radius: 18px;
    background-color: #FFFFFF;
    display: flex;
    gap: 26px;
}

.packages-profit__access-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(25, 217, 141, 0.1);
}

.packages-profit__access-title {
    font-size: 24px;
    line-height: 110%;
    font-weight: 600;
    color: #1D1B20;
}

.packages-profit__access-desc {
    margin-top: 12px;
    font-size: 16px;
    line-height: 137%;
    font-weight: 600;
    color: #1D1B20;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .packages-profit__list {
        grid-template-columns: 1fr;
    }

    .packages-profit__item {
        padding-bottom: 250px;
    }

    .packages-profit__item-img {
        height: 290px;
        object-fit: contain;
        object-position: center bottom;
    }
}

@media (max-width: 768px) {
    .packages-profit {
        margin-top: 54px;
    }

    .packages-profit__title {
        font-size: 32px;
    }

    .packages-profit__list {
        margin-top: 24px;
    }

    .packages-profit__item {
        padding: 24px;
        padding-bottom: 249px;
    }

    .packages-profit__item-btn {
        width: 100%;
    }

    .packages-profit__item-img {
        object-position: top center;
        object-fit: cover;
    }

    .packages-profit__access-list {
        grid-template-columns: 1fr;
    }

    .packages-profit__access-item {
        padding: 24px;
        gap: 16px;
    }
}

/* ======= packages-prices ======= */

.packages-prices {
    margin-top: 106px;
}

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

.packages-prices__title {
    text-align: center;
    font-size: 40px;
    line-height: 110%;
    font-weight: 600;
    color: #1D1B20;
    max-width: 600px;
}

.packages-prices__discount {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #1D1B20;
    border-radius: 18px;
    padding: 14px;
    font-size: 24px;
    line-height: 110%;
    font-weight: 500;
    color: #FFFFFF;
    transform: rotate(-2.5deg);
    max-width: 600px;
}

.packages-prices__compare {
    margin-top: 50px;
    position: relative;
    padding: 24px;
    border-radius: 18px;
    background-color: #FFFFFF;
    overflow: auto;
}

.packages-prices__compare-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    margin-top: 50px;
    position: relative;
    padding: 24px;
    border-radius: 18px;
    background-color: #FFFFFF;
    overflow: auto;
}

.packages-prices__compare-loading::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: 5px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
    z-index: 3;
}

.packages-prices__table {
    width: 100%;
}

.packages-prices__table th {
    padding: 0 4px;
    vertical-align: top;
}

.packages-prices__table-head {
    min-width: 173px;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.packages-prices__table-head-title {
    font-size: 24px;
    line-height: 110%;
    color: #1D1B20;
    font-weight: 600;
    text-align: center;
}

.packages-prices__table-head-price {
    margin-top: 24px;
}

.packages-prices__table-head-price small {
    font-size: 18px;
    line-height: 100%;
    color: #1D1B20;
    font-weight: 500;
    text-align: center;
    display: block;
    margin-bottom: 8px;
    opacity: 0.5;
    text-decoration: line-through;
}

.packages-prices__table-head-price span {
    font-size: 32px;
    line-height: 100%;
    color: #1D1B20;
    font-weight: 500;
    text-align: center;
    display: block;
}

.packages-prices__table-head-control {
    margin-top: 24px;
    width: 100%;
}

.packages-prices__table-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    line-height: 137%;
    color: #050711;
    font-weight: 600;
    height: 56px;
}

.packages-prices__table-head-control span {
    display: block;
    text-align: center;
    margin-top: 4px;
    font-size: 14px;
    line-height: 140%;
    color: #1D1B20;
    font-weight: 500;
}

.packages-prices__table-timer {
    padding-top: 24px;
}

.packages-prices__table-timer-label {
    font-size: 18px;
    line-height: 110%;
    color: #1D1B20;
    font-weight: 600;
    white-space: nowrap;
}

.packages-prices__table-timer-parts {
    margin-top: 10px;
    display: flex;
    gap: 4px;
}

.packages-prices__table-timer-part {
    border-radius: 8px;
    width: 52px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #CF19D9;
}

.packages-prices__table-timer-part span {
    font-size: 28px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
}

.packages-prices__table-timer-part small {
    font-size: 12px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
}

.packages-prices__table tbody tr:nth-child(odd) {
    background-color: #F8F8F8;
}

.packages-prices__table td {
    padding: 0 4px;
}

.packages-prices__table-label {
    font-size: 18px;
    line-height: 138%;
    color: #1D1B20;
    font-weight: 600;
    padding: 24px;
    padding-right: 0;
    min-width: 220px;
}

.packages-prices__table-price {
    font-size: 20px;
    line-height: 100%;
    color: #1D1B20;
    font-weight: 600;
    padding: 24px 0;
    text-align: center;
}

.packages-prices__table-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages-prices__table-cell {
    text-align: center;
    font-size: 18px;
    line-height: 110%;
    color: #1D1B20;
    font-weight: 600;
}

.packages-prices-mob__compare {
    display: none;
}

@media (max-width: 768px) {
    .packages-prices {
        margin-top: 64px;
    }

    .packages-prices__title {
        font-size: 32px;
    }

    .packages-prices__title br {
        display: none;
    }
    
    .packages-prices__discount {
        font-size: 16px;
    }

    .packages-prices__discount img {
        width: 18px;
        height: 18px;
    }

    .packages-prices__compare {
        display: none;
    }

    .packages-prices-mob__compare {
        display: block;
        margin-top: 32px;
    }

    .packages-prices-mob__timer {
        background-color: #FFFFFF;
        border-radius: 18px;
        padding: 24px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    
    .packages-prices-mob__timer-label {
        font-size: 18px;
        line-height: 110%;
        color: #1D1B20;
        font-weight: 600
    }
    
    .packages-prices-mob__timer-parts {
        display: flex;
        gap: 4px;
    }

    .packages-prices-mob__timer-part {
        border-radius: 8px;
        width: 52px;
        height: 64px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background-color: #CF19D9;
    }

    .packages-prices-mob__timer-part span {
        font-size: 28px;
        line-height: 100%;
        color: #FFFFFF;
        font-weight: 600;
    }

    .packages-prices-mob__timer-part small {
        font-size: 12px;
        line-height: 100%;
        color: #FFFFFF;
        font-weight: 600;
    }

    .packages-prices-mob__list {
        margin-top: 24px;
        margin-left: -16px;
        margin-right: -16px;
        padding: 0 16px;
        display: flex;
        gap: 8px;
        overflow: auto;
    }

    .packages-prices-mob__item {
        background-color: #FFFFFF;
        border-radius: 18px;
        padding: 12px;
        padding-top: 24px;
        width: 354px;
        flex-shrink: 0;
    }

    .packages-prices-mob__item-title {
        text-align: center;
        font-size: 24px;
        line-height: 110%;
        color: #1D1B20;
        font-weight: 600
    }

    .packages-prices-mob__options {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .packages-prices-mob__option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        background-color: #F8F8F8;
        border-radius: 12px;
        font-size: 16px;
        line-height: 110%;
        color: #1D1B20;
        font-weight: 600;
    }

    .packages-prices-mob__features {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .packages-prices-mob__feature {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 18px;
        line-height: 135%;
        color: #1D1B20;
        font-weight: 600;
    }

    .packages-prices-mob__price {
        margin-top: 24px;
        background-color: rgba(25, 217, 141, 0.05);
        border-radius: 12px;
        padding: 24px;
    }

    .packages-prices-mob__price-value {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .packages-prices-mob__price-value small {
        font-size: 18px;
        line-height: 100%;
        color: #1D1B20;
        font-weight: 500;
        text-align: center;
        display: block;
        margin-bottom: 0px;
        opacity: 0.5;
        text-decoration: line-through;
    }

    .packages-prices-mob__price-value span {
        font-size: 32px;
        line-height: 100%;
        color: #1D1B20;
        font-weight: 500;
        text-align: center;
        display: block;
    }

    .ppackages-prices-mob__price-control {
        margin-top: 20px;
    }

    .packages-prices-mob__price-btn {
        width: 100%;
    }

    .ppackages-prices-mob__price-control span {
        margin-top: 8px;
        display: block;
        text-align: center;
        font-size: 14px;
        line-height: 135%;
        color: #1D1B20;
        font-weight: 500;
    }
}

/* ======= packages-works ======= */

.packages-works {
    margin-top: 106px;
    border-radius: 40px;
    padding-top: 54px;
    background: url("../img/land-packages/step-bg.webp") center bottom no-repeat #1D1B20;
    background-size: 1241px;
    position: relative;
}

.packages-works__title {
    font-size: 40px;
    line-height: 110%;
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
}

.packages-works__subtitle {
    margin-top: 24px;
    font-size: 24px;
    line-height: 110%;
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
    opacity: 0.5;
}

.packages-works__row {
    margin-top: 24px;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.packages-works__col {
    width: 245px;
    flex-shrink: 0;
    border-radius: 24px 24px 0 0;
    background-color: #FFFFFF;
    padding: 32px 20px;
    position: relative;
}

.packages-works__col-num {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: rgba(25, 217, 141, 0.1);
    color: #19D98D;
    font-size: 24px;
    line-height: 110%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages-works__col-title {
    margin-top: 29px;
    color: #1D1B20;
    font-size: 24px;
    line-height: 110%;
    font-weight: 600;
}

.packages-works__col-desc {
    margin-top: 24px;
    color: #1D1B20;
    font-size: 16px;
    line-height: 137%;
    font-weight: 600;
    opacity: 0.5;
    position: relative;
    z-index: 2;
}

.packages-works__col img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    object-fit: contain;
}

.packages-works__col_1 {
    width: auto;
    flex-grow: 1;
    flex-shrink: 1;
    background-color: #19D98D;
    color: #FFFFFF;
}

.packages-works__col_1 img {
    width: 200px;
    height: 195px;
    right: 10px;
    bottom: auto;
    top: -95px;
}

.packages-works__col_1 .packages-works__col-num {
    background-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.packages-works__col_1 .packages-works__col-title {
    color: #FFFFFF;
}

.packages-works__col_1 .packages-works__col-desc {
    color: #FFFFFF;
    opacity: 1;
}

.packages-works__col_2 {
    min-height: 376px;
}

.packages-works__col_2 img {
    height: 120px;
    object-position: bottom right;
}

.packages-works__col_3 {
    background-color: #C5D7E4;
    min-height: 431px;
}

.packages-works__col_3 img {
    height: 102px;
    object-position: bottom right;
}

.packages-works__col_3 .packages-works__col-num {
    background-color: rgba(255, 255, 255, 0.25);
    color: #1D1B20;
}

.packages-works__col_4 {
    background-color: #FFD28F;
    min-height: 496px;
}

.packages-works__col_4 img {
    height: 135px;
    object-position: bottom right;
}

.packages-works__col_4 .packages-works__col-num {
    background-color: rgba(29, 27, 32, 0.05);
    color: #1D1B20;
}

@media (max-width: 1244px) {
    .packages-works__col {
        width: 200px;
    }
}

@media (max-width: 992px) {
    .packages-works__row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin-top: 80px;
    }

    .packages-works__col {
        width: 100%;
        border-radius: 24px;
        min-height: 0;
        padding-bottom: 140px;
        overflow: hidden;
    }

    .packages-works__col_1 img {
        top: auto;
        bottom: -40px;
        right: -10px;
        height: 145px;
    }
}

@media (max-width: 768px) {
    .packages-works {
        margin-top: 54px;
        border-radius: 24px;
        padding: 24px 0;
    }

    .packages-works__title {
        font-size: 32px;
    }

    .packages-works__subtitle {
        margin-top: 12px;
        font-size: 18px;
    }

    .packages-works__row {
        margin-top: 24px;
        padding: 0;
    }

    .packages-works__col{
        padding: 24px 20px;
        padding-bottom: 140px;
    }

    .packages-works__col-title {
        margin-top: 24px;
    }
}

/* ======= packages-skip ======= */

.packages-skip {
    margin-top: 106px;
}

.packages-skip__content {
    padding: 32px;
    border: 1px solid rgba(25, 217, 141, 0.3);
    background-color: rgba(25, 217, 141, 0.1);
    border-radius: 24px;
    display: flex;
}

.packages-skip__text {
    padding-right: 30px;
    font-size: 32px;
    line-height: 118%;
    color: #1D1B20;
    font-weight: 600;
}

.packages-skip__control {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 480px;
    flex-shrink: 0;
}

.packages-skip__btn {
    width: 200px;
}

.packages-skip__control img {
    display: block;
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 232px;
}

@media (max-width: 992px) {
    .packages-skip__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .packages-skip__text {
        padding-right: 0;
    }

    .packages-skip__control {
        width: auto;
        margin-top: 30px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 220px;
        width: 100%;
    }

    .packages-skip__control img {
        right: 0;
        width: 100%;
        height: 220px;
        object-fit: contain;
        object-position: center bottom;
    }
}

@media (max-width: 768px) {
    .packages-skip {
        margin-top: 32px;
        overflow: hidden;
    }

    .packages-skip__content {
        padding: 24px;
    }

    .packages-skip__text {
        font-size: 24px;
    }

    .packages-skip__control {
        margin-top: 24px;
        padding-bottom: 200px;
        width: 100%;
    }

    .packages-skip__btn {
        width: 100%;
    }

    .packages-skip__control img {
        bottom: -24px;
        height: 200px;
    }
}

/* ======= start-faq ======= */

.start-faq__container {
    max-width: 1244px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1244px) {
    .start-faq__container {
        max-width: 992px;
    }
}

@media (max-width: 992px) {
    .start-faq__container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .start-faq__container {
        padding: 0 16px;
    }
}

.start-faq {
    margin-top: 106px;
}

.start-faq__title {
    text-align: center;
    font-size: 40px;
    line-height: 110%;
    color: #1D1B20;
    font-weight: 600;
}

.start-faq__list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.start-faq__item {
    margin-bottom: 12px;
    border-radius: 18px;
    padding: 32px 24px;
    cursor: pointer;
    background-color: #FFFFFF;
}

.start-faq__item:last-child {
    margin-bottom: 0;
}

.start-faq__item-title {
    position: relative;
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    color: #1D1B20;
    padding-right: 30px;
}

.start-faq__item-title::after {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 6px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../img/faq/arrow.svg") center no-repeat;
}

.start-faq__item_active .start-faq__item-title::after {
    transform: rotate(180deg);
}

.start-faq__item-answer {
    display: none;
    padding-right: 20px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 137%;
    color: #1D1B20;
    opacity: 0.5;
}

.start-faq__item_active .start-faq__item-answer {
    display: block;
}

.start-faq__control {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.start-faq__btn {
    min-width: 162px;
}

@media (max-width: 992px) {
    .start-faq {
        margin-top: 80px;
    }

    .start-faq__container::after {
        display: none;
    }

    .start-faq__list {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .start-faq {
        margin-top: 32px;
    }

    .start-faq__title {
        font-size: 32px;
    }

    .start-faq__list {
        margin-top: 24px;
    }

    .start-faq__item {
        padding: 24px;
    }

    .start-faq__item-title {
        font-size: 18px;
    }

    .start-faq__item-answer {
        margin-top: 16px;
        font-size: 16px;
    }

    .start-faq__control {
        margin-top: 24px;
    }
}

/* ======= packages-subscribe ======= */

.packages-subscribe {
    margin-top: 106px;
}

.packages-subscribe__inner {
    padding: 54px;
    border-radius: 40px;
    background: url("../img/land-packages/subscribe-circle.png") top center no-repeat #1D1B20;
    background-size: 1018px;
    position: relative;
    overflow: hidden;
}

.packages-subscribe__inner img {
    display: block;
    width: 424px;
    position: absolute;
    top: 0;
    right: 0;
}

.packages-subscribe__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.packages-subscribe__subtitle {
    opacity: 0.5;
    margin-top: 12px;
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.packages-subscribe__form {
    margin-top: 50px;
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.packages-subscribe__form-row {
    display: flex;
    gap: 12px;
}

.packages-subscribe__text-input {
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0 16px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 0;
    height: 56px;
    width: 200px;
}

.packages-subscribe__btn {
    width: 150px;
}

.packages-subscribe__form_loading {
    position: relative;
    color: #FFFFFF;
}

.packages-subscribe__form_loading::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(11, 28, 27, 0.7);
    z-index: 2;
}

.packages-subscribe__form_loading::after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
    z-index: 3;
}

@media (max-width: 1244px) {
    .packages-subscribe__inner img {
        opacity: 0.5;
    }
}

@media (max-width: 992px) {
    .packages-subscribe__form-row {
        flex-direction: column;
    }

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

    .packages-subscribe__btn {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .packages-subscribe {
        margin-top: 86px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .packages-subscribe__inner {
        padding: 24px;
        padding-top: 44px;
        border-radius: 24px;
    }

    .packages-subscribe__inner img {
        opacity: 0.2;
    }

    .packages-subscribe__title {
        text-align: center;
        font-size: 32px;
    }

    .packages-subscribe__subtitle {
        text-align: center;
        font-size: 18px;
    }

    .packages-subscribe__form {
        margin-top: 24px;
    }

    .packages-subscribe__text-input {
        width: 100%;
    }

    .packages-subscribe__btn {
        width: 100%;
    }

    .packages-subscribe__form-row {
        gap: 8px;
    }

    .packages-subscribe__inner img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        object-position: top center;
    }
}

/* ======= valentines ====== */

.packages-header_valentines::after {
    background-image: url("../img/land-packages/valentines-day/header-bg.webp");
}

.packages-header_valentines .packages-header__content {
    padding-top: 59px;
    padding-bottom: 78px;
}

.packages-profit_valentines .packages-profit__item {
    overflow: visible;
}

.packages-profit_valentines .packages-profit__item-img {
    border-radius: 0 0 18px 18px;
}

.packages-profit_valentines .packages-profit__item_stock {
    background-color: #DC2F2F;
}

.packages-profit_valentines .packages-profit__item-title {
    padding-right: 100px;
}

.packages-profit_valentines .packages-profit__item_stock .packages-profit__item-title {
    color: #FFFFFF;
}

.packages-profit_valentines .packages-profit__item_stock .packages-profit__item-desc {
    color: #FFFFFF;
    opacity: 0.5;
}

.packages-profit_valentines .packages-profit__item_stock .packages-profit__item-btn {
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.packages-profit_valentines .packages-profit__item_stock .packages-profit__item-icon {
    position: absolute;
    height: 165px;
    top: -40px;
    right: -20px;
}

.packages-profit_valentines .packages-profit__item_advice .packages-profit__item-icon {
    position: absolute;
    height: 143px;
    top: -45px;
    right: 8px;
}

.packages-profit_valentines .packages-profit__item_education .packages-profit__item-icon {
    position: absolute;
    height: 195px;
    top: -80px;
    right: -52px;
}

.packages-prices_valentines .packages-prices__discount {
    background-color: #DD3D8A;
}

.packages-prices_valentines .packages-prices__icons {
    position: relative;
}

.packages-prices_valentines .packages-prices__icons::before {
    content: '';
    display: block;
    left: -48px;
    top: -138px;
    position: absolute;
    width: 318px;
    height: 318px;
    background: url("../img/land-packages/valentines-day/table-icon-1.webp") center no-repeat;
    background-size: contain;
    z-index: 2;
}

.packages-prices_valentines .packages-prices__icons::after {
    content: '';
    display: block;
    right: -60px;
    top: -284px;
    position: absolute;
    width: 432px;
    height: 432px;
    background: url("../img/land-packages/valentines-day/table-icon-2.webp") center no-repeat;
    background-size: contain;
    z-index: 0;
}

.packages-prices_valentines .packages-prices__table-head-price small {
    display: block !important;
}

.packages-prices_valentines .packages-prices-mob__price-value small {
    display: block !important;
}

.packages-prices_valentines .packages-prices__table-head-title {
    font-size: 20px;
    line-height: 140%;
    color: #050711;
    font-weight: 700;
    text-align: center;
}

.packages-prices_valentines .packages-prices__table-head-price {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.packages-prices_valentines .packages-prices__table-head-price small {
    font-size: 16px;
    line-height: 100%;
    color: #1D1B20;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    display: block;
    opacity: 0.4;
    text-decoration: line-through;
}

.packages-prices_valentines .packages-prices__table-head-price span {
    font-size: 20px;
    line-height: 100%;
    color: #BE0D2A;
    font-weight: 600;
    text-align: center;
    display: block;
    padding: 11px 21px;
    border-radius: 10px;
    background-color: rgba(190, 13, 42, 0.1);
}

.packages-prices_valentines .packages-prices__table-head-control {
    margin-top: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.packages-prices_valentines .packages-prices__table-btn {
    padding: 14px;
    min-width: 123px;
    width: auto;
    font-size: 16px;
    line-height: 137%;
    color: #050711;
    font-weight: 600;
    height: 40px;
}

.packages-works_valentines {
    background-image: url("../img/land-packages/valentines-day/step-bg.webp");
}

.packages-works_valentines::before {
    content: '';
    display: block;
    position: absolute;
    width: 273px;
    height: 273px;
    background: url("../img/land-packages/valentines-day/work-icon-1.webp") center no-repeat;
    background-size: contain;
    top: -95px;
    left: 217px;
}

.packages-works_valentines::after {
    content: '';
    display: block;
    position: absolute;
    width: 212px;
    height: 212px;
    background: url("../img/land-packages/valentines-day/work-icon-2.webp") center no-repeat;
    background-size: contain;
    top: -64px;
    right: 50px;
}

.packages-subscribe_valentines .packages-subscribe__inner {
    background-image: url("../img/land-packages/valentines-day/subscribe-circle.webp");
}

.packages-subscribe_valentines .packages-subscribe__inner img {
    width: 320px;
    top: auto;
    bottom: 0;
    right: 0;
}

@media (max-width: 1244px) {
    .packages-profit_valentines .packages-profit__item_stock .packages-profit__item-icon {
        height: 90px;
    }

    .packages-profit_valentines .packages-profit__item_advice .packages-profit__item-icon {
        height: 100px;
    }

    .packages-profit_valentines .packages-profit__item_education .packages-profit__item-icon {
        height: 120px;
        top: -70px;
    }

    .packages-prices_valentines .packages-prices__icons::before {
        height: 218px;
        top: -100px;
    }

    .packages-prices_valentines .packages-prices__icons::after {
        height: 332px;
        top: -200px;
        right: -110px;
    }

    .packages-profit_valentines .packages-profit__item-title {
        padding-right: 0;
    }

    .packages-works_valentines::before {
        left: 60px;
        height: 200px;
    }

    .packages-works_valentines::after {
        right: 20px;
        height: 170px;
    }
}

@media (max-width: 992px) {
    .packages-prices_valentines .packages-prices__icons::before {
        height: 118px;
        top: -30px;
    }

    .packages-prices_valentines .packages-prices__icons::after {
        height: 232px;
        top: -100px;
    }
}

@media (max-width: 768px) {
    .packages-header_valentines .packages-header__content {
        padding-bottom: 300px;
    }

    .packages-prices__icons {
        display: none;
    }
    
    .packages-works_valentines::before,
    .packages-works_valentines::after {
        display: none;
    }

    .packages-subscribe_valentines .packages-subscribe__inner img {
        height: 230px;
    }

    .packages-prices_valentines .packages-prices-mob__price-value small {
        font-size: 16px;
        line-height: 100%;
        color: #1D1B20;
        font-weight: 500;
        text-align: center;
        display: block;
        opacity: 0.4;
        text-decoration: line-through;
    }

    .packages-prices_valentines .packages-prices-mob__price-value span {
        font-size: 20px;
        line-height: 100%;
        color: #BE0D2A;
        font-weight: 600;
        text-align: center;
        display: block;
        padding: 11px 21px;
        border-radius: 10px;
        background-color: rgba(190, 13, 42, 0.1);
    }
}

/* ======= trading ====== */

.trading-body {
    background-color: #09090B;
}

.trading-body .main-wrapper {
    background-color: #09090B;
    padding: 0 0 10px;
}

.trading-container {
    position: relative;
    z-index: 2;
}

.trading-body .header-menu {
    padding-top: 24px;
}

.trading-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 776px;
    z-index: 1;
    background: url("../img/land-trading/bg.png");
}

.trading-top-bg::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.6) 80%, rgba(9, 9, 11, 1));
}

.trading-top-bg__circle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 804px;
    height: 879px;
    background: url("../img/land-trading/circle-1.webp") no-repeat left top;
    background-size: contain;
    z-index: 2;
}

.trading-top-bg__circle::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -300px;
    right: 0;
    width: 871px;
    height: 1390px;
    background: url("../img/land-trading/circle-2.webp") no-repeat right center;
    background-size: contain;
    z-index: 2;
}

.trading-bottom-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 776px;
    z-index: 1;
    background: url("../img/land-trading/bg.png");
}

.trading-bottom-bg::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(9, 9, 11, 0.6) 80%, rgba(9, 9, 11, 1));
}

.trading-bottom-bg__circle::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 662px;
    height: 1438px;
    background: url("../img/land-trading/circle-3.webp") no-repeat left center;
    background-size: contain;
    z-index: 2;
}

.trading-bottom-bg__circle::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 719px;
    height: 778px;
    background: url("../img/land-trading/circle-4.webp") no-repeat right bottom;
    background-size: contain;
    z-index: 2;
}

.trading-container {
    position: relative;
    z-index: 3;
}

.trading-top {
    padding: 50px 0 64px;
}

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

.trading-top__up {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 500;
}

.trading-top__title {
    margin-top: 12px;
    max-width: 750px;
    font-size: 54px;
    line-height: 120%;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.trading-top__subtitle {
    margin-top: 18px;
    max-width: 545px;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
    text-align: center;
}

.trading-top__features {
    margin-top: 24px;
    display: flex;
    gap: 4px;
}

.trading-top__feature {
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 500;
}

.trading-top__control {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trading-top__btn {
    width: 232px;
}

.trading-top__control img {
    margin-top: 16px;
    width: 232px;
}

.trading-top__screens {
    margin-top: 50px;
    position: relative;
}

.trading-top__screens-img {
    max-width: 1017px;
}

.trading-top__screens-first {
    width: 170px;
    padding: 24px 28px;
    padding-right: 58px;
    position: absolute;
    top: 0;
    left: -50px;
    border-radius: 18px;
    background: rgba(10, 24, 21, 0.2);
    backdrop-filter: blur(204px);
    font-size: 16px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.trading-top__screens-first img {
    position: absolute;
    top: 24px;
    right: 28px;
}

.trading-top__screens-second {
    width: 200px;
    padding: 24px 28px;
    padding-right: 58px;
    position: absolute;
    top: 100px;
    right: -33px;
    border-radius: 18px;
    background: rgba(10, 24, 21, 0.2);
    backdrop-filter: blur(204px);
    font-size: 16px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.trading-top__screens-second img {
    position: absolute;
    top: 24px;
    right: 28px;
}

.trading-conditions {
    padding: 74px 0;
}

.trading-conditions__title {
    text-align: center;
    max-width: 536px;
    margin: 0 auto;
    font-size: 40px;
    line-height: 120%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-conditions__title span {
    color: #19D98D;
}

.trading-conditions__list {
    margin-top: 50px;
    display: flex;
    gap: 12px;
}

.trading-conditions__profit {
    width: 398px;
    flex-shrink: 0;
    min-height: 100%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 24px;
}

.trading-conditions__profit-up {
    font-size: 18px;
    line-height: 110%;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.5;
}

.trading-conditions__profit-percent {
    margin-top: 8px;
    font-size: 64px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 700;
}

.trading-conditions__profit-sub {
    margin-top: 16px;
    font-size: 24px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-conditions__profit-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 371px;
    height: 300px;
    object-fit: contain;
    object-position: right bottom;
}

.trading-conditions__middle {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
}

.trading-conditions__funded {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.trading-conditions__funded-up {
    font-size: 18px;
    line-height: 110%;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.5;
}

.trading-conditions__funded-money {
    margin-top: 8px;
    font-size: 64px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 700;
}

.trading-conditions__funded-sub {
    margin-top: 16px;
    font-size: 24px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-conditions__funded-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.trading-conditions__news {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.trading-conditions__news-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.trading-conditions__news-item {
    padding: 16px 20px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 18px;
    line-height: 110%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-conditions__news-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 200px;
    max-height: 100%;
}

.trading-conditions__features {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
}

.trading-conditions__feature {
    width: 100%;
    border-radius: 18px;
    flex-grow: 1;
    flex-basis: 0;
    padding: 24px;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.trading-conditions__feature-icon {
    margin-right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.trading-plan {
    padding: 74px 0;
}

.trading-plan__row {
    display: flex;
    gap: 12px;
}

.trading-plan__steps {
    width: 350px;
    flex-shrink: 0;
    padding: 24px;
}

.trading-plan__steps-title {
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__steps-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

.trading-plan__steps-item {
    width: 100%;
    display: flex;
    gap: 12px;
    position: relative;
}

.trading-plan__steps-item::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 20px;
    top: 0;
    border-left: 1px dashed #FFFFFF;
    opacity: 0.1;
}

.trading-plan__steps-item:last-child::before {
    display: none;
}

.trading-plan__steps-num {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__steps-info {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trading-plan__steps-icon {
    width: 32px;
    flex-shrink: 0;
}

.trading-plan__steps-text {
    flex-grow: 1;
    padding-bottom: 36px;
}

.trading-plan__steps-title {
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__steps-desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.trading-plan__left {
    flex-grow: 1;
}

.trading-plan__choose {
    border-radius: 36px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.05);
}

.trading-plan__choose-header {
    display: flex;
    justify-content: space-between;
}

.trading-plan__choose-title {
    max-width: 273px;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__choose-btn {
    width: 232px;
}

.trading-plan__mode {
    margin-top: 32px;
}

.trading-plan__mode-title {
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__mode-control {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.trading-plan__mode-btn {
    width: 205px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
}

.trading-plan__mode-btn:hover {
    opacity: 0.7;
}

.trading-plan__mode-btn_active {
    color: #1D1B20;
    background-color: #19D98D;
}

.trading-plan__power {
    margin-top: 32px;
}

.trading-plan__power-title {
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__power-control {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.trading-plan__power-btn {
    width: 106px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
}

.trading-plan__power-btn:hover {
    opacity: 0.7;
}

.trading-plan__power-btn_active {
    color: #1D1B20;
    background-color: #19D98D;
}

.trading-plan__options {
    margin-top: 12px;
    border-radius: 36px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.05);
}

.trading-plan__percents {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.trading-plan__percent {
    flex-basis: 0;
    flex-grow: 1;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.trading-plan__percent-label {
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.5;
}

.trading-plan__percent-value {
    margin-top: 4px;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__params {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trading-plan__param {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.trading-plan__label {
    padding-top: 1px;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.5;
    min-width: 180px;
}

.trading-plan__value {
    text-align: right;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__payments {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trading-plan__payments-title {
    text-align: center;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.trading-plan__payments-img {
    margin-top: 24px;
    width: 470px;
}

.trading-review {
    padding: 74px 0;
}

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

.trading-review__title {
    text-align: center;
    font-size: 40px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-review__title span {
    color: #19D98D;
}

.trading-review__subtitle {
    margin-top: 18px;
    text-align: center;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
    max-width: 428px;
}

.trading-review__excellent {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
}

.trading-review__excellent img {
    width: 128px;
}

.trading-review__rated {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.trading-review__rated-text {
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
}

.trading-review__rated-text span {
    color: #19D98D;
}

.trading-review__rated img {
    width: 98px;
}

.trading-review__list {
    margin-top: 50px;
    display: flex;
    gap: 12px;
    position: relative;
    left: 50%;
    margin-left: -738px;
}

.trading-review__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 360px;
    gap: 12px;
}

.trading-review__item {
    width: 100%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
}

.trading-review__item-img {
    width: 128px;
}

.trading-review__item-title {
    margin-top: 24px;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-review__item-desc {
    margin-top: 16px;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.trading-review__item-row {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trading-review__item-name {
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-review__item-time {
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.trading-faq {
    padding: 74px 0;
}

.trading-faq__inner {
    max-width: 637px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trading-faq__title {
    text-align: center;
    font-size: 40px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-faq__list {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trading-faq__item {
    width: 100%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px 24px;
    padding-right: 80px;
    position: relative;
    cursor: pointer;
}

.trading-faq__item:hover {
    opacity: 0.7;
}

.trading-faq__item::after {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 18px;
    right: 24px;
    background: url("../img/land-trading/faq-plus.svg") center no-repeat;
}

.trading-faq__item_active::after {
    background-image: url("../img/land-trading/faq-minus.svg");
}

.trading-faq__item-title {
    padding: 8px 0;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-faq__item-answer {
    display: none;
    margin-top: 16px;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.trading-faq__item_active .trading-faq__item-answer {
    display: block;
}

.trading-faq__control {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trading-faq__control-label {
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
}

.trading-faq__btn {
    margin-top: 24px;
    width: 232px;
}

.trading-start {
    padding: 74px 0;
}

.trading-start__inner {
    display: flex;
    padding: 64px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(134px);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.trading-start__inner::before {
    content: '';
    display: block;
    position: absolute;
    width: 499px;
    height: 253px;
    top: 0;
    left: 0;
    background: url("../img/land-trading/start-circle-1.webp") top left no-repeat;
    background-size: contain;
}

.trading-start__inner::after {
    content: '';
    display: block;
    position: absolute;
    width: 363px;
    height: 287px;
    bottom: 0;
    right: 0;
    background: url("../img/land-trading/start-circle-2.webp") bottom right no-repeat;
    background-size: contain;
}

.trading-start__right {
    flex-shrink: 0;
}

.trading-start__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trading-start__option {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    gap: 26px;
}

.trading-start__option-label {
    width: 120px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.trading-start__option-value {
    font-size: 36px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-start__left {
    flex-grow: 1;
}

.trading-start__title {
    max-width: 402px;
    font-size: 54px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-start__title span {
    color: #19D98D;
}

.trading-start__subtitle {
    margin-top: 18px;
    max-width: 402px;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.trading-start__control {
    margin-top: 32px;
    display: flex;
    gap: 12px;
}

.trading-start__get-btn {
    width: 232px;
}

.trading-start__ask-btn {
    width: 186px;
    background-color: #FFFFFF;
    color: #050711;
}

@media (max-width: 1244px) {
    .trading-conditions__list {
        flex-wrap: wrap;
    }

    .trading-conditions__features {
        width: 100%;
    }

    .trading-plan__percent {
        width: 30%;
        flex-basis: auto;
    }

    .trading-start__inner {
        padding: 36px;
    }
}

@media (max-width: 992px) {
    .trading-top__screens-img {
        width: 100%;
    }

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

    .trading-conditions__profit {
        width: 100%;
    }

    .trading-conditions__profit-img {
        height: 100%;
    }

    .trading-plan__row {
        flex-direction: column;
        gap: 60px;
    }

    .trading-plan__left {
        width: 100%;
    }

    .trading-plan__steps {
        width: 100%;
        padding: 0;
    }

    .trading-start__inner {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .trading-top {
        padding-bottom: 40px;
    }

    .trading-top__title {
        font-size: 40px;
    }

    .trading-top__subtitle {
        font-size: 16px;
    }

    .trading-top__features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trading-top__screens-first {
        left: 0;
        font-size: 14px;
        padding: 16px;
        padding-right: 38px;
        width: 150px;
        border-radius: 8px;
    }

    .trading-top__screens-first img {
        top: 16px;
        right: 16px;
    }

    .trading-top__screens-second {
        right: 0;
        font-size: 14px;
        padding: 16px;
        padding-right: 38px;
        width: 180px;
        border-radius: 8px;
    }

    .trading-top__screens-second img {
        top: 16px;
        right: 16px;
    }

    .trading-conditions {
        padding: 40px 0;
    }

    .trading-conditions__title {
        font-size: 36px;
    }

    .trading-conditions__profit {
        padding: 16px;
        border-radius: 8px;
    }

    .trading-conditions__profit-img {
        width: 150px;
        opacity: 0.5;
    }

    .trading-conditions__funded {
        padding: 16px;
        border-radius: 8px;
    }

    .trading-conditions__funded-img {
        width: 150px;
        object-fit: contain;
        object-position: right bottom;
        opacity: 0.5;
    }

    .trading-conditions__news {
        padding: 16px;
        border-radius: 8px;
    }

    .trading-conditions__news-img {
        width: 150px;
        object-fit: contain;
        object-position: right bottom;
        opacity: 0.5;
    }

    .trading-conditions__feature {
        padding: 16px;
        border-radius: 8px;
    }

    .trading-conditions__profit-percent {
        font-size: 56px;
    }

    .trading-conditions__profit-sub {
        font-size: 20px;
    }

    .trading-plan {
        padding: 40px 0;
    }

    .trading-plan__choose {
        padding: 16px;
        border-radius: 16px;
    }

    .trading-plan__choose-header {
        flex-direction: column;
        gap: 16px;
    }

    .trading-plan__choose-title {
        max-width: none;
    }

    .trading-plan__choose-btn {
        width: 100%;
    }

    .trading-plan__mode-btn {
        width: 100%;
    }

    .trading-plan__options {
        padding: 16px;
        border-radius: 16px;
    }

    .trading-plan__percent {
        width: 100%;
    }

    .trading-plan__params {
        gap: 16px;
    }

    .trading-plan__param {
        flex-direction: column;
        gap: 8px;
    }

    .trading-plan__label {
        min-width: 0;
    }

    .trading-plan__value {
        text-align: left;
    }

    .trading-plan__row {
        gap: 30px;
    }

    .trading-plan__payments-img {
        max-width: 100%;
    }

    .trading-review {
        padding: 40px 0;
    }

    .trading-review__title {
        font-size: 36px;
    }

    .trading-review__subtitle {
        font-size: 16px;
    }

    .trading-review__rated-text {
        font-size: 16px;
        text-align: center;
    }

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

    .trading-review__list {
        overflow: auto;
        left: 0;
        margin-left: 0;
    }

    .trading-review__col {
        flex-direction: row;
        width: auto;
    }

    .trading-review__item {
        width: 360px;
        flex-shrink: 0;
        padding: 16px;
        border-radius: 8px;
    }

    .trading-faq {
        padding: 40px 0;
    }

    .trading-faq__title {
        font-size: 36px;
    }

    .trading-faq__item {
        padding: 16px;
        border-radius: 16px;
        padding-right: 60px;
    }

    .trading-faq__item::after {
        right: 16px;
    }

    .trading-faq__item-title {
        font-size: 18px;
    }

    .trading-start {
        padding: 40px 0;
    }

    .trading-start__inner {
        padding: 16px;
        border-radius: 16px;
    }

    .trading-start__title {
        font-size: 36px;
    }

    .trading-start__subtitle {
        font-size: 16px;
    }

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

    .trading-start__get-btn {
        width: 100%;
    }

    .trading-start__ask-btn {
        width: 100%;
    }

    .trading-start__option {
        padding: 16px;
        border-radius: 16px;
    }

    .trading-start__option-value {
        font-size: 30px;
    }

    .trading-start__option-label {
        font-size: 14px;
        width: 110px;
    }
}

/* ======= trading light ======= */

.trading-body.is-light,
.trading-body.is-light .main-wrapper {
    background-color: #FFFFFF;
}

.trading-body.is-light .trading-top-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 1));
}

.trading-body.is-light .header-menu__nav-link {
    color: #09090B;
}

.trading-body.is-light .trading-top__title {
    color: #09090B;
}

.trading-body.is-light .trading-top__up {
    background: rgba(9, 9, 11, 0.05);
    color: #09090B;
}

.trading-body.is-light .trading-top__subtitle {
    color: #09090B;
}

.trading-body.is-light .trading-top__feature {
    background: rgba(9, 9, 11, 0.05);
    color: #09090B;
}

.trading-body.is-light .trading-top__screens-first {
    background: rgba(10, 24, 21, 0.01);
    color: rgba(9, 9, 11, 0.5);
}

.trading-body.is-light .trading-top__screens-first,
.trading-body.is-light .trading-top__screens-second {
    background: rgba(10, 24, 21, 0.01);
    color: rgba(9, 9, 11, 0.5);
}

.trading-body.is-light .trading-conditions__title {
    color: #1D1B20;
}

.trading-body.is-light .trading-conditions__profit {
    background: rgba(9, 9, 11, 0.02);
}

.trading-body.is-light .trading-conditions__profit-up {
    color: #1D1B20;
    opacity: 0.5;
}

.trading-body.is-light .trading-conditions__profit-percent {
    color: #1D1B20;
}

.trading-body.is-light .trading-conditions__profit-sub {
    color: #1D1B20;
}

.trading-body.is-light .trading-conditions__funded {
    background: rgba(9, 9, 11, 0.02);
}

.trading-body.is-light .trading-conditions__funded-up {
    color: #1D1B20;
    opacity: 0.5;
}

.trading-body.is-light .trading-conditions__funded-money {
    color: #1D1B20;
}

.trading-body.is-light .trading-conditions__funded-sub {
    color: #1D1B20;
}

.trading-body.is-light .trading-conditions__news {
    background: rgba(9, 9, 11, 0.02);
}

.trading-body.is-light .trading-conditions__news-item {
    background: rgba(9, 9, 11, 0.05);
    color: #1D1B20;
}

.trading-body.is-light .trading-conditions__feature {
    background: rgba(9, 9, 11, 0.02);
    color: #1D1B20;
}

.trading-body.is-light .trading-conditions__feature-icon {
    background: rgba(9, 9, 11, 0.05);
}

.trading-body.is-light .trading-plan__choose {
    background: rgba(9, 9, 11, 0.03);
}

.trading-body.is-light .trading-plan__choose-title {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__mode-btn {
    background: rgba(9, 9, 11, 0.05);
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__mode-btn_active {
    color: #1D1B20;
    background-color: #19D98D;
}

.trading-body.is-light .trading-plan__mode-title {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__power-title {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__power-btn {
    background: rgba(9, 9, 11, 0.05);
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__power-btn_active {
    color: #1D1B20;
    background-color: #19D98D;
}

.trading-body.is-light .trading-plan__options {
    background: rgba(9, 9, 11, 0.03);
}

.trading-body.is-light .trading-plan__percent {
    background: rgba(9, 9, 11, 0.05);
}

.trading-body.is-light .trading-plan__percent-label {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__percent-value {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__label {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__value {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__steps-title {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__steps-num {
    background-color: rgba(9, 9, 11, 0.05);
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__steps-desc {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-plan__steps-item::before {
    border-left: 1px dashed #000000;
    opacity: 0.07;
}

.trading-body.is-light .trading-plan__payments-title {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-review__title {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-review__subtitle {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-review__excellent {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-review__rated-text {
    color: rgba(29, 27, 32, 1);
}

.trading-body.is-light .trading-review__rated-text span {
    color: #19D98D;
}

.trading-body.is-light .trading-review__item {
    background: rgba(9, 9, 11, 0.03);
}

.trading-body.is-light .trading-review__item-title {
    color: #1D1B20;
}

.trading-body.is-light .trading-review__item-desc {
    color: #1D1B20;
}

.trading-body.is-light .trading-review__item-name {
    color: #1D1B20;
}

.trading-body.is-light .trading-review__item-time {
    color: #1D1B20;
}

.trading-body.is-light .trading-faq__title {
    color: #1D1B20;
}

.trading-body.is-light .trading-faq__item {
    background: rgba(9, 9, 11, 0.03);
}

.trading-body.is-light .trading-faq__item-title {
    color: #1D1B20;
}

.trading-body.is-light .trading-faq__item-answer {
    color: #1D1B20;
}

.trading-body.is-light .trading-faq__item::after {
    background-image: url("../img/land-trading/light/faq-plus.svg");
}

.trading-body.is-light .trading-faq__item_active::after {
    background-image: url("../img/land-trading/light/faq-minus.svg");
}

.trading-body.is-light .trading-faq__control-label {
    color: #1D1B20;
}

.trading-body.is-light .trading-start__inner {
    background: rgba(9, 9, 11, 0.03);
}

.trading-body.is-light .trading-start__title {
    color: #1D1B20;
}

.trading-body.is-light .trading-start__subtitle {
    color: #1D1B20;
}

.trading-body.is-light .trading-start__option {
    background: rgba(9, 9, 11, 0.05);
}

.trading-body.is-light .trading-start__option-value {
    color: #1D1B20;
}

.trading-body.is-light .trading-start__option-label {
    color: #1D1B20;
}

/* ======= easter ====== */

.packages-header_easter::after {
    background-image: url("../img/land-packages/easter/header-bg.webp");
    width: 934px;
    height: 673px;
}

.packages-profit_easter .packages-profit__item_stock {
    background: linear-gradient(90deg, #6C4BDD 0%, #9574FF 100%);
}

.packages-profit_easter .packages-profit__item_stock .packages-profit__item-title {
    color: #FFFFFF;
}

.packages-profit_easter .packages-profit__item_stock .packages-profit__item-desc {
    color: #FFFFFF;
    opacity: 0.5;
}

.packages-profit_easter .packages-profit__item_stock .packages-profit__item-btn {
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3)
}

.packages-profit_easter .packages-profit__item-title {
    padding-right: 100px;
}

.packages-profit_easter .packages-profit__item-desc {
    padding-right: 80px;
}

.packages-profit_easter .packages-profit__item_stock .packages-profit__item-icon {
    position: absolute;
    height: 153px;
    top: 0;
    right: 0;
}

.packages-profit_easter .packages-profit__item_advice .packages-profit__item-icon {
    position: absolute;
    height: 123px;
    top: 0;
    right: 0;
}

.packages-profit_easter .packages-profit__item_education .packages-profit__item-icon {
    position: absolute;
    height: 155px;
    top: 0;
    right: 0;
}

.packages-prices_easter .packages-prices__discount {
    background: linear-gradient(90deg, #6C4BDD 0%, #9574FF 100%);
}

.packages-prices_easter .packages-prices__icons {
    position: relative;
}

.packages-prices_easter .packages-prices__icons::before {
    content: '';
    display: block;
    left: -15px;
    top: -175px;
    position: absolute;
    width: 338px;
    height: 338px;
    background: url("../img/land-packages/easter/table-icon-1.webp") center no-repeat;
    background-size: contain;
    z-index: 0;
}

.packages-prices_easter .packages-prices__icons::after {
    content: '';
    display: block;
    right: 0;
    top: -185px;
    position: absolute;
    width: 312px;
    height: 312px;
    background: url("../img/land-packages/easter/table-icon-2.webp") center no-repeat;
    background-size: contain;
    z-index: 0;
}

.packages-prices_easter .packages-prices__icons-middle {
    position: relative;
}

.packages-prices_easter .packages-prices__icons-middle::before {
    content: '';
    display: block;
    left: -120px;
    top: 700px;
    position: absolute;
    width: 185px;
    height: 218px;
    background: url("../img/land-packages/easter/table-icon-3.webp") center no-repeat;
    background-size: contain;
    z-index: 2;
}

.packages-prices_easter .packages-prices__icons-middle::after {
    content: '';
    display: block;
    right: -95px;
    top: 372px;
    position: absolute;
    width: 182px;
    height: 182px;
    background: url("../img/land-packages/easter/table-icon-4.webp") center no-repeat;
    background-size: contain;
    z-index: 2;
}

.packages-prices_easter .packages-prices__table-head-price small {
    display: block !important;
}

.packages-prices_easter .packages-prices-mob__price-value small {
    display: block !important;
}

.packages-prices_easter .packages-prices__table-head-title {
    font-size: 20px;
    line-height: 140%;
    color: #050711;
    font-weight: 700;
    text-align: center;
}

.packages-prices_easter .packages-prices__table-head-price {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.packages-prices_easter .packages-prices__table-head-price small {
    font-size: 16px;
    line-height: 100%;
    color: #1D1B20;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    display: block;
    opacity: 0.4;
    text-decoration: line-through;
}

.packages-prices_easter .packages-prices__table-head-price span {
    font-size: 20px;
    line-height: 100%;
    color: #BE0D2A;
    font-weight: 600;
    text-align: center;
    display: block;
    padding: 11px 21px;
    border-radius: 10px;
    background-color: rgba(190, 13, 42, 0.1);
}

.packages-prices_easter .packages-prices__table-head-control {
    margin-top: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.packages-prices_easter .packages-prices__table-btn {
    padding: 14px;
    min-width: 123px;
    width: auto;
    font-size: 16px;
    line-height: 137%;
    color: #050711;
    font-weight: 600;
    height: 40px;
}

.packages-works_easter {
    background-image: url("../img/land-packages/easter/step-bg.webp");
    overflow: hidden;
}

.packages-works_easter::before {
    content: '';
    display: block;
    position: absolute;
    width: 207px;
    height: 192px;
    background: url("../img/land-packages/easter/work-icon-1.webp") center no-repeat;
    background-size: contain;
    top: 0;
    left: 0;
}

.packages-works_easter::after {
    content: '';
    display: block;
    position: absolute;
    width: 241px;
    height: 224px;
    background: url("../img/land-packages/easter/work-icon-2.webp") center no-repeat;
    background-size: contain;
    top: 0;
    right: 0;
}

.packages-subscribe_easter .packages-subscribe__inner {
    background-image: url("../img/land-packages/easter/subscribe-circle.webp");
}

.packages-easter__icons::before {
    content: '';
    display: block;
    position: absolute;
    right: 250px;
    top: 0;
    width: 171px;
    height: 159px;
    background: url("../img/land-packages/easter/subscribe-icon-1.webp") center no-repeat;
    background-size: contain;
}

.packages-easter__icons::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 203px;
    height: 174px;
    background: url("../img/land-packages/easter/subscribe-icon-2.webp") right bottom no-repeat;
    background-size: contain;
}

@media (max-width: 1244px) {
    .packages-header_easter::after {
        width: 852px;
        height: 473px;
    }

    .packages-profit_easter .packages-profit__item_stock .packages-profit__item-icon {
        height: 90px;
    }

    .packages-profit_easter .packages-profit__item_advice .packages-profit__item-icon {
        height: 90px;
    }

    .packages-profit_easter .packages-profit__item_education .packages-profit__item-icon {
        height: 90px;
    }

    .packages-profit_easter .packages-profit__item-title {
        padding-right: 30px;
    }

    .packages-prices_easter .packages-prices__icons::before {
        left: -15px;
        top: -175px;
        width: 238px;
    }

    .packages-prices_easter .packages-prices__icons::after {
        right: 0;
        top: -185px;
        width: 212px;
    }

    .packages-easter__icons {
        opacity: 0.5;
    }
}

@media (max-width: 992px) {
    .packages-prices_easter .packages-prices__icons::before {
        left: -45px;
        top: -175px;
        width: 168px;
    }

    .packages-prices_easter .packages-prices__icons::after {
        right: -50px;
        top: -165px;
        width: 162px;
    }

    .packages-prices_easter .packages-prices__icons-middle::after {
        right: -135px;
    }
}

@media (max-width: 768px) {
    .packages-header_easter::after {
        width: 100%;
    }

    .packages-prices_easter .packages-prices__icons {
        display: none;
    }

    .packages-prices_easter .packages-prices__icons-middle {
        display: none;
    }

    .packages-works_easter::before {
        width: 90px;
        background-position: top left;
        opacity: 0.5;
    }

    .packages-works_easter::after {
        width: 90px;
        background-position: top right;
        opacity: 0.6;
    }

    .packages-works_easter .packages-works__title {
        position: relative;
        z-index: 1;
    }

    .packages-easter__icons::before {
        right: auto;
        top: 0;
        left: 0;
    }
}

/* ======= realcapital-header ======= */

.realcapital-header {
    background-color: #1D1B20;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.realcapital-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/land-realcapital/header/header-bg.webp") right bottom no-repeat;
    background-size: contain;
    right: 0;
    bottom: 0;
}

.realcapital-header__content {
    max-width: 645px;
    min-height: 613px;
    padding-top: 80px;
    padding-bottom: 64px;
    position: relative;
    z-index: 3;
}

.realcapital-header__funded {
    display: inline-block;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: rgba(25, 217, 141, 0.1);
    padding: 21px 72px 21px 54px;
}

.realcapital-header__funded::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/land-realcapital/header/header-circle-1.webp") no-repeat left top;
    background-size: contain;
    z-index: 1;
}

.realcapital-header__funded::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../img/land-realcapital/header/header-circle-2.webp") no-repeat right bottom;
    background-size: contain;
    z-index: 1;
}

.realcapital-header__icon-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 53px;
    height: 57px;
    object-fit: contain;
    object-position: left bottom;
    z-index: 2;
}

.realcapital-header__icon-2 {
    position: absolute;
    right: 73px;
    bottom: 0;
    width: 76px;
    height: 42px;
    object-fit: contain;
    object-position: center bottom;
    z-index: 2;
}

.realcapital-header__funded-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 24px;
    margin-top: -18px;
}

.realcapital-header__funded-title {
    position: relative;
    z-index: 3;
    font-size: 18px;
    line-height: 110%;
    font-weight: 600;
    color: #FFFFFF;
}

.realcapital-header__funded-subtitle {
    margin-top: 4px;
    position: relative;
    z-index: 3;
    font-size: 14px;
    line-height: 110%;
    font-weight: 600;
    color: #FFFFFF;
    opacity: 0.6;
}

.realcapital-header__title {
    margin-top: 18px;
    font-size: 44px;
    line-height: 120%;
    font-weight: 600;
    color: #FFFFFF;
}

.realcapital-header__subtitle {
    max-width: 440px;
    margin-top: 18px;
    font-size: 20px;
    line-height: 140%;
    font-weight: 500;
    color: #FFFFFF;
}

.realcapital-header__control {
    margin-top: 44px;
    display: flex;
    gap: 12px;
}

.realcapital-header__choose-btn {
    width: 232px;
}

.realcapital-header__try-btn {
    width: 170px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.realcapital-header__try-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.realcapital-header__payments {
    margin-top: 64px;
    width: 232px;
}

@media (max-width: 1244px) {
    .realcapital-header::after {
        opacity: 0.5;
    }
}

@media (max-width: 992px) {
    
}

@media (max-width: 768px) {
    .realcapital-header {
        border-radius: 0 0 30px 30px;
    }

    .realcapital-header__content {
        padding-top: 24px;
        min-height: 0;
        padding-bottom: 169px;
    }

    .realcapital-header__funded {
        display: block;
        padding-top: 11px;
        padding-bottom: 11px;
        padding-right: 62px;
    }

    .realcapital-header__funded-title {
        font-size: 14px;
    }

    .realcapital-header__funded-subtitle {
        font-size: 12px;
    }

    .realcapital-header__funded-arrow {
        right: 14px;
    }

    .realcapital-header__title {
        margin-top: 24px;
        font-size: 36px;
    }

    .realcapital-header__subtitle {
        margin-top: 16px;
        font-size: 18px;
    }

    .realcapital-header__control {
        margin-top: 32px;
        flex-direction: column;
        gap: 8px;
    }

    .realcapital-header__control .btn {
        width: 100%;
    }

    .realcapital-header__payments {
        margin-top: 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .realcapital-header::after {
        opacity: 1;
    }
}

/* ======= realcapital-why ======= */

.realcapital-why {
    margin-top: 106px;
}

.realcapital-why__title {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    font-size: 40px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
}

.realcapital-why__table {
    margin-top: 50px;
    border-radius: 18px;
    background-color: #FFFFFF;
    padding: 24px;
}

.realcapital-why__table-header {
    display: flex;
    padding: 8px 0;
}

.realcapital-why__table-row {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 12px;
}

.realcapital-why__table-row:nth-child(odd) {
    background-color: rgba(161, 161, 161, 0.1);
}

.realcapital-why__table-col-feature {
    width: 470px;
    padding: 19px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
}

.realcapital-why__table-col-other {
    width: 252px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    padding-left: 46px;
    font-size: 20px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
}

.realcapital-why__table-col-tefs {
    width: 232px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background-color: rgba(25, 217, 141, 1);
}

.realcapital-why__table-col-feature_header {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
    color: #050711;
}

.realcapital-why__table-col-other_header {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
    color: #050711;
}

.realcapital-why__table-col-tefs_header {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.realcapital-why__table-body {
    margin-top: 8px;
}

.realcapital-why__table-col-tefs_header {
    position: relative;
}

.realcapital-why__table-col-tefs_header span {
    position: relative;
    z-index: 2;
}

.realcapital-why__table-col-tefs_header::after {
    content: '';
    position: absolute;
    display: block;
    top: -53px;
    left: 0;
    right: 0;
    bottom: -30px;
    background-color: rgba(25, 217, 141, 1);
    border-radius: 20px 20px 0 0;
}

.realcapital-why__table-row:last-child .realcapital-why__table-col-tefs {
    position: relative;
}

.realcapital-why__table-row:last-child .realcapital-why__table-col-tefs img {
    position: relative;
    z-index: 2;
}

.realcapital-why__table-row:last-child .realcapital-why__table-col-tefs::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: -55px;
    background-color: rgba(25, 217, 141, 1);
    border-radius: 0 0 20px 20px;
}

@media (max-width: 1244px) {
}

@media (max-width: 992px) {
    .realcapital-why__table-col-feature {
        width: 380px;
    }

    .realcapital-why__table-col-other {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .realcapital-why {
        margin-top: 80px;
    }

    .realcapital-why__title {
        font-size: 36px;
    }

    .realcapital-why__table {
        margin-top: 32px;
    }

    .realcapital-why__table {
        padding: 12px;
    }

    .realcapital-why__table-col-feature {
        padding: 8px 12px;
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .realcapital-why__table-col-feature_header {
        font-size: 16px;
    }

    .realcapital-why__table-col-other {
        width: 100px;
        flex-shrink: 0;
        padding: 8px 12px;
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        font-size: 14px;
    }

    .realcapital-why__table-col-other_header {
        font-size: 16px;
    }

    .realcapital-why__table-col-tefs {
        padding: 8px 12px;
        width: 80px;
        flex-shrink: 0;
    }

    .realcapital-why__table-col-tefs_header {
        font-size: 16px;
    }

    .realcapital-why__table-col-tefs_header::after {
        top: -33px;
    }
    
    .realcapital-why__table-row:last-child .realcapital-why__table-col-tefs::after {
        bottom: -30px;
    }
}

/* ======= realcapital-choose ======= */

.realcapital-choose {
    margin-top: 106px;
}

.realcapital-choose__title {
    text-align: center;
    font-size: 40px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
}

.realcapital-choose__try {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 502px;
    background-color: rgba(5, 7, 17, 0.05);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 24px;
}

.realcapital-choose__try-label {
    flex-grow: 1;
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
    color: #1D1B20;
}

.realcapital-choose__try-btn {
    width: 170px;
    flex-shrink: 0;
}

.realcapital-choose__compare {
    margin-top: 50px;
    background-color: #FFFFFF;
    overflow: auto;
    padding: 24px;
    border-radius: 18px;
}

.realcapital-choose__table {
    width: 100%;
}

.realcapital-choose__table-head {
    width: 184px;
    padding: 24px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.realcapital-choose__table-head-title {
    font-size: 20px;
    line-height: 130%;
    color: #050711;
    font-weight: 700;
    text-align: center;
}

.realcapital-choose__table-head-control {
    margin-top: 13px;
}

.realcapital-choose__table-btn {
    padding: 4px 16px;
    font-size: 16px;
    color: #1D1B20;
    font-weight: 600;
    min-height: 40px;
    height: auto;
    width: 148px;
    border-radius: 83px;
}

.realcapital-choose__table tbody tr:nth-child(odd) {
    background-color: #F7F7F7;
}

.realcapital-choose__table td {
    vertical-align: middle;
}

.realcapital-choose__table-head-label {
    padding: 24px;
    font-size: 18px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 600;
    opacity: 0.5;
}

.realcapital-choose__table-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.realcapital-choose__table-cell-label {
    padding: 14px 24px;
    font-size: 16px;
    line-height: 140%;
    color: #1D1B20;
    font-weight: 600;
    opacity: 0.5;
}

.realcapital-choose__table-cell {
    text-align: center;
    font-size: 20px;
    line-height: 140%;
    color: #1D1B20;
    font-weight: 600;
    padding: 14px 24px;
}

@media (max-width: 1244px) {
    .realcapital-choose__table-cell-label {
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    
}

@media (max-width: 768px) {
    .realcapital-choose {
        margin-top: 80px;
    }

    .realcapital-choose__title {
        font-size: 36px;
    }

    .realcapital-choose__try {
        margin-top: 32px;
        border-radius: 18px;
        padding: 18px;
        gap: 15px;
    }

    .realcapital-choose__try-label {
        font-size: 16px;
    }

    .realcapital-choose__try-btn {
        width: auto;
        height: 40px;
        padding: 0 16px;
    }

    .realcapital-choose__compare {
        margin-top: 32px;
        padding: 12px;
    }

    .realcapital-choose__table-head-label {
        padding: 16px;
    }

    .realcapital-choose__table-cell-label {
        padding-left: 16px;
        padding-right: 16px;
    }

    .realcapital-choose__table-head {
        width: 160px;
    }
}

/* ======= realcapital-how ======= */

.realcapital-how {
    margin-top: 106px;
    background: url("../img/land-realcapital/how/circle.webp") center no-repeat;
    background-size: cover;
    background-color: #1D1B20;
    border-radius: 40px;
    padding: 54px;
}

.realcapital-how__title {
    text-align: center;
    font-size: 40px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.realcapital-how__subtitle {
    margin-top: 16px;
    text-align: center;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.5;
}

.realcapital-how__list {
    margin-top: 54px;
    margin-left: auto;
    margin-right: auto;
    max-width: 763px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.realcapital-how__item {
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.realcapital-how__item-img {
    position: absolute;
    bottom: 0;
    right: 40px;
    height: 90%;
    object-fit: contain;
    object-position: center bottom;
}

.realcapital-how__item-num {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    flex-shrink: 0;
}

.realcapital-how__item-text {
    flex-grow: 1;
}

.realcapital-how__item-title {
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.realcapital-how__item-subtitle {
    margin-top: 12px;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.5;
}

.realcapital-how__item_buy {
    padding-right: 221px;
}

.realcapital-how__item_buy img {
    width: 151px;
}

.realcapital-how__item_benefits {
    padding-right: 207px;
}

.realcapital-how__item_benefits img {
    width: 147px;
}

.realcapital-how__item_trade {
    padding-right: 292px;
}

.realcapital-how__item_trade img {
    width: 232px;
}

.realcapital-how__control {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.realcapital-how__choose-btn {
    width: 232px;
}

.realcapital-how__try-btn {
    width: 170px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.realcapital-how__try-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .realcapital-how {
        margin-top: 80px;
        padding: 32px 0;
    }

    .realcapital-how__title {
        font-size: 36px;
    }

    .realcapital-how__subtitle {
        margin-top: 12px;
        font-size: 18px;
    }

    .realcapital-how__list {
        margin-top: 32px;
    }

    .realcapital-how__item {
        padding: 24px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .realcapital-how__item-num {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .realcapital-how__item-title {
        font-size: 18px;
    }

    .realcapital-how__item-subtitle {
        font-size: 14px;
    }

    .realcapital-how__item-img {
        right: 0;
        height: 50%;
        object-position: right bottom;
    }

    .realcapital-how__item img {
        width: 100px;
    }

    .realcapital-how__item {
        padding-right: 100px;
    }

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

    .realcapital-how__control .btn {
        width: 100%;
    }
}

/* ======= realcapital-features ======= */

.realcapital-features {
    margin-top: 106px;
}

.realcapital-features__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.realcapital-features__item {
    border-radius: 18px;
    padding: 24px;
    background-color: #FFFFFF;
}

.realcapital-features__icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 217, 141, 0.1);
}

.realcapital-features__title {
    margin-top: 20px;
    font-size: 18px;
    line-height: 130%;
    color: #050711;
    font-weight: 600;
}

.realcapital-features__subtitle {
    margin-top: 16px;
    font-size: 14px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 600;
    opacity: 0.5;
}

@media (max-width: 1244px) {
}

@media (max-width: 992px) {
    .realcapital-features__list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .realcapital-features {
        margin-top: 80px;
    }

    .realcapital-features__list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ======= realcapital-quotes ======= */

.realcapital-quotes {
    margin-top: 106px;
}

.realcapital-quotes__title {
    text-align: center;
    font-size: 40px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
}

.realcapital-quotes__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.realcapital-quotes__item {
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 30px 24px 36px;
}

.realcapital-quotes__head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.realcapital-quotes__head img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.realcapital-quotes__head-text {
    flex-grow: 1;
}

.realcapital-quotes__head-name {
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
}

.realcapital-quotes__head-date {
    margin-top: 2px;
    font-size: 18px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
    opacity: 0.5;
}

.realcapital-quotes__message-title {
    margin-top: 28px;
    font-size: 18px;
    line-height: 130%;
    font-weight: 700;
    color: #1D1B20;
}

.realcapital-quotes__message-text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
}

@media (max-width: 1244px) {
}

@media (max-width: 992px) {
    .realcapital-quotes__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .realcapital-quotes {
        margin-top: 80px;
    }

    .realcapital-quotes__title {
        font-size: 40px;
    }

    .realcapital-quotes__list {
        margin-top: 32px;
        gap: 8px;
    }
}

/* ======= realcapital-faq ======= */

.start-faq_real-capital {

}

.realcapital-faq__control {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.realcapital-faq__choose-btn {
    width: 232px;
}

.realcapital-faq__try-btn {
    width: 170px;
    background: rgba(5, 7, 17, 0.07);
    color: #050711;
}

.realcapital-faq__try-btn:hover {
    background: rgba(5, 7, 17, 0.07);
    color: #050711;
}

@media (max-width: 768px) {
    .start-faq_real-capital {
        margin-top: 80px;
    }

    .realcapital-faq__control {
        margin-top: 32px;
        gap: 8px;
        flex-direction: column;
    }

    .realcapital-faq__control .btn {
        width: 100%;
    }
}

/* ======= summer ======= */

.packages-header_summer .packages-header__subtitle {
    color: #19D98D;
    opacity: 1;
}

.packages-header_summer .packages-header__content {
    max-width: 500px;
}

.packages-header_summer::after {
    background-image: url("../img/land-packages/summer/header-bg.webp");
    background-position: right bottom;
}

.packages-profit_summer .packages-profit__item {
    overflow: visible;
}

.packages-profit_summer .packages-profit__item-img {
    border-radius: 0 0 18px 18px;
}

.packages-profit_summer .packages-profit__item_stock .packages-profit__item-icon {
    position: absolute;
    height: 145px;
    top: -44px;
    right: 0;
}

.packages-profit_summer .packages-profit__item-title {
    padding-right: 90px;
}

.packages-profit_summer .packages-profit__item_advice .packages-profit__item-icon {
    position: absolute;
    height: 139px;
    top: -48px;
    right: 13px;
}

.packages-profit_summer .packages-profit__item_education .packages-profit__item-icon {
    position: absolute;
    height: 130px;
    top: -38px;
    right: 28px;
}

.packages-prices_summer .packages-prices__discount {
    background: #19D98D;
    color: #1D1B20;
}

.packages-prices_summer .packages-prices__icons {
    position: relative;
    z-index: 2;
}

.packages-prices_summer .packages-prices__icons::before {
    content: '';
    display: block;
    left: -83px;
    top: -136px;
    position: absolute;
    width: 238px;
    height: 238px;
    background: url("../img/land-packages/summer/prices-1.webp") center no-repeat;
    background-size: contain;
    z-index: 0;
}

.packages-prices_summer .packages-prices__icons::after {
    content: '';
    display: block;
    right: -90px;
    top: -56px;
    position: absolute;
    width: 172px;
    height: 183px;
    background: url("../img/land-packages/summer/prices-2.webp") center no-repeat;
    background-size: contain;
    z-index: 0;
}

.packages-prices_summer .packages-prices__table-timer-part {
    background-color: #F5EB68;
}

.packages-prices_summer .packages-prices__table-timer-part span {
    color: #1D1B20;
}

.packages-prices_summer .packages-prices__table-timer-part small {
    color: #1D1B20;
    opacity: 0.5;
}

.packages-prices_summer .packages-prices__table-head-price small {
    display: block !important;
}

.packages-prices_summer .packages-prices-mob__price-value small {
    display: block !important;
}

.packages-prices_summer .packages-prices__table-head-title {
    font-size: 20px;
    line-height: 140%;
    color: #050711;
    font-weight: 700;
    text-align: center;
}

.packages-prices_summer .packages-prices__table-head-price {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.packages-prices_summer .packages-prices__table-head-price small {
    font-size: 16px;
    line-height: 100%;
    color: #1D1B20;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    display: block;
    opacity: 0.4;
    text-decoration: line-through;
}

.packages-prices_summer .packages-prices__table-head-price span {
    font-size: 20px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
    display: block;
    padding: 11px 21px;
    border-radius: 10px;
    background-color: #000000;
}

.packages-prices_summer .packages-prices__table-head-price-big {
    height: 66px;
    display: flex;
    align-items: center;
    font-size: 32px;
    line-height: 100%;
    color: #1D1B20;
    font-weight: 500;
    text-align: center;
}

.packages-prices_summer .packages-prices__table-head-control {
    margin-top: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.packages-prices_summer .packages-prices__table-btn {
    padding: 14px;
    min-width: 123px;
    width: auto;
    font-size: 16px;
    line-height: 137%;
    color: #050711;
    font-weight: 600;
    height: 40px;
}

.packages-works_summer {
    background-image: url("../img/land-packages/summer/step-bg.webp");
}

.packages-works_summer::before {
    content: '';
    display: block;
    position: absolute;
    width: 254px;
    height: 280px;
    background: url("../img/land-packages/summer/works-1.webp") center no-repeat;
    background-size: contain;
    top: -100px;
    left: 20px;
}

.packages-works_summer::after {
    content: '';
    display: block;
    position: absolute;
    width: 179px;
    height: 214px;
    background: url("../img/land-packages/summer/works-2.webp") center no-repeat;
    background-size: contain;
    top: -100px;
    right: 87px;
}

@media (max-width: 1244px) {
    .packages-profit_summer .packages-profit__item-icon {
        height: 100px !important;
        width: 70px !important;
        object-fit: contain;
        right: 10px !important;
        top: -44px !important;
    }

    .packages-profit_summer .packages-profit__item-title {
        padding-right: 0;
    }

    .packages-works_summer::before {
        top: -80px;
        width: 154px;
        height: 180px;
    }

    .packages-works_summer::after {
        top: -80px;
        width: 129px;
        height: 174px;
        right: 57px;
    }
}

@media (max-width: 992px) {
    .packages-prices_summer .packages-prices__icons::before {
        left: -23px;
        top: -46px;
        width: 138px;
        height: 138px;
    }

    .packages-prices_summer .packages-prices__icons::after {
        width: 122px;
        height: 122px;
        right: -65px;
        top: -20px;
    }
}

@media (max-width: 768px) {
    .packages-profit_summer .packages-profit__item-icon {
        display: none;
    }

    .packages-prices_summer .packages-prices-mob__timer-part {
        background-color: #F5EB68;
    }

    .packages-prices_summer .packages-prices-mob__timer-part span {
        color: #1D1B20;
    }

    .packages-prices_summer .packages-prices-mob__timer-part small {
        color: #1D1B20;
        opacity: 0.5;
    }

    .packages-prices_summer .packages-prices-mob__price-value-big {
        height: 62px;
        font-size: 32px;
        line-height: 100%;
        color: #1D1B20;
        font-weight: 500;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .packages-works_summer::before {
        top: -50px;
        width: 80px;
        height: 80px;
        left: 0;
    }

    .packages-works_summer::after {
        top: -50px;
        width: 80px;
        height: 80px;
        right: 0;
    }
}

/* ======= affiliate ======= */

.affiliate-header {
    background-color: #1D1B20;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.affiliate-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/land-affiliate/header/bg.webp") right bottom no-repeat;
    background-size: contain;
    right: 0;
    bottom: 0;
}

.affiliate-header__content {
    max-width: 720px;
    padding-top: 80px;
    padding-bottom: 76px;
    position: relative;
    z-index: 3;
}

.affiliate-header__title {
    font-size: 48px;
    line-height: 130%;
    font-weight: 600;
    color: #FFFFFF;
}

.affiliate-header__title span {
    color: #19D98D;
}

.affiliate-header__features {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.affiliate-header__feature-title {
    margin-top: 4px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #FFFFFF;
}

.affiliate-header__feature-subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #FFFFFF;
}

.affiliate-header__control {
    margin-top: 44px;
    display: flex;
    gap: 12px;
}

.affiliate-header__become-btn {
    min-width: 232px;
}

.affiliate-header__login-btn {
    min-width: 170px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.affiliate-header__login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.affiliate-header__payments {
    margin-top: 57px;
    width: 232px;
}

.affiliate-why {
    padding: 106px 0;
}

.affiliate-why__title {
    text-align: center;
    font-size: 40px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
}

.affiliate-why__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.affiliate-why__item {
    padding: 32px;
    padding-bottom: 180px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.affiliate-why__item-title {
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
    color: #1D1B20;
    position: relative;
    z-index: 2;
}

.affiliate-why__item-desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    color: #1D1B20;
    opacity: 0.5;
    position: relative;
    z-index: 2;
}

.affiliate-why__item-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    z-index: 1;
}

.affiliate-why__item_max {
    background-color: #19D98D;
}

.affiliate-why__item_easy {
    background-color: #FFFFFF;
}

.affiliate-why__item_dashboard {
    background-color: #1D1B20;
}

.affiliate-why__item_dashboard .affiliate-why__item-title {
    color: #FFFFFF;
}

.affiliate-why__item_dashboard .affiliate-why__item-desc {
    color: #FFFFFF;
}

.affiliate-features__list {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.affiliate-features__item {
    border-radius: 18px;
    padding: 30px 24px 36px;
    background-color: #FFFFFF;
}

.affiliate-features__icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 217, 141, 0.1);
}

.affiliate-features__title {
    margin-top: 20px;
    font-size: 24px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 600;
}

.affiliate-features__subtitle {
    margin-top: 20px;
    font-size: 16px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 600;
    opacity: 0.5;
}

.affiliate-begin {
    background-color: #1D1B20;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.affiliate-begin::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/land-affiliate/begin/bg.webp") right top no-repeat;
    background-size: contain;
    right: 0;
    bottom: 0;
}

.affiliate-begin__inner {
    display: flex;
    position: relative;
    z-index: 3;
}

.affiliate-begin__right {
    padding-top: 120px;
    flex-shrink: 0;
    width: 575px;
}

.affiliate-begin__right img {
    width: 100%;
}

.affiliate-begin__content {
    flex-grow: 1;
    padding: 60px 0;
}

.affiliate-begin__title {
    font-size: 40px;
    line-height: 130%;
    font-weight: 600;
    color: #FFFFFF;
}

.affiliate-begin__steps {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.affiliate-begin__step {
    width: 100%;
}

.affiliate-begin__step-img img {
    width: 24px;
}

.affiliate-begin__step-title {
    margin-top: 16px;
    font-size: 24px;
    line-height: 130%;
    font-weight: 500;
    color: #FFFFFF;
}

.affiliate-begin__step-desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.5;
}

.affiliate-begin__control {
    margin-top: 40px;
}

.affiliate-begin__btn {
    width: 232px;
}

.affiliate-review {
    margin-top: 106px;
}

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

.affiliate-review__title {
    text-align: center;
    font-size: 40px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 600;
}

.affiliate-review__subtitle {
    margin-top: 18px;
    text-align: center;
    font-size: 20px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 500;
    opacity: 0.5;
}

.affiliate-review__excellent {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 500;
}

.affiliate-review__excellent img {
    width: 128px;
}

.affiliate-review__rated {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.affiliate-review__rated-text {
    font-size: 18px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 500;
}

.affiliate-review__rated-text span {
    color: #19D98D;
}

.affiliate-review__rated img {
    width: 113px;
}

.affiliate-review__list {
    margin-top: 50px;
    display: flex;
    gap: 12px;
    position: relative;
    left: 50%;
    margin-left: -738px;
}

.affiliate-review__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 360px;
    gap: 12px;
}

.affiliate-review__item {
    width: 100%;
    border-radius: 18px;
    background: #FFFFFF;
    padding: 24px;
}

.affiliate-review__item-img {
    width: 128px;
}

.affiliate-review__item-title {
    margin-top: 24px;
    font-size: 20px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 600;
}

.affiliate-review__item-desc {
    margin-top: 16px;
    font-size: 16px;
    line-height: 150%;
    color: #1D1B20;
    font-weight: 500;
    opacity: 0.5;
}

.affiliate-review__item-row {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.affiliate-review__item-name {
    font-size: 16px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 600;
}

.affiliate-review__item-time {
    font-size: 14px;
    line-height: 130%;
    color: #1D1B20;
    font-weight: 500;
    opacity: 0.5;
}

.affiliate-review__video-list {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    max-width: 1200px;
}

.affiliate-review__video-item {
    border-radius: 16px;
    overflow: hidden;
    height: 593px;
    position: relative;
}

.affiliate-review__video-item::after {
    content: '';
    display: block;
    width: 56px;
    height: 56px;
    background: url("../img/land-affiliate/review/play.svg") center;
    background-size: contain;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.affiliate-review__video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.affiliate-contact {
    margin-top: 106px;
}

.affiliate-contact__inner {
    background: url("../img/land-affiliate/contact/circle.webp") top center no-repeat #1D1B20;
    background-size: cover;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    padding: 44px;
}

.affiliate-contact__inner::before {
    content: '';
    display: block;
    width: 206px;
    height: 105px;
    background: url("../img/land-affiliate/contact/icon-1.webp") bottom center no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 40px;
}

.affiliate-contact__inner::after {
    content: '';
    display: block;
    width: 353px;
    height: 146px;
    background: url("../img/land-affiliate/contact/icon-2.webp") top center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: -20px;
}

.affiliate-contact__title {
    text-align: center;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
    max-width: 700px;
    margin: 0 auto;
}

.affiliate-contact__email {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 30px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
}

.affiliate-contact__email:hover {
    color: #FFFFFF;
}

@media (max-width: 1244px) {
    .affiliate-header::after {
        opacity: 0.5;
    }

    .affiliate-begin::after {
        right: -300px;
    }

    .affiliate-contact__inner::before {
        width: 106px;
    }

    .affiliate-contact__inner::after {
        width: 253px;
    }

    .affiliate-contact__inner {
        background-size: cover;
    }

    .affiliate-begin__right {
        width: 480px;
    }

    .affiliate-review__video-item {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .affiliate-why__list {
        grid-template-columns: 1fr;
    }

    .affiliate-why__item {
        padding-bottom: 250px;
    }

    .affiliate-why__item-img {
        height: 290px;
        object-fit: contain;
        object-position: center bottom;
    }

    .affiliate-features__list {
        grid-template-columns: 1fr 1fr;
    }

    .affiliate-begin__content {
        max-width: 400px;
    }

    .affiliate-begin::after {
        opacity: 0.5;
    }

    .affiliate-contact__inner::after {
        width: 180px;
    }

    .affiliate-begin__right {
        margin-right: -100px;
    }

    .affiliate-review__video-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .affiliate-header {
        border-radius: 0 0 30px 30px;
    }

    .affiliate-header__content {
        padding-top: 24px;
        min-height: 0;
        padding-bottom: 48px;
    }

    .affiliate-header__title {
        margin-top: 24px;
        font-size: 36px;
    }

    .affiliate-header__features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .affiliate-header__feature {
        padding-left: 40px;
        position: relative;
    }

    .affiliate-header__feature-img {
        position: absolute;
        left: 0;
        top: 3px;
    }

    .affiliate-header__control {
        margin-top: 32px;
        flex-direction: column;
        gap: 8px;
    }

    .affiliate-header__control .btn {
        width: 100%;
    }

    .affiliate-header__payments {
        margin-top: 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .affiliate-header::after {
        opacity: 0.2;
        background-size: cover;
    }

    .affiliate-why {
        padding: 54px 0;
    }

    .affiliate-why__title {
        font-size: 32px;
    }

    .affiliate-why__list {
        margin-top: 24px;
    }

    .affiliate-why__item {
        padding: 24px;
        padding-bottom: 249px;
    }

    .affiliate-features__list {
        grid-template-columns: 1fr;
    }

    .affiliate-why__item-img {
        height: 330px;
        object-position: top center;
        object-fit: cover;
    }

    .affiliate-begin {
        border-radius: 0;
    }

    .affiliate-begin__content {
        padding: 40px 0;
        max-width: none;
    }

    .affiliate-begin__title {
        font-size: 36px;
        text-align: center;
    }

    .affiliate-begin__right {
        display: none;
    }

    .affiliate-begin__btn {
        width: 100%;
    }

    .affiliate-begin::after {
        right: -150px;
    }

    .affiliate-review {
        margin-top: 54px;
        padding-bottom: 22px;
    }

    .affiliate-review__title {
        font-size: 36px;
    }

    .affiliate-review__subtitle {
        font-size: 16px;
    }

    .affiliate-review__rated-text {
        font-size: 16px;
        text-align: center;
    }

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

    .affiliate-review__list {
        overflow: auto;
        left: 0;
        margin-left: 0;
    }

    .affiliate-review__col {
        flex-direction: row;
        width: auto;
    }

    .affiliate-review__item {
        width: 360px;
        flex-shrink: 0;
        padding: 16px;
        border-radius: 8px;
    }

    .affiliate-contact {
        margin-top: 54px;
    }

    .affiliate-contact__inner {
        border-radius: 18px;
    }

    .affiliate-contact__inner::after {
        width: 130px;
    }

    .affiliate-contact__inner::before {
        left: 0;
        width: 100px;
    }

    .affiliate-contact__title {
        font-size: 18px;
    }

    .affiliate-contact__email {
        font-size: 24px;
    }

    .affiliate-review__video-list {
        margin-top: 30px;
        display: flex;
        overflow: auto;
        padding: 0 12px;
        gap: 12px;
    }

    .affiliate-review__video-item {
        width: 215px;
        flex-shrink: 0;
    }
}

/* ===================== */
