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: "Montserrat", sans-serif;
    font-size: 14px;
    color: #000000;
    line-height: 1.4;
    min-width: 350px;
}
  
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

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

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
    outline: none;
}
  
a {
    text-decoration: none;
    cursor: pointer;
    color: #4166EB;
}
  
a:hover {
    opacity: .7;
    text-decoration: none;
}
  
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: #4166EB;
    border: 2px solid #4166EB;
    border-radius: 8px;
    padding: 14px 30px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

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

.btn_transparent {
    background-color: transparent;
    border-color: #DADCE2;
    color: #000000;
}

.btn_transparent:hover {
    color: #000000;
}

.btn:disabled {
    opacity: 0.65 !important;
    cursor: not-allowed;
}

.__hide {
    display: none;
}

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

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

.pagination-item a,
.pagination-item span {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.pagination-item.disabled span {
    width: auto;
}

.pagination-item a:hover {
    color: #0B0D15;
    border-color: #4166EB;
}

.pagination-item_active a {
    background: #4166EB !important;
    color: #FFFFFF !important;
}

.pagination-item_next a {
    background: #F0F1F3;
}

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

.pagination-item_prev a {
    background: #F0F1F3;
    transform: rotate(180deg);
}

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

@media (max-width: 600px) {
    .pagination {
        display: block;
    }

    .pagination-list {
        gap: 4px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pagination-item a,
    .pagination-item span {
        font-size: 14px;
        width: auto;
        min-width: 36px;
        padding-left: 8px;
        padding-right: 8px;
        height: 40px;
    }

    .pagination-item.disabled span {
        padding: 0;
        min-width: 0;
    }

    .pagination-item img {
        max-width: 14px;
    }
}

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

.modal-notification__body {
    padding: 24px;
    position: relative;
}

.modal-notification__close {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-notification__message {
    padding: 40px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    font-weight: 400;
    font-size: 18px;
}

.modal-notification__message i {
    margin-right: 12px;
    font-size: 20px;
}

.modal-notification_success .modal-notification__message_success {
    display: flex;
    color: #28a745;
}

.modal-notification_error .modal-notification__message_error {
    display: flex;
    color: #dc3545;
}

.modal-notification__control {
    text-align: center;
}

.modal-notification__btn {
    width: 200px;
    max-width: 100%;
}

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

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

@media (max-width: 1200px) {
    .ui-container {
        max-width: 944px;
    }
}

@media (max-width: 940px) {
    .ui-container {
        max-width: 708px;
    }
}

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

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

.main-wrapper_auth {
    padding-top: 54px;
}

.header {
    max-width: 1206px;
    padding: 20px;
    margin: 0 auto;
}

.header-menu {
    display: flex;
    align-items: center;
}

.header-menu__logo {
    margin-right: 24px;
}

.header-menu__control {
    margin-left: 20px;
    display: flex;
    column-gap: 12px;
    display: flex;
    align-items: center;
}

.header-menu__nav {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.header-menu__nav-control {
    display: flex;
    align-items: center;
    background-color: #4166EB;
    border-radius: 6px;
    padding: 6px 0;
}

.header-menu__nav-control-btn {
    padding: 0px 16px;
    color: #FFFFFF;
    line-height: 24px;
    font-weight: 500;
    font-size: 13px;
}

.header-menu__nav-control-btn:hover {
    color: #FFFFFF;
}

.header-menu__nav-control-btn:first-child {
    border-right: 1px solid rgba(11, 13, 21, 0.2);
}

.header-menu__nav-control {
    margin-right: 20px;
}

.header-menu__nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.header-menu__nav-link {
    color: #6D6E73;
    font-weight: 500;
    font-size: 13px;
    line-height: 160%;
}

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

.header-menu__nav-item {
    position: relative;
}

.header-menu__nav-item-new {
    position: absolute;
    color: #3ABE00;
    font-weight: 700;
    font-size: 11px;
    line-height: 160%;
    right: 0;
    top: -10px;
}

.header-menu__nav-link_green {
    color: #3ABE00;
}

.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: 13px;
    font-weight: 500;
    color: #0B0D15;
    opacity: 0.6;
}

.header-menu__nav-dropdown .dropdown-item:hover {
    opacity: 0.5;
}

.header-menu__control-lang {
    color: #0B0D15;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    cursor: pointer;
}

.header-menu__control-lang:hover {
    opacity: .7;
    text-decoration: none;
    color: #0056b3;
}

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

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

.header-menu__control-dropdown .dropdown-item {
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    color: #0B0D15;
    opacity: 0.6;
    cursor: pointer;
}

.header-menu__control-dropdown .dropdown-item:hover {
    opacity: 0.5;
}

.header-menu__control-item_burger {
    display: none;
}

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

.header-burger-dropdown {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    z-index: 1000;
    background-color: #F5F5F5;
    overflow: hidden;
}

.header-burger-dropdown_active {
    width: 360px;
}

.header-burger-dropdown__container {
    width: 360px;
    height: 100%;
    padding: 14px 16px;
    overflow: auto;
}

.header-burger-dropdown__header img {
    height: 32px;
}

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

.header-burger-dropdown__langs {
    margin-top: 40px;
    display: flex;
    column-gap: 16px;
}

.header-burger-dropdown__lang {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    text-transform: uppercase;
    cursor: pointer;
}

.header-burger-dropdown__lang:hover {
    opacity: .7;
    text-decoration: none;
    color: #0056b3;
}

.header-burger-dropdown__lang_active {
    color: #4166EB;
}

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

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

.header-burger-dropdown__nav-link {
    font-weight: 500;
    font-size: 23px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: #6D6E73;
    display: inline-block;
    position: relative;
}

.header-burger-dropdown__nav-item-new {
    position: absolute;
    color: #3ABE00;
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    right: 0;
    top: -12px;
}

.header-burger-dropdown__nav-link_green {
    color: #3ABE00;
}

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

.header-burger-dropdown__control-btn {
    display: block;
    font-size: 16px;
    line-height: 24px;
}

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

@media (max-width: 1200px) {
    .header {
        max-width: 944px;
        padding: 12px 20px;
    }

    .header-menu__logo img {
        height: 25px;
        width: auto;
    }

    .header-menu__nav-control {
        margin-right: 0;
    }

    .header-menu__nav-list {
        margin: 0 auto;
    }

    .header-menu__nav-link {
        font-size: 12px;
    }

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

    .header-menu__control-btn {
        font-size: 13px;
        line-height: 160%;
        padding: 11px 30px;
    }

    .header-menu__control {
        column-gap: 20px;
        margin-left: 0;
    }

    .header-menu__control-item_burger {
        display: block;
    }
}

@media (max-width: 940px) {
    .header {
        max-width: 708px;
    }

    .header-menu__nav-list {
        display: none;
    }

    .header-menu__logo {
        margin-right: 26px;
    }

    .header-menu__control {
        column-gap: 28px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 15px 16px;
    }

    .header-menu__logo {
        margin-right: 16px;
    }

    .header-menu__nav {
        display: none;
    }

    .header-burger-dropdown__close {
        right: 10px;
    }

    .header-menu__control {
        margin-left: auto;
        column-gap: 10px;
    }

    .header-menu__control-btn {
        font-size: 13px;
        line-height: 160%;
        padding: 8px 16px;
    }

    .header-burger-dropdown_active {
        width: 100%;
    }

    .header-burger-dropdown__container {
        width: 100%;
    }
}

/* ======= start-buy ======= */

.start-buy {
    max-width: 1206px;
    padding: 50px 20px 122px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.start-buy::after {
    content: '';
    display: block;
    position: absolute;
    top: 32px;
    right: -10px;
    width: 181px;
    height: 511px;
    background: url("../img/start-buy/calc-bg.webp") center no-repeat;
    background-size: contain;
}

.start-buy__row {
    display: flex;
    align-items: center;
}

.start-buy__content {
    flex-grow: 1;
}

.start-buy__content-title {
    font-size: 52px;
    line-height: 117%;
    font-weight: 400;
    color: #0B0D15;
    letter-spacing: -0.05em;
    max-width: 541px;
}

.start-buy__content-title span {
    color: #4166EB;
    font-weight: 600;
}

.start-buy__content-text {
    margin-top: 24px;
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
    max-width: 477px;
}

.start-buy__app {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    max-width: 450px;
    justify-content: center;
    gap: 8px;
}

.start-buy__app-item {
    flex-shrink: 0;
}

.start-buy__app-item img {
    width: auto;
    height: 40px;
}

.start-buy__calc {
    margin-left: 20px;
    padding-right: 121px;
    flex-shrink: 0;
}

.start-buy-calc__container {
    width: 460px;
    border-radius: 8px;
    background-color: #F0F1F3;
}

.start-buy-calc__container_loading {
    position: relative;
}

.start-buy-calc__container_loading:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
}

.start-buy-calc__container_loading:after {
    content: '';
    position: absolute;
    z-index: 2;
    display: block;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border: 5px solid #c0c1c2;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.start-buy-calc__type {
    padding: 32px 24px 0;
    display: flex;
}

.start-buy-calc__type-item {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 14px;
    text-align: center;
    flex-grow: 1;
    flex-shrink: 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    color: #0B0D15;
    opacity: 0.35;
}

.start-buy-calc__type-item_active {
    border-bottom-color: #4166EB;
    opacity: 1;
}

.start-buy-calc__form {
    padding: 40px;
    border-top: 1px solid #B5B5B5;
    margin-top: -1px;
}

.start-buy-calc__fields {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    position: relative;
}

.start-buy-calc__fields_reverse {
    flex-direction: column-reverse;
}

.start-buy-calc__field {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
}

.start-buy-calc__input {
    height: 24px;
    border: none;
    padding: 0;
    background-color: transparent;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #0B0D15;
    flex-grow: 1;
    min-width: 100px;
}

.start-buy-calc__input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.start-buy-calc__currency {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.start-buy-calc__currency img {
    border-radius: 12px;
    width: 24px;
    height: 24px;
    -o-object-fit: cover;
    object-fit: cover;
}

.start-buy-calc__currency-container {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #0B0D15;
}

.start-buy-calc__currency-container img {
    margin-right: 9px;
}

.start-buy-calc__currency-container.dropdown-toggle:after {
    display: inline-block;
    margin-left: 17px;
    vertical-align: middle;
    content: "";
    border: none;
    width: 24px;
    height: 24px;
    background: url("../img/start-buy/currency-arrow.svg") center no-repeat;
}

.start-buy-calc__currency-dropdown {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-height: 236px;
    overflow-y: auto;
}

.start-buy-calc__currency-dropdown-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
}

.start-buy-calc__currency-dropdown-item img {
    margin-right: 9px;
}

.start-buy-calc__switch {
    width: 32px;
    height: 32px;
    background: url("../img/start-buy/switch.svg") center no-repeat;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.start-buy-calc__card {
    margin-top: 16px;
}

.start-buy-calc__card-dropdown {
    border: none;
    width: 100%;
    max-height: 216px;
    overflow-y: auto;
}

.start-buy-calc__card-dropdown .start-buy-calc__card-arrow {
    visibility: hidden;
}

.start-buy-calc__card-container {
    white-space: normal;
}

.start-buy-calc__card-container.dropdown-toggle:after {
    display: none;
}

.start-buy-calc__card-dropdown-item {
    width: 100%;
    white-space: normal;
    padding: 0;
}

.start-buy-calc__card-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    min-height: 56px;
}

.start-buy-calc__card .start-buy-calc__card-item {
    background-color: #fcfcfc;
    border-radius: 8px;
}

.start-buy-calc__card-dropdown .start-buy-calc__card-item:hover {
    background-color: #FFFFFF;
    opacity: 0.7;
}

.start-buy-calc__card-icon {
    width: 32px;
    height: 32px;
    background-color: #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
}

.start-buy-calc__card-icon img {
    max-width: 18px;
    max-height: 18px;
}

.start-buy-calc__card-name {
    flex-grow: 1;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #0B0D15;
    margin-left: 12px;
}

.start-buy-calc__card-item_prompt .start-buy-calc__card-name {
    margin-left: 0;
    color: #757575;
}

.start-buy-calc__card-item_empty .start-buy-calc__card-name {
    margin-left: 0;
    color: #757575;
    text-align: center;
}

.start-buy-calc__card-subtitle {
    opacity: 0.6;
    margin-top: 8px;
}

.start-buy-calc__card-subtitle span {
    white-space: nowrap;
}

.start-buy-calc__card-price {
    background-color: #D2FF28;
    border-radius: 6px;
    padding: 6px;
    font-weight: 600;
    font-size: 13px;
    line-height: 14px;
    margin-left: 10px;
    width: 92px;
    text-align: center;
}

.start-buy-calc__card-arrow {
    width: 24px;
    height: 24px;
    background: url("../img/start-buy/currency-arrow.svg") center no-repeat;
    margin-left: 20px;
}

.start-buy-calc__card-item_empty .start-buy-calc__card-arrow {
    display: none;
}

.start-buy-calc__control {
    margin-top: 30px;
}

.start-buy-calc__control-btn {
    width: 100%;
}

.start-buy__features {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
}

.start-buy__feature {
    padding: 19px 16px;
    background-color: #F0F1F3;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.start-buy__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-color: #454545;
    flex-shrink: 0;
    margin-right: 12px;
}

.start-buy__feature-text {
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
}

/** ru */

.start-buy__content-title_ru {
    font-size: 40px;
}

@media (max-width: 1200px) {
    .start-buy {
        max-width: 944px;
        padding: 48px 20px 50px;
    }

    .start-buy::after {
        content: '';
        display: block;
        position: absolute;
        top: 32px;
        right: 18px;
        width: 149px;
        height: 421px;
        background: url("../img/start-buy/calc-bg.webp") center no-repeat;
        background-size: contain;
    }

    .start-buy__content-title {
        font-size: 40px;
        line-height: 117%;
        letter-spacing: -0.04em;
    }

    .start-buy__content-text {
        margin-top: 22px;
        font-size: 12px;
        max-width: 377px;
    }

    .start-buy__app {
        margin-top: 43px;
    }

    .start-buy-calc__container {
        width: 340px;
        border-radius: 6px;
    }

    .start-buy-calc__type {
        padding: 16px 24px 0;
    }

    .start-buy-calc__type-item {
        padding-bottom: 6px;
        font-size: 14px;
        line-height: 18px;
    }

    .start-buy-calc__form {
        padding: 33px 14px 14px;
    }

    .start-buy-calc__fields {
        row-gap: 10px;
    }

    .start-buy-calc__field {
        padding: 12px;
    }

    .start-buy-calc__card-item {
        padding: 8px 12px;
    }

    .start-buy-calc__currency-container.dropdown-toggle:after {
        margin-left: 10px;
    }

    .start-buy-calc__card {
        margin-top: 10px;
    }

    .start-buy-calc__card-icon {
        width: 24px;
        height: 24px;
        border-radius: 12px;
    }

    .start-buy-calc__card-icon img {
        width: 13px;
    }

    .start-buy-calc__card-name {
        margin-left: 9px;
    }

    .start-buy-calc__card-subtitle {
        margin-top: 4px;
        font-size: 11px;
        line-height: 128%;
    }

    .start-buy-calc__card-price {
        border-radius: 5px;
        font-size: 10px;
        line-height: 160%;
        width: auto;
        padding: 4px 11px;
        white-space: nowrap;
        margin-left: 0;
    }

    .start-buy-calc__card-arrow {
        margin-left: 0;
    }

    .start-buy-calc__control {
        margin-top: 20px;
    }

    .start-buy__features {
        margin-top: 74px;
    }

    .start-buy__feature {
        padding: 16px 8px;
    }

    .start-buy__feature-text {
        font-size: 12px;
    }

    /** ru */

    .start-buy__content-title_ru {
        font-size: 28px;
    }
}

@media (max-width: 940px) {
    .start-buy {
        max-width: 708px;
    }

    .start-buy::after {
        bottom: 257px;
        top: auto;
        left: 465px;
        right: auto;
        width: 181px;
        height: 511px;
    }

    .start-buy__row {
        display: block;
    }

    .start-buy__content {
        margin-bottom: 38px;
    }

    .start-buy__content-title {
        font-size: 52px;
        line-height: 117%;
    }

    .start-buy__content-text {
        margin-top: 24px;
        font-size: 14px;
        line-height: 160%;
        max-width: 567px;
    }

    .start-buy__app {
        margin-top: 24px;
        column-gap: 10px;
    }

    .start-buy__calc {
        margin-left: 0;
    }

    .start-buy-calc__container {
        width: 477px;
        border-radius: 8px;
    }

    .start-buy-calc__type {
        padding: 32px 32px 0;
    }

    .start-buy-calc__type-item {
        padding-bottom: 15px;
        font-size: 16px;
        line-height: 24px;
    }

    .start-buy-calc__form {
        padding: 40px;
    }
    
    .start-buy-calc__fields {
        row-gap: 8px;
    }

    .start-buy-calc__field {
        padding: 16px;
    }

    .start-buy-calc__card-item {
        padding: 8px 16px;
    }

    .start-buy-calc__input {
        height: 32px;
    }

    .start-buy-calc__currency img {
        border-radius: 16px;
        width: 32px;
        height: 32px;
    }

    .start-buy-calc__currency-container img {
        margin-right: 12px;
    }

    .start-buy-calc__currency-container.dropdown-toggle:after {
        margin-left: 17px;
    }

    .start-buy-calc__card {
        margin-top: 16px;
    }

    .start-buy-calc__card-icon {
        width: 32px;
        height: 32px;
        border-radius: 16px;
    }

    .start-buy-calc__card-icon img {
        width: auto;
    }

    .start-buy-calc__card-name {
        margin-left: 12px;
        font-size: 14px;
        line-height: 160%;
    }

    .start-buy-calc__card-subtitle {
        margin-top: 0;
        font-size: 14px;
        line-height: 160%;
    }

    .start-buy-calc__card-price {
        border-radius: 6px;
        font-size: 13px;
        line-height: 160%;
        padding: 6px 10px;
    }

    .start-buy-calc__card-arrow {
        margin-left: 3px;
    }

    .start-buy-calc__control {
        margin-top: 30px;
    }

    .start-buy__features {
        margin-top: 46px;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .start-buy__feature {
        padding: 16px 32px 16px 16px;
    }

    .start-buy__feature-text {
        font-size: 14px;
    }

    /** ru */

    .start-buy__content-title_ru {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .start-buy {
        padding: 30px 16px 60px;
    }

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

    .start-buy__content-title {
        font-size: 30px;
        line-height: 117%;
    }

    .start-buy__content-text {
        margin-top: 10px;
    }

    .start-buy__app {
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 11px;
    }

    .start-buy__content {
        margin-bottom: 40px;
    }

    .start-buy__calc {
        padding-right: 0;
    }

    .start-buy-calc__container {
        width: auto;
        border-radius: 6px;
    }

    .start-buy-calc__type {
        padding: 20px 20px 0;
    }

    .start-buy-calc__type-item {
        padding-bottom: 11px;
        line-height: 18px;
    }

    .start-buy-calc__form {
        padding: 35px 8px 20px;
    }

    .start-buy-calc__fields {
        row-gap: 10px;
    }

    .start-buy-calc__field {
        padding: 16px 12px;
    }

    .start-buy-calc__card-item {
        padding: 8px 12px;
    }

    .start-buy-calc__input {
        height: 24px;
    }

    .start-buy-calc__currency img {
        border-radius: 12px;
        width: 24px;
        height: 24px;
        margin-right: 9px;
    }

    .start-buy-calc__currency-container.dropdown-toggle:after {
        margin-left: 6px;
        width: 18px;
        height: 18px;
        background-size: contain;
    }

    .start-buy-calc__card {
        margin-top: 10px;
    }

    .start-buy-calc__card-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        border-radius: 12px;
    }

    .start-buy-calc__card-icon img {
        width: 13px;
    }

    .start-buy-calc__card-name {
        margin-left: 9px;
        line-height: 100%;
    }

    .start-buy-calc__card-subtitle {
        font-size: 11px;
        line-height: 128%;
        margin-top: 4px;
    }

    .start-buy-calc__card-price {
        padding: 4px 11px;
        font-size: 10px;
        line-height: 160%;
    }

    .start-buy-calc__card-arrow {
        width: 18px;
        height: 18px;
        background-size: contain;
    }

    .start-buy-calc__control {
        margin-top: 20px;
    }

    .start-buy__features {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .start-buy__feature {
        padding: 12px 18px;
        min-height: 90px;
    }
}

/* ======= start-secure ======= */

.start-secure {
    background-color: #4166EB;
    padding: 110px 0;
}

.start-secure__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

.start-secure__row {
    display: flex;
    align-items: flex-end;
}

.start-secure__trading {
    flex-shrink: 0;
    margin-left: 30px;
}

.start-secure__trading-btn,
.start-secure__trading-btn:hover {
    background-color: #D2FF28;
    color: #000000;
}

.start-secure__content {
    flex-grow: 1;
}

.start-secure__uptitle {
    color: #F5F5F5;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.start-secure__title {
    margin-top: 24px;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    font-weight: 400;
    max-width: 828px;
    position: relative;
}

.start-secure__title::after {
    content: '';
    display: block;
    position: absolute;
    top: -100px;
    left: 505px;
    width: 260px;
    height: 127px;
    background: url("../img/start-secure/lock.svg") center no-repeat;
    background-size: contain;
}

.start-secure__title span {
    font-weight: 600;
    color: #D2FF28;
}

.start-secure__features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.start-secure__feature {
    padding: 32px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.start-secure__feature_hide {
    display: none;
}

.start-secure__feature-header {
    display: flex;
    align-items: center;
}

.start-secure__feature-icon {
    width: 46px;
    height: 46px;
    background-color: #454545;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
}

.start-secure__feature-title {
    flex-grow: 1;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #0B0D15;
}

.start-secure__feature-text {
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
}

.start-secure__features-more {
    margin-top: 30px;
}

.start-secure__features-more-btn {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #000000;
}

.start-secure__features-more-btn:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #000000;
}

@media (max-width: 1200px) {
    .start-secure {
        padding: 80px 0;
    }

    .start-secure__container {
        max-width: 944px;
    }

    .start-secure__uptitle {
        font-size: 16px;
    }

    .start-secure__title {
        margin-top: 10px;
        font-size: 43px;
        line-height: 110%;
        max-width: 609px;
    }

    .start-secure__title::after {
        width: 196px;
        height: 105px;
        top: -70px;
    }

    .start-secure__row {
        display: block;
    }

    .start-secure__trading {
        margin-top: 30px;
        margin-left: 0;
    }

    .start-secure__features {
        gap: 10px;
    }

    .start-secure__feature {
        padding: 16px;
    }

    .start-secure__feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        margin-right: 13px;
    }

    .start-secure__feature-title {
        font-size: 15px;
        line-height: 140%;
    }

    .start-secure__feature-text {
        font-size: 12px;
        line-height: 160%;
    }
}

@media (max-width: 940px) {
    .start-secure {
        padding: 64px 0;
        overflow: hidden;
    }

    .start-secure__container {
        max-width: 708px;
    }

    .start-secure__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .start-secure__title {
        margin-top: 8px;
    }

    .start-secure__title::after {
        width: 141px;
        height: 76px;
        top: -50px;
    }

    .start-secure__trading {
        margin-top: 20px;
    }

    .start-secure__features {
        margin-top: 32px;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .start-secure__feature {
        padding: 20px;
    }

    .start-secure__feature-icon {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        margin-right: 14px;
    }

    .start-secure__feature-title {
        font-size: 18px;
        line-height: 140%;
    }

    .start-secure__feature-text {
        font-size: 14px;
        line-height: 160%;
    }
}

@media (max-width: 600px) {
    .start-secure {
        padding: 60px 0;
    }

    .start-secure__container {
        padding: 0 16px 76px;
    }

    .start-secure__uptitle {
        font-size: 11px;
        line-height: 15px;
    }

    .start-secure__title {
        margin-top: 10px;
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.07em;
    }

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

    .start-secure__trading {
        margin-top: 0;
        position: absolute;
        bottom: 0;
        left: 16px;
        right: 16px;
    }

    .start-secure__trading-btn {
        display: block;
    }

    .start-secure__features {
        gap: 6px;
        grid-template-columns: 100% 100%;
        overflow: auto;
        padding: 0 16px 10px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .start-secure__feature {
        min-height: 170px;
    }

    .start-secure__feature-text {
        margin-top: 14px;
    }

    .start-secure__features-more-btn {
        display: block;
    }
}

/* ======= start-offer ======= */

.start-offer {
    background: url("../img/start-offer/bg.webp") right center no-repeat #F5F5F5;
    background-size: contain;
    padding: 110px 0 126px;
}

.start-offer__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.start-offer__uptitle {
    font-size: 17px;
    line-height: 24px;
    color: #646464;
    text-transform: uppercase;
    font-weight: 500;
}

.start-offer__title {
    margin-top: 24px;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: #0B0D15;
    max-width: 629px;
}

.start-offer__title span {
    font-weight: 600;
    color: #4166EB;
}

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

.start-offer__features-row {
    display: flex;
    column-gap: 40px;
}

.start-offer__features-col {
    position: relative;
    padding: 20px 0 20px 37px;
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
    min-width: 300px;
}

.start-offer__features-col span {
    display: block;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    background: url("../img/start-offer/check.svg") center no-repeat;
    background-size: contain;
    width: 17px;
    height: 13px;
}

.start-offer__features-col::after {
    content: '';
    display: block;
    width: 300px;
    height: 1px;
    background-color: #000000;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
}

.start-offer__features-row:last-child .start-offer__features-col::before {
    content: '';
    display: block;
    width: 300px;
    height: 1px;
    background-color: #000000;
    opacity: 0.1;
    position: absolute;
    bottom: 0;
    left: 0;
}

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

/** ru */

.start-offer__features_ru {
    margin-top: 40px;
    max-width: 600px;
    max-height: 250px;
    font-size: 14px;
    line-height: 160%;
    position: relative;
    overflow: hidden;
}

.start-offer__features_ru p {
    margin-bottom: 20px;
}

.start-offer__features_ru-full {
    max-height: none;
}

.start-offer__features-more_ru {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #4166EB;
    background: #F5F5F5;
}

.start-offer__features-more_ru::after {
    content: '';
    display: block;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(0deg, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0));
}

.start-offer__features-more_ru span {
    cursor: pointer;
}

.start-offer__features-more_ru span:hover {
    opacity: 0.7;
}

.start-offer__features_ru-full .start-offer__features-more_ru {
    display: none;
}

@media (max-width: 1200px) {
    .start-offer {
        padding: 50px 0;
        background-position: calc(100% + 150px) 0;
        background-size: cover;
    }

    .start-offer__container {
        max-width: 944px;
    }

    .start-offer__uptitle {
        font-size: 16px;
    }

    .start-offer__title {
        margin-top: 12px;
        font-size: 43px;
        line-height: 110%;
        max-width: 580px;
    }

    .start-offer__features {
        margin-top: 32px;
    }

    .start-offer__features-row {
        flex-direction: column;
    }

    .start-offer__trading {
        margin-top: 53px;
    }

    .start-offer__features-row:last-child .start-offer__features-col:first-child:before {
        display: none;
    }
}

@media (max-width: 940px) {
    .start-offer {
        /* background-position: calc(100% + 300px) 0; */
        background: #F5F5F5;
    }

    .start-offer__container {
        max-width: 708px;
    }

    .start-offer__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .start-offer__title {
        margin-top: 8px;
        max-width: 450px;
    }

    .start-offer__features {
        margin-top: 32px;
    }

    .start-offer__trading {
        margin-top: 32px;
    }
}

@media (max-width: 600px) {
    .start-offer {
        padding: 60px 0;
        background: #F5F5F5;
    }

    .start-offer__container {
        padding: 0 16px;
    }

    .start-offer__uptitle {
        font-size: 11px;
        line-height: 15px;
    }

    .start-offer__title {
        margin-top: 10px;
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

    .start-offer__features-col {
        min-width: 0;
    }

    .start-offer__features-col::after,
    .start-offer__features-row:last-child .start-offer__features-col::before {
        width: 100%;
    }

    .start-offer__trading-btn {
        display: block;
    }
}

/* ======= start-app ======= */

.start-app {
    padding: 110px 0;
}

.start-app__header {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.start-app__header-uptitle {
    font-size: 17px;
    line-height: 24px;
    color: #646464;
    text-transform: uppercase;
    font-weight: 500;
}

.start-app__header-title {
    margin-top: 24px;
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.start-app__header-title span {
    font-weight: 600;
    color: #4166EB;
}

.start-app__list {
    max-width: 1382px;
    padding: 0 20px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.start-app__mobile {
    border-radius: 8px;
    height: 594px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 36px;
    background: url("../img/start-app/mobile-bg.webp") center 43px no-repeat #D2FF28;
    background-size: 275px;
}

.start-app__mobile-title {
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #000000;
}

.start-app__mobile-control {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
}

.start-app__web {
    border-radius: 8px;
    height: 594px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 36px;
    background: url("../img/start-app/web-bg.webp") right 72px no-repeat #0A0A0A;
    background-size: 419px;
}

.start-app__web-title {
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}

.start-app__web-control {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-app__web-btn,
.start-app__web-btn:hover {
    background-color: #D2FF28;
    border-color: #D2FF28;
    color: #000000;
    width: 173px;
}

.start-app__apk {
    border-radius: 8px;
    height: 594px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 36px;
    background: url("../img/start-app/apk-bg.webp") center 91px no-repeat #4166EB;
    background-size: 341px;
}

.start-app__apk-title {
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}

.start-app__apk-control {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-app__apk-btn,
.start-app__apk-btn:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #000000;
    width: 173px;
}

@media (max-width: 1300px) {
    .start-app__mobile-btn img {
        height: 50px;
        width: auto;
    }
}

@media (max-width: 1200px) {
    .start-app {
        padding: 80px 0;
    }

    .start-app__header {
        max-width: 944px;
    }

    .start-app__header-uptitle {
        font-size: 16px;
    }

    .start-app__header-title {
        margin-top: 12px;
        font-size: 43px;
        line-height: 110%;
    }

    .start-app__list {
        max-width: 1014px;
    }

    .start-app__mobile {
        height: 422px;
        padding-bottom: 20px;
        background-size: 195px;
        background-position: center 30px;
    }

    .start-app__mobile-title {
        font-size: 22px;
        line-height: 125%;
    }

    .start-app__mobile-control {
        width: 100%;
        margin-top: 30px;
        column-gap: 10px;
    }

    .start-app__mobile-btn img {
        height: 41px;
    }

    .start-app__web {
        height: 422px;
        padding-bottom: 20px;
        background-size: 281px;
        background-position: right 46px;
    }

    .start-app__web-title {
        font-size: 22px;
        line-height: 125%;
    }

    .start-app__web-control {
        width: 100%;
        margin-top: 14px;
        padding: 0 20px;
    }

    .start-app__web-btn,
    .start-app__web-btn:hover {
        display: block;
        width: 100%;
        font-size: 18px;
        line-height: 27px;
        padding: 13px;
    }

    .start-app__apk {
        height: 422px;
        padding-bottom: 20px;
        background-size: 220px;
        background-position: center 65px;
    }

    .start-app__apk-title {
        font-size: 22px;
        line-height: 125%;
    }

    .start-app__apk-control {
        width: 100%;
        margin-top: 14px;
        padding: 0 20px;
    }

    .start-app__apk-btn,
    .start-app__apk-btn:hover {
        display: block;
        width: 100%;
        font-size: 18px;
        line-height: 27px;
        padding: 13px;
    }
}

@media (max-width: 940px) {
    .start-app {
        padding: 64px 0;
    }

    .start-app__header {
        max-width: 708px;
    }

    .start-app__header-uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .start-app__header-title {
        margin-top: 8px;
    }

    .start-app__list {
        margin-top: 32px;
        max-width: 758px;
        gap: 7px;
    }

    .start-app__mobile {
        height: 317px;
        padding-bottom: 16px;
        background-size: 147px;
        background-position: center 23px;
    }

    .start-app__mobile-title {
        font-size: 17px;
        line-height: 125%;
    }

    .start-app__mobile-control {
        width: 100%;
        margin-top: 19px;
        column-gap: 3px;
    }

    .start-app__mobile-btn img {
        height: 32px;
    }

    .start-app__web {
        height: 317px;
        padding-bottom: 16px;
        background-size: 212px;
        background-position: right 34px;
    }

    .start-app__web-title {
        font-size: 17px;
        line-height: 125%;
    }

    .start-app__web-control {
        width: 100%;
        margin-top: 12px;
        padding: 0 16px;
    }

    .start-app__web-btn,
    .start-app__web-btn:hover {
        font-size: 12px;
        line-height: 13px;
        padding: 11px;
    }

    .start-app__apk {
        height: 317px;
        padding-bottom: 16px;
        background-size: 165px;
        background-position: center 53px;
    }

    .start-app__apk-title {
        font-size: 17px;
        line-height: 125%;
    }

    .start-app__apk-control {
        margin-top: 12px;
        padding: 0 16px;
    }

    .start-app__apk-btn,
    .start-app__apk-btn:hover {
        font-size: 12px;
        line-height: 13px;
        padding: 11px;
    }
}

@media (max-width: 600px) {
    .start-app {
        padding: 60px 0;
    }

    .start-app__header {
        padding: 0 16px;
    }

    .start-app__header-uptitle {
        font-size: 11px;
        line-height: 15px;
    }

    .start-app__header-title {
        margin-top: 10px;
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

    .start-app__list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 16px;
    }

    .start-app__mobile {
        height: auto;
        background-size: 192px;
        background-position: center 30px;
        padding: 302px 10px 10px;
    }

    .start-app__mobile-title {
        font-size: 23px;
        line-height: 125%;
    }

    .start-app__mobile-control {
        margin-top: 30px;
        column-gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .start-app__mobile-btn img {
        height: 45px;
    }

    .start-app__web {
        height: auto;
        background-size: 280px;
        padding: 291px 10px 10px;
    }

    .start-app__web-title {
        font-size: 23px;
        line-height: 125%;
    }

    .start-app__web-control {
        margin-top: 30px;
        padding: 0;
    }

    .start-app__web-btn,
    .start-app__web-btn:hover {
        padding: 20px;
        font-size: 16px;
        line-height: 16px;
    }

    .start-app__apk {
        height: auto;
        background-size: 217px;
        background-position: center 64px;
        padding: 291px 10px 10px;
    }

    .start-app__apk-title {
        font-size: 23px;
        line-height: 125%;
    }

    .start-app__apk-control {
        margin-top: 30px;
        padding: 0;
    }

    .start-app__apk-btn,
    .start-app__apk-btn:hover {
        padding: 20px;
        font-size: 16px;
        line-height: 16px;
    }
}

/* ======= start-profit ======= */

.start-profit {
    background-color: #F0F1F3;
    padding: 110px 0 245px;
    position: relative;
    overflow: hidden;
}

.start-profit__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.start-profit__uptitle {
    font-size: 17px;
    line-height: 24px;
    color: #646464;
    text-transform: uppercase;
    font-weight: 500;
}

.start-profit__title {
    margin-top: 24px;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: #0B0D15;
    max-width: 561px;
}

.start-profit__title span {
    font-weight: 600;
    color: #4166EB;
}

.start-profit__content {
    margin-top: 32px;
    max-width: 527px;
}

.start-profit__content p {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #0B0D15;
    opacity: 0.6;
    margin-bottom: 12px;
}

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

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

.start-profit__chart {
    position: absolute;
    top: 130px;
    right: 0;
}

.start-profit__chart-header {
    background-color: #000000;
    border-radius: 8px;
    transform: rotate(-8.61deg);
    font-weight: 400;
    font-size: 44px;
    line-height: 74px;
    color: #FFFFFF;
    position: absolute;
    top: 10px;
    right: -20px;
    padding: 6px 80px 6px 28px;
    z-index: 1;
}

.start-profit__chart-container {
    position: relative;
    width: 793px;
    height: 655px;
    background: url("../img/start-profit/chart.svg") center center no-repeat;
}

.start-profit__chart-start-marker {
    position: absolute;
    bottom: 130px;
    left: -15px;
    width: 36px;
    height: 36px;
    background: url("../img/start-profit/small-marker.svg") center no-repeat;
}

.start-profit__chart-end-marker {
    position: absolute;
    bottom: 340px;
    left: 315px;
    width: 120px;
    height: 120px;
}

.start-profit__chart-end-marker span {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58px;
    height: 58px;
    background: url("../img/start-profit/big-marker.svg") center no-repeat;
}

.start-profit__chart-end-marker small {
    position: absolute;
    left: 0;
    top: 0;
    width: 89px;
    height: 83px;
    background: url("../img/start-profit/lines.webp") center no-repeat;
    background-size: contain;
}

.start-profit__chart-start-value {
    position: absolute;
    bottom: 130px;
    left: 36px;
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000000;
}

.start-profit__chart-start-value small {
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #000000;
    opacity: 0.6;
    letter-spacing: normal;
}

.start-profit__chart-end-value {
    position: absolute;
    bottom: 280px;
    left: 450px;
    font-weight: 600;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
}

.start-profit__chart-end-value small {
    font-size: 20px;
    line-height: 160%;
    color: #000000;
    opacity: 0.6;
    letter-spacing: normal;
}

.start-profit__chart-start-line {
    position: absolute;
    bottom: 75px;
    left: 2px;
    width: 2px;
    height: 83px;
    background: url("../img/start-profit/small-dashed.svg") top center repeat-y;
}

.start-profit__chart-end-line {
    position: absolute;
    bottom: 75px;
    left: 406px;
    width: 2px;
    height: 268px;
    background: url("../img/start-profit/big-dashed.svg") top center repeat-y;
}

.start-profit__chart-bottom-line {
    position: absolute;
    width: 803px;
    height: 1px;
    bottom: 75px;
    left: 3px;
    background: #000000;
}

.start-profit__chart-start-position {
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #000000;
    opacity: 0.6;
    position: absolute;
    bottom: 36px;
    left: -50px;
}

.start-profit__chart-end-position {
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #000000;
    opacity: 0.6;
    position: absolute;
    bottom: 36px;
    left: 360px;
}

@media (max-width: 1200px) {
    .start-profit {
        padding: 80px 0 338px;
    }

    .start-profit__container {
        max-width: 944px;
    }

    .start-profit__uptitle {
        font-size: 16px;
        line-height: 24px;
    }

    .start-profit__title {
        margin-top: 12px;
        font-size: 43px;
        line-height: 110%;
        max-width: 520px;
    }

    .start-profit__content {
        margin-top: 24px;
        max-width: 572px;
    }

    .start-profit__content p {
        font-size: 16px;
        line-height: 148%;
    }

    .start-profit__chart {
        top: 340px;
    }

    .start-profit__chart-header {
        font-size: 30px;
        line-height: 51px;
        padding-right: 40px;
    }

    .start-profit__chart-container {
        width: 564px;
        height: 466px;
        background-size: contain;
    }

    .start-profit__chart-start-marker {
        bottom: 90px;
        left: -12px;
        width: 30px;
        height: 30px;
        background-size: contain;
    }

    .start-profit__chart-start-line {
        height: 40px;
        bottom: 59px;
    }
    
    .start-profit__chart-end-marker {
        bottom: 230px;
        left: 220px;
        width: 85px;
        height: 85px;
    }

    .start-profit__chart-end-marker span {
        width: 48px;
        height: 48px;
        background-size: contain;
    }

    .start-profit__chart-end-marker small {
        width: 58px;
        height: 52px;
    }

    .start-profit__chart-end-line {
        bottom: 59px;
        left: 280px;
        height: 185px;
    }

    .start-profit__chart-bottom-line {
        bottom: 61px;
    }

    .start-profit__chart-start-position {
        bottom: 26px;
        left: -50px;
    }

    .start-profit__chart-end-position {
        bottom: 26px;
        left: 230px;
    }

    .start-profit__chart-start-value {
        bottom: 80px;
        font-size: 35px;
        line-height: 100%;
    }

    .start-profit__chart-end-value {
        bottom: 200px;
        left: 330px;
        font-size: 70px;
        line-height: 100%;
    }

    .start-profit__chart-end-value small {
        font-size: 19px;
        line-height: 160%;
    }
}

@media (max-width: 940px) {
    .start-profit {
        padding: 64px 0 338px;
    }

    .start-profit__container {
        max-width: 708px;
    }

    .start-profit__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .start-profit__title {
        margin-top: 8px;
        font-size: 43px;
        line-height: 110%;
        max-width: 540px;
    }

    .start-profit__content {
        max-width: 490px;
    }

    .start-profit__content p {
        font-size: 14px;
    }

    .start-profit__control {
        margin-top: 32px;
    }

    .start-profit__chart {
        top: 370px;
    }

    .start-profit__chart-header {
        font-size: 27px;
        line-height: 47px;
        font-weight: 400;
        padding-right: 30px;
    }

    .start-profit__chart-container {
        width: 450px;
        height: 400px;
    }

    .start-profit__chart-start-marker {
        bottom: 90px;
        left: -7px;
        width: 20px;
        height: 20px;
    }

    .start-profit__chart-end-marker {
        bottom: 205px;
        left: 185px;
        width: 60px;
        height: 60px;
    }

    .start-profit__chart-end-marker span {
        width: 30px;
        height: 30px;
        background-size: contain;
    }

    .start-profit__chart-end-marker small {
        width: 45px;
        height: 40px;
    }

    .start-profit__chart-end-line {
        left: 229px;
        height: 150px;
    }

    .start-profit__chart-bottom-line {
        bottom: 60px;
    }

    .start-profit__chart-start-position {
        font-size: 11px;
        line-height: 160%;
        bottom: 30px;
        left: -40px;
    }

    .start-profit__chart-end-position {
        font-size: 11px;
        line-height: 160%;
        bottom: 30px;
        left: 190px;
    }

    .start-profit__chart-start-value {
        left: 28px;
        bottom: 80px;
        font-size: 28px;
    }

    .start-profit__chart-start-value small {
        font-size: 12px;
    }

    .start-profit__chart-end-value {
        bottom: 175px;
        left: 265px;
        font-size: 56px;
        line-height: 100%;
    }

    .start-profit__chart-end-value small {
        font-size: 15px;
        line-height: 160%;
        margin-left: 6px;
    }
}

@media (max-width: 600px) {
    .start-profit {
        padding: 60px 0 495px;
    }

    .start-profit__container {
        padding: 0 16px;
    }

    .start-profit__uptitle {
        font-size: 11px;
        line-height: 15px;
    }

    .start-profit__title {
        margin-top: 10px;
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

    .start-profit__content {
        margin-top: 30px;
    }

    .start-profit__control {
        margin-top: 0;
        position: absolute;
        bottom: 60px;
        left: 16px;
        right: 16px;
    }

    .start-profit__btn {
        display: block;
    }
    .start-profit__chart {
        bottom: 140px;
        top: auto;
    }

    .start-profit__chart-header {
        font-size: 22px;
        line-height: 38px;
        top: 20px;
    }

    .start-profit__chart-container {
        width: 340px;
        height: 320px;
    }

    .start-profit__chart-start-marker {
        bottom: 75px;
        left: -7px;
        width: 20px;
        height: 20px;
    }

    .start-profit__chart-end-marker {
        bottom: 160px;
        left: 128px;
        width: 60px;
        height: 60px;
    }

    .start-profit__chart-end-marker span {
        width: 30px;
        height: 30px;
        background-size: contain;
    }

    .start-profit__chart-end-marker small {
        width: 45px;
        height: 40px;
    }

    .start-profit__chart-start-line {
        height: 40px;
        bottom: 42px;
    }

    .start-profit__chart-end-line {
        left: 172px;
        height: 125px;
        bottom: 42px;
    }

    .start-profit__chart-bottom-line {
        bottom: 42px;
    }

    .start-profit__chart-start-position {
        bottom: 15px;
        left: 0;
    }

    .start-profit__chart-end-position {
        bottom: 15px;
        left: 135px;
    }

    .start-profit__chart-start-value {
        left: 20px;
        bottom: 55px;
        font-size: 23px;
        line-height: 100%;
    }

    .start-profit__chart-start-value small {
        font-size: 10px;
    }

    .start-profit__chart-end-value {
        bottom: 145px;
        left: 205px;
        font-size: 46px;
        line-height: 100%;
    }

    .start-profit__chart-end-value small {
        font-size: 12px;
        line-height: 160%;
        margin-left: 0;
    }
}

/* ======= start-steps ======== */

.start-steps {
    padding: 120px 0 132px;
}

.start-steps__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.start-steps__uptitle {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    text-transform: uppercase;
    color: #646464;
}

.start-steps__title {
    margin-top: 24px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.start-steps__list {
    position: relative;
    margin-top: 64px;
    min-height: 428px;
}

.start-steps__list::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 546px;
    height: 428px;
    background: url("../img/trade/steps-bg.webp") center no-repeat;
    background-size: contain;
}

.start-steps__item {
    display: flex;
    margin-bottom: 40px;
    opacity: 0.5;
    cursor: pointer;
    max-width: 580px;
}

.start-steps__item:hover {
    opacity: 1;
}

.start-steps__item_active {
    opacity: 1;
}

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

.start-steps__item-num {
    width: 48px;
    height: 48px;
    border: 1px solid #0A0A0A;
    border-radius: 24px;
    flex-shrink: 0;
    margin-right: 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-steps__item-num_success {
    border: 1px solid #28a745;
    background-color: #28a745;
    color: #FFFFFF;
    opacity: 0.7;
}

.start-steps__item-content {
    flex-grow: 1;
    padding-top: 4px;
}

.start-steps__item-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.start-steps__item-subtitle {
    display: none;
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.start-steps__item-subtitle p {
    margin-bottom: 12px;
}

.start-steps__item-subtitle p:last-child {
    margin-bottom: 0;
}

.start-steps__item_active .start-steps__item-num {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

.start-steps__item_active .start-steps__item-subtitle {
    display: block;
}

@media (max-width: 1200px) {
    .start-steps {
        padding: 80px 0 92px;
    }

    .start-steps__container {
        max-width: 944px;
    }

    .start-steps__uptitle {
        font-size: 16px;
        line-height: 24px;
    }

    .start-steps__title {
        font-size: 40px;
        line-height: 117%;
    }

    .start-steps__list {
        margin-top: 60px;
        min-height: 383px;
    }

    .start-steps__list::after {
        width: 398px;
        height: 383px;
        background-size: cover;
        border-radius: 14px;
    }

    .start-steps__item {
        max-width: 412px;
        margin-bottom: 24px;
    }

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

    .start-steps__item-content {
        padding-top: 9px;
    }

    .start-steps__item-title {
        font-size: 23px;
        line-height: 130%;
    }
    
    .start-steps__item-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 940px) {
    .start-steps {
        padding: 62px 0 62px;
        overflow: hidden;
    }

    .start-steps__container {
        max-width: 708px;
    }

    .start-steps__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .start-steps__title {
        margin-top: 8px;
        font-size: 43px;
        line-height: 110%;
        max-width: 540px;
    }

    .start-steps__list::after {
        width: 368px;
        right: -160px;
    }
}

@media (max-width: 600px) {
    .start-steps {
        padding: 62px 0;
    }

    .start-steps__container {
        padding: 0 16px;
    }

    .start-steps__uptitle {
        font-size: 11px;
        line-height: 15px;
    }

    .start-steps__title {
        margin-top: 10px;
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

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

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

    .start-steps__item {
        max-width: none;
    }

    .start-steps__item-num {
        width: 36px;
        height: 36px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 16px;
        margin-right: 16px;
    }
    
    .start-steps__item-content {
        padding-top: 6px;
    }

    .start-steps__item-title {
        font-size: 18px;
        line-height: 135%;
    }
    
    .start-steps__item-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

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

.start-faq {
    padding: 120px 0 132px;
    background-color: #F0F1F3;
}

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

.start-faq__uptitle {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    text-transform: uppercase;
    color: #646464;
}

.start-faq__title {
    margin-top: 24px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.start-faq__list {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.start-faq__item {
    margin-bottom: 20px;
    border: 2px solid #DADCE2;
    border-radius: 10px;
    padding: 22px 30px;
    cursor: pointer;
}

.start-faq__item:hover {
    border-color: #4166EB;
}

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

.start-faq__item-title {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    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;
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.start-faq__item-answer p {
    margin-bottom: 20px;
}

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

.start-faq__item-answer ul {
    margin-bottom: 20px;
}

.start-faq__item-answer li {
    margin-bottom: 10px;
}

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

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

@media (max-width: 1200px) {
    .start-faq {
        padding: 80px 0 92px;
    }

    .start-faq__container {
        max-width: 944px;
    }

    .start-faq__uptitle {
        font-size: 16px;
        line-height: 24px;
    }

    .start-faq__title {
        font-size: 40px;
        line-height: 117%;
    }

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

@media (max-width: 940px) {
    .start-faq {
        padding: 62px 0 62px;
        overflow: hidden;
    }

    .start-faq__container {
        max-width: 708px;
    }

    .start-faq__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .start-faq__title {
        margin-top: 8px;
        font-size: 43px;
        line-height: 110%;
        max-width: 540px;
    }

    .start-faq__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .start-faq {
        padding: 62px 0 30px;
    }

    .start-faq__container {
        padding: 0 16px;
    }

    .start-faq__uptitle {
        font-size: 11px;
        line-height: 15px;
    }

    .start-faq__title {
        margin-top: 10px;
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

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

    .start-faq__item-title {
        font-size: 14px;
        line-height: 24px;
    }

    .start-faq__item-answer {
        font-size: 14px;
        line-height: 24px;
    }

    .start-faq__btn {
        display: block;
    }
}

/* ======= start-exchange ======== */

.start-exchange {
    padding: 120px 0 132px;
}

.start-exchange__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.start-exchange__title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.start-exchange__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 48px;
}

.start-exchange__item {
    position: relative;
    border: 2px solid #F5F5F5;
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 32px 56px 32px 32px;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #343A40;
}

.start-exchange__item::after {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 8px;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    background: url("../img/start-exchange/arrow.svg") center no-repeat;
}

.start-exchange__item:hover {
    border-color: #4066EB;
    background-color: #FFFFFF;
    color: #343A40;
    opacity: 1;
}

.start-exchange__item_hide {
    display: none;
}

.start-exchange__control {
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .start-exchange {
        padding: 80px 0 92px;
    }

    .start-exchange__container {
        max-width: 944px;
    }

    .start-exchange__title {
        font-size: 40px;
        line-height: 117%;
    }

    .start-exchange__list {
        column-gap: 40px;
    }
}

@media (max-width: 940px) {
    .start-exchange {
        padding: 62px 0 62px;
        overflow: hidden;
    }

    .start-exchange__container {
        max-width: 708px;
    }

    .start-exchange__title {
        font-size: 43px;
        line-height: 110%;
        max-width: 540px;
    }

    .start-exchange__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .start-exchange {
        padding: 62px 0 30px;
    }

    .start-exchange__container {
        padding: 0 16px;
    }

    .start-exchange__title {
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

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

    .start-exchange__item {
        font-size: 14px;
        line-height: 24px;
        padding: 16px 48px 16px 24px;
        border-radius: 10px;
    }

    .start-exchange__item::after {
        right: 24px;
    }

    .start-exchange__btn {
        display: block;
    }
}

/* ======= start-market ======= */

.start-market {
    padding: 110px 0;
    background-color: #0B0D15;
    position: relative;
    overflow: hidden;
}

.start-market::before {
    content: '';
    display: block;
    position: absolute;
    width: 70%;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(45deg, #0B0D15 40%, #434757);
}

.start-market::after {
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: url("../img/start-market/bg.webp") right no-repeat;
    background-size: contain;
    position: absolute;
}

.start-market__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.start-market__title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    max-width: 618px;
    color: #FFFFFF;
}

.start-market__title span {
    font-weight: 600;
    color: #4166EB;
    display: block;
}

.start-market__currencies {
    margin-top: 48px;
    margin-left: -16px;
    margin-right: -16px;
    overflow: hidden;
}

.start-market__list {
    display: flex;
    transition: .2s;
}

.start-market__item {
    width: calc(33.3% - 32px);
    margin: 0 16px;
    flex-shrink: 0;
    border-radius: 20px;
    background: url("../img/start-market/currency.png") right center no-repeat #2A2C34;
    background-size: 125px;
    padding: 32px;
}

.start-market__item:hover {
    opacity: 1;
}

.start-market__item-header {
    display: flex;
    align-items: center;
}

.start-market__item-icon {
    flex-shrink: 0;
    margin-right: 20px;
    width: 48px;
}

.start-market__item-icon img {
    width: 48px;
}

.start-market__item-info {
    flex-grow: 1;
}

.start-market__item-title {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 18px;
}

.start-market__item-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.start-market__item-price-value {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 22px;
}

.start-market__item-price-change {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 18px;
}

.start-market__item-price-change img {
    margin-right: 10px;
}

.start-market__item-price-change_down {
    color: #F43434;
}

.start-market__item-price-change_up {
    color: #189A0D;
}

.start-market__item-stat {
    margin-top: 32px;
}

.start-market__item-stat-row {
    margin-bottom: 15px;
    display: flex;
}

.start-market__item-stat-row:last-child {
    margin-bottom: 0;
}

.start-market__item-stat-label {
    font-size: 12px;
    line-height: 15px;
    color: #AAABAD;
    flex-grow: 1;
}

.start-market__item-stat-label_marketcap::after {
    content: 'Капитализация';
}

.start-market__item-stat-label_supply::after {
    content: 'Количество (в обращении)';
}

.start-market__item-stat-value {
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    font-weight: 600;
    flex-shrink: 0;
}

.start-market__control {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.start-market__control-slider {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.start-market__control-slider-btn {
    width: 54px;
    height: 54px;
    border-radius: 27px;
    cursor: pointer;
    background-color: #4066EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-market__control-slider-btn:hover {
    background-color: #2d55e6;
}

.start-market__control-slider-btn_left img {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .start-market {
        padding: 80px 0;
    }

    .start-market::after {
        left: auto;
        width: 600px;
        background-position: center left;
        background-size: cover;
    }

    .start-market__container {
        max-width: 944px;
    }

    .start-market__title {
        max-width: 423px;
        font-size: 43px;
        line-height: 110%;
    }

    .start-market__item {
        width: calc(50% - 32px);
    }
}

@media (max-width: 940px) {
    .start-market {
        padding: 64px 0;
    }

    .start-market::before {
        width: 90%;
    }

    .start-market::after {
        width: 400px;
        background-image: url("../img/start-market/bg-768.webp");
    }

    .start-market__container {
        max-width: 708px;
    }

    .start-market__currencies {
        display: flex;
        overflow-x: auto;
        margin-left: -8px;
        margin-right: -8px;
        padding-bottom: 10px;
    }

    .start-market__item {
        width: 340px;
        padding: 24px;
        margin: 0 8px;
    }

    .start-market__control-slider {
        display: none;
    }

    .start-market__btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .start-market {
        padding: 60px 0;
    }

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

    .start-market__container {
        padding: 0 16px;
    }

    .start-market__title {
        font-size: 28px;
        line-height: 117%;
    }

    .start-market::before {
        display: none;
    }
}

/* ======= start-reviews ======= */

.start-reviews {
    background-color: #0C0E16;
    padding: 110px 0;
    position: relative;
    overflow: hidden
}

.start-reviews::before {
    content: '';
    display: block;
    position: absolute;
    width: 70%;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(45deg, #0C0E16 40%, #434757);
}

.start-reviews::after {
    content: '';
    display: block;
    width: 676px;
    height: 212px;
    background: url("../img/start-reviews/bg.webp") center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -150px;
    opacity: 0.1;
}

.start-reviews__header {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    position: relative;
}

.start-reviews__header-title {
    flex-grow: 1;
    position: relative;
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}

.start-reviews__header-title span {
    display: block;
    color: #CFFD28;
    font-weight: 600;
}

.start-reviews__header-title::after {
    content: '';
    display: block;
    position: absolute;
    top: -44px;
    left: -36px;
    width: 55px;
    height: 47px;
    background: url("../img/start-reviews/lines.webp") center no-repeat;
    background-size: contain;
}

.start-reviews__header-control-inner {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.start-reviews__more-btn {
    border: 2px solid #DADCE2;
    background-color: transparent;
    color: #FFFFFF;
}

.start-reviews__list {
    max-width: 1206px;
    padding: 0 20px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.start-reviews__list-row {
    display: flex;
    align-items: center;
    column-gap: 12px;
    position: relative;
    margin-bottom: 12px;
}

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

.start-reviews__list-row_offset {
    margin-left: 87px;
}

.start-reviews__item {
    width: 373px;
    height: 212px;
    background: #2A2C34;
    border-radius: 8px;
    padding: 29px 32px 0;
    flex-shrink: 0;
}

.start-reviews__item:first-child {
    position: absolute;
    top: 0;
    left: -385px;
    opacity: 0.3;
}

.start-reviews__item:last-child {
    opacity: 0.3;
}

.start-reviews__item-header {
    display: flex;
    align-items: center;
}

.start-reviews__item-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

.start-reviews__item-avatar img {
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
    object-fit: cover;
}

.start-reviews__item-app {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.start-reviews__item-middle {
    flex-grow: 1;
}

.start-reviews__item-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.start-reviews__item-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #FFFFFF;
    opacity: 0.6;
}

.start-reviews__item-mark {
    margin-top: 18px;
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.start-reviews__item-mark-star {
    width: 18px;
    height: 17px;
    background: url("../img/start-reviews/star-gray.svg") center no-repeat;
}

.start-reviews__item-mark-star_active {
    background: url("../img/start-reviews/star-active.svg") center no-repeat;
}

.start-reviews__item-text {
    margin-top: 8px;
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    color: #FFFFFF;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .start-reviews {
        padding: 80px 0 170px;
        position: relative;
    }

    .start-reviews__header {
        max-width: 944px;
        position: static;
    }

    .start-reviews__header-title {
        font-size: 43px;
        line-height: 110%;
    }

    .start-reviews__header-control {
        position: absolute;
        bottom: 80px;
        left: 0;
        right: 0;
    }

    .start-reviews__header-control-inner {
        max-width: 944px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .start-reviews__list {
        max-width: 944px;
    }

    .start-reviews__item {
        width: 292px;
        height: 195px;
        padding: 21px;
    }

    .start-reviews__item:first-child {
        left: -304px;
    }

    .start-reviews__item-avatar {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        margin-right: 6px;
    }
    
    .start-reviews__item-avatar img {
        width: 35px;
        height: 35px;
    }
    
    .start-reviews__item-app {
        width: 35px;
        height: 35px;
        border-radius: 50%;
    }

    .start-reviews__item-name {
        font-size: 14px;
        line-height: 17px;
    }

    .start-reviews__item-date {
        font-size: 12px;
        line-height: 15px;
    }

    .start-reviews__item-mark {
        margin-top: 9px;
        column-gap: 3px;
    }

    .start-reviews__item-mark-star {
        width: 15px;
        height: 15px;
        background-size: contain;
    }

    .start-reviews__item-text {
        margin-top: 15px;
        font-size: 13px;
        line-height: 148%;
    }
}

@media (max-width: 940px) {
    .start-reviews {
        padding: 64px 0 150px;
        position: relative;
    }

    .start-reviews__header {
        max-width: 708px;
    }

    .start-reviews__header-control {
        bottom: 64px;
    }

    .start-reviews__header-control-inner {
        max-width: 708px;
    }

    .start-reviews__list {
        max-width: 708px;
        margin-top: 32px;
    }

    .start-reviews__list-row {
        column-gap: 10px;
        margin-bottom: 10px;
    }

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

    .start-reviews__item {
        width: 222px;
        height: 150px;
        padding: 20px;
    }

    .start-reviews__item:first-child {
        left: -232px;
    }

    .start-reviews__item-avatar {
        width: 25px;
        height: 25px;
        border-radius: 50%;
    }
    
    .start-reviews__item-avatar img {
        width: 25px;
        height: 25px;
    }
    
    .start-reviews__item-app {
        width: 25px;
        height: 25px;
        border-radius: 50%;
    }

    .start-reviews__item-app img {
        width: 10px;
    }

    .start-reviews__item-name {
        font-size: 9px;
        line-height: 11px;
    }

    .start-reviews__item-date {
        font-size: 8px;
        line-height: 10px;
        margin-top: 2px;
    }

    .start-reviews__item-mark {
        margin-top: 8px;
        column-gap: 3px;
    }

    .start-reviews__item-mark-star {
        width: 12px;
        height: 12px;
        background-size: contain;
    }

    .start-reviews__item-text {
        margin-top: 13px;
        font-size: 9px;
        line-height: 160%;
    }
}

@media (max-width: 600px) {
    .start-reviews {
        padding-top: 60px;
        padding-bottom: 220px;
    }

    .start-reviews__header {
        padding: 0 16px;
    }

    .start-reviews__header-title {
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

    .start-reviews__header-title::after {
        display: none;
    }

    .start-reviews__header-control-inner {
        flex-direction: column;
        row-gap: 10px;
        padding: 0 16px;
    }

    .start-reviews__trading-btn,
    .start-reviews__more-btn {
        width: 100%;
    }

    .start-reviews__list {
        padding: 0 16px 12px;
        overflow: auto;
    }
}

/* ======= start-blog ======= */

.start-blog {
    background-color: #F0F1F3;
    padding: 110px 0;
}

.start-blog__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.start-blog__header {
    display: flex;
    align-items: flex-end;
}

.start-blog__header-title {
    flex-grow: 1;
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.start-blog__header-btn,
.start-blog__header-btn:hover {
    margin-left: 30px;
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.start-blog__row {
    margin-top: 26px;
    display: flex;
}

.start-blog__big-container {
    flex-grow: 1;
    min-height: 475px;
}

.start-blog__big {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: rgba(65, 102, 235, 0.07);
    border-radius: 8px;
    padding: 12px;
}

.start-blog__big-title {
    margin-top: 24px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #0B0D15;
}

.start-blog__big-description {
    margin-top: 8px;
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
}

.start-blog__big-img {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.start-blog__big-img img {
    width: 100%;
    max-height: 320px;
    flex-grow: 1;
    -o-object-fit: cover;
    object-fit: cover;
}

.start-blog__big-tags {
    position: absolute;
    top: 28px;
    left: 28px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.start-blog__big-tag {
    padding: 4px 12px;
    background: #000000;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #FFFFFF;
}

.start-blog__list-container {
    width: 548px;
    flex-shrink: 0;
    margin-left: 44px;
}

.start-blog__item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.start-blog__item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.start-blog__item-content {
    flex-grow: 1;
}

.start-blog__item-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 140%;
    color: #0B0D15;
}

.start-blog__item-description {
    margin-top: 4px;
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
}

.start-blog__item-tags {
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.start-blog__item-tag {
    padding: 4px 12px;
    background: #000000;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #FFFFFF;
}

.start-blog__item-img {
    flex-shrink: 0;
    width: 189px;
    height: 136px;
    border-radius: 8px;
    overflow: hidden;
    margin-left: 20px;
    background-color: #E3E3E3;
}

.start-blog__item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .start-blog {
        padding: 80px 0;
    }

    .start-blog__container {
        max-width: 944px;
    }

    .start-blog__header-title {
        font-size: 43px;
        line-height: 110%;
    }

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

    .start-blog__big-title {
        margin-top: 18px;
        font-size: 20px;
        line-height: 150%;
    }
    
    .start-blog__big-description {
        margin-top: 18px;
        font-size: 14px;
        line-height: 160%;
    }

    .start-blog__big {
        padding: 10px;
    }

    .start-blog__big-tags {
        top: 25px;
        left: 25px;
        gap: 6px;
    }

    .start-blog__big-tag {
        padding: 2px 13px;
        border-radius: 7px;
        font-size: 12px;
        line-height: 160%;
    }

    .start-blog__list-container {
        width: 413px;
        margin-left: 30px;
    }

    .start-blog__item-tags {
        margin-top: 9px;
        gap: 6px;
    }

    .start-blog__item-tag {
        padding: 2px 13px;
        border-radius: 7px;
        font-size: 12px;
        line-height: 160%;
    }

    .start-blog__item-img {
        width: 110px;
        height: 80px;
        border-radius: 7px;
        margin-left: 20px;
    }
}

@media (max-width: 940px) {
    .start-blog {
        padding: 64px 0;
    }

    .start-blog__container {
        max-width: 708px;
    }

    .start-blog__row {
        display: block;
    }

    .start-blog__big-container {
        min-height: 0;
    }

    .start-blog__big {
        width: auto;
        height: auto;
        display: block;
        background: none;
        padding: 0;
        border-radius: 0;
    }

    .start-blog__big-img {
        display: block;
        border-radius: 19px;
    }
    
    .start-blog__big-img img {
        width: 100%;
        height: 424px;
    }

    .start-blog__big-title {
        margin-top: 14px;
        font-size: 24px;
        line-height: 150%;
    }
    
    .start-blog__big-description {
        margin-top: 14px;
        font-size: 18px;
        line-height: 160%;
    }

    .start-blog__big-tags {
        gap: 8px;
    }

    .start-blog__big-tag {
        padding: 3px 17px;
        border-radius: 10px;
        font-size: 15px;
        line-height: 160%;
    }

    .start-blog__list-container {
        margin-top: 40px;
        margin-left: 0;
        width: auto;
        padding-top: 40px;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .start-blog__item-title {
        font-size: 14px;
        line-height: 140%;
    }

    .start-blog__item-description {
        margin-top: 8px;
        font-size: 14px;
        line-height: 160%;
    }

    .start-blog__item-tags {
        margin-top: 8px;
    }

    .start-blog__item-tag {
        padding: 3px 14px;
        border-radius: 8px;
    }

    .start-blog__item-img {
        width: 192px;
        height: 136px;
        border-radius: 8px;
        margin-left: 32px;
    }
}

@media (max-width: 600px) {
    .start-blog {
        padding: 60px 0;
        background-color: #F5F5F5;
    }

    .start-blog__container {
        padding: 0 16px;
    }

    .start-blog__header-title {
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

    .start-blog__header {
        align-items: center;
    }

    .start-blog__header-btn,
    .start-blog__header-btn:hover {
        margin-left: 10px;
        font-size: 12px;
        line-height: 16px;
        padding: 12px 20px;
    }

    .start-blog__row {
        margin-top: 32px
    }

    .start-blog__big-img {
        border-radius: 8px;
    }

    .start-blog__big-img img {
        height: 173px;
    }

    .start-blog__big-title {
        font-size: 16px;
        line-height: 150%;
    }
    
    .start-blog__big-description {
        font-size: 14px;
        line-height: 160%;
    }

    .start-blog__big-tags {
        gap: 6px;
        top: 10px;
        left: 10px;
    }

    .start-blog__big-tag {
        padding: 3px 14px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 160%;
    }

    .start-blog__list-container {
        margin-top: 32px;
        padding-top: 32px;
    }

    .start-blog__item-img {
        width: 100px;
        height: 72px;
        margin-left: 17px;
    }

    .start-blog__item-title {
        font-size: 16px;
        line-height: 140%;
    }

    .start-blog__item-description {
        margin-top: 6px;
        font-size: 14px;
        line-height: 160%;
    }

    .start-blog__item-tags {
        margin-top: 16px;
    }

    .start-blog__item-tag {
        padding: 3px 14px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 160%;
    }

    .start-blog__item {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }
}

/* ======= start-save ======= */

.start-save {
    padding: 110px 0;
    background-color: #0B0D15;
    position: relative;
    overflow: hidden;
}

.start-save::before {
    content: '';
    display: block;
    position: absolute;
    width: 70%;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(45deg, #0B0D15 40%, #434757);
}

.start-save::after {
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: url("../img/start-save/bg.webp") right no-repeat;
    background-size: contain;
    position: absolute;
}

.start-save__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.start-save__title {
    max-width: 600px;
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}

.start-save__title span._blue {
    font-weight: 600;
    color: #4166EB;
}

.start-save__title span._yellow {
    font-weight: 600;
    color: #CFFD28;
}

.start-save__features {
    margin-top: 40px;
    max-width: 376px;
}

.start-save__feature {
    padding: 20px 0 20px 37px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: url("../img/start-save/check.svg") left center no-repeat;
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    color: #FFFFFF;
}

.start-save__feature:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.start-save__feature span {
    opacity: 0.6;
}

.start-save__app {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.start-save__app-item {
    border-radius: 8px;
    overflow: hidden;
}

.start-save__app-item img {
    height: 46px;
}

@media (max-width: 1200px) {
    .start-save {
        padding: 80px 0;
    }

    .start-save::after {
        left: auto;
        width: 600px;
        background-position: center left;
        background-size: cover;
    }

    .start-save__container {
        max-width: 944px;
    }

    .start-save__title {
        max-width: 423px;
        font-size: 43px;
        line-height: 110%;
    }

    .start-save__features {
        margin-top: 40px;
        max-width: 267px;
    }

    .start-save__app {
        column-gap: 6px;
    }
}

@media (max-width: 940px) {
    .start-save {
        padding: 64px 0;
    }

    .start-save::before {
        width: 90%;
    }

    .start-save::after {
        width: 400px;
        background-image: url("../img/start-save/bg-768.webp");
    }

    .start-save__container {
        max-width: 708px;
    }

    .start-save__features {
        margin-top: 32px;
        max-width: 267px;
    }

    .start-save__app {
        column-gap: 10px;
        max-width: 420px;
        justify-content: center;
    }

    .start-save__app-item img {
        height: 40px;
    }
}

@media (max-width: 600px) {
    .start-save {
        padding: 60px 0;
    }

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

    .start-save__container {
        padding: 0 16px;
    }

    .start-save__title {
        font-size: 28px;
        line-height: 117%;
    }

    .start-save::before {
        display: none;
    }

    .start-save__features {
        max-width: none;
    }

    .start-save__app {
        margin-top: 32px;
        margin-left: auto;
        margin-right: auto;
    }

    .start-save__app-item img {
        height: 40px;
    }
}

/* ======= start-trading ======= */

.start-trading {
    padding: 80px 0 104px;
    background: linear-gradient(148.77deg, #FFF2D5 -2.42%, #E5EEFB 52.11%, #E5F4FB 83.39%);
}

.start-trading__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.start-trading__inner {
    display: flex;
    align-items: center;
    gap: 87px;
}

.start-trading__img {
    width: 500px;
    flex-shrink: 0;
}

.start-trading__content {
    flex-grow: 1;
}

.start-trading__title {
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    color: #0A0A0A;
}

.start-trading__subtitle {
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: #93A0A5;
}

.start-trading__control {
    margin-top: 20px;
}

.start-trading__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.start-trading__item {
    padding: 15px;
    background-color: #FFFFFF;
    min-height: 121px;
    border-radius: 20px;
}

.start-trading__item-icon {
    width: 28px;
}

.start-trading__item-text {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 122%;
    color: #0A0A0A;
}

@media (max-width: 1200px) {
    .start-trading__container {
        max-width: 944px;
    }

    .start-trading__img {
        width: 400px;
    }

    .start-trading__list {
        grid-template-columns: 1fr 1fr;
    }

    .start-trading__inner {
        gap: 50px;
    }
}

.start-trading__img-mob {
    display: none;
}

.start-trading__control-mob {
    display: none;
}

@media (max-width: 940px) {
    .start-trading {
        padding: 64px 0;
    }

    .start-trading__container {
        max-width: 708px;
    }

    .start-trading__img {
        display: none;
    }

    .start-trading__img-mob {
        display: block;
        margin-top: 40px;
        height: 323px;
        width: 100%;
        object-fit: contain;
    }

    .start-trading__control {
        display: none;
    }

    .start-trading__control-mob {
        display: block;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
}

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

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

    .start-trading__title {
        font-size: 24px;
    }

    .start-trading__list {
        margin-top: 20px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .start-trading__item {
        min-height: 0;
    }

    .start-trading__btn {
        width: 100%;
    }
}

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

.footer__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.footer__top {
    padding: 100px 0 50px;
    display: flex;
}

.footer__logo {
    flex-shrink: 0;
    margin-right: 93px;
}

.footer__logo-social {
    display: none;
}

.footer__links {
    flex-grow: 1;
    display: flex;
    column-gap: 44px;
    padding-bottom: 40px;
    justify-content: space-between;
}

.footer__links-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #0B0D15;
}

.footer__links-list {
    margin-top: 24px;
}

.footer__links-item {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 13px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
}

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

.footer__links_legal {
    padding-bottom: 0 !important;
}

.footer__links_legal .footer__links-col {
    display: flex;
    align-items: baseline;
}

.footer__links_legal .footer__links-title {
    margin-right: 30px;
    white-space: nowrap;
}

.footer__links_legal .footer__links-list {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 10px;
    margin: 0;
}

.footer__links_legal .footer__links-item {
    margin: 0;
}

.footer__right {
    display: flex;
    align-items: center;
    padding-bottom: 70px;
}

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

.footer__social-link {
    flex-shrink: 0;
}

.footer__app {
    display: flex;
    align-items: center;
    margin-right: auto;
    gap: 12px;
}

.footer__bottom {
    display: flex;
    padding: 44px 0 56px;
    border-top: 1px solid #E5E5E5;
}

.footer__copyright {
    font-weight: 500;
    font-size: 12px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
    margin-right: 92px;
}

.footer__license {
    flex-grow: 1;
    max-width: 560px;
    font-weight: 500;
    font-size: 12px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .footer__container {
        max-width: 944px;
    }

    .footer__top {
        padding: 40px 0 30px;
    }

    .footer__logo {
        margin-right: 42px;
    }

    .footer__logo img {
        height: 23px;
    }

    .footer__links {
        column-gap: 40px;
        padding-bottom: 30px;
    }

    .footer__links-title {
        font-size: 14px;
        line-height: 150%;
    }

    .footer__links-list {
        margin-top: 13px;
    }

    .footer__links-item {
        margin-bottom: 6px;
        font-size: 11px;
        line-height: 160%;
    }

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

    .footer__social {
        justify-content: flex-end;
        column-gap: 13px;
    }

    .footer__app {
        row-gap: 6px;
    }

    .footer__app-link img {
        width: auto;
        height: 40px;
    }

    .footer__right {
        padding-bottom: 40px;
    }

    .footer__bottom {
        padding: 40px 0 30px;
    }

    .footer__copyright {
        font-size: 11px;
        line-height: 160%;
        margin-right: 52px;
    }

    .footer__license {
        max-width: 436px;
        font-size: 11px;
        line-height: 160%;
    }
}

@media (max-width: 940px) {
    .footer__container {
        max-width: 708px;
    }

    .footer__top {
        padding: 40px 0 32px;
    }

    .footer__logo {
        margin-right: 32px;
    }

    .footer__links {
        column-gap: 10px;
    }

    .footer__links-item {
        font-size: 10px;
        line-height: 160%;
    }

    .footer__links_legal .footer__links-title {
        white-space: normal;
    }

    .footer__social-link img {
        width: 26px;
    }

    .footer__app {
        row-gap: 9px;
    }

    .footer__app-link img {
        width: auto;
        height: 30px;
    }

    .footer__bottom {
        padding: 32px 0;
    }

    .footer__license {
        max-width: 353px;
    }
}

@media (max-width: 600px) {
    .footer__container {
        padding: 0 16px;
    }

    .footer__top {
        padding: 40px 0 0;
        display: block;
    }

    .footer__logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 0;
    }

    .footer__logo > img {
        height: 40px;
    }

    .footer__logo-social {
        display: flex;
        gap: 13px;
    }

    .footer__logo-social-link img {
        height: 40px;
    }

    .footer__links {
        margin-top: 32px;
        display: block;
        padding-bottom: 0;
    }

    .footer__links-col {
        border-top: 1px solid #e7e7e8;
        padding: 20px 0;
    }

    .footer__links-col:last-child {
        border-bottom: 1px solid #e7e7e8;
    }

    .footer__links-title {
        font-size: 15px;
        line-height: 140%;
        opacity: 0.6;
        position: relative;
        cursor: pointer;
    }

    .footer__links-title::after {
        content: '';
        display: block;
        width: 32px;
        height: 32px;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -16px;
        background: url("../img/footer/arrow.svg") center no-repeat;
    }

    .footer__links-list {
        display: none;
        margin-top: 14px;
    }

    .footer__links-item {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
    }

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

    .footer__links-col_active .footer__links-title {
        opacity: 1;
    }

    .footer__links-col_active .footer__links-list {
        display: block;
    }

    .footer__links-col_active .footer__links-title::after {
        transform: rotate(180deg);
    }

    .footer__links_legal {
        margin-top: 0;
    }

    .footer__links_legal .footer__links-col {
        border-top: none;
        display: block;
    }

    .footer__links_legal .footer__links-title {
        margin-right: 0;
    }

    .footer__links_legal .footer__links-list {
        display: none;
    }

    .footer__links_legal .footer__links-col_active .footer__links-list {
        display: block;
        margin-top: 14px;
    }

    .footer__links_legal .footer__links-item {
        margin-bottom: 14px;
    }

    .footer__links_legal .footer__links-item:last-child {
        margin-bottom: 0;
    }

    .footer__right {
        margin-left: 0;
        margin-top: 32px;
        padding-bottom: 0;
    }

    .footer__social {
        display: none;
    }

    .footer__app {
        margin-top: 0;
        gap: 13px;
        margin-right: 0;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .footer__app-link img {
        height: 44px;
    }

    .footer__bottom {
        border: none;
        display: block;
        padding: 32px 0;
    }

    .footer__copyright {
        font-size: 12px;
        line-height: 160%;
        text-align: center;
        margin-right: 0;
    }

    .footer__license {
        margin-top: 20px;
        font-size: 12px;
        line-height: 160%;
        max-width: none;
    }
}

/* ======= error-page ======= */

.error-page {
    padding: 64px 0 0;
}

.error-page__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    background: url("../img/error/bg.webp") no-repeat center right;
    background-size: 512px;
    padding-top: 50px;
    min-height: 470px;
}

.error-page__code {
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    color: #646464;
    text-transform: uppercase;
}

.error-page__title {
    margin-top: 24px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    color: #0B0D15;
    letter-spacing: -0.04em;
}

.error-page__description {
    margin-top: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    max-width: 539px;
}

.error-page__app {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.error-page__app img {
    height: 40px;
}

@media (max-width: 1200px) {
    .error-page__container {
        max-width: 944px;
        background-size: 430px;
    }

    .error-page__code {
        font-size: 16px;
    }

    .error-page__title {
        font-size: 40px;
        line-height: 117%;
    }
    
    .error-page__description {
        font-size: 16px;
        line-height: 24px;
        max-width: 429px;
    }
}

@media (max-width: 940px) {
    .error-page {
        background: url("../img/error/bg.webp") no-repeat center right;
        background-size: 340px;
        background-position: calc(100% + 80px) center;
    }

    .error-page__container {
        max-width: 708px;
        background: none;
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .error-page {
        padding-top: 50px;
        background-size: 230px;
        background-position: calc(100% + 30px) bottom;
    }

    .error-page__container {
        padding: 0 16px;
    }

    .error-page__code {
        font-size: 14px;
        line-height: 24px;
    }

    .error-page__title {
        font-size: 28px;
        line-height: 117%;
    }
    
    .error-page__description {
        font-size: 14px;
        line-height: 24px;
        max-width: none;
    }

    .error-page__app {
        flex-direction: column;
    }
}

/* ======= about ======= */

/* ======= about-main ======= */

.about-main {
    padding: 124px 0 225px;
    position: relative;
}

.about-main::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 40px;
    right: 70px;
    width: 536px;
    height: 632px;
    background: url("../img/about/bg-rabbit.webp") no-repeat center;
    background-size: contain;
    z-index: 1;
}

.about-main::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    background: url("../img/about/bg.webp") bottom right no-repeat;
    background-size: 100%;
    z-index: 2;
}

.about-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.about-main__title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
    max-width: 719px;
}

.about-main__title span {
    display: block;
    color: #4166EB;
    font-weight: 600;
}

.about-main__description {
    margin-top: 32px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    max-width: 477px;
}

.about-main__control {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .about-main {
        padding: 80px 0 129px;
    }

    .about-main::after {
        width: 380px;
        height: 450px;
    }
    
    .about-main__container {
        max-width: 944px;
    }

    .about-main__title {
        font-size: 40px;
        line-height: 117%;
        max-width: 548px;
    }
}

@media (max-width: 940px) {
    .about-main {
        padding: 50px 0;
        overflow: hidden;
    }

    .about-main__container {
        max-width: 708px;
    }

    .about-main::before {
        display: none;
    }

    .about-main::after {
        right: -120px;
        bottom: 0;
        width: 380px;
        height: 420px;
    }
}

@media (max-width: 600px) {
    .about-main {
        padding: 40px 0;
    }

    .about-main::after {
        display: none;
    }

    .about-main__container {
        padding: 0 16px;
    }

    .about-main__title {
        font-size: 28px;
        line-height: 117%;
    }

    .about-main__description {
        font-size: 14px;
        line-height: 24px;
    }

    .about-main__control-btn {
        display: block;
    }
}

/* ======= about-profit ======= */

.about-profit {
    padding: 126px 0;
    background-color: #0C0E16;
    position: relative;
}

.about-profit::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(45deg, #0C0E16 40%, #434757);
    z-index: 1;
}

.about-profit::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 548px;
    height: 361px;
    background: url("../img/about/profit-bg.webp") no-repeat center;
    background-size: contain;
    z-index: 2;
}

.about-profit__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.about-profit__title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    text-align: center;
    position: relative;
}

.about-profit__title small {
    display: inline-block;
    position: relative;
}

.about-profit__title small::after {
    content: '';
    display: block;
    position: absolute;
    top: -90px;
    right: -45px;
    width: 47px;
    height: 51px;
    background: url("../img/about/profit-waves.webp") no-repeat center;
    background-size: contain;
}

.about-profit__title span {
    color: #CFFD28;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .about-profit {
        padding: 100px 0;
    }

    .about-profit__container {
        max-width: 944px;
    }

    .about-profit__title {
        font-size: 40px;
        line-height: 117%;
    }

    .about-profit__title small::after {
        top: -70px;
        right: -35px;
        width: 40px;
        height: 45px;
    }

    .about-profit::after {
        width: 450px;
        height: 290px;
        background-position: top left;
    }
}

@media (max-width: 940px) {
    .about-profit {
        padding: 80px 0;
    }

    .about-profit__container {
        max-width: 708px;
    }

    .about-profit__title br {
        display: none;
    }

    .about-profit__title small {
        display: none;
    }

    .about-profit__title span {
        display: block;
    }
}

@media (max-width: 600px) {
    .about-profit {
        padding: 60px 0;
    }

    .about-profit::after {
        width: 100%;
    }

    .about-profit__container {
        padding: 0 16px;
    }

    .about-profit__title {
        font-weight: 400;
        font-size: 28px;
        line-height: 117%;
    }
}

/* ======= about-affiliate ======= */

.about-affiliate {
    padding: 110px 0;
    background: url("../img/about/affiliate.webp") no-repeat right 170px #f5f5f5;
    background-size: 580px;
}

.about-affiliate__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.about-affiliate__uptitle {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    text-transform: uppercase;
    color: #646464;
}

.about-affiliate__header {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #E5E5E5;
}

.about-affiliate__header-title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
    max-width: 722px;
}

.about-affiliate__referrals {
    margin-top: 40px;
}

.about-affiliate__referrals-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #0B0D15;
    max-width: 580px;
}

.about-affiliate__referrals-text {
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    max-width: 477px;
}

.about-affiliate__calc {
    margin-top: 60px;
    max-width: 477px;
}

.about-affiliate__calc-uptitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.about-affiliate__calc-title {
    margin-top: 8px;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.06em;
    color: #000000;
}

.about-affiliate__calc-description {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.about-affiliate__chart {
    margin-top: -155px;
}

.about-affiliate__chart-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.about-affiliate__chart-col {
    height: 344px;
    position: relative;
}

.about-affiliate__chart-fill {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4166EB;
    border-radius: 8px;
}

.about-affiliate__chart-col_last .about-affiliate__chart-fill {
    background: #D2FF28;
    height: 100%;
}

.about-affiliate__chart-label {
    position: absolute;
    bottom: 88px;
    left: 0;
    right: 0;
    padding: 0;
}

.about-affiliate__chart-label_mobile {
    display: none;
}

.about-affiliate__chart-label-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #000000;
}

.about-affiliate__chart-label-value {
    margin-top: 8px;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.06em;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-affiliate__chart-col_last .about-affiliate__chart-label {
    padding: 0 16px;
    bottom: 267px;
}

.about-affiliate__chart-pig {
    position: absolute;
    top: -40px;
    right: 0;
    width: 75px;
    height: 45px;
    background: url("../img/about/pig.webp") no-repeat center;
    background-size: contain;
}

.about-affiliate__result {
    margin-top: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.about-affiliate__result-income {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #0B0D15;
}

.about-affiliate__result-profit {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.about-affiliate__control {
    margin-top: 62px;
    text-align: center;
}

@media (max-width: 1200px) {
    .about-affiliate {
        padding: 80px 0;
        background-position: right 80px;
        background-size: 480px;
    }

    .about-affiliate__container {
        max-width: 944px;
    }

    .about-affiliate__uptitle {
        font-size: 16px;
        line-height: 24px;
    }

    .about-affiliate__header-title {
        font-size: 40px;
        line-height: 117%;
        max-width: 516px;
    }

    .about-affiliate__referrals-title {
        font-size: 26px;
        line-height: 135%;
        max-width: 467px;
    }

    .about-affiliate__calc-title {
        margin-top: 16px;
        font-size: 20px;
        line-height: 130%;
    }

    .about-affiliate__calc-description {
        margin-top: 14px;
    }

    .about-affiliate__chart-label-value {
        font-size: 20px;
        line-height: 130%;
    }

    .about-affiliate__result-income {
        font-size: 26px;
        line-height: 135%;
    }

    .about-affiliate__result-profit {
        font-size: 40px;
        line-height: 117%;
    }

    .about-affiliate__control {
        margin-top: 48px;
    }
}

@media (max-width: 940px) {
    .about-affiliate {
        padding: 50px 0;
        background-position: calc(100% + 100px) 80px;
        background-size: 480px;
    }

    .about-affiliate__container {
        max-width: 708px;
    }

    .about-affiliate__header {
        padding-bottom: 32px;
    }

    .about-affiliate__header-title {
        max-width: 450px;
    }

    .about-affiliate__referrals {
        margin-top: 32px;
    }

    .about-affiliate__calc {
        margin-top: 24px;
    }

    .about-affiliate__chart {
        margin-top: -180px;
    }

    .about-affiliate__chart-grid {
        gap: 6px;
    }

    .about-affiliate__chart-label {
        bottom: 81px;
    }

    .about-affiliate__chart-col_last .about-affiliate__chart-label {
        padding: 0 8px;
        bottom: 290px;
    }

    .about-affiliate__chart-label-title {
        font-weight: 500;
        font-size: 12px;
        line-height: 160%;
    }

    .about-affiliate__chart-label-value {
        margin-top: 4px;
        font-weight: 600;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: -0.01em;
    }

    .about-affiliate__chart-pig {
        top: -27px;
        height: 30px;
        background: url("../img/about/pig.webp") no-repeat center right;
        background-size: contain;
    }

    .about-affiliate__result {
        margin-top: 32px;
    }
    
    .about-affiliate__result-income {
        font-size: 23px;
        line-height: 130%;
    }
    
    .about-affiliate__result-profit {
        font-weight: 500;
        font-size: 26px;
        line-height: 135%;
    }
    
    .about-affiliate__control {
        margin-top: 32px;
    }
}

@media (max-width: 600px) {
    .about-affiliate {
        background: none;
    }

    .about-affiliate__container {
        padding: 0 16px;
    }

    .about-affiliate__uptitle {
        font-size: 14px;
    }

    .about-affiliate__header-title {
        font-size: 28px;
        line-height: 117%;
    }

    .about-affiliate__header-control {
        display: none;
    }

    .about-affiliate__referrals-title {
        font-size: 20px;
        line-height: 135%;
    }

    .about-affiliate__referrals-text {
        font-size: 14px;
        line-height: 24px;
    }

    .about-affiliate__calc-uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .about-affiliate__calc-title {
        margin-top: 12px;
        font-size: 18px;
        line-height: 130%;
    }

    .about-affiliate__calc-description {
        margin-top: 10px;
        font-size: 14px;
        line-height: 24px;
    }

    .about-affiliate__chart {
        margin-top: 56px;
    }

    .about-affiliate__chart-grid {
        gap: 8px;
    }

    .about-affiliate__chart-label {
        display: none;
    }

    .about-affiliate__chart-label-title {
        font-size: 10px;
    }

    .about-affiliate__chart-label-value {
        margin-top: 4px;
        font-size: 14px;
        line-height: 140%;
    }

    .about-affiliate__chart-col_last .about-affiliate__chart-label {
        display: block;
        bottom: auto;
        top: -50px;
        left: auto;
        right: 0;
        padding: 0;
    }

    .about-affiliate__chart-label_mobile {
        display: block;
        bottom: 81px;
        left: 0;
        right: auto;
    }

    .about-affiliate__chart-pig {
        display: none;
    }

    .about-affiliate__chart-col {
        height: 200px;
    }

    .about-affiliate__result {
        display: block;
        margin-top: 20px;
    }

    .about-affiliate__result-income {
        font-weight: 500;
        font-size: 18px;
        line-height: 135%;
    }

    .about-affiliate__result-profit {
        margin-top: 12px;
        font-weight: 500;
        font-size: 20px;
        line-height: 135%;
    }

    .about-affiliate__control-btn {
        display: block;
    }
}

/* ======= contacts ======= */

.contacts {
    padding: 64px 0 113px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    background: url("../img/contacts/bg.webp") no-repeat bottom left;
    background-size: 371px;
}

.contacts::before {
    content: '';
    display: block;
    position: absolute;
    width: 431px;
    height: 199px;
    bottom: 55px;
    left: 0;
    background: url("../img/contacts/arrow-bg.webp") no-repeat center;
    background-size: contain;
}

.contacts__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs__item {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-right: 56px;
    position: relative;
}

.breadcrumbs__item::after {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 10px;
    right: -32px;
    top: 50%;
    margin-top: -5px;
    background: url("../img/contacts/breadcrumbs.svg") center no-repeat;
}

.breadcrumbs__item a {
    color: #0B0D15;
    opacity: 0.4;
}

.breadcrumbs__item a:hover {
    opacity: 1;
    color: #0B0D15;
}

.breadcrumbs__item_active {
    opacity: 1;
    margin-right: 0;
}

.breadcrumbs__item_active::after {
    display: none;
}

.contacts__title {
    margin-top: 40px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.contacts__email {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.contacts__email-label {
    width: 50%;
    flex-shrink: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #0B0D15;
    letter-spacing: -0.06em;
}

.contacts__email-value {
    width: 50%;
    flex-shrink: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.contacts__email-value a {
    color: #4166EB;
}

.contacts__question {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contacts__question-col {
    width: 50%;
    flex-shrink: 0;
}

.contacts__question-title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
    max-width: 474px;
}

.contacts__question-title span {
    font-weight: 600;
    color: #4166EB;
}

.contacts__question-description {
    margin-top: 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #0B0D15;
    max-width: 371px;
}

.contacts__question-field {
    margin-bottom: 32px;
}

.contacts__question-input {
    border-radius: 8px;
    border: 1px solid #DADCE2;
    height: 56px;
    padding: 16px 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

textarea.contacts__question-input {
    height: 128px;
}

.contacts__question-btn {
    width: 100%;
}

@media (max-width: 1200px) {
    .contacts {
        padding: 50px 0 80px;
        background-size: 340px;
    }

    .contacts::before {
        width: 350px;
    }

    .contacts__container {
        max-width: 944px;
    }

    .contacts__title {
        font-size: 40px;
        line-height: 117%;
    }

    .contacts__email-label {
        font-size: 20px;
        line-height: 130%;
    }

    .contacts__question-title {
        font-size: 40px;
        line-height: 117%;
    }

    .contacts__question-description {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 940px) {
    .contacts {
        padding: 40px 0 50px;
        background-size: 371px;
    }

    .contacts::before {
        width: 431px;
        bottom: 180px;
    }

    .contacts__container {
        max-width: 708px;
        position: relative;
    }

    .contacts__question {
        margin-top: 32px;
        padding-top: 32px;
        display: block;
    }

    .contacts__question-col {
        width: auto;
    }

    .contacts__question-col:first-child {
        margin-bottom: 50px;
    }

    .contacts__question-control {
        width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .contacts {
        padding: 32px 0 50px;
        background: none;
    }

    .contacts::before {
        display: none;
    }

    .contacts__container {
        padding: 0 16px;
    }

    .breadcrumbs__item {
        font-size: 14px;
        line-height: 24px;
    }

    .contacts__title {
        font-size: 28px;
        line-height: 117%;
    }

    .contacts__email {
        margin-top: 40px;
        justify-content: space-between;
    }

    .contacts__email-label {
        font-size: 18px;
        line-height: 130%;
        width: auto;
    }
    
    .contacts__email-value {
        font-size: 14px;
        line-height: 24px;
        width: auto;
    }
    
    .contacts__question-title {
        font-size: 28px;
        line-height: 117%;
    }

    .contacts__question-description {
        font-size: 12px;
        line-height: 160%;
    }

    .contacts__question-col:first-child {
        margin-bottom: 32px;
    }

    .contacts__question-control {
        width: auto;
    }
}

/* ======= privacy ======= */

.privacy {
    padding: 64px 0 110px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: url("../img/privacy/bg.webp") right 60px no-repeat;
    background-size: 352px;
}

.privacy__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.privacy__title {
    margin-top: 40px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.privacy__title_page {
    margin-top: 0;
}

.privacy__content {
    margin-top: 56px;
    max-width: 638px;
}

.privacy__section {
    margin-bottom: 56px;
}

.privacy__section h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #0B0D15;
    margin-bottom: 24px;
}

.privacy__section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    margin-bottom: 20px;
}

.privacy__section p:last-child {
    margin-bottom: 0;
}

.privacy__company h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.06em;
    color: #000000;
    margin-bottom: 24px;
}

.privacy__company p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.privacy__content_page *:first-child {
    margin-top: 0;
}

.privacy__content_page h2,
.privacy__content_page h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #0B0D15;
    margin-bottom: 24px;
}

.privacy__content_page h4,
.privacy__content_page h5,
.privacy__content_page h6 {
    font-weight: 500;
    font-size: 28px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #0B0D15;
    margin-bottom: 24px;
}

.privacy__content_page p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    margin-bottom: 20px;
}

.privacy__content_page b,
.privacy__content_page strong {
    font-weight: 600;
    color: #4166EB;
}

.privacy__content_page a,
.privacy__content_page a:hover {
    font-weight: 600;
    color: #4166EB;
    text-decoration: underline;
}

.privacy__content_page ul {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
}

.privacy__content_page ul > li {
    display: block;
    padding-left: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.privacy__content_page ul > li:last-child {
    margin-bottom: 0;
}

.privacy__content_page ul > li::after {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #0A0A0A;
    left: 0;
    top: 9px;
}

.privacy__content_page ol {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    counter-reset: num;
}

.privacy__content_page ol > li {
    display: block;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.privacy__content_page ol > li:last-child {
    margin-bottom: 0;
}

.privacy__content_page ol > li::before {
    content: counter(num) ". ";
    counter-increment: num;
}

.privacy__content_page table {
    margin: 0 0 20px;
    width: 100%;
}

.privacy__content_page td,
.privacy__content_page th {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    padding: 8px 12px;
    border: 1px solid #d3d6d8;
}

.privacy__content_page th {
    font-weight: 600;
}

@media (max-width: 1200px) {
    .privacy {
        padding: 50px 0 80px;
        background-size: 340px;
    }

    .privacy__container {
        max-width: 944px;
    }

    .privacy__title {
        font-size: 40px;
        line-height: 117%;
    }

    .privacy__section {
        margin-bottom: 40px;
    }

    .privacy__section h3 {
        font-size: 26px;
        line-height: 135%;
    }

    .privacy__company h3 {
        font-size: 20px;
        line-height: 130%;
    }

    .privacy__content_page h2, 
    .privacy__content_page h3 {
        font-size: 26px;
        line-height: 135%;
    }

    .privacy__content_page h4, 
    .privacy__content_page h5,
    .privacy__content_page h6 {
        font-size: 20px;
        line-height: 135%;
    }
}

@media (max-width: 940px) {
    .privacy {
        padding: 40px 0 50px;
        background: none;
    }

    .privacy__container {
        max-width: 708px;
    }
}

@media (max-width: 600px) {
    .privacy {
        padding: 32px 0 50px;
        background: none;
    }

    .privacy__container {
        padding: 0 16px;
    }

    .privacy__title {
        font-size: 28px;
        line-height: 117%;
    }

    .privacy__content {
        margin-top: 40px;
    }

    .privacy__section h3 {
        font-size: 20px;
        line-height: 135%;
    }

    .privacy__section p {
        font-size: 12px;
        line-height: 160%;
    }

    .privacy__company h3 {
        font-size: 18px;
        line-height: 130%;
    }

    .privacy__company p {
        font-size: 12px;
        line-height: 160%;
    }

    .privacy__content_page h2,
    .privacy__content_page h3 {
        font-size: 24px;
        line-height: 135%;
    }

    .privacy__content_page h4,
    .privacy__content_page h5,
    .privacy__content_page h6 {
        font-size: 20px;
        line-height: 135%;
    }

    .privacy__content_page p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .privacy__content_page ul > li {
        font-size: 14px;
        line-height: 24px;
    }
    
    .privacy__content_page ol > li {
        font-size: 14px;
        line-height: 24px;
    }

    .privacy__content_page td,
    .privacy__content_page th {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= trade ======= */

/* ======= trade-main ======= */

.trade-main {
    padding: 44px 0 110px;
}

.trade-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.trade-main__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trade-main__title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
    max-width: 524px;
}

.trade-main__title span {
    color: #4166EB;
    font-weight: 600;
}

.trade-main__description {
    margin-top: 32px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    max-width: 477px;
}

.trade-main__control {
    margin-top: 40px;
}

.trade-main__right {
    padding-top: 428px;
    max-width: 484px;
    background: url("../img/trade/main-bg.webp") top center no-repeat;
    background-size: 414px;
}

.trade-main__right-text {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .trade-main {
        padding: 40px 0 64px;
    }

    .trade-main__container {
        max-width: 944px;
    }

    .trade-main__title {
        font-size: 40px;
        line-height: 117%;
        max-width: 360px;
    }

    .trade-main__description {
        max-width: 452px;
    }

    .trade-main__right {
        max-width: 384px;
        background-size: 360px;
        padding-top: 380px;
    }

    .trade-main__right-text {
        font-size: 26px;
        line-height: 135%;
    }
}

@media (max-width: 940px) {
    .trade-main__container {
        max-width: 708px;
    }

    .trade-main__description {
        max-width: 370px;
        font-size: 14px;
    }

    .trade-main__right {
        max-width: 259px;
        background-size: 259px;
        padding-top: 280px;
    }

    .trade-main__right-text {
        font-size: 23px;
        line-height: 130%;
    }
}

@media (max-width: 600px) {
    .trade-main__container {
        padding: 0 16px;
    }

    .trade-main__right {
        display: none;
    }

    .trade-main__title {
        max-width: none;
        font-size: 28px;
        line-height: 117%;
    }

    .trade-main__description {
        max-width: none;
        font-size: 14px;
        line-height: 24px;
    }

    .trade-main__btn {
        display: block;
    }
}

/* ======= trade-faq ======= */

.trade-faq__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.trade-faq__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.trade-faq__item {
    padding: 32px;
    background-color: #F5F5F5;
    border-radius: 12px;
}

.trade-faq__item-title {
    font-weight: 500;
    font-size: 21px;
    line-height: 32px;
    letter-spacing: -0.06em;
    color: #0B0D15;
}

.trade-faq__item-description {
    margin-top: 18px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .trade-faq__container {
        max-width: 944px;
    }

    .trade-faq__item-title {
        font-size: 16px;
        line-height: 130%;
    }

    .trade-faq__item-description {
        font-size: 14px;
        line-height: 160%;
    }
}

@media (max-width: 940px) {
    .trade-faq__container {
        max-width: 708px;
    }

    .trade-faq__list {
        gap: 8px;
    }

    .trade-faq__item {
        padding: 24px;
    }

    .trade-faq__item-title {
        font-size: 14px;
        line-height: 130%;
        min-height: 36px;
    }

    .trade-faq__item-description {
        font-size: 12px;
        line-height: 160%;
    }
}

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

    .trade-faq__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trade-faq__item-title {
        font-size: 20px;
        line-height: 135%;
        min-height: 0;
    }

    .trade-faq__item-description {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= trade-profit ======= */

.trade-profit {
    margin-top: 110px;
}

.trade-profit__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.trade-profit__title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    max-width: 737px;
}

.trade-profit__title span {
    font-weight: 600;
    color: #4166EB;
}

.trade-profit__chart {
    margin-top: 56px;
    padding-top: 90px;
    position: relative;
}

.trade-profit__chart-grid {
    width: 100%;
    height: 402px;
    background: url("../img/trade/chart.webp") top center no-repeat;
    background-size: contain;
}

.trade-profit__chart-value {
    position: absolute;
    top: 0;
}

.trade-profit__chart-value_initial {
    left: 0;
}

.trade-profit__chart-value_profit {
    right: 35px;
    text-align: right;
}

.trade-profit__chart-value-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #000000;
}

.trade-profit__chart-value-subtitle {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.trade-profit__chart-axis {
    border-top: 1px solid #000000;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}

.trade-profit__chart-axis span {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}

.trade-profit__chart-axis span.__bold {
    font-weight: 600;
}

.trade-profit__chart-start {
    position: absolute;
    left: -11px;
    bottom: 63px;
    width: 22px;
    height: 22px;
    background-color: #FFFFFF;
    border: 6px solid #000000;
    border-radius: 11px;
}

.trade-profit__chart-end {
    position: absolute;
    left: 488px;
    bottom: 220px;
    width: 44px;
    height: 44px;
    background-color: #FFFFFF;
    border: 6px solid #000000;
    border-radius: 22px;
}

.trade-profit__chart-end-line {
    position: absolute;
    bottom: 29px;
    left: 508px;
    width: 2px;
    height: 195px;
    background: url("../img/trade/dashed.svg") top center repeat-y;
}

.trade-profit__chart-end-value {
    position: absolute;
    bottom: 270px;
    left: 320px;
    font-weight: 600;
    font-size: 72px;
    line-height: 100%;
    color: #0B0D15;
}

.trade-profit__chart-end-value small {
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    color: #0B0D15;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .trade-profit {
        margin-top: 80px;
    }
    
    .trade-profit__container {
        max-width: 944px;
    }

    .trade-profit__title {
        max-width: 527px;
        font-size: 40px;
        line-height: 117%;
    }

    .trade-profit__chart {
        margin-top: 40px;
        padding-top: 75px;
    }

    .trade-profit__chart-value-title {
        font-size: 26px;
        line-height: 135%;
    }

    .trade-profit__chart-value-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .trade-profit__chart-value_profit {
        right: 20px;
    }

    .trade-profit__chart-grid {
        height: 326px;
    }

    .trade-profit__chart-axis span {
        font-size: 9px;
        line-height: 12px;
    }

    .trade-profit__chart-start {
        width: 16px;
        height: 16px;
        left: -8px;
        border: 4px solid #000000;
        border-radius: 8px;
    }

    .trade-profit__chart-end {
        width: 32px;
        height: 32px;
        border: 4px solid #000000;
        border-radius: 16px;
        bottom: 187px;
        left: 380px;
    }

    .trade-profit__chart-end-line {
        height: 160px;
        left: 395px;
        bottom: 26px;
    }

    .trade-profit__chart-end-value {
        font-size: 54px;
        line-height: 100%;
        bottom: 230px;
        left: 255px;
    }
    
    .trade-profit__chart-end-value small {
        font-size: 15px;
        line-height: 160%;
    }
}

@media (max-width: 940px) {
    .trade-profit {
        margin-top: 40px;
        overflow: hidden;
    }

    .trade-profit__container {
        max-width: 708px;
    }

    .trade-profit__chart {
        margin-left: auto;
        margin-right: auto;
        width: 668px;
    }

    .trade-profit__chart-grid {
        height: 253px;
    }

    .trade-profit__chart-start {
        width: 12px;
        height: 12px;
        left: -6px;
        border: 3px solid #000000;
        border-radius: 6px;
    }

    .trade-profit__chart-end {
        width: 26px;
        height: 26px;
        border: 3px solid #000000;
        border-radius: 13px;
        bottom: 153px;
        left: 280px;
    }

    .trade-profit__chart-end-line {
        height: 130px;
        left: 293px;
        bottom: 22px;
    }

    .trade-profit__chart-axis span {
        font-size: 7px;
        line-height: 9px;
    }

    .trade-profit__chart-end-value {
        font-size: 42px;
        line-height: 100%;
        bottom: 188px;
        left: 180px;
    }
    
    .trade-profit__chart-end-value small {
        font-size: 12px;
        line-height: 160%;
    }
}

@media (max-width: 600px) {
    .trade-profit {
        margin-top: 60px;
    }

    .trade-profit__container {
        padding: 0 16px;
    }

    .trade-profit__title {
        max-width: none;
        font-size: 28px;
        line-height: 117%;
    }

    .trade-profit__chart {
        margin: 32px auto 0;
        padding-top: 54px;
        width: 328px;
    }

    .trade-profit__chart-grid {
        height: 123px;
    }

    .trade-profit__chart-value-title {
        font-size: 18px;
        line-height: 130%;
    }

    .trade-profit__chart-value-subtitle {
        font-size: 12px;
        line-height: 160%;
    }

    .trade-profit__chart-value_profit {
        right: 10px;
    }

    .trade-profit__chart-axis span {
        display: none;
        font-size: 8px;
        line-height: 8px;
    }

    .trade-profit__chart-axis span:nth-child(3n + 1) {
        display: block;
    }

    .trade-profit__chart-start {
        width: 6px;
        height: 6px;
        left: -3px;
        border: 2px solid #000000;
        border-radius: 3px;
        bottom: 40px;
    }

    .trade-profit__chart-end {
        width: 12px;
        height: 12px;
        border: 2px solid #000000;
        border-radius: 6px;
        bottom: 85px;
        left: 140px;
    }

    .trade-profit__chart-end-line {
        height: 60px;
        left: 145px;
        bottom: 22px;
    }

    .trade-profit__chart-end-value {
        font-size: 20px;
        line-height: 100%;
        bottom: 100px;
        left: 90px;
    }
    
    .trade-profit__chart-end-value small {
        font-size: 8px;
        line-height: 160%;
    }
}

/* ======= trade-steps ======= */

.trade-steps {
    padding: 120px 0 132px;
}

.trade-steps__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.trade-steps__uptitle {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    text-transform: uppercase;
    color: #646464;
}

.trade-steps__title {
    margin-top: 24px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.trade-steps__list {
    position: relative;
    margin-top: 64px;
    min-height: 428px;
}

.trade-steps__list::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 546px;
    height: 428px;
    background: url("../img/trade/steps-bg.webp") center no-repeat;
    background-size: contain;
}

.trade-steps__item {
    display: flex;
    margin-bottom: 40px;
    opacity: 0.5;
    cursor: pointer;
    max-width: 580px;
}

.trade-steps__item:hover {
    opacity: 1;
}

.trade-steps__item_active {
    opacity: 1;
}

.trade-steps__item:last-child {
    margin-bottom: 0;
}

.trade-steps__item-num {
    width: 48px;
    height: 48px;
    border: 1px solid #0A0A0A;
    border-radius: 24px;
    flex-shrink: 0;
    margin-right: 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trade-steps__item-content {
    flex-grow: 1;
    padding-top: 4px;
}

.trade-steps__item-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.trade-steps__item-subtitle {
    display: none;
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.trade-steps__item_active .trade-steps__item-num {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

.trade-steps__item_active .trade-steps__item-subtitle {
    display: block;
}

@media (max-width: 1200px) {
    .trade-steps {
        padding: 80px 0 92px;
    }

    .trade-steps__container {
        max-width: 944px;
    }

    .trade-steps__uptitle {
        font-size: 16px;
        line-height: 24px;
    }

    .trade-steps__title {
        font-size: 40px;
        line-height: 117%;
    }

    .trade-steps__list {
        margin-top: 60px;
        min-height: 383px;
    }

    .trade-steps__list::after {
        width: 398px;
        height: 383px;
        background-size: cover;
        border-radius: 14px;
    }

    .trade-steps__item {
        max-width: 412px;
        margin-bottom: 24px;
    }

    .trade-steps__item:last-child {
        margin-bottom: 0;
    }

    .trade-steps__item-content {
        padding-top: 9px;
    }

    .trade-steps__item-title {
        font-size: 23px;
        line-height: 130%;
    }
    
    .trade-steps__item-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 940px) {
    .trade-steps {
        padding: 62px 0 62px;
        overflow: hidden;
    }

    .trade-steps__container {
        max-width: 708px;
    }

    .trade-steps__list::after {
        width: 368px;
        right: -160px;
    }
}

@media (max-width: 600px) {
    .trade-steps {
        padding: 62px 0 30px;
    }

    .trade-steps__container {
        padding: 0 16px;
    }

    .trade-steps__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .trade-steps__title {
        font-size: 28px;
        line-height: 117%;
    }

    .trade-steps__list {
        margin-top: 40px;
    }

    .trade-steps__list::after {
        display: none;
    }

    .trade-steps__item {
        max-width: none;
    }

    .trade-steps__item-num {
        width: 36px;
        height: 36px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 16px;
    }
    
    .trade-steps__item-content {
        padding-top: 6px;
    }

    .trade-steps__item-title {
        font-size: 18px;
        line-height: 135%;
    }
    
    .trade-steps__item-subtitle {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= affiliate ======= */

/* ======= affiliate-main ======= */

.affiliate-main {
    padding: 64px 0 178px;
    background: url("../img/affiliate/main-bg.webp") bottom right no-repeat;
    background-size: 859px;
}

.affiliate-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.affiliate-main__title {
    margin-top: 36px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    max-width: 580px;
}

.affiliate-main__title span {
    display: block;
    font-weight: 600;
    color: #4166EB;
}

.affiliate-main__subtitle {
    margin-top: 32px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.affiliate-main__control {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .affiliate-main {
        padding: 50px 0 92px;
        background-size: 650px;
    }

    .affiliate-main__container {
        max-width: 944px;
    }

    .affiliate-main__title {
        font-size: 40px;
        line-height: 117%;
        max-width: 450px;
    }
}

@media (max-width: 940px) {
    .affiliate-main {
        padding: 40px 0 62px;
        background-size: 450px;
    }

    .affiliate-main__container {
        max-width: 708px;
    }

    .affiliate-main__subtitle {
        padding-right: 240px;
    }
}

@media (max-width: 600px) {
    .affiliate-main {
        padding: 32px 0 62px;
        background: none;
    }

    .affiliate-main__container {
        padding: 0 16px;
    }

    .affiliate-main__title {
        max-width: none;
        font-size: 28px;
        line-height: 117%;
    }

    .affiliate-main__subtitle {
        padding-right: 0;
        font-size: 14px;
        line-height: 24px;
    }

    .affiliate-main__btn {
        display: block;
    }
}

/* ======= affiliate-program ======= */

.affiliate-program .about-affiliate__control {
    display: none;
}

.affiliate-program__additionally {
    margin-top: 100px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    padding-top: 40px;
    justify-content: space-between;
}

.affiliate-program__additionally-left {
    max-width: 580px;
}

.affiliate-program__additionally-right {
    max-width: 477px;
    margin-left: 20px;
}

.affiliate-program__additionally-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.affiliate-program__additionally-subtitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .affiliate-program__additionally {
        margin-top: 80px;
    }

    .affiliate-program__additionally-left {
        max-width: 451px;
    }

    .affiliate-program__additionally-right {
        max-width: 383px;
    }

    .affiliate-program__additionally-title {
        font-size: 32px;
        line-height: 125%;
    }
}

@media (max-width: 940px) {
    .affiliate-program__additionally {
        margin-top: 50px;
        padding-top: 32px;
    }

    .affiliate-program__additionally-left {
        max-width: 301px;
    }

    .affiliate-program__additionally-right {
        max-width: 303px;
    }

    .affiliate-program__additionally-title {
        font-size: 20px;
        line-height: 130%;
    }
}

@media (max-width: 600px) {
    .affiliate-program {
        background: #F5F5F5;
    }

    .affiliate-program .about-affiliate__control {
        display: block;
    }

    .affiliate-program__additionally {
        display: block;
    }

    .affiliate-program__additionally-left {
        max-width: none;
    }

    .affiliate-program__additionally-right {
        max-width: none;
        margin-left: 0;
        margin-top: 32px;
    }

    .affiliate-program__additionally-title {
        font-size: 18px;
        line-height: 130%;
    }

    .affiliate-program__additionally-subtitle {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= affiliate-steps ======= */

.affiliate-steps {
    padding: 80px 0 76px;
    background: url("../img/affiliate/steps-bg.webp") no-repeat right top #dcfc5d;
    background-size: 698px;
    position: relative;
}

.affiliate-steps::after {
    content: '';
    display: block;
    width: 476px;
    height: 500px;
    position: absolute;
    bottom: 0;
    right: 155px;
    background: url("../img/affiliate/phone.webp") top center no-repeat;
    background-size: 100%;
}

.affiliate-steps__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.affiliate-steps__uptitle {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #0B0D15;
    text-transform: uppercase;
}

.affiliate-steps__title {
    margin-top: 24px;
    font-weight: 600;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.affiliate-steps__list {
    margin-top: 86px;
}

.affiliate-steps__item {
    display: flex;
    margin-bottom: 40px;
    max-width: 471px;
    opacity: 0.5;
    cursor: pointer;
}

.affiliate-steps__item:hover {
    opacity: 1;
}

.affiliate-steps__item:last-child {
    margin-bottom: 0;
}

.affiliate-steps__item-num {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 24px;
    border: 1px solid #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    margin-right: 18px;
}

.affiliate-steps__item:hover .affiliate-steps__item-num {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

.affiliate-steps__item-content {
    flex-grow: 1;
}

.affiliate-steps__item-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #0B0D15;
}

.affiliate-steps__item-subtitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .affiliate-steps {
        background-size: 580px;
    }

    .affiliate-steps::after {
        right: 70px;
        width: 371px;
        height: 490px;
    }

    .affiliate-steps__container {
        max-width: 944px;
    }

    .affiliate-steps__uptitle {
        font-size: 16px;
        line-height: 24px;
    }

    .affiliate-steps__title {
        font-size: 40px;
        line-height: 117%;
    }

    .affiliate-steps__list {
        margin-top: 40px;
    }

    .affiliate-steps__item-title {
        padding-top: 7px;
        font-size: 26px;
        line-height: 135%;
    }
}

@media (max-width: 940px) {
    .affiliate-steps {
        padding: 50px 0;
        background-size: 480px;
    }

    .affiliate-steps__container {
        max-width: 708px;
    }

    .affiliate-steps::after {
        right: 20px;
        width: 269px;
        height: 450px;
    }

    .affiliate-steps__item-subtitle {
        margin-top: 14px;
    }

    .affiliate-steps__item {
        max-width: none;
        padding-right: 280px;
    }
}

@media (max-width: 600px) {
    .affiliate-steps {
        background: #dcfc5d;
    }

    .affiliate-steps__container {
        padding: 0 16px;
    }

    .affiliate-steps::after {
        display: none;
    }

    .affiliate-steps__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .affiliate-steps__title {
        font-size: 28px;
        line-height: 117%;
    }

    .affiliate-steps__item {
        padding-right: 0;
        margin-bottom: 24px;
    }

    .affiliate-steps__item:last-child {
        margin-bottom: 0;
    }

    .affiliate-steps__item-num {
        width: 36px;
        height: 36px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 16px;
    }

    .affiliate-steps__item-title {
        padding-top: 5px;
        font-size: 20px;
        line-height: 135%;
    }
    
    .affiliate-steps__item-subtitle {
        margin-top: 10px;
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= market ======= */

/* ======= market-main ======= */

.market-main {
    padding-top: 64px;
}

.market-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.market-main__title {
    margin-top: 40px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    max-width: 618px;
}

.market-main__title span {
    display: block;
    font-weight: 600;
    color: #4166EB;
}

.market-main__content {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
}

.market-main__content-col:first-child {
    flex-shrink: 0;
    margin-right: 109px;
    width: 580px;
}

.market-main__content-col:last-child {
    flex-grow: 1;
}

.market-main__content-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.06em;
    color: #0B0D15;
}

.market-main__content-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .market-main {
        padding-top: 50px;
    }

    .market-main__container {
        max-width: 944px;
    }

    .market-main__title {
        margin-top: 36px;
        font-size: 40px;
        line-height: 117%;
        max-width: 440px;
    }

    .market-main__content-col:first-child {
        margin-right: 57px;
        width: 370px;
    }

    .market-main__content-title {
        font-size: 26px;
        line-height: 135%;
    }
}

@media (max-width: 940px) {
    .market-main__container {
        max-width: 708px;
    }

    .market-main__content {
        margin-top: 32px;
        padding-top: 32px;
    }

    .market-main__content-col:first-child {
        margin-right: 40px;
        width: 302px;
    }
}

@media (max-width: 600px) {
    .market-main {
        padding-top: 32px;
    }

    .market-main__container {
        padding: 0 16px;
    }

    .market-main__title {
        font-size: 28px;
        line-height: 117%;
        max-width: none;
    }

    .market-main__content {
        display: block;
    }

    .market-main__content-col:first-child {
        margin-right: 0;
        width: auto;
        margin-bottom: 24px;
    }

    .market-main__content-title {
        font-size: 20px;
        line-height: 135%;
    }
    
    .market-main__content-text {
        font-size: 14px;
        line-height: 24px;
    }    
}

/* ======= market-currencies ======= */

.market-currencies {
    padding: 56px 0 110px;
}

.market-currencies__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.market-currencies__mob-container {
    display: none;
}

.market-currencies__filters {
    display: flex;
    align-items: center;
}

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

.market-currencies__fcurrency-container {
    position: relative;
    padding: 16px 24px;
    border-radius: 8px;
    background: #F7F8F9;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    width: 128px;
}

.market-currencies__fcurrency-container.dropdown-toggle:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 14px;
    height: 8px;
    border: none;
    background: url("../img/market/arrow.svg") center no-repeat;
}

.market-currencies__fcurrency-dropdown {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-height: 216px;
    overflow: auto;
}

.market-currencies__fcurrency-dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 24px;
}

.market-currencies__fsearch {
    border: 1px solid #DADCE2;
    border-radius: 8px;
    padding: 16px 24px 16px 64px;
    position: relative;
    width: 373px;
}

.market-currencies__fsearch::after {
    content: '';
    display: block;
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    background: url("../img/market/search.svg") center no-repeat;
}

.market-currencies__fsearch-input {
    border: none;
    background: transparent;
    height: 24px;
    width: 100%;
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.market-currencies__frows {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.market-currencies__frows-label {
    margin-right: 11px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.market-currencies__frows-list {
    display: flex;
    padding: 16px 8px;
    background: #F7F8F9;
    border-radius: 8px;
}

.market-currencies__frows-item {
    padding: 0 16px;
    border-right: 1px solid #e6e7eb;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #a4a6a9;
    cursor: pointer;
}

.market-currencies__frows-item:last-child {
    border-right: none;
}

.market-currencies__frows-item:hover {
    color: #0B0D15;
}

.market-currencies__frows-item_active {
    color: #0B0D15;
}

.market-currencies__frows-dropdown {
    display: none;
}

.market-currencies__frows-dropdown-container {
    position: relative;
    padding: 16px 24px;
    border-radius: 8px;
    background: #F7F8F9;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    width: 107px;
}

.market-currencies__frows-dropdown-container.dropdown-toggle:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 14px;
    height: 8px;
    border: none;
    background: url("../img/market/arrow.svg") center no-repeat;
}

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

.market-currencies__frows-dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 24px;
}

.market-currencies__table-container {
    margin-top: 16px;
}

.market-currencies__table-wrapper {
    overflow: auto;
}

.market-currencies__table thead th {
    padding: 24px 12px 24px 0;
    border-top: none;
    border-bottom: 1px solid #E5E5E5;
    vertical-align: middle;
}

.market-currencies__table {
    margin: 0;
}

.market-currencies__table td {
    padding: 32px 12px 32px 0;
    border-top: 1px solid #E5E5E5;
    vertical-align: middle;
}

.market-currencies__table-th {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #aaaaad;
    padding-right: 32px;
    /* background: url("../img/market/th-arrow.svg") right center no-repeat;
    cursor: pointer; */
}

.market-currencies__table-td {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.market-currencies__table-td img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.market-currencies__table-td span {
    margin-left: 6px;
    opacity: 0.35;
}

.market-currencies__table-td strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.market-currencies__table-td small {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: none;
}

.market-currencies__table-name {
    color: #0B0D15;
}

.market-currencies__table-name:hover {
    color: #4166EB;
}

.market-currencies__table-td_up {
    color: #53CC02;
    padding-left: 30px;
    background: url("../img/market/up.svg") left center no-repeat;
}

.market-currencies__table-td_down {
    color: #F53434;
    padding-left: 30px;
    background: url("../img/market/down.svg") left center no-repeat;
}

.market-currencies__pagination {
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .market-currencies {
        padding: 40px 0 92px;
    }

    .market-currencies__container {
        max-width: 944px;
    }

    .market-currencies__table-name {
        display: none;
    }

    .market-currencies__table-td_name img {
        margin-right: 0;
    }

    .market-currencies__table-td_name span {
        margin-left: 12px;
        opacity: 1;
    }

    .market-currencies__table td {
        width: 1%;
    }

    .market-currencies__table th {
        white-space: nowrap;
        width: 1%;
    }

    .market-currencies__pagination {
        margin-top: 12px;
    }
}

@media (max-width: 940px) {
    .market-currencies {
        padding: 40px 0 62px;
    }

    .market-currencies__container {
        max-width: 708px;
    }

    .market-currencies__filters {
        flex-wrap: wrap;
    }

    .market-currencies__fcurrency {
        margin-right: 12px;
    }

    .market-currencies__fsearch {
        width: 250px;
    }

    .market-currencies__frows-list {
        display: none;
    }

    .market-currencies__frows-dropdown {
        display: block;
    }

    .market-currencies__table thead th {
        padding-right: 8px;
        white-space: normal;
    }

    .market-currencies__table-th {
        font-size: 14px !important;
    }

    .market-currencies__table td {
        padding-right: 8px;
    }

    .market-currencies__table td * {
        font-size: 14px !important;
    }

    .market-currencies__table-td strong {
        display: none;
    }
    
    .market-currencies__table-td small {
        display: block;
    }

    .market-currencies__pagination {
        margin-top: 4px;
    }

    .market-currencies__table-th_supply,
    .market-currencies__table-td_supply {
        display: none;
    }
}

@media (max-width: 600px) {
    .market-currencies__container {
        display: none;
    }

    .market-currencies__mob-container {
        display: block;
        padding: 0 16px;
    }

    .market-currencies__mob-fsearch {
        border: 1px solid #DADCE2;
        border-radius: 8px;
        padding: 16px 24px 16px 64px;
        position: relative;
    }

    .market-currencies__mob-fsearch::after {
        content: '';
        display: block;
        position: absolute;
        left: 26px;
        top: 50%;
        transform: translateY(-50%);
        width: 21px;
        height: 21px;
        background: url("../img/market/search.svg") center no-repeat;
    }

    .market-currencies__mob-fsearch-input {
        border: none;
        background: transparent;
        height: 24px;
        width: 100%;
        display: block;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #0B0D15;
    }

    .market-currencies__mob-fcollapse-btn {
        margin-top: 24px;
        display: block;
        border: 2px solid #DADCE2;
    }

    .market-currencies__mob-fcollapse-btn:hover {
        opacity: 1;
    }

    .market-currencies__mob-fcollapse-btn_active {
        border-color: #0B0D15;
    }

    .market-currencies__mob-fcollapse-container {
        margin-top: 32px;
    }

    .market-currencies__mob-fcollapse-row {
        margin-bottom: 20px;
    }

    .market-currencies__mob-fcollapse-row:last-child {
        margin-bottom: 0;
    }

    .market-currencies__mob-fcollapse-row_flex {
        display: flex;
        justify-content: space-between;
        margin-bottom: 32px;
    }

    .market-currencies__mob-fcurrency {
        flex-grow: 1;
        /* max-width: 200px;
        margin-right: 16px; */
    }

    .market-currencies__mob-fcurrency-container {
        position: relative;
        padding: 16px 20px;
        border-radius: 8px;
        background: #F7F8F9;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        color: #0B0D15;
        width: 100%;
    }
    
    .market-currencies__mob-fcurrency-container.dropdown-toggle:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 24px;
        transform: translateY(-50%);
        width: 14px;
        height: 8px;
        border: none;
        background: url("../img/market/arrow.svg") center no-repeat;
    }
    
    .market-currencies__mob-fcurrency-dropdown {
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        max-height: 216px;
        overflow: auto;
    }
    
    .market-currencies__mob-fcurrency-dropdown-item {
        font-size: 14px;
        font-weight: 500;
        padding: 8px 20px;
    }

    .market-currencies__mob-frows {
        display: flex;
        align-items: center;
    }

    .market-currencies__mob-frows-label {
        margin-right: 8px;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        color: #0B0D15;
        white-space: nowrap;
    }

    .market-currencies__mob-frows-dropdown-container {
        position: relative;
        padding: 16px 20px;
        border-radius: 8px;
        background: #F7F8F9;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        color: #0B0D15;
        width: 100px;
    }
    
    .market-currencies__mob-frows-dropdown-container.dropdown-toggle:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 24px;
        transform: translateY(-50%);
        width: 14px;
        height: 8px;
        border: none;
        background: url("../img/market/arrow.svg") center no-repeat;
    }
    
    .market-currencies__mob-frows-dropdown-list {
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .market-currencies__mob-frows-dropdown-item {
        font-size: 14px;
        font-weight: 500;
        padding: 8px 20px;
    }

    .market-currencies__mob-fcollapse-filter {
        position: relative;
        padding: 16px 20px;
        border-radius: 8px;
        background: #F7F8F9;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        color: #0B0D15;
    }

    .market-currencies__mob-fcollapse-filter::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 24px;
        transform: translateY(-50%);
        width: 14px;
        height: 8px;
        border: none;
        background: url("../img/market/arrow.svg") center no-repeat;
    }

    .market-currencies__mob-fcollapse-control {
        margin-top: 32px;
    }

    .market-currencies__mob-fcollapse-find-btn {
        display: block;
        width: 100%;
    }

    .market-currencies__mob-list {
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .market-currencies__mob-item {
        border: 1px solid #DADCE2;
        border-radius: 8px;
        padding: 24px;
        margin-bottom: 24px
    }

    .market-currencies__mob-item:last-child {
        margin-bottom: 0;
    }

    .market-currencies__mob-item-row {
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .market-currencies__mob-item-row_main {
        margin-bottom: 32px;
    }

    .market-currencies__mob-item-row_col {
        flex-direction: column;
        align-items: flex-start;
    }

    .market-currencies__mob-item-row:last-child {
        margin-bottom: 0;
    }

    .market-currencies__mob-item-label {
        display: flex;
        align-items: center;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        color: #aaaaad;
    }

    .market-currencies__mob-item-label img {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    
    .market-currencies__mob-item-label a {
        margin-right: 6px;
        font-weight: 500;
        font-size: 18px;
        line-height: 130%;
        letter-spacing: -0.06em;
        color: #0B0D15;
        padding-bottom: 3px;
    }

    .market-currencies__mob-item-label a:hover {
        color: #4166EB;
    }

    .market-currencies__mob-item-value {
        font-weight: 500;
        font-size: 18px;
        line-height: 130%;
        letter-spacing: -0.06em;
        color: #0B0D15;
    }

    .market-currencies__mob-item-value_up {
        color: #53CC02;
        padding-left: 30px;
        background: url("../img/market/up.svg") left center no-repeat;
    }

    .market-currencies__mob-item-value_down {
        color: #F53434;
        padding-left: 30px;
        background: url("../img/market/down.svg") left center no-repeat;
    }

    .market-currencies__mob-item-value span {
        color: #aaaaad;
    }

    .market-currencies__pagination {
        margin-top: 32px;
    }
}

/* ======= market-view ======= */

.market-view {
    padding: 64px 0 110px;
}

.market-view__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.market-view__header {
    margin-top: 36px;
    display: flex;
}

.market-view__header-title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.market-view__header-img {
    height: 60px;
    margin-right: 20px;
}

.market-view__header-img img {
    max-height: 100%;
}

.market-view__top {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #cbcbcb;
}

.market-view__top-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.market-view__top-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-radius: 16px;
    background: rgba(65, 102, 235, 0.07);
}

.market-view__top-item-percent {
    width: 132px;
    flex-shrink: 0;
    text-align: center;
    padding: 34px 10px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.market-view__top-item-percent_up {
    background: url("../img/articles/currency-up.svg") center top no-repeat;
}

.market-view__top-item-percent_down {
    background: url("../img/articles/currency-down.svg") center top no-repeat;
}

.market-view__top-item-price {
    flex-grow: 1;
    padding: 0 10px 0 25px;
    color: #0B0D15;
}

.market-view__top-item-price span {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    display: block;
}

.market-view__top-item-price small {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-top: 4px;
}

.market-view__top-control {
    margin-top: 40px;
    text-align: center;
}

.market-view__top-control-btn {
    width: 300px;
    text-align: center;
}

@media (max-width: 1200px) {
    .market-view {
        padding: 50px 0 80px;
    }

    .market-view__container {
        max-width: 944px;
    }

    .market-view__header-title {
        font-size: 40px;
        line-height: 117%;
    }

    .market-view__header-img {
        height: 47px;
    }

    .market-view__top-item {
        padding: 15px 0;
        border-radius: 12px;
    }

    .market-view__top-item-percent {
        width: 100px;
        background-size: 24px;
        font-size: 13px;
        line-height: 160%;
        padding-top: 26px;
    }

    .market-view__top-item-price {
        padding-left: 18px;
    }

    .market-view__top-item-price span {
        font-size: 18px;
        line-height: 150%;
    }
    
    .market-view__top-item-price small {
        font-size: 12px;
        line-height: 160%;
    }
}

@media (max-width: 940px) {
    .market-view {
        padding: 40px 0 50px;
    }

    .market-view__container {
        max-width: 708px;
    }

    .market-view__top {
        margin-top: 32px;
        padding-top: 32px;
    }

    .market-view__top-row {
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }

    .market-view__top-item-percent {
        width: 87px;
    }

    .market-view__top-control {
        margin-top: 32px;
    }

    .market-view__top-control-btn {
        width: auto;
    }
}

@media (max-width: 600px) {
    .market-view {
        padding: 32px 0 50px;
    }

    .market-view__container {
        padding: 0 16px;
    }

    .market-view__header-title {
        font-size: 28px;
        line-height: 117%;
    }

    .market-view__header-img {
        height: 33px;
        margin-right: 12px;
    }

    .market-view__top-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .market-view__top-item-price span {
        font-size: 16px;
        line-height: 135%;
    }
    
    .market-view__top-item-price small {
        margin-top: 8px;
    }

    .market-view__top-control-btn {
        display: block;
    }
}

/* ======= market-about ======= */

.market-about {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: url("../img/market/about-bg.webp") no-repeat center right #F0F1F3;
    background-position: calc(100% - 30px) center;
    background-size: 512px;
}

.market-about__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    min-height: 470px;
}

.market-about__uptitle {
    font-size: 17px;
    line-height: 24px;
    color: #646464;
    text-transform: uppercase;
    font-weight: 500;
}

.market-about__title {
    margin-top: 24px;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: #0B0D15;
    max-width: 561px;
}

.market-about__title span {
    font-weight: 600;
    color: #4166EB;
}

.market-about__content {
    margin-top: 32px;
    max-width: 657px;
}

.market-about__content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #0B0D15;
    opacity: 0.6;
    margin-bottom: 12px;
}

.market-about__content p:last-child {
    margin-bottom: 0;
}

.market-about__control {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .market-about {
        padding: 80px 0;
        background-position: right center;
        background-size: 350px;
    }

    .market-about__container {
        max-width: 944px;
    }

    .market-about__uptitle {
        font-size: 16px;
        line-height: 24px;
    }

    .market-about__title {
        margin-top: 12px;
        font-size: 40px;
        line-height: 117%;
        max-width: 520px;
    }

    .market-about__content {
        margin-top: 24px;
        max-width: 532px;
    }

    .market-about__content p {
        font-size: 16px;
        line-height: 148%;
    }
}

@media (max-width: 940px) {
    .market-about {
        padding: 64px 0;
        background: #F0F1F3;
    }

    .market-about__container {
        max-width: 708px;
        min-height: 0;
    }

    .market-about__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .market-about__title {
        margin-top: 8px;
        max-width: 540px;
    }

    .market-about__content {
        max-width: none;
    }

    .market-about__content p {
        font-size: 14px;
    }

    .market-about__control {
        margin-top: 32px;
    }
}

@media (max-width: 600px) {
    .market-about {
        padding: 60px 0;
    }

    .market-about__container {
        padding: 0 16px;
    }

    .market-about__uptitle {
        font-size: 11px;
        line-height: 15px;
    }

    .market-about__title {
        margin-top: 10px;
        font-size: 28px;
        line-height: 117%;
        letter-spacing: -0.05em;
    }

    .market-about__content {
        margin-top: 30px;
    }

    .market-about__btn {
        display: block;
    }
}

/* ======= faq ======= */

/* ======= faq-main ======= */

.faq-main {
    padding: 64px 0 110px;
}

.faq-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.faq-main__title {
    margin-top: 40px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.faq-main__search {
    margin-top: 40px;
}

.faq-main__search-field {
    border: 1px solid #DADCE2;
    border-radius: 8px;
    padding: 16px 24px 16px 64px;
    position: relative;
    width: 389px;
}

.faq-main__search-field::after {
    content: '';
    display: block;
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    background: url("../img/market/search.svg") center no-repeat;
}

.faq-main__search-input {
    border: none;
    background: transparent;
    height: 24px;
    width: 100%;
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.faq-main__content {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-main__content_search {
    min-height: 300px;
    position: relative;
}

.faq-main__content_search_loading:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
}

.faq-main__content_search_loading:after {
    content: '';
    position: absolute;
    z-index: 2;
    display: block;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border: 5px solid #c0c1c2;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.faq-main__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-main__list-empty {
    padding: 30px 0;
    text-align: center;
    font-size: 24px;
    color: #0B0D15;
    opacity: 0.4;
}

.faq-main__item {
    margin-bottom: 20px;
    border: 2px solid #DADCE2;
    border-radius: 10px;
    padding: 22px 30px;
    cursor: pointer;
}

.faq-main__item:hover {
    border-color: #4166EB;
}

.faq-main__item:last-child {
    margin-bottom: 0;
}

.faq-main__item-title {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    padding-right: 30px;
}

.faq-main__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;
}

.faq-main__item_active .faq-main__item-title::after {
    transform: rotate(180deg);
}

.faq-main__item-answer {
    display: none;
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.faq-main__item_active .faq-main__item-answer {
    display: block;
}

.faq-main__pagination {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .faq-main {
        padding: 40px 0 92px;
    }

    .faq-main__container {
        max-width: 944px;
    }

    .faq-main__title {
        font-size: 40px;
        line-height: 117%;
    }

    .faq-main__list {
        gap: 40px;
    }
}

@media (max-width: 940px) {
    .faq-main {
        padding: 40px 0 62px;
    }

    .faq-main__container {
        max-width: 708px;
    }

    .faq-main__title {
        margin-top: 36px;
    }

    .faq-main__search {
        margin-top: 32px;
    }

    .faq-main__content {
        margin-top: 32px;
        padding-top: 32px;
    }

    .faq-main__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-main__pagination {
        margin-top: 32px;
    }
}

@media (max-width: 600px) {
    .faq-main {
        padding: 32px 0 62px;
    }

    .faq-main__container {
        padding: 0 16px;
    }

    .faq-main__title {
        font-size: 28px;
        line-height: 117%;
    }

    .faq-main__search-field {
        width: 100%;
    }

    .faq-main__item-title {
        font-size: 14px;
        line-height: 24px;
    }

    .faq-main__item-answer {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= faq-ask ======= */

.faq-ask {
    padding: 110px 0;
    position: relative;
    background: url("../img/faq/bg.webp") top left no-repeat #0C0E16;
    background-size: 548px;
}

.faq-ask::after {
    content: '';
    display: block;
    position: absolute;
    width: 326px;
    top: 0;
    bottom: 0;
    right: 0;
    background: url("../img/faq/rabbit.webp") center right no-repeat;
    background-size: 100%;
}

.faq-ask__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.faq-ask__title {
    text-align: center;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    max-width: 623px;
    margin: 0 auto;
}

.faq-ask__subtitle {
    text-align: center;
    margin-top: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.faq-ask__control {
    text-align: center;
    margin-top: 40px;
}

.faq-ask__btn {
    background: #D2FF28;
    border-color: #D2FF28;
    color: #0B0D15;
}

.faq-ask__btn:hover {
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .faq-ask {
        padding: 74px 0;
        background-size: 448px;
    }

    .faq-ask::after {
        width: 226px;
    }

    .faq-ask__container {
        max-width: 944px;
    }

    .faq-ask__title {
        font-size: 40px;
        line-height: 117%;
    }

    .faq-ask__subtitle {
        margin-top: 24px;
    }

    .faq-ask__control {
        margin-top: 24px;
    }
}

@media (max-width: 940px) {
    .faq-ask {
        padding: 60px 0;
        background-size: 448px;
    }

    .faq-ask::after {
        width: 156px;
    }

    .faq-ask__container {
        max-width: 708px;
    }
}

@media (max-width: 600px) {
    .faq-ask {
        background: #0C0E16;
    }

    .faq-ask::after {
        display: none;
    }

    .faq-ask__container {
        padding: 0 16px;
    }

    .faq-ask__title {
        font-size: 28px;
        line-height: 117%;
    }

    .faq-ask__subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .faq-ask__control {
        margin-top: 40px;
    }

    .faq-ask__btn {
        display: block;
    }
}

/* ======= support ======= */

/* ======= support-main ======= */

.support-main {
    padding: 64px 0 110px;
}

.support-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.support-main__row {
    margin-top: 40px;
    display: flex;
}

.support-main__col:first-child {
    flex-grow: 1;
}

.support-main__col:last-child {
    width: 533px;
    flex-shrink: 0;
    margin-left: 100px;
}

.support-main__title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.support-main__title span {
    font-weight: 600;
    color: #4166EB;
}

.support-main__subtitle {
    margin-top: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.support-main__subtitle a {
    font-weight: 500;
    text-decoration: underline;
    color: #0B0D15;
}

.support-main__field {
    margin-bottom: 32px;
}

.support-main__input {
    border-radius: 8px;
    border: 1px solid #DADCE2;
    height: 56px;
    padding: 16px 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

textarea.support-main__input {
    height: 128px;
}

.support-main__btn {
    width: 100%;
}

.support-main__status {
    font-weight: 400;
    font-size: 16px;
    display: none;
}

.support-main__status-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-main__status i {
    margin-right: 12px;
    font-size: 20px;
}

.support-main__status_success {
    color: #28a745;
}

.support-main__status_error {
    color: #dc3545;
}

@media (max-width: 1200px) {
    .support-main {
        padding: 50px 0 92px;
    }

    .support-main__container {
        max-width: 944px;
    }

    .support-main__row {
        margin-top: 36px;
    }

    .support-main__col:last-child {
        width: 453px;
        margin-left: 23px;
    }

    .support-main__title {
        font-size: 40px;
        line-height: 117%;
    }

    .support-main__field {
        margin-bottom: 24px;
    }
}

@media (max-width: 940px) {
    .support-main {
        padding: 40px 0 62px;
    }

    .support-main__container {
        max-width: 708px;
    }

    .support-main__row {
        display: block;
    }

    .support-main__col:first-child {
        max-width: 450px;
        margin-bottom: 32px;
    }

    .support-main__col:last-child {
        width: auto;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .support-main {
        padding: 32px 0 62px;
    }

    .support-main__container {
        padding: 0 16px;
    }

    .support-main__title {
        font-size: 28px;
        line-height: 117%;
    }

    .support-main__subtitle {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= support-faq ======= */

.support-faq {
    padding: 0 0 110px;
    position: relative;
}

.support-faq::after {
    content: '';
    display: block;
    position: absolute;
    width: 751px;
    top: 0;
    bottom: 0;
    right: 0;
    background: url("../img/support/rabbit.webp") center right no-repeat;
    background-size: contain;
}

.support-faq__container {
    max-width: 1206px;
    padding: 40px 20px 0;
    margin: 0 auto;
    position: relative;
}

.support-faq__container::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.support-faq__uptitle {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    text-transform: uppercase;
    color: #646464;
}

.support-faq__title {
    margin-top: 24px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.support-faq__list {
    margin-top: 40px;
    max-width: 389px;
}

.support-faq__item {
    margin-bottom: 16px;
    border: 2px solid #DADCE2;
    border-radius: 10px;
    padding: 22px 30px;
    cursor: pointer;
    background-color: #FFFFFF;
}

.support-faq__item:hover {
    border-color: #4166EB;
}

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

.support-faq__item-title {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    padding-right: 30px;
}

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

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

.support-faq__item-answer {
    display: none;
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

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

.support-faq__control {
    margin-top: 40px;
    max-width: 389px;
}

.support-faq__btn {
    width: 100%;
}

@media (max-width: 1200px) {
    .support-faq {
        padding: 0 0 80px;
        position: relative;
    }

    .support-faq::after {
        width: 551px;
    }

    .support-faq__container {
        max-width: 944px;
    }

    .support-faq__uptitle {
        font-size: 16px;
        line-height: 24px;
    }

    .support-faq__title {
        font-size: 40px;
        line-height: 117%;
    }
}

@media (max-width: 940px) {
    .support-faq {
        padding: 0 0 50px;
    }

    .support-faq::after {
        width: 301px;
        background: url("../img/support/rabbit.webp") center left no-repeat;
        background-size: 511px;
    }
    
    .support-faq__container {
        max-width: 708px;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 600px) {
    .support-faq::after {
        display: none;
    }

    .support-faq__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .support-faq__uptitle {
        font-size: 14px;
        line-height: 24px;
    }

    .support-faq__title {
        font-size: 28px;
        line-height: 117%;
    }

    .support-faq__list {
        max-width: none;
    }

    .support-faq__control {
        max-width: none;
    }

    .support-faq__item-title {
        font-size: 14px;
        line-height: 24px;
    }

    .support-faq__item-answer {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= support-exchange ======= */

.support-exchange {
    padding: 110px 0;
    position: relative;
    background: url("../img/support/bg.webp") top left no-repeat #0C0E16;
    background-size: 548px;
}

.support-exchange__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.support-exchange__title {
    text-align: center;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin: 0 auto;
}

.support-exchange__subtitle {
    text-align: center;
    margin-top: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.support-exchange__control {
    text-align: center;
    margin-top: 40px;
}

.support-exchange__btn {
    background: #D2FF28;
    border-color: #D2FF28;
    color: #0B0D15;
}

.support-exchange__btn:hover {
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .support-exchange {
        padding: 80px 0;
        background-size: 448px;
    }

    .support-exchange__container {
        max-width: 944px;
    }

    .support-exchange__title {
        font-size: 40px;
        line-height: 117%;
    }

    .support-exchange__subtitle {
        margin-top: 24px;
    }

    .support-exchange__control {
        margin-top: 24px;
    }
}

@media (max-width: 940px) {
    .support-exchange__container {
        max-width: 708px;
    }
}

@media (max-width: 600px) {
    .support-exchange {
        padding: 60px 0;
        background: #0C0E16;
    }

    .support-exchange__container {
        padding: 0 16px;
    }

    .support-exchange__title {
        font-size: 28px;
        line-height: 117%;
    }

    .support-exchange__subtitle {
        font-size: 14px;
        line-height: 24px;
    }

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

    .support-exchange__btn {
        display: block;
    }
}

/* ======= vacancies ======= */

/* ======= vacancies-main ======= */

.vacancies-main {
    padding: 64px 0 110px;
}

.vacancies-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.vacancies-main__title {
    margin-top: 40px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.vacancies-main__list {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 16px;
    row-gap: 24px;
}

.vacancies-main__item {
    border: 1px solid #DADCE2;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vacancies-main__item-content {
    padding: 32px;
    flex-grow: 1;
}

.vacancies-main__item-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.06em;
    color: #0B0D15;
}

.vacancies-main__item-subtitle {
    margin-top: 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #646464;
    opacity: 0.6;
}

.vacancies-main__item-btn {
    padding: 16px 32px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    position: relative;
    background: #4166EB;
}

.vacancies-main__item-btn:hover {
    color: #FFFFFF;
}

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

@media (max-width: 1200px) {
    .vacancies-main {
        padding: 50px 0 80px;
    }

    .vacancies-main__container {
        max-width: 944px;
    }

    .vacancies-main__title {
        margin-top: 36px;
        font-size: 40px;
        line-height: 117%;
    }

    .vacancies-main__item-content {
        padding: 32px 24px;
    }

    .vacancies-main__item-title {
        font-size: 20px;
        line-height: 130%;
    }
}

@media (max-width: 940px) {
    .vacancies-main {
        padding: 40px 0 62px;
    }

    .vacancies-main__container {
        max-width: 708px;
    }

    .vacancies-main__list {
        margin-top: 32px;
        padding-top: 32px;
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
        row-gap: 24px;
    }
}

@media (max-width: 600px) {
    .vacancies-main {
        padding: 32px 0 62px;
    }

    .vacancies-main__container {
        padding: 0 16px;
    }

    .vacancies-main__title {
        font-size: 28px;
        line-height: 117%;
    }

    .vacancies-main__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vacancies-main__item-title {
        font-size: 18px;
        line-height: 130%;
    }

    .vacancies-main__item-subtitle {
        font-size: 12px;
        line-height: 160%;
    }

    .vacancies-main__item-btn {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= vacancies-write ======= */

.vacancies-write {
    padding: 110px 0;
    position: relative;
    background: url("../img/faq/bg.webp") top left no-repeat #0C0E16;
    background-size: 548px;
}

.vacancies-write::after {
    content: '';
    display: block;
    position: absolute;
    width: 326px;
    top: 0;
    bottom: 0;
    right: 0;
    background: url("../img/faq/rabbit.webp") center right no-repeat;
    background-size: 100%;
}

.vacancies-write__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.vacancies-write__title {
    text-align: center;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin: 0 auto;
}

.vacancies-write__subtitle {
    text-align: center;
    margin-top: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.vacancies-write__control {
    text-align: center;
    margin-top: 40px;
}

.vacancies-write__btn {
    background: #D2FF28;
    border-color: #D2FF28;
    color: #0B0D15;
}

.vacancies-write__btn:hover {
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .vacancies-write {
        padding: 74px 0;
        background-size: 448px;
    }

    .vacancies-write::after {
        width: 226px;
    }

    .vacancies-write__container {
        max-width: 944px;
    }

    .vacancies-write__title {
        font-size: 40px;
        line-height: 117%;
    }

    .vacancies-write__subtitle {
        margin-top: 24px;
    }

    .vacancies-write__control {
        margin-top: 24px;
    }
}

@media (max-width: 940px) {
    .vacancies-write {
        padding: 60px 0;
        background-size: 448px;
    }

    .vacancies-write::after {
        width: 156px;
        background-position: bottom right;
    }

    .vacancies-write__container {
        max-width: 708px;
    }
}

@media (max-width: 600px) {
    .vacancies-write {
        background: #0C0E16;
    }

    .vacancies-write::after {
        display: none;
    }

    .vacancies-write__container {
        padding: 0 16px;
    }

    .vacancies-write__title {
        font-size: 28px;
        line-height: 117%;
    }

    .vacancies-write__subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .vacancies-write__control {
        margin-top: 40px;
    }

    .vacancies-write__btn {
        display: block;
    }
}

/* ======= reviews ======= */

/* ======= reviews-main ======= */

.reviews-main {
    padding: 64px 0 110px;
}

.reviews-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.reviews-main__title {
    margin-top: 40px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.reviews-main__subtitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    max-width: 540px;
}

.reviews-main__list {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 16px;
    row-gap: 24px;
}

.reviews-main__item {
    border: 1px solid #DADCE2;
    border-radius: 8px;
    padding: 32px;
    position: relative;
    background-color: #FFFFFF;
}

.reviews-main__item_active {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    border-color: #FFFFFF;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.reviews-main__item-header {
    display: flex;
    align-items: center;
}

.reviews-main__item-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

.reviews-main__item-avatar img {
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
    object-fit: cover;
}

.reviews-main__item-app {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews-main__item-middle {
    flex-grow: 1;
}

.reviews-main__item-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #0B0D15;
}

.reviews-main__item-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #646464;
    opacity: 0.6;
}

.reviews-main__item-mark {
    margin-top: 18px;
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.reviews-main__item-mark-star {
    width: 18px;
    height: 17px;
    background: url("../img/reviews/star.svg") center no-repeat;
}

.reviews-main__item-mark-star_active {
    background: url("../img/reviews/star-active.svg") center no-repeat;
}

.reviews-main__item-text {
    margin-top: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #a2a2a2;
}

.reviews-main__item-text span {
    white-space: nowrap;
    cursor: pointer;
    opacity: 0.6;
    color: #0B0D15;
}

.reviews-main__item-text span:hover {
    opacity: 1;
}

.reviews-main__item-text_full {
    display: none;
}

.reviews-main__item_active .reviews-main__item-text_full {
    display: block;
}

.reviews-main__item_active .reviews-main__item-text_short {
    display: none;
}

@media (max-width: 1200px) {
    .reviews-main {
        padding: 50px 0 80px;
    }

    .reviews-main__container {
        max-width: 944px;
    }

    .reviews-main__title {
        margin-top: 36px;
        font-size: 40px;
        line-height: 117%;
    }

    .reviews-main__list {
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
    }
}

@media (max-width: 940px) {
    .reviews-main {
        padding: 40px 0 62px;
    }

    .reviews-main__container {
        max-width: 708px;
    }

    .reviews-main__list {
        margin-top: 32px;
        padding-top: 32px;
        gap: 16px;
    }

    .reviews-main__item {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .reviews-main {
        padding: 32px 0 62px;
    }

    .reviews-main__container {
        padding: 0 16px;
    }

    .reviews-main__title {
        font-size: 28px;
        line-height: 117%;
    }

    .reviews-main__subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .reviews-main__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reviews-main__item-text_full {
        display: block;
    }

    .reviews-main__item-text_full span {
        display: none;
    }

    .reviews-main__item-text_short {
        display: none;
    }
}

/* ======= articles ======= */

/* ======= articles-main ======= */

.articles-main {
    padding-top: 83px;
}

.articles-main__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.articles-main__container::after {
    content: '';
    display: block;
    padding-top: 110px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.articles-main__header-title {
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.articles-main__header-title span {
    font-weight: 600;
    color: #4166EB;
}

.articles-main__header-subtitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-main__header-subtitle p {
    margin-bottom: 16px;
}

.articles-main__header-subtitle p:last-child {
    margin-bottom: 0;
}

.articles-main__tags {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.articles-main__tag {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(65, 102, 235, 0.07);
    cursor: pointer;
}

.articles-main__tag:hover {
    color: #0B0D15;
}

.articles-main__tag_full {
    display: none;
}

.articles-main__tag_active {
    background: #D2FF28;
}

.articles-main__tag_more {
    background: #D2FF28;
}

.articles-main__tag_hide {
    background: #D2FF28;
    display: none;
}

.articles-main__top {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #cbcbcb;
    display: flex;
}

.articles-main__top-currency {
    width: 338px;
    flex-shrink: 0;
    margin-left: 40px;
}

.articles-main__top-currency-item {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-radius: 16px;
    background: rgba(65, 102, 235, 0.07);
}

.articles-main__top-currency-item:last-child {
    margin-bottom: 0;
}

.articles-main__top-currency-percent {
    width: 132px;
    flex-shrink: 0;
    text-align: center;
    padding: 34px 10px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-main__top-currency-percent_up {
    background: url("../img/articles/currency-up.svg") center top no-repeat;
}

.articles-main__top-currency-percent_down {
    background: url("../img/articles/currency-down.svg") center top no-repeat;
}

.articles-main__top-currency-price {
    flex-grow: 1;
    padding: 0 10px 0 25px;
    color: #0B0D15;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.articles-main__top-currency-price a {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    display: block;
    color: #0B0D15;
}

.articles-main__top-currency-price a:hover {
    color: #4166EB;
}

.articles-main__top-currency-price small {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-top: 4px;
}

.articles-main__top-currency-control {
    margin-top: 40px;
}

.articles-main__top-article {
    flex-grow: 1;
}

.articles-main__top-article-img {
    height: 453px;
    background-color: #E3E3E3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.articles-main__top-article-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.articles-main__top-article-tags {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.articles-main__top-article-tag {
    padding: 8px 16px;
    background-color: #D2FF28;
    border-radius: 8px;
    color: #0B0D15;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.articles-main__top-article-title {
    margin-top: 24px;
    font-weight: 500;
    font-size: 36px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.articles-main__top-article-text {
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-main__top-currency-btn {
    width: 100%;
}

.articles-main__list {
    margin-top: 64px;
    padding-top: 44px;
    border-top: 1px solid #cbcbcb;
}

.articles-main__list-empty {
    padding: 30px 0;
    text-align: center;
    font-size: 24px;
    color: #0B0D15;
    opacity: 0.4;
}

.articles-main__list-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: -20px;
    margin-right: -20px;
    row-gap: 20px;
}

.articles-main__item {
    padding: 20px;
    border-radius: 8px;
    background-color: #FFFFFF;
}

.articles-main__item:hover {
    background-color: rgba(65, 102, 235, 0.07);
}

.articles-main__item-img {
    height: 320px;
    background-color: #E3E3E3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.articles-main__item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.articles-main__item-tags {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.articles-main__item-tag {
    padding: 8px 16px;
    background-color: #D2FF28;
    border-radius: 8px;
    color: #0B0D15;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.articles-main__item-title {
    margin-top: 24px;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.06em;
    color: #0B0D15;
}

.articles-main__item-text {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-main__list-pagination {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .articles-main {
        padding-top: 60px;
    }

    .articles-main__container {
        max-width: 944px;
    }

    .articles-main__container::after {
        padding-top: 80px;
    }

    .articles-main__header-title {
        font-size: 40px;
        line-height: 117%;
    }
    
    .articles-main__tags {
        margin-top: 24px;
    }

    .articles-main__top-currency {
        width: 261px;
    }

    .articles-main__top-currency-item {
        margin-bottom: 20px;
        padding: 15px 0;
        border-radius: 12px;
    }

    .articles-main__top-currency-item:last-child {
        margin-bottom: 0;
    }

    .articles-main__top-currency-percent {
        width: 100px;
        background-size: 24px;
        font-size: 13px;
        line-height: 160%;
        padding-top: 26px;
    }

    .articles-main__top-currency-price {
        padding-left: 18px;
    }

    .articles-main__top-currency-price a {
        font-size: 18px;
        line-height: 150%;
    }
    
    .articles-main__top-currency-price small {
        font-size: 12px;
        line-height: 160%;
    }

    .articles-main__top-article-img {
        height: 376px;
    }

    .articles-main__top-article-tags {
        top: 16px;
        left: 16px;
    }

    .articles-main__top-article-title {
        font-size: 32px;
        line-height: 125%;
    }

    .articles-main__list {
        padding-top: 54px;
    }

    .articles-main__list-container {
        margin-left: -10px;
        margin-right: -10px;
    }

    .articles-main__item {
        padding: 10px;
    }

    .articles-main__item-img {
        height: 255px;
    }

    .articles-main__item-tags {
        top: 16px;
        left: 16px;
    }

    .articles-main__item-tag {
        padding: 4px 14px;
        font-size: 13px;
        line-height: 160%;
    }

    .articles-main__item-title {
        font-size: 20px;
        line-height: 130%;
    }

    .articles-main__list-pagination {
        margin-top: 50px;
    }
}

@media (max-width: 940px) {
    .articles-main {
        padding-top: 60px;
    }

    .articles-main__container {
        max-width: 708px;
    }

    .articles-main__container::after {
        padding-top: 60px;
    }

    .articles-main__top {
        margin-top: 32px;
        padding-top: 32px;
    }
    
    .articles-main__top-currency {
        width: 221px;
        margin-left: 32px;
    }

    .articles-main__top-currency-item {
        margin-bottom: 14px;
    }

    .articles-main__top-currency-item:last-child {
        margin-bottom: 0;
    }

    .articles-main__top-currency-percent {
        width: 87px;
    }

    .articles-main__top-currency-control {
        margin-top: 30px;
    }

    .articles-main__top-article-img {
        height: 356px;
    }

    .articles-main__list {
        margin-top: 40px;
        padding-top: 30px;
    }

    .articles-main__list-container {
        grid-template-columns: 1fr 1fr;
    }

    .articles-main__item-img {
        height: 297px;
    }

    .articles-main__list-pagination {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .articles-main {
        padding-top: 50px;
    }

    .articles-main__container {
        padding: 0 16px;
    }

    .articles-main__container::after {
        padding-top: 60px;
    }

    .articles-main__header-title {
        font-size: 28px;
        line-height: 117%;
    }
    
    .articles-main__header-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .articles-main__top {
        display: block;
    }

    .articles-main__top-article-img {
        height: 259px;
        border-radius: 12px;
    }

    .articles-main__top-article-title {
        font-size: 18px;
        line-height: 130%;
    }

    .articles-main__top-article-text {
        font-size: 14px;
        line-height: 24px;
    }

    .articles-main__top-currency {
        width: auto;
        margin-left: 0;
        margin-top: 32px;
    }

    .articles-main__top-currency-price a {
        font-size: 16px;
        line-height: 135%;
    }
    
    .articles-main__top-currency-price small {
        margin-top: 8px;
    }

    .articles-main__list {
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid #cbcbcb;
    }
    
    .articles-main__list-container {
        grid-template-columns: 1fr;
        margin: 0;
        row-gap: 32px;
    }

    .articles-main__item {
        padding: 0;
        border-radius: 0;
    }

    .articles-main__item:hover {
        background-color: #FFFFFF;
    }

    .articles-main__item-img {
        border-radius: 12px;
        height: 259px;
    }

    .articles-main__item-title {
        font-size: 18px;
        line-height: 130%;
    }

    .articles-main__item-text {
        margin-top: 16px;
        font-size: 14px;
        line-height: 24px;
    }
    
    .articles-main__list-pagination {
        margin-top: 32px;
    }
}

/* ======= articles-category ======= */

.articles-category {
    padding: 64px 0 110px;
}

.articles-category__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.articles-main__header_category {
    margin-top: 36px;
}

.articles-main__list_category {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .articles-category {
        padding: 50px 0 80px;
    }

    .articles-category__container {
        max-width: 944px;
    }
}

@media (max-width: 940px) {
    .articles-category {
        padding: 40px 0 50px;
    }

    .articles-category__container {
        max-width: 708px;
    }

    .articles-main__list_category {
        margin-top: 32px;
    }
}

@media (max-width: 600px) {
    .articles-category {
        padding: 32px 0 50px;
    }

    .articles-category__container {
        padding: 0 16px;
    }
}

/* ======= articles-subscription ======= */

.articles-subscription {
    padding: 110px 0;
    position: relative;
    background: url("../img/articles/subscription-bg.webp") top right no-repeat #0B0D15;
    background-size: 506px;
}

.articles-subscription::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 313px;
    height: 96px;
    background: url("../img/articles/subscription-arrow.webp") right center no-repeat;
    background-size: 313px;
}

.articles-subscription__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.articles-subscription__title {
    max-width: 869px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: center;
}

.articles-subscription__title span {
    font-weight: 600;
    color: #D2FF28;
}

.articles-subscription__form {
    display: flex;
    justify-content: center;
    margin: 40px auto 0;
}

.articles-subscription__control {
    margin-left: 40px;
}

.articles-subscription__btn,
.articles-subscription__btn:hover {
    background-color: #D2FF28;
    border-color: #D2FF28;
    color: #000000;
}

.articles-subscription__field {
    width: 373px;
}

.articles-subscription__field-input {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    height: 56px;
    padding: 16px 17px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    background: transparent;
    width: 100%;
}

.articles-subscription__field-input:focus {
    background: transparent;
    color: #FFFFFF;
}

@media (max-width: 1200px) {
    .articles-subscription {
        padding: 80px 0;
    }

    .articles-subscription::after {
        width: 170px;
        bottom: 30px;
        background-size: 253px;
    }

    .articles-subscription__container {
        max-width: 944px;
    }

    .articles-subscription__title {
        max-width: 629px;
        font-size: 40px;
        line-height: 117%;
    }
}

@media (max-width: 940px) {
    .articles-subscription {
        padding: 60px 0;
        background-size: 406px;
    }

    .articles-subscription::after {
        display: none;
    }

    .articles-subscription__container {
        max-width: 708px;
    }

    .articles-subscription__field {
        width: 320px;
    }
}

@media (max-width: 600px) {
    .articles-subscription {
        padding: 60px 0;
        background-size: 256px;
    }

    .articles-subscription__container {
        padding: 0 16px;
    }

    .articles-subscription__title {
        max-width: none;
        font-size: 28px;
        line-height: 117%;
    }

    .articles-subscription__form {
        display: block;
    }

    .articles-subscription__control {
        margin-left: 0;
        margin-top: 20px;
    }

    .articles-subscription__field {
        width: 100%;
    }

    .articles-subscription__btn {
        width: 100%;
    }
}

/* ======= articles-view ======= */

.articles-view {
    padding-top: 83px;
}

.articles-view__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.articles-view__container::after {
    content: '';
    display: block;
    padding-top: 110px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.articles-view__back {
    padding-left: 40px;
    background: url("../img/articles/back-arrow.svg") left center no-repeat;
}

.articles-view__back-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-view__back-link:hover {
    color: #0B0D15;
}

.articles-view__title {
    margin-top: 40px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.articles-view__tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.articles-view__tags span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    padding: 8px 16px;
    border-radius: 8px;
    background: #f2f4fc;
}

.articles-view__main-img {
    margin-top: 40px;
    overflow: hidden;
    height: 560px;
    width: 100%;
    border-radius: 16px;
}

.articles-view__main-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.articles-view__content {
    margin: 50px auto 0;
    max-width: 638px;
}

.articles-view__content *:first-child {
    margin-top: 0;
}

.articles-view__content h2 {
    margin-top: 40px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.articles-view__content h3 {
    margin-top: 40px;
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.articles-view__content h4,
.articles-view__content h5,
.articles-view__content h6 {
    margin-top: 40px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #0B0D15;
}

.articles-view__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    margin-bottom: 20px;
}

.articles-view__content b,
.articles-view__content strong {
    font-weight: 600;
    color: #4166EB;
}

.articles-view__content a,
.articles-view__content a:hover {
    font-weight: 600;
    color: #4166EB;
    text-decoration: underline;
}

.articles-view__content ul {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
}

.articles-view__content ul > li {
    display: block;
    padding-left: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-view__content ul > li:last-child {
    margin-bottom: 0;
}

.articles-view__content ul > li::after {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #0A0A0A;
    left: 0;
    top: 9px;
}

.articles-view__content ol {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    counter-reset: num;
}

.articles-view__content ol > li {
    display: block;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-view__content ol > li:last-child {
    margin-bottom: 0;
}

.articles-view__content ol > li::before {
    content: counter(num) ". ";
    counter-increment: num;
}

.articles-view__content img {
    width: auto;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: baseline;
    border: 0;
    display: inline-block;
    margin-right: 8px;
}

.articles-view__content blockquote {
    font-weight: 500;
    font-size: 26px;
    line-height: 135%;
    letter-spacing: -0.06em;
    color: #0B0D15;
    margin-bottom: 20px;
}

.articles-view__bottom {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.articles-view__bottom-back {
    padding-left: 40px;
    background: url("../img/articles/back-arrow.svg") left center no-repeat;
}

.articles-view__bottom-back-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-view__bottom-back-link:hover {
    color: #0B0D15;
}

.articles-view__bottom-share {
    display: flex;
    align-items: center;
}

.articles-view__bottom-share span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.articles-view__bottom-share-list {
    display: flex;
    column-gap: 8px;
    margin-left: 24px;
}

.articles-view__more {
    margin-top: 110px;
}

.articles-view__more-title {
    font-weight: 600;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.articles-view__more-list {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #cbcbcb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.articles-view__more-item-img {
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f2f4fc;
}

.articles-view__more-item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.articles-view__more-item-title {
    margin-top: 24px;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.06em;
    color: #0B0D15;
}

.articles-view__more-item-text {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

@media (max-width: 1200px) {
    .articles-view {
        padding-top: 50px;
    }

    .articles-view__container {
        max-width: 944px;
    }

    .articles-view__title {
        font-weight: 400;
        font-size: 40px;
        line-height: 117%;
    }

    .articles-view__main-img {
        height: 434px;
    }

    .articles-view__content h2 {
        font-size: 40px;
        line-height: 117%;
    }

    .articles-view__content h3 {
        font-size: 40px;
        line-height: 117%;
    }

    .articles-view__content h4,
    .articles-view__content h5,
    .articles-view__content h6 {
        font-size: 18px;
        line-height: 150%;
    }

    .articles-view__more {
        margin-top: 80px;
    }

    .articles-view__more-title {
        font-size: 40px;
        line-height: 117%;
    }

    .articles-view__more-item-title {
        font-size: 20px;
        line-height: 130%;
    }
}

@media (max-width: 940px) {
    .articles-view {
        padding-top: 40px;
    }

    .articles-view__container {
        max-width: 708px;
    }

    .articles-view__container::after {
        padding-top: 50px;
    }

    .articles-view__main-img {
        height: 338px;
    }

    .articles-view__more-list {
        gap: 32px;
    }

    .articles-view__more-item-img {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .articles-view {
        padding-top: 40px;
    }

    .articles-view__container {
        padding: 0 16px;
    }

    .articles-view__container::after {
        padding-top: 30px;
        border: none;
    }

    .articles-view__back-link {
        font-size: 14px;
        line-height: 24px;
    }

    .articles-view__title {
        margin-top: 32px;
        font-size: 28px;
        line-height: 117%;
    }

    .articles-view__tags {
        margin-top: 32px;
    }

    .articles-view__main-img {
        margin-top: 32px;
        height: 157px;
        border-radius: 10px;
    }
    
    .articles-view__content h2 {
        font-size: 28px;
        line-height: 117%;
    }

    .articles-view__content h3 {
        font-size: 28px;
        line-height: 117%;
    }

    .articles-view__content h4,
    .articles-view__content h5,
    .articles-view__content h6 {
        font-size: 18px;
        line-height: 150%;
    }

    .articles-view__content p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .articles-view__content ul > li {
        font-size: 14px;
        line-height: 24px;
    }
    
    .articles-view__content ol > li {
        font-size: 14px;
        line-height: 24px;
    }

    .articles-view__main-img {
        height: 188px;
        border-radius: 4px;
    }

    .articles-view__content blockquote {
        font-size: 20px;
        line-height: 135%;
    }

    .articles-view__bottom {
        margin-top: 32px;
        flex-direction: column-reverse;
        gap: 40px;
        align-items: flex-end;
    }

    .articles-view__bottom-share span {
        font-size: 16px;
        line-height: 24px;
    }

    .articles-view__bottom-back {
        margin-right: auto;
    }

    .articles-view__bottom-back-link {
        font-size: 14px;
        line-height: 24px;
    }

    .articles-view__more {
        margin-top: 60px;
    }

    .articles-view__more-list {
        margin-top: 32px;
        padding-top: 32px;
        gap: 35px;
        grid-template-columns: 1fr;
    }

    .articles-view__more-title {
        font-size: 28px;
        line-height: 117%;
    }

    .articles-view__more-item-title {
        font-size: 18px;
        line-height: 130%;
    }

    .articles-view__more-item-text {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ======= offers seo-text ======= */

.offers-seotext {
    padding: 120px 0 132px;
    background-color: #F5F5F5;
}

.offers-seotext__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.offers-seotext__content {
    max-height: 500px;
    position: relative;
    overflow: hidden;
}

.offers-seotext__content_full {
    max-height: none;
}

.offers-seotext__content-more {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #4166EB;
    background: #F5F5F5;
}

.offers-seotext__content-more::after {
    content: '';
    display: block;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(0deg, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0));
}

.offers-seotext__content-more span {
    cursor: pointer;
}

.offers-seotext__content-more span:hover {
    opacity: 0.7;
}

.offers-seotext__content_full .offers-seotext__content-more {
    display: none;
}

.offers-seotext__content h2 {
    font-weight: 400;
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.offers-seotext__content h3 {
    margin-top: 40px;
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #0B0D15;
}

.offers-seotext__content h4,
.offers-seotext__content h5,
.offers-seotext__content h6 {
    margin-top: 40px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #0B0D15;
}

.offers-seotext__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
    margin-bottom: 20px;
}

.offers-seotext__content b,
.offers-seotext__content strong {
    font-weight: 600;
    color: #4166EB;
}

.offers-seotext__content a,
.offers-seotext__content a:hover {
    color: #4166EB;
    text-decoration: underline;
}

.offers-seotext__content ul {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
}

.offers-seotext__content ul > li {
    display: block;
    padding-left: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.offers-seotext__content ul > li:last-child {
    margin-bottom: 0;
}

.offers-seotext__content ul > li::after {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #0A0A0A;
    left: 0;
    top: 9px;
}

.offers-seotext__content ol {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    counter-reset: num;
}

.offers-seotext__content ol > li {
    display: block;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0B0D15;
}

.offers-seotext__content ol > li:last-child {
    margin-bottom: 0;
}

.offers-seotext__content ol > li::before {
    content: counter(num) ". ";
    counter-increment: num;
    color: #4166EB;
    font-weight: 600;
}

.offers-seotext__content img {
    width: auto;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: baseline;
    border: 0;
    display: inline-block;
    margin-right: 8px;
}

.offers-seotext__content blockquote {
    font-weight: 500;
    font-size: 26px;
    line-height: 135%;
    letter-spacing: -0.06em;
    color: #0B0D15;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .offers-seotext {
        padding: 80px 0 92px;
    }

    .offers-seotext__container {
        max-width: 944px;
    }

    .offers-seotext__content h2 {
        font-size: 40px;
        line-height: 117%;
    }

    .offers-seotext__content h3 {
        font-size: 40px;
        line-height: 117%;
    }

    .offers-seotext__content h4,
    .offers-seotext__content h5,
    .offers-seotext__content h6 {
        font-size: 18px;
        line-height: 150%;
    }
}

@media (max-width: 940px) {
    .offers-seotext {
        padding: 62px 0 62px;
        overflow: hidden;
    }

    .offers-seotext__container {
        max-width: 708px;
    }
}

@media (max-width: 600px) {
    .offers-seotext {
        padding: 62px 0 30px;
    }

    .offers-seotext__container {
        padding: 0 16px;
    }

    .offers-seotext__content h2 {
        font-size: 28px;
        line-height: 117%;
    }

    .offers-seotext__content h3 {
        font-size: 28px;
        line-height: 117%;
    }

    .offers-seotext__content h4,
    .offers-seotext__content h5,
    .offers-seotext__content h6 {
        font-size: 18px;
        line-height: 150%;
    }

    .offers-seotext__content p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .offers-seotext__content ul > li {
        font-size: 14px;
        line-height: 24px;
    }
    
    .offers-seotext__content ol > li {
        font-size: 14px;
        line-height: 24px;
    }

    .offers-seotext__content blockquote {
        font-size: 20px;
        line-height: 135%;
    }
}


/* ======= trading-header ======= */

.trading-header {
    padding: 100px 0 110px;
    background: linear-gradient(145.16deg, #0053C6 6.74%, #5AA1FD 39.81%, #FFD9F8 82.04%);
}

.trading-header__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

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

.trading-header__rates {
    margin-left: 40px;
    width: 526px;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.trading-header__rates_loading {
    display: block;
    min-height: 330px;
    position: relative;
}

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

.trading-header__rate {
    border-radius: 20px;
    padding: 20px;
    height: 154px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.55);
}

.trading-header__rate-currency {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #000000;
}

.trading-header__rate-price {
    margin-top: 5px;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
}

.trading-header__rate-icons {
    margin-top: auto;
    display: flex;
}

.trading-header__rate-icons img {
    width: 30px;
    height: 30px;
    border-radius: 9999px;
    background-color: #FFFFFF;
    display: block;
    position: relative;
}

.trading-header__rate-icons img:first-child {
    z-index: 2;
}

.trading-header__rate-icons img:last-child {
    margin-left: -7px;
}

.trading-header__title {
    font-size: 48px;
    line-height: 110%;
    font-weight: 400;
    color: #FFFFFF;
}

.trading-header__subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
    color: #FFFFFF;
    line-height: 122%;
    max-width: 580px;
}

.trading-header__available {
    margin-top: 40px;
    display: flex;
    align-items: center;
    max-width: 550px;
}

.trading-header__available_mobile {
    display: none;
}

.trading-header__available-icon {
    width: 70px;
    height: 70px;
    margin-right: 30px;
}

.trading-header__available-text {
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
    color: #FFFFFF;
}

@media (max-width: 1200px) {
    .trading-header__container {
        max-width: 944px;
    }

    .trading-header__rates {
        width: 400px;
        grid-template-columns: 1fr 1fr;
    }

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

    .trading-header__rate:nth-child(5),
    .trading-header__rate:nth-child(6) {
        display: none;
    }
}

@media (max-width: 940px) {
    .trading-header {
        padding: 80px 0;
    }

    .trading-header__container {
        max-width: 708px;
        flex-direction: column;
    }

    .trading-header__rates {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-left: 0;
        width: auto;
        margin-top: 33px;
    }

    .trading-header__rates_loading {
        min-height: 233px;
    }

    .trading-header__rate {
        height: auto;
        padding: 15px;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
    }

    .trading-header__rate-icons {
        margin-top: 0;
        margin-right: 15px;
    }

    .trading-header__rate-price {
        margin-top: 0;
    }

    .trading-header__subtitle {
        max-width: none;
    }

    .trading-header__rate-icons img {
        width: 39px;
        height: 39px;
    }

    .trading-header__rate:nth-child(4) {
        display: none;
    }

    .trading-header__container::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .trading-header__container {
        padding: 0 16px;
    }

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

    .trading-header__title {
        font-size: 30px;
    }

    .trading-header__subtitle {
        margin-top: 20px;
    }

    .trading-header__available {
        flex-direction: column;
        margin-top: 40px;
    }

    .trading-header__available-icon {
        margin-right: 0;
        margin-bottom: 20px;
        width: 120px;
        height: 120px;
    }
    
    .trading-header__available-text {
        text-align: center;
        font-size: 16px;
    }

    .trading-header__available_mobile {
        display: flex;
    }

    .trading-header__available_desktop {
        display: none;
    }
}

/* ======= trading-place ======= */

.trading-place {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.trading-place__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.trading-place__container::after {
    content: '';
    display: block;
    width: 500px;
    height: 490px;
    background: url("../img/trading/place-bg.webp") center no-repeat;
    background-size: contain;
    flex-shrink: 0;
    margin-left: 66px;
}

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

.trading-place__title {
    font-size: 36px;
    line-height: 120%;
    font-weight: 500;
    color: #0A0A0A;
}

.trading-place__title span {
    color: #5987F7;
}

.trading-place__subtitle {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 400;
    color: #93A0A5;
    line-height: 122%;
}

.trading-place__control {
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .trading-place__container {
        max-width: 944px;
    }

    .trading-place {
        padding: 80px 0;
    }

    .trading-place__container::after {
        margin-left: 30px;
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 940px) {
    .trading-place__container {
        max-width: 708px;
    }

    .trading-place__container::after {
        display: none;
    }

    .trading-place__title::after {
        content: '';
        display: block;
        width: 100%;
        height: 300px;
        background: url("../img/trading/place-bg.webp") center no-repeat;
        background-size: contain;
        margin-top: 40px;
    }

    .trading-place__control {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .trading-place__container {
        padding: 0 16px;
    }

    .trading-place__title {
        font-size: 30px;
        text-align: center;
    }

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

    .trading-place__subtitle {
        margin-top: 30px;
    }

    .trading-place__subtitle br {
        display: none;
    }

    .trading-place__title::after {
        height: 245px;
        margin-top: 30px;
    }

    .trading-place__btn {
        width: 100%;
    }

    .trading-place__control {
        margin-top: 30px;
    }
}

/* ======= trading-start ======= */

.trading-start {
    padding: 80px 0 60px;
    background: #E5F4FB;
}

.trading-start__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
}

.trading-start__above {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #0A0A0A;
    line-height: 122%;
}

.trading-start__title {
    text-align: center;
    margin-top: 35px;
    font-size: 36px;
    line-height: 122%;
    font-weight: 400;
    color: #0A0A0A;
    max-width: 894px;
    margin-left: auto;
    margin-right: auto;
}

.trading-start__title span {
    color: #5987F7;
}

.trading-start__list {
    margin-top: 82px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 50px;
}

.trading-start__item {
    display: flex;
    align-items: center;
}

.trading-start__item-icon {
    width: 128px;
    height: 128px;
    margin-right: 30px;
    flex-shrink: 0;
}

.trading-start__item-label {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    line-height: 122%;
}

.trading-start__control {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.trading-start__btn {
    width: 261px;
}

@media (max-width: 1200px) {
    .trading-start__container {
        max-width: 944px;
    }
}

@media (max-width: 940px) {
    .trading-start__container {
        max-width: 708px;
    }

    .trading-start__list {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }

    .trading-start__item-icon {
        width: 100px;
        height: 100px;
        margin-right: 20px;
    }
}

@media (max-width: 600px) {
    .trading-start {
        padding: 50px 0 40px;
    }

    .trading-start__container {
        padding: 0 16px;
    }

    .trading-start__title {
        margin-top: 20px;
        font-size: 30px;
        font-weight: 500;
    }

    .trading-start__above {
        font-weight: 400;
    }

    .trading-start__list {
        margin-top: 40px;
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .trading-start__control {
        margin-top: 40px;
    }

    .trading-start__btn {
        width: 100%;
    }
}

/* ======= trading-bottom ======= */

.trading-bottom {
    padding: 80px 0;
    background-color: #FFFFFF;
    position: relative;
}

.trading-bottom::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 676px;
    background: linear-gradient(148.77deg, #FFF2D5 -2.42%, #E5EEFB 52.11%, #E5F4FB 83.39%);
}

.trading-bottom__container {
    max-width: 1206px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trading-safety {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trading-safety::after {
    content: '';
    display: block;
    width: 430px;
    height: 380px;
    background: url("../img/trading/safety-bg.webp") center no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.trading-safety__content {
    max-width: 600px;
}

.trading-safety__title {
    font-size: 36px;
    line-height: 122%;
    font-weight: 500;
    color: #0A0A0A;
}

.trading-safety__title span {
    color: #5987F7;
}

.trading-safety__subtitle {
    margin-top: 35px;
    font-size: 18px;
    line-height: 122%;
    font-weight: 400;
    color: #93A0A5;
}

.trading-demo {
    margin-top: 80px;
    padding: 30px 53px;
    border-radius: 20px;
    background-color: #DEEDF4;
    display: flex;
    align-items: center;
}

.trading-demo__icon {
    width: 215px;
    height: 220px;
    object-fit: contain;
    margin-right: 138px;
    flex-shrink: 0;
}

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

.trading-demo__title {
    font-size: 36px;
    line-height: 122%;
    font-weight: 500;
    color: #0A0A0A;
}

.trading-demo__subtitle {
    margin-top: 20px;
    max-width: 500px;
    font-size: 18px;
    line-height: 122%;
    font-weight: 400;
    color: #000000;
}

.trading-demo__control {
    margin-top: 30px;
}

.trading-demo__btn {
    width: 211px;
}

.trading-popular {
    margin-top: 100px;
}

.trading-popular__title {
    text-align: center;
    font-size: 36px;
    line-height: 122%;
    font-weight: 500;
    color: #0A0A0A;
}

.trading-popular__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.trading-popular__item {
    border-radius: 20px;
    padding: 20px;
    height: 154px;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
}

.trading-popular__item-currency {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #0A0A0A;
}

.trading-popular__item-price {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
}

.trading-popular__item-price_up::after {
    content: '';
    display: block;
    background: url("../img/trading/up.svg") center no-repeat;
    width: 16px;
    height: 16px;
    background-size: contain;
}

.trading-popular__item-price_down::after {
    content: '';
    display: block;
    background: url("../img/trading/down.svg") center no-repeat;
    width: 16px;
    height: 16px;
    background-size: contain;
}

.trading-popular__item-icons {
    margin-top: auto;
    display: flex;
}

.trading-popular__item-icons img {
    width: 30px;
    height: 30px;
    border-radius: 9999px;
    background-color: #FFFFFF;
    display: block;
    position: relative;
}

.trading-popular__item-icons img:first-child {
    z-index: 2;
}

.trading-popular__item-icons img:last-child {
    margin-left: -7px;
}

.trading-popular__item_more {
    display: none;
}

.trading-popular__show {
    margin-top: 40px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 122%;
    color: #0A0A0A;
    cursor: pointer;
}

.trading-popular__show img {
    width: 28px;
    height: 28px;
    margin-left: 30px;
}

.trading-popular__show:hover {
    color: #0A0A0A;
    opacity: 0.7;
}

.trading-today {
    margin-top: 60px;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
}

.trading-today__icon {
    flex-shrink: 0;
    width: 118px;
    height: 106px;
    object-fit: contain;
    margin-right: 50px;
}

.trading-today__title {
    max-width: 400px;
    flex-grow: 1;
    margin-right: auto;
    font-size: 32px;
    line-height: 122%;
    font-weight: 500;
    color: #0A0A0A;
}

.trading-today__title span {
    color: #5987F7;
}

.trading-today__btn {
    width: 261px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .trading-bottom__container {
        max-width: 944px;
    }

    .trading-demo__icon {
        margin-right: 60px;
    }

    .trading-today__icon {
        margin-right: 30px;
    }
}

@media (max-width: 940px) {
    .trading-bottom__container {
        max-width: 708px;
    }

    .trading-bottom::before {
        top: 946px;
    }

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

    .trading-safety__content {
        max-width: none;
    }

    .trading-safety::after {
        display: none;
    }

    .trading-safety__title::after {
        content: '';
        display: block;
        height: 292px;
        width: 100%;
        margin-top: 40px;
        background: url("../img/trading/safety-bg.webp") center no-repeat;
        background-size: contain;
    }

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

    .trading-demo__icon {
        margin-right: 0;
    }

    .trading-demo__content {
        margin-top: 42px;
    }

    .trading-demo__control {
        display: flex;
        justify-content: center;
    }

    .trading-popular__list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trading-popular__item {
        height: auto;
        padding: 15px;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
    }

    .trading-popular__item-icons {
        margin-top: 0;
        margin-right: 15px;
    }

    .trading-popular__item-price {
        margin-top: 0;
    }

    .trading-popular__item-icons img {
        width: 39px;
        height: 39px;
    }

    .trading-popular__item-top {
        flex-grow: 1;
    }

    .trading-today {
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .trading-today__icon {
        margin-right: 0;
        height: 140px;
        width: 100%;
    }

    .trading-today__title {
        margin-right: 0;
        margin-top: 40px;
        text-align: center;
    }

    .trading-today__btn {
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .trading-bottom {
        padding: 50px 0 40px;
    }

    .trading-bottom::before {
        top: 900px;
    }

    .trading-bottom__container {
        padding: 0 16px;
    }

    .trading-safety__title {
        font-size: 30px;
    }

    .trading-safety__title::after {
        height: 220px;
        margin-top: 30px;
    }

    .trading-safety__subtitle {
        margin-top: 30px;
    }

    .trading-demo {
        padding: 30px 20px 20px;
        margin-top: 70px;
    }

    .trading-demo__icon {
        height: 200px;
        width: 100%;
    }

    .trading-demo__title {
        font-size: 30px;
        text-align: center;
    }

    .trading-demo__subtitle {
        text-align: center;
    }

    .trading-demo__control {
        margin-top: 30px;
        width: 100%;
    }

    .trading-demo__btn {
        width: 100%;
    }

    .trading-popular {
        margin-top: 80px;
    }

    .trading-popular__title {
        font-size: 30px;
    }

    .trading-popular__list {
        margin-top: 30px;
    }

    .trading-popular__show {
        margin-top: 30px;
        flex-direction: column;
    }

    .trading-popular__show img {
        margin-left: 0;
        margin-top: 10px;
    }

    .trading-today {
        padding: 60px 20px 20px;
    }

    .trading-today__title {
        font-size: 30px;
    }

    .trading-today__btn {
        width: 100%;
    }
}

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

.competition-header {
    padding: 80px 0;
    background: linear-gradient(145.16deg, #0053C6 6.74%, #5AA1FD 39.81%, #FFD9F8 82.04%);
}

.competition-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.competition-header__content {
    max-width: 450px;
    flex-grow: 1;
}

.competition-header__img {
    width: 503px;
    flex-shrink: 0;
}

.competition-header__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #FFFFFF;
}

.competition-header__subtitle {
    margin-top: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.competition-timer {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.competition-timer__value {
    width: 45px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #CCE5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 17px;
    line-height: 100%;
    color: #CCE5F9;
}

.competition-timer__label {
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
    font-size: 11px;
    line-height: 100%;
    color: #FFFFFF;
}

.competition-header__control {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.competition-header__control-text {
    flex-grow: 1;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
}

.competition-about {
    padding: 130px 0 140px;
}

.competition-about__inner {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.competition-about__img {
    width: 122px;
    flex-shrink: 0;
}

.competition-about__content {
    flex-grow: 1;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    color: #0A0A0A;
    text-transform: uppercase;
}

.competition-about__content span {
    color: #5987F7;
}

.competition-about__content strong {
    color: #F59293;
    font-weight: 500;
}

.competition-prizes {
    padding: 60px 0;
    background: linear-gradient(148.77deg, #FFF2D5 -2.42%, #E5EEFB 52.11%, #E5F4FB 83.39%);
}

.competition-prizes__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.competition-prizes__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.competition-prizes__item {
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.competition-prizes__item-img {
    height: 180px;
}

.competition-prizes__item-title {
    margin-top: 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #93A0A5;
    text-align: center;
}

.competition-prizes__item-amount {
    margin-top: 15px;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.competition-prizes__other {
    margin-top: 50px;
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.competition-prizes__other span {
    display: block;
    margin-top: 4px;
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    color: #5987F7;
    text-align: center;
}

.competition-rating {
    padding: 80px 0;
}

.competition-rating__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.competition-rating__content {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 120px;
}

.competition-rating__img {
    flex-shrink: 0;
    width: 310px;
}

.competition-rating__table {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.competition-rating__table-row {
    display: flex;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #0A0A0A;
}

.competition-rating__table-num {
    flex-shrink: 0;
    width: 70px;
}

.competition-rating__table-name {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.competition-rating__table-amount {
    font-weight: 500;
    flex-shrink: 0;
    text-align: right;
    margin-left: 30px;
    white-space: nowrap;
}

.competition-rating__control {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.competition-work {
    padding: 60px 0;
    background-color: #E5F4FB;
}

.competition-work__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.competition-work__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.competition-work__item {
    position: relative;
}

.competition-work__item-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    color: #0A0A0A;
}

.competition-work__item-img {
    display: flex;
    justify-content: center;
    padding: 70px 0 40px;
}

.competition-work__item-img img {
    height: 128px;
}

.competition-work__item-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    color: #0A0A0A;
    text-align: center;
}

.competition-work__control {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.competition-work__btn {
    min-width: 238px;
}

.competition-conditions {
    padding: 80px 0;
}

.competition-conditions__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.competition-conditions__content {
    margin-top: 65px;
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.competition-conditions__img {
    flex-shrink: 0;
    width: 224px;
}

.competition-conditions__right {
    flex-grow: 1;
}

.competition-conditions__section {
    margin-bottom: 50px;
}

.competition-conditions__section-title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
}

.competition-conditions__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.competition-conditions__item {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
    padding-left: 25px;
    position: relative;
}

.competition-conditions__item::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 3px;
    background-color: #5987F7;
    position: absolute;
    left: 0;
    top: 7px;
}

.competition-conditions__item-bold {
    margin-top: 15px;
    font-weight: 600;
}

.competition-conditions__control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.competition-conditions__time {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
}

.competition-conditions__btn {
    min-width: 238px;
}

.competition-story {
    padding: 60px 0;
    background: linear-gradient(148.77deg, #FFF2D5 -2.42%, #E5EEFB 52.11%, #E5F4FB 83.39%);
}

.competition-story__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.competition-story__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.competition-story__item {
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 50px 30px 30px;
    display: flex;
    flex-direction: column;
}

.competition-story__item-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #0A0A0A;
    flex-grow: 1;
}

.competition-story__item-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.competition-story__item-img {
    width: 80px;
    flex-shrink: 0;
}

.competition-story__item-winner {
    flex-grow: 1;
}

.competition-story__item-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
    text-transform: uppercase;
}

.competition-story__item-place {
    margin-top: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #5987F7;
}

.competition-guarantee {
    padding: 80px 0 60px;
    background-color: #FBFBFB;
}

.competition-guarantee__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.competition-guarantee__list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.competition-guarantee__item-img {
    display: flex;
    justify-content: center;
}

.competition-guarantee__item-img img {
    width: 128px;
    flex-shrink: 0;
}

.competition-guarantee__item-title {
    margin-top: 40px;
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    color: #0A0A0A;
    text-align: center;
}

.competition-guarantee__control {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.competition-guarantee__btn {
    height: auto;
    padding: 15px 30px;
}

.competition-guarantee__btn_mob {
    display: none;
}

.competition-info {
    padding: 80px 0;
}

.competition-info__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.competition-info__item {
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.competition-info__item_blue {
    background-color: #E5F4FB;
}

.competition-info__item_yellow {
    background-color: #FBF7E5;
}

.competition-info__item-img img {
    width: 128px;
}

.competition-info__item-title {
    margin-top: 40px;
    padding-right: 40px;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    color: #0A0A0A;
}

.competition-info__item-subtitle {
    flex-grow: 1;
    margin-top: 25px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
}

.competition-info__item-control {
    margin-top: 30px;
}

.competition-info__item-btn {
    min-width: 176px;
}

@media (max-width: 1200px) {
    .competition-header__img {
        width: 400px;
    }

    .competition-info__item-title {
        padding-right: 0;
    }
}

@media (max-width: 940px) {
    .competition-header__inner {
        flex-direction: column-reverse;
    }

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

    .competition-about__content {
        font-size: 28px;
    }

    .competition-prizes__list {
        grid-template-columns: 1fr;
    }

    .competition-rating__content {
        flex-direction: column;
        gap: 60px;
    }

    .competition-rating__table {
        width: 100%;
    }

    .competition-work__list {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .competition-conditions__content {
        flex-direction: column;
        align-items: center;
    }

    .competition-story__item-text {
        font-size: 20px;
    }

    .competition-guarantee__item-title {
        font-size: 20px;
    }

    .competition-info__item-title {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .competition-header {
        padding: 40px 0;
    }

    .competition-header__img {
        width: 228px;
    }

    .competition-header__title {
        font-size: 36px;
        text-align: center;
    }

    .competition-header__subtitle {
        margin-top: 15px;
        font-size: 16px;
        text-align: center;
    }

    .competition-timer {
        margin-top: 40px;
        justify-content: center;
    }

    .competition-header__control {
        margin-top: 40px;
        flex-direction: column;
        gap: 20px;
    }

    .competition-header__btn {
        width: 100%;
    }

    .competition-header__control-text {
        text-align: center;
        font-size: 16px;
        max-width: 270px;
    }

    .competition-about {
        padding: 50px 0;
    }

    .competition-about__inner {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .competition-about__content {
        font-size: 20px;
    }

    .competition-prizes {
        padding: 40px 0;
    }

    .competition-prizes__title {
        font-size: 36px;
    }

    .competition-prizes__list {
        margin-top: 30px;
        gap: 10px;
    }

    .competition-prizes__item {
        border-radius: 20px;
        padding: 20px 20px 25px;
    }

    .competition-prizes__item-img {
        height: 80px;
    }

    .competition-prizes__item-title {
        margin-top: 10px;
    }

    .competition-prizes__item-amount {
        margin-top: 10px;
        font-size: 28px;
    }

    .competition-prizes__other {
        margin-top: 40px;
        font-size: 22px;
    }

    .competition-prizes__other span {
        font-size: 22px;
    }

    .competition-rating {
        padding: 50px 0;
    }

    .competition-rating__title {
        font-size: 36px;
    }

    .competition-rating__content {
        margin-top: 30px;
        gap: 30px;
    }

    .competition-rating__img {
        width: 172px;
    }

    .competition-rating__table {
        gap: 20px;
    }

    .competition-rating__table-row {
        font-size: 14px;
    }

    .competition-rating__table-num {
        width: 31px;
    }

    .competition-rating__table-amount {
        margin-left: 16px;
    }

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

    .competition-work {
        padding: 40px 0;
    }

    .competition-work__title {
        font-size: 36px;
    }

    .competition-work__list {
        margin-top: 50px;
    }

    .competition-work__item-img {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .competition-work__item-num {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .competition-work__item-title {
        font-size: 18px;
    }

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

    .competition-work__btn {
        width: 100%;
    }

    .competition-conditions {
        padding: 50px 0;
    }

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

    .competition-conditions__title br {
        display: none;
    }

    .competition-conditions__content {
        margin-top: 30px;
        gap: 30px;
    }

    .competition-conditions__img {
        width: 125px;
    }

    .competition-conditions__section {
        margin-bottom: 30px;
    }

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

    .competition-conditions__time {
        text-align: center;
    }

    .competition-conditions__btn {
        width: 100%;
    }

    .competition-story {
        padding: 40px 0;
    }

    .competition-story__title {
        font-size: 36px;
    }

    .competition-story__list {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .competition-story__item {
        border-radius: 20px;
        padding: 30px;
    }

    .competition-story__item-text {
        font-size: 20px;
        text-align: center;
    }

    .competition-story__item-bottom {
        margin-top: 30px;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .competition-story__item-name {
        text-align: center;
    }

    .competition-story__item-place {
        text-align: center;
    }

    .competition-guarantee {
        padding: 40px 0;
    }

    .competition-guarantee__title {
        font-size: 36px;
    }

    .competition-guarantee__list {
        margin-top: 50px;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .competition-guarantee__item-title {
        margin-top: 20px;
        font-size: 18px;
    }

    .competition-guarantee__item-title br {
        display: none;
    }

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

    .competition-guarantee__btn_desc {
        display: none;
    }

    .competition-guarantee__btn_mob {
        display: block;
        width: 100%;
    }

    .competition-info {
        padding: 50px 0;
    }

    .competition-info__list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .competition-info__item {
        border-radius: 20px;
        padding: 30px;
    }

    .competition-info__item-subtitle {
        margin-top: 20px;
    }

    .competition-info__item-btn {
        width: 100%;
    }
}

/* ======= start-competition ======= */

.start-competition {
    padding: 70px 0 50px;
    background: linear-gradient(145.16deg, #0053C6 6.74%, #5AA1FD 39.81%, #FFD9F8 82.04%);
}

.start-competition__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #FFFFFF;
    text-align: center;
}

.start-competition__subtitle {
    margin: 30px auto 0;
    max-width: 380px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
    text-align: center;
}

.start-competition__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.start-competition__item {
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.start-competition__item-img {
    height: 180px;
}

.start-competition__item-title {
    margin-top: 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #93A0A5;
    text-align: center;
}

.start-competition__item-amount {
    margin-top: 15px;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.start-competition__control {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.start-competition__btn {
    min-width: 192px;
}

.start-competition__free {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #0092FC;
}

@media (max-width: 940px) {
    .start-competition__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .start-competition {
        padding: 50px 0 40px;
    }

    .start-competition__title {
        font-size: 36px;
    }

    .start-competition__subtitle {
        margin-top: 15px;
        font-size: 16px;
    }

    .start-competition__list {
        margin-top: 30px;
        gap: 10px;
    }

    .start-competition__item {
        border-radius: 20px;
        padding: 20px 20px 25px;
    }

    .start-competition__item-img {
        height: 80px;
    }

    .start-competition__item-title {
        margin-top: 10px;
    }

    .start-competition__item-amount {
        margin-top: 10px;
        font-size: 28px;
    }

    .start-competition__control {
        margin-top: 30px;
    }

    .start-competition__btn {
        width: 100%;
    }
}

/* ======= affiliate-v2 ======= */

.affiliate-v2-header {
    padding: 60px 0 55px;
    background: linear-gradient(145.16deg, #0053C6 6.74%, #5AA1FD 39.81%, #FFD9F8 82.04%);
}

.affiliate-v2-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.affiliate-v2-header__content {
    max-width: 450px;
    flex-grow: 1;
}

.affiliate-v2-header__img {
    width: 520px;
    flex-shrink: 0;
}

.affiliate-v2-header__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #FFFFFF;
}

.affiliate-v2-header__subtitle {
    margin-top: 25px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
}

.affiliate-v2-header__options {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.affiliate-v2-header__option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.affiliate-v2-header__option img {
    flex-shrink: 0;
}

.affiliate-v2-header__control {
    margin-top: 53px;
}

.affiliate-v2-header__control-mob {
    display: none;
}

.affiliate-v2-steps {
    padding: 90px 0;
}

.affiliate-v2-steps__head {
    display: flex;
    align-items: center;
    gap: 100px;
}

.affiliate-v2-steps__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #0A0A0A;
    width: 380px;
    flex-shrink: 0;
}

.affiliate-v2-steps__subtitle {
    flex-grow: 1;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #0A0A0A;
    text-transform: uppercase;
}

.affiliate-v2-steps__list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.affiliate-v2-steps__item {
    background-color: #F8F8F8;
    border-radius: 30px;
    padding: 30px;
    padding-right: 280px;
    min-height: 310px;
    position: relative;
    overflow: hidden;
}

.affiliate-v2-steps__item-num {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #5987F7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.affiliate-v2-steps__item-title {
    margin-top: 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
}

.affiliate-v2-steps__item-desc {
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #8B999E;
}

.affiliate-v2-steps__item-desc b {
    font-weight: 700;
    color: #0A0A0A;
}

.affiliate-v2-steps__item-img {
    position: absolute;
    height: 100%;
    width: 260px;
    top: 0;
    right: 0;
    object-fit: contain;
    object-position: center bottom;
}

.affiliate-v2-bonus {
    padding: 90px 0 80px;
    background: linear-gradient(148.77deg, #FFF2D5 -2.42%, #E5EEFB 52.11%, #E5F4FB 83.39%);
}

.affiliate-v2-bonus__title {
    text-align: center;
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #0A0A0A;
}

.affiliate-v2-bonus__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.affiliate-v2-bonus__item {
    border-radius: 30px;
    padding: 30px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.affiliate-v2-bonus__item-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 12px;
    border-radius: 40px;
    background-color: #E5F4FB;
    margin-left: auto;
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    color: #5987F7;
}

.affiliate-v2-bonus__item-tag_green {
    background-color: #F1FBE5;
    color: #3ABE00;
}

.affiliate-v2-bonus__item-title {
    flex-grow: 1;
    margin-top: 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
}

.affiliate-v2-bonus__item-title b {
    font-weight: 700;
}

.affiliate-v2-bonus__item-subtitle {
    margin-top: 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #8B999E;
}

.affiliate-v2-why {
    padding: 90px 0;
    border-bottom: 1px solid #E5EBEB;
}

.affiliate-v2-why__title {
    text-align: center;
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #0A0A0A;
}

.affiliate-v2-why__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.affiliate-v2-why__item {
    border-radius: 30px;
    padding: 30px;
    background-color: #E5F4FB;
}

.affiliate-v2-why__item-title {
    margin-top: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
}

.affiliate-v2-why__item-subtitle {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #0A0A0A;
}

.affiliate-v2-why__join {
    margin-top: 60px;
}

.affiliate-v2-why__join-title {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #0A0A0A;
    text-transform: uppercase;
}

.affiliate-v2-why__join-subtitle {
    text-align: center;
}

.affiliate-v2-why__join-link {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #5987F7;
    text-transform: uppercase;
}

.affiliate-v2-why__join-link:hover {
    color: #5987F7;
}

.affiliate-v2-why__join-note {
    margin-top: 60px;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #93A0A5;
}

@media (max-width: 1200px) {
    .affiliate-v2-header__img {
        width: 420px;
    }

    .affiliate-v2-steps__head {
        gap: 50px;
    }

    .affiliate-v2-steps__item-img {
        width: 200px;
    }

    .affiliate-v2-steps__item {
        padding-right: 210px;
    }
}

@media (max-width: 940px) {
    .affiliate-v2-header__inner {
        flex-direction: column;
        gap: 60px;
    }

    .affiliate-v2-header__content {
        max-width: none;
    }

    .affiliate-v2-steps__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .affiliate-v2-steps__title {
        width: auto;
    }

    .affiliate-v2-steps__list {
        grid-template-columns: 1fr;
    }

    .affiliate-v2-steps__item-img {
        width: 260px;
    }

    .affiliate-v2-steps__item {
        padding-right: 280px;
    }

    .affiliate-v2-bonus__list {
        grid-template-columns: 1fr;
    }

    .affiliate-v2-why__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .affiliate-v2-header {
        padding: 40px 0;
    }

    .affiliate-v2-header__title {
        font-size: 30px;
    }

    .affiliate-v2-header__subtitle {
        margin-top: 30px;
    }

    .affiliate-v2-header__options {
        margin-top: 30px;
        justify-content: space-between;
    }

    .affiliate-v2-header__option {
        font-size: 16px;
    }

    .affiliate-v2-header__control {
        display: none;
    }

    .affiliate-v2-header__control-mob {
        display: block;
        width: 100%;
    }

    .affiliate-v2-header__btn {
        width: 100%;
    }

    .affiliate-v2-header__inner {
        gap: 40px;
    }

    .affiliate-v2-header__img {
        width: 100%;
        height: 215px;
        object-fit: contain;
        object-position: center;
    }

    .affiliate-v2-steps {
        padding: 40px 0;
    }

    .affiliate-v2-steps__head {
        gap: 40px;
    }

    .affiliate-v2-steps__title {
        text-align: center;
        width: 100%;
        font-size: 30px;
    }

    .affiliate-v2-steps__subtitle {
        font-size: 20px;
    }

    .affiliate-v2-steps__list {
        margin-top: 44px;
        gap: 20px;
    }

    .affiliate-v2-steps__item {
        padding: 30px;
        padding-bottom: 330px;
    }

    .affiliate-v2-steps__item-img {
        left: 0;
        width: 100%;
        top: auto;
        bottom: 0;
        height: 310px;
        object-fit: contain;
        object-position: center bottom;
    }

    .affiliate-v2-bonus {
        padding: 40px 0;
    }

    .affiliate-v2-bonus__title {
        font-size: 30px;
    }

    .affiliate-v2-bonus__list {
        margin-top: 30px;
        gap: 20px;
    }

    .affiliate-v2-bonus__item-subtitle {
        margin-top: 20px;
    }

    .affiliate-v2-why {
        padding: 40px 0;
    }

    .affiliate-v2-why__title {
        font-size: 30px;
    }

    .affiliate-v2-why__list {
        margin-top: 30px;
        gap: 20px;
    }

    .affiliate-v2-why__join {
        margin-top: 50px;
    }

    .affiliate-v2-why__join-note {
        margin-top: 30px;
    }
}

/* ======= ai-assistant ======= */

.ai-assistant-header {
    background: linear-gradient(145.16deg, #0053C6 6.74%, #5AA1FD 39.81%, #FFD9F8 82.04%);
}

.ai-assistant-header__inner {
    position: relative;
}

.ai-assistant-header__content {
    max-width: 600px;
    padding: 110px 0 81px;
}

.ai-assistant-header__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: #FFFFFF;
}

.ai-assistant-header__subtitle {
    margin-top: 25px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
}

.ai-assistant-header__control {
    margin-top: 30px;
}

.ai-assistant-header__img {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 446px;
    height: 480px;
    object-fit: contain;
}

.ai-assistant-work {
    padding: 130px 0 80px;
}

.ai-assistant-work__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: #0A0A0A;
    text-align: center;
}

.ai-assistant-work__list {
    margin-top: 50px;
}

.ai-assistant-work__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.ai-assistant-work__row_2 {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
}

.ai-assistant-work__item {
    padding: 30px;
    border-radius: 30px;
    background-color: #F8F8F8;
    display: flex;
    gap: 30px;
    align-items: center;
}

.ai-assistant-work__item img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    flex-shrink: 0;
}

.ai-assistant-work__item span {
    flex-grow: 1;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #0A0A0A;
}

.ai-assistant-healthy {
    padding: 80px 0;
    background-color: #E5F4FB;
}

.ai-assistant-healthy__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: #0A0A0A;
    text-align: center;
}

.ai-assistant-healthy__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.ai-assistant-healthy__item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ai-assistant-healthy__item img {
    flex-shrink: 0;
    width: 128px;
    height: 128px;
    object-fit: contain;
}

.ai-assistant-healthy__item-text {
    flex-grow: 1;
}

.ai-assistant-healthy__item-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #0A0A0A;
}

.ai-assistant-healthy__item-subtitle {
    margin-top: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 130%;
    color: #0A0A0A;
}

.ai-assistant-healthy__control {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.ai-assistant-healthy__btn {
    min-width: 261px;
}

.ai-assistant-start {
    padding: 80px 0;
}

.ai-assistant-start__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: #0A0A0A;
    text-align: center;
}

.ai-assistant-start__inner {
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.ai-assistant-start__img {
    width: 204px;
    height: 260px;
    object-fit: contain;
    flex-shrink: 0;
}

.ai-assistant-start__list {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ai-assistant-start__item {
    border-radius: 30px;
    padding: 30px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    gap: 30px;
}

.ai-assistant-start__item-num {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #5987F7;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #FFFFFF;
}

.ai-assistant-start__item-text {
    flex-grow: 1;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
}

.ai-assistant-start__control {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.ai-assistant-start__btn {
    min-width: 261px;
}

.ai-assistant-safety {
    padding: 80px 0;
    background: linear-gradient(148.77deg, #FFF2D5 -2.42%, #E5EEFB 52.11%, #E5F4FB 83.39%);
}

.ai-assistant-safety__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: #0A0A0A;
    text-align: center;
}

.ai-assistant-safety__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ai-assistant-safety__item {
    padding: 30px;
    border-radius: 30px;
    background-color: #FFFFFF;
}

.ai-assistant-safety__item_2 {
    grid-column: span 2;
}

.ai-assistant-safety__item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ai-assistant-safety__item-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E5F4FB;
    flex-shrink: 0;
}

.ai-assistant-safety__item-label {
    padding: 10px 12px;
    border-radius: 40px;
    background-color: #E5F4FB;
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    color: #5987F7;
}

.ai-assistant-safety__item-text {
    margin-top: 20px;
    font-weight: 500;
    font-size: 22px;
    line-height: 130%;
    color: #0A0A0A;
}

.ai-assistant-safety__item_green .ai-assistant-safety__item-check {
    background-color: #F1FBE5;
}

.ai-assistant-safety__item_green .ai-assistant-safety__item-label {
    background-color: #F1FBE5;
    color: #3ABE00;
}

.ai-assistant-safety__item_orange .ai-assistant-safety__item-check {
    background-color: #FDF2D8;
}

.ai-assistant-safety__item_orange .ai-assistant-safety__item-label {
    background-color: #FDF2D8;
    color: #9A8A63;
}

.ai-assistant-faq {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.ai-assistant-faq__inner {
    position: relative;
    padding-right: 390px;
}

.ai-assistant-faq__img {
    width: 290px;
    height: 317px;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
}

.ai-assistant-faq__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: #0A0A0A;
}

.ai-assistant-faq__list {
    margin-top: 50px;
}

.ai-assistant-faq__item {
    margin-bottom: 10px;
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
    cursor: pointer;
}

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

.ai-assistant-faq__item:hover {
    opacity: 0.7;
}

.ai-assistant-faq__item-title {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
    padding-right: 40px;
}

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

.ai-assistant-faq__item_active .ai-assistant-faq__item-title::after {
    transform: rotate(180deg) translateY(50%);
}

.ai-assistant-faq__item-answer {
    display: none;
    margin-top: 30px;
    font-weight: 500;
    font-size: 22px;
    line-height: 130%;
    color: #0A0A0A;
}

.ai-assistant-faq__item_active .ai-assistant-faq__item-answer {
    display: block;
}

.ai-assistant-faq__note {
    margin-top: 80px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
}

@media (max-width: 1200px) {
    .ai-assistant-header__img {
        width: 280px;
        top: 0;
    }

    .ai-assistant-work__row_3 {
        grid-template-columns: 1fr 1fr;
    }

    .ai-assistant-work__row_3 .ai-assistant-work__item:last-child {
        grid-column: span 2;
    }

    .ai-assistant-healthy__list {
        grid-template-columns: 1fr 1fr;
    }

    .ai-assistant-start__list {
        grid-template-columns: 1fr;
    }

    .ai-assistant-faq__inner {
        padding-right: 340px;
    }
}

@media (max-width: 940px) {
    .ai-assistant-header__content {
        padding: 80px 0 110px;
    }

    .ai-assistant-header__img {
        top: auto;
        bottom: -100px;
        right: 0;
        opacity: 0.5;
        height: 300px;
    }

    .ai-assistant-header__content {
        position: relative;
        z-index: 2;
    }

    .ai-assistant-work__row {
        grid-template-columns: 1fr;
    }

    .ai-assistant-work__row_3 .ai-assistant-work__item:last-child {
        grid-column: span 1;
    }

    .ai-assistant-healthy__list {
        grid-template-columns: 1fr;
    }

    .ai-assistant-faq__img {
        width: 190px;
    }

    .ai-assistant-faq__inner {
        padding-right: 220px;
    }

    .ai-assistant-start__inner {
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .ai-assistant-header__content {
        padding: 40px 0 240px;
    }

    .ai-assistant-header__title {
        font-size: 30px;
    }

    .ai-assistant-header__btn {
        width: 100%;
    }

    .ai-assistant-header__img {
        top: auto;
        bottom: -100px;
        right: 0;
        width: 100%;
        opacity: 1;
        height: 300px;
    }

    .ai-assistant-work__title {
        font-size: 30px;
    }

    .ai-assistant-work__list {
        margin-top: 40px;
    }

    .ai-assistant-work__item {
        padding: 20px;
        gap: 20px;
    }

    .ai-assistant-work__item img {
        width: 100px;
        height: 100px;
    }

    .ai-assistant-work {
        padding-bottom: 40px;
    }

    .ai-assistant-healthy {
        padding: 40px 0;
    }

    .ai-assistant-healthy__title {
        font-size: 30px;
    }

    .ai-assistant-healthy__list {
        margin-top: 40px;
    }

    .ai-assistant-healthy__item {
        gap: 20px;
    }

    .ai-assistant-healthy__item img {
        width: 100px;
        height: 100px;
    }

    .ai-assistant-healthy__control {
        margin-top: 40px;
    }

    .ai-assistant-start {
        padding: 40px 0;
    }

    .ai-assistant-start__title {
        font-size: 30px;
    }

    .ai-assistant-start__inner {
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .ai-assistant-start__list {
        width: 100%;
    }

    .ai-assistant-start__item {
        padding: 20px;
        gap: 20px;
    }

    .ai-assistant-start__control {
        margin-top: 40px;
    }

    .ai-assistant-safety {
        padding: 40px 0;
    }

    .ai-assistant-safety__title {
        font-size: 30px;
    }

    .ai-assistant-safety__list {
        margin-top: 40px;
    }

    .ai-assistant-safety__list {
        grid-template-columns: 1fr;
    }

    .ai-assistant-safety__item_2 {
        grid-column: span 1;
    }

    .ai-assistant-safety__item {
        padding: 20px;
    }

    .ai-assistant-safety__item-text {
        font-size: 20px;
    }

    .ai-assistant-faq {
        padding: 40px 0;
    }

    .ai-assistant-faq__inner {
        padding-top: 260px;
        padding-right: 0;
    }

    .ai-assistant-faq__img {
        height: 219px;
        width: 100%;
    }

    .ai-assistant-faq__title {
        font-size: 30px;
        text-align: center;
    }

    .ai-assistant-faq__list {
        margin-top: 40px;
    }

    .ai-assistant-faq__item {
        padding: 20px;
    }

    .ai-assistant-faq__item-title {
        font-size: 16px;
        padding-right: 30px;
    }

    .ai-assistant-faq__item-answer {
        font-size: 20px;
    }

    .ai-assistant-faq__note {
        margin-top: 30px;
        font-size: 16px;
    }
}

/* ======= challenge ======= */

.challenge-header {
    padding: 60px 0 0;
    position: relative;
}

.challenge-header::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 440px;
    background: linear-gradient(145.16deg, #0053C6 6.74%, #5AA1FD 39.81%, #FFD9F8 82.04%);
}

.challenge-header__inner {
    position: relative;
    z-index: 2;
}

.challenge-header__title {
    text-align: center;
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0 auto;
}

.challenge-header__subtitle {
    margin: 0 auto;
    margin-top: 30px;
    max-width: 500px;
    text-align: center;
    font-weight: 500;
    font-size: 17px;
    line-height: 140%;
    color: #FFFFFF;
}

.challenge-features-top__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.challenge-features-top__item {
    padding: 38px;
    padding-bottom: 270px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(148.77deg, #FFF2D5 -2.42%, #E5EEFB 52.11%, #E5F4FB 83.39%);
}

.challenge-features-top__item-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    object-fit: contain;
    object-position: bottom right;
}

.challenge-features-top__item-value {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-features-top__item-value span {
    font-weight: 600;
    font-size: 70px;
    line-height: 130%;
}

.challenge-features-top__item-label {
    margin-top: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #0A0A0A;
}

.challenge-features-top__item-list li {
    display: block;
    position: relative;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #0A0A0A;
    padding-left: 20px;
}

.challenge-features-top__item-list li::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #B0D4FA;
    position: absolute;
    left: 0;
    top: 9px;
}

.challenge-features-top__item-list li:last-child {
    margin-bottom: 0;
}

.challenge-features-bottom__list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.challenge-features-bottom__item {
    border-radius: 30px;
    padding: 30px 25px;
    background-color: #E5F4FB;
    display: flex;
    align-items: center;
    gap: 25px;
}

.challenge-features-bottom__item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-features-bottom__item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #0A0A0A;
}

.challenge-plan {
    margin-top: 60px;
    padding: 80px 0 60px;
    background: linear-gradient(148.77deg, #FFF2D5 -2.42%, #E5EEFB 52.11%, #E5F4FB 83.39%);
}

.challenge-plan__title {
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    color: #0A0A0A;
    text-align: center;
}

.challenge-plan__content {
    margin-top: 30px;
}

.challenge-plan__switch {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.challenge-plan__switch-btn {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    background-color: #F3F4F4;
    border: 1px solid #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #0A0A0A;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
}

.challenge-plan__switch-btn:hover {
    opacity: 0.7;
}

.challenge-plan__switch-btn_active {
    color: #FFFFFF;
    background-color: #4166EB;
    border-color: #4166EB;
}

.challenge-plan__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.challenge-plan__item {
    border-radius: 30px;
    padding: 30px;
    background-color: #FFFFFF;
    border: 1px solid #E5EBEB;
    display: flex;
    flex-direction: column;
}

.challenge-plan__item_hidden {
    display: none;
}

.challenge-plan__item-value {
    font-weight: 600;
    font-size: 45px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-plan__item-label {
    margin-top: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-plan__params {
    margin-top: 30px;
    flex-grow: 1;
}

.challenge-plan__param {
    margin-bottom: 10px;
    display: flex;
    gap: 16px;
}

.challenge-plan__param:last-child {
    margin-bottom: 0;
}

.challenge-plan__param-label {
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #93A0A5;
}

.challenge-plan__param-value {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    color: #0A0A0A;
    white-space: nowrap;
}

.challenge-plan__item-commission {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-plan__item-commission img {
    flex-shrink: 0;
}

.challenge-plan__item-control {
    margin-top: 30px;
}

.challenge-plan__item-btn {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 14px 8px;
}

.challenge-plan__item-btn_disabled {
    background-color: #6c757d;
    border: 2px solid #6c757d;
    opacity: 0.7;
}

.challenge-plan__item-price-old {
    position: relative;
    margin-right: 12px;
    margin-left: 4px;
}

.challenge-plan__item-price-old::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    width: 120%;
    background-color: #ED2024;
    transform: rotate(-25deg);
    position: absolute;
    bottom: 10px;
    left: -4px;
}

.challenge-plan__item-price-new {
    padding: 4px 8px;
    background: linear-gradient(148.77deg, #B4D17F -2.42%, #9CDEDC 52.11%, #74E3FE 83.39%);
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #000000;
}

.challenge-plan__item-price-current {
    margin-left: 4px;
}

.challenge-plan__more {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.challenge-plan__more-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-plan__more-btn:hover {
    opacity: 0.7;
}

.challenge-plan__more-btn img {
    flex-shrink: 0;
}

.challenge-free {
    margin-top: 60px;
}

.challenge-free__content {
    background-color: #E5F4FB;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    gap: 60px;
}

.challenge-free__img {
    flex-shrink: 0;
}

.challenge-free__img img {
    width: 215px;
    height: 220px;
    object-fit: contain;
}

.challenge-free__right {
    padding: 15px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.challenge-free__title {
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-free__subtitle {
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-free__control {
    margin-top: auto;
    padding-top: 20px;
}

.challenge-faq {
    margin-top: 80px;
    margin-bottom: 80px;
}

.challenge-faq__title {
    text-align: center;
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-faq__list {
    max-width: 850px;
    margin: 0 auto;
    margin-top: 50px;
}

.challenge-faq__item {
    margin-bottom: 10px;
    background-color: #F3F4F4;
    border-radius: 30px;
    padding: 30px;
    cursor: pointer;
}

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

.challenge-faq__item_hidden {
    display: none;
}

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

.challenge-faq__item-title {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
    padding-right: 40px;
}

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

.challenge-faq__item_active .challenge-faq__item-title::after {
    transform: rotate(180deg) translateY(50%);
}

.challenge-faq__item-answer {
    display: none;
    margin-top: 30px;
    font-weight: 500;
    font-size: 22px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-faq__item-answer p {
    margin-bottom: 22px;
}

.challenge-faq__item-answer p:last-child {
    margin-bottom: 0;
}

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

.challenge-faq__more {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.challenge-faq__more-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-faq__more-btn:hover {
    opacity: 0.7;
}

.challenge-faq__more_hidden {
    display: none;
}

.challenge-faq__more-btn img {
    flex-shrink: 0;
}

.challenge-work {
    margin-top: 60px;
}

.challenge-work__title {
    text-align: center;
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-work__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.challenge-work__item {
    border-radius: 30px;
    padding: 34px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.challenge-work__item_1 {
    background-color: #E5F4FB;
}

.challenge-work__item_2 {
    background-color: #FFEDED;
}

.challenge-work__item_3 {
    background-color: #FBF7E5;
}

.challenge-work__item_4 {
    background-color: #F1FBE5;
}

.challenge-work__item-img {
    flex-shrink: 0;
}

.challenge-work__item-img img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.challenge-work__item-left {
    flex-grow: 1;
}

.challenge-work__item-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #0A0A0A;
}

.challenge-work__item-text {
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #0A0A0A;
}

.challenge-plan__content-loader {
    display: block;
    min-height: 500px;
    position: relative;
}

.challenge-plan__content-loader::after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 4px solid #4166EB;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .challenge-features-top__item {
        padding: 24px;
        padding-bottom: 220px;
    }

    .challenge-features-top__item-value span {
        font-size: 56px;
    }

    .challenge-features-top__item-value {
        font-size: 16px;
    }

    .challenge-features-top__item-label {
        font-size: 16px;
    }

    .challenge-features-top__item-list li {
        font-size: 18px;
    }

    .challenge-features-top__list {
        gap: 20px;
    }

    .challenge-features-bottom__list {
        gap: 20px;
    }

    .challenge-features-bottom__item {
        padding: 20px 24px;
        gap: 24px;
    }

    .challenge-features-bottom__item-title {
        font-size: 16px;
    }

    .challenge-work__item-text {
        font-size: 16px;
    }

    .challenge-plan__list {
        gap: 20px;
    }

    .challenge-plan__item {
        padding: 20px;
    }

    .challenge-plan__item-price-new {
        margin: 0 40px;
    }
}

@media (max-width: 940px) {
    .challenge-features-top__list {
        grid-template-columns: 1fr;
    }

    .challenge-features-top__item-img {
        height: 300px;
    }

    .challenge-features-bottom__list {
        grid-template-columns: 1fr;
    }

    .challenge-work__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .challenge-plan__list {
        grid-template-columns: 1fr;
    }

    .challenge-free__content {
        padding: 20px 30px;
        gap: 20px;
    }

    .challenge-plan__item-price-new {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .challenge-header__title {
        font-size: 30px;
    }

    .challenge-header::after {
        height: 540px;
    }

    .challenge-features-top__item-list li::before {
        width: 8px;
        height: 8px;
    }

    .challenge-features-bottom__item {
        padding: 20px;
        gap: 20px;
    }

    .challenge-work__title {
        font-size: 30px;
    }

    .challenge-work__item {
        padding: 20px;
        border-radius: 20px;
        flex-direction: column;
    }

    .challenge-work__item-left {
        display: flex;
        gap: 20px;
    }

    .challenge-work__item-num {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }

    .challenge-work__item-text {
        margin-top: 0;
    }

    .challenge-work__item-img {
        padding: 10px 0;
    }

    .challenge-work__item-img img {
        width: 200px;
        height: 200px;
    }

    .challenge-plan__title {
        font-size: 30px;
    }

    .challenge-plan__switch {
        flex-direction: column;
    }

    .challenge-plan__switch-btn {
        width: 100%;
    }

    .challenge-plan__item {
        border-radius: 20px;
    }

    .challenge-free__content {
        flex-direction: column;
    }

    .challenge-free__img {
        display: flex;
        justify-content: center;
    }

    .challenge-free__title {
        font-size: 28px;
    }

    .challenge-free__subtitle {
        font-size: 16px;
    }

    .challenge-free__btn {
        width: 100%;
    }

    .challenge-faq__title {
        font-size: 30px;
    }

    .challenge-faq__item {
        padding: 20px;
    }

    .challenge-faq__item-title {
        font-size: 16px;
        padding-right: 30px;
    }

    .challenge-faq__item-answer {
        font-size: 20px;
    }
}

/* ======= start-challenge ======= */

.start-challenge {
    padding: 60px 0;
    position: relative;
}

.start-challenge__inner {
    position: relative;
    z-index: 2;
}

.start-challenge__title {
    text-align: center;
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    color: #0A0A0A;
    margin: 0 auto;
}

.start-challenge__subtitle {
    margin: 0 auto;
    margin-top: 30px;
    max-width: 500px;
    text-align: center;
    font-weight: 500;
    font-size: 17px;
    line-height: 140%;
    color: #0A0A0A;
}

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

.start-challenge__btn {
    min-width: 282px;
}

@media (max-width: 600px) {
    .start-challenge__title {
        font-size: 30px;
    }

    .start-challenge__btn {
        width: 100%;
    }
}

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