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-body .header-menu {
    padding-top: 24px;
}

.trading-top-container {
    position: relative;
}

.trading-top-container::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url("../img/land-trading/top-bg.webp") center no-repeat;
    background-size: cover;
}

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

.trading-top {
    padding: 50px 0 12px;
    position: relative;
    z-index: 2;
}

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

.trading-top__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

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

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

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

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

.trading-top__control {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.trading-top__btn {
    min-width: 194px;
}

.trading-top__btn_demo {
    background: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

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

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

.trading-top__screens-item {
    position: absolute;
    width: 240px;
    padding: 20px;
    padding-right: 36px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
}

.trading-top__screens-item-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 70px;
    background: rgba(25, 217, 141, 0.2);
}

.trading-top__screens-item-title {
    margin-top: 22px;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
}

.trading-top__screens-item-subtitle {
    margin-top: 10px;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.3;
}

.trading-top__screens-item_first {
    top: -38px;
    left: -47px;
}

.trading-top__screens-item_second {
    top: -38px;
    right: 0;
}

.trading-top__screens-item_third {
    top: 324px;
    left: 12px;
}

.trading-top__screens-item_four {
    top: 324px;
    right: 99px;
}

.trading-top__features {
    bottom: 82px;
    left: 0;
    right: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

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

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

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

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

.trading-conditions__subtitle {
    text-align: center;
    margin-top: 24px;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

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

.trading-conditions__item {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 32px;
    height: 377px;
}

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

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

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

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

.trading-conditions__item_profit .trading-conditions__item-img {
    right: 32px;
    height: 260px;
}

.trading-conditions__item_funded .trading-conditions__item-img {
    right: 32px;
    height: 240px;
}

.trading-conditions__item_options .trading-conditions__item-img {
    right: 0;
    height: 230px;
}

.trading-conditions__features {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.trading-conditions__feature {
    border-radius: 18px;
    padding: 30px 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-conditions__item-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    z-index: 2;
}

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

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

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

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

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

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

.trading-plan__mode-btn {
    min-width: 205px;
    height: 45px;
    padding: 0 16px;
    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__mode-btn-sale {
    position: relative;
}

.trading-plan__mode-btn-sale::after {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    left: 0px;
    width: 61px;
    height: 62px;
    background: url("../img/land-trading-sale/free.webp") center no-repeat;
    background-size: contain;
}

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

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

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

.trading-plan__power-btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    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__packages-outer {
    margin-top: 50px;
    overflow: auto;
    width: 100%;
    text-align: center;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.trading-plan__packages-outer::-webkit-scrollbar {
    display: none
}

.trading-plan__packages {
    padding: 0 16px;
    display: inline-flex;
    gap: 12px;
    padding-bottom: 16px;
    text-align: left;
}

.trading-plan__package {
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-radius: 36px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.trading-plan__package-content {
    width: 100%;
    flex-grow: 1;
    padding: 36px;
}

.trading-plan__package-up {
    font-size: 17px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.5;
}

.trading-plan__package-price {
    margin-top: 8px;
    font-size: 36px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__package-params {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trading-plan__package-param {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.trading-plan__package-param small {
    flex-grow: 1;
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.5;
}

.trading-plan__package-param span {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

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

.trading-plan__package-feature {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.trading-plan__package-feature_disabled {
    opacity: 0.3;
}

.trading-plan__package-feature img {
    flex-shrink: 0;
    width: 20px;
}

.trading-plan__package-control {
    flex-shrink: 0;
    background: rgba(134, 134, 134, 0.3);
    padding: 18px 13px;
}

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

.trading-plan__package-label {
    position: absolute;
    top: -3px;
    right: -3px;
    padding: 8px 20px 8px 16px;
    border-bottom-left-radius: 24px;
    font-size: 14px;
    line-height: 130%;
    color: #09090B;
    font-weight: 700;
    background-color: #19D98D;
}

.trading-plan__package_popular {
    border: 3px solid #19D98D;
}

.trading-plan__package_popular .trading-plan__package-control {
    padding-bottom: 15px;
}

.trading-plan__package_popular .trading-plan__package-content {
    padding-top: 33px;
}

.trading-plan__package_start {
    border: 3px solid #4F4F4F;
}

.trading-plan__package_start .trading-plan__package-control {
    padding-bottom: 15px;
}

.trading-plan__package_start .trading-plan__package-content {
    padding-top: 33px;
}

.trading-plan__package-label_popular {
    color: #09090B;
    background-color: #19D98D;
}

.trading-plan__package-label_start {
    color: #19D98D;
    background-color: #4F4F4F;
}

.trading-plan__payments {
    padding-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: 16px;
    width: 454px;
}

.trading-plan__demo {
    margin-top: 124px;
    display: flex;
    align-items: center;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(134px);
    padding: 50px 64px;
    position: relative;
}

.trading-plan__demo-title {
    flex-grow: 1;
    font-size: 40px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

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

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

.trading-plan__demo-img {
    position: absolute;
    top: -70px;
    right: 220px;
}

.trading-plan__demo-img img {
    width: 448px;
}

.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__widget {
    margin-top: 50px;
}

.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 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: 132px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.trading-start__option-value {
    font-size: 16px;
    line-height: 1.3;
    color: #FFFFFF;
    font-weight: 600;
}

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

.trading-start__left {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.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 {
    min-width: 232px;
}

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

.tr-footer {
}

.tr-footer__bottom {
    padding: 50px 0 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tr-footer__copyright {
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.tr-footer__social {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tr-footer__policy {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    color: #FFFFFF;
}

.tr-footer__policy-links {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 30px;
}

.tr-footer__policy-link {
    color: #FFFFFF;
}

.tr-footer__text {
}

.tr-footer__text-section {
    margin-bottom: 16px;
}

.tr-footer__text-section:last-child {
    margin-bottom: 0;
}

.tr-footer__text-title {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
    font-weight: 600;
}

.tr-footer__text-desc {
    font-size: 12px;
    line-height: 150%;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.5;
}

.tr-footer__top {
    margin-bottom: 50px;
}

.tr-footer__top .header-menu {
    padding: 0;
}

.tr-footer__subscribe {
    width: 427px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px;
    border-radius: 72px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(54px);
}

.tr-footer__subscribe-email {
    flex-grow: 1;
    padding-left: 50px;
    position: relative;
}

.tr-footer__subscribe-email::after {
    content: '';
    display: block;
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("../img/land-trading/email.svg") center no-repeat;
    background-size: contain;
}

.tr-footer__subscribe-input {
    width: 100%;
    height: 46px;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 600;
}

.tr-footer__subscribe-btn {
    height: 46px;
    padding: 0 17px;
}

.tr-footer__subscribe_loading {
    position: relative;
    color: #FFFFFF;
}

.tr-footer__subscribe_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;
}

.tr-footer__subscribe_loading::after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    margin-top: -12px;
    margin-left: -12px;
    border: 3px 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) {
    .trading-conditions__list {
        flex-wrap: wrap;
    }

    .trading-conditions__features {
        width: 100%;
    }

    .trading-start__inner {
        padding: 36px;
    }

    .trading-conditions__item-img {
        height: 180px !important;
    }

    .trading-plan__demo-img {
        opacity: 0.7;
        top: -20px;
    }

    .trading-plan__demo-img img {
        width: 300px;
    }

    .tr-footer__subscribe {
        width: 400px;
    }
}

@media (max-width: 992px) {
    .trading-top__screens-item {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-bottom: 8px;
        display: flex;
        gap: 16px;
        align-items: center;
        padding: 16px;
        border-radius: 24px;
    }

    .trading-top__screens-item-icon {
        width: 50px;
        height: 50px;
    }

    .trading-top__screens-item-icon img {
        width: 24px;
    }

    .trading-top__screens-item-title {
        margin-top: 0;
        font-size: 16px;
    }

    .trading-top__screens-item-subtitle {
        margin-top: 8px;
        font-size: 14px;
    }

    .trading-top__screens-item:last-child {
        margin-bottom: 0;
    }

    .trading-top__screens-img {
        margin-bottom: -40px;
    }

    .trading-top__features {
        display: none;
    }

    .trading-top__screens-img {
        width: 100%;
    }

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

    .trading-conditions__item {
        padding: 20px;
    }

    .trading-conditions__item-percent {
        font-size: 48px;
    }

    .trading-conditions__item-up {
        font-size: 14px;
    }

    .trading-conditions__item-sub {
        font-size: 18px;
    }

    .trading-conditions__item-option {
        padding: 8px 16px;
        font-size: 16px;
        line-height: 130%;
        border-radius: 10px;
    }

    .trading-conditions__item-img {
        height: 140px !important;
    }

    .trading-conditions__feature {
        padding: 20px;
        font-size: 16px;
        border-radius: 10px;
    }

    .trading-plan__demo-img {
        right: 40px;
    }

    .tr-footer__top .header-menu {
        flex-wrap: wrap;
    }

    .tr-footer__top .header-menu__nav {
        justify-content: flex-end;
    }

    .tr-footer__subscribe {
        width: 100%;
        margin-top: 30px;
    }
}

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

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

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

    .trading-top__control {
        flex-direction: column;
        width: 100%;
    }

    .trading-top__btn {
        width: 100%;
    }

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

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

    .trading-conditions__list {
        grid-template-columns: 1fr;
    }

    .trading-conditions__item {
        padding-bottom: 170px;
        height: auto;
    }

    .trading-conditions__features {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .trading-plan__package {
        width: 330px;
        border-radius: 20px;
    }

    .trading-plan__package-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .trading-plan__demo {
        margin-top: 74px;
        border-radius: 20px;
        flex-direction: column;
        padding: 20px;
        padding-bottom: 230px;
    }

    .trading-plan__demo-title {
        font-size: 24px;
        text-align: center;
    }

    .trading-plan__demo-control {
        margin-top: 20px;
        width: 100%;
    }

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

    .trading-plan__demo-img {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
    }

    .trading-plan__demo-img img {
        width: 100%;
        height: 200px;
        object-position: center;
        object-fit: contain;
    }

    .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 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 span {
        display: block;
    }

    .trading-start__option-value br {
        display: none;
    }

    .tr-footer__top .header-menu__logo {
        order: 1;
    }

    .tr-footer__top .header-menu__burger {
        order: 2;
        margin-left: auto;
    }

    .tr-footer__top .tr-footer__subscribe {
        order: 3;
        margin-top: 20px;
    }

    .tr-footer__top {
        margin-bottom: 30px;
    }

    .tr-footer__bottom {
        padding: 30px 0;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }

    .tr-footer__subscribe-input {
        font-size: 14px;
    }

    .tr-footer__subscribe-email {
        padding-left: 40px;
    }

    .tr-footer__subscribe-email::after {
        left: 10px;
    }

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

    .tr-footer__policy-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

.trading-sale {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    overflow: hidden;
    background-color: #19D98D;
}

.trading-sale__item {
    font-size: 16px;
    line-height: 140%;
    color: #050711;
    font-weight: 600;
    white-space: nowrap;
}

.trading-plan__title_sale {
    position: relative;
}

.trading-plan__title_sale::after {
    content: '';
    display: block;
    position: absolute;
    top: -120px;
    left: -350px;
    width: 293px;
    height: 293px;
    background: url("../img/land-trading-sale/percent-2.webp") center no-repeat;
    background-size: contain;
}

.trading-plan__title_sale::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -350px;
    width: 354px;
    height: 354px;
    background: url("../img/land-trading-sale/percent-1.webp") center no-repeat;
    background-size: contain;
}

.trading-plan__title_sale span {
    display: inline-block;
    position: relative;
}

.trading-plan__title_sale span::after {
    content: '';
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    width: 61px;
    height: 62px;
    background: url("../img/land-trading-sale/free.webp") center no-repeat;
    background-size: contain;
}

.trading-plan__package-sale {
    background-color: #EB2A2D;
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 24px;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
    font-weight: 700;
    white-space: nowrap;
    border-bottom-left-radius: 24px;
}

.trading-top_sale .trading-top__screens-img {
    margin-top: -50px;
}

.trading-conditions_sale .trading-conditions__item_profit .trading-conditions__item-img {
    right: 0;
}

.trading-conditions_sale .trading-conditions__item_funded .trading-conditions__item-img {
    right: 0;
}

@media (max-width: 768px) {
    .trading-sale {
        height: 32px;
        gap: 30px;
    }

    .trading-sale__item {
        font-size: 14px;
    }

    .trading-plan__package-sale {
        padding: 6px 16px;
        font-size: 14px;
    }

    .trading-plan_sale .trading-plan__package-content {
        padding-top: 34px;
    }
}

/* ======= 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: -126px;
    position: absolute;
    width: 281px;
    height: 257px;
    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: -70px;
    top: -50px;
    position: absolute;
    width: 144px;
    height: 143px;
    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: 258px;
    height: 256px;
    background: url("../img/land-packages/summer/works-1.webp") center no-repeat;
    background-size: contain;
    top: 30px;
    left: 120px;
}

.packages-works_summer::after {
    content: '';
    display: block;
    position: absolute;
    width: 186px;
    height: 185px;
    background: url("../img/land-packages/summer/works-2.webp") center no-repeat;
    background-size: contain;
    top: 40px;
    right: 107px;
}

@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: 30px;
        left: 20px;
        width: 174px;
        height: 180px;
    }

    .packages-works_summer::after {
        top: 40px;
        width: 129px;
        height: 174px;
        right: 20px;
    }
}

@media (max-width: 992px) {
    .packages-prices_summer .packages-prices__icons::before {
        left: -23px;
        top: -56px;
        width: 160px;
        height: 160px;
    }

    .packages-prices_summer .packages-prices__icons::after {
        width: 104px;
        height: 103px;
        right: -45px;
        top: -20px;
    }

    .packages-works_summer::before {
        top: -50px;
        width: 174px;
        height: 180px;
        left: 20px;
    }

    .packages-works_summer::after {
        top: -50px;
        width: 129px;
        height: 174px;
        right: 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 {
        display: none;
    }

    .packages-works_summer::after {
        display: none;
    }
}

/* ======= 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;
    }
}

/* ======= competition ======= */

.competition-body {
    background-color: #1D1B20;
}

.competition-body .main-wrapper {
    background-color: #1D1B20;
}

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

.competition-header::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/land-competition/header.webp") center no-repeat #1D1B20;
    background-size: cover;
}

.competition-header__content {
    max-width: 600px;
    padding-top: 80px;
    padding-bottom: 180px;
    position: relative;
    z-index: 3;
}

.competition-header__start {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.competition-header__start-item {
    padding: 0 16px;
    border-radius: 72px;
    background-color: rgba(255, 255, 255, 0.08);
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 130%;
    font-weight: 600;
    color: #FFFFFF;
}

.competition-header__start-item_date {
    background-color: #705EEC;
}

.competition-header__title {
    margin-top: 16px;
    font-size: 66px;
    line-height: 120%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-header__desc {
    margin-top: 32px;
    font-size: 14px;
    line-height: 160%;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.5;
}

.competition-header__control {
    margin-top: 32px;
}

.competition-header__btn {
    min-width: 161px;
    height: 48px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 72px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 16px 5px rgba(25, 217, 141, 0.4);
    background-color: #19D98D;
    font-size: 16px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.competition-header__btn:hover {
    color: #FFFFFF;
}

.competition-why {
    margin-top: 112px;
}

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

.competition-why__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: end;
}

.competition-why__place {
    position: relative;
    padding: 42px 32px;
    border-radius: 18px;
    background-color: #FFFFFF;
}

.competition-why__place-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #BEBCB7;
    border-radius: 36px;
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 24px;
    font-size: 18px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-why__place-title {
    text-align: center;
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    color: #1D1B20;
    word-break: break-word;
}

.competition-why__place-list {
    margin-top: 40px;
}

.competition-why__place-item {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    color: #1D1B20;
}

.competition-why__place-item:not(:last-child) {
    margin-bottom: 12px;
}

.competition-why__place-item::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: url("../img/land-competition/why-check.svg") center no-repeat;
    background-size: contain;
}

.competition-why__power {
    margin-top: 12px;
    border-radius: 18px;
    background-color: #323037;
    height: 118px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 26px;
    position: relative;
}

.competition-why__power-icon {
    flex-shrink: 0;
}

.competition-why__power-text {
    flex-grow: 1;
}

.competition-why__power-price {
    font-size: 24px;
    line-height: 130%;
    font-weight: 800;
    color: #FFFFFF;
}

.competition-why__power-label {
    margin-top: 6px;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    color: #FFFFFF;
    padding-right: 100px;
}

.competition-why__power-place {
    position: absolute;
    bottom: 0;
    right: 0;
}

.competition-why__power-place img {
    width: 150px;
}

.competition-why__item_second .competition-why__place {
    min-height: 290px;
}

.competition-why__item_first .competition-why__place-label {
    background-color: #FFC149;
    color: #1D1B20;
}

.competition-why__item_first .competition-why__place {
    min-height: 338px;
    background: url("../img/land-competition/why-place-first.webp") center no-repeat #1D1B20;
    background-size: cover;
}

.competition-why__item_first .competition-why__place-title {
    color: #FFFFFF;
}

.competition-why__item_first .competition-why__place-item {
    color: #FFFFFF;
}

.competition-why__item_third .competition-why__place-label {
    background-color: #D18F7B;
}

.competition-why__item_third .competition-why__place {
    min-height: 224px;
}

.competition-exclusive {
    margin-top: 112px;
}

.competition-exclusive__container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.competition-exclusive__bg {
    width: 500px;
    flex-shrink: 0;
}

.competition-exclusive__content {
    flex-grow: 1;
    max-width: 608px;
}

.competition-exclusive__title {
    font-size: 42px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-exclusive__list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.competition-exclusive__item {
    width: 100%;
    border-radius: 24px;
    background-color: #323037;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.competition-exclusive__item-icon {
    flex-shrink: 0;
    width: 46px;
}

.competition-exclusive__item-text {
    flex-grow: 1;
}

.competition-exclusive__item-title {
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-exclusive__item-subtitle {
    margin-top: 8px;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    color: #FFFFFF;
}

.competition-best {
    margin-top: 112px;
}

.competition-best__content {
    background-color: #1D1B20;
    border-radius: 40px;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.competition-best__content::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 561px;
    height: 100%;
    background: url("../img/land-competition/best-bg-1.webp") left bottom no-repeat;
    background-size: contain;
}

.competition-best__content::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 596px;
    height: 100%;
    background: url("../img/land-competition/best-bg-2.webp") right top no-repeat;
    background-size: contain;
}

.competition-best__title {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 48px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-best__title span {
    color: #19D98D;
}

.competition-required {
    margin-top: 112px;
}

.competition-required__container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.competition-required__bg {
    position: absolute;
    top: 0;
    width: 808px;
    right: -300px;
}

.competition-required__content {
    width: 660px;
}

.competition-required__title {
    font-size: 42px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-required__list {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.competition-required__item {
    border-radius: 24px;
    background-color: #323037;
    padding: 24px;
}

.competition-required__item-icon {
    width: 46px;
}

.competition-required__item-title {
    margin-top: 16px;
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    color: #FFFFFF;
}

.competition-how {
    margin-top: 112px;
}

.competition-how__container {
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.competition-how__bg {
    width: 500px;
    flex-shrink: 0;
}

.competition-how__content {
    flex-grow: 1;
    max-width: 595px;
}

.competition-how__title {
    font-size: 42px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-how__list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.competition-how__item {
    width: 100%;
    border-radius: 24px;
    background-color: #323037;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.competition-how__item-icon {
    flex-shrink: 0;
    width: 46px;
}

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

.competition-how__item-title {
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-how__item-subtitle {
    margin-top: 8px;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    color: #FFFFFF;
}

.competition-dates {
    margin-top: 112px;
}

.competition-dates__title {
    text-align: center;
    font-size: 42px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-dates__list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.competition-dates__item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 8px 0;
    min-height: 62px;
    background-color: #323037;
    border-radius: 29px;
}

.competition-dates__item-date {
    width: 388px;
    flex-shrink: 0;
    padding-left: 50px;
    padding-right: 20px;
    font-size: 30px;
    line-height: 130%;
    font-weight: 800;
    color: #FFFFFF;
}

.competition-dates__item-info {
    width: 388px;
    flex-shrink: 0;
    padding-left: 50px;
    padding-right: 20px;
    font-size: 19px;
    line-height: 140%;
    font-weight: 400;
    color: #FFFFFF;
}

.competition-dates__item-arrow {
    flex-grow: 1;
}

.competition-dates__item-arrow img {
    width: 100%;
}

.competition-dates__item_green {
    background-color: #19D98D;
    backdrop-filter: blur(21.200000762939453px);
}

.competition-dates__item_green .competition-dates__item-date {
    color: #000000;
}

.competition-dates__item_green .competition-dates__item-info {
    color: #000000;
    font-weight: 700;
}

.competition-ready {
    margin-top: 112px;
}

.competition-ready__inner {
    border-radius: 40px;
    padding: 120px 54px;
    position: relative;
    overflow: hidden;
}

.competition-ready__content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.competition-ready__title {
    font-size: 42px;
    line-height: 140%;
    font-weight: 700;
    color: #FFFFFF;
}

.competition-ready__desc {
    margin-top: 16px;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.5;
    max-width: 500px;
}

.competition-ready__control {
    margin-top: 56px;
}

.competition-ready__btn {
    min-width: 161px;
    height: 48px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 72px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 16px 5px rgba(25, 217, 141, 0.4);
    background-color: #19D98D;
    font-size: 16px;
    line-height: 130%;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.competition-ready__btn:hover {
    color: #FFFFFF;
}

.competition-ready__bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center right;
}

.competition-disclaimer {
    margin-top: 40px;
}

.competition-disclaimer__inner {
    padding-top: 110px;
    padding-bottom: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.competition-disclaimer__inner::after {
    content: '';
    display: block;
    position: absolute;
    left: -150px;
    bottom: 0;
    width: 989px;
    height: 413px;
    background: url("../img/land-competition/disclaimer-bg.webp") left bottom no-repeat;
    background-size: contain;
}

.competition-disclaimer__title {
    text-align: center;
    font-size: 42px;
    line-height: 140%;
    font-weight: 700;
    color: #FFFFFF;
    position: relative;
    z-index: 5;
}

.competition-disclaimer__desc {
    background: rgba(50, 48, 55, 0.7);
    border-radius: 31px;
    padding: 25px 18px;
    text-align: center;
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    color: #FFFFFF;
    width: 494px;
    position: relative;
    z-index: 5;
}

.competition-disclaimer__imgs::before {
    content: '';
    display: block;
    position: absolute;
    left: 220px;
    bottom: 20px;
    width: 245px;
    height: 276px;
    background: url("../img/land-competition/disclaimer-img-1.webp") center no-repeat;
    background-size: contain;
    z-index: 2;
}

.competition-disclaimer__imgs::after {
    content: '';
    display: block;
    position: absolute;
    right: 260px;
    top: 80px;
    width: 130px;
    height: 141px;
    background: url("../img/land-competition/disclaimer-img-2.webp") center no-repeat;
    background-size: contain;
    z-index: 2;
}

.competition-support {
    margin-top: 40px;
}

.competition-support__container {
    position: relative;
    overflow: hidden;
    background: url("../img/land-competition/support-bg.webp") center no-repeat;
    background-size: 967px;
}

.competition-support__imgs::before {
    content: '';
    display: block;
    position: absolute;
    left: 50px;
    bottom: 0;
    width: 206px;
    height: 105px;
    background: url("../img/land-competition/support-img-1.webp") left bottom no-repeat;
    background-size: contain;
    z-index: 2;
}

.competition-support__imgs::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 279px;
    height: 146px;
    background: url("../img/land-competition/support-img-2.webp") top right no-repeat;
    background-size: contain;
    z-index: 2;
}

.competition-support__inner {
    padding: 44px 0;
    position: relative;
    z-index: 5;
}

.competition-support__title {
    text-align: center;
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
    color: #FFFFFF;
    opacity: 0.5;
}

.competition-support__email {
    margin-top: 16px;
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 130%;
    font-weight: 600;
    color: #FFFFFF;
}

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

    .competition-why__power-place img {
        width: 100px;
    }

    .competition-why__power-label {
        padding-right: 60px;
    }

    .competition-exclusive__bg {
        width: 400px;
    }

    .competition-exclusive__container {
        gap: 60px;
    }

    .competition-required__bg {
        top: 50px;
        right: -330px;
        width: 600px;
    }

    .competition-how__bg {
        width: 450px;
    }

    .competition-ready__bg {
        opacity: 0.5;
    }

    .competition-disclaimer__imgs::before {
        left: 60px;
    }

    .competition-disclaimer__imgs::after {
        right: 160px;
    }
}

@media (max-width: 992px) {
    .competition-why__list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .competition-why__item_first {
        order: 1;
    }

    .competition-why__item_second {
        order: 2;
    }

    .competition-why__item_third {
        order: 3;
    }

    .competition-why__power-label {
        padding-right: 0;
    }

    .competition-exclusive__container {
        flex-direction: column;
        gap: 30px;
    }

    .competition-exclusive__content {
        max-width: none;
        width: 100%;
    }

    .competition-best__content::before {
        width: 100%;
    }

    .competition-best__content::after {
        width: 100%;
    }

    .competition-required__container {
        flex-direction: column;
        gap: 50px;
    }

    .competition-required__content {
        width: 100%;
    }

    .competition-required__bg {
        position: relative;
        top: 0;
        height: 400px;
        right: 0;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .competition-how__container {
        flex-direction: column;
        gap: 50px;
    }

    .competition-how__content {
        order: 1;
        max-width: none;
        width: 100%;
    }

    .competition-how__bg {
        order: 2;
        width: 100%;
        max-height: 400px;
        object-fit: contain;
        object-position: center;
    }

    .competition-dates__item-arrow {
        display: none;
    }

    .competition-disclaimer__imgs {
        opacity: 0.6;
    }

    .competition-disclaimer__imgs::before {
        left: 30px;
        width: 145px;
    }

    .competition-disclaimer__imgs::after {
        right: 100px;
        width: 80px;
    }

    .competition-support__imgs {
        opacity: 0.6;
    }

    .competition-support__imgs::before {
        width: 106px;
    }

    .competition-support__imgs::after {
        width: 179px;
    }
}

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

    .competition-header__content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .competition-header__start-item {
        font-size: 14px;
        height: 32px;
    }

    .competition-header__title {
        font-size: 40px;
    }

    .competition-header__btn {
        width: 100%;
    }

    .competition-why {
        margin-top: 80px;
    }

    .competition-why__title {
        font-size: 32px;
    }

    .competition-why__place {
        padding-left: 20px;
        padding-right: 20px;
    }

    .competition-why__power {
        padding: 0 20px;
        gap: 20px;
    }

    .competition-why__power-place {
        top: 0;
        bottom: auto;
    }

    .competition-why__power-place img {
        width: 50px;
    }

    .competition-exclusive {
        margin-top: 80px;
    }

    .competition-exclusive__title {
        font-size: 32px;
    }

    .competition-exclusive__list {
        margin-top: 40px;
    }

    .competition-exclusive__item {
        padding: 20px;
        gap: 20px;
    }

    .competition-exclusive__bg {
        width: 100%;
        height: 350px;
        object-fit: contain;
        object-position: center;
    }

    .competition-best {
        margin-top: 80px;
    }

    .competition-best__content {
        border-radius: 20px;
        padding: 80px 20px;
    }

    .competition-best__title {
        font-size: 32px;
    }

    .competition-best__content::before,
    .competition-best__content::after {
        background-size: cover;
    }

    .competition-required {
        margin-top: 80px;
    }

    .competition-required__title {
        font-size: 32px;
    }

    .competition-required__container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .competition-required__list {
        margin-top: 40px;
        grid-template-columns: 1fr;
    }

    .competition-required__item {
        padding: 20px;
    }

    .competition-required__bg {
        height: auto;
    }

    .competition-how {
        margin-top: 80px;
    }

    .competition-how__container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .competition-how__title {
        font-size: 32px;
    }

    .competition-how__list {
        margin-top: 40px;
    }

    .competition-how__item {
        padding: 20px;
        gap: 20px;
    }

    .competition-dates {
        margin-top: 80px;
    }

    .competition-dates__title {
        font-size: 32px;
    }

    .competition-dates__list {
        margin-top: 40px;
    }

    .competition-dates__item {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 20px;
    }

    .competition-dates__item-date {
        width: auto;
        padding: 0;
        font-size: 22px;
    }

    .competition-dates__item-info {
        margin-top: 8px;
        width: auto;
        padding: 0;
        font-size: 16px;
    }

    .competition-ready {
        margin-top: 80px;
    }

    .competition-ready__inner {
        border-radius: 30px;
        padding: 60px 20px;
        overflow: hidden;
    }

    .competition-ready__bg {
        opacity: 0.2;
        object-fit: cover;
    }

    .competition-ready__btn {
        width: 100%;
    }

    .competition-ready__title {
        font-size: 32px;
    }

    .competition-disclaimer__inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .competition-disclaimer__title {
        font-size: 32px;
    }

    .competition-disclaimer__imgs {
        opacity: 0.4;
    }

    .competition-disclaimer__imgs::before {
        width: 100px;
        height: 100px;
    }

    .competition-disclaimer__imgs::after {
        width: 60px;
        height: 80px;
        top: 120px;
        right: 60px;
    }

    .competition-disclaimer__desc {
        width: 100%;
        border-radius: 16px;
        padding: 20px;
    }

    .competition-support__imgs::before {
        left: 20px;
        height: 30px;
    }

    .competition-support__imgs::after {
        height: 60px;
    }
}

/* ===================== */
