@font-face {
    font-style: normal;
    font-weight: 400;
    font-family: Gilroy;
    font-display: swap;
    src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
}

@font-face {
    font-style: normal;
    font-weight: 600;
    font-family: Gilroy;
    font-display: swap;
    src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: Gilroy;
    font-display: swap;
    src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
}

.quiz-checkbox {
    position: relative;
}

.quiz-checkbox input {
    position: absolute;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
}

.quiz-checkbox span {
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
    -webkit-box-align: center;
    align-items: center;
    user-select: none;
    color: rgba(var(--cl-a), 1);
    width: 100%;
    font-family: var(--font-family);
    font-size: clamp(16px, 1.6216vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.quiz-checkbox span a {
    color: rgba(var(--cl-f), 1);
}

.quiz-checkbox span a:hover {
    text-decoration: underline;
}

.quiz-checkbox span::after {
    position: absolute;
    content: "";
    inset: -16px;
    background: var(--gr-b);
    z-index: -1;
    transition: all 0.2s ease 0s;
    opacity: 0;
    visibility: hidden;
}

.quiz-checkbox span::before {
    cursor: pointer;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cg clip-path='url(%23clip0_7804_2047)'%3E%3Cpath fill='%23fff' d='M22 7.7142 12 2 2 7.7142v8.5717L12 22l10-5.7141V7.7141Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_7804_2047'%3E%3Cpath fill='%23fff' d='M2 2h20v20H2z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.quiz-checkbox input:checked + span::after {
    opacity: 1;
    visibility: visible;
}

.quiz-checkbox input:checked + span::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cg clip-path='url(%23clip0_7804_2036)'%3E%3Cpath fill='%23fff' d='M22 7.7142 12 2 2 7.7142v8.5717L12 22l10-5.7141V7.7141Z'/%3E%3Cpath fill='url(%23paint0_linear_7804_2036)' d='M17 9.857 12 7 7 9.857v4.2859L12 17l5-2.8571V9.8571Z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_7804_2036' x1='17' x2='5.01718' y1='7' y2='13.1137' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237D72A9'/%3E%3Cstop offset='1' stop-color='%239A8BDA'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_7804_2036'%3E%3Cpath fill='%23fff' d='M2 2h20v20H2z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.radio-checkbox {
    position: relative;
}

.radio-checkbox input {
    position: absolute;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
}

.radio-checkbox span {
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
    -webkit-box-align: center;
    align-items: center;
    user-select: none;
    color: rgba(var(--cl-f), 1);
    width: 100%;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.radio-checkbox span a {
    color: rgba(var(--cl-f), 1);
}

.radio-checkbox span a:hover {
    text-decoration: underline;
}

.radio-checkbox span::before {
    cursor: pointer;
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='none'%3E%3Ccircle cx='6.17143' cy='6.17143' r='5.48571' stroke='%23fff' stroke-width='1.37143'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.radio-checkbox input:checked + span::after {
    opacity: 1;
    visibility: visible;
}

.radio-checkbox input:checked + span::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='none'%3E%3Ccircle cx='6.17143' cy='6.17143' r='5.48571' stroke='%23fff' stroke-width='1.37143'/%3E%3Ccircle cx='6.17076' cy='6.17076' r='3.42857' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-checkbox {
    position: relative;
}

.custom-checkbox input {
    position: absolute;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox span {
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
    -webkit-box-align: center;
    align-items: center;
    user-select: none;
    color: rgba(var(--cl-b), 1);
    width: 100%;
    font-family: var(--font-family);
    font-size: clamp(14px, 1.4414vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.custom-checkbox span a {
    color: rgba(var(--cl-f), 1);
}

.custom-checkbox span a:hover {
    text-decoration: underline;
}

.custom-checkbox span::before {
    cursor: pointer;
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Crect width='18' height='18' x='3' y='3' stroke='url(%23paint0_linear_1802_11956)' stroke-width='2' rx='3'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1802_11956' x1='22' x2='-1.96563' y1='2' y2='14.2274' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237D72A9'/%3E%3Cstop offset='1' stop-color='%239A8BDA'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
}

.custom-checkbox input:checked + span::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='url(%23paint0_linear_1802_2735)' d='M17 9.857 12 7 7 9.857v4.2859L12 17l5-2.8571V9.8571Z'/%3E%3Crect width='18' height='18' x='3' y='3' stroke='url(%23paint1_linear_1802_2735)' stroke-width='2' rx='3'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1802_2735' x1='17' x2='5.01718' y1='7' y2='13.1137' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237D72A9'/%3E%3Cstop offset='1' stop-color='%239A8BDA'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_1802_2735' x1='22' x2='-1.96563' y1='2' y2='14.2274' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237D72A9'/%3E%3Cstop offset='1' stop-color='%239A8BDA'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.custom-radio {
    position: relative;
}

.custom-radio input:not([type="date"]) {
    position: absolute;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
}

.custom-radio span {
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
    -webkit-box-align: center;
    align-items: center;
    user-select: none;
    color: rgba(var(--cl-f), 1);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.custom-radio span a {
    color: rgba(var(--cl-f), 1);
}

.custom-radio span a:hover {
    text-decoration: underline;
}

.custom-radio span::before {
    cursor: pointer;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
    border: 2px solid rgb(193, 194, 199);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px 10px;
    border-radius: 50%;
}

.custom-radio input:not(:disabled):not(:checked) + span:hover::before {
    border-color: rgb(36, 88, 211);
}

.custom-radio input:not(:disabled):active + span::before {
    background-color: transparent;
    border-color: rgb(36, 88, 211);
}

.custom-radio input:checked + span::before {
    border-color: rgb(36, 88, 211);
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none'%3E%3Ccircle cx='5' cy='5' r='5' fill='%232458D3'/%3E%3C/svg%3E");
}

.custom-radio input:disabled + span::before {
    background-color: rgb(233, 236, 239);
}

.custom-radio--content span {
    height: 42px;
    padding: 2px clamp(20px, 2.08vw, 32px);
    border-radius: 100px;
    border: 1px solid rgba(133, 135, 145, 0.25);
    background: rgba(var(--bg-a), 1);
}

.custom-radio--content span::before, .custom-radio--content span::after {
    content: none;
}

.custom-radio--content span svg {
    color: rgba(var(--cl-o), 1);
}

.custom-radio--content input:checked + span {
    border-color: rgba(var(--bg-c), 1);
    background: rgba(var(--bg-c), 1);
    color: rgba(var(--cl-a), 1);
}

.custom-radio--content input:checked + span svg {
    color: rgba(var(--cl-a), 1);
}

:root {
    --error-bg: #d01f1f;
    --body-bg: #000;
    --body-font-size: 16px;
    --content-width: 1170px;
    --container-offset: clamp(16px, 2.0513vw, 24px);
    --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
    --header-height: 104px;
    --scrollbar-thumb: #2363f996;
    --scrollbar-track: #121835;
    --scrollbar-track-hover: transparent;
    --overlay-bg: rgba(0, 0, 0, 0.5);
    --select-inner-bg: #404040;
    --select-inner-border: #FDFDFD;
    --select-focus-border: #FDFDFD;
    --font-family: "Gilroy", sans-serif;
    --cl-a: 255, 255, 255;
    --cl-b: 0, 0, 0;
    --cl-c: 6, 8, 20;
    --cl-d: 161, 161, 178;
    --cl-e: 242, 242, 242;
    --cl-f: 35, 100, 249;
    --cl-g: 138, 146, 188;
    --cl-h: 103, 109, 142;
    --cl-i: 94, 94, 96;
    --cl-j: 146, 133, 133;
    --cl-k: 164, 164, 172;
    --cl-l: 175, 151, 117;
    --cl-m: 130, 130, 130;
    --cl-n: 172, 173, 167;
    --bg-a: 255, 255, 255;
    --bg-b: 0, 0, 0;
    --bg-c: 35, 100, 249;
    --bg-d: 35, 35, 36;
    --bg-e: 18, 18, 18;
    --bg-f: 18, 24, 53;
    --bg-g: 26, 35, 78;
    --bg-h: 42, 56, 120;
    --bg-i: 44, 52, 89;
    --bg-j: 18, 18, 18;
    --bg-k: 12, 16, 34;
    --bg-l: 217, 217, 217;
    --br-a: #ffffff;
    --br-b: #2364F9;
    --br-c: #2C3458;
    --br-d: #0C1022;
    --br-e: #9A8BDA;
    --gr-a: linear-gradient(180deg, rgba(18, 24, 52, 0.00) 0%, #121834 100%);
    --gr-b: linear-gradient(180deg, rgba(26, 35, 78, 0.00) 0%, #1A234E 96%);
    --gr-c: linear-gradient(180deg, #171719 0%, rgba(23, 23, 25, 0.00) 100%);
    --gr-d: linear-gradient(180deg, rgba(18, 25, 60, 0.12) 0%, rgba(18, 24, 52, 0.63) 100%);
    --gr-e: linear-gradient(180deg, #12193c 0%, #121834 100%);
}

@media (max-width: 1024px) {
    :root {
        --header-height: 100px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 94px;
    }
}

.title {
    font-weight: 700;
    font-size: clamp(54px, 7.265vw, 85px);
    line-height: 94.118%;
    letter-spacing: -3.4px;
}

.subtitle {
    font-weight: 700;
    font-size: clamp(43px, 5.9829vw, 70px);
    line-height: 107.143%;
}

.subtitle--mode {
    line-height: 114.286%;
}

.logo img {
    width: clamp(89px, 12.1368vw, 142px);
    height: clamp(17px, 2.3077vw, 27px);
}

header .logo {
    flex-shrink: 0;
    border-radius: 999px;
    background: rgb(19 16 16);
    /* padding: 16px 33px 17px 17px; */
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    transition: all 0.4s ease 0s;
}

header .logo:hover {
    background: rgba(var(--bg-d), 1);
}

.footer-logo {
    width: clamp(40px, 5.128vw, 60px);
    height: clamp(37px, 4.8718vw, 57px);
}

.social {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
}

.social__item {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.social__link svg {
    transition: all 0.4s ease 0s;
}

.social__link:hover svg {
    transform: scale(1.15);
}

.breadcrumbs {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 24px;
}

.breadcrumbs__link {
    color: rgba(var(--cl-d), 1);
    font-size: 14px;
    font-weight: 600;
}

.breadcrumbs__link.active {
    color: rgba(var(--cl-a), 1);
}

.breadcrumbs__item:not(:last-child) {
    position: relative;
}

.breadcrumbs__item:not(:last-child)::before {
    position: absolute;
    content: "";
    display: block;
    right: 0px;
    top: 50%;
    transform: translate(100%, -45%);
    background-image: url("../img/sprite/chevron.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}

.blue-text {
    color: rgba(var(--cl-f), 1);
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
}

.link {
    font-size: clamp(14px, 1.3675vw, 16px);
    font-weight: 400;
    line-height: 212.5%;
    text-decoration-line: underline;
    text-underline-offset: 4px;
    text-decoration-color: currentcolor;
    transition: all 0.4s ease 0s;
}

.link:hover {
    color: rgba(var(--cl-f), 1);
}

[data-btn-modal] svg {
    pointer-events: none;
}

.modal {
    margin: auto;
    transform: scale(0.8);
    display: none;
}

.modal.active {
    transform: scale(1);
}

.modal .close {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.modal .close svg {
    pointer-events: none;
    transition: all 0.3s ease 0s;
}

.select {
    position: relative;
    user-select: none;
    width: 100%;
}

.select.sorting-select {
    width: fit-content;
    min-width: 220px;
    margin-right: -15px;
}

@media (max-width: 576px) {
    .select.sorting-select {
        min-width: 180px;
        margin-right: 0px;
    }
}

.select__header {
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    gap: 15px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px 15px;
    position: relative;
    z-index: 6;
}

@media (max-width: 576px) {
    .select__header {
        padding-right: 0px;
    }
}

.select__header > svg {
    transition: transform 0.4s linear 0s, -webkit-transform 0.4s linear 0s;
    flex-shrink: 0;
    width: 16px;
    aspect-ratio: 1 / 1;
}

@media (max-width: 576px) {
    .select__header > svg {
        width: 14px;
    }
}

.select__current {
    -webkit-box-flex: 1;
    flex-grow: 1;
    overflow: hidden;
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
    font-family: var(--font-family);
    line-height: 24px;
    color: rgba(var(--cl-f), 1);
}

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

.select__current svg {
    width: 16px;
    height: 16px;
}

.select__body {
    width: 100%;
    position: absolute;
    z-index: 5;
    height: 0px;
    top: calc(100% + 10px);
    overflow: hidden;
    transition: height 0.2s ease-in 0s;
    box-shadow: rgba(0, 0, 0, 0) 2px 2px 10px 0px;
    border-radius: 12px;
}

.select__body i {
    margin: 0px;
    text-transform: uppercase;
    font-size: inherit;
    line-height: inherit;
}

.select__list {
    max-height: 200px;
    overflow-y: auto;
    background: rgb(255, 255, 255);
}

.select__list::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 8px;
}

.select__list::-webkit-scrollbar-track {
    background-color: transparent;
}

.select__list::-webkit-scrollbar {
    width: 4px;
    border-radius: 8px;
}

.select__option {
    display: flex;
    padding: 10px clamp(15px, 2.61vw, 30px);
    -webkit-box-align: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    cursor: pointer;
    color: rgba(var(--cl-f), 1);
    font-size: 14px;
    font-family: var(--font-family);
    line-height: 100%;
}

.select__option + .select__option {
    padding-top: 10px;
}

.select__option:hover {
    background: rgba(var(--bg-d), 1);
    font-weight: 600;
}

.select__option a {
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.select.active {
    z-index: 3;
}

.select.active .select__body {
    box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 10px 0px;
}

.select.active .select__header > svg {
    transform: scaleY(-1);
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal;
}

:root {
    --swiper-theme-color: #007aff;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0px;
    z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px, 0px, 0px);
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0px auto;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    align-items: flex-start;
    transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.noUi-target, .noUi-target * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    touch-action: none;
    user-select: none;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
}

.noUi-base, .noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.noUi-connects {
    overflow: hidden;
    z-index: 0;
}

.noUi-connect, .noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    transform-origin: 0px 0px;
    transform-style: flat;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0px;
    right: auto;
}

.noUi-vertical .noUi-origin {
    top: -100%;
    width: 0px;
}

.noUi-horizontal .noUi-origin {
    height: 0px;
}

.noUi-handle {
    backface-visibility: hidden;
    position: absolute;
}

.noUi-touch-area {
    height: 100%;
    width: 100%;
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}

.noUi-horizontal {
    height: 18px;
}

.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    right: -17px;
    top: -6px;
}

.noUi-vertical {
    width: 18px;
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto;
}

.noUi-target {
    background: rgb(250, 250, 250);
    border-radius: 4px;
    border: 1px solid rgb(211, 211, 211);
    box-shadow: rgb(240, 240, 240) 0px 1px 1px inset, rgb(187, 187, 187) 0px 3px 6px -5px;
}

.noUi-connects {
    border-radius: 3px;
}

.noUi-connect {
    background: rgb(63, 184, 175);
}

.noUi-draggable {
    cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize;
}

.noUi-handle {
    border: 1px solid rgb(217, 217, 217);
    border-radius: 3px;
    background: rgb(255, 255, 255);
    cursor: default;
    box-shadow: rgb(255, 255, 255) 0px 0px 1px inset, rgb(235, 235, 235) 0px 1px 7px inset, rgb(187, 187, 187) 0px 3px 6px -3px;
}

.noUi-active {
    box-shadow: rgb(255, 255, 255) 0px 0px 1px inset, rgb(221, 221, 221) 0px 1px 7px inset, rgb(187, 187, 187) 0px 3px 6px -3px;
}

.noUi-handle::before, .noUi-handle::after {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: rgb(232, 231, 230);
    left: 14px;
    top: 6px;
}

.noUi-handle::after {
    left: 17px;
}

.noUi-vertical .noUi-handle::before, .noUi-vertical .noUi-handle::after {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
}

.noUi-vertical .noUi-handle::after {
    top: 17px;
}

[disabled] .noUi-connect {
    background: rgb(184, 184, 184);
}

[disabled].noUi-target, [disabled].noUi-handle, [disabled] .noUi-handle {
    cursor: not-allowed;
}

.noUi-pips, .noUi-pips * {
    box-sizing: border-box;
}

.noUi-pips {
    position: absolute;
    color: rgb(153, 153, 153);
}

.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
}

.noUi-value-sub {
    color: rgb(204, 204, 204);
    font-size: 10px;
}

.noUi-marker {
    position: absolute;
    background: rgb(204, 204, 204);
}

.noUi-marker-sub {
    background: rgb(170, 170, 170);
}

.noUi-marker-large {
    background: rgb(170, 170, 170);
}

.noUi-pips-horizontal {
    padding: 10px 0px;
    height: 80px;
    top: 100%;
    left: 0px;
    width: 100%;
}

.noUi-value-horizontal {
    transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
    transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}

.noUi-pips-vertical {
    padding: 0px 10px;
    height: 100%;
    top: 0px;
    left: 100%;
}

.noUi-value-vertical {
    transform: translate(0px, -50%);
    padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
    transform: translate(0px, 50%);
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}

.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 3px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 5px;
    text-align: center;
    white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
    transform: translate(-50%, 0px);
    left: 50%;
    bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
    transform: translate(0px, -50%);
    top: 50%;
    right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
    transform: translate(50%, 0px);
    left: auto;
    bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
    transform: translate(0px, -18px);
    top: auto;
    right: 28px;
}

[data-simplebar] {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column wrap;
    -webkit-box-pack: start;
    place-content: flex-start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    inset: 0px;
    z-index: 0;
    width: auto !important;
    height: auto !important;
}

.simplebar-offset {
    position: absolute;
    inset: 0px;
    padding: 0px;
    margin: 0px;
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
}

.simplebar-content-wrapper {
    direction: inherit;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    scrollbar-width: none;
    box-sizing: border-box !important;
}

.simplebar-content-wrapper::-webkit-scrollbar, .simplebar-hide-scrollbar::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 0px;
}

.simplebar-content::before, .simplebar-content::after {
    content: " ";
    display: table;
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0px;
    margin: 0px;
    pointer-events: none;
    -webkit-box-flex: inherit;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0px;
    box-sizing: inherit !important;
}

.simplebar-height-auto-observer {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0px;
    bottom: 0px;
    pointer-events: none;
    overflow: hidden;
}

[data-simplebar].simplebar-dragging {
    pointer-events: none;
    user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all;
}

.simplebar-scrollbar {
    position: absolute;
    left: 0px;
    right: 0px;
    min-height: 10px;
}

.simplebar-scrollbar::before {
    position: absolute;
    content: "";
    background: black;
    border-radius: 7px;
    left: 2px;
    right: 2px;
    opacity: 0;
    transition: opacity 0.2s linear 0.5s;
}

.simplebar-scrollbar.simplebar-visible::before {
    opacity: 0.5;
    transition-delay: 0s;
    transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
    top: 0px;
    width: 11px;
}

.simplebar-scrollbar::before {
    inset: 2px;
}

.simplebar-track.simplebar-horizontal {
    left: 0px;
    height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    inset: 0px auto 0px 0px;
    min-height: 0px;
    min-width: 10px;
    width: auto;
}

[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0px;
}

.simplebar-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow: scroll hidden;
}

.simplebar-dummy-scrollbar-size > div {
    width: 200%;
    height: 200%;
    margin: 10px 0px;
}

.simplebar-hide-scrollbar {
    position: fixed;
    left: 0px;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
}

.simplebar-track {
    height: 36px !important;
}

@media (min-width: 1024px) {
    .simplebar-track {
        margin-left: calc((100vw - var(--container-width)) / 2 + var(--container-offset));
    }
}

@media (max-width: 1024px) {
    .simplebar-track {
        margin-left: var(--container-offset);
    }
}

.simplebar-track::before {
    border-radius: 7px;
    z-index: -2;
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    height: 6px;
    background-color: rgba(44, 52, 88, 0.25);
    top: 50%;
    transform: translateY(-50%);
}

.simplebar-line {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 7px;
    background-color: rgb(35, 100, 249);
    z-index: -1;
}

.simplebar-scrollbar {
    border-radius: 7px;
    min-height: 36px !important;
}

.simplebar-scrollbar::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='45' height='34' fill='none'%3E%3Crect width='45' height='34' fill='%231E1E20' rx='12'/%3E%3Cpath fill='%232364F9' d='M0 10C0 4.4771 4.4771 0 10 0v34C4.4771 34 0 29.5228 0 24V10ZM45 10c0-5.5229-4.4772-10-10-10v34c5.5228 0 10-4.4772 10-10V10Z'/%3E%3Crect width='3' height='16' fill='%23676D8E' fill-opacity='0.55' rx='1.5' transform='matrix(-1 0 0 1 21 9)'/%3E%3Crect width='3' height='16' fill='%23676D8E' fill-opacity='0.55' rx='1.5' transform='matrix(-1 0 0 1 27 9)'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    width: clamp(35px, 3.8462vw, 35px);
    height: clamp(24px, 2.906vw, 34px);
    background-repeat: no-repeat;
    left: initial;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 1 !important;
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
    flex-flow: column wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

html {
    box-sizing: border-box;
    width: 100%;
    max-width: 100dvw;
    will-change: font-size;
    font-size: var(--rem-function);
}

body {
    padding-top: var(--header-height);
    position: relative;
    overflow-x: hidden;
    width: 100%;
    margin: 0px;
    will-change: font-size;
    color: rgba(var(--bg-b), 1);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    background-color: var(--body-bg);
    text-size-adjust: 100%;
}

body.fixed-body {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
}

main {
    min-width: 0px !important;
}

main.no-padding {
    padding: 0px;
}

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

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
    display: inline-flex;
    margin: 0px;
    font-style: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

button {
    display: inline-flex;
    margin: 0px;
    padding: 0px;
    line-height: initial;
    color: inherit;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6, a, span, button, p {
    margin: 0px;
    padding: 0px;
    color: rgba(var(--cl-a), 1);
    font-family: var(--font-family);
    font-style: normal;
    line-height: 100%;
}

p {
    font-size: clamp(14px, 1.3675vw, 16px);
    font-weight: 400;
    line-height: 181.25%;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

picture {
    display: inline-flex;
}

label {
    display: inline-flex;
}

input {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
}

input::-webkit-input-placeholder {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
}

input::placeholder {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
}

input[type="number"] {
    appearance: textfield;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    margin: 0px;
    appearance: none;
}

textarea {
    border: none;
    outline: none;
    resize: none;
}

fieldset {
    margin: 0px;
    padding: 0px;
    border: none;
}

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

.container {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 0px auto;
    padding: 0 var(--container-offset);
}

.panel, [data-content] {
    z-index: 20;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease 0s;
}

[data-tab-content] {
    display: none;
}

[data-tab-content].active {
    display: block;
}

.dis-scroll {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none !important;
}

.overlay {
    position: fixed;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 20;
    padding: 20px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease 0.5s, visibility 1s ease;
    pointer-events: none;
}

@media (max-width: 576px) {
    .overlay {
        padding: 0px;
    }
}

.overlay::-webkit-scrollbar {
    display: none;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.6s ease 0s, visibility 0.6s ease 0s;
    pointer-events: initial;
}

.overlay.active-mode {
    z-index: 100;
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.95);
    transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
    pointer-events: initial;
}

::-webkit-scrollbar {
    width: 8px;
    cursor: pointer;
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        display: none;
    }
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    cursor: pointer;
    transition: all 0.2s ease 0s;
}

::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track);
}

::-webkit-scrollbar-button {
    display: none;
    background-color: transparent;
    box-shadow: none;
}

:root {
    --info-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='45' height='45' fill='none'%3E%3Crect width='44' height='44' x='30.5523' y='52.5526' fill='url(%23paint0_linear_11_4411)' stroke='url(%23paint1_linear_11_4411)' rx='22' transform='rotate(-150 30.5523 52.5526)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_11_4411' x1='53.2354' x2='53.2354' y1='53.2356' y2='98.2356' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23272F50' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23272F50' stop-opacity='0.31'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_11_4411' x1='53.2354' x2='53.2354' y1='98.2356' y2='53.2356' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.main-btn {
    border-radius: 999px;
    background: rgba(var(--bg-a), 1);
    color: rgba(var(--cl-c), 1);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    gap: 2px;
    padding: clamp(18px, 1.7949vw, 21.5px) clamp(32px, 3.5897vw, 42px) clamp(18px, 1.7949vw, 21.5px) clamp(36px, 3.9316vw, 46px);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: fit-content;
    transition: all 0.4s ease-in-out 0s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-btn svg {
    position: relative;
    top: 1.5px;
}

.main-btn span {
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: rgba(var(--bg-c), 1);
    transition: width 0.4s ease-in-out 0s, height 0.4s ease-in-out 0s;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.main-btn:hover {
    color: rgba(var(--cl-a), 1);
}

.main-btn:hover span {
    width: 225%;
    height: 337.5px;
}

.main-btn--transparent {
    background: transparent;
    border: solid 1px var(--br-a);
    color: rgba(var(--cl-a), 1);
}

.main-btn--transparent:hover {
    border-color: var(--br-b);
}

.main-btn--blue {
    background: rgba(var(--bg-c), 1);
    color: rgba(var(--cl-a), 1);
}

.main-btn--blue span {
    background: rgba(var(--bg-a), 1);
}

.main-btn--blue:hover {
    color: rgba(var(--cl-c), 1);
}

.main-btn--social {
    background: transparent;
    border: solid 1px var(--br-b);
    color: rgba(var(--cl-a), 1);
    max-width: 198px;
    width: 100%;
}

.play-btn {
    width: clamp(65px, 8.547vw, 100px);
    height: clamp(65px, 8.547vw, 100px);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgba(var(--bg-c), 1);
    border-radius: 50%;
    transition: all 0.4s ease 0s;
}

.main-top {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .main-top {
        -webkit-box-align: center;
        align-items: center;
    }
}

.main-top__title {
    color: rgba(var(--cl-a), 1);
}

@media (max-width: 768px) {
    .main-top__title {
        text-align: center;
    }
}

.main-top__subtitle {
    color: rgba(var(--cl-f), 1);
    font-size: clamp(18px, 1.7949vw, 21px);
    font-weight: 700;
    line-height: 100%;
}

.main-top__btns {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 12px;
}

.main-top__btns .main-btn {
    min-width: clamp(180px, 18.8034vw, 220px);
}

@media (max-width: 768px) {
    .main-top .main-btn {
        max-width: 410px;
        width: 100%;
    }
}

.main-top p {
    color: rgba(var(--cl-a), 1);
}

@media (max-width: 768px) {
    .main-top p {
        text-align: center;
    }
}

.main-top--mode {
    -webkit-box-align: center;
    align-items: center;
}

.main-top--mode .main-top__title {
    text-align: center;
}

.main-top--mode p {
    text-align: center;
}

.main-acc {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(24px, 4.1026vw, 48px);
    width: 100%;
}

.main-acc__btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    font-size: clamp(18px, 1.7949vw, 21px);
    font-weight: 700;
    transition: all 0.4s ease 0s;
    text-align: start;
}

.main-acc__btn-icon {
    width: clamp(35px, 3.8462vw, 45px);
    height: clamp(35px, 3.8462vw, 45px);
    transition: all 0.4s ease 0s;
    flex-shrink: 0;
}

.main-acc__btn-icon svg {
    width: 100%;
    height: auto;
}

.main-acc__btn.active .main-acc__btn-icon {
    transform: rotate(-45deg);
}

.main-acc__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
}

.footer-nav {
    display: flex;
    gap: clamp(30px, 7.265vw, 85px);
}

@media (min-width: 576px) {
    .footer-nav {
        padding-top: calc(15px + clamp(24px, 2.3077vw, 27px));
    }
}

@media (max-width: 576px) {
    .footer-nav {
        padding-top: 15px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.footer-nav__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(16px, 1.5385vw, 18px);
}

.footer-nav__col {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(15px, 2.5641vw, 30px);
}

.footer-nav ul {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 12px clamp(20px, 2.3932vw, 28px);
}

@media (max-width: 768px) and (min-width: 576px) {
    .footer-nav ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-flow: wrap;
        gap: 12px 15px;
    }
}

@media (max-width: 576px) {
    .footer-nav ul {
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.footer-nav a {
    font-size: clamp(13px, 1.2821vw, 15px);
    font-weight: 400;
    color: rgba(var(--cl-a), 0.85);
    transition: all 0.3s ease 0s;
}

.footer-nav a:hover {
    transform: scale(1.05);
}

.main-table {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.main-table.active::before {
    opacity: 0;
    visibility: hidden;
}

.main-table__box {
    overflow: auto;
    margin-left: calc(((100vw - var(--container-width)) / 2 + var(--container-offset)) * -1);
    padding-bottom: clamp(54px, 7.1795vw, 84px);
}

@media (max-width: 1024px) {
    .main-table__box {
        margin-left: calc(var(--container-offset) * -1);
    }
}

.main-table__box::-webkit-scrollbar {
    display: none;
}

.main-table::before {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%);
    right: 0px;
    top: 0px;
    bottom: clamp(50px, 6.8376vw, 80px);
    z-index: 2;
    width: 50vw;
    transform: translateX(89%);
    position: absolute;
    transition: all 0.2s ease 0s;
}

@media (max-width: 1024px) {
    .main-table::before {
        transform: translateX(91%);
    }
}

.main-table__list {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.main-table__list .main-table__row:nth-child(2n) {
    background: rgba(var(--bg-d), 1);
}

.main-table__row {
    display: grid;
    gap: 10px;
    border-radius: 12px;
    padding: 17px clamp(14px, 1.6239vw, 19px) 16px clamp(14px, 1.9658vw, 23px);
    min-height: 57px;
}

@media (min-width: 1024px) {
    .main-table__row {
        grid-template-columns: 157px 181px repeat(12, 113px) 137px 63px 122px;
        min-width: 2220px;
    }
}

@media (max-width: 1024px) {
    .main-table__row {
        grid-template-columns: 115px 119px repeat(12, 85px) 90px 65px 100px;
        min-width: 1700px;
    }
}

.main-table__row--head {
    background: rgba(var(--bg-j), 1);
}

.main-table__row--head .main-table__value {
    font-size: clamp(13px, 1.1966vw, 14px);
    line-height: 114%;
    max-width: 80px;
}

.main-table__row--head .main-table__value:last-child {
    justify-self: end;
    text-align: end;
}

@media (min-width: 1024px) {
    .main-table__row {
        margin-left: calc((100vw - var(--container-width)) / 2 + var(--container-offset));
    }
}

@media (max-width: 1024px) {
    .main-table__row {
        margin-left: var(--container-offset);
    }
}

.main-table__btn {
    padding: 10px;
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(var(--bg-c), 1);
    color: rgba(var(--cl-a), 1);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 114.286%;
}

.main-table__value {
    color: rgba(var(--cl-a), 1);
    font-family: var(--font-family);
    font-size: clamp(14px, 1.3675vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
}

.main-table__icon {
    margin-bottom: -3px;
}

.main-table__icon svg {
    fill: none;
    stroke: rgba(var(--cl-f), 1);
}

.main-table__icon--bronze svg {
    stroke: rgb(154, 104, 93);
}

.main-table__icon--silver svg {
    stroke: rgb(164, 164, 172);
}

.main-table__icon--gold svg {
    stroke: rgb(175, 151, 117);
}

.main-table__icon--platinum svg {
    stroke: none;
    fill: rgb(130, 130, 130);
}

.main-table__icon--diamond svg {
    stroke: none;
    fill: rgb(127, 102, 158);
}

.main-table__icon--elite svg {
    stroke: none;
    fill: rgb(84, 118, 97);
}

.main-table__icon--premier svg {
    stroke: rgb(193, 193, 211);
}

.main-table__icon--ultimate svg {
    stroke: rgb(208, 162, 148);
}

.main-table__icon--vip svg {
    stroke: rgb(218, 201, 156);
}

.main-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
    border-radius: 21px;
    border: 1px solid var(--br-c);
    background: var(--gr-a);
    padding: clamp(30px, 3.5897vw, 42px) clamp(20px, 4.7009vw, 55px) clamp(35px, 5.5556vw, 65px) clamp(20px, 4.1026vw, 48px);
}

@media (min-width: 1024px) {
    .main-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-form {
        grid-template-columns: 1fr;
    }
}

.main-form__field {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 1024px) {
    .main-form__field--area {
        grid-column: 1 / -1;
    }
}

.main-form__field--captcha .main-form__input {
    padding: 16px 150px 17px 20px;
}

.main-form__captcha {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.main-form__captcha img, .main-form__captcha picture {
    width: auto;
    height: 100%;
}

.main-form__subtitle {
    color: rgba(var(--cl-h), 1);
    font-size: 14px;
}

.main-form__area {
    grid-column: 1 / -1;
}

.main-form__label {
    position: relative;
}

.main-form__icon {
    position: absolute;
    top: 50%;
    transform: translate(50%, -45%);
    left: 0px;
}

.main-form__icon svg {
    fill: none;
}

.main-form__input {
    border: 1px solid var(--br-c);
    background: rgba(var(--bg-k), 1);
    padding: 16px 15px 17px 50px;
    border-radius: 12px;
    color: rgba(var(--cl-a), 1);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all 0.4s ease 0s;
}

.main-form__input::-webkit-input-placeholder {
    color: rgba(var(--cl-a), 1);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.main-form__input::placeholder {
    color: rgba(var(--cl-a), 1);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.main-form__input.focus-visible {
    border-color: var(--br-b);
}

.main-form__input:hover {
    border-color: var(--br-b);
}

.main-form__area {
    background-color: transparent;
    width: 100%;
    min-height: 150px;
    padding: 16px 15px 17px;
}

.main-form .main-btn {
    background-color: rgba(var(--bg-l), 1);
    width: 100%;
    max-width: 349px;
    height: 50px;
}

@media (min-width: 1024px) {
    .main-form .main-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .main-form .main-btn {
        justify-self: center;
    }
}

.faq-form {
    padding: 0px;
    border: none;
    background: initial;
    border-radius: initial;
    gap: 10px;
}

@media (min-width: 768px) {
    .faq-form {
        grid-template-columns: 100%;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .faq-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .faq-form {
        grid-template-columns: 100%;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .faq-form .main-form__field--area {
        grid-column: 1 / -1;
    }
}

.faq-form .main-form__title {
    font-weight: 700;
    font-size: clamp(22px, 2.5641vw, 30px);
    margin-bottom: 18px;
}

@media (max-width: 768px) and (min-width: 576px) {
    .faq-form .main-form__title {
        grid-column: 1 / -1;
    }
}

.faq-form .main-form__subtitle {
    color: rgba(var(--cl-a), 0.75);
}

.faq-form .main-form__area {
    background: rgba(var(--bg-k), 1);
}

.faq-form .main-btn {
    margin-top: 8px;
    max-width: 100%;
    width: 100%;
    grid-column: initial;
    height: 50px;
    border: solid 1px rgba(var(--bg-l), 1);
}

.faq-form .main-btn span {
    background: rgba(var(--bg-k), 1);
}

.faq-form .main-btn:hover {
    border-color: var(--br-a);
}

@media (max-width: 768px) and (min-width: 576px) {
    .faq-form .main-btn {
        grid-column: 1 / -1;
    }
}

.terms-tabs {
    border-radius: 21px;
    border: solid 1px var(--br-c);
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(30px, 2.8205vw, 33px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.terms-tabs::before {
    pointer-events: none;
    z-index: -1;
    position: absolute;
    content: "";
    border-radius: 21px;
    inset: 0px;
    background: linear-gradient(rgba(18, 25, 60, 0.12) 0%, rgba(18, 24, 52, 0.63) 100%);
    backdrop-filter: blur(9.6px);
}

@media (min-width: 768px) {
    .terms-tabs {
        padding: 29px 31px clamp(38px, 4.1026vw, 48px);
    }
}

@media (max-width: 768px) {
    .terms-tabs {
        padding: 29px 0px clamp(38px, 4.1026vw, 48px);
    }
}

.terms-tabs__nav {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 5px clamp(15px, 2.5641vw, 30px);
}

@media (min-width: 768px) {
    .terms-tabs__nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .terms-tabs__nav {
        overflow: auto;
        padding: 0px clamp(15px, 2.6496vw, 31px);
    }
}

.terms-tabs__nav-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 193.75%;
    min-height: 55px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    transition: all 0.4s ease 0s;
    white-space: nowrap;
}

.terms-tabs__nav-btn.active {
    color: rgba(var(--cl-a), 1);
    padding: 0px clamp(25px, 3.9316vw, 46px);
    border-radius: 12px;
    background: rgba(var(--bg-k), 1);
}

.terms-tabs__nav-btn.active:hover {
    background: rgba(var(--bg-k), 0.8);
}

@media (max-width: 768px) {
    .terms-tabs__nav-btn.active:hover {
        color: rgba(var(--cl-a), 1);
    }
}

.terms-tabs__nav-btn:hover {
    color: rgba(var(--cl-a), 0.7);
}

.terms-tabs__title {
    font-size: clamp(18px, 1.7949vw, 21px);
    font-weight: 700;
    line-height: 100%;
}

.terms-tabs__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 19px;
}

.terms-tabs__box ul {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    list-style: disc;
    padding-left: 25px;
}

.terms-tabs__box ul li {
    position: relative;
    list-style: disc;
}

.terms-tabs__box ul li::marker {
    color: rgba(var(--cl-a), 1);
}

.terms-tabs__box ul p {
    font-size: clamp(14px, 1.3675vw, 16px);
    line-height: 193.75%;
}

@media (max-width: 768px) {
    .terms-tabs__box {
        padding: 0px clamp(15px, 2.6496vw, 31px);
    }
}

.main-doc {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 15px;
    border: 1px solid var(--br-b);
    border-radius: 21px;
    min-height: 122px;
    background: rgba(var(--bg-k), 1);
    padding: clamp(13px, 2.3932vw, 28px) clamp(15px, 2.5641vw, 30px);
}

@media (min-width: 576px) {
    .main-doc {
        min-width: 185px;
    }
}

.main-doc__btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    gap: 5px;
    white-space: nowrap;
}

.main-doc__btn svg {
    transition: all 0.3s ease 0s;
    margin-bottom: -2px;
    flex-shrink: 1;
}

.main-doc__btn:hover {
    transform: scale(1.02);
}

.main-doc__btn:hover svg {
    color: rgba(var(--cl-f), 1);
}

.main-faq {
    display: grid;
    gap: 25px clamp(20px, 3.1624vw, 37px);
    z-index: 1;
    border-radius: 41px;
    position: relative;
    padding: clamp(45px, 5.812vw, 68px) 0px clamp(35px, 4.188vw, 49px);
}

@media (min-width: 1241px) {
    .main-faq {
        grid-template-columns: 1fr 0.671fr;
    }
}

@media (max-width: 1240px) {
    .main-faq {
        grid-template-columns: 1fr 0.8fr;
        gap: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .main-faq {
    }
}

@media (max-width: 768px) {
    .main-faq {
        grid-template-columns: 100%;
        gap: 40px;
        padding: 0px 0px clamp(35px, 4.188vw, 49px);
    }
}

.main-faq::before {
    border-radius: inherit;
    position: absolute;
    content: "";
    top: 0px;
    bottom: 0px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1429' height='604' fill='none'%3E%3Crect width='1429' height='604' fill='url(%23paint0_linear_137_652)' rx='41'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_137_652' x1='714.5' x2='714.5' y1='0' y2='604' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232364F9' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%232364F9'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    z-index: -1;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    pointer-events: none;
}

@media (min-width: 1441px) {
    .main-faq::before {
        left: calc(clamp(60px, 8.667vw, 130px) * -1);
        right: calc(clamp(60px, 8.667vw, 130px) * -1);
    }
}

@media (max-width: 1440px) {
    .main-faq::before {
        left: -20px;
        right: -20px;
    }
}

@media (max-width: 1024px) {
    .main-faq::before {
        background-position: center center;
    }
}

.main-faq__title {
    font-weight: 700;
    font-size: clamp(22px, 2.5641vw, 30px);
}

.main-faq__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 2.1368vw, 25px);
}

.main-faq__inner {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 20px;
}

.main-faq__inner .main-btn {
    width: 100%;
    max-width: 100%;
    height: 60px;
}

.main-faq__inner .main-btn span {
    background: rgba(var(--bg-k), 1);
}

.main-faq__inner .main-btn:hover {
    border-color: var(--br-a);
}

.main-faq__wrapp {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .main-faq__wrapp {
        gap: 51px;
    }
}

@media (max-width: 768px) {
    .main-faq__wrapp {
        gap: 28px;
    }
}

.info-list {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: clamp(15px, 2.735vw, 32px);
}

.info-list__icon {
    width: clamp(40px, 3.8462vw, 45px);
    height: clamp(40px, 3.8462vw, 45px);
    flex-shrink: 0;
    border-radius: 50%;
    z-index: 3;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.info-list__icon::before {
    position: absolute;
    content: "";
    background-image: var(--info-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0px;
    z-index: -1;
}

.info-list__icon svg {
    fill: none;
    stroke: rgba(var(--cl-a), 1);
}

.info-list__card {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
    color: rgba(var(--cl-a), 1);
    font-size: clamp(14px, 1.3675vw, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 131.25%;
}

@media (max-width: 768px) {
    .info-list__card {
        height: 100%;
        width: 100%;
        border-radius: 12px;
        border: 1px dashed var(--br-b);
        background: var(--gr-a);
        backdrop-filter: blur(10.5px);
        padding: 21px 23px;
    }
}

.main-nav {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 5px 7px;
    width: fit-content;
    border-radius: 99px;
    background: rgba(var(--bg-e), 1);
}

.main-nav__link {
    color: rgba(var(--cl-d), 1);
    font-size: 14px;
    border-radius: 999px;
    transition: all 0.4s ease 0s;
}

@media (min-width: 1241px) {
    .main-nav__link {
        padding: clamp(10px, 1.3675vw, 16px) clamp(20px, 2.5641vw, 30px) clamp(11px, 1.453vw, 17px) clamp(21px, 2.6496vw, 31px);
    }
}

@media (max-width: 1240px) and (min-width: 1024px) {
    .main-nav__link {
        padding: 16px 20px 17px 21px;
    }
}

.main-nav__link.active {
    background: rgba(var(--bg-d), 1);
    color: rgba(var(--cl-e), 1);
    font-weight: 600;
}

.main-nav__link:hover {
    background: rgba(var(--bg-d), 1);
    color: rgba(var(--cl-e), 1);
}

.video-list {
    display: grid;
    gap: 21px;
}

@media (min-width: 768px) {
    .video-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .video-list {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .video-list .video-list__item:last-child {
        grid-column: 1 / 3;
        width: 100%;
    }

    .video-list .video-list__item:last-child .info-card {
        width: 100%;
    }

    .video-list .video-list__item:last-child .info-card__image img, .video-list .video-list__item:last-child .info-card__image picture {
        width: 100%;
        max-height: min(46.6vw, 357px);
        height: 100%;
    }
}

@media (max-width: 576px) {
    .video-list {
        grid-template-columns: 100%;
        justify-items: center;
    }
}

.plan-list {
    display: grid;
}

@media (min-width: 768px) {
    .plan-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .plan-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 576px) {
    .plan-list {
        gap: clamp(15px, 1.6239vw, 19px);
    }
}

@media (max-width: 576px) {
    .plan-list {
        gap: 20px;
    }
}

.calc {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 19px;
}

.calc__bottom {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(25px, 2.5641vw, 30px);
    -webkit-box-align: center;
    align-items: center;
}

.calc__bottom p {
    max-width: 1000px;
    text-align: center;
}

.calc__bottom .main-btn {
    height: 60px;
    max-width: 349px;
    width: 100%;
}

.calc__box {
    z-index: 1;
    overflow: hidden;
    border-radius: 21px;
    border: 1px solid var(--br-c);
    background: var(--gr-a);
    padding: clamp(25px, 3.3333vw, 39px) clamp(15px, 3.8462vw, 45px) clamp(20px, 3.3333vw, 39px);
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(30px, 3.4188vw, 40px);
}

.calc__top {
    display: grid;
    gap: clamp(15px, 1.7094vw, 20px);
}

@media (min-width: 1024px) {
    .calc__top {
        grid-template-columns: repeat(2, 1fr) 365px;
    }
}

@media (max-width: 1024px) and (min-width: 576px) {
    .calc__top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .calc__top {
        grid-template-columns: 100%;
    }
}

.calc__profit {
    color: rgba(var(--cl-a), 1);
    text-align: right;
    font-size: 14px;
}

.calc__profit b {
    font-size: clamp(18px, 1.709vw, 20px);
    font-weight: 700;
    margin-right: 5px;
}

@media (min-width: 576px) {
    .calc__profit b {
        font-size: clamp(18px, 1.709vw, 20px);
    }
}

@media (max-width: 576px) {
    .calc__profit b {
        font-size: 16px;
    }
}

.calc__total {
    display: flex;
    gap: 7px;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.calc__total::before {
    position: absolute;
    content: "";
    right: 0px;
    width: 1px;
    height: 32px;
    background: rgba(var(--bg-i), 1);
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1024px) and (min-width: 425px) {
    .calc__total::before {
        right: -7px;
        transform: translate(-50%, -50%);
    }
}

@media (min-width: 1024px) {
    .calc__total {
        padding-right: 12px;
    }
}

@media (max-width: 425px) {
    .calc__total {
        padding-right: 12px;
    }
}

.calc__total-profit {
    border-radius: 999px;
    background: rgba(var(--bg-c), 1);
    display: flex;
    height: 26px;
    padding: 2px 15px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    gap: 5px;
    color: rgba(var(--cl-a), 1);
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
}

.calc__total-profit b {
    position: relative;
    top: -1px;
}

@media (min-width: 576px) {
    .calc__total-profit {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .calc__total-profit {
        font-size: 14px;
    }
}

.calc__total-value {
    color: rgba(var(--cl-a), 1);
    font-weight: 600;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .calc__total-value {
        font-size: clamp(18px, 1.709vw, 20px);
    }
}

@media (max-width: 576px) {
    .calc__total-value {
        font-size: 16px;
    }
}

.calc__field {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 7px;
}

.calc__field-label {
    color: rgba(var(--cl-h), 1);
    font-size: 14px;
}

.calc__field-inner {
    position: relative;
}

.calc__field-inner--mode {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    grid-template-columns: 1fr auto;
    padding: 13px 14px;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid var(--br-b);
    background: var(--gr-b);
}

@media (max-width: 1024px) {
    .calc__field-inner--mode {
        grid-template-columns: repeat(2, 1fr);
    }
}

.calc__field-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    width: 24px;
    height: 24px;
    z-index: 3;
}

.calc__field-value {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    text-align: right;
    z-index: 3;
    color: rgba(var(--cl-g), 1);
    font-size: 14px;
}

@media (max-width: 1024px) and (min-width: 576px) {
    .calc__field:last-child {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .calc__image {
        margin-left: calc(clamp(15px, 3.8462vw, 45px) * -1);
        margin-right: calc(clamp(15px, 3.8462vw, 45px) * -1);
    }
}

.range {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.range__inner {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    height: 54px;
    border: 1px solid var(--Border, #2d366c);
    background: var(--color-dark-blue);
    width: 100%;
    min-width: 170px;
    border-radius: 12px;
}

.range input {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-color: transparent;
    padding: 15px 48px;
    width: 100%;
    min-width: 170px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    color: rgba(var(--cl-a), 1);
    margin: 0px;
    border-radius: 12px;
}

.noUi-horizontal .noUi-handle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 6px solid var(--br-b);
    box-shadow: none;
    top: -10px;
    cursor: pointer;
}

.noUi-horizontal .noUi-handle::after, .noUi-horizontal .noUi-handle::before {
    display: none;
}

.noUi-handle-lower {
    right: -18px !important;
}

.noUi-connect {
    background: rgba(var(--bg-c), 1);
    height: 1px;
}

.noUi-target {
    padding-right: 15px;
    height: 1px;
    background: transparent;
    box-shadow: none;
    border: none;
    width: calc(100% - 24px);
    position: absolute;
    left: 12px;
    bottom: 0px;
}

.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(220px, 22.2222vw, 260px), 1fr));
    gap: clamp(15px, 1.7094vw, 20px);
}

.roadmap {
    display: flex;
    gap: 87px;
}

@media (min-width: 768px) {
    .roadmap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .roadmap {
        -webkit-box-pack: center;
        justify-content: center;
        gap: clamp(15px, 5.208vw, 40px);
    }
}

@media (min-width: 768px) {
    .roadmap__row:not(.roadmap__row--second) .roadmap__item:last-child {
        padding-right: 0px;
    }
}

@media (min-width: 768px) {
    .roadmap__row {
        display: grid;
        grid-template-columns: 0.65fr 1fr 1fr 0.54fr;
    }
}

@media (max-width: 768px) {
    .roadmap__row {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        gap: 40px;
    }
}

.roadmap__row--second {
    position: relative;
}

@media (min-width: 768px) {
    .roadmap__row--second {
        margin-left: 50px;
        grid-template-columns: 0.96fr 0.95fr 1fr;
    }
}

@media (max-width: 768px) {
    .roadmap__row--second {
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .roadmap__row--second .roadmap__box {
        -webkit-box-align: start !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 768px) {
    .roadmap__row--second .roadmap__title {
        text-align: start !important;
    }
}

@media (max-width: 768px) {
    .roadmap__row--second p {
        text-align: start !important;
    }
}

.roadmap__row--second .roadmap__item:last-child {
}

@media (min-width: 768px) {
    .roadmap__row--second .roadmap__item::before {
        top: -43.5px !important;
        bottom: initial !important;
        transform: scaleY(-1) translateY(7.5%) !important;
    }
}

@media (max-width: 768px) {
    .roadmap__row--second .roadmap__item::before {
        left: calc(clamp(15px, 5.208vw, 40px) / 2 * -1);
        right: initial !important;
        transform: scaleX(-1) translateX(8.5%) !important;
    }
}

@media (max-width: 768px) {
    .roadmap__row--second .roadmap__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: start !important;
        align-items: flex-start !important;
    }
}

.roadmap__row--second::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (min-width: 768px) {
    .roadmap__row--second::before {
        top: -43.5px;
        right: 0px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1161' height='6' fill='none'%3E%3Cpath stroke='%232C3458' stroke-linecap='round' stroke-width='5' d='m3 3 1155-.0001'/%3E%3C/svg%3E");
        height: 6px;
        width: calc(100% + 50px);
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .roadmap__row--second::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='264' fill='none'%3E%3Cpath stroke='%232C3458' stroke-linecap='round' stroke-width='3' d='M2 262V2'/%3E%3C/svg%3E");
        left: calc(clamp(15px, 5.208vw, 40px) / 2 * -1);
        bottom: 0px;
        width: 4px;
        height: calc(100% + 25px);
        transform: translateX(-50%);
    }
}

.roadmap__item {
    padding: 0px 20px;
    width: 100%;
    display: flex;
    gap: clamp(25px, 5.5556vw, 65px);
    position: relative;
}

.roadmap__item--mode {
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .roadmap__item--mode .roadmap__date {
        margin-left: -65%;
    }
}

.roadmap__item:not(:last-child)::before {
    position: absolute;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='294' fill='none'%3E%3Cpath stroke='url(%23paint0_linear_2001_1353)' stroke-linecap='round' stroke-width='2' d='M23 271V1'/%3E%3Ccircle cx='23.0722' cy='271.307' r='8.78461' fill='%232364F9'/%3E%3Crect width='31.9423' height='31.9423' x='28.7457' y='293.317' fill='url(%23paint1_linear_2001_1353)' stroke='url(%23paint2_linear_2001_1353)' rx='15.9711' transform='rotate(-150 28.7457 293.317)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_2001_1353' x1='22.5' x2='22.5' y1='271' y2='1' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232364F9'/%3E%3Cstop offset='1' stop-color='%23153B93' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_2001_1353' x1='45.3999' x2='45.3999' y1='294' y2='326.942' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23272F50' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23272F50' stop-opacity='0.31'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_2001_1353' x1='45.3999' x2='45.3999' y1='326.942' y2='294' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-position: center bottom;
    background-size: cover;
    z-index: 3;
}

@media (min-width: 768px) {
    .roadmap__item:not(:last-child)::before {
        right: -23px;
        width: 46px;
        height: 294px;
        bottom: -43.5px;
        transform: translateY(7.5%);
    }
}

@media (max-width: 768px) {
    .roadmap__item:not(:last-child)::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='262' height='45' fill='none'%3E%3Cpath stroke='url(%23paint0_linear_2001_1354)' stroke-linecap='round' stroke-width='2' d='M240 22H1'/%3E%3Ccircle cx='239.672' cy='22.3066' r='8.78461' fill='%232364F9'/%3E%3Crect width='31.9423' height='31.9423' x='245.346' y='44.317' fill='url(%23paint1_linear_2001_1354)' stroke='url(%23paint2_linear_2001_1354)' rx='15.9711' transform='rotate(-150 245.346 44.317)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_2001_1354' x1='240' x2='1' y1='21.5' y2='21.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232364F9'/%3E%3Cstop offset='1' stop-color='%23153B93' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_2001_1354' x1='262' x2='262' y1='45' y2='77.9423' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23272F50' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23272F50' stop-opacity='0.31'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_2001_1354' x1='262' x2='262' y1='77.9423' y2='45' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
        bottom: -40px;
        right: calc(clamp(15px, 5.208vw, 40px) / 2 * -1);
        width: 190px;
        height: 30px;
        transform: translateX(8.5%);
    }
}

@media (min-width: 768px) {
    .roadmap__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .roadmap__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        align-items: flex-end;
    }
}

.roadmap__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(10px, 1.2821vw, 15px);
}

@media (min-width: 768px) {
    .roadmap__box {
        max-width: 179px;
    }

    .roadmap__box--mode {
        max-width: 159px;
    }

    .roadmap__box--third {
        max-width: 185px;
    }

    .roadmap__box--fifth {
        max-width: 208px;
    }
}

@media (max-width: 768px) {
    .roadmap__box {
        -webkit-box-align: end;
        align-items: flex-end;
    }
}

.roadmap__title {
    font-weight: 700;
    font-size: clamp(14px, 1.3675vw, 16px);
    line-height: 131%;
    color: rgba(var(--cl-a), 1);
}

@media (max-width: 768px) {
    .roadmap__title {
        text-align: end;
    }
}

.roadmap p {
    font-weight: 500;
    font-size: clamp(12px, 1.1966vw, 14px);
    line-height: 143%;
    color: rgba(var(--cl-d), 1);
}

@media (max-width: 768px) {
    .roadmap p {
        text-align: end;
    }
}

.roadmap__date {
    font-weight: 600;
    font-size: clamp(14px, 1.3675vw, 16px);
    line-height: 131%;
    color: rgba(var(--cl-a), 1);
    border: 1px solid var(--br-c);
    border-radius: 12px;
    width: clamp(140px, 16.4103vw, 192px);
    height: clamp(45px, 4.7009vw, 55px);
    backdrop-filter: blur(19.2px);
    background: var(--gr-e);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .roadmap__date {
        align-self: center;
    }
}

.roadmap__date.active {
    position: relative;
    z-index: 2;
}

.roadmap__date.active::before {
    pointer-events: none;
    position: absolute;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='347' height='202' fill='none'%3E%3Cg filter='url(%23filter0_f_101_4526)'%3E%3Cellipse cx='173.5' cy='101' fill='%232364F9' rx='93.5' ry='21'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_101_4526' width='347' height='202' x='0' y='0' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_101_4526' stdDeviation='40'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: clamp(307px, 29.6581vw, 347px);
    height: clamp(162px, 17.265vw, 202px);
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 45%);
    z-index: -1;
}

.referral-box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(30px, 4.7009vw, 55px);
}

@media (min-width: 1024px) {
    .referral-box {
        margin-left: min(5.968vw, 74px);
        max-width: 403px;
    }
}

.referral-box__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 117%;
}

.referral-box p {
    font-size: 14px;
    line-height: 150%;
    color: rgba(var(--cl-g), 1);
}

.referral-box__wrapp {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 9px;
}

.info-card {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 24px;
    border-radius: 41px;
    overflow: hidden;
}

.info-card__image {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 41px;
    overflow: hidden;
}

.info-card__image img, .info-card__image picture {
    transition: all 0.4s ease 0s;
}

.info-card .play-btn {
    position: absolute;
    inset: 0px;
    margin: auto;
    z-index: 2;
}

.info-card:hover .play-btn {
    transform: scale(1.2);
}

.info-card:hover .info-card__image img, .info-card:hover .info-card__image picture {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .info-card {
        width: fit-content;
    }
}

.info-card--mode {
    background: rgba(var(--bg-f), 1);
    padding: clamp(10px, 2.5641vw, 30px);
}

@media (max-width: 768px) {
    .info-card--mode .info-card__image {
        border-radius: 24px;
    }

    .info-card--mode .info-card__image img, .info-card--mode .info-card__image picture {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .info-card--mode {
        border-radius: 24px;
    }
}

.plan-card {
    border-radius: 21px;
    border: 15px solid #3c83b0;
    background: var(--gr-a);
    padding: clamp(20px, 3.7607vw, 44px) clamp(25px, 4.188vw, 49px);
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 20px;
    transition: all 0.2s ease 0s;
    height: 100%;
}

@media (max-width: 1024px) {
    .plan-card {
        padding: clamp(15px, 1.953vw, 20px);
    }
}

.plan-card__top {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 19px;
}

.plan-card__percent {
    margin-bottom: 32px;
    color: rgb(83, 188, 217);
    font-size: clamp(40px, 6.4103vw, 45px);
    font-weight: 700;
    line-height: 28%;
}

.plan-card__percent-value {
    color: rgba(var(--cl-a), 1);
    margin-left: -15px;
    font-size: 16px;
    font-weight: 700;
    line-height: 131.25%;
}

.plan-card__list {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 8px;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.plan-card__level {
    font-size: clamp(18px, 1.7949vw, 21px);
    font-weight: 700;
}

.plan-card__text {
    color: rgba(var(--cl-g), 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.plan-card__info {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 800;
    font-size: 23px;
    gap: 10px;
}

.plan-card__info svg {
    stroke: rgba(var(--cl-f), 1);
}

.plan-card .main-btn {
    width: 100%;
    font-size: 18px;
    background: #3c83b0;
    }{
    }{|;
    }{|
    "";
    }{|
    ":";
    }{|
    ":?";
    }{|
    ":?>";
    }{|
    ":?><";
    }{|
    ":?><'";
    }{|
    ":?><'";
    }{|
    ":?><";
    }{|
    ":?></";
    }{|
    ":?><";
    }{|
    ":?><?";
    }{|
    ":?><";
    }{|
    ":?>";
    }{|
    ":?";
    }{|
    ":";
    }{|
    "";
    }{|;
    }{!;
    height: 60px;
}

.plan-card--mode {
    border: 15px solid #3c83b0;
}

@media (min-width: 1024px) {
    .plan-card:hover {
        transform: scale(1.01);
    }
}

.strategy-card {
    border-radius: 21px;
    border: 1px solid rgb(44, 52, 88);
    background: linear-gradient(rgba(18, 24, 52, 0) 0%, rgb(18, 24, 52) 100%);
    padding: 30px clamp(15px, 2.5641vw, 30px) 32px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 16px;
}

.strategy-card__top {
    gap: 5px 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 2px;
}

.strategy-card__title {
    align-self: end;
    font-size: clamp(18px, 1.7949vw, 21px);
    font-weight: 700;
}

.strategy-card__text {
    color: rgba(var(--cl-d), 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.strategy-card__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 75%;
}

.strategy-card__wrapp {
    border-radius: 16px;
    border: 1px solid var(--br-c);
    background: var(--gr-b);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 12px clamp(10px, 1.7094vw, 20px);
}

.strategy-card__wrapp--mode {
    border-color: var(--br-b);
    padding: 12px clamp(10px, 1.7094vw, 20px) 17px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
}

.strategy-card__wrapp--mode .strategy-card__text {
    line-height: 85.714%;
}

.strategy-card__percent {
    color: rgba(var(--cl-f), 1);
    font-size: clamp(18px, 1.7949vw, 21px);
    font-style: normal;
    font-weight: 700;
    line-height: 57.143%;
}

.strategy-card__box {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 10px;
}

.strategy-card__image {
    display: flex;
    grid-area: 1 / 1 / 3;
    height: 60px;
    border-radius: 20%;
}

.strategy-card__bottom {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
}

.strategy-card__risk {
    border-radius: 99px;
    background: rgba(var(--bg-g), 1);
    padding: 10px 20px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.strategy-card__risk ul {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
}

.strategy-card__risk ul li {
    width: 100%;
}

.strategy-card__risk ul li:first-child {
    border-radius: 99px 0px 0px 99px;
    overflow: hidden;
}

.strategy-card__risk ul li:last-child {
    border-radius: 0px 99px 99px 0px;
    overflow: hidden;
}

.strategy-card__risk ul .line {
    display: block;
    height: 3px;
    background-color: rgba(var(--bg-h), 1);
}

.strategy-card__risk ul .line.active {
    background-color: rgba(var(--bg-c), 1);
}

@media (min-width: 1024px) {
    .strategy-card__risk ul .line {
        width: 27px;
    }
}

@media (max-width: 1024px) {
    .strategy-card__risk ul .line {
        width: clamp(27px, 4.0171vw, 47px);
    }
}

@media (min-width: 1024px) {
    .strategy-card__risk {
        gap: 6px;
    }
}

@media (max-width: 1024px) {
    .strategy-card__risk {
        gap: clamp(6px, 0.6838vw, 8px);
    }
}

.strategy-card__icon {
    display: flex;
    flex-shrink: 0;
}

.strategy-card__subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 85.714%;
}

.bonus-card {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 5px;
    border-radius: 21px;
    background: var(--gr-c);
    overflow: hidden;
    padding: clamp(20px, 2.4786vw, 29px) clamp(15px, 2.0513vw, 24px);
    position: relative;
}

.bonus-card__label {
    margin-bottom: 4px;
}

.bonus-card__label svg {
    stroke: rgba(var(--cl-f), 1);
    fill: none;
}

.bonus-card__wrapp {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.bonus-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 131.25%;
}

.bonus-card__text {
    color: rgba(var(--cl-d), 1);
    font-size: 14px;
    line-height: 150%;
}

.bonus-card__value {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
}

.bonus-card::before {
    position: absolute;
    width: 224px;
    height: 100%;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='224' height='164' fill='none'%3E%3Cg filter='url(%23filter0_f_33_904)'%3E%3Ccircle cx='200' cy='80' r='55' fill='%232364F9'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_33_904' width='400' height='400' x='0' y='-120' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_33_904' stdDeviation='72.5'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    content: "";
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.bonus-card--steel .bonus-card__label svg {
    stroke: rgba(var(--cl-i), 1);
}

.bonus-card--steel::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='223' height='164' fill='none'%3E%3Cg filter='url(%23filter0_f_33_908)'%3E%3Ccircle cx='200' cy='80' r='55' fill='%238A92BC'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_33_908' width='400' height='400' x='0' y='-120' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_33_908' stdDeviation='72.5'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.bonus-card--titanium .bonus-card__label svg {
    stroke: rgba(var(--cl-j), 1);
}

.bonus-card--titanium::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='214' height='164' fill='none'%3E%3Cg filter='url(%23filter0_f_33_922)'%3E%3Ccircle cx='200' cy='80' r='55' fill='%23817A74'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_33_922' width='400' height='400' x='0' y='-120' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_33_922' stdDeviation='72.5'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.bonus-card--silver .bonus-card__label svg {
    stroke: rgba(var(--cl-k), 1);
}

.bonus-card--silver::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='213' height='164' fill='none'%3E%3Cg filter='url(%23filter0_f_33_936)'%3E%3Ccircle cx='200' cy='80' r='55' fill='%23817A74'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_33_936' width='400' height='400' x='0' y='-120' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_33_936' stdDeviation='72.5'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.bonus-card--gold .bonus-card__label svg {
    stroke: rgba(var(--cl-l), 1);
}

.bonus-card--gold::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='224' height='164' fill='none'%3E%3Cg filter='url(%23filter0_f_33_960)'%3E%3Ccircle cx='200' cy='80' r='55' fill='%23AF9775'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_33_960' width='400' height='400' x='0' y='-120' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_33_960' stdDeviation='72.5'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.bonus-card--platinum .bonus-card__label svg {
    stroke: rgba(var(--cl-m), 1);
}

.bonus-card--platinum::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='223' height='164' fill='none'%3E%3Cg filter='url(%23filter0_f_33_964)'%3E%3Ccircle cx='200' cy='80' r='55' fill='%23828282'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_33_964' width='400' height='400' x='0' y='-120' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_33_964' stdDeviation='72.5'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.bonus-card--palladium .bonus-card__label svg {
    stroke: rgba(var(--cl-n), 1);
}

.bonus-card--palladium::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='214' height='164' fill='none'%3E%3Cg filter='url(%23filter0_f_33_978)'%3E%3Ccircle cx='200' cy='80' r='55' fill='%23ADADA7'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_33_978' width='400' height='400' x='0' y='-120' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_33_978' stdDeviation='72.5'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.main-gift {
    border-radius: 21px;
    background: var(--gr-c);
    flex-shrink: 0;
    padding: clamp(20px, 2.5641vw, 30px) clamp(29px, 4.1026vw, 48px) clamp(29px, 5.0427vw, 59px) clamp(29px, 3.3333vw, 39px);
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.main-gift__top {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px;
}

.main-gift__top .main-gift__label {
    text-transform: uppercase;
}

.main-gift__top .main-gift__title {
    margin-bottom: 1px;
}

.main-gift__image {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    padding-left: 15px;
}

.main-gift__bottom {
    margin-top: -8px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 7px;
}

.main-gift__bottom .main-gift__title {
    margin-bottom: 10px;
}

.main-gift__name {
    color: rgba(var(--cl-d), 1);
    font-size: clamp(18px, 1.7949vw, 21px);
    font-weight: 600;
    line-height: 100%;
}

.main-gift__label {
    color: rgba(var(--cl-d), 1);
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
}

.main-gift__title {
    font-size: clamp(18px, 1.7949vw, 21px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.main-gift p {
    font-size: 14px;
    line-height: 178.571%;
}

@media (max-width: 768px) {
    .main-gift {
        max-width: 555px;
        justify-self: center;
    }
}

.ceo-card {
    border-radius: 21px;
    border: 1px solid var(--br-c);
    background: var(--gr-a);
    padding: 24px 26px 23px;
    display: grid;
}

@media (min-width: 768px) {
    .ceo-card {
        grid-template-columns: auto 1fr;
    }
}

@media (max-width: 768px) {
    .ceo-card {
        grid-template-columns: 1fr auto;
    }
}

@media (min-width: 576px) {
    .ceo-card {
        gap: clamp(24px, 2.5641vw, 30px);
    }
}

@media (max-width: 576px) {
    .ceo-card {
        gap: 10px 24px;
    }
}

.ceo-card__bottom {
    display: flex;
}

@media (min-width: 768px) {
    .ceo-card__bottom {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .ceo-card__bottom {
        gap: 20px;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .ceo-card__bottom {
        grid-column: 1 / 3;
    }
}

@media (max-width: 576px) {
    .ceo-card__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        grid-column: 1 / -1;
        gap: 15px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .ceo-card__bottom .main-btn {
        max-width: 100%;
    }
}

.ceo-card__link {
    color: rgba(var(--cl-f), 1);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease 0s;
}

.ceo-card__link:hover {
    text-decoration-color: transparent;
}

.ceo-card__image {
    display: flex;
}

@media (max-width: 768px) {
    .ceo-card__image {
        display: flex;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .ceo-card__image {
        grid-row: 1 / 3;
        align-self: center;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .ceo-card__image img, .ceo-card__image picture {
        width: min(26.076vw, 200px);
        height: min(39.896vw, 306px);
    }
}

@media (max-width: 768px) and (max-width: 576px) {
    .ceo-card__image {
        grid-column: 2 / 3;
    }

    .ceo-card__image img, .ceo-card__image picture {
        width: clamp(100px, 28.889vw, 130px);
        height: clamp(100px, 28.889vw, 130px);
        object-position: center top;
    }
}

.ceo-card__image img, .ceo-card__image picture {
    border-radius: 21px;
}

.ceo-card__top {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .ceo-card__top {
        grid-area: 1 / 1 / auto / 2;
    }
}

.ceo-card__box {
    padding-top: 31px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 12px;
}

.ceo-card__box p {
    max-width: 765px;
}

@media (max-width: 576px) {
    .ceo-card__box p {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ceo-card__box {
        display: contents;
    }
}

.ceo-card__label {
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(var(--cl-f), 1);
    display: flex;
    padding: 6px 22px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.ceo-card__title {
    font-size: clamp(21px, 2.3932vw, 28px);
    font-weight: 700;
}

.ceo-card__about {
    color: rgba(var(--cl-g), 1);
    font-size: 14px;
    font-weight: 500;
}

.ceo-card__about b {
    color: rgba(var(--cl-a), 1);
    font-size: 14px;
    font-weight: 500;
}

.referral-card {
    padding: clamp(31px, 3.5043vw, 41px) clamp(16px, 2.0513vw, 24px) clamp(20px, 2.3932vw, 28px);
    z-index: 1;
    position: relative;
    border: solid 0.88px var(--br-c);
    border-radius: 18px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(24px, 2.4786vw, 29px);
}

.referral-card::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='492' height='338' fill='none'%3E%3Cg filter='url(%23filter0_f_192_1031)'%3E%3Cellipse cx='246' cy='169' fill='%232364F9' rx='101' ry='24'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_192_1031' width='492' height='338' x='0' y='0' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_192_1031' stdDeviation='72.5'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    position: absolute;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 50%);
    pointer-events: none;
    z-index: -1;
}

@media (min-width: 1024px) {
    .referral-card::after {
        width: clamp(292px, 42.0513vw, 492px);
        height: clamp(238px, 28.8889vw, 338px);
    }
}

@media (max-width: 1024px) {
    .referral-card::after {
        width: clamp(292px, 48.047vw, 492px);
        height: clamp(238px, 33.008vw, 338px);
    }
}

.referral-card::before {
    overflow: hidden;
    border-radius: inherit;
    position: absolute;
    content: "";
    inset: 0px;
    z-index: -1;
    pointer-events: none;
    backdrop-filter: blur(69.2px);
    background: var(--gr-a);
}

.referral-card__top {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 9px;
    position: relative;
}

.referral-card__top::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='259' height='44' fill='none'%3E%3Cg filter='url(%23filter0_d_192_1066)'%3E%3Cpath stroke='url(%23paint0_linear_192_1066)' stroke-width='3' d='M20 18h218.5' shape-rendering='crispEdges'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_192_1066' x1='20' x2='238.5' y1='18.5' y2='18.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232364F9' stop-opacity='0'/%3E%3Cstop offset='0.52' stop-color='%232364F9'/%3E%3Cstop offset='1' stop-color='%232364F9' stop-opacity='0'/%3E%3C/linearGradient%3E%3Cfilter id='filter0_d_192_1066' width='258.5' height='43' x='0' y='0.5' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' result='hardAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='10'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix values='0 0 0 0 0.137255 0 0 0 0 0.392157 0 0 0 0 0.976471 0 0 0 0.5 0'/%3E%3CfeBlend in2='BackgroundImageFix' result='effect1_dropShadow_192_1066'/%3E%3CfeBlend in='SourceGraphic' in2='effect1_dropShadow_192_1066' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 259px;
    height: 44px;
    content: "";
    top: calc(clamp(31px, 3.5043vw, 41px) * -1);
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 2;
    position: absolute;
}

.referral-card__title {
    font-weight: 600;
    font-size: clamp(18px, 1.7949vw, 21px);
}

.referral-card__subtitle {
    color: rgba(var(--cl-h), 1);
    font-size: clamp(16px, 1.5385vw, 18px);
}

.referral-card__list {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 15px;
}

.referral-card__box {
    padding: clamp(15px, 1.7094vw, 20px) clamp(25px, 2.5641vw, 30px) clamp(14px, 2.4786vw, 29px);
    border: solid 1px var(--br-c);
    border-radius: 16px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(20px, 2.1368vw, 25px);
}

.referral-card__bottom {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 14px;
    border-top: solid 1px var(--br-c);
    padding-top: 15px;
}

.referral-card__item {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
}

.referral-card__name {
    font-size: clamp(14px, 1.3675vw, 16px);
    line-height: 131%;
    color: rgba(var(--cl-g), 1);
}

.referral-card__value {
    -webkit-box-flex: 1;
    flex-grow: 1;
    font-weight: 600;
    font-size: clamp(16px, 1.5385vw, 18px);
    line-height: 117%;
    text-align: right;
}

.referral-card__total {
    font-weight: 600;
    font-size: clamp(16px, 1.5385vw, 18px);
    line-height: 117%;
    text-align: right;
    color: rgba(var(--cl-f), 1);
}

.first-section {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .first-section {
        padding: clamp(60px, 12.5641vw, 147px) 0px 36px;
    }
}

@media (max-width: 768px) {
    .first-section {
        padding: 26px 0px 10px;
    }
}

.first-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(60px, 10.5983vw, 124px);
}

.first-section__wrapp {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 7px;
    max-width: clamp(350px, 40.6838vw, 476px);
}

.first-section__inner {
    display: flex;
    position: relative;
}

@media (min-width: 768px) {
    .first-section__inner p {
        max-width: min(40.6838vw, 476px);
    }
}

@media (max-width: 768px) {
    .first-section__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

@media (min-width: 576px) {
    .first-section__inner {
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .first-section__inner {
        gap: 40px;
    }
}

.first-section__image {
    width: min(58.3761vw, 683px);
}

@media (min-width: 768px) {
    .first-section__image {
        top: -15%;
        right: -11%;
    }
}

@media (max-width: 768px) {
    .first-section__image {
        bottom: -36%;
        right: -13%;
    }
}

@media (min-width: 576px) {
    .first-section__image {
        position: absolute;
    }
}

@media (max-width: 576px) {
    .first-section__image {
        align-self: center;
        width: 120%;
    }

    .first-section__image img, .first-section__image picture {
        position: relative;
        right: -5%;
    }
}

.first-section__image-icon {
    position: absolute;
    z-index: 3;
}

@media (min-width: 576px) {
    .first-section__image-icon {
        bottom: 41%;
        left: 2%;
        width: min(16.1538vw, 189px);
    }
}

@media (max-width: 576px) {
    .first-section__image-icon {
        left: 4%;
        bottom: 0px;
        transform: translateY(-135%);
        width: min(29.34vw, 169px);
    }
}

.first-section #phone {
    position: absolute;
    z-index: 2;
}

@media (min-width: 576px) {
    .first-section #phone {
        left: 25%;
        width: min(17.5214vw, 205px);
    }
}

@media (max-width: 576px) {
    .first-section #phone {
        left: 31%;
        width: min(35.59vw, 205px);
    }
}

@media (min-width: 768px) {
    .first-section .main-top {
        max-width: min(53.1624vw, 622px);
    }
}

@media (max-width: 768px) {
    .first-section .main-top {
        max-width: clamp(305px, 45.573vw, 350px);
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .first-section .main-top .main-btn {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .first-section .main-top__title {
        text-align: start;
    }
}

@media (max-width: 768px) {
    .first-section .main-top p {
        text-align: start;
    }
}

@media (max-width: 768px) {
    .first-section .info-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .first-section .info-list {
        margin-top: -30%;
    }
}

.first-section--mode {
    overflow: initial;
}

@media (min-width: 576px) {
    .first-section--mode {
        padding: clamp(60px, 11.9658vw, 140px) 0px clamp(60px, 14.7009vw, 172px);
    }
}

@media (max-width: 576px) {
    .first-section--mode {
        padding: 20px 0px;
    }
}

.first-section--mode .first-section__box {
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .first-section--mode .first-section__image {
        top: -20%;
    }
}

@media (max-width: 1024px) and (min-width: 576px) {
    .first-section--mode .first-section__image {
        bottom: 0px;
        transform: translateY(30%);
    }
}

@media (min-width: 576px) {
    .first-section--mode .first-section__image {
        width: min(46.5812vw, 545px);
        right: 3%;
    }
}

@media (min-width: 600px) and (max-width: 675px) {
    .first-section--mode .first-section__image {
        right: -2%;
    }
}

@media (min-width: 576px) and (max-width: 600px) {
    .first-section--mode .first-section__image {
        right: -4%;
    }
}

@media (max-width: 576px) {
    .first-section--mode .first-section__image {
        width: 100%;
    }

    .first-section--mode .first-section__image img, .first-section--mode .first-section__image picture {
        right: initial;
    }
}

@media (max-width: 576px) {
    .first-section--mode .first-section__inner {
        gap: 30px;
    }
}

.first-section--mode .main-top {
    max-width: 100%;
}

.first-section--about {
    overflow: initial;
}

@media (min-width: 576px) {
    .first-section--about {
        padding: clamp(60px, 12.1368vw, 142px) 0px clamp(80px, 26.5812vw, 311px);
    }
}

@media (max-width: 576px) {
    .first-section--about {
        padding: 20px 0px 10px;
    }
}

.first-section--about .first-section__box {
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .first-section--about .first-section__image {
        top: -20%;
    }
}

@media (max-width: 1024px) and (min-width: 576px) {
    .first-section--about .first-section__image {
        bottom: 0px;
        transform: translateY(30%);
    }
}

@media (min-width: 576px) {
    .first-section--about .first-section__image {
        width: min(46.5812vw, 545px);
        right: 3%;
    }
}

@media (min-width: 600px) and (max-width: 675px) {
    .first-section--about .first-section__image {
        right: -2%;
    }
}

@media (min-width: 576px) and (max-width: 600px) {
    .first-section--about .first-section__image {
        right: -4%;
    }
}

@media (max-width: 576px) {
    .first-section--about .first-section__image {
        width: 100%;
    }

    .first-section--about .first-section__image img, .first-section--about .first-section__image picture {
        right: initial;
    }
}

@media (max-width: 576px) {
    .first-section--about .first-section__inner {
        gap: 30px;
    }
}

.first-section--about .main-top {
    max-width: 100%;
}

.about-section {
    padding: clamp(60px, 8.2051vw, 96px) 0px clamp(60px, 10.6838vw, 125px);
}

.about-section__box {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .about-section__box p {
        max-width: min(51.0256vw, 597px);
    }
}

@media (min-width: 768px) {
    .about-section__box {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-section__box {
        gap: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

.about-section__image {
    flex-shrink: 0;
}

.about-section__image img, .about-section__image picture {
    width: 100%;
    height: 100%;
    position: relative;
}

@media (min-width: 1241px) {
    .about-section__image img, .about-section__image picture {
        right: -2%;
    }
}

@media (max-width: 1240px) and (min-width: 1024px) {
    .about-section__image img, .about-section__image picture {
        right: -3%;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .about-section__image img, .about-section__image picture {
        right: -3.5%;
    }
}

@media (min-width: 768px) {
    .about-section__image {
        margin-left: -95px;
        width: min(48.4615vw, 567px);
    }
}

@media (max-width: 768px) {
    .about-section__image {
        width: min(73.828vw, 567px);
    }
}

@media (max-width: 576px) {
    .about-section__image {
        margin-top: 20px;
    }
}

.about-section .main-top {
    gap: 24px;
    max-width: 675px;
}

.about-section .main-top .main-btn {
    height: 60px;
}

@media (max-width: 768px) {
    .about-section .main-top__title {
        margin-bottom: 6px;
    }
}

.about-section__wrapp {
    display: grid;
    gap: 40px clamp(25px, 3.5043vw, 41px);
    -webkit-box-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .about-section__wrapp {
        grid-template-columns: 1fr minmax(clamp(350px, 36.7521vw, 430px), 0.62fr);
    }
}

@media (max-width: 768px) {
    .about-section__wrapp {
        grid-template-columns: 100%;
    }
}

.about-section__inner {
    display: grid;
    grid-template-columns: 1fr clamp(500px, 46.9231vw, 549px);
    gap: clamp(35px, 6.4957vw, 76px);
}

.about-section--mode {
    padding: 0px 0px 57px;
}

.about-section--mode .main-top {
    gap: clamp(25px, 4.0171vw, 47px);
}

.about-section--mode .main-top p {
    line-height: 193.75%;
}

.about-section--mode .main-top__title {
    line-height: 114.286%;
}

@media (max-width: 768px) {
    .about-section--mode .main-top {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .about-section--traders {
        padding: 0px 0px clamp(80px, 16.0684vw, 188px);
    }
}

@media (max-width: 1024px) and (min-width: 576px) {
    .about-section--traders {
        padding: 0px 0px clamp(40px, 5.859vw, 60px);
    }
}

@media (max-width: 576px) {
    .about-section--traders {
        padding: 0px 0px 10px;
    }
}

.about-section--traders .main-top {
    gap: clamp(24px, 2.5641vw, 30px);
}

.about-section--traders .main-top p {
    line-height: 193.75%;
}

.about-section--traders .main-top__title {
    line-height: 114.286%;
}

@media (max-width: 1024px) {
    .about-section--traders .main-top {
        max-width: 100%;
    }
}

@media (max-width: 1240px) and (min-width: 1024px) {
    .about-section--traders .about-section__inner {
        gap: 20px;
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 1024px) {
    .about-section--traders .about-section__inner {
        grid-template-columns: 100%;
    }
}

.about-section--traders .about-section__image {
    display: flex;
    position: relative;
}

.about-section--traders .about-section__image img, .about-section--traders .about-section__image picture {
    width: 100%;
    height: auto;
}

@media (max-width: 1240px) {
    .about-section--traders .about-section__image {
        margin: 0px;
    }

    .about-section--traders .about-section__image img, .about-section--traders .about-section__image picture {
        left: 0px;
        right: initial;
    }
}

@media (min-width: 1024px) {
    .about-section--traders .about-section__image {
        justify-self: end;
        bottom: -44px;
        width: min(48.4615vw, 567px);
        height: fit-content;
    }
}

@media (max-width: 1024px) {
    .about-section--traders .about-section__image {
        -webkit-box-ordinal-group: 3;
        order: 2;
        justify-self: center;
    }
}

@media (max-width: 1024px) and (min-width: 576px) {
    .about-section--traders .about-section__image {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .about-section--traders .about-section__image {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .about-section--referral {
        padding: 0px 0px clamp(70px, 7.6923vw, 90px);
    }
}

@media (max-width: 1024px) {
    .about-section--referral {
        padding: 0px 0px clamp(50px, 7.6923vw, 90px);
    }
}

.about-section--referral .main-top {
    gap: clamp(24px, 2.5641vw, 30px);
}

.about-section--referral .main-top p {
    line-height: 193.75%;
}

.about-section--referral .main-top__title {
    line-height: 114.286%;
}

@media (max-width: 1024px) {
    .about-section--referral .main-top {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .about-section--referral .about-section__inner {
        grid-template-columns: auto clamp(500px, 47.097vw, 584px);
        gap: clamp(40px, 8.79vw, 109px);
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .about-section--referral .about-section__inner {
        gap: 40px;
        grid-template-columns: 0.8fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-section--referral .about-section__inner {
        grid-template-columns: 100%;
    }

    .about-section--referral .about-section__inner .main-top {
        order: -1;
    }
}

.about-section--community {
    padding: 0px 0px 80px;
}

@media (max-width: 576px) {
    .about-section--community {
        margin-top: -30px;
    }
}

.about-section--community .main-top {
    gap: clamp(24px, 2.5641vw, 30px);
}

.about-section--community .main-top p {
    line-height: 193.75%;
}

.about-section--community .main-top__title {
    line-height: 114.286%;
}

@media (max-width: 768px) {
    .about-section--community .main-top {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-section--community .main-top__btns {
        width: 100%;
    }

    .about-section--community .main-top__btns .main-btn {
        width: 100%;
    }
}

@media (max-width: 414px) {
    .about-section--community .main-top__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .about-section--community .about-section__inner {
        grid-template-columns: 1fr min(45.2991vw, 530px);
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .about-section--community .about-section__inner {
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 768px) {
    .about-section--community .about-section__inner {
        grid-template-columns: 100%;
    }
}

.about-section--community .about-section__image {
    justify-self: center;
    position: relative;
    bottom: 30px;
}

@media (min-width: 1241px) {
    .about-section--community .about-section__image {
        display: flex;
        left: 25px;
        width: min(45.2991vw, 530px);
    }
}

@media (max-width: 1240px) {
    .about-section--community .about-section__image img, .about-section--community .about-section__image picture {
        height: auto;
    }
}

@media (max-width: 1024px) {
    .about-section--community .about-section__image {
        margin: 0px;
        width: 100%;
    }

    .about-section--community .about-section__image img, .about-section--community .about-section__image picture {
        height: auto;
        right: initial;
    }
}

@media (max-width: 768px) {
    .about-section--community .about-section__image {
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        bottom: 0px;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .about-section--community .about-section__image {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .about-section--community .about-section__image {
        width: 100%;
    }
}

.faq-section {
    padding-bottom: clamp(80px, 17.265vw, 202px);
}

.faq-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(40px, 6.3248vw, 74px);
}

@media (max-width: 768px) {
    .faq-section__title {
        align-self: center;
    }
}

.faq-section--mode {
    padding: clamp(25px, 4.7009vw, 55px) 0px clamp(40px, 5.1282vw, 60px);
}

.faq-section--about {
    padding: 0px 0px clamp(60px, 17.7778vw, 208px);
    overflow: hidden;
}

.faq-section--about .faq-section__box {
    gap: clamp(40px, 4.2735vw, 50px);
}

@media (max-width: 1024px) {
    .faq-section--about .faq-section__title {
        text-align: center;
    }
}

.info-section {
    padding-bottom: clamp(60px, 9.4017vw, 110px);
}

.info-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(40px, 5.0427vw, 59px);
}

.info-section__inner {
    display: grid;
    grid-template-columns: min(51.0256vw, 597px) auto;
    -webkit-box-align: center;
    align-items: center;
    gap: 25px;
}

@media (max-width: 768px) {
    .info-section__inner {
        grid-template-columns: 100%;
    }
}

.info-section__content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(22px, 2.735vw, 22px);
}

.info-section__image {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .info-section__image {
        -webkit-box-pack: end;
        justify-content: flex-end;
        padding-bottom: 75px;
    }
}

@media (max-width: 768px) {
    .info-section__image {
        -webkit-box-pack: center;
        justify-content: center;
        max-width: 80%;
        justify-self: center;
    }
}

.info-section .video-list {
    margin-bottom: clamp(10px, 1.8803vw, 22px);
}

.info-section .main-top {
    gap: 23px;
}

.info-section .main-top .main-btn {
    margin-top: 6px;
    height: 60px;
}

@media (min-width: 768px) {
    .info-section .main-top .main-btn {
        max-width: 279px;
        width: 100%;
    }
}

.info-section .main-top--mode {
    gap: 19px;
}

.info-section--mode {
    padding-bottom: clamp(20px, 2.5641vw, 30px);
}

.info-section--mode .info-section__box {
    gap: 28px;
}

@media (min-width: 768px) {
    .info-section--mode .info-section__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px clamp(30px, 5.5556vw, 65px);
    }
}

@media (max-width: 768px) {
    .info-section--mode .info-section__inner {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .info-section--mode .info-section__title {
        align-self: center;
    }
}

.info-section--ceo {
    padding-bottom: clamp(60px, 10.5983vw, 124px);
}

.info-section--about {
    padding-bottom: clamp(60px, 13.2479vw, 155px);
}

.info-section--about .info-section__content {
    gap: clamp(30px, 3.8462vw, 45px);
}

.earn-section {
    position: relative;
}

.earn-section__box {
    position: relative;
    width: 100%;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 30px 20px;
    z-index: 1;
}

.earn-section__box::before {
    top: 0px;
    z-index: -1;
    content: "";
    position: absolute;
    height: 100%;
    border-radius: 41px;
    background: linear-gradient(rgba(35, 100, 249, 0) 0%, rgb(35, 100, 249) 100%);
}

@media (min-width: 1441px) {
    .earn-section__box::before {
        left: calc(clamp(60px, 8.667vw, 130px) * -1);
        right: calc(clamp(60px, 8.667vw, 130px) * -1);
    }
}

@media (max-width: 1440px) and (min-width: 1241px) {
    .earn-section__box::before {
        left: -20px;
        right: -20px;
    }
}

@media (max-width: 1240px) {
    .earn-section__box::before {
        right: 0px;
        left: 0px;
    }
}

@media (min-width: 1441px) {
    .earn-section__box {
        padding: 73px 0px 71px;
    }
}

@media (max-width: 1440px) and (min-width: 1241px) {
    .earn-section__box {
        padding: 73px 20px 71px;
    }
}

@media (max-width: 1240px) and (min-width: 768px) {
    .earn-section__box {
        padding: clamp(53px, 6.2393vw, 73px) clamp(20px, 3.4188vw, 40px) clamp(51px, 6.0684vw, 71px);
    }
}

@media (max-width: 768px) {
    .earn-section__box {
        padding: clamp(33px, 6.2393vw, 73px) clamp(15px, 3.4188vw, 40px) 0px;
    }
}

@media (max-width: 576px) and (min-width: 414px) {
    .earn-section__box .info-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) and (max-width: 414px) {
    .earn-section__box .info-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .earn-section__box .info-list__item {
        width: 100%;
    }
}

@media (max-width: 576px) and (min-width: 414px) {
    .earn-section__box .info-list__item:last-child {
        grid-column: 1 / 3;
    }

    .earn-section__box .info-list__item:last-child .info-list__card {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.earn-section__wrapp {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 23px;
}

@media (min-width: 768px) {
    .earn-section__wrapp {
        max-width: clamp(400px, 49.0598vw, 574px);
    }
}

.earn-section__image {
    width: min(42.847vw, 617px);
    overflow: hidden;
}

@media (min-width: 768px) {
    .earn-section__image {
        position: absolute;
        bottom: 0px;
    }
}

@media (min-width: 1441px) {
    .earn-section__image {
        right: -7%;
    }
}

@media (max-width: 1440px) and (min-width: 1241px) {
    .earn-section__image {
        right: -2%;
    }
}

@media (max-width: 1240px) and (min-width: 768px) {
    .earn-section__image {
        right: 0px;
    }
}

@media (max-width: 768px) {
    .earn-section__image {
        position: relative;
        display: flex;
        align-self: center;
        min-width: 300px;
    }
}

.earn-section #mobile {
    position: absolute;
    z-index: 2;
}

@media (min-width: 1300px) {
    .earn-section #mobile {
        left: 22.5%;
    }
}

@media (min-width: 1240px) and (max-width: 1300px) {
    .earn-section #mobile {
        left: 18%;
    }
}

@media (max-width: 1240px) {
    .earn-section #mobile {
        left: 17%;
    }
}

@media (min-width: 768px) {
    .earn-section #mobile {
        width: min(28.205vw, 330px);
    }
}

@media (max-width: 768px) {
    .earn-section #mobile {
        left: 16.5%;
        width: clamp(200px, 28.125vw, 216px);
    }
}

.earn-section__icons {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 18px;
}

@media (max-width: 768px) {
    .earn-section__icons {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.earn-section__link {
    transition: all 0.3s ease 0s;
}

.earn-section__link:hover {
    transform: scale(1.05);
}

.earn-section--about {
    overflow: hidden;
    padding-bottom: clamp(40px, 11.2821vw, 132px);
}

.earn-section--about .earn-section__wrapp {
    gap: clamp(25px, 3.8462vw, 45px);
}

@media (min-width: 768px) {
    .earn-section--about .earn-section__wrapp {
        max-width: clamp(450px, 50vw, 585px);
    }
}

@media (min-width: 768px) {
    .earn-section--about .earn-section__box {
        padding: clamp(80px, 12.0513vw, 141px) clamp(20px, 3.4188vw, 40px);
    }
}

.earn-section--about .earn-section__box::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1429' height='608' fill='none'%3E%3Crect width='1429' height='608' fill='url(%23paint0_linear_137_943)' rx='21'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_137_943' x1='714.5' x2='714.5' y1='0' y2='608' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23121834' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23121834'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--br-c);
    border-radius: 21px;
}

@media (max-width: 768px) {
    .earn-section--about .earn-section__box {
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .earn-section--about .earn-section__image {
        width: 100%;
        right: -31%;
    }
}

@media (max-width: 768px) {
    .earn-section--about .earn-section__image {
        overflow: initial;
    }
}

.earn-section--about .earn-section__image img, .earn-section--about .earn-section__image picture {
    position: relative;
    bottom: -10px;
    width: min(48.2906vw, 565px);
}

@media (max-width: 768px) {
    .earn-section--about .earn-section__image img, .earn-section--about .earn-section__image picture {
        right: calc(clamp(180px, 28.646vw, 220px) * -1);
    }
}

@media (min-width: 1441px) {
    .earn-section--about #mobile {
        left: 40.5%;
    }
}

@media (max-width: 1440px) and (min-width: 1241px) {
    .earn-section--about #mobile {
        left: 38.5%;
    }
}

@media (min-width: 1241px) {
    .earn-section--about #mobile {
        bottom: -28%;
    }
}

@media (max-width: 1240px) and (min-width: 768px) {
    .earn-section--about #mobile {
        left: 37%;
        bottom: -30%;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .earn-section--about #mobile {
        bottom: -35%;
    }
}

@media (max-width: 576px) and (min-width: 500px) {
    .earn-section--about #mobile {
        bottom: -55%;
    }
}

@media (max-width: 414px) {
    .earn-section--about #mobile {
        bottom: -105%;
    }
}

.plan-section {
    padding-bottom: clamp(80px, 11.5385vw, 135px);
}

.plan-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(40px, 5.812vw, 68px);
}

@media (max-width: 768px) {
    .plan-section__title {
        align-self: center;
    }
}

.strategy-section {
    padding-bottom: clamp(60px, 8.6325vw, 101px);
}

.strategy-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(30px, 3.3333vw, 39px);
}

@media (max-width: 768px) {
    .strategy-section__title {
        text-align: center;
        align-self: center;
    }
}

.strategy-section__list {
    display: grid;
}

@media (min-width: 1024px) {
    .strategy-section__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .strategy-section__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .strategy-section__list {
        grid-template-columns: 100%;
    }
}

@media (min-width: 576px) {
    .strategy-section__list {
        gap: clamp(15px, 1.7094vw, 20px);
    }
}

@media (max-width: 576px) {
    .strategy-section__list {
        gap: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .strategy-section__list-item:last-child {
        grid-column: 1 / 3;
    }
}

.strategy-section--mode {
    overflow: hidden;
    padding-bottom: clamp(60px, 8.8889vw, 104px);
}

.calc-section {
    padding-bottom: clamp(60px, 12.3932vw, 145px);
}

.calc-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(24px, 2.8205vw, 33px);
}

@media (max-width: 768px) {
    .calc-section__title {
        align-self: center;
        text-align: center;
    }
}

.team-section {
    padding-bottom: clamp(60px, 7.1795vw, 84px);
}

.team-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(30px, 3.0769vw, 36px);
}

@media (max-width: 768px) {
    .team-section__title {
        align-self: center;
    }
}

.contact-section {
    padding: clamp(20px, 3.8462vw, 45px) 0px clamp(20px, 3.4188vw, 40px);
}

.contact-section .main-top {
    gap: 18px;
}

.contact-section .main-top p {
    color: rgba(var(--cl-f), 1);
    font-size: clamp(18px, 1.7949vw, 21px);
    font-weight: 700;
    line-height: 100%;
}

.contact-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(30px, 4.4444vw, 52px);
}

.contact-section__inner {
    display: grid;
    gap: clamp(15px, 1.6239vw, 19px);
}

@media (min-width: 768px) {
    .contact-section__inner {
        grid-template-columns: clamp(290px, 28.547vw, 334px) 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section__inner {
        grid-template-columns: 100%;
    }
}

.contact-section__wrapp {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 10px;
    border-radius: 21px;
    border: 1px solid var(--br-c);
    background: var(--gr-a);
    padding: 33px;
}

.contact-section__wrapp .main-top {
    gap: 0px;
}

.contact-section__wrapp .main-top__title {
    font-size: clamp(18px, 1.7949vw, 21px);
    font-style: normal;
    font-weight: 700;
    line-height: 142.857%;
}

.contact-section__wrapp .main-top p {
    line-height: 142.857%;
}

.contact-section__wrapp p {
    line-height: 212.5%;
}

@media (max-width: 768px) {
    .contact-section__wrapp p {
        text-align: center;
    }

    .contact-section__wrapp p br {
        display: none;
    }
}

.terms-section {
    padding: clamp(25px, 3.8462vw, 45px) 0px clamp(27px, 3.5897vw, 42px);
}

.terms-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(40px, 6.3248vw, 74px);
}

.terms-section .main-top {
    gap: 18px;
}

.terms-section .main-top p {
    line-height: 193.75%;
}

.map-section {
    padding-bottom: clamp(60px, 9.4017vw, 110px);
}

.map-section__box {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: clamp(40px, 7.8632vw, 92px);
}

.map-section .main-top {
    text-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.map-section .main-top p {
    max-width: 375px;
}

.modal-section {
    padding: clamp(30px, 7.692vw, 90px) 0px clamp(40px, 7.692vw, 90px);
}

.modal-section .modal {
    transform: scale(1);
    display: flex;
}

.header {
    padding: 22px 0px;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 90;
    background-color: rgba(var(--bg-b), 1);
}

.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    -webkit-box-align: center;
    align-items: center;
}

@media (min-width: 1241px) {
    .header__inner {
        gap: clamp(20px, 4.7009vw, 55px);
    }
}

@media (max-width: 1240px) and (min-width: 1024px) {
    .header__inner {
        gap: 20px;
    }

    .header__inner .main-nav {
        justify-self: center;
    }
}

@media (max-width: 1024px) {
    .header__inner {
        gap: clamp(15px, 1.953vw, 20px);
    }

    .header__inner .main-nav {
        display: none;
    }
}

@media (max-width: 414px) {
    .header__inner .logo {
        width: 139px;
    }
}

.header__btns {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.header__btns .main-btn {
    padding: 10px;
}

@media (min-width: 768px) {
    .header__btns .main-btn {
        min-width: 164px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .header__btns .main-btn {
        min-width: clamp(125px, 21.354vw, 164px);
        height: clamp(45px, 6.51vw, 50px);
        font-size: clamp(12px, 1.823vw, 14px);
    }
}

@media (max-width: 1024px) {
    .header__btns {
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
}

@media (min-width: 768px) {
    .header__btns {
        gap: clamp(20px, 2.3077vw, 27px);
    }
}

@media (max-width: 768px) {
    .header__btns {
        gap: clamp(15px, 2.604vw, 20px);
    }
}

.header__btn {
    color: rgba(var(--cl-a), 1);
    font-weight: 700;
    transition: all 0.3s ease 0s;
}

.header__btn:hover {
    color: rgba(var(--cl-f), 1);
}

@media (min-width: 768px) {
    .header__btn {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header__btn {
        font-size: clamp(12px, 1.823vw, 14px);
    }
}

@media (max-width: 390px) {
    .header__btn {
        display: none;
    }
}

.burger {
    display: none;
}

@media (max-width: 1024px) {
    .burger {
        display: flex;
        --burger-width: 24px;
        --burger-height: 16px;
        --burger-line-height: 2px;
        --border-radius: 0;
        position: relative;
        border: none;
        padding: 0px;
        width: var(--burger-width);
        height: var(--burger-height);
        flex-shrink: 0;
        cursor: pointer;
        border-radius: 50%;
    }

    .burger::before, .burger::after {
        content: "";
        position: absolute;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        height: var(--burger-line-height);
        background: rgba(var(--cl-a), 1);
        transform-origin: left top;
        transition: transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, opacity 0.5s ease 0s, -webkit-transform 0.3s ease-in-out 0s;
        border-radius: var(--border-radius);
    }

    .burger::before {
        top: 0px;
    }

    .burger::after {
        bottom: 0px;
    }

    .burger__line {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        height: var(--burger-line-height);
        background: rgba(var(--cl-a), 1);
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease-in-out 0s, opacity 0.5s ease 0s, -webkit-transform 0.3s ease-in-out 0s;
        border-radius: var(--border-radius);
    }

    .burger.active::before {
        top: 50%;
        transform: rotate(45deg) translate(-50%, -50%);
        transition: transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    }

    .burger.active::after {
        top: 50%;
        transform: rotate(-45deg) translate(-50%, -50%);
        transition: transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    }

    .burger.active .burger__line {
        transform: scale(0);
        transition: transform 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    }
}

.footer {
    padding: clamp(30px, 4.2735vw, 50px) 0px clamp(25px, 5.4701vw, 64px);
}

.footer__inner {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 15px 20px;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

.footer__col {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer__col {
        min-height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer__col .social {
        -webkit-box-align: start;
        align-items: flex-start;
        padding-top: calc(10px + clamp(24px, 2.3077vw, 27px));
    }
}

.footer__col-top {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 15px;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.footer__col-top p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(14px, 1.3675vw, 16px);
    color: rgba(var(--cl-a), 0.75);
    max-width: 202px;
    line-height: 100%;
}

.footer .logo img, .footer .logo picture {
    width: clamp(128px, 12.1368vw, 142px);
    height: clamp(24px, 2.3077vw, 27px);
}

.mobile {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 0px;
    height: 0px;
    background-color: rgba(var(--bg-d), 1);
    z-index: 40;
    overflow: hidden;
    border-bottom-left-radius: 100%;
    transition: all 0.3s ease 0s;
    max-width: 450px;
}

.mobile.active {
    display: flex;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 0px;
}

.mobile.active .mobile__menu-list, .mobile.active .mobile__menu-top {
    opacity: 1;
    visibility: visible;
}

.mobile__menu {
    padding: 25px clamp(20px, 4.167vw, 32px) clamp(32px, 4.883vw, 50px);
    width: 100%;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 30px;
    -webkit-box-align: center;
    align-items: center;
}

.mobile__menu .mobile__menu-list, .mobile__menu .mobile__menu-top {
    opacity: 0;
}

.mobile__menu-btns {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    align-items: center;
}

.mobile__menu-top {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    transition: all 0.3s ease 0s;
}

.mobile__menu .header__btn:hover {
    color: rgba(var(--cl-a), 1);
    transform: scale(1.1);
    transition: all 0.3s ease 0s;
}

.mobile__menu-list {
    margin-top: 20px;
    transition: all 0.3s ease 0s;
    width: 100%;
    padding: 30px 20px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    gap: 15px;
    background-color: rgba(var(--bg-e), 1);
    border-radius: clamp(40px, 13.021vw, 100px);
}

.mobile__menu-list a {
    padding: 20px 30px;
    background-color: transparent;
    border-radius: 100px;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    transition: all 0.3s ease 0s;
    color: rgba(var(--cl-d), 1);
}

.mobile__menu-list a.active, .mobile__menu-list a:hover {
    background: rgba(var(--bg-d), 1);
    color: rgba(var(--cl-e), 1);
}

.mobile__menu-list a.active {
    font-weight: 600;
}

.modal {
    width: 90vw;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    gap: clamp(35px, 5.2137vw, 61px);
}

@media (min-width: 576px) {
    .modal {
        max-width: fit-content;
    }
}

.modal__box {
    width: 100%;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 24px;
    border-radius: 21px;
    z-index: 2;
    padding: 25px 25px 30px;
    position: relative;
    background: rgba(var(--cl-b), 1);
}

@media (min-width: 576px) {
    .modal__box {
        min-width: 447px;
        max-width: fit-content;
    }
}

.modal__box::before {
    pointer-events: none;
    position: absolute;
    content: "";
    z-index: -1;
    inset: 0px;
    border-radius: inherit;
    border: 1px solid var(--br-c);
    background: var(--gr-d);
    backdrop-filter: blur(9.6px);
}

.modal__links {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
}

.modal__link {
    color: rgba(var(--cl-f), 1);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease 0s;
}

.modal__link:hover {
    transform: scale(1.05);
}

.modal__title {
    text-align: center;
    font-size: clamp(36px, 4.7009vw, 55px);
    font-weight: 700;
}

@media (min-width: 576px) {
    .modal__title {
        line-height: 38.182%;
    }
}

.modal .main-form {
    border: none;
    background: initial;
    padding: 0px;
}

.modal .main-form .main-btn {
    margin-top: 7px;
    max-width: 100%;
}

.modal.login .main-form {
    gap: 15px;
    grid-template-columns: 100%;
}

.modal.forgot .main-form {
    gap: 20px;
    grid-template-columns: 100%;
}

.modal.code .main-form {
    gap: 20px;
    grid-template-columns: 100%;
}

.modal.create .modal__box {
    min-width: min(91.016vw, 932px);
}

.modal.create .main-form {
    gap: 20px clamp(20px, 2.2222vw, 26px);
    -webkit-box-align: center;
    align-items: center;
}

@media (max-width: 1024px) and (min-width: 768px) {
    .modal.create .main-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal.create .main-form .main-btn {
    grid-column: initial;
    margin-top: 0px;
    align-self: flex-end;
    height: 52px;
}