@-webkit-keyframes spin1 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

@keyframes spin1 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin2 {
    0% {
        transform: rotate(72deg)
    }
    to {
        transform: rotate(-288deg)
    }
}

@keyframes spin2 {
    0% {
        transform: rotate(72deg)
    }
    to {
        transform: rotate(-288deg)
    }
}

@-webkit-keyframes spin3 {
    0% {
        transform: rotate(-144deg)
    }
    to {
        transform: rotate(216deg)
    }
}

@keyframes spin3 {
    0% {
        transform: rotate(-144deg)
    }
    to {
        transform: rotate(216deg)
    }
}

@-webkit-keyframes spin4 {
    0% {
        transform: rotate(216deg)
    }
    to {
        transform: rotate(-144deg)
    }
}

@keyframes spin4 {
    0% {
        transform: rotate(216deg)
    }
    to {
        transform: rotate(-144deg)
    }
}

*, ::after, ::before {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box
}

.custom-checkbox + label a:hover, a {
    text-decoration: none
}

li, ol, ul {
    list-style: none
}

img {
    vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit
}

p {
    transition: .3s
}

html {
    background: var(--bg-color);
    font-family: var(--font-main);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important
}

.wrapper, body, html {
    width: 100%;
    display: flex;
    flex-direction: column
}

body, html {
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 15px;
    color: var(--font-color)
}

body, button {
    font-family: var(--font-main);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important
}

.wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 35px
}

.button, .link, body, html {
    position: relative;
    transition: .3s
}

.button {
    background: var(--color-accent);
    font-family: var(--font-main);
    color: var(--font-color);
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    border-radius: 47px;
    padding: 18px 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    outline: 0;
    cursor: pointer;
    overflow: hidden
}

.button:hover {
    background: var(--color-accent-hover)
}

.button:active {
    background: var(--color-accent-active)
}

.link {
    color: #fff
}

.link.active, .link:hover {
    color: var(--color-accent-hover)
}

::-webkit-scrollbar {
    width: 4px;
    background: var(--scroll-bg)
}

::-webkit-scrollbar-thumb {
    border-width: 1px 1px 1px 2px;
    background-color: var(--scroll-thumb);
    -webkit-border-radius: 2px
}

::-webkit-scrollbar-track {
    border-width: 0
}

:root {
    scrollbar-color: var(--scroll-thumb) var(--scroll-bg) !important;
    scrollbar-width: thin !important
}

.main-input__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative
}

.main-input__header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

.main-input__header-name {
    color: var(--font-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 147%;
    transition: .3s
}

.main-input__header-name span {
    margin-right: 8px
}

.main-input__header-icon {
    width: 14px;
    height: 14px
}

.main-input__header-link {
    font-style: normal;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-accent-hover)
}

#cookie_notification a:hover, .main-input__header-link:hover, .terms-block a:hover {
    text-decoration: underline
}

.main-input__footer {
    height: 56px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #0d0d0d
}

.main-input {
    width: 100%;
    height: 100%;
    outline: 0;
    padding: 0 20px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    color: var(--font-color);
    background: 0 0;
    border: 0;
    transition: .3s
}

.main-input::placeholder {
    color: rgba(255, 255, 255, .29)
}

.main-input__block.textarea .main-input {
    padding: 16px 20px;
    min-height: 148px;
    resize: none
}

.main-input__block.textarea .main-input__footer {
    height: auto
}

.main-input__icons {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 14px;
    z-index: 1;
    cursor: pointer
}

.main-input__icon {
    position: absolute
}

.main-input__icon.open {
    display: block
}

.main-input__block.show-pass .main-input__icon.open, .main-input__icon.closed {
    display: none
}

.main-input__block.show-pass .main-input__icon.closed {
    display: block
}

.main-input__error {
    position: absolute;
    bottom: -25px;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #eb5757;
    visibility: hidden;
    transition: .3s
}

.main-input__errorIcon {
    margin-right: 3px
}

.main-input__block.error {
    padding-bottom: 15px
}

.main-input__block.error .main-input {
    border: 1px solid #eb5757
}

.main-input__block.error .main-input::placeholder {
    color: #eb5757
}

.main-input__block.error .main-input__error {
    visibility: visible
}

.main-input__block.captcha .main-input {
    padding-left: 145px
}

.main-input__captcha {
    height: 100%;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    border-right: 1px solid #494949
}

.main-input__captcha-text {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .05em;
    color: #fff;
    text-align: center
}

.main-input__captcha-icon {
    width: 99px;
    height: 100%;
    object-fit: contain
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.custom-checkbox__block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.custom-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    position: relative;
    color: #a5a5a5;
    font-size: 15px;
    font-weight: 400;
    line-height: normal
}

.custom-checkbox + label a {
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: underline;
    color: var(--color-accent-hover)
}

.custom-checkbox + label::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 23px;
    background-size: 50% 50%;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #0d0d0d
}

.custom-checkbox:checked + label::after {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--color-accent-hover);
    display: block;
    position: absolute;
    left: 7px
}

#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 16px;
    left: 50%;
    width: 1280px;
    max-width: calc(100% - 32px);
    transform: translateX(-50%);
    padding: 16px;
    background: var(--bg-color);
    border-radius: 16px;
    z-index: 10;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, .3)
}

#cookie_notification a, #cookie_notification p {
    margin: 0;
    font-size: .8rem;
    text-align: left;
    line-height: 1.6
}

#cookie_notification a {
    color: var(--color-accent-hover);
    transition: .3s
}

@media (min-width: 576px) {
    #cookie_notification.show {
        display: flex
    }

    .cookie_accept {
        margin: 0 0 0 25px
    }
}

@media (max-width: 575px) {
    #cookie_notification.show {
        display: block;
        text-align: left
    }

    .cookie_accept {
        margin: 12px 0 0
    }

    #cookie_notification .button {
        max-width: unset;
        width: 100%;
        border-radius: 16px
    }

    #cookie_notification p br {
        display: none
    }
}

.wow {
    visibility: hidden
}

.header, .header .wrapper {
    width: 100%;
    background: var(--bg-color)
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 11;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.header .wrapper {
    z-index: 1;
    height: 72px;
    justify-content: space-between
}

.header-logo {
    height: 47px;
    width: 164.5px;
    margin-left: -7px;
    margin-bottom: 4px;
    mix-blend-mode: lighten
}

.header .wrapper, .header-nav, .header-right {
    display: flex;
    flex-direction: row;
    align-items: center
}

.header-nav, .header-right {
    gap: 67px
}

.header-nav {
    position: relative;
    z-index: 1;
    gap: 28px
}

.header-nav__item {
    position: relative;
    color: var(--font-color)
}

.header-nav__item:nth-child(3) {
    margin-right: 64px
}

.dropdown:nth-child(2) {
    z-index: 2
}

.dropdown:nth-child(3) {
    z-index: 1
}

.dropdown {
    position: relative;
    display: inline-block
}

.dropbtn {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 1
}

.arrow-down {
    margin-left: 8px;
    transition: .3s
}

.dropdown-content {
    display: flex;
    position: absolute;
    border-radius: 10px;
    background: #0e0d0d;
    min-width: 190px;
    left: -10px;
    top: 33px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.dropdown-content a {
    text-decoration: none;
    display: block
}

.dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible
}

.dropdown.active .arrow-down {
    transform: rotate(180deg)
}

.dropdown-content .header-nav__item:nth-child(3) {
    margin-right: 0
}

.header-lang {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1
}

.header-lang__header {
    display: flex;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
    transition: .3s;
    gap: 8px
}

.header-lang__header-icon {
    transition: .3s
}

.header-lang__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    left: -10px;
    top: -8px;
    position: absolute;
    border-radius: 10px;
    background: #0e0d0d;
    transition: .3s;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    width: 94px;
    padding: 51px 0 11px 10px
}

.header-lang__menu-item {
    font-family: var(--font-main);
    text-transform: uppercase;
    transition: .3s;
    white-space: nowrap;
    color: var(--font-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.header-lang__menu-item.active, .header-lang__menu-item:hover {
    color: var(--color-accent-hover)
}

.header-lang__menu-item.active {
    pointer-events: none
}

.header-lang__menu-flag {
    height: 18px;
    width: 24px;
    object-fit: fill;
    object-position: center
}

.header-lang.active .header-lang__menu, .partnership-hero__item.active .partnership-hero__item-circle::after, .partnership-hero__item:hover .partnership-hero__item-circle::after {
    opacity: 1;
    visibility: visible
}

.header-lang.active .header-lang__header-icon {
    transform: rotate(180deg)
}

.header-lang__header .header-lang__menu-item:hover {
    color: #fff
}

.header-buttons, .header-mobile__lang-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.header-buttons {
    gap: 20px
}

.header-buttons .button {
    padding: 11.5px 35.5px
}

.header-burger__block {
    display: none
}

.header-burger__close {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    margin-right: -14px
}

.header-mobile__wrapper {
    display: none
}

.footer, .footer .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.footer {
    z-index: 1;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, .5);
    background: var(--bg-color)
}

.footer .wrapper {
    position: relative
}

.footer-block, .footer-left {
    display: flex;
    align-items: flex-start
}

.footer-block {
    width: 100%;
    flex-direction: row;
    justify-content: space-between
}

.footer-left {
    flex-direction: column
}

.footer-left .header-logo__link {
    margin-bottom: 32px
}

.footer-left .main__text {
    max-width: 562px
}

.footer-left__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 36px
}

.footer-right {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 270px
}

.footer-right__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.footer-right__column .header-nav, .footer-right__social {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px
}

.footer-right__column .header-lang {
    margin-bottom: 28px
}

.footer-right__column .header-lang__menu {
    max-height: 200px;
    overflow-y: auto;
    top: 30px;
    padding-top: 10px
}

.footer-right__column .header-logo__link {
    display: none
}

.footer-right__social {
    display: flex;
    gap: 22px
}

.footer-right__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px
}

.contact-social__block-icon path, .contact-social__link-icon path, .footer-right__social-link svg path {
    fill: #fff;
    transition: .3s
}

.footer-right__social-link:hover svg path {
    fill: var(--color-accent-hover)
}

.footer-left__stores {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 24px
}

.footer-left__stores-coming {
    color: #c72704;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: 147%;
    letter-spacing: .13125rem
}

.footer-left__stores-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px
}

.footer-left__stores-link {
    display: flex
}

.footer-left__stores-icon {
    height: 27px
}

.footer-bottom__copyright {
    margin-top: 36px
}

.main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center
}

.main__title {
    font-size: 35px;
    line-height: 159%;
    text-transform: uppercase;
    font-family: var(--font-second)
}

.main__title.sub {
    font-size: 30px
}

.main__text {
    color: var(--font-color);
    font-size: 15px;
    line-height: 147%;
    transition: .3s
}

.main__text.light {
    font-weight: 300
}

.main__text.medium {
    font-weight: 500
}

.main-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 72px;
    height: 758px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    background: url("../images/hero-bg.webp");
    overflow: hidden;
    position: relative
}

.main-hero .wrapper {
    height: 100%;
    position: relative
}

.main-hero__video {
    position: absolute;
    z-index: 1;
    top: 40px;
    height: 100%;
    mix-blend-mode: lighten
}

.main-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 542px;
    padding: 131px 4px 0 0;
    height: 100%;
    position: relative;
    z-index: 2
}

.main-hero__content .main__title {
    margin-bottom: 17px;
    width: 100%
}

.main-hero__content .main__title span {
    color: var(--color-accent)
}

.main-hero__content .main__text {
    margin-bottom: 32px;
    max-width: 420px;
    font-size: 17px
}

.main-hero__content-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 55px
}

.main-hero__decor {
    border-radius: 50%;
    background: rgba(205, 37, 0, .3);
    filter: blur(73.9000015258789px);
    position: absolute;
    z-index: -1
}

.main-hero__decor.decor-1 {
    width: 368px;
    height: 354px;
    left: 0;
    top: 86px
}

.main-hero__decor.decor-2 {
    width: 292px;
    height: 210px;
    top: 63px;
    right: -100px
}

.main-hero__decor.decor-3 {
    width: 292px;
    height: 210px;
    bottom: -79px;
    right: 333px
}

.main-deals {
    width: 100%;
    margin-top: 65px
}

.main-deals .wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between
}

.main-deals__circle {
    border-radius: 50%;
    background: rgba(205, 37, 0, .5);
    filter: blur(73.9000015258789px);
    width: 280px;
    height: 280px;
    position: absolute;
    top: 34px;
    left: -65px;
    z-index: -1
}

.main-deals__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 505px
}

.main-deals__content .main__title {
    margin-bottom: 27px
}

.main-deals__block, .main-deals__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px
}

.main-deals__items {
    flex-direction: row;
    gap: 60px;
    position: relative
}

.main-deals__items::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 10px;
    width: 450px;
    height: 1px;
    background: rgba(255, 255, 255, .3);
    z-index: -1
}

.main-deals__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80px;
    transition: .3s
}

.main-deals__item-content, .main-steps__item .main-steps__item-sprite path, .trading-content__block-group .pagination .pag-num.arrows path {
    transition: .3s
}

.main-deals__item:last-child {
    width: unset
}

.main-deals__item-sprite {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    margin-bottom: 22px
}

.main-deals__item .medium {
    margin-bottom: 3px
}

.main-deals__item .main__text {
    max-width: 80px
}

.main-deals__item:last-child .main__text {
    max-width: 140px
}

.main-deals__item:hover {
    transform: scale(1.1)
}

.main-benefits {
    width: 100%;
    padding-top: 159px;
    margin-top: 19px;
    display: flex;
    position: relative;
    padding-bottom: 46px
}

.main-benefits, .main-benefits .wrapper {
    flex-direction: column;
    align-items: center
}

.main-benefits__decor, .main-steps__item::before {
    position: absolute;
    top: 0;
    z-index: -1
}

.main-benefits__grid {
    position: absolute;
    bottom: 0;
    z-index: -1
}

.main-benefits .main__title {
    max-width: 459px;
    text-align: center
}

.main-benefits__items {
    margin-top: 75px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    padding: 0 76px;
    column-gap: 169px;
    row-gap: 90px
}

.main-benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .3s
}

.main-benefits__item:hover {
    transform: scale(1.1)
}

.main-benefits__item-icon {
    width: 77px;
    height: 77px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 15px
}

.main-benefits__item-title {
    font-size: 20px;
    font-family: var(--font-second);
    font-weight: 400;
    text-align: center;
    margin-bottom: 7px;
    line-height: 159%;
    min-height: 64px
}

.main-benefits__item .main__text {
    text-align: center
}

.main-steps {
    width: 100%;
    margin-top: 138px;
    margin-bottom: 120px
}

.main-steps__items {
    margin-top: 12px
}

.main-steps__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 61px;
    padding-right: 212px;
    position: relative;
    cursor: pointer;
    transition: .3s
}

.main-steps__item::before {
    content: "";
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, .5)
}

.main-steps__item:last-child::after {
    content: "";
    width: 100vw;
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, .5)
}

.main-steps__item-sprite {
    width: 94px;
    min-width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 217, 217, .25);
    margin-bottom: auto;
    transition: .3s
}

.main-steps__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 0
}

.main-steps__item-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 159%
}

.main-steps__item-wrapper {
    display: none;
    transition: unset
}

.main-steps__item-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.main-steps__item-content .main__text {
    margin-bottom: 6px
}

.main-steps__item-content .buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0
}

.main-steps__item-content .button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    min-height: 44px
}

.main-steps__item-content .button, .main-steps__item-content .button.video {
    padding: 12px 32px;
    white-space: normal
}

.main-steps__item-content .button.video svg {
    min-width: 18px
}

.main-steps__item-arrow {
    position: absolute;
    right: 37px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s
}

.main-steps__item.active .main-steps__item-sprite {
    margin-top: 12px;
    background: 0 0
}

.main-steps__item:hover .main-steps__item-sprite {
    background: 0 0
}

.main-steps__item.active .main-steps__item-sprite path, .main-steps__item:hover .main-steps__item-sprite path {
    fill: var(--color-accent)
}

.main-steps__item.active .main-steps__item-arrow {
    transform: rotate(180deg) translateY(0);
    top: 24px
}

.main-info {
    width: 100%;
    margin: 120px 0 0;
    background: #242424
}

.main-info__block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 110px 0 87px 70px;
    overflow: hidden
}

.main-info__content {
    max-width: 542px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1
}

.main-info__content .main__title {
    margin-bottom: 17px
}

.main-info__content .main__text {
    max-width: 421px;
    margin-bottom: 32px
}

.main-info__img {
    position: absolute;
    right: -280px;
    top: 27px
}

.main-breadcrumbs {
    width: 100%;
    z-index: 1;
    padding-top: 19px;
    margin-top: 72px;
    margin-right: auto;
    margin-bottom: 50px
}

.main-breadcrumbs .wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 65px
}

.main-breadcrumbs__link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 15px
}

.main-breadcrumbs__link:first-child {
    margin-left: 0;
    margin-bottom: 0
}

.main-breadcrumbs__link:last-child {
    font-weight: 700;
    font-size: 15px;
    color: var(--font-color);
    cursor: default;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.main-breadcrumbs__link:last-child:hover {
    text-decoration: unset;
    color: var(--font-color)
}

.main-breadcrumbs__link.active {
    cursor: default;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: unset
}

.main-breadcrumbs__link.active:hover {
    text-decoration: none;
    color: var(--font-color)
}

.main-breadcrumbs__delimiter, .main-breadcrumbs__link, .main-breadcrumbs__link.active:before, .main-breadcrumbs__link:hover:before {
    color: var(--font-color)
}

.main-breadcrumbs__link:hover {
    color: var(--color-accent-hover)
}

.about-hero {
    width: 100%
}

.about-hero .wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    gap: 32px
}

.about-hero__decor {
    position: absolute;
    z-index: -1
}

.about-hero__decor.decor-1 {
    right: 73px;
    top: -49px
}

.about-hero__decor.decor-2 {
    left: 18px;
    bottom: -131px
}

.about-hero__left, .about-hero__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 505px;
    gap: 24px
}

.about-hero__right {
    margin-right: 55px;
    margin-top: 250px
}

.about-assets {
    width: 100%;
    margin-top: 296px;
    margin-bottom: 110px
}

.about-assets .wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px
}

.about-assets__decor {
    position: absolute;
    z-index: -1;
    width: 770px;
    left: 0
}

.about-assets .wrapper, .about-assets__content {
    display: flex;
    align-items: flex-start;
    position: relative
}

.about-assets__content {
    flex-direction: column;
    gap: 24px;
    max-width: 505px
}

.about-assets__content-circle {
    position: absolute;
    width: 231px;
    height: 231px;
    display: block;
    border-radius: 50%;
    background: rgba(205, 37, 0, .5);
    filter: blur(73.9000015258789px);
    z-index: -1;
    top: -98px;
    left: -2px
}

.about-assets__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 26px;
    max-width: 564px
}

.about-assets__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 21px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-right: 44px
}

.about-assets__item:last-child {
    margin-bottom: 0
}

.about-assets__item-icon {
    width: 90px;
    min-width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center
}

.about-assets__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center
}

.about-assets__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px
}

.about-assets__item-title {
    font-size: 20px;
    font-weight: 700
}

.lines {
    opacity: .01
}

.line {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fff
}

.lights {
    opacity: .9
}

.light {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: var(--color-accent)
}

.trading-chart {
    height: 605px;
    width: 100%
}

.trading-chart .wrapper {
    height: 100%;
    padding-bottom: 32px
}

.trading-chart .trading, .trading-chart .trading-container, .trading-chart .trading-quotes {
    height: 100%
}

.trading-table {
    width: 100%;
    margin-bottom: 52px
}

.trading-table .wrapper {
    display: flex;
    flex-direction: column
}

.trading-table__decor {
    position: absolute;
    bottom: 0;
    z-index: -1
}

.trading-table__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 20px;
    overflow-y: auto;
    margin-bottom: 100px
}

.trading-table__header, .trading-table__row {
    width: 100%;
    padding: 30px 24px;
    display: grid;
    grid-template-columns:1fr 1fr 1.5fr 1fr 1.5fr 1fr .7fr .7fr;
    gap: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    min-width: 1280px
}

.trading-table__header {
    background: #420000
}

.trading-table__row {
    background: #0d0d0d
}

.trading-table__cell {
    font-size: 15px
}

.news-block {
    width: 100%
}

.news-block .wrapper, .trading-table .wrapper {
    position: relative;
    align-items: center
}

.news-block__decor {
    position: absolute;
    bottom: -90px
}

.news-block__items {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    position: relative;
    column-gap: 54px;
    row-gap: 46px
}

.news-block__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    transition: .3s;
    position: relative
}

.news-block__item-img {
    width: 100%;
    min-height: 168px;
    max-height: 168px;
    object-fit: cover;
    border-radius: 20px 20px 0 0
}

.news-block__item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 14px 24px;
    color: var(--font-color)
}

.news-block__item-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 17px
}

.news-block__item-content .main__text, .news-block__item-title {
    line-height: 168%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.news-block__item-date, .news-block__item-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--font-color)
}

.news-block__item-title {
    -webkit-line-clamp: 2
}

.news-block__item-date {
    line-height: 168%;
    white-space: nowrap
}

.news-block__item-content .main__text {
    -webkit-line-clamp: 4;
    word-break: break-word
}

.news-block__item-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    transition: .3s;
    color: #fff;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 24px
}

.news-block__item:hover {
    transform: scale(1.1);
    background: rgba(217, 217, 217, .06)
}

.news-block__item:hover .news-block__item-link {
    gap: 18px
}

.news-block.page .news-block__item {
    margin-top: 30px;
    width: 100%;
    margin-bottom: 68px;
    background: unset
}

.news-block.page .news-block__item:hover {
    transform: unset
}

.news-block.page .news-block__item-img {
    max-height: unset;
    width: 100%;
    max-width: 650px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    border-radius: 20px
}

.news-block.page .main__title {
    width: 100%
}

.news-block.page .news-block__item-content {
    padding: 0;
    margin-top: 25px
}

.news-block.page .main__text {
    overflow: unset;
    display: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset
}

.pagination-wrapper {
    flex-direction: row
}

.pagination-wrapper.news {
    margin-top: 75px;
    margin-bottom: 80px
}

.pagination, .pagination .page-item, .pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center
}

.pagination {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    padding: 0 12px
}

.pagination .page-item {
    text-align: center;
    opacity: 1;
    position: relative;
    transition: .3s;
    cursor: pointer
}

.pagination .page-item.active {
    cursor: default;
    border: 1px solid #575757;
    border-radius: 50%;
    width: 44px;
    height: 44px
}

.pagination .page-item:first-child, .pagination .page-item:last-child {
    transition: .3s;
    height: unset;
    width: unset;
    display: flex;
    align-items: center;
    justify-content: center
}

.contact, .pagination .page-item .page-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.pagination .page-item .page-link {
    color: var(--font-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    height: 100%;
    transition: .3s
}

.pagination .page-item .page-link.disabled {
    cursor: default;
    color: rgba(255, 255, 255, .52)
}

.pagination .page-item .page-link.disabled:hover {
    color: rgba(255, 255, 255, .52)
}

.pagination .page-item:hover .page-link {
    color: var(--color-accent-hover)
}

.pagination .page-item.active:hover .page-link {
    color: var(--font-color)
}

.contact {
    flex-direction: row;
    padding-bottom: 113px;
    position: relative
}

.contact .wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px
}

.contact-bg {
    position: absolute;
    bottom: 0;
    z-index: -1
}

.contact-content, .contact-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.contact-content {
    max-width: 460px
}

.contact-title {
    width: 100%;
    gap: 19px;
    margin-bottom: 94px
}

.contact-title.hidden {
    display: none
}

.contact-social {
    gap: 43px
}

.contact-social, .contact-social__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.contact-social__block-title {
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    margin-bottom: 24px
}

.contact-social__block-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 17px;
    color: var(--font-color);
    transition: .3s
}

.contact-social__block-row:hover {
    color: var(--color-accent-hover)
}

.contact-social__block-row:last-child {
    margin-bottom: 0
}

.contact-social__block-row:hover .contact-social__block-icon path, .contact-social__link:hover .contact-social__link-icon path, .trading-content__block-group .pagination .pag-num.arrows:hover path {
    fill: var(--color-accent-hover)
}

.contact-social__block-img {
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 19px
}

.contact-social__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.contact-form, .contact-form__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.contact-form {
    max-width: 665px;
    margin-right: 55px
}

.contact-form__items {
    gap: 24px
}

.contact-form__row {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 24px
}

.contact-form .button {
    margin-top: 36px
}

.contact-form.success {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center
}

.contact-form__success {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 172.2%;
    color: #fff;
    max-width: 386px;
    position: relative;
    margin-left: 43px
}

.contact-form__success-icon {
    position: absolute;
    left: -43px;
    top: 10px
}

.faq {
    width: 100%;
    position: relative;
    padding-bottom: 80px
}

.faq-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    top: -100px;
    height: calc(100% + 100px)
}

.faq .main__title {
    margin-left: 60px
}

.faq-block {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    grid-gap: 25px;
    padding: 0 60px;
    margin-top: 22px
}

.faq-block__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.faq-tab__item {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #0d0d0d
}

.faq-tab__item-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    gap: 3px;
    padding: 18px 30px
}

.faq-tab__item-title {
    font-weight: 500;
    font-size: 17px;
    line-height: 147%;
    transition: .3s
}

.faq-tab__item-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 147%;
    display: none;
    transition: unset;
    padding: 3px 30px 30px
}

.faq-tab__item-icon {
    transition: .3s;
    min-width: 17px;
    margin-top: 5px
}

.faq-tab__item.active .faq-tab__item-icon {
    transform: rotate(-45deg)
}

.faq-reach {
    width: 100%;
    padding-top: 80px;
    overflow: hidden;
    margin-bottom: 76px
}

.faq-reach .wrapper {
    position: relative
}

.faq-reach__header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    padding-bottom: 12px
}

.faq-reach__header::after, .partnership-hero__items::before {
    content: "";
    position: absolute;
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, .5)
}

.faq-reach__header::after {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0
}

.faq-reach__header-decor {
    position: absolute;
    width: 179px;
    height: 179px;
    display: block;
    border-radius: 50%;
    background: rgba(205, 37, 0, .5);
    filter: blur(73.9000015258789px);
    z-index: -1;
    top: -44px;
    right: 303px
}

.faq-reach__header .main__title {
    font-size: 25px
}

.faq-reach__header .main__text {
    max-width: 515px
}

.faq-reach__items {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    grid-gap: 44px;
    margin-top: 53px;
    padding: 0 147px
}

.faq-reach__item {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #0d0d0d;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--font-color)
}

.faq-reach__item-sprite {
    width: 77px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px
}

.faq-reach__item-sprite img {
    object-fit: contain;
    object-position: center
}

.faq-reach__item-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 159%;
    margin-bottom: 12px;
    text-align: center
}

.faq-reach__item .main__text {
    text-align: center;
    margin-bottom: 16px
}

.faq-reach__item .main__text.bold {
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    transition: .3S
}

.faq-reach__item:hover .main__text.bold {
    gap: 18px
}

.form-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 66px;
    position: relative
}

.form-block .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.form-block__decor {
    position: absolute;
    bottom: 0;
    z-index: -1
}

.form-block__group {
    max-width: 666px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.form-block__group-icon {
    margin-bottom: 29px;
    margin-top: -30px
}

.form-block__group .main__title {
    width: 100%
}

.form-block__group .main__title.soft {
    width: 100%;
    font-family: var(--font-main);
    font-size: 25px;
    font-weight: 700;
    text-transform: unset;
    text-align: center
}

.form-block__group-grid {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 15px;
    margin: 16px 0 34px
}

.form-block__group-grid .main__text {
    text-align: center;
    margin-bottom: -7px
}

.form-block__group-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px
}

.form-block .button {
    max-width: 264px;
    width: 100%
}

.form-block__img.fingerprint {
    margin-right: -100px;
    margin-top: -100px;
    margin-left: -50px
}

.form-block__group.auth {
    max-width: 317px;
    margin-right: 349px
}

.form-block__group.auth .form-block__group-grid {
    grid-template-columns:1fr
}

.form-block.centered {
    padding: 100px 0 150px
}

.form-block.centered .wrapper {
    align-items: center
}

.form-block.centered .form-block__group .main__title {
    text-align: center
}

.form-block.centered .form-block__group.auth {
    margin-right: 0;
    max-width: unset
}

.form-block.centered .form-block__group-grid {
    max-width: 317px
}

.form-block.centered .form-block__decor.grid {
    display: none
}

.form-block.centered .form-block__decor.meduza {
    top: -140px;
    bottom: unset
}

.faq-partnership {
    margin-top: 116px;
    padding-bottom: 64px
}

.faq-partnership .wrapper {
    position: relative
}

.faq-partnership .faq-block {
    padding: 0
}

.faq-partnership .main__title {
    margin-left: 0
}

.faq-partnership__decor {
    position: absolute;
    z-index: -1;
    bottom: 70px;
    right: 80px
}

.partnership-hero {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 52px
}

.partnership-hero__decor {
    position: absolute;
    top: -120px;
    height: 100%;
    width: 100%;
    z-index: -1
}

.partnership-hero .wrapper {
    align-items: center
}

.partnership-hero .main__title {
    margin-bottom: 24px;
    max-width: 459px;
    text-align: center
}

.partnership-hero .main__text {
    max-width: 690px;
    text-align: center
}

.partnership-hero__items {
    margin-top: 47px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 69px;
    position: relative
}

.partnership-hero__items::before {
    width: calc(100% - 20px);
    top: 21px;
    left: 10px;
    z-index: -1
}

.partnership-hero__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: .3s
}

.partnership-hero__item-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 41.6px;
    height: 41.6px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #101010;
    border-radius: 50%;
    transition: .3s
}

.partnership-hero__item-circle::before {
    content: "";
    position: absolute;
    width: 85%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 85%;
    border-radius: 50%;
    background: #101010;
    transition: .3s
}

.partnership-hero__item-text {
    font-size: 12px
}

.partnership-hero__item-circle::after {
    content: "";
    background: url("") no-repeat;
    width: 90%;
    height: 90%;
    background-size: contain;
    opacity: 0;
    position: relative;
    z-index: 1;
    visibility: hidden;
    transition: .3s
}

.partnership-hero__item.active, .partnership-hero__item:hover {
    transform: scale(1.5)
}

.partnership-stats {
    width: 100%;
    margin-top: 22px
}

.partnership-stats .wrapper {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    grid-gap: 79px
}

.partnership-stats__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.partnership-stats__column .main__title:first-child {
    margin-bottom: 4px;
    font-size: 20px
}

.partnership-table__header {
    width: 100%;
    margin-top: 16px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    grid-gap: 72px;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #0d0d0d
}

.partnership-table__cell {
    font-size: 15px;
    font-weight: 400;
    line-height: 147%
}

.partnership-table__block {
    width: 100%;
    margin-top: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #0d0d0d;
    padding: 16px 20px
}

.partnership-table__row {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    grid-gap: 72px;
    padding-right: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 12px;
    margin-bottom: 11px
}

.partnership-table__row:last-child {
    border-bottom: unset;
    margin-bottom: 0;
    padding-bottom: 0
}

.partnership-table__row .partnership-table__cell:nth-child(2) {
    text-align: center
}

.partnership-table__row .partnership-table__cell:nth-child(3) {
    text-align: right
}

.partnership-stats__column.second {
    margin-top: 47.7px
}

.partnership-stats__column.second .partnership-table__header {
    background: #420000;
    grid-gap: 24px
}

.partnership-stats__column.second .partnership-table__row {
    grid-gap: 24px
}

.partnership-stats__blocks, .partnership-stats__blocks-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.partnership-stats__blocks {
    max-width: 336px;
    gap: 46px;
    margin-top: 15px
}

.partnership-stats__blocks-item {
    height: 156px;
    gap: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #000;
    padding: 29px 26px;
    position: relative
}

.partnership-stats__blocks-item .main__text:first-child {
    font-weight: 300;
    max-width: 170px
}

.partnership-stats__blocks-item .main__text:last-child {
    font-size: 20px
}

.partnership-stats__blocks-item.red {
    background: #400000
}

.partnership-stats__blocks-icon {
    position: absolute;
    right: 19px;
    top: 29px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center
}

.large-header {
    position: absolute;
    width: 100%;
    background: 0 0;
    overflow: hidden;
    z-index: -1
}

.investment-hero {
    width: 100%;
    position: relative
}

.investment-hero .wrapper {
    align-items: center;
    padding-top: 50px;
    padding-bottom: 150px
}

.investment-hero__bg {
    position: absolute;
    z-index: -1;
    top: -65px
}

.investment-hero .main__title {
    margin-bottom: 24px;
    max-width: 459px;
    text-align: center
}

.investment-hero .main__text {
    max-width: 623px;
    text-align: center
}

.investment-hero__buttons {
    margin-top: 41px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 33px;
    background: #272727;
    height: 58px
}

.investment-hero__buttons-item {
    width: 194px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    transition: .3s;
    cursor: pointer
}

.investment-hero__buttons-fill {
    width: 33.3%;
    border-radius: 33px;
    background: #cd2500;
    position: absolute;
    left: 0;
    height: 100%;
    transition: .3s
}

.investment-hero__buttons.active .investment-hero__buttons-fill {
    left: 33.3%
}

.investment-hero__buttons-item.active {
    cursor: default
}

.investment-hero__buttons-item:hover {
    color: var(--color-accent-hover)
}

.investment-hero__buttons-item.active:hover {
    color: #fff
}

.investment-hero__buttons-item.disabled {
    pointer-events: none;
    height: 100%;
    opacity: .6;
    border-radius: 33px
}

.investment-hero__buttons.second .investment-hero__buttons-fill {
    left: 33.3%
}

.investment-hero__buttons.third .investment-hero__buttons-fill {
    left: 66.6%
}

.investment-type {
    width: 100%;
    margin-top: 108px;
    margin-bottom: 189px
}

.investment-type .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.investment-type__content {
    max-width: 547px
}

.investment-type__content .main__title {
    margin-bottom: 24px
}

.investment-type__block, .investment-type__content, .investment-type__group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.investment-type__block {
    margin-top: 62px;
    gap: 30px
}

.investment-type__group {
    gap: 23px
}

.investment-type__group-name {
    font-size: 20px
}

.investment-type__group-line {
    width: 100%;
    border-radius: 22px;
    height: 34px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 27px
}

.investment-type__group-line.red {
    background: linear-gradient(90deg, #250000 0, #fd0000 100%)
}

.investment-type__group-line.orange {
    width: 80%;
    background: linear-gradient(90deg, #5b2100 0, #fd9800 100%)
}

.investment-type__group-line.white {
    width: 95%;
    background: linear-gradient(90deg, #3e3e3e 0, #c6c6c6 100%)
}

.investment-type__img {
    max-width: 540px;
    width: 100%
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #0d0d0d;
    color: #fff;
    cursor: pointer;
    height: 50px;
    width: 100%
}

.custom-select.hidden {
    display: none
}

.custom-select__trigger {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 60px 0 16px
}

.custom-select__trigger-text {
    height: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center
}

.icon img {
    width: 30px;
    height: auto;
    margin-right: 10px
}

.arrow, .custom-options {
    position: absolute;
    transition: .3s
}

.arrow {
    display: inline-flex;
    right: 28px
}

.custom-select.open .arrow, .trading-content__export.active .trading-content__export-button svg {
    transform: rotate(180deg)
}

.custom-options {
    display: none;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 3;
    border-radius: 10px;
    background: #0d0d0d;
    overflow: hidden;
    border: 1px solid #4e4e4e
}

.custom-select.open .custom-options {
    display: flex;
    flex-direction: column
}

.custom-option {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 50px;
    transition: all .3s;
    cursor: pointer
}

.custom-option:hover, .terms-block a {
    color: var(--color-accent-hover)
}

.custom-option.selected {
    background-color: #555;
    cursor: default
}

.custom-option.selected:hover {
    color: var(--font-color)
}

.investment-calc {
    margin-top: 115px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 109px
}

.investment-calc__bg {
    position: absolute;
    bottom: 0;
    z-index: -1
}

.investment-calc .wrapper {
    align-items: center
}

.investment-calc .main__title {
    text-align: center;
    max-width: 459px
}

.investment-calc__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 42px 0 93px;
    margin-top: 150px
}

.investment-form {
    max-width: 591px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #4e4e4e;
    background: #292929;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 20px 21px 35px
}

.investment-form__types {
    position: absolute;
    top: -30px;
    right: -24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start
}

.investment-form__types-item {
    background: linear-gradient(90deg, #414141 0, #4c4c4c 100%);
    cursor: pointer;
    padding: 19px 34px;
    transition: .3s;
    text-align: center;
    max-width: 190px;
    line-height: 147%
}

.investment-form__types-item:nth-child(2) {
    border-radius: 5px 0 5px 5px
}

.investment-form__types-item:nth-child(3) {
    border-radius: 0 5px 5px 5px
}

.investment-form__types-item:hover {
    box-shadow: 0 4px 19px 6px rgba(205, 37, 0, .3)
}

.investment-form__types-item.active {
    padding: 25px 36px;
    cursor: default;
    background: linear-gradient(90deg, #ff0101 0, #fe5c00 100%)
}

.investment-form__types-item:nth-child(1) {
    position: absolute;
    width: 80%;
    right: 10%;
    height: 80px;
    top: -80px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center
}

.investment-form__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px
}

.investment-form__group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    position: relative;
    margin-bottom: 23px
}

.investment-form__group-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between
}

.investment-calc__block-input {
    border-radius: 10px;
    background: #0d0d0d;
    width: 100%;
    height: 50px;
    padding-left: 16px;
    outline: unset;
    color: #fff;
    font-family: var(--font-main);
    font-size: 15px;
    padding-right: 60px
}

.investment-calc__usd {
    position: absolute;
    right: 16px;
    bottom: 16px;
    font-size: 15px
}

.investment-form .button {
    margin-top: 7px;
    padding: 14px 103px
}

.investment-calc__stats {
    max-width: 474px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px solid #4e4e4e;
    background: linear-gradient(180deg, #420004 0, #101010 100%)
}

.investment-calc__stats-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 51px
}

.investment-calc__stats-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 27px;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    margin-bottom: 35px
}

.investment-calc__stats-row:last-child {
    margin-bottom: 0;
    border-bottom: unset;
    padding-bottom: 0
}

.investment-calc__stats-row .main__text:first-child {
    max-width: 200px
}

.investment-calc__stats-row .main__text:last-child {
    text-align: right
}

.investment-form__group.hidden, .investment-plans.hidden {
    display: none
}

.investment-plans, .investment-plans__slide {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.investment-plans {
    margin-top: 80px
}

.investment-plans .wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px
}

.investment-plans__slide {
    max-width: 501px;
    min-width: 501px;
    border-radius: 10px;
    border: 1px solid #4e4e4e;
    background: #292929;
    padding-bottom: 39px
}

.investment-plans__slide-header {
    width: 100%;
    height: 70px;
    border-radius: 10px 10px 0 0;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #3e0003;
    font-size: 25px;
    font-weight: 700;
    line-height: 147%;
    padding-left: 33px;
    display: flex;
    flex-direction: row;
    align-items: center
}

.investment-plans__slide-columns {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.investment-plans__slide-column {
    display: flex;
    flex-direction: column;
    align-items: center
}

.investment-plans__slide-percent {
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 147%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 73px
}

.investment-plans__slide-percent.orange {
    border-radius: 5px 5px 0 5px;
    background: linear-gradient(90deg, #ff8616 0, #ffa800 100%);
    width: calc(100% + 25px);
    margin-left: -25px
}

.investment-plans__slide-percent.red {
    border-radius: 0 5px 5px 5px;
    background: linear-gradient(90deg, #ff0101 0, #fe5c00 100%);
    width: calc(100% + 55px);
    margin-right: -55px
}

.investment-plans__slide-column .main__text {
    margin: 10px 0;
    padding: 0 10px
}

.investment-plans__slide-rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 36px;
    margin: 50px 0 56px;
    gap: 19px
}

.investment-plans__slide-row {
    width: 100%;
    gap: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.investment-plans__slide-row .main__text:last-child {
    font-size: 17px;
    font-weight: 700
}

.investment-plans__slide .button {
    padding: 14px 103px
}

.investment-plans__content {
    max-width: 459px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.investment-plans__content .main__title {
    margin-bottom: 24px
}

.investment-plans__slider-arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 21px;
    position: absolute;
    left: 250px;
    top: -50px;
    z-index: 3;
    cursor: pointer
}

.investment-plans__slider-wrapper {
    max-width: 750px;
    width: 100%;
    margin-left: -120px;
    position: relative
}

.investment-plans__slider-wrapper .swiper-slide {
    width: 501px;
    opacity: .5
}

.investment-plans__slider-wrapper .swiper-slide-active {
    opacity: 1
}

.investment-plans__slider-wrapper .swiper-pagination {
    position: relative;
    margin-top: 50px;
    padding-left: 250px
}

.investment-plans__slider-wrapper .swiper-pagination-bullet {
    margin: 0 5px;
    width: 23.743px;
    height: 23.743px;
    border-radius: 50%;
    border: 1px solid #9d9d9d;
    background: 0 0;
    opacity: 1;
    transition: .3s
}

.investment-plans__slider-wrapper .swiper-pagination-bullet-active {
    transform: scale(1.1);
    background: #9d9d9d;
    cursor: default
}

.investment-plans.end-term .investment-plans__slide-columns, .investment-plans.future .investment-plans__slide-columns {
    align-items: center;
    justify-content: center
}

.investment-plans.end-term .investment-plans__slide-columns .main__text, .investment-plans.future .investment-plans__slide-columns .main__text {
    text-align: center
}

.investment-plans.future .investment-plans__slide-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.investment-plans.future .custom-select {
    font-size: 15px;
    height: 43px;
    width: 196px;
    margin-right: 13px;
    border: 1px solid #8f8f8f
}

.investment-plans.future .custom-select .arrow {
    right: 20px;
    top: 18px
}

.circles {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    position: relative;
    margin-right: 70px
}

.circle {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 24px solid transparent;
    border-radius: 115% 140% 145% 110%/125% 140% 110% 125%;
    mix-blend-mode: screen
}

.circle:nth-child(1), .circle:nth-child(2) {
    border-color: #fff;
    transform-origin: 50% 50%;
    -webkit-animation: spin1 5.5s linear infinite;
    animation: spin1 5.5s linear infinite
}

.circle:nth-child(2) {
    border-color: #fd9800;
    -webkit-animation: spin2 5.5s linear infinite;
    animation: spin2 5.5s linear infinite
}

.circle:nth-child(3), .circle:nth-child(4) {
    border-color: #fd0000;
    transform-origin: 50% 50%;
    -webkit-animation: spin3 5.5s linear infinite;
    animation: spin3 5.5s linear infinite
}

.circle:nth-child(4) {
    border-color: #ff4242;
    -webkit-animation: spin4 5.5s linear infinite;
    animation: spin4 5.5s linear infinite
}

.documents-block {
    width: 100%;
    padding: 50px 0 150px
}

.documents-block .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.documents-block__decor {
    position: absolute;
    right: -150px;
    top: -180px;
    z-index: -1
}

.documents-block__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 540px
}

.documents-block__content .main__title {
    margin-bottom: 19px
}

.documents-block__content .main__text {
    margin-bottom: 32px
}

.documents-block__certificate {
    width: 421px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 421/477;
    border-radius: 10px;
    margin-right: 100px
}

.documents-block__certificate::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background: #000;
    transition: .3s;
    border-radius: 10px
}

.documents-block__certificate:hover::after {
    opacity: .1
}

.documents-block__certificate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px
}

.documents-block__certificate-icon {
    position: absolute;
    opacity: 0;
    z-index: 2;
    transition: .3s
}

.documents-block__certificate:hover .documents-block__certificate-icon {
    opacity: 1
}

.terms {
    padding-bottom: 80px
}

.terms-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.terms-block p {
    line-height: 147%
}

.terms-block h1, .terms-block h2 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 16px
}

.terms-block h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 12px
}

.terms-block h4 {
    font-size: 18px;
    font-weight: 400
}

.terms-block li, .terms-block ol, .terms-block ul {
    list-style: inside;
    list-style-position: outside
}

.terms-block ul.alpha li {
    list-style: lower-alpha
}

.terms-block ol.decimal li {
    list-style: decimal
}

.terms-block ol, .terms-block ul {
    margin: 10px 0;
    padding-left: 24px
}

.terms-block li {
    line-height: 20px
}

.terms-block li b {
    margin-right: 5px
}

.header.market .header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 98px
}

.header.market .header-left .header-buttons {
    margin-top: 0;
    gap: 9px
}

.header.market .header-left .header-buttons .header-buttons__button {
    min-width: 159px
}

.market-overview {
    width: 100%;
    padding-top: 72px;
    padding-bottom: 58px
}

.market-overview .main__title {
    font-size: 25px;
    margin: 22px 0 31px;
    text-align: center
}

.market-overview__block {
    width: 100%;
    display: grid;
    grid-template-columns:337px auto;
    grid-gap: 12px
}

.market-overview__column, .market-overview__columns {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.market-overview__columns {
    gap: 12px
}

.market-overview__column {
    padding: 20px;
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(0, 0, 0, .47);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25)
}

.market-overview__column-title {
    color: #fff;
    font-family: var(--font-second);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 21px;
    text-transform: uppercase
}

.market-overview__column-icon {
    position: absolute;
    width: 33px;
    height: 33px;
    right: 20px;
    top: 15px
}

.market-overview__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
}

.market-overview__list-item {
    width: 100%;
    align-items: center;
    display: grid;
    gap: 4px;
    grid-template-columns:1fr 1fr 62px
}

.market-info__currency {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: normal
}

.market-info__currency-icon {
    width: 30px;
    height: 30px;
    min-width: 30px
}

.market-info__tag, .market-info__text {
    color: #fff;
    font-size: 14px;
    font-weight: 400
}

.market-info__text {
    line-height: 16px;
    word-break: break-word
}

.market-info__tag {
    line-height: normal;
    height: 22px;
    min-width: 62px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-radius: 5px
}

.market-info__tag.green {
    background: #007a47
}

.market-info__tag.red {
    background: #760000
}

.market-info__tag.gray {
    background: #787878
}

.market-overview__group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.market-overview__buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.market-overview__buttons .button {
    height: 32px;
    width: unset;
    padding: 0 24px;
    border-radius: 25px;
    font-size: 14px;
    color: #838383;
    background: 0 0;
    min-width: 110px
}

.market-overview__buttons .button.active, .market-overview__buttons .button:hover {
    background: var(--color-accent);
    color: #fff
}

.market-overview__buttons .button.active {
    cursor: default
}

.market-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(0, 0, 0, .47);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    padding: 20px
}

.market-table__header {
    width: 100%;
    padding: 0 7px;
    display: grid;
    grid-template-columns:.8fr .6fr .5fr .8fr .8fr;
    gap: 8px;
    margin-bottom: 12px
}

.market-table__header-text {
    color: #8f8f8f;
    font-size: 12px;
    font-weight: 400
}

.market-table__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
}

.market-table__list-item {
    width: 100%;
    padding: 6px 7px;
    display: grid;
    grid-template-columns:.8fr .6fr .5fr .8fr .8fr;
    align-items: center;
    border-radius: 10px;
    gap: 8px;
    border: .2px solid #343434;
    background: rgba(0, 0, 0, .11);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25)
}

.trading-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
}

.trading-content__row {
    width: 100%;
    display: grid;
    gap: 12px
}

.trading-content__row.type-1 {
    grid-template-columns:551px auto
}

.trading-content__row.type-2 {
    grid-template-columns:788px auto
}

.trading-stats {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 10px;
    background: rgba(0, 0, 0, .47);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25)
}

.trading-stats__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    height: 119px;
    padding: 24px 10px 24px 24px
}

.trading-stats__item:nth-child(1), .trading-stats__item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .5)
}

.trading-stats__item:nth-child(1), .trading-stats__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.trading-stats__item-icon {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 12px
}

.trading-stats__item-name {
    color: #fff;
    font-size: 12px;
    font-weight: 400
}

.trading-stats__item-value {
    color: #fff;
    font-size: 15px;
    font-weight: 600
}

.trading-content__block {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(0, 0, 0, .47);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.trading-content__block-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px
}

.trading-content__block-header .market-overview__column-title {
    margin-bottom: 0
}

.market-table.assets {
    border: unset
}

.market-table.assets .market-table__header {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 15px;
    margin-bottom: 9px
}

.market-table.assets .market-table__header-text {
    color: #fff
}

.market-table.assets .market-table__header, .market-table.assets .market-table__list-item {
    grid-template-columns:.7fr .6fr 1fr 1fr
}

.trading-chart__arrows, .trading-content__column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
}

.trading-chart__arrows {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 43px;
    margin: 16px 0 12px
}

.trading-chart__arrows svg {
    cursor: pointer;
    position: relative;
    right: unset;
    user-select: none
}

.trading-chart__arrows svg path {
    opacity: 1;
    transition: .3s
}

.trading-chart__arrows svg:hover path {
    opacity: .6
}

.trading-content__column.chart .market-overview__buttons {
    margin-top: 0;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 4px;
    margin-bottom: 0
}

.trading-content__column.chart .market-overview__buttons::-webkit-scrollbar {
    height: 4px
}

.trading-content__column.chart .trading-chart__block {
    width: 100%
}

.trading-chart__block, .trading-chart__header {
    width: 100%;
    display: flex;
    align-items: flex-start
}

.trading-chart__block {
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(0, 0, 0, .47);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25)
}

.trading-chart__header {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 16px
}

.trading-chart__canvas {
    width: 100%;
    height: 400px
}

.trading-chart__header-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.trading-chart__header-column:nth-child(2) {
    align-items: flex-end
}

.trading-chart__header .market-info__currency {
    gap: 11px;
    font-size: 17px
}

.trading-chart__header .market-info__currency-icon {
    width: 50px;
    height: 50px;
    min-width: 50px
}

.trading-chart__header-value {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px
}

.controls, .controls-group {
    display: flex;
    flex-direction: row;
    align-items: center
}

.controls {
    padding-top: 7px;
    row-gap: 12px
}

.controls-group {
    gap: 8px;
    margin-left: 8px;
    margin-right: 16px
}

.controls-item, .controls-markers {
    display: flex;
    align-items: center;
    color: #fff;
    line-height: normal;
    cursor: pointer
}

.controls-item {
    font-size: 14px;
    transition: .3s;
    position: relative;
    flex-direction: column;
    background: unset;
    font-weight: 500
}

.controls-item.active, .controls-item:hover {
    color: var(--color-accent)
}

.controls-item.active::before {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    display: block;
    content: "";
    background: var(--color-accent)
}

.controls-markers {
    background: #b50000;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    height: 36px;
    width: 156px;
    border-radius: 32px
}

.controls-markers .on {
    display: inline-flex
}

.controls-markers .off, .controls-markers.gray .on {
    display: none
}

.controls-markers.disabled {
    pointer-events: none
}

.controls-markers.gray {
    background: #787878
}

.controls-markers.gray .off {
    display: inline-flex
}

.trading-chart__header-column .last-data {
    margin-top: 18px
}

.trading-chart__header-column .last-data__item {
    margin-right: 10px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.trading-chart__header-column .last-data__item:last-child {
    margin-right: 0
}

.trading-chart__header-column .last-data__item span {
    color: var(--color-accent);
    font-weight: 500
}

.trading-content__block.capital {
    height: 100%
}

.trading-content__block.capital .trading-content__block-header {
    margin-bottom: 26px
}

.trading-capital__header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px
}

.trading-capital__header-buttons {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 4px
}

.trading-capital__header-button {
    background: rgba(137, 137, 137, .04);
    width: 50px;
    height: 32px;
    border-radius: 25px;
    color: #838383;
    font-size: 12px;
    font-weight: 400;
    transition: .3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.trading-capital__header-button.active, .trading-capital__header-button:hover {
    background: var(--color-accent);
    color: #fff
}

.trading-capital__header-button.active {
    cursor: default
}

.trading-capital__header-value {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: normal
}

.trading-capital__chart {
    width: 100%;
    height: 400px;
    margin-top: 16px
}

.trading-content__block .market-table {
    background: 0 0;
    box-shadow: unset;
    padding: unset
}

.trading-content__block .market-info__currency {
    gap: 7px
}

.trading-content__block .market-info__currency-icon {
    width: 20px;
    height: 20px;
    min-width: 20px
}

.trading-content__block .market-info__tag {
    min-width: 47px
}

.market-table.deals {
    border: unset
}

.market-table.deals .market-table__list {
    min-height: 150px;
    justify-content: center
}

.market-table.deals .market-table__header, .market-table.deals .market-table__list-item {
    grid-template-columns:80px repeat(2, 1fr) 100px repeat(4, 1fr)
}

.trading-content__block-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 44px
}

.trading-content__block-group .pagination {
    padding: 0;
    gap: 24px
}

.trading-content__block-group .pagination .pag-num {
    color: #fff;
    transition: .3s
}

.trading-content__block-group .pagination .pag-num.active, .trading-content__block-group .pagination .pag-num:hover:not(.ellipsis) {
    color: var(--color-accent-hover)
}

.trading-content__export {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1
}

.trading-content__export-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    background: var(--color-accent);
    width: 159px;
    height: 36px;
    cursor: pointer;
    border-radius: 25px;
    transition: .3s
}

.trading-content__export-button:hover {
    background: var(--color-accent-hover)
}

.trading-content__export-button svg {
    transition: .3s
}

.trading-content__export-list {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    border-radius: 0 0 25px 25px;
    background: #7b0000;
    box-shadow: 0 8px 16.5px 0 rgba(0, 0, 0, .06);
    padding: 24px 16px 16px;
    top: 24px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: .3s
}

.trading-content__export.active .trading-content__export-list {
    visibility: visible;
    opacity: 1
}

.trading-content__export-item {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    cursor: pointer
}

.trading-content__export-item:hover {
    text-decoration: underline
}

.market-table.log {
    border: unset
}

.market-table.log .market-table__list {
    min-height: 150px;
    justify-content: center
}

.market-table.log .market-table__header, .market-table.log .market-table__list-item {
    grid-template-columns:repeat(4, 1fr)
}

.market-table.log .market-table__list {
    max-height: 273px;
    overflow-y: scroll;
    margin-right: -8px;
    width: calc(100% + 8px);
    padding-right: 8px
}

.market-table.log .market-table__list::-webkit-scrollbar {
    width: 4px
}

.button.presentation, .roadmap {
    display: flex;
    flex-direction: row;
    align-items: center
}

.button.presentation {
    gap: 14px;
    width: 209px;
    padding: 10px 0;
    background: #520000;
    transition: .3s;
    position: absolute;
    bottom: 0;
    right: 35px
}

.button.presentation:hover {
    background: var(--color-accent)
}

.roadmap {
    width: 100%;
    justify-content: center;
    padding-bottom: 113px;
    position: relative
}

.roadmap .wrapper {
    flex-direction: column;
    align-items: flex-start
}

.roadmap-bg {
    position: absolute;
    bottom: 0;
    z-index: -1
}

.roadmap-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px
}

.roadmap-slider {
    width: 100vw;
    left: calc(((100vw / 2) - (1280px / 2)) * -1);
    padding: 0 calc((100vw / 2) - 635px) 0 calc(((100vw / 2) - (1280px / 2))) !important;
    display: flex;
    flex-direction: row;
    align-items: center
}

.roadmap-slider .swiper-slide {
    width: auto
}

.roadmap-slide {
    justify-content: space-between;
    height: 365px;
    width: 309px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    position: relative;
    background: url("") no-repeat;
    background-size: cover;
    transition: .3s;
    padding: 46px 24px 36px
}

.roadmap-slide .button:hover, .roadmap-slide:hover {
    border-color: var(--color-accent)
}

.roadmap-slide.shown {
    width: 635px
}

.roadmap-slide::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1
}

.roadmap-slide.color-1::before {
    background: linear-gradient(180deg, #000 0, #101010 100%)
}

.roadmap-slide.color-2::before {
    background: linear-gradient(180deg, #300003 0, #101010 100%)
}

.roadmap-slide.color-3::before {
    background: linear-gradient(180deg, #420004 0, #101010 100%)
}

.roadmap-slide.color-4::before {
    background: linear-gradient(180deg, #482600 0, #101010 100%)
}

.roadmap-slide, .roadmap-slide__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.roadmap-slide__info-title {
    color: #000;
    -webkit-text-stroke: 1px #fff;
    font-family: var(--font-second);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 159%;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center
}

.roadmap-slide__info-star {
    margin-left: 12px;
    margin-bottom: 4px
}

.roadmap-slide__info-text {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 147%;
    margin-top: 11px
}

.roadmap-slide__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding-left: 17px;
    overflow: hidden
}

.roadmap-slide__list.hidden {
    display: none
}

.roadmap-slide__list-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative
}

.roadmap-slide__list-item::before {
    content: url("");
    position: absolute;
    left: -17px;
    top: 3px;
    height: 10px;
    width: 10px;
    line-height: 10px;
    display: flex
}

.roadmap-slide .button {
    width: 140px;
    height: 45px;
    background: 0 0;
    border: 1px solid #fff
}

.roadmap-slide .button:hover {
    background: var(--color-accent)
}

.roadmap-nav, .roadmap-row {
    display: flex;
    flex-direction: row;
    align-items: center
}

.roadmap-row {
    margin-top: 40px;
    width: 100%;
    justify-content: space-between;
    padding-right: 130px;
    gap: 32px
}

.roadmap-nav {
    position: relative
}

.roadmap-nav__arrow {
    width: 27px;
    height: 27px;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
    transition: .3s
}

.roadmap-nav__arrow.swiper-button-disabled {
    opacity: .6;
    pointer-events: none
}

.roadmap-row__text {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 147%;
    max-width: 650px
}

.roadmap-nav .swiper-pagination {
    position: relative;
    bottom: unset !important;
    margin: 0 24px
}

.roadmap-nav .swiper-pagination-bullet {
    width: 19px;
    height: 19px;
    border: 1px solid #9d9d9d;
    background: 0 0;
    opacity: 1;
    margin: 0 4px
}

.roadmap-nav .swiper-pagination-bullet-active {
    background: #9d9d9d
}

.team-hero {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    background: url("../images/hero-bg.webp");
    overflow: hidden;
    padding-top: 86px;
    margin-top: -86px;
    padding-bottom: 67px
}

.team-hero .wrapper {
    position: relative
}

.team-hero .main__title {
    width: 100%;
    text-align: center
}

.team-hero__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 33px;
    margin-top: 42px
}

.team-hero__row-img {
    max-width: 581px;
    min-width: 581px;
    width: 100%;
    border-radius: 10px
}

.team-hero__row-text {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 147%
}

.team-members {
    width: 100%;
    position: relative;
    overflow: hidden
}

.team-members__decor:nth-child(1), .team-members__decor:nth-child(2) {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: -1
}

.team-members__decor:nth-child(2) {
    bottom: 50%
}

.team-members__grid {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    padding-top: 88px;
    padding-bottom: 95px;
    row-gap: 90px;
    column-gap: 163px
}

.team-members__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.team-members__item-img {
    border-radius: 10px;
    width: 100%
}

.team-members__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 8px;
    position: relative;
    gap: 30px;
    padding: 36px 8px 10px
}

.team-members__item-content::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, #000 50%, #101010 99.81%)
}

.team-members__item-text {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 147%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical
}

.team-members__item-text.shown {
    -webkit-line-clamp: unset
}

.team-members__item-more {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    cursor: pointer
}

.team-members__item-arrow {
    width: 17px;
    height: 8px;
    transition: .3s ease-out
}

.team-members__item-more:hover .team-members__item-arrow {
    transform: translateX(5px)
}

.team-staff {
    width: 100%;
    padding: 65px 0 61px;
    background: #0a0a0a
}

.team-staff .wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.team-staff__decor {
    position: absolute;
    width: 100%;
    z-index: 0;
    bottom: -61px
}

.team-staff__grid {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    grid-column-gap: 46px;
    grid-row-gap: 54px;
    position: relative;
    z-index: 1
}

.team-staff__item, .team-staff__item-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.team-staff__item-header {
    gap: 5px;
    border-radius: 29px;
    background: linear-gradient(90deg, #680000 0, #0a0a0a 104.33%);
    padding: 13px 0 12px 12px
}

.team-staff__item-name, .team-staff__item-place {
    width: 100%;
    font-weight: 700;
    line-height: 147%;
    display: flex;
    flex-direction: row
}

.team-staff__item-place {
    align-items: center;
    justify-content: space-between;
    color: #ff2b2b;
    font-size: 25px
}

.team-staff__item-name {
    color: #fff;
    font-size: 17px;
    font-style: normal;
    gap: 8px;
    text-align: right
}

.team-staff__item-name span:nth-child(1) {
    text-align: left;
    min-width: 171px
}

.team-staff__item .team-members__item-text {
    margin: 15px 0 18px;
    -webkit-line-clamp: 5
}

.team-staff__item .team-members__item-text.shown {
    -webkit-line-clamp: unset
}