@font-face {
    font-family: 'Bounded';
    src: url('../fonts/bounded/Bounded-ExtraLight.woff2') format('woff2'),
        url('../fonts/bounded/Bounded-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bounded';
    src: url('../fonts/bounded/Bounded-Black.woff2') format('woff2'),
        url('../fonts/bounded/Bounded-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

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

@font-face {
    font-family: 'Druk Text Wide Cyr';
    src: url('../fonts/drukwidecur/DrukTextWideCyr-Bold.woff2') format('woff2'),
        url('../fonts/drukwidecur/DrukTextWideCyr-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Pixel-first: sizes aligned to figma @1920 desktop, @440 mobile */
:root {
    --w: 1300px;
    /* container from mock (x3 -> 3834px) */
    --blue: #1B43F3;
    --blue2: #0F3CE6;
    --lime: #C2EE31;
    --txt: #24252B;
    --muted: #6B7280;
    --bd: #E9E9E9;
    --r: 32px;
    --shadow: 0 18px 40px rgba(15, 23, 42, .10);
    --font: "Bounded", sans-serif;
    --titles-font: 'Druk Text Wide Cyr', sans-serif;
    --cash-bg: #1D1E23;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: var(--font);
    color: var(--txt);
    background: #fff;
    -webkit-font-smoothing: antialiased
}

body.cash-page {
    background: var(--cash-bg);
    color: #fff;
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

main {
    overflow: hidden;
}

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

.hub-page .container {
    max-width: 1260px;
}

.img-responsive {
    width: 100%;
    height: auto;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.cash-page .header {
    background: rgba(24, 25, 27, .92);
}

.header .container {
    max-width: 1280px;
}

.header__inner {
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: block;
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    justify-content: end;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0 100px 0 auto;
}

.cash-page .nav {
    margin: 0 50px 0 auto;
}

.nav .btn.btn--primary {
    display: none;
}

.nav__link {
    font-size: 16px;
    color: #24252B;
    position: relative;
    white-space: nowrap;
}

.cash-page .nav__link {
    color: #fff;
}

.nav__link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
    transition: width .15s ease;
}

.cash-page .nav__link:after {
    background: var(--lime);
}

.nav__link:hover:after {
    width: 100%
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.ui-lang {
    position: relative;
    height: 38px;
    padding: 10px;
    border-radius: 19px;
    display: flex;
    background: none;
    border: 0;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s;
    flex-shrink: 0;
}

.ui-lang:hover {
    background: #F3F4F6;
    border-radius: 19px 19px 0 0;
}

.cash-page .ui-lang:hover {
    background: #28282a;
}

.ui-lang .ui-lang__icon {
    width: 30px;
    height: 30px;
    background: url('../images/earth-icon.svg') no-repeat;
}

.cash-page .ui-lang .ui-lang__icon {
    width: 30px;
    height: 30px;
    background: url('../images/cash/earth-icon.svg') no-repeat;
}

.cash-page .ui-lang__label, .cash-page .ui-lang-item {
    color: #fff;
}

.ui-lang .ui-lang__chev {
    width: 18px;
    height: 8px;
    background: url('../images/chevron-down-icon.svg') no-repeat;
    margin-left: -5px;
    transition: all 0.3s;
}

.cash-page .ui-lang .ui-lang__chev {
    background: url('../images/cash/chevron-down-icon.svg') no-repeat;
}

.ui-lang:hover .ui-lang__chev {
    transform: rotate(-180deg);
}

.ui-lang .ui-lang__dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: -31px;
    left: 0;
    background: #F3F4F6;
    transition: opacity .15s ease, visibility .15s ease;
    padding: 6px 0 6px 50px;
    width: 100%;
    border-radius: 0 0 19px 19px;
    text-align: left;
    transition: all .3s;
}

.cash-page .ui-lang .ui-lang__dropdown {
    background: #28282a;
}

.ui-lang:hover .ui-lang__dropdown {
    opacity: 1;
    visibility: visible;
}

.ui-lang .ui-lang__dropdown .ui-lang-item {
    display: block;
}

.ui-switch {
    height: 38px;
    padding: 3px;
    border-radius: 999px;
    background: #EEF2FF;
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.ui-switch__btn {
    border: 0;
    background: transparent;
    border-radius: 999px;
    padding: 0 14px;
    font-size: 13px;
    cursor: pointer;
}

.ui-switch__btn.is-active {
    background: var(--blue);
    color: #fff
}

.text-blue {
    color: var(--blue);
}

.text-lime {
    color: var(--lime);
}

.icon {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
}

.icon.icon-picture {
    width: 25px;
    height: 25px;
    background-image: url('../images/picture-icon.svg');
}

.icon.arrows-icon {
    width: 40px;
    height: 40px;
    background-image: url('../images/hub/arrows-icon.svg');
}

.icon.speaker-icon {
    width: 40px;
    height: 30px;
    background-image: url('../images/hub/speaker-icon.svg');
}

.icon.card-icon {
    width: 40px;
    height: 32px;
    background-image: url('../images/hub/card-icon.svg');
}

.icon.chat-icon {
    width: 40px;
    height: 40px;
    background-image: url('../images/hub/chat-icon.svg');
}

.icon.no-comission-icon {
    width: 70px;
    height: 70px;
    background-image: url('../images/cash/no-comission-icon.svg');
}

.icon.editional-comission-icon {
    width: 70px;
    height: 70px;
    background-image: url('../images/cash/editional-comission-icon.svg');
}

.icon.comission04-icon {
    width: 70px;
    height: 70px;
    background-image: url('../images/cash/04comission-icon.svg');
}

.btn {
    height: 40px;
    padding: 0 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border: 0;
    text-align: center;
    flex-shrink: 0;
    gap: 10px;
    transition: all .15s ease;
    white-space: nowrap;
}

.btn.btn-lg {
    height: 67px;
    font-size: 18px;
    padding: 0 45px;
}

.btn--primary {
    color: #18191B;
    border: 1px solid #E7FF99;
    background: #C2EE31;
    box-shadow: 10px 15px 60px 0 rgba(194, 238, 49, 0.20), 0 0 10px 0 rgba(255, 255, 255, 0.60) inset;
}

.btn--primary:hover {
    border: 1px solid #E7FF99;
    background: #C2EE31;
    box-shadow: 10px 15px 60px 0 rgba(194, 238, 49, 0.40), 0 0 19px 0 rgba(255, 255, 255, 0.70) inset;
}

.btn--primary:active {
    border: 1px solid #E7FF99;
    background: #A5CB2A;
    box-shadow: none;
}

.btn--full {
    width: 100%
}

.btn-outline {
    border: 2px solid;
    background: none;
}

.btn--blue.btn-outline {
    border-color: #1B43F3;
    color: #1B43F3;
}

.btn--blue.btn-outline:hover {
    background: #1B43F3;
    color: #fff;
}

.btn--white.btn-outline {
    border-color: #fff;
    color: #fff;
}

.btn--white.btn-outline:hover {
    background: #fff;
    color: #18191B;
}

.btn.ad-hub-icon {
    padding: 0 23px;
}

.btn .icon {
    flex-shrink: 0;
}

.ui-switch {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    width: 125px;
    height: 40px;
    padding: 0 9px 0 5px;
    border-radius: 20px;
    background: #1B43F3;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.30) inset;
}

.cash-page .ui-switch {
    justify-content: start;
    background: var(--lime);
    color: #24252B;
    padding-left: 24px;
}


.ui-switch::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 32px;
    height: 32px;
    background-image: url('../images/circle-switch-icon.svg');
    background-size: cover;
}

.cash-page .ui-switch::before {
    left: inherit;
    right: 5px;
    background-image: url('../images/cash/circle-switch-icon.svg');
}

.burger {
    display: none;
    width: 33px;
    height: 33px;
    border: 0;
    cursor: pointer;
    background-color: transparent;
    background-image: url('../images/menu-burger.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.cash-page .burger {
    background-image: url('../images/cash/menu-burger.svg');
}

.burger.is-active {
    background-image: url('../images/menu-close.svg');
}

.cash-page .burger.is-active {
    background-image: url('../images/cash/menu-close.svg');
}

/* Mobile nav */
.mnav {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 60;
    display: none;
    flex-direction: column;
    padding: 22px 24px
}

.mnav.is-open {
    display: flex
}

.mnav__top {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mnav__close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: #EEF2FF;
    font-size: 18px;
    cursor: pointer;
}

.mnav__ctrls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 8px
}

.ui-lang--mobile {
    height: 44px
}

.ui-switch--mobile {
    height: 44px
}

/* Hero */
.hero {
    position: relative;
    padding: 62px 0 0;
    background: #fff;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    z-index: 100;
}

.cash-page .hero {
    border-bottom: 1px solid #24252B;
    background: #18191B;
    padding: 86px 0 0;
}

.hero__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero__grid .hero__left {
    position: relative;
    max-width: 750px;
    z-index: 5;
}

/* .hero__grid .button-arrow {
    position: absolute;
    bottom: 140px;
    left: 326px;
    width: 225px;
    height: 88px;
    background-image: url('../images/arrow-1.svg');
    background-repeat: no-repeat;
    background-size: cover;
} */

.hero .btn {
    position: relative;
}

.hero .btn::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 326px;
    width: 225px;
    height: 88px;
    background-image: url('../images/arrow-1.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.cash-page .hero .btn::after {
    display: none;
}

.hero__title {
    font-family: var(--titles-font);
    margin: 0 0 43px;
    font-size: 48px;
    line-height: 61px;
}

.cash-page .hero__title {
    margin: 0 0 24px;
}

.hero__title .with__line {
    position: relative;
}

.hero__title .with__line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -4px;
    width: 468px;
    height: 10px;
    background-image: url('../images/line-1.svg');
}

.cash-page .hero__title .with__line::after {
    width: 197px;
    height: 10px;
    bottom: -12px;
    background-image: url('../images/cash/line.svg');
}

.hero__accent {
    color: var(--blue)
}

.hero__desc {
    margin: 0 0 25px;
    font-size: 30px;
    line-height: 37px;
    color: #24252B;
}

.cash-page .hero__desc {
    color: #fff;
    margin-bottom: 47px;
}

.cash-page .hero__left {
    padding-bottom: 160px;
}

.hero__chips {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px 10px;
    margin-bottom: 61px
}

.cash-page .hero__chips {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 584px;
}

.hero__chips::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 28px;
    height: 22px;
    background: url('../images/check-icon.svg');
}

.cash-page .hero__chips::after {
    display: none;
}

.chip {
    position: relative;
    min-height: 84px;
    font-size: 18px;
    line-height: 27px;
    text-align: left;
    display: inline-flex;
    padding: 15px 20px;
    justify-content: left;
    align-items: center;
    overflow: hidden;
}

.cash-page .chip {
    min-height: 67px;
    padding: 20px 65px;
    border-radius: 20px;
}

.chip .chip__inner {
    position: relative;
    z-index: 3;
}

.chip::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    z-index: 1;
}

.chip::after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    background: url('../images/noise-bg.png');
    border-radius: 18px;
    z-index: 2;
}

.cash-page .chip::after {
    background: #24252B;
}

.chip:nth-child(1)::before {
    background: radial-gradient(ellipse 40% 60% at 100% 55%, var(--blue) 0%, rgba(0, 0, 0, 0) 70%
  ), radial-gradient(ellipse 180% 50% at 100% 100%, var(--blue) 0%, rgba(0, 0, 0, 0) 50%), var(--bd);
}

.cash-page .chip:nth-child(1)::before {
    background: radial-gradient(ellipse 40% 60% at 100% 30%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 0) 70%), radial-gradient(ellipse 180% 50% at 100% 0%, rgba(194, 238, 49, .75) 0%, rgba(194, 238, 49, 0) 55%), linear-gradient(to left, rgba(194, 238, 49, 0) 0%, rgba(194, 238, 49, .22) 55%, rgba(194, 238, 49, 0) 100%);
}

.chip:nth-child(2)::before {
    background: radial-gradient(ellipse 40% 60% at 0% 55%, var(--blue) 0%, rgba(0, 0, 0, 0) 70%), radial-gradient(ellipse 180% 50% at 0% 100%, var(--blue) 0%,rgba(0, 0, 0, 0) 50%),var(--bd);
}

.cash-page .chip:nth-child(2)::before {
    background: radial-gradient(ellipse 40% 60% at 0% 70%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 0) 70%), radial-gradient(ellipse 180% 50% at 0% 100%, rgba(194, 238, 49, .75) 0%, rgba(194, 238, 49, 0) 55%), linear-gradient(to right, rgba(194, 238, 49, 0) 0%, rgba(194, 238, 49, .22) 55%, rgba(194, 238, 49, 0) 100%);
}

.chip:nth-child(3)::before { 
    background: radial-gradient(ellipse 40% 60% at 100% 45%, var(--blue) 0%, rgba(0, 0, 0, 0) 70%), radial-gradient(ellipse 180% 50% at 100% 0%, var(--blue) 0%,rgba(0, 0, 0, 0) 50%),var(--bd);
}

.chip:nth-child(4)::before { 
    background: radial-gradient(ellipse 40% 60% at 0% 45%, var(--blue) 0%, rgba(0, 0, 0, 0) 70%), radial-gradient(ellipse 180% 50% at 0% 0%, var(--blue) 0%,rgba(0, 0, 0, 0) 50%),var(--bd); 
}

.hero__btn {
    width: max-content
}

.hero__art {
    position: relative;
}

.hero__ring {
    position: relative;
    width: 652px;
    height: 652px;
    --orbit-outer: 326px; 
    --orbit-mid: 235px; 
}

.hero__ring,
.hero__ring::before,
.hero__ring::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(to bottom, #D4D4D4 0%, #F5F5F5 100%) border-box;
}

.hero__ring {
    left: -67px;
    top: -155px;
}

.hero__ring::before {
    width: 470px;
    height: 470px;
}

.hero__ring::after {
    width: 300px;
    height: 300px;
}

.hero__ring .hero__badge {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;

    background-repeat: no-repeat;
    background-size: cover;
    z-index: 3;

    --amp: 10deg;
    animation: heroOrbit 4.2s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroOrbit {
    from {
        transform: translate(-50%, -50%) rotate(calc(var(--base) - var(--amp))) translateX(var(--r)) rotate(calc((var(--base) - var(--amp)) * -1));
    }

    to {
        transform: translate(-50%, -50%) rotate(calc(var(--base) + var(--amp))) translateX(var(--r)) rotate(calc((var(--base) + var(--amp)) * -1));
    }
}

.hero__girl {
    position: relative;
    left: 47px;
    bottom: 61px;
    width: 431px;
    height: auto;
    margin-bottom: -62px;
    z-index: 4;
}

.hero__grid-items {
    position: absolute;
    top: -140px;
    right: -500px;
    width: 1412px;
    height: 929px;
    background-image: url('../images/cash/grid.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero__grid-items .hero__lineball {
    position: absolute;
    width: 10px;
    height: 136.5px;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform, opacity;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.hero__grid-items .hero__lineball.lineball-1 {
    left: 350.5px;
    bottom: 257px;
    background-image: url('../images/cash/lineball-top.svg');
    animation: lineUpLoop 4.8s linear infinite;
    animation-delay: -1.1s;
}

.hero__grid-items .hero__lineball.lineball-2 {
    left: 505.5px;
    top: 102px;
    background-image: url('../images/cash/lineball-bottom.svg');
    animation: lineDownLoop 5.6s linear infinite;
    animation-delay: -2.7s;
}

.hero__grid-items .hero__lineball.lineball-3 {
    width: 136.5px;
    height: 10px;
    left: 816.5px;
    top: 228px;
    background-image: url('../images/cash/lineball-left.svg');
    animation: lineLeftLoop 4.4s linear infinite;
    animation-delay: -1.9s;
}

.hero__grid-items .hero__lineball.lineball-4 {
    width: 136.5px;
    height: 10px;
    left: 690.5px;
    bottom: 230px;
    background-image: url('../images/cash/lineball-right.svg');
    animation: lineRightLoop 6.1s linear infinite;
    animation-delay: -3.8s;
}

@keyframes lineUpLoop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    95% {
        transform: translateY(-260px);
        opacity: 0;
    }

    100% {
        transform: translateY(-260px);
        opacity: 0;
    }
}

@keyframes lineDownLoop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    95% {
        transform: translateY(280px);
        opacity: 0;
    }

    100% {
        transform: translateY(280px);
        opacity: 0;
    }
}

@keyframes lineLeftLoop {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    95% {
        transform: translateX(-320px);
        opacity: 0;
    }

    100% {
        transform: translateX(-320px);
        opacity: 0;
    }
}

@keyframes lineRightLoop {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    95% {
        transform: translateX(320px);
        opacity: 0;
    }

    100% {
        transform: translateX(320px);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__grid-items .hero__lineball {
        animation: none;
    }
}

.hero__man {
    position: relative;
    width: 511px;
    height: 792px;
    bottom: 61px;
    margin-bottom: -61px;
}

.hero__badge {
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 3;
}

.hero__ring .hero__badge--meta {
    width: 130px;
    height: 130px;
    background-image: url('../images/meta-circle.png');
    --r: var(--orbit-outer);
    --base: 216deg;
    animation-duration: 4.6s;
}

.hero__ring .hero__badge--moloco {
    width: 139px;
    height: 139px;
    background-image: url('../images/moloco-circle.png');
    --r: var(--orbit-outer);
    --base: 305deg;
    animation-duration: 5.2s;
    animation-delay: -0.8s;
}

.hero__ring .hero__badge--tt {
    width: 96px;
    height: 96px;
    background-image: url('../images/tiktok-circle.png');
    --r: var(--orbit-mid);
    --base: 183deg;
    --amp: 12deg;
    animation-duration: 3.8s;
    animation-delay: -1.3s;
}


.hero__ring .hero__badge--g {
    width: 119px;
    height: 119px;
    background-image: url('../images/google-circle.png');
    --r: var(--orbit-outer);
    --base: 58deg;
    animation-duration: 4.9s;
    animation-delay: -0.4s;
}

/* Sections */
#about {
    margin-top: -45px;
    padding: 108px 0 120px;
}

.swhite {
    position: relative;
    padding: 75px 0;
    background: #fff;
    border-radius: 50px;
    margin: -45px 0 0;
}

.sblue {
    padding: 70px 0 75px;
    background-color: var(--blue);
    background-image: url('../images/grid-bg.svg');
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
}

.sblue>.container {
    position: relative;
    z-index: 1
}

.sblue--cta {
    padding: 44px 0 0
}

.stitle {
    font-family: var(--titles-font);
    margin: 0 0 47px;
    text-align: center;
    font-size: 34px;
    line-height: 43px;
    text-transform: uppercase
}

.stitle--white {
    color: #fff
}

.ssub {
    margin: -41px 0 35px;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
}

/* Cards */
.card {
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    color: var(--txt);
    font-size: 18px;
    line-height: 27px;
    padding: 20px 30px;
}

.card p {
    margin: 0;
    font-size: 18px;
    line-height: 27px;
    color: var(--txt)
}

/* About */
.about {
    display: grid;
    grid-template-columns: 1fr 562px;
    grid-template-rows: auto auto;
    gap: 18px;
    align-items: stretch;
}

.about__wide {
    grid-column: 1/-1
}

.about__col {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.about__note {
    position: relative;
    display: flex;
    align-items: center;
}

.about__note-icon {
    width: 33px;
    height: 80px;
    background: url('../images/exclamation.svg') no-repeat;
    background-size: cover;
    margin-right: 25px;
    flex-shrink: 0;
}

.ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ul li {
    position: relative;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 11px;
    padding-left: 30px;
}

.ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 13px;
    border-radius: 8px;
    background: var(--blue);
}

.ul li:last-child {
    margin-bottom: 0;
}

.ul--light li::before {
    top: 11px;
    left: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

#about .ul {
    margin-top: 10px;
}

/* Types */
.types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.type {
    position: relative;
    border-radius: 20px;
    background: var(--blue);
    padding: 30px 33px;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
}

.type__head h3 {
    font-family: var(--titles-font);
    font-size: 34px;
    line-height: 43px;
    color: var(--lime);
    margin: 0 0 41px;
}

.type .rounded-title {
    display: inline-flex;
    padding: 10px 50px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    border-radius: 20px;
    border: 1px solid #C2EE31;
    margin-bottom: 13px;
}

.type__p {
    margin-bottom: 15px;
}

.type .btn {
    width: 362px;
    margin-top: 34px;
}

.type:nth-child(2) .btn {
    margin-top: 72px;
}

.type .type-icon {
     position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    aspect-ratio: 1 / 1;
}

.type .type-icon.type-icon-1 {
    top: 7.86%;
    right: 7.44%;
    width: clamp(40px, 10.29%, 65px);
    height: auto;
    background-image: url('../images/meta-icon-2.png');
}

.type .type-icon.type-icon-2 {
    top: 38.35%;  
    right: 3.80%; 
    width: clamp(70px, 20.10%, 127px); 
    height: auto;
    background-image: url('../images/facebook-icon.png');
}

.type:nth-child(2) .type-icon.type-icon-1 {
    width: 68px;
    height: 68px;
    background-image: url('../images/facebook-icon-2.png');
}

.type:nth-child(2) .type-icon.type-icon-2 {
    width: 115px;
    height: 115px;
    background-image: url('../images/meta-icon-1.png');
}

#how {
    padding-top: 43px;
    z-index: 2;
}

#how .center {
    margin-top: 71px;
}

/* Steps */
.steps {
    position: relative;
    display: flex;
    gap: 12px;
    padding-top: 63px;
}

.step {
    position: relative;
    flex: 0 0 calc(33.333333% - 6px);
    border-radius: 18px;
    padding: 80px 30px 35px 30px;
    text-align: center
}

.step::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    z-index: 1;
}

.step:nth-child(1)::before {
    background: radial-gradient(ellipse 40% 60% at 0% 55%, var(--blue) 0%, rgba(0, 0, 0, 0) 70%), radial-gradient(ellipse 180% 50% at 0% 100%, var(--blue) 0%, rgba(0, 0, 0, 0) 50%), var(--bd);
}

.step:nth-child(2)::before {
    background: radial-gradient(ellipse 75% 55% at 50% 100%, var(--blue) 0%, rgba(0,0,0,0) 65%), var(--bd);
}

.step:nth-child(3)::before {
    background: radial-gradient(ellipse 40% 60% at 100% 55%, var(--blue) 0%, rgba(0, 0, 0, 0) 70%), radial-gradient(ellipse 180% 50% at 100% 100%, var(--blue) 0%, rgba(0, 0, 0, 0) 50%), var(--bd);
}

.step::after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    background: #F0F0F0;
    border-radius: 18px;
    z-index: 2;
}

.step .step-inner {
    position: relative;
    z-index: 3;
    container-type: inline-size;
    --base: 360;
}

.step:nth-child(1) .step-inner::after,
.step:nth-child(2) .step-inner::after {
    content: '';
    position: absolute;
    z-index: 3;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    width: calc(214 * 100cqw / var(--base));
    height: calc(50 * 100cqw / var(--base));
}

.step:nth-child(1) .step-inner::after {
    top: min(calc(-141 * 100cqw / var(--base)), -120px);
    right: calc(-50% + (46 * 100cqw / var(--base)));

    background-image: url('../images/arrow-3.svg');
}

.step:nth-child(2) .step-inner::after {
    top: min(calc(-118 * 100cqw / var(--base)), -112px);
    right: calc(-50% + (33 * 100cqw / var(--base)));
    background-image: url('../images/arrow-2.svg');
}

.step__num {
    position: absolute;
    top: -123.5px;
    left: 50%;
    width: 104px;
    height: 83px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--lime);
    transform: translateX(-50%);
    font-family: var(--titles-font);
    font-size: 43.289px;
    border: 7px solid #fff;
}

.step__ttl {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 33px;
}

.step__txt {
    font-size: 18px;
    line-height: 27px;
}

.center {
    text-align: center
}

/* Cases slider */
#cases {
    margin-top: -45px;
    padding: 124px 0 129px;
    z-index: 1;
}

.cases__slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.cases__hint {
    margin-top: 56px;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
}

/* CRM slider */
#crm-system {
    position: relative;
    z-index: 3;
}

.crm {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 14px;
    align-items: center
}

.crm__slide img {
    width: 100%;
    height: auto;
    display: block;
    border: 10px solid var(--blue);
    border-radius: 50px;
}

.crm__thumbs {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.crmthumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    cursor: pointer
}

/* .crmthumb.is-active {
    border-color: var(--lime)
} */

/* FAQ */
#faq {
    margin-top: 68px;
}

.faq__item {
    position: relative;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 27px;
}

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

.faq__q {
    position: relative;
    padding: 0 30px 0 98px;
    cursor: pointer
}

.faq__n {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--blue);
}

.faq__t {
    text-align: left;
}

.faq__i {
    position: absolute;
    top: 0;
    right: 0;
    width: 39px;
    height: 31px; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/faq-show.svg');
}

.faq__item.is-open .faq__i {
    background-image: url('../images/faq-close.svg');
}

.faq__a {
    display: none;
}

.faq__a .ansver-title {
    color: var(--blue);
    margin: 20px 0;
}

/* CTA */

.cta-wrapper {
    display: flex;
    position: relative;
    background: var(--blue);
    border-radius: 20px;
    margin-top: 110px;
    color: #fff;
}

.cash-page .cta-wrapper {
    background: var(--cash-bg);
}

.cash-page .cta-wrapper .cta-wrapper-inner {
    display: flex;
    position: relative;
    z-index: 4;
}

.cash-page .cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(ellipse 45% 60% at 0% 100%, rgba(194, 238, 49, .75) 0%, rgba(194, 238, 49, 0) 70%), radial-gradient(ellipse 220% 200% at 50% 50%, rgba(194, 238, 49, .08) 0%, rgba(194, 238, 49, .04) 55%, rgba(194, 238, 49, 0) 100%);
}

.cash-page .cta-wrapper::after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    z-index: 2;
    border-radius: 19px;
    background: var(--cash-bg);
}

.cta-wrapper h2 {
    font-family: var(--titles-font);
    font-size: 48px;
    line-height: 61px;
}

.cta-wrapper p {
    font-size: 30px;
    line-height: 37px;
    margin-top: 20px;
}

.cta-wrapper .btn {
    margin-top: 47px;
}

.cta-manager {
    flex-shrink: 0;
}

.cta-manager img {
    position: relative;
    top: -48px;
    left: 41px;
    margin-bottom: -48px;
}

.cash-page .cta-manager img {
    top: -49px;
}

.cta-inner {
    padding: 68px 42px 54px 54px;
}

.ticker-wrapper {
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: tickerMarquee 14s linear infinite;
}

.cta-wrapper .ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    font-size: 64px;
    line-height: 80px;
    white-space: nowrap;
    flex: 0 0 auto;
    padding-right: 35px;
}

@keyframes tickerMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.circle {
    display: block;
    width: 30px;
    height: 31px;
    background: url('../images/circle.png') no-repeat;
    background-size: cover;
    flex-shrink: 0;
}

/* Footer */
.footer {
    margin-top: 25px;
    padding: 0 0 63px;
    font-size: 16px;
    line-height: 20px;
}

.footer__brand {
    max-width: 95px;
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    padding: 35px 0 0;
    padding-top: 35px;
    border-top: 4px solid var(--blue);
}

.footer-second-row {
    display: flex;
    justify-content: space-between;
}

.footer__brand {
    margin-bottom: 37px;

}

.footer-contacts {
    display: flex;
    align-items: center;
    line-height: 24px;
}

.footer-contacts a {
    text-decoration: underline;
}

.footer-contacts .qr {
    margin-right: 18px;
}

.footer-right {
    max-width: 470px;
    text-align: right;
    line-height: 24px;
}

.footer-social {
    margin-bottom: 40px;
}

.footer-social ul {
    list-style: none;
    display: flex;
    justify-content: end;
    gap: 15px;
}

.footer-social ul li a {
    display: flex;
    width: 64px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: var(--blue);
    border-radius: 17px;
} 

.cash-page .footer-social ul li a {
    background: var(--lime);
}

.telegram-icon {
    display: block;
    width: 33px;
    height: 27px;
    background-image: url('../images/tg-icon.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.cash-page .telegram-icon {
    background-image: url('../images/cash/tg-icon.svg');
}

.instagram-icon {
    display: block;
    width: 27px;
    height: 27px;
    background-image: url('../images/ig-icon.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.in-icon {
    display: block;
    width: 27px;
    height: 27px;
    background-image: url('../images/in-icon.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.cash-page .instagram-icon {
    background-image: url('../images/cash/ig-icon.svg');
}

/*Carousel*/
.owl-nav {
    text-align: center;
    margin-top: 10px;
}

.owl-nav > button {
    position: absolute;
    top: 50%;
    width: 56px;
    height: 46px;
    border: 0;
    transform: translateY(-50%);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s;
}

.owl-nav > button span {
    display: none;
}

.owl-nav > button:hover {
    opacity: 0.8;
}

.owl-nav > button.owl-prev {
    left: -28px;
    background-image: url('../images/nav-prev.svg');
}

.cash-page .owl-nav > button.owl-prev {
    background-image: url('../images/cash/nav-prev.svg');
}

.owl-nav > button.owl-next {
    right: -28px;
    background-image: url('../images/nav-next.svg');
}

.cash-page  .owl-nav > button.owl-next {
    background-image: url('../images/cash/nav-next.svg');
}

.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
    cursor: default !important;
    opacity: 0.2;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.owl-carousel.height-100 .owl-stage {
    display: flex;
    flex-wrap: nowrap;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel.height-100 .owl-item {
    float: none;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

.hub-screen {
    background-image: url('../images/hub/grid-bg.svg');
    background-position: center;
    background-size: cover;
    padding: 40px 0 115px;
}

.hub-screen h1 {
    font-family: var(--titles-font);
    font-size: 48px;
    line-height: 61px;
    text-align: center;
    margin-bottom: 62px;
}

.hub-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hub-items .hub-item {
    position: relative;
    display: flex;
    width: calc(50% - 10px);
    max-width: 610px;
    flex-shrink: 0;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    padding: 53px 0 63px 39px;
    transition: all .3s;
}

.hub-items .hub-item:hover {
    transform: scale(1.01);
}

.hub-items .hub-item.agency {
    border: 1px solid #0095FF;
    background: radial-gradient(124.36% 71.92% at 99.17% 97.88%, #06F 0%, rgba(0, 102, 255, 0.00) 100%), #1B43F3;
}

.hub-items .hub-item.cash {
    border: 1px solid #D7FF52;
    background: radial-gradient(105.69% 63.66% at 99.17% 97.88%, #2F3139 0%, rgba(47, 49, 57, 0.00) 100%), #1D1E23;
}

.hub-items .hub-item .hub-item-info {
    max-width: 57%;
}

.hub-items .hub-item .hub-item-title {
    font-family: var(--titles-font);
    font-size: 34px;
    line-height: 43px; 
    margin-bottom: 22px;
}

.hub-items .hub-item .btn {
    position: relative;
    margin-top: 78px;
}

.hub-items .hub-item .btn::after {
    content: '';
    position: absolute;
    top: -93px;
    right: 0;
    width: 65px;
    height: 66px;
    background: url('../images/hub/arrow.svg');
    background-size: cover;
}

.en .hub-items .hub-item .btn::after {
    top: -75px;
}

.hub-items .hub-item .hub-item-image {
    position: absolute; 
    flex-shrink: 0;
}

.hub-items .hub-item.agency .hub-item-image {
    right: -6px;
    bottom: -1px;
}

.hub-items .hub-item.cash .hub-item-image {
    right: -17px;
    bottom: 0;
}

.hub-items .hub-item.agency img {
    width: 243px;
    height: 460px;
}

.hub-items .hub-item.cash img {
    width: 272px;
    height: 427px;
}

.blue-gradient-section {
    position: relative;
    padding: 38px 0 63px;
    background: radial-gradient(48.97% 41.7% at 0% 100%, #0095FF 0%, rgba(0, 149, 255, 0.00) 100%), radial-gradient(51.81% 47.83% at 100% 9.8%, #0095FF 0%, rgba(0, 149, 255, 0.00) 100%), #1B43F3;
}

.blue-gradient-section.with-trophy .container::before, .blue-gradient-section.with-trophy .container::after {
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: 313px;
    height: 324px;
}

.blue-gradient-section.with-trophy .container::before {
    left: -338px;
    bottom: -4px;
    background-image: url('../images/hub/trophy-1.png');
}

.blue-gradient-section.with-trophy .container::after {
    right: -338px;
    top: 3px;
    background-image: url('../images/hub/trophy-2.png');
}

.tariffs-items {
    display: flex;
    gap: 25px;
}

.tariffs-items .tatiff-item {
    position: relative;
    width: calc(50% - 12.5px);
    min-height: 230px;
    display: flex;
    font-size: 30px;
    line-height: 37px;
}

.tariffs-items .tatiff-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.tariffs-items .tatiff-item:first-child::before {
    background: radial-gradient(ellipse 40% 60% at 0% 30%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 0) 70%), radial-gradient(ellipse 180% 50% at 0% 0%, rgba(194, 238, 49, .75) 0%, rgba(194, 238, 49, 0) 55%), radial-gradient(ellipse 85% 70% at 50% 100%, rgba(194, 238, 49, .45) 0%, rgba(194, 238, 49, .35) 12%, rgba(194, 238, 49, 0) 45%);
}

.tariffs-items .tatiff-item:last-child::before {
    background: radial-gradient(ellipse 40% 60% at 0% 70%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 0) 70%), radial-gradient(ellipse 180% 50% at 0% 100%, rgba(194, 238, 49, .75) 0%, rgba(194, 238, 49, 0) 55%), radial-gradient(ellipse 85% 70% at 50% 0%, rgba(194, 238, 49, .45) 0%, rgba(194, 238, 49, .35) 12%, rgba(194, 238, 49, 0) 45%);
}

.tariffs-items .tatiff-item::after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    z-index: 2;
    border-radius: 19px;
    background: radial-gradient(65% 87.16% at 5.49% 100%, rgba(194, 238, 49, 0.20) 0%, rgba(194, 238, 49, 0.00) 100%), #18191B;
}

.tariffs-items .tatiff-item .tariff-item-inner {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tariffs-items .tatiff-item .tariff-icon {
    position: relative;
    left: -24px;
    background-repeat: no-repeat;
    background-size: cover;
    flex-shrink: 0;
}

.tariffs-items .tatiff-item .tariff-icon.tariff-1 {
    width: 288px;
    height: 192px;
    background-image: url('../images/cash/2percents.png');
}

.tariffs-items .tatiff-item .tariff-icon.tariff-2 {
    width: 337px;
    height: 185px;
    background-image: url('../images/cash/1_5percents.png');
}

.ssub.second-ssub {
    margin: 57px 0 46px;
}

.aditional-comission-items {
    display: flex;
    justify-content: space-between;
}

.aditional-comission-items .aditional-comission-item .icon {
    margin-bottom: 25px;
}

.aditional-comission-items .aditional-comission-item .title {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 10px;
    font-weight: 400;
}

.aditional-comission-items .aditional-comission-item .desc {
    font-size: 18px;
    line-height: 27px;
}

.cash-page  .cabinet-section {
    background: #18191B;
    padding-bottom: 65px;
}

.cash-page .faq-section {
    background: #18191B;
    margin-top: 0 !important;
    padding-bottom: 25px;
}

.cash-page .faq__n {
    color: var(--lime);
}

.cash-page .faq__a .ansver-title {
  color: var(--lime);
}

@media (min-width: 1921px) {
    .blue-gradient-section.with-trophy .container::before,
    .blue-gradient-section.with-trophy .container::after {
        display: none;
    }

    .blue-gradient-section.with-trophy::before,
    .blue-gradient-section.with-trophy::after {
        content: '';
        position: absolute;
        background-size: cover;
        background-repeat: no-repeat;
        width: 313px;
        height: 324px;
    }

    .blue-gradient-section.with-trophy::before {
        left: 0;
        bottom: 59px;
        background-image: url('../images/hub/trophy-1.png');
    }

    .blue-gradient-section.with-trophy::after {
        right: 0;
        top: 41px;
        background-image: url('../images/hub/trophy-2.png');
    }
}

.advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px 22px;
}

.advantages .advantages-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 25px;
    padding: 63px 24px;
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    font-size: 30px;
    line-height: 40.5px;
} 

.advantages .advantages-item.small {
    width: calc((100% - 22px) * (525 / 1211));
}

.advantages .advantages-item.large {
    width: calc((100% - 22px) * (686 / 1211));
}

.advantages .advantages-item .text-blue {
    font-family: var(--titles-font);
    font-size: 34px;
}

.advantages .advantages-item .advantages-item-icon {
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.advantages .advantages-item .icon-users-params {
    width: 75px;
    height: 60px;
    background-image: url('../images/hub/users-params-icon.svg');
}

.advantages .advantages-item .icon-users {
    width: 75px;
    height: 60px;
    background-image: url('../images/hub/users-icon.svg');
}

.advantages .advantages-item .icon-lightning {
    width: 51px;
    height: 60px;
    background-image: url('../images/hub/lightning-icon.svg');
}

.advantages .advantages-item .icon-users-money {
    width: 59px;
    height: 60px;
    background-image: url('../images/hub/user-money-icon.svg');
}

.our-events {
    padding: 87px 0 117px;
}

.gallery {
    display: flex;
    gap: 25.82px;
    align-items: stretch;
}

.gallery img {
    width: 100%;
    height: 100%;
}

.gallery .gallery-block {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    gap: 25px 23.76px;
}

.gallery .gallery-cell {
    flex: 1 1 0;
    min-width: 0;
    min-height: 0;
}

.gallery .gallery-block--1 .g1-left,
.gallery .gallery-block--1 .g1-right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 25px 23.76px;
}

.gallery .gallery-block--1 .g1-top {
    flex: 1 1 0;
    flex-direction: column;
    min-height: 0;
    display: flex;
    gap: 25px 23.76px;
}

.gallery .gallery-block--1 .g1-top .gallery-cell {
    flex: 1 1 0;
    min-height: 0;
}

.gallery .gallery-block--1 .g1-left>.gallery-cell {
    height: 100%;
}

.gallery .gallery-block--1 .g1-right>.gallery-cell {
    height: 100%;
}

.gallery .gallery-block--2 {
    flex-direction: column;
}

.gallery .gallery-block--2 .g2-top,
.gallery .gallery-block--2 .g2-bottom {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    gap: 25px 23.76px;
}

.gallery .gallery-block--2 .g2-top .gallery-cell,
.gallery .gallery-block--2 .g2-bottom .gallery-cell {
    height: 100%;
}

.our-partners .ssub {
    color: #fff;
}

.our-partners-list {
    display: flex;
    justify-content: center;
    gap: 23px;
}

.our-partners-list .our-partner-item {
    width: calc(50% - 11.5px);
    max-width: 553px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    padding: 32px 30px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
}

.our-partners-list .our-partner-item img {
    margin: 0 auto 26px;
}

.our-partners-list .our-partner-item p.text-blue {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 5px;
}

.our-partners-list .our-partner-item .btn {
    margin-top: 26px;
    padding: 0 20px;
}

.adhunt-community {
    padding: 68px 0 0;
}

.adhunt-community-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.adhunt-community .phone {
    width: 414px;
    height: 483px;
    background: url('../images/hub/phone.png');
    background-size: cover;
    flex-shrink: 0;
}

.hub-page .footer, .cash-page .footer {
    margin-top: 0;
}

.cash-page .footer {
    background: #18191B;
}

.community-list {
    text-align: right;
    display: flex;
    align-items: center;
    padding-left: 90px;
}

.community-list .community-item {
    width: 100%;
    position: relative;
    min-height: 56px;
    font-size: 22px;
    line-height: 26px;
    text-align: left;
    display: inline-flex;
    padding: 10px 30px;
    justify-content: left;
    align-items: center;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 17px;
    color: var(--blue);
}

.community-list .community-item:last-child {
    margin-bottom: 0;
}

.community-list .community-item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    z-index: 1;
    background: radial-gradient(ellipse 40% 60% at 0% 55%, var(--blue) 0%, rgba(0, 0, 0, 0) 70%), radial-gradient(ellipse 180% 50% at 0% 100%, var(--blue) 0%,rgba(0, 0, 0, 0) 50%),var(--bd);
}

.community-list .community-item::after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    background: url('../images/noise-bg.png');
    border-radius: 18px;
    z-index: 2;
}

.community-list .community-item-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 3;
}

.community-list .community-item .icon {
    flex-shrink: 0;
}

.sdarkgray {
    position: relative;
    padding: 60px 0 70px;
}

.sdarkgray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 85% 70% at 50% 0%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 1) 12%, rgba(194, 238, 49, 0) 45%), radial-gradient(ellipse 85% 70% at 50% 100%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 1) 12%, rgba(194, 238, 49, 0) 45%);
}

.sdarkgray::after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    background: var(--cash-bg);
    z-index: 2;
}

.sdarkgray > * {
    position: relative;
    z-index: 3;
}

.advantages-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 16px;
}

.advantages-items .advantages-item {
    position: relative;
    flex: 0 0 calc((100% - 32px) / 3);
    align-content: center;
    min-width: 0;
    min-height: 175px;
    font-size: 30px;
    line-height: 37px; 
    border-radius: 20px;
}

.advantages-items .advantages-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.advantages-items .advantages-item::after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
    background: #18191B;
    z-index: 2;
    border-radius: 19px;
}

.advantages-items .advantages-item:first-child::before, .advantages-items .advantages-item:nth-child(3)::before  {
    background: radial-gradient(ellipse 40% 60% at 0% 30%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 0) 70%), radial-gradient(ellipse 180% 50% at 0% 0%, rgba(194, 238, 49, .75) 0%, rgba(194, 238, 49, 0) 55%);
}

.advantages-items .advantages-item:nth-child(2)::before {
    background: radial-gradient(ellipse 85% 70% at 50% 0%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 1) 12%, rgba(194, 238, 49, 0) 45%), radial-gradient(ellipse 85% 70% at 50% 100%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 1) 12%, rgba(194, 238, 49, 0) 45%);
}

.advantages-items .advantages-item:last-child {
    flex-basis: 100%;
}

.advantages-items .advantages-item:last-child::before {
    background: radial-gradient(ellipse 40% 60% at 100% 30%, rgba(194, 238, 49, 1) 0%, rgba(194, 238, 49, 0) 70%), radial-gradient(ellipse 180% 50% at 100% 0%, rgba(194, 238, 49, .75) 0%, rgba(194, 238, 49, 0) 55%), linear-gradient(to left, rgba(194, 238, 49, 0) 0%, rgba(194, 238, 49, .22) 55%, rgba(194, 238, 49, 0) 100%);
}

.advantages-items .advantages-item .advantages-item-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 20px 30px;
    display: flex;
    align-items: center;
}

.advantages-items .advantages-item:last-child .advantages-item-inner {
    justify-content: end;
    padding: 0 110px 0 0;
}

.advantages-items .advantages-item:last-child .advantages-item-inner:before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    width: 559px;
    height: 192px;
    background: url('../images/cash/dollars.png');
    border-radius: 0 0 0 20px;
}

.advantages-items .advantages-item:last-child .advantages-item-inner:after {
    content: '';
    position: absolute;
    width: 305px;
    height: 100%;
    right: 0px;
    bottom: 0px;
    border-radius: 0 20px 20px 0;
    background-image: url('../images/cash/lime-shadow.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.dark-rounded {
    background: #18191B;
    padding: 60px 0 90px;
    border-radius: 50px;
}

.cards-items {
    display: flex;
    flex-wrap: wrap;
    gap: 105px 40px;
}

.cards-items .card-item {
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 0;
}

.cards-items .card-item:nth-child(odd){
  flex: 0 0 calc((100% - 40px) * 0.45);
}

.cards-items .card-item:nth-child(even){
  flex: 0 0 calc((100% - 40px) * 0.55);
}

.cards-items .card-item .title {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 10px;
    font-weight: 400;
}

.cards-items .card-item .description {
    font-size: 18px;
    line-height: 27px;
}

.cards-items .card-item-icon {
    width: 94px;
    height: 94px;
    background-repeat: no-repeat;
    background-size: cover;
    flex-shrink: 0;
}

.cards-items .card-item-icon.icon-1 {
    background-image: url('../images/cash/card-protection-icon.svg');
}

.cards-items .card-item-icon.icon-2 {
    background-image: url('../images/cash/card-topup-icon.svg');
}

.cards-items .card-item-icon.icon-3 {
    background-image: url('../images/cash/statistic-icon.svg');
}

.cards-items .card-item-icon.icon-4 {
    background-image: url('../images/cash/fast-platform-icon.svg');
}

.social-section {
    position: relative;
    overflow: hidden;
    padding: 0 0 44px;
}

.social-list-wrapper {
    width: 100%;
    display: grid;
    gap: 22px;
}

.social-list-wrapper::after, .social-list-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    width: 260px;
    height: 100%;
}

.social-list-wrapper::before {
    left: 0;
    background: linear-gradient(270deg, rgba(29, 30, 35, 0.00) 0%, #1D1E23 100%);
    z-index: 4;
}

.social-list-wrapper::after {
    right: 0;
    background: linear-gradient(-270deg, rgba(29, 30, 35, 0.00) 0%, #1D1E23 100%);
    z-index: 4;
}

.social-row {
    width: 100%;
    overflow: hidden;
}

.social-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.social-row--left .social-track {
    animation: socialsLeft 28s linear infinite;
}

.social-row--right .social-track {
    animation: socialsRight 30s linear infinite;
}

.social-section .ssub {
    margin-bottom: 126px;
}

.socials-list {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    flex: 0 0 auto;
    padding-right: 22px;
}

.socials-list:last-child {
    margin-bottom: 0;
}

.socials-list img {
    display: block;
    flex: 0 0 auto;
}

@keyframes socialsLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes socialsRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-track {
        animation: none;
    }
}

.dark-rounded.tariffs-section {
    border-radius: 50px 50px 0 0;
}

.cash-page .footer__grid {
    border-top: 4px solid var(--lime);
}

.scroll-anim {
    transition: all 0.9s cubic-bezier(.25,.1,.25,1);
    will-change: transform, opacity;
}

.scroll-anim.in-view {
    opacity: 1;
    transform: none;
    transition-delay: var(--delay, 0s);
}

.scroll-left {
    opacity: 0;
    transform: translateX(-120px);
}

.scroll-right {
    opacity: 0;
    transform: translateX(120px);
}

.scroll-top {
    transform: translateY(-60px);
}

.scroll-bottom {
    opacity: 1;
    transform: translateY(160px); 
    transition: transform 0.8s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.scroll-zoom {
    transform: scale(0.85);
}

.scroll-blur {
    opacity: 0;
    filter: blur(20px);
}

.scroll-anim.in-view.scroll-blur {
    opacity: 1;
    filter: blur(0);
}

@keyframes driftGreen {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(40px, 20px); }
    50%  { transform: translate(20px, 50px); }
    75%  { transform: translate(-20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes driftBlue {
    0%   { transform: translate(0, 0); }
    30%  { transform: translate(-30px, -10px); }
    60%  { transform: translate(-10px, -40px); }
    100% { transform: translate(0, 0); }
}

@media (max-width: 1399px) {
    .nav {
        gap: 15px;
        margin: 0 30px 0 auto;
    }

    .hero {
        padding: 62px 0 40px;
    }

    .hero__art {
        bottom: -40px;
    }

    .hero__grid .hero__left {
        max-width: calc(100% - 431px);
    }

    .cash-page .hero__grid .hero__left {
        max-width: calc(100% - 515px);
    }

    .chip {
        font-size: 15px;
        line-height: 24px;
        padding: 15px 17px;
    }
}

@media (max-width: 1200px) {
    .hub-items {
        flex-wrap: wrap;
    }

    .hub-items .hub-item {
        width: 610px;
    }

    .adhunt-community .phone {
        width: 343px;
        height: 400px;
    }

    .community-list .community-item {
        font-size: 22px;
        line-height: 30px;
        min-height: 70px;
    }

    .cash-page .cta-manager img {
        left: -20px;
    }

    .cash-page .cta-inner {
        padding: 27px 26px 54px 0px;
    }

    .aditional-comission-items {
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .aditional-comission-items .aditional-comission-item {
        width: calc(50% - 20px);
    }

    .tariffs-items {
        flex-wrap: wrap;
    }

    .tariffs-items .tatiff-item {
        width: 100%;
    }

    .advantages-items .advantages-item .text {
        position: relative;
        z-index: 4;
    }

    .cash-page .hero__chips {
        max-width: 416px;
    }

    .cash-page .chip {
        padding: 20px;
    }

    .cash-page .nav {
        margin: 0 auto;
    }
}

/* Responsive (mobile frame in figma is 440) */
@media (max-width: 1024px) {
    body.lock {
        overflow: hidden;
    }

    body.lock header {
        background: #fff;
    }

    .hero__grid .hero__left {
        max-width: 100%;
    }

    .header__inner {
        height: 75px;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background: #fff; 
    }

    .hub-page .header-nav {
        position: relative;
        display: flex;
        top: 0;
        width: inherit;
        height: inherit;
    }

    .header-nav.is-active {
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        align-content: flex-start;
        padding: 20px 0 20px;
    }

    .header-nav .nav {
        width: 100%;
        order: 2;
        margin: 0;
        gap: 50px;
        flex-direction: column;
        margin-top: 67px;
    }

    .nav .btn.btn--primary {
        display: inline-flex;
        margin: 0 auto;
        width: 100%;
    }

    .header-nav .nav {
        gap: 30px;
        margin-top: 50px;
    }

    .nav .btn.btn--primary {
        width: calc(100% - 40px);
    }

    .nav__link {
        font-size: 25px;
        line-height: 30px;
    }

    .nav__link::after {
        display: none;
    }

    .header-nav .header__actions {
        width: 100%;
        order: 1;
        padding-left: 10px;
        justify-content: center;
    }

    .hub-page .header__actions {
        width: inherit;
        padding-left: 0;
        justify-content: end;
    }

    .header-nav .header__actions .btn {
        height: 32px;
        font-size: 14px;
    }

    .ui-switch {
        width: 125px;
        height: 32px;
        font-size: 14px;
        width: 110px;
    }

    .ui-switch::before {
        left: 3px;
        top: 3px;
        width: 28px;
        height: 28px;
    }

    .ui-lang .ui-lang__dropdown {
        bottom: -29px;
        padding: 6px 0 6px 36px;
    }

    .ui-lang {
        position: relative;
        height: 32px;
        padding: 8px;
        font-size: 14px;
        gap: 6px;
    }

    .ui-lang .ui-lang__icon {
        width: 22px;
        height: 22px;
        background: url('../images/earth-icon.svg') no-repeat;
        background-size: auto;
        background-size: cover;
    }

    .ui-lang .ui-lang__chev {
        width: 14px;
        height: 7px;
        margin-left: 0;
        background-size: cover;
    }

    .burger {
        display: block
    }

    .brand img {
        width: 80px;
        height: auto;
    }

    .hero {
        padding: 8px 0 0;
    }

    .cash-page .hero__grid .hero__left {
        max-width: 100%;
    }

    .hero__title {
        margin: 0 0 13px;
        font-size: 30px;
        line-height: 38px;
    }

    .hero__title .with__line::after {
        bottom: -5px;
        width: 293px;
        height: 6px;
        background-size: cover;
    }

    .hero__desc {
        margin: 0 0 11px;
        font-size: 20px;
        line-height: 25px;
    }

    .hero__chips {
        gap: 11px;
        margin-bottom: 21px;
    }

    .chip {
        min-height: 65px;
        font-size: 14px;
        line-height: 27px;
        padding: 7px 10px;
        line-height: 16.8px;
    }

    .hero__chips::after {
        width: 18px;
        height: 14px;
        background-size: cover;
    }

    .hero__grid .button-arrow, .hero .btn::after {
        display: none;
    }

    .hero .btn {
        display: flex;
        margin: 0 auto;
        max-width: 378px;
        width: 100%;
        padding: 0 15px;
    }

    .hero__right {
        width: 100%;
        margin: 0 auto;
    }

    .hero__girl {
        left: 50%;
        width: 233px;
        margin: 62px 0 -62px 0;
        transform: translateX(-53%);
    }

    .hero__ring {
        width: 352px;
        height: 352px;
         --orbit-outer: 176px;
        --orbit-mid: 127px;
    }

    .hero__ring {
        left: -5px;
        top: -130px;
    }

    .hero__ring::before {
        width: 254px;
        height: 254px;
    }

    .hero__ring::after {
        width: 162px;
        height: 162px;
    }

    .hero__ring .hero__badge--meta {
        width: 70px;
        height: 70px;
    }

    .hero__ring .hero__badge--tt {
        width: 51px;
        height: 51px;
    }

    .hero__ring .hero__badge--moloco {
        width: 75px;
        height: 75px;
    }

    .hero__ring .hero__badge--g {
        width: 65px;
        height: 65px;
    }

    .stitle {
        margin: 0 0 25px;
        font-size: 24px;
        line-height: 30px;
        letter-spacing: -0.8px;
    }

    #cabinets .stitle {
        letter-spacing: -2px;
    }

    #about {
        margin-top: -45px;
        padding: 79px 0 105px;
    }

    .card {
        font-size: 14px;
        line-height: 21px;
        padding: 20px 15px;
    }

    .card p {
        font-size: 14px;
        line-height: 21px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 10px;
        grid-template-areas:
            "wide"
            "list"
            "img"
            "note";
    }

    .about__col {
        gap: 10px;
    }

    .ul li {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 23px;
    }

    .ul li::before {
        top: 3px;
    }

    .about__note-icon {
        margin-right: 15px;
    }

    .about__wide {
        grid-area: wide;
    }

    .about>img {
        grid-area: img;
    }

    .about__col {
        display: contents;
    }

    .about__col .card:not(.about__note) {
        grid-area: list;
    }

    .about__note {
        grid-area: note;
    }

    .swhite {
        padding: 42px 0;
    }

    .types {
        display: flex;
        flex-wrap: wrap;
    }

    .type {
        width: 100%;
        padding: 20px 25px 18px;
        font-size: 14px;
        line-height: 21px;
    }

    .type__head h3 {
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 19px;
    }

    .type .rounded-title {
        font-size: 14px;
        line-height: 21px;
        border-radius: 15px;
    }

    .ul--light li {
        padding-left: 22px;
        margin-bottom: 0;
    }

    .ul--light li::before {
        top: 9px;
        left: 8px;
        width: 3px;
        height: 3px;
    }

    .type .btn {
        width: 310px;
        margin-top: 19px;
    }

    .type:nth-child(2) .btn {
        margin-top: 32px;
    }

    .type .type-icon.type-icon-2 {
        top: 284px;
        right: 0;
        width: 70px;
        height: 70px;
    }

    .type .type-icon.type-icon-1 {
        top: 60px;
        right: 33px;
        width: 44px;
        height: 44px;
    }

    .type:nth-child(2) .type-icon.type-icon-1 {
        width: 42px;
        height: 42px;
    }

    .type:nth-child(2) .type-icon.type-icon-2 {
        width: 71px;
        height: 71px;
    }

    #how {
        padding-top: 0;
        margin-top: -18px;
    }

    .ssub {
        margin: -20px 0 25px;
        font-size: 14px;
        line-height: 21px;
    }

    .steps {
        flex-wrap: wrap;
        gap: 21px;
        padding-top: 0;
    }

    .step {
        flex: 0 0 100%;
        border-radius: 18px;
        padding: 60px 27px 25px 30px;
        margin-top: 34px;
    }

    .step:nth-child(1) .step-inner::after, .step:nth-child(2) .step-inner::after {
        display: none;
    }

    .step__num {
        top: -95px;
        left: 50%;
        width: 78px;
        height: 62px;
        font-size: 30px;
        border: 4px solid #fff;
    }

    .step__ttl {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 7px;
    }

    .step__txt {
        font-size: 14px;
        line-height: 21px;
    }

    #how .center {
        margin-top: 38px;
    }

    #how .btn.btn-lg {
        height: 67px;
        font-size: 18px;
        padding: 0 25px;
    }

     #cases {
        padding: 86px 0 81px;
    }

    .owl-nav>button {
        width: 40px;
        height: 33px;
    }

    .owl-nav > button.owl-prev {
        left: 0;
    }

    .owl-nav > button.owl-next {
        right: 0;
    }

    .cases .cases__slide {
        padding: 0 20px;
    }

    .cases__hint {
        margin-top: 47px;
        text-align: center;
        font-size: 14px;
        line-height: 21px;
    }

    .crm__slide img {
        border: 8px solid var(--blue);
        border-radius: 20px;
    }

    .crm .crm__slide {
        padding: 0 20px;
    }

    .crmthumb {
        border-radius: 10px;
    }

    #faq {
        margin-top: 22px;
    }

    .faq__item {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 21px;
    }

    .faq__i {
        width: 29px;
        height: 23px;
    }

    .faq__n {
        margin-right: 20px;
    }

    .faq__q {
        padding: 0 30px 0 40px;
    }

    .cta-wrapper {
        position: relative;
        margin: 45px auto 0;
        max-width: 370px;
        min-height: 283px;
    }

    .cta-wrapper h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .cta-wrapper p {
        font-size: 13px;
        line-height: 16px;
        margin-top: 7px;
    }

    .cta-inner {
        position: relative;
        padding: 25px 7px 0 138px;
        z-index: 2; 
    }

    .cta-manager {
        position: absolute;
        top: -14px;
        left: -20px;
        flex-shrink: 0;
        margin-bottom: -14px;
        overflow: hidden;
        flex-shrink: 0;
        border-radius: 0 0 0 51px;
    }

    .cta-manager img {
        top: 0;
        left: 0;
        margin-bottom: 0;
        width: 182px;
    }

    .ticker-wrapper {
        bottom: 2px;
    }

    .cta-wrapper .ticker {
        bottom: 17px;
        gap: 20px;
        font-size: 30px;
        line-height: 47px;
    }

    .circle {
        width: 16px;
        height: 17px;
    }
    
    .cta-wrapper .btn {
        width: 190px;
        height: 40px;
        margin-top: 13px;
        padding: 12px;
        font-size: 11px;
        border-radius: 11px;
    }

    .footer {
        margin-top: 0;
        font-size: 13px;
        line-height: 20px;
        padding-bottom: 40px;
    }

    .footer__grid {
        flex-wrap: wrap;
        padding: 23px 0 0;
        border-top: 2px solid var(--blue);
    }

    .footer-social ul {
        gap: 10px;
    }

    .footer-social ul li a {
        width: 40px;
        height: 32px;
        border-radius: 11px;
    }

    .telegram-icon {
        width: 20px;
        height: 17px;
    }

    .instagram-icon {
        width: 17px;
        height: 17px;
    }

    .in-icon {
        width: 17px;
        height: 17px;
    }

    .footer-second-row {
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-second-row .footer-left {
        width: 100%;
    }
    
    .footer-second-row .footer-right {
        margin-top: 15px;
        text-align: center;
    }

    .footer-contacts .qr {
        margin: 0 0 10px 0;
    }

    .footer-contacts {
        width: 100%;
        flex-direction: column;
    }

    .hub-screen h1 {
        font-size: 34px;
        line-height: 43px;
        margin-bottom: 23px;
    }

    .hub-items .hub-item {
        width: 100%;
        font-size: 14px;
        line-height: 21px;
        padding: 48px 0 32px 20px;
    }

    .hub-screen {
        padding: 12px 0 70px;
    }

    .hub-items .hub-item .hub-item-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 11px;
    }

    .hub-items .hub-item .btn {
        position: relative;
        margin-top: 60px;
        height: 54px;
        font-size: 12px;
        padding: 0 40px;
        border-radius: 17px;
        z-index: 4;
    }

    .hub-items .hub-item .btn::after {
        top: -62px;
        right: 20px;
        width: 55px;
        height: 55px;
        z-index: 4;
    }

    .hub-items .hub-item.agency img {
        width: 173px;
        height: 327px;
    }

    .hub-items .hub-item.cash img {
        width: 195px;
        height: 307px;
    }

    .advantages {
        gap: 15px;
    }

    .advantages .advantages-item.small,
    .advantages .advantages-item.large {
        width: 100%;
    }

    .advantages .advantages-item {
        min-height: 120px;
        padding: 20px 24px;
        font-size: 20px;
        line-height: 25px;
    }

    .advantages .advantages-item .text-blue {
        font-size: 24px;
    }

    .blue-gradient-section {
        padding: 34px 0 47px;
    }

    .advantages .advantages-item .icon-users-params {
        width: 55px;
        height: 44px;
    }

    .advantages .advantages-item .icon-users {
        width: 55px;
        height: 44px;
    }

    .advantages .advantages-item .icon-lightning {
        width: 45px;
        height: 53px;
    }

    .advantages .advantages-item .icon-users-money {
        width: 49px;
        height: 50px;
    }
    
    .blue-gradient-section.with-trophy {
        padding-bottom: 215px;
    }

    .blue-gradient-section.with-trophy .container::before,
    .blue-gradient-section.with-trophy .container::after {
        width: 175px;
        height: 181px;
    }

    .blue-gradient-section.with-trophy .container::before {
        left: -14px;
        bottom: -4px;
        transform: rotate(-9deg);
    }

    .blue-gradient-section.with-trophy .container::before {
        left: -14px;
        bottom: -202px;
        transform: rotate(-9deg);
    }

    .blue-gradient-section.with-trophy .container::after {
        right: -14px;
        top: inherit;
        bottom: -202px;
        transform: rotate(9deg);
    }

    .our-events {
        padding: 44px 0 48px;
    }

    .gallery {
        flex-wrap: wrap;
        gap: 13.36px;
    }

    .gallery .gallery-block {
        flex: 1 1 100%;
        width: 100%;
        gap: 12.93px 14.66px;
    }

    .gallery .gallery-block--1 .g1-left,
    .gallery .gallery-block--1 .g1-right,
    .gallery .gallery-block--1 .g1-top,
    .gallery .gallery-block--2 .g2-top, 
    .gallery .gallery-block--2 .g2-bottom {
        gap: 12.93px 14.66px;
    }

    .our-partners-list .our-partner-item {
        width: 100%;
        padding: 21px 23px 18px;
        font-size: 14px;
        line-height: 21px;
    }

    .our-partners-list {
        gap: 15px;
        flex-wrap: wrap;
    }

    .our-partners-list .our-partner-item img {
        margin-bottom: 16px;
    }

    .our-partners-list .our-partner-item:first-child img {
        width: 135px;
    }

    .our-partners-list .our-partner-item:last-child img {
        width: 90px;
    }

    .our-partners-list .our-partner-item p.text-blue {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 3px;
    }

    .our-partners-list .our-partner-item .btn {
        margin-top: 16px;
        padding: 0 20px;
        width: 100%;
        border-radius: 13px;
        height: 41px;
        font-size: 14px;
    }

    .adhunt-community {
        padding: 46px 0 31px;
    }

    .adhunt-community-inner {
        padding: 0;
        flex-wrap: wrap;
    }

    .adhunt-community .phone {
        width: 320px;
        height: 372px;
        margin: 0 auto;
    }

    .community-list {
        text-align: center;
        padding-left: 0;
    }

    .community-list .community-item {
        font-size: 14px;
        line-height: 21px;
        min-height: 61px;
    }

    .en .hub-items .hub-item .btn::after {
        top: -62px;
    }

    .icon.arrows-icon {
        width: 20px;
        height: 20px;
    }

    .icon.speaker-icon {
        width: 20px;
        height: 15px;
    }

    .icon.card-icon {
        width: 20px;
        height: 16px;
    }

    .icon.chat-icon {
        width: 20px;
        height: 20px;
    }

    .cash-page .hero {
        padding: 33px 0 0;
    }

    .cash-page .hero__title {
        margin-bottom: 19px;
    }

    .cash-page .hero__title .with__line::after {
        width: 128px;
        height: 6px;
        bottom: -7px;
    }

    .cash-page .hero__desc {
        color: #fff;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 21px;
    }

    .cash-page .hero__chips {
        margin-bottom: 46px;
        gap: 13px;
        max-width: 368px;
    }

    .hero__man {
        width: 293px;
        height: 455px;
        bottom: 61px;
        margin: 0 auto -21px;
    }

    .cash-page .hero__left {
        padding-bottom: 59px;
    }

    .hero__grid-items {
        bottom: -8px;
        left: calc(50% - 175px);
        width: 1007px;
        height: 771px;
        background-image: url('../images/cash/grid.svg');
        transform: translateX(-50%);
        top: inherit;
        right: inherit;
    }

    .hero__grid-items .hero__lineball.lineball-1 {
        left: 470px;
        bottom: 144px;
    }

    .hero__grid-items .hero__lineball.lineball-2 {
        left: 581px;
        top: 200px;
    }

    .hero__grid-items .hero__lineball.lineball-3 {
        left: 802.5px;
        top: 271px;
    }

    .hero__grid-items .hero__lineball.lineball-4 {
        left: 690.5px;
        bottom: 160px;
    }

    .sdarkgray {
        padding: 44px 0 68px;
    }

    .advantages-items {
        gap: 15px;
    }

    .advantages-items .advantages-item {
        flex: 0 0 100%;
        min-height: 155px;
        font-size: 24px;
        line-height: 30px;
    }

    .advantages-items .advantages-item:nth-child(2) br {
        display: none;
    }

    .advantages-items .advantages-item .advantages-item-inner {
        padding: 20px 50px;
    }

    .advantages-items .advantages-item:last-child .advantages-item-inner {
        justify-content: start;
        padding: 20px 70px 20px 50px;
    }

    .advantages-items .advantages-item:last-child .advantages-item-inner::before {
        top: 0;
        left: inherit;
        right: 0;
        width: 221px;
        height: 155px;
        background: url('../images/cash/dollars-mobile.png');
        border-radius: 0 0 20px 0;
    }

    .advantages-items .advantages-item:last-child .advantages-item-inner::after {
        width: 192px;
    }

    .cash-page .header-nav, body.cash-page.lock header {
        background: #18191B;
    }

    .cash-page .ui-lang .ui-lang__icon {
        width: 22px;
        height: 22px;
        background-size: cover;
    }

    .cash-page .ui-lang .ui-lang__chev {
        background-size: cover;
    }

    .dark-rounded {
        padding: 44px 0 67px;
    }

    .cards-items {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }

    .cards-items .card-item:nth-child(2n+1),
    .cards-items .card-item:nth-child(2n) {
        flex: 0 0 100%;
    }

    .cards-items .card-item {
        gap: 15px;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .cards-items .card-item-icon {
        width: 70px;
        height: 70px;
    }

    .cards-items .card-item .title {
        font-size: 25px;
        line-height: 20px;
    }

    .cards-items .card-item .description {
        font-size: 14px;
        line-height: 21px;
    }

    .social-section {
        padding: 0 0 40px;
    }

    .social-section .ssub {
        margin-bottom: 78px;
    }

    .socials-list img {
        width: auto;
        height: 138px;
    }

    .socials-list {
        gap: 33px;
        margin-bottom: 52px;
    }

    .social-list-wrapper::after,
    .social-list-wrapper::before {
        width: 178px;
    }

    .tariffs-items {
        gap: 35px;
        flex-wrap: wrap;
        padding-top: 35px;
    }

    .tariffs-items .tatiff-item {
        width: 100%;
        font-size: 20px;
        line-height: 25px;
        flex-wrap: wrap;
        min-height: 180px;
    }

    .tariffs-items .tatiff-item::after {
        background: radial-gradient(35% 45% at 50% 22%, rgba(194, 238, 49, 0.20) 0%, rgba(194, 238, 49, 0.00) 100%), #18191B;
    }

    .tariffs-items .tatiff-item .text {
        width: 100%;
        flex-shrink: 0;
        text-align: center;
    }

    .tariffs-items .tatiff-item .tariff-item-inner {
        width: 100%;
        gap: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tariffs-items .tatiff-item .tariff-icon {
        top: -63px;
        left: 0;
        margin-bottom: -90px;
    }

    .tariffs-items .tatiff-item .tariff-icon.tariff-1 {
        width: 216px;
        height: 144px;
    }

    .tariffs-items .tatiff-item .tariff-icon.tariff-2 {
        width: 263px;
        height: 144px;
    }

    .ssub.second-ssub {
        margin: 53px 0 38px;
    }

    .aditional-comission-items {
        flex-wrap: wrap;
        gap: 25px;
    }

    .aditional-comission-items .aditional-comission-item {
        text-align: center;
        width: 100%;
    }

    .aditional-comission-items .aditional-comission-item .icon {
        margin: 0 auto 25px;
    }

    .aditional-comission-items .aditional-comission-item .title {
        font-size: 20px;
        line-height: 25px;
    }

    .aditional-comission-items .aditional-comission-item .desc {
        font-size: 14px;
        line-height: 21px;
    }

    .dark-rounded.tariffs-section {
        padding-bottom: 50px; 
    }

    .cash-page .cta-inner {
        padding: 25px 7px 0 152px;
    }

    .cash-page .cta-manager {
        top: 0;
    }

    .cash-page .cta-manager img {
        top: 0px;
    }

    .cash-page .cabinet-section {
        padding-bottom: 48px;
    }
}

@media (max-width: 580px) {
    .hub-items .hub-item .btn::after {
        top: -72px;
    }
}

@media (max-width: 400px) {
    .hero__chips::after {
        top: 55%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__ring .hero__badge {
        animation: none;
    }
}