@import url("css2.css");

:root {
    --col1: #010c23;
    --col2: #2196f3;
}

@font-face {
    font-family: 'Airborne Pilot';
    src: url("AirbornePilot.woff2") format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #2196f3;
}

::-webkit-scrollbar-track {
    background: #021a3f;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--col1);
}


@keyframes float {

    0%,
    to {
        transform: translatey(0)
    }

    50% {
        transform: translatey(-10px)
    }
}


*,
::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
}

.footer-social__icons a img,
p {
    transition: .3s
}

html {
    background: var(--bg-color);

    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important
}

.wrapper,
body,
html {
    width: 100%;
    flex-direction: column;
}

/* body,
html {
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
} */

body,
button {

    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important
}

.wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    margin: 0 auto;
    z-index: 1;
}

.button,
body,
html {
    font-weight: 400;
    display: flex;
    transition: .3s;
    position: relative;
    background: #010c23;
    color: #fff;
    font-family: "Jura", sans-serif;
    height: 100%;
}

.button {
    padding: 10px 20px;
    background: #2196f3;
    color: #fff;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 0.3s ease-in-out;
    font-size: 11px;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-3px);
    background: #072159;
}



/* :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 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 4;
    background: #0f1111;
    padding: 0 5px;
    left: 18px;
    top: -7px
}

.main-input__headerName {
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #333;
    transition: .3s
}

.main-input__headerLink {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #0038ff;
    text-decoration: none
}

.main-input__headerLink:hover {
    text-decoration: underline
}

.main-input__footer {
    height: 55px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1
}

.main-input {
    width: 100%;
    height: 100%;
    outline: 0;
    padding-left: 20px;

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--font-color);
    background: var(--gradient-2);
    border-radius: 10px;
    transition: .3s
}

.main-input::placeholder {
    color: #888
}

.main-input__block.textarea .main-input {
    padding: 20px;
    min-height: 133px;
    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: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 27px;
    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: 128px
}

.main-input__captcha {
    height: 100%;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    border-right: 1px solid var(--col2)
}

.main-input__captchaText {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .05em;
    color: #fff;
    text-align: center
}

.main-input__captchaIcon {
    width: 80px;
    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 {
    width: 100%;
    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;

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #fff
}

.custom-checkbox+label a {
    margin-left: 5px;
    color: #fff;
    text-decoration: underline
}

.custom-checkbox+label::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 15px;
    background-size: 50% 50%;
    background: var(--gradient-3);
    margin-bottom: 2px;
    border: 1px solid #fff;
    border-radius: 2px
}

.custom-checkbox:checked+label::after {
    content: "";
    display: block;
    background: #2196f3;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    bottom: 7px;
    border-radius: 2px;
}

.header-start {
    width: 100%;
    z-index: 2;
    padding: 0 20px;
}

.header-start__logo-icon {
    width: 154px
}

.start {
    display: flex;
    align-items: center;
    justify-content: center
}

.start-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 525px;
    z-index: 1;
    gap: 25px;
}

.start-block__title {
    font-size: 34px;
    line-height: 100%;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.start-block__text {

    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #2196f3;
    backdrop-filter: blur(3px);
    /* background: #ffffff00; */
    padding: 10px 20px;
    border-right: 1px #2196f338 solid;
    border-left: 1px #2196f338 solid;
    border-radius: 5px;
}

.start-block__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px
}

.start-block__link {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #343434;
    transition: .3s
}

.start-block__link:hover,
a.footer-start__text:hover {
    color: var(--col2)
}

.start-bg,
.start-decor {
    position: fixed;
    z-index: -1
}

.start-decor.decor-1 {
    left: 0
}

.start-decor.decor-2 {
    right: 0
}

.start-bg {
    z-index: -2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.start-white .start-block__link,
.start-white .start-block__text,
.start-white .start-block__title {
    color: #fff
}

.start-white .start-block__link:hover {
    text-decoration: underline
}

.start-block__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.start-block__row-running {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: var(--gradient-1);
    padding: 9px 22px;
    border: 1px solid #fff;
    box-shadow: 3px 3px 8px -2px rgba(234, 234, 234, .69);
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #2196f3
}

.footer-start {
    /* background: var(--gradient-main); */
    backdrop-filter: blur(9px);
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    background: #000e2600;
    margin-top: auto;
}

.footer-start__block,
.footer-start__text {
    display: flex;
    flex-direction: row;
    align-items: center
}

.footer-start__block {
    justify-content: space-between;
}

.footer-start__text {

    font-weight: 400;
    font-size: 14px;
    line-height: 172.2%;
    color: #fff;
    transition: .3s
}

.footer-start__social-item:hover .footer-start__social-icon,
a.footer-start__text:hover img {
    filter: var(--color-main-filter)
}

.footer-start__text img {
    margin-right: 5px;
    width: 13px;
    height: 13px;
    transition: .3s
}

.footer-start__phone {
    margin-right: 45px
}

.footer-start__social {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.footer-start__social-item {
    display: flex;
    flex-direction: column;
    align-items: center
}

.footer-start__social-icon {
    min-height: 13px;
    transition: .3s;
    /* filter: invert(15%) sepia(13%) saturate(45%) hue-rotate(314deg) brightness(92%) contrast(83%) */
}

.footer-start__social-text {

    font-weight: 400;
    font-size: 10px;
    color: #616161;
    margin-top: 7px
}

.footer-start__social-item:hover .footer-start__social-text {
    color: var(--col2)
}

.footer-start__data,
.footer-start__links {
    display: flex;
    flex-direction: row;
    align-items: center
}

.footer-start__data {
    gap: 45px;
    margin: 0 55px
}

.footer-start__links {
    gap: 12px
}

.footer-start__social-item:nth-child(1) img {
    width: 24px
}

.footer-start__social-item:nth-child(2) img,
.footer-start__social-item:nth-child(3) img {
    width: 19px
}

.footer-start__social-item:nth-child(4) img {
    width: 27px
}

.footer-start__mobile {
    display: none
}

.header,
.header .wrapper,
.header-logo__link {
    display: flex;
    align-items: center
}

.header {
    width: 100%;
    flex-direction: column;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(9px);
    border-bottom: 1px solid #fff;
    background: var(--gradient-1)
}

.header .wrapper {
    width: 100%;
    height: 56px;
    flex-direction: row;
    justify-content: space-between
}

.header-logo__link {
    justify-content: center
}

.header-logo {
    width: 100px;
    height: 32.24px
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav__item {
    color: #fff;
    font-size: 14px;
    padding: 5px 25px;
    background: #2196f317;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: block;
}

.header-nav__item_foot {
    color: #fff;
    font-size: 14px;
    padding: 5px 17px;
    background: #2196f317;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    border: 1px #ffffff24 solid;
}

.header-nav__item_foot:hover {
    color: #6cb7f3;
    transform: translateY(-3px);
}

.header-nav__item:hover {
    background: #2196f3;
}

/* .header-exit:hover .header-exit__text,
.header-nav__item.active,
.header-nav__item:hover {
    color: var(--col2)
} */

.header-exit {
    display: flex;
    flex-direction: row;
    align-items: center
}

.header-exit__icon {
    margin-left: 7px;
    transition: .3s
}

.header-exit__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: var(--font-color)
}

.header-exit:hover .header-exit__icon {
    filter: var(--color-main-filter)
}

.ham,
.header-burger,
.header-mobile__wrapper {
    display: none
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: -14px
}

.hamRotate.active {
    transform: rotate(45deg)
}

.hamRotate180.active {
    transform: rotate(180deg)
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 5.5;
    stroke-linecap: round
}

.ham4 .bottom,
.ham4 .top {
    stroke-dasharray: 40 121
}

.ham4.active .bottom,
.ham4.active .top {
    stroke-dashoffset: -68px
}

.main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center
}

.container {
    padding: 21px 0;
    width: 100%;
    display: grid;
    grid-template-columns: 241px minmax(auto, 873px);
    grid-gap: 12px;
    align-items: flex-start
}

.aside {
    width: 100%;
    /* background: var(--gradient-1); */
    padding: 27px 25px;
    border-radius: 10px;
    backdrop-filter: blur(9px);
    border: 1px solid #fff;
    max-width: 273px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    max-height: 514px;
}

.aside-nav,
.aside-nav__link {
    width: 100%;
    display: flex;
    align-items: center
}

.aside-nav {
    flex-direction: column;
    gap: 6px;
}

.aside-nav__link {
    /* height: 38px; */
    flex-direction: row;
    background: linear-gradient(45deg, #ffffff, #bfd6f2);
    border-radius: 10px;
    transition: .3s;
    padding-left: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #343434;
    padding: 12px 20px;
}

.aside-nav__link.active {
    background: var(--col2);
    color: #fff;
}

.aside-nav__link:hover {
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .15);
    color: #000;
}

.aside-nav__link.active:hover {
    box-shadow: unset;
    cursor: default
}

.aside-nav__link-decor {
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px
}

.main__text,
.main__title {
    font-weight: 400;
    color: var(--font-color);
    position: relative;
    z-index: 1
}

.main__title {

    font-size: 45px;
    line-height: 54px;
    text-align: left;
    transition: .3s
}

.main__text {
    font-size: 15px;
    line-height: 26px
}

.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 0;
    background: var(--gradient-1);
    backdrop-filter: blur(9px);
    border-top: 1px solid #fff
}

.footer .wrapper {
    width: 100%;
    justify-content: center
}

.footer .wrapper .footer-start__phone {
    margin-right: 91px
}

.footer .wrapper,
.footer-row,
.footer-row__block {
    display: flex;
    flex-direction: row;
    align-items: center
}

.footer-row__block:first-child {
    margin-right: 109px
}

.footer-row__block-icon {
    margin-right: 9px;
    transition: .3s
}

.footer-row__block-text {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #000;
    transition: .3s
}

.footer-row__block:hover .footer-row__block-icon,
.footer-social__icons a:hover img {
    filter: var(--color-main-filter)
}

.footer-row__block:hover .footer-row__block-text,
a.breadcrumbs-item:hover {
    color: var(--col2)
}

.footer-row.social {
    margin-left: 78px;
    align-items: flex-end
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.footer .footer-start__social-text {
    font-weight: 400;
    font-size: 10px
}

.footer-social .footer-start__social-text {
    margin-top: 0
}

.footer-social__icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px
}

.footer-social__icons a:first-child img {
    width: 22px;
    height: 21px
}

.footer-social__icons a:last-child img {
    width: 29px;
    height: 19px
}

.footer .footer-start__social {
    gap: 9px;
    margin-left: 34px
}

.footer .footer-start__social .footer-start__social-icon {
    width: 22px
}

.decoration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1
}

.decoration-img.mobile {
    display: none
}

.form-block,
.form-block__form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%
}

.form-block {
    height: calc(100% + 60px);
    /* background: rgba(255, 255, 255, .6); */
    backdrop-filter: blur(9px);
    z-index: 1;
    margin-top: -60px;
    justify-content: center;
    padding: 30px 0;
}

.form-block__form {
    min-height: unset;
    margin: 0 auto;
    flex-direction: column;
    padding: 45px;
    /* background: var(--gradient-4); */
    /* box-shadow: 4px 6px 17px rgba(0, 0, 0, .04); */
    border-radius: 10px;
    max-width: 904px;
    backdrop-filter: blur(1px);
    background: #010c239c;
    border: 1px #2196f333 solid;
}

.form-block__form-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #448bcd;
    text-align: center
}

.form-block__form .custom-checkbox__block {
    margin-bottom: 31px;
    justify-content: center
}

.form-block__form-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin: 25px 0 30px
}

.reg-block__sure {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 13px 24px;
    border-radius: 10px;
    /* background: var(--gradient-1); */
    background: #2196f3;
    color: #fff;
}

.reg-block__sure a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.reg-block__sure a:hover {
    color: #000;
}

.reg-block__sure-link,
.reg-block__sure-text {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px
}

.reg-block__sure-text {
    color: #ffffff;
    margin-bottom: 4px
}

.reg-block__sure-link {
    color: #448bcd
}

.form-block__form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.form-block__form-return {
    position: absolute;
    right: 21px;
    top: 17px
}

.form-block__form-close {
    width: 16px;
    height: 15px
}

.form-block__form.login {
    max-width: 414px
}

.form-block__form-grid.login {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    grid-auto-flow: unset
}

.form-link {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    margin-top: 17px
}

.form-link:hover {
    text-decoration: underline
}

.form-block__form.small {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 347px;
    padding: 20px 12px
}

.form-block__form-icon {
    width: 63px;
    height: 63px;
    margin-bottom: 13px
}

.form__text {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #fff;
    margin: 29px 0 32px;
    max-width: 305px
}

.breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding-left: 24px;
    margin-bottom: 23px
}

.breadcrumbs-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #343434;
    transition: .3s
}

p.breadcrumbs-item {
    font-weight: 700
}

.breadcrumbs.white .breadcrumbs-item {
    color: #fff
}

.investors {
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investors-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 8px 43px;
    background: var(--gradient-3);
    backdrop-filter: blur(9px);
    border-radius: 10px;
    transition: .3s
}

.investors-item:hover {
    transform: scale(1.2);
    position: relative;
    z-index: 1
}

.investors-item__header {
    display: flex;
    flex-direction: row;
    align-items: center
}

.investors-item__number {
    /* border: 1px solid #fff; */
    /* box-shadow: 3px 3px 8px -2px rgba(234, 234, 234, .69); */
    border-radius: 30px;
    background: var(--col2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
    color: #ffffff;
    width: 25px;
    height: 25px;
    margin-right: 12px;
}

.investors-item__name {
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #448bcd;
    margin-right: 34px
}

.investors-item__time {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #448bcd
}

.investors-item__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 35px 0 19px 58px
}

.investors-item__list-item {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #343434;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center
}

.investors-item__list-item::before {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #448bcd;
    position: absolute;
    left: -12px
}

.investors-item__tip {
    display: block;
    border: 1px solid #fff;
    box-shadow: 3px 3px 8px -2px rgba(234, 234, 234, .69);
    border-radius: 10px;
    background: var(--gradient-3);
    max-width: 312px;
    width: 100%;
    padding: 6px;

    font-weight: 300;
    font-size: 10px;
    line-height: 12px;
    color: #343434;
    margin: 0 auto;
    text-align: center
}

.investors-calculator {
    border-radius: 10px;
    width: 100%;
    padding: 34px 38px 43px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 45px auto 77px;
    z-index: 1;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.investors-calculator__inputs {
    width: 100%;
    display: grid;
    grid-template-columns: .6fr .8fr .8fr 1fr;
    grid-template-rows: 33px;
    flex-direction: row;
    align-items: center;
    grid-gap: 20px
}

.investors-calculator__input,
.investors-calculator__inputs-select {
    height: 100%;
    outline: unset;
    /* border: 1px solid rgba(255, 255, 255, .8); */
    box-shadow: 3px 3px 8px -2px rgba(134, 134, 134, .69);
    border-radius: 30px;
    padding-left: 25px;
    /*  */
    font-weight: 400;
    font-size: 13px;
    font-family: "Jura", sans-serif;
    color: #000;
    line-height: 29px;
}

[onchange="isRight(this);"]::placeholder {
    color: #000 !important;
}

.investors-calculator__inputs-select {
    line-height: 15px;
    color: #000000;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgb(255 255 255) url("") no-repeat;
    background-position-x: 90%;
    background-position-y: 14px;
}

.investors-calculator__input {
    /* background: var(--gradient-3); */
    /* color: #222; */
}

.investors-calculator__input::placeholder {
    color: #797979
}

.investors-calculator__inputs-block {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    line-height: 29px;
    padding-left: 25px;
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 3px 3px 8px -2px rgba(134, 134, 134, .69);
    border-radius: 20px;
    background: #fff;
    color: #222;
    font-size: 13px;
}

.investors-calculator__button {
    width: 152px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #448bcd;
    border: 1px solid #fff;
    border-radius: 10px;

    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    margin: 33px 0 38px
}

.investors-calculator__button:hover {
    background: #2583c5
}

.investors-calculator__data {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 19px
}

.investors-calculator__data-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #fff
}

.investors-calculator__data-text span {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px
}

.decoration-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1
}

.referral {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

}

.referral-block {
    max-width: 652px;
    width: 100%;
    min-height: 230px;
    position: relative;
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    background: var(--gradient-3);
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center
}

.referral-block__text {

    font-weight: 400;
    font-size: 14px;
    line-height: 185.2%;
    color: #343434;
    max-width: 424px
}

.referral-block__icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    animation: float 3s ease-in-out infinite
}

.referral-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    /* background: var(--gradient-3); */
    padding: 24px 36px 30px 41px;
    margin-bottom: 0;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.referral-table__header {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 180px;
    margin-bottom: 19px;
    padding: 0 20px 0 40px;
}

.referral-table__header-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #448bcd;
    text-align: center
}

.referral-table__item {
    width: 100%;
    height: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    grid-gap: 30px;
    margin-bottom: 9px;
    background: #fff;
    border-radius: 10px;
    padding-left: 22px;
}

.referral-table__item:last-child {
    margin-bottom: 0
}

.referral-table__item-cell {
    display: flex;
    flex-direction: row;
    align-items: center
}

.referral-table__item-cell .investors-item__number {
    margin-right: 0;
    min-width: 33px
}

.referral-table__item-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 14px
}

.referral-table__item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 12px;
    color: #000;
    text-align: center;
    white-space: nowrap;
    white-space: nowrap;
}

.referral-table__item-text.blue {
    color: #448bcd;
    margin-top: 2px
}

.about-blue,
.about-columns::before {
    position: absolute;
    width: 100%;
    left: 0;
    display: block;
    border-radius: 10px
}

/* .about-blue {
    top: 46px;
    z-index: -2;
    height: 741px;
    background: linear-gradient(97.18deg, #73a0f7 3.65%, #1752c5 99.32%);
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .15)
} */


.news_b {
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
}


.swiper-slide .blog-block__item {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    background: var(--gradient-3);
    flex-direction: column;
}

.swiper-slide .blog-block__item-img {
    width: 100%;
    object-fit: cover;
    height: auto;
    /* border-top-left-radius: 10px; */
    /* border-top-right-radius: 10px; */
    padding: 8px;
    border-radius: 35px;
}

.about-blue {
    top: 46px;
    z-index: -2;
    height: 741px;
    /* background: linear-gradient(97.18deg, #73a0f7 3.65%, #1752c5 99.32%); */
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .15);
}

.about-block {
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    background: var(--gradient-1);
    padding: 20px 192px 54px 21px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 753px;
    width: 100%;
    margin-left: 24px;
    position: relative;
    margin-top: 45px
}

.about-block__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: #448bcd;
    margin-bottom: 26px
}

.about-block__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 185.19%;
    color: #343434
}

.about-block__icon {
    position: absolute;
    right: -40px;
    bottom: -54px;
    animation: float 3s ease-in-out infinite
}

.about-columns {
    margin: 37px auto 33px;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .15);
    border-radius: 10px;
    position: relative;
    max-width: 1068px;
    width: 100%;
    padding: 33px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 56px
}

.about-columns::before {
    content: "";
    z-index: -1;
    top: 0;
    height: 100%;
    background: #fff
}

.about-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 197px;
    width: 100%
}

.about-column__number {
    width: 40px;
    height: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 3px 3px 8px -2px rgba(134, 134, 134, .69);
    border-radius: 10px;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.about-column__list-item::before,
.about-column__number::before {
    position: absolute;
    content: "";
    opacity: .6;
    box-shadow: 3px 3px 8px -2px rgba(134, 134, 134, .69);
    background: var(--gradient-3)
}

.about-column__number::before {
    z-index: -1;
    width: 50px;
    height: 50px;
    border-radius: 10px
}

.about-column__list {
    backdrop-filter: blur(9px);
    border-radius: 10px;
    padding: 19px 17px 39px 11px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
}

.about-column__list.list-1 {
    background: var(--gradient-4)
}

.about-column__list.list-2 {
    background: linear-gradient(297.01deg, #2d8af9 -1.26%, rgba(255, 255, 255, .8) 101.36%)
}

.about-column__list.list-3 {
    background: linear-gradient(297.01deg, #77b6ff -1.26%, rgba(255, 255, 255, .8) 101.36%)
}

.about-column__list-item {

    font-weight: 400;
    font-size: 10px;
    line-height: 185.19%;
    color: #343434;
    position: relative;
    padding-left: 24px
}

.about-column__list-item::before {
    width: 15px;
    height: 15px;
    left: 0;
    top: 3px;
    border-radius: 3px
}

.contact {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
    gap: 80px;
}

.contact-social,
.contact-social__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 173px;
    width: 100%;
    justify-content: center;
}

.contact-social__block.another:first-child {
    margin-bottom: 40px;
    background: #2196f3;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.contact-social__block.another:last-child {
    margin-top: 40px;
    background: #2196f3;
    padding: 20px;
    border-radius: 10px;
    color: #fff;

}

.contact-form__success br,
.contact-social__block.hidden {
    display: none
}

.contact-social__block-row,
.contact-social__block-title {
    /*  */
    font-weight: 700;
    font-size: 14px;
    line-height: 172.2%;
    color: #ffffff;
    margin-bottom: 14px;
    width: 100%;
}

.contact-social img {
    filter: brightness(7.5);
}

.contact-social__block-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    transition: .3s
}

.contact-social__block-row:hover {
    /* color: var(--col2); */
    transform: translateY(-3px);

}

.contact-social__block-row:last-child {
    margin-bottom: 0
}

.contact-social__block-row.margin {
    margin-top: 44px
}

.contact-form.success,
.contact-social__block-img {
    display: flex;
    align-items: center;
    justify-content: center
}

.contact-social__block-img {
    width: 18px;
    height: 18px;
    margin-right: 5px
}

.contact-form {
    /* margin-left: 100px; */
    max-width: 535px;
    width: 100%;
    padding: 53px 50px;
    /* background: var(--gradient-1); */
    box-shadow: 4px 6px 17px rgba(0, 0, 0, .04);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.contact-form__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--col2);
}

.contact-form__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 27px 0 21px
}

.contact-form.success {
    height: 516px
}

.contact-form__success {
    font-weight: 700;
    font-size: 30px;
    line-height: 172.2%;
    text-align: center;
    color: #448bcd
}

.faq,
.main-faq__btns {
    align-items: flex-start
}

.faq {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
}

.main-faq__btn.active {
    background: #2195f300 !important;
    /* border: 1px #2196f333 solid; */
    backdrop-filter: blur(9px);

}

.main-faq__tabItem .active {
    color: #fff !important;
}

.main-faq__btns {
    max-width: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .15);
    border-radius: 10px;
    gap: 4px;
    z-index: 1;
}

.main-faq__btn {
    font-weight: 400;
    /* font-size: 15px; */
    line-height: 15px;
    color: #fff;
    cursor: pointer;
    transition: unset;
    background: #2196f3;
    padding: 20px 20px;
    width: 100%;
    border-radius: 10px;
    border: 1px;
    border: 1px #2196f333 solid;
}

.main-faq__tabs {
    width: 100%
}

.main-faq__tab {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.main-faq__tab.active {
    display: flex
}

.main-faq__tabItem {
    width: 100%;
    /* border: 1px solid #fff; */
    backdrop-filter: blur(9px);
    border-radius: 10px;
    /* background: var(--gradient-3); */
    transition: .3s;
    border: 1px #2196f333 solid;
}

.main-faq__tabItemHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px;
    transition: .3s;
}

.main-faq__tabItemText,
.main-faq__tabItemTitle {
    /*  */
    font-size: 16px;
    /* line-height: 185.2%; */
}

.main-faq__tabItemTitle {
    /* font-weight: 600; */
    color: #ffffff;
    margin-right: 39px;
    transition: .3s;
}

.main-faq__tabItemText {
    font-weight: 400;
    color: #2196f3;
    display: none;
    padding: 0 73px 15px 24px;
    transition: unset;
}

.main-faq__tabItemIcon {
    transition: .3s
}

.main-faq__tabItem.active .main-faq__tabItemIcon {
    transform: rotate(180deg)
}

.about-blue.short {
    height: 379px
}

.blog-page {
    margin-top: 12px;
    flex-direction: column
}

.blog-page,
.blog-page__block,
.blog-page__header {
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.news_img {
    max-width: 123px;
}

.news_img img {
    width: 100%;
}

.blog-page__block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    padding: 20px 63px;
    border-radius: 20px;
    margin: -14px 0 60px 0;
    gap: 20px;
    flex-direction: column;
}

.blog-page__header {
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 16px;
}

.blog-page__header-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 93%;
    color: #fff;
    text-align: center;
    margin: 0 0 10px 0;
}

.blog-page__header-date {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #fff
}

.blog-page__img {
    width: 100%;
    height: 234px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 60px
}

/* .blog-page__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #ffffff;
} */

.blog-page__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #ffffff;
    max-width: 934px;
    padding: 0 20px;
}

.academy {
    width: 100%;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.academy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    /* background: var(--gradient-3); */
    padding: 30px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.academy-item__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px
}

.academy-item__header .investors-item__number {
    margin-right: 23px;
    margin-left: -10px
}

.academy-item__header-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
}

.academy-item__img {
    width: 100%;
    height: 159px;
    object-fit: cover;
    border-radius: 10px
}

.stats {
    width: 100%;
    padding-left: 10px;
    z-index: 1;
}

.stats-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 14px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
}

.stats-block__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .05);
    border-radius: 10px;
    /* background: var(--gradient-3); */
    padding: 10px 0 10px 28px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.stats-block__item-name {
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    margin-bottom: 2px
}

.stats-block__item-value {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
}

.stats-columns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px
}

.stats-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.stats-column__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 13px;
}

.stats-column__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .05);
    border-radius: 10px;
    /* background: var(--gradient-3); */
    padding: 32px 30px 10px 21px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.stats-column__header {
    width: 100%;
    /* display: grid; */
    /* grid-template-columns: minmax(auto, 126px) minmax(auto, 120px) minmax(auto, 87px) auto; */
    /* padding-bottom: 13px; */
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stats-column__header::after,
.stats-column__item::after {
    content: "";
    width: calc(100% + 20px);
    position: absolute;
    left: -10px;
    bottom: 0;
    /* background: #e6e6e629; */
    height: 1px;
}

.stats-column__header-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #ffffff;
}

.stats-column__item {
    width: 100%;
    /* display: grid; */
    /* grid-template-columns: minmax(auto, 126px) minmax(auto, 120px) minmax(auto, 87px) auto; */
    /* height: 68px; */
    align-items: center;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    /* background: #000; */
}

.stats-column__item::after {
    width: calc(100% - 50px);
    left: 25px
}

.stats-column__item:last-child::after {
    display: none
}

.stats-column__item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
}

.stats_vob img {
    width: 20px;
}

.stats-column__item-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center
}

.documents {
    width: 100%;
    padding-left: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 67px;
    margin-bottom: 40px;
    z-index: 1;
    justify-content: space-between;
}


.documents-block__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 151.2%;
    color: #ffffff;

}

.documents-block__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px
}

.documents-block__row-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #2196f3;
    margin-left: 25px;
}

.documents-placeholder {
    max-width: 317px;
    width: 100%;
    padding: 20px 16px;
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    background: var(--gradient-2);
}

.documents-placeholder__img,
.documents-placeholder__link {
    width: 100%
}

.pag-num,
.pagination {
    display: flex;
    align-items: center;
    justify-content: center
}

.pagination {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px
}

.pag-num {
    width: 32px;
    height: 32px;
    background: var(--gradient-3);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 3px 3px 8px -2px rgba(134, 134, 134, .69);
    border-radius: 10px;

    font-weight: 500;
    font-size: 10px;
    line-height: 185.2%;
    color: #448bcd;
    transition: .3s;
    cursor: pointer
}

.pag-num.active,
.pag-num:hover {
    background: var(--gradient-4);
    color: #fff
}

.pag-num.arrows {
    width: unset;
    height: unset;
    background: unset;
    box-shadow: unset;
    border: unset
}

.pag-num.arrows:first-child {
    margin-right: 13px
}

.pag-num.arrows:last-child {
    margin-left: 13px
}

.pagination.cab {
    margin: 0 auto
}

.pagination .page-item,
.pagination .page-item a {
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center
}

.pagination .page-item {
    width: 32px;
    height: 32px;
    background: var(--gradient-3);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 3px 3px 8px -2px rgba(134, 134, 134, .69);
    border-radius: 10px;
    cursor: pointer
}

.pagination .page-item a {
    font-weight: 500;
    font-size: 14px;
    line-height: 185.2%;
    color: #ffffff;
    height: 100%;
    width: 100%;
}

.pagination .page-item:first-child {
    margin-right: 13px;
    width: unset;
    height: unset;
    background: unset;
    box-shadow: unset;
    border: unset
}

.pagination .page-item:last-child {
    margin-left: 13px;
    width: unset;
    height: unset;
    background: unset;
    box-shadow: unset;
    border: unset
}

.pagination .page-item:first-child:hover,
.pagination .page-item:last-child:hover {
    width: unset;
    height: unset;
    background: unset;
    box-shadow: unset;
    border: unset
}

.pagination .page-item.active,
.pagination .page-item:hover {
    background: var(--gradient-4);
    color: #fff
}

.dashboard-block .pagination {
    margin: 0 auto
}

.dashboard-block .pagination .page-item:first-child .page-link,
.dashboard-block .pagination .page-item:last-child .page-link {
    color: #fff
}

.blog {
    width: 100%;
    z-index: 1;

}

.blog-block {
    width: 100%;
    /* display: grid; */
    /* grid-template-columns: repeat(13, 1fr); */
    grid-template-areas: "a a b b c c"
        "d d d e e e";
    grid-column-gap: 17px;
    grid-row-gap: 15px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

/* .blog-block__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    background: var(--gradient-3)
} */
.blog-block__item {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    background: var(--gradient-3);
}

.blog-block__item:nth-child(1) {
    grid-area: a
}

.blog-block__item:nth-child(2) {
    grid-area: b
}

.blog-block__item:nth-child(3) {
    grid-area: c
}

.blog-block__item:nth-child(4) {
    grid-area: d
}

.blog-block__item:nth-child(5) {
    grid-area: e
}

/* .blog-block__item-link {
    width: 100%
} */

.blog-block__item-link {
    max-width: 200px;
    width: 100%;
}

/* .blog-block__item-img {
    width: 100%;
    object-fit: cover;
    height: 113px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
} */

.blog-block__item-img {
    width: 100%;
    object-fit: cover;
    height: auto;
    /* border-top-left-radius: 10px; */
    /* border-top-right-radius: 10px; */
    padding: 20px;
    border-radius: 35px;
}

.blog-block__item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 23px 14px
}

.blog-block__item-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6px
}

.blog-block__item-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    color: #343434;
    margin-right: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.blog-block__item-date {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #343434;
    text-align: right
}

.blog-block__item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 158.2%;
    color: #343434;
    margin-right: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-block__item-text span {
    width: 70%
}

.blog-block__item-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: .3s
}

.about-blue.big {
    height: calc(100% - 46px)
}

.bounty {
    width: 100%;
    padding-left: 24px
}

.bounty-block__style {
    background: linear-gradient(292.5deg, #639fe7 -5.66%, rgba(200, 219, 242, .939302) 32.07%, rgba(219, 230, 242, .910575) 49.93%, rgba(245, 250, 255, .880402) 68.69%, rgba(255, 255, 255, .853965) 85.12%, rgba(255, 255, 255, .831124) 99.32%, rgba(255, 255, 255, .8) 115.47%);
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px
}

.bounty-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 25px
}

.bounty-section__text {

    font-weight: 400;
    font-size: 14px;
    line-height: 166.19%;
    color: #343434
}

.bounty-section__dollar {
    position: absolute;
    right: -5px;
    bottom: -35px;
    animation: float 3s ease-in-out infinite
}

.bounty-text {

    font-weight: 600;
    font-size: 14px;
    line-height: 166.19%;
    color: #fff;
    margin: 25px 0 35px
}

.bounty-text span {
    font-weight: 400;
    font-size: 12px
}

.bounty-partner {
    padding: 22px 22px 27px 48px;
    max-width: 415px;
    margin-bottom: 50px
}

.bounty-partner__decor {
    position: absolute;
    right: -25px;
    top: -20px;
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s
}

.bounty-partner__link,
.bounty-section__title {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    color: #448bcd
}

.bounty-partner .bounty-section__title {
    margin-bottom: 30px
}

.bounty-partner__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: .3s;
    color: #343434;
    margin-bottom: 17px
}

.bounty-partner__link:last-child {
    margin-bottom: 0
}

.bounty-partner__link:hover,
.bounty-section__text a {
    color: var(--col2)
}

.bounty-partner__link:hover .bounty-partner__link-icon {
    filter: var(--color-main-filter)
}

.bounty-partner__link-icon {
    margin-right: 22px;
    transition: .3s
}

.bounty-section.tip {
    padding: 12px 25px 11px;
    margin-bottom: 56px
}

.bounty-section.tip .bounty-section__text {
    font-size: 16px;
    line-height: 19px
}

.bounty-section__text a:hover {
    text-decoration: underline
}

.bounty-section.short {
    max-width: 563px
}

.bounty-section .button {
    max-width: unset;
    width: auto;
    padding: 12px 24px;
    position: relative;
    z-index: 1
}

.bounty-section__links {
    margin: 18px 0
}

.bounty-section.short .button {
    margin-top: 23px
}

.bounty-section.short .bounty-partner__decor {
    left: -20px;
    bottom: -25px;
    top: unset
}

.bounty-section__rows {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 26px 0 34px;
    padding-right: 80px
}

.bounty-section__row {
    display: flex;
    flex-direction: row;
    align-items: center
}

.bounty-section__row .investors-item__number {
    margin-right: 13px;
    min-width: 33px
}

.bounty-section__pig {
    position: absolute;
    right: 43px;
    top: 130px;
    animation: float 3s ease-in-out infinite;
    animation-delay: .5s
}

.bounty-section__selfie {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 25px 0 34px;
    padding-right: 40px
}

.bounty-section__selfie-block,
.page-404 {
    display: flex;
    align-items: center;
    justify-content: center
}

.bounty-section__selfie-block {
    border: 1px solid #fff;
    box-shadow: 3px 3px 8px -2px rgba(234, 234, 234, .69);
    border-radius: 10px;
    background: var(--gradient-3);
    width: 53px;
    min-width: 53px;
    height: 53px;
    margin-right: 22px
}

.page-404 {
    width: 100%;
    min-height: 100%;
    flex-direction: column;
    padding: 0 0 30px
}

.page-404__number,
.page-404__text {
    background-color: #a6cfff;
    background-image: var(--gradient-3);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 200px;
    line-height: 244px
}



.page-404__text {
    font-size: 50px;
    line-height: 61px
}

.dashboard-block {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.chang_now {
    overflow-x: scroll;
    max-width: 685px;
    cursor: pointer;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}


.chang_now::-webkit-scrollbar {
    width: 8px;
}

.chang_now::-webkit-scrollbar-thumb {
    background: #2196f3;
}

.chang_now::-webkit-scrollbar-track {
    background: #010f27;
}


.calendartablebg [src="/assets/img/icons/crypto/69.svg"] {
    width: 58%;
    height: auto;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50px;
    padding: 3px;
}

.inp_fl {
    padding: 5px 10px;
    border-radius: 28px;
    text-align: center;
    font-size: 12px;
}

.ex_bt {
    padding: 5px 20px !important;
}

.inp_fl_0 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.inp_fl_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.inp_fl_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    border-radius: 10px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    padding: 10px 20px;
    width: 100%;
}

.successs {
    transform: translate(0, 29px);
    margin: 0 0 20px 0;
}
.radio_bt {
    /* height: 138%; */
    left: 0;
    cursor: pointer;
    background: #000;
    display: block;
    opacity: 2;
    /* position: absolute; */
    top: 5px;
    zoom: 2;
    /* width: 100px; */
    left: 18px;
}

.radio-custom {
    background: #0038ff;
}

.radio_mix {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

[name="exchange_form"] {
    width: 100%;
}


/* ***************** */




.main-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    z-index: 1;
}

.container_dash {
    padding: 0;
    width: 100%;
    display: flex;
    gap: 15px;
    margin: 63px 0 63px 0;
}

.dashboard-block__content {
    flex-direction: column;
    position: relative;
    z-index: 2
}

.dashboard-block__content,
.dashboard-header,
.dashboard-news {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.swiper {
    margin-left: auto;
    margin-right: inherit !important;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    max-width: 208px;
    width: 100%;
}

.dashboard-news {
    flex-direction: column;
    gap: 16px
}

.dashboard-news .blog-block__item {
    width: 100%
}

.dashboard-news .blog-block__item-title {
    transition: .3s
}

.dashboard-news .blog-block__item-title:hover,
.deposits-block__item-text a,
.security-block__qr-text a,
.withdraw-row__item-data a {
    color: var(--col2)
}

.deposits-block__item-text a {
    color: #fff !important;
}

#deposit_result_div {
    display: none;
}

.dashboard-news .blog-block__item-content {
    padding: 16px 19px 15px 14px
}

.dashboard-news .blog-block__item-header {
    margin-bottom: 0
}

.dashboard-news .swiper-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.dashboard-news .swiper-slide {
    height: auto
}

.dashboard-news .swiper-pagination.one {
    bottom: 0;
    height: 16px
}

.dashboard-news .swiper-pagination-bullet {
    opacity: .5;
    border-radius: 2px;
    width: 16px;
    height: 16px;
    background: var(--gradient-3);
    transition: .3s
}

.dashboard-news .swiper-pagination-bullet-active {
    opacity: 1
}

.dashboard-header {
    width: 100%;
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    /* background: var(--gradient-1); */
    padding: 15px;
    flex-direction: row;
    justify-content: space-between;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    color: #fff;
}

.dashboard-header__user {
    display: flex;
    flex-direction: row;
    align-items: center
}

.dashboard-header__user-avatar {
    width: 47px;
    height: 47px;
    background: var(--col2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #fff
}

.dashboard-header__user-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    color: #ffffff;
    margin-left: 14px;
    line-break: anywhere;
    max-width: 62px
}

.dashboard-header__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 29px;
    padding-top: 6px
}

.dashboard-header__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px
}

.dashboard-header__name,
.dashboard-header__value {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #ffffff;
}

.dashboard-header__value {
    font-weight: 500
}

.dashboard-header__value.bold {
    font-weight: 700
}

.dashboard-header__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 6px
}

.dashboard-header__column-row {
    gap: 7px
}

.dashboard-header__column-row,
.dashboard-header__input-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}

.dashboard-header__input-icon {
    margin-right: 8px;
    min-width: 15px;
    filter: brightness(15.5);
}

.dashboard-header__input {

    background: 0 0;
    border: unset;
    font-weight: 400;
    font-size: 14px;
    line-height: 10px;
    color: #ffffff;
    width: 100%;
    outline: unset;
}

.dashboard-header__input-button {
    margin-left: 7px;
    background: var(--col2);
    border-radius: 10px;
    width: 45px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 8px;
    line-height: 10px;
    color: #fff;
    transition: .3s;
    cursor: pointer
}

.dashboard-confirmation__buttons.payment input[type=button]:hover,
.dashboard-confirmation__buttons.payment input[type=submit]:hover,
.dashboard-header__input-button:hover {
    background: var(--color-main-hover)
}

.block {
    /* background: var(--gradient-1); */
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.dashboard-page {
    width: 100%;
    padding: 16px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
    
}

.dashboard-page__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 9px;
    grid-row-gap: 7px;
    margin-bottom: 20px;
}

.bt_marg {
    margin: 0 0 20px 0;
}

.dashboard-page__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    background: var(--gradient-2);
    padding: 6px 15px 6px 10px
}

.dashboard-page__item-icon {
    width: 30px;
    height: 30px
}

.dashboard-page__item-value {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #000
}

.dashboard-page__row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
}

.dashboard-page__text {
    /*  */
    font-weight: 300;
    font-size: 14px;
    line-height: 137.69%;
    color: #ffffff;
}

.dashboard__title {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #fff;
    margin: 14px 0 7px
}

.dashboard-confirmation {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashboard-confirmation__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.dashboard-confirmation__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px
}

.dashboard-confirmation__item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.dashboard-confirmation__item:nth-child(odd) {
    border-bottom: 1px solid #fff;
    backdrop-filter: blur(9px);
    background: var(--gradient-1)
}

.dashboard-confirmation__item:nth-child(even) {
    border-bottom: 1px solid #fff;
    backdrop-filter: blur(9px);
    background: var(--gradient-3)
}

.dashboard-confirmation__item-name,
.dashboard-confirmation__item-value {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #000;
}

.dashboard-confirmation__item-value {
    color: #000;
    text-align: right
}

.dashboard-confirmation .button {
    max-width: 140px;
    width: 100%;
    margin: 14px 22px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-confirmation__buttons {
    width: 100%;
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    padding: 14px 22px 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.dashboard-confirmation__buttons .button {
    margin: unset
}

.dashboard-confirmation__buttons.payment {
    grid-template-columns: 1fr
}

.dashboard-confirmation__buttons.payment a {
    word-break: break-word;
    color: var(--col2)
}

.dashboard-confirmation__buttons-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 40px;
    gap: 16px
}

.dashboard-confirmation__buttons-row .button {
    width: 80px
}

.dashboard-confirmation__buttons.payment a:hover,
.deposits-block__item-text a:hover,
.security-block__qr-text a:hover,
.withdraw-row__item-data a:hover {
    color: var(--color-main-hover)
}

.dashboard-confirmation__buttons.payment img {
    margin: 16px 0;
    height: 150px;
    width: 150px
}

.dashboard-confirmation__buttons.payment input[type=button],
.dashboard-confirmation__buttons.payment input[type=submit] {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    background: var(--col2);

    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
    outline: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative
}

.dashboard-confirmation__buttons.payment form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.withdraw-row__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 19px
}

.withdraw-row__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px 12px
}

.withdraw-row__item-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: rgb(33 150 243);
    margin-bottom: 10px;
}

.withdraw-row__item-value {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
}

.withdraw-row__item-data {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px
}

.withdraw-row__item-icon {
    margin-top: 2px
}

.withdraw-form {
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.withdraw-form__balance {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    height: 38px;
    margin: 0 0 10px 0;
}

.dashboard-select {
    position: relative;
    display: block;
    height: 100%
}

.dashboard-select__header {
    width: 68px;
    min-width: 68px;
    height: 100%;
    justify-content: space-between;
    background: var(--gradient-1);
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    position: relative;
    z-index: 3;
    padding: 0 0 0 7px
}

.dashboard-select__header,
.dashboard-select__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    transition: .3s
}

.dashboard-select__items .dashboard-select__item:hover {
    transform: scale(1.1)
}

.dashboard-select__item-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
    opacity: 1
}

.dashboard-select__header-icon {
    position: absolute;
    right: 16px;
    transform: rotate(0deg);
    transition: .3s
}

.dashboard-select__items-wrapper {
    position: absolute;
    top: 45px;
    width: 68px;
    z-index: 3;
    display: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .04);
    background: var(--gradient-1);
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px
}

.dashboard-select__items {
    padding: 7px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px
}

.dashboard-select__items .dashboard-select__item,
.withdraw-form__balance-block {
    display: flex;
    flex-direction: column;
    align-items: center
}

.dashboard-select.active .dashboard-select__header-icon {
    transform: rotate(180deg)
}

.withdraw-form__balance-block {
    align-items: flex-start;
    margin-left: 10px
}

.withdraw-form__balance-name {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: rgba(52, 52, 52, .43);
    margin-bottom: 2px
}

.withdraw-form__balance-value {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #343434
}

.withdraw-form__amount {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    height: 38px;
    margin: 13px 0 16px
}

.withdraw-form__amount-input,
.withdraw-form__amount-name {
    height: 100%;

    font-weight: 400
}

.withdraw-form__amount-name {
    min-width: 68px;
    background: var(--gradient-1);
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 12px;
    color: rgba(52, 52, 52, .43)
}

.withdraw-form__amount-input {
    margin-left: 10px;
    width: 100%;
    background: unset;
    font-size: 14px;
    line-height: 14px;
    color: #343434;
    outline: unset
}

.withdraw-form .button {
    max-width: 162px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-form {
    max-width: 100%;
    padding: 9px;
    z-index: 2;
    width: 100%;
    justify-items: center;
    display: flex;
    gap: 7px;
}

.form_dep {
    width: 100%;
}

.deposit-form__balance {
    background: #fff;
    border-radius: 10px;
    height: 38px
}

.deposit-form__balance .dashboard-select__items-wrapper {
    top: unset;
    bottom: 45px
}

.deposit-form__balance,
.deposit-form__balance-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 8px;
    /* text-align: center; */
}

.deposit-form__balance-name {
    color: rgba(52, 52, 52, .43);
    margin: 0 12px 0 15px
}

.deposit-form__balance-name,
.deposit-form__balance-value,
.deposit-form__input {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px
}

.deposit-form__balance-value {
    color: #343434
}

.deposit-form__input {
    height: 38px;
    background: #fff;
    border-radius: 10px;
    padding: 0px 8px;
    outline: unset;
    font-family: "Jura", sans-serif;
    text-align: center;
}

.deposit-form__switch {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #fff;
    border-radius: 10px
}

.deposit-form__switch-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 12px;
    color: #343434;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 0 10px;
    text-align: center;
}

.deposit-form__switch-item.active,
.deposit-form__switch-item.active:hover {
    background: var(--gradient-3);
    border: 1px solid var(--col2)
}

.deposit-form__switch-item:hover {
    background: #f6f7fc
}

.deposit-form .button {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposits-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px
}

.deposits-item,
.deposits-item__block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* height: 131px; */
    padding: 20px;
}

.deposits-item__block {
    height: 100%;
    /* background: var(--gradient-1); */
    /* border: 1px solid #fff; */
    backdrop-filter: blur(9px);
    border-radius: 10px;
    min-width: 122px;
    width: 122px;
    flex-direction: column;
    justify-content: center;
    background: url("");
    background-size: 247px;
}

.deposits-item__block-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Airborne Pilot';
}

.deposits-item__block-percent {
    font-weight: 700;
    font-size: 15px;
    line-height: 17px;
    color: #2196f3;
    text-align: center;
}

.deposits-item__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* padding-left: 45px; */
    /* padding-right: 22px; */
    gap: 20px;
    padding: 0 25px;
}

.deposits-item__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.deposits-item__list-item {
    display: flex;
    flex-direction: row;
    align-items: center
}

.deposits-item__list-decor,
.deposits-item__list-decor::after {
    border: 1px solid #fff;
    box-shadow: 3px 3px 8px -2px rgba(234, 234, 234, .69);
    border-radius: 2px
}

.deposits-item__list-decor {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-3);
    position: relative
}

.deposits-item__list-decor::after {
    position: absolute;
    content: "";
    background: #448bcd;
    width: 6px;
    height: 6px
}

.deposits-item__list-text {
    margin-left: 5px;

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
}

.deposits-item__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px
}

.deposits-item__column-value {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
}

.deposits-item .button.active {
    border: 1px solid #fff;
    background: var(--gradient-3);
    color: #000;
    cursor: default;
    font-size: 11px;
}

.deposits-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 20px
}

.deposits-block__item {
    width: 100%;
    height: auto;
    min-height: 53px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    position: relative
}

.deposits-block__item-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.deposits-block__item-cell:nth-child(1)::before,
.deposits-block__item-cell:nth-child(2)::before,
.deposits-block__item-cell:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 0;
    width: calc(25% - 5px);
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    border: 1px solid #fff;
    backdrop-filter: blur(9px)
}

.deposits-block__item-cell:nth-child(2)::before,
.deposits-block__item-cell:nth-child(3)::before {
    width: calc(50% - 5px);
    opacity: .4
}

.deposits-block__item-cell:nth-child(3)::before {
    width: calc(75% + 10px)
}

.deposits-block__item-cell.row {
    display: flex;
    flex-direction: row;
    padding: 5px 0;
    align-items: center;
    justify-content: center;
}

.deposits-block__item-name,
.deposits-block__item-text {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-align: center;
}

.deposits-block__item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
    word-break: break-word;
}

.deposits-block__item-icon {
    width: 16px;
    /* height: 17px; */
}



.deposits-block__item :nth-child(1).deposits-block__item-cell p {
    color: #000;
    font-size: 13px;
}

.deposits-block__item :nth-child(2).deposits-block__item-cell p {
    color: #000;
    padding: 20px 13px;
    margin-right: 22px;
    font-size: 13px;
}

.deposits-block__item :nth-child(3).deposits-block__item-cell p {
    color: #fff;
    padding: 0px;
    font-size: 13px;
    margin: 0 19px 0 0;
}

.history-block__items .deposits-block__item :nth-child(2).deposits-block__item-cell p {
    color: #ffffff;
    padding: 0;
    margin-right: 22px;
    font-size: 13px;
}


.history-find,
.history-row {
    width: 100%;
    margin-bottom: 15px
}

.history-find {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.history-row {
    gap: 11px;
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.history-column {
    backdrop-filter: blur(9px);
    border-radius: 10px;
    padding: 12px 10px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.history-column__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #ffffff;
    margin-bottom: 16px;
}

.history-find .button {
    border: 0;
    max-width: 100%;
    width: 100%;
    max-width: 61px;
}

.main-input__block.select {
    margin-bottom: 21px
}

.main-input__block.select.period {
    margin-bottom: 0
}

.history-column .main-input__footer {
    height: 38px
}

.history-column .main-input {

    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    padding-left: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url("")no-repeat;
    background-position-x: 84%;
    background-position-y: 17px
}

.history-column .main-input__block:nth-child(2) .main-input {
    background-position-x: 95%
}

.history-column .main-input__block.select.period .main-input__footer {
    width: 100%;
    grid-gap: 6px;
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.history-block__wrapper {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 5px
}

.history-block {
    width: 100%;
    padding: 16px
}

.history-block__header {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr .8fr;
    /* margin-bottom: -3px; */
    margin: 5px 0;
}

.refTabItem f.deposits-block__item-text {
    color: #fff;
}

.history-block__header-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #2196f3;
    padding-left: 20px;
}

.history-block__items .deposits-block__item {
    grid-template-columns: 1fr 1.4fr .8fr;
    height: auto;
    min-height: 38px
}

.history-block__items .deposits-block__item-cell:nth-child(1)::before {
    width: 31%
}

.history-block__items .deposits-block__item-cell:nth-child(2)::before {
    width: 75%
}

.history-block__items .deposits-block__item-cell:nth-child(3)::before {
    display: none
}

.history-block__items .deposits-block__item-cell {
    padding: 8px 8px 8px 20px;
    justify-content: flex-start
}

.history-block__items .deposits-block__item-text {
    margin-bottom: -1px
}

.history-block__items .deposits-block__item-icon {
    min-width: 22px;
    width: 22px;
    margin-right: 12px
}

.team-stats {
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px
}

.team-stats__item-text span,
.team-stats__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
}

.team-stats__title .inviter {
    font-size: 14px;
    margin-left: 15px;
    font-weight: 600;
    color: #ffffff;
}

[src="/assets/img/icons/check-blue.svg"],
[src="/assets/img/icons/cross-gray.svg"] {
    max-width: 17px !important;
}

.team-stats__title .inviter:hover {
    text-decoration: underline
}

.team-stats__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 16px
}

.team-stats__item {
    display: flex;
    flex-direction: row;
    align-items: center
}

.team-stats__item-icon {
    width: 27px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px
}

.team-stats__item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: rgb(33 150 243);
}

.team-stats__item-text span {

    font-weight: 600;
    line-height: 23px
}

.settings-block {
    width: 100%;
    margin-bottom: 16px;
    padding: 16px
}

.settings-block:last-child {
    margin-bottom: 0
}

.settings-block__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #2196f3;
    margin-bottom: 16px;
}

.settings-block__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 18px;
    grid-row-gap: 14px
}

.settings-block__grid-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.settings-block__grid-input,
.settings-block__grid-name {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #9d9d9d;
}

.settings-block__grid-input {
    height: 38px;
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
    line-height: 14px;
    outline: unset;
    background: #fff;
    border-radius: 10px;
    padding-left: 16px
}

.settings-block__grid-row {
    display: flex;
    flex-direction: row;
    align-items: center
}

.settings-block__grid-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    object-position: center;
    margin-right: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 3px;
}

.settings-block__grid-crypto {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #9d9d9d;
}

.settings-block .button {
    margin-top: 20px
}

.security-block {
    width: 100%;
    margin-bottom: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.security-block:last-child {
    margin-bottom: 0
}

.security-block__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #2196f3;
    margin-bottom: 16px;
}

.security-block__checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    grid-row-gap: 10px;
    grid-column-gap: 40px
}

.security-block__checkboxes .custom-checkbox+label {
    color: #ffffff;
}

.security-block__qr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.security-block__qr-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
}

.security-block__qr-text span {
    font-weight: 600
}

.security-block__qr-icon {
    width: 150px;
    height: 150px
}

.security-block__qr-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 22px
}

.security-block__qr-input {
    text-align: center;
    width: 162px;
    height: 40px;
    border-radius: 10px;
    outline: unset;
    background: var(--gradient-2);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #448bcd
}

.security-block__qr .security-block__checkboxes {
    grid-template-columns: 1fr;
    margin-bottom: 10px
}

.security-block__qr-row.enabled {
    margin-top: 12px
}

.main-referral__grid {
    width: 100%
}

.main-referral__grid .main__text {
    color: #fff;
    font-weight: 600
}

.main-referral__grid img {
    max-width: 100%
}

.main-referral__grid .main-input {
    margin-top: 10px;
    padding: 15px;
    resize: vertical;
    background: #fff;
    border-color: #e2e4ef
}

.main-referral__gridItem {
    /* background: #f4f5f9; */
    margin-bottom: 16px;
    padding: 15px;
    border-radius: 6px;
    /* border: 1px solid #fff; */
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.main-referral__gridItem:last-child {
    margin-bottom: 0
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.header-lang,
.header-lang__header {
    display: flex;
    flex-direction: column;
    position: relative
}

.header-lang::before {
    content: "";
    width: 100%;
    height: 115px;
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
    background: var(--gradient-1);
    border: 1px solid #fff;
    backdrop-filter: blur(9px);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.header-lang.active::before {
    opacity: 1;
    visibility: visible
}

.header-lang__header {
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    transition: .3s ease-in-out;
    height: 100%;
    padding: 0 13px 0 19px
}

.header-lang__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    text-transform: uppercase;
    color: var(--font-color)
}

.header-lang__header .header-lang__text {
    transition: .3s
}

.header-lang__icon {
    margin-left: 5px;
    transition: .3s
}

.header-lang.active .header-lang__icon {
    transform: rotate(180deg)
}

.header-lang__items-wrapper {
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 30px
}

.header-lang__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 19px;
    gap: 6px
}

.header-lang__item .header-lang__text {
    position: relative;
    transition: .1s;
    cursor: pointer
}

.header-lang__item:hover .header-lang__text {
    text-decoration: underline
}

.footer-phone__row {
    display: flex;
    flex-direction: row;
    align-items: center
}

.footer-phone__row .header-lang {
    display: none
}

.footer .wrapper .header-lang {
    margin-left: 60px
}

.footer .wrapper .header-lang__items-wrapper {
    bottom: 0;
    padding-bottom: 30px;
    padding-top: 0;
    top: unset
}

.footer .wrapper .header-lang::before {
    top: unset;
    bottom: -12px
}

/* TODO: */

.cont_cc {
    border-radius: 10px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    padding: 20px;
}

.login_in {
    margin: 50px 0 60px 0;
}

.start_icon_foot {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.fof {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;

}



svg {
    font-family: "Russo One", sans-serif;
    width: 100%;
    height: 100%;
}



svg text {
    animation: stroke 10s infinite alternate;
    stroke-width: 1;
    font-size: clamp(50px, 7vw, 120px);
    font-family: 'Airborne Pilot';
    text-wrap: balance;
}

@keyframes stroke {
    0% {
        fill: rgba(72, 138, 204, 0);
        stroke: rgba(54, 95, 160, 1);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 2;
    }

    70% {
        fill: rgba(72, 138, 204, 0);
        stroke: rgba(54, 95, 160, 1);
    }

    80% {
        fill: rgba(72, 138, 204, 0);
        stroke: rgba(54, 95, 160, 1);
        stroke-width: 3;
    }

    100% {
        fill: rgba(72, 138, 204, 1);
        stroke: rgba(54, 95, 160, 0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 10;
    }

}

.start_wapper {
    width: 100%;
}


[src="/assets/img/icons/crypto/69.svg"] {
    filter: contrast(0.5) brightness(3.5);
}

.dashboard-page__item>[src="/assets/img/icons/crypto/69.svg"] {
    filter: contrast(1.5) brightness(3.5) !important;
}
.dashboard-select__item>[src="/assets/img/icons/crypto/69.svg"] {
    filter: contrast(1.5) brightness(3.5) !important;
}
.settings-block__grid-row>[src="/assets/img/icons/crypto/69.svg"] {
    filter: contrast(1) brightness(1) !important;
}
.calendartablebg>[src="/assets/img/icons/crypto/69.svg"] {
    filter: contrast(1) brightness(1) !important;
}


.start_logo {
    width: 100%;
    z-index: 1;
}

.start_logo img {
    width: 100%;

}

#myVideo {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    top: 0;
}

/* Add some content at the bottom of the video/page */
.start {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;

}

.start_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}


a.neon-btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}

a.neon-btn:hover {
    color: #255784;
    background: #2196f3;
    box-shadow: 0 0 10px #2196f3, 0 0 40px #2196f3, 0 0 80px #2196f3;
    transition-delay: 0.3s;
}

a.neon-btn>span {
    position: absolute;
    display: block;
    animation-duration: 2.3s;
    animation-iteration-count: infinite;
    animation-direction: normal;
}

@keyframes left-to-right {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

a.neon-btn>span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2196f3);
    animation-name: left-to-right;
}

@keyframes right-to-left {
    from {
        right: -100%;
    }

    to {
        right: 100%;
    }
}

a.neon-btn>span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #2196f3);
    animation-name: right-to-left;
    animation-delay: 0.5s;
}

@keyframes top-to-bottom {
    from {
        top: -100%;
    }

    to {
        top: 100%;
    }
}

a.neon-btn>span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #2196f3);
    animation-name: top-to-bottom;
    animation-delay: 0.25s;
}

@keyframes bottom-to-top {
    from {
        bottom: -100%;
    }

    to {
        bottom: 100%;
    }
}

a.neon-btn>span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #2196f3);
    animation-name: bottom-to-top;
    animation-delay: 0.75s;
}

.start_menu_logo {
    max-width: 100px;
}

.start_menu_logo img {
    width: 100%;
}

.start_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 0 0;
    width: 100%;
}

.start_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #010c23;
    padding: 7px 20px 5px 20px;
    border-radius: 20px;
}

.footer_nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 5px;
}

.start_icon .fa-telegram {
    color: #ffffff;
    font-size: 19px;
    transition: all 0.3s ease-in-out;
}

.start_icon .fa-telegram:hover {
    color: #2196f3;
    font-size: 19px;
}

.start_day {
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    border-right: 1px #2196f338 solid;
    border-left: 1px #2196f338 solid;
    padding: 10px 30px;
    background: #2196f308;
    border-radius: 10px;
}

.start_day_mix {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.start_day_seo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: clamp(23px, 4vw, 30px);
    text-transform: uppercase;
    font-weight: 600;
}

.start_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 60px 0;
}

.start_percent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.start_percent_mix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1;
    margin: 25px 0 0 0;
}

.start_percent_mix a {
    padding: 10px 20px;
    background: #2196f3;
    color: #fff;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 0.3s ease-in-out;
}

.start_percent_mix a:hover {
    transform: translateY(-3px);
    background: #072159;
}

.start_percent_mix span {
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'Airborne Pilot';
    text-align: center;
}

.days {
    color: #2196f3;
}


.reff span {
    font-size: 1rem;

}

.reff a {
    padding: 10px 20px;
    background: #2196f300;
    color: #fff;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 0.3s ease-in-out;
    border: 1px #2196f3 solid;
}

.reff a:hover {
    background: #2196f300;
    opacity: 0.5;
}


.head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.start_img_mix {
    max-width: 375px;
    margin: 30px 0 0 0;
}

.start_img_mix img {
    width: 100%;
    filter: drop-shadow(0px 0px 20px #2196f350);
}

.start_img {
    z-index: 1;
}

.start_burger {
    display: none;
}

.nav_mobile {
    display: none;
}

.login_hight {
    height: 100vh;
    padding: 0;
}


.notification__close {
    background: scroll;
}

/* TODO: */

.start_link_foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.start_link_foot_mix {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.start_link_foot_mix a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.start_link_foot_mix a:hover {
    color: #2196f3;
    transform: translateY(-3px);
}

.interest_fx {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: space-between;

}

.interest {
    border-radius: 49px;
    text-align: center;
    border: 1px #2196f3 solid;
    /* padding: 20px; */
    padding: 10px 25px;
}

.start_text_foot {
    text-align: justify;
    font-size: 13px;
    background: #010c23bd;
    padding: 10px 20px;
    border-radius: 5px;
}

.foot_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.foot_logo span {
    background: #010c23;
    padding: 5px 10px;
    line-height: 100%;
}

.login_foot a {
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff;
    /* background: #010c23; */
    transition: all 0.3s ease-in-out;
    display: block;
    border: 1px #ffffff29 solid;
}

.login_foot a:hover {
    color: #2196f3;
    transform: translateY(-3px);

}

.foot_fl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.header-nav_foot {
    display: flex;
    align-items: center;
    gap: 3px;
    width: 100%;
    justify-content: space-between;
}

/* TODO: */


.start_contact {
    margin: 50px 0 40px 0;
}

.start_ref {
    margin: 50px 0 50px 0;
}

.start_invest {
    margin: 50px 0 0 0;
}

.invest_top {
    margin: 20px 0 15px 0;
}


/* ********************************* */

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

hr {
    border: 0;
    border-top: 1px solid;
    color: #2196f3;
    margin: 1rem 0;
    opacity: .25;
}

small {
    font-size: .875em;
}

a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

a:hover {
    color: var(--bs-link-hover-color);
}

img,
svg {
    vertical-align: middle;
}

.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)*-.5);
    margin-right: calc(var(--bs-gutter-x)*-.5);
    margin-top: calc(var(--bs-gutter-y)*-1);
}

.row>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%;
}

.col-auto {
    width: auto;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.g-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3 {
    --bs-gutter-x: 1rem;
}

.g-3 {
    --bs-gutter-y: 1rem;
}

@media (min-width:576px) {
    .col-sm-6 {
        width: 50%;
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

@media (min-width:768px) {
    .col-md-6 {
        width: 50%;
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .g-md-4 {
        --bs-gutter-x: 4.5rem;
    }

    .g-md-4 {
        --bs-gutter-y: 1.5rem;
    }
}

@media (min-width:992px) {
    .col-lg-auto {
        width: auto;
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }
}

@media (min-width:1200px) {
    .col-xl-6 {
        width: 100%;
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: center;
    display: flex;
    justify-content: center;
}

.m-0 {
    margin: 0 !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-2 {
    margin-right: .5rem !important;
}

.ms-2 {
    margin-left: .5rem !important;
}





a {
    color: #61ddf9;
    text-decoration: none;
}

a:active,
a:focus,
a:hover {
    text-decoration: none;
}

.svg-icon {
    height: 24px;
    width: 24px;
}


.button svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
}

.button--primary {
    background: #dd223f;
    border: 1px solid hsla(0, 0%, 100%, .15);
    color: #fff;
}

.button--primary:hover {
    background: #c71f39;
    color: #fff;
}

.button--primary svg {
    fill: #fff;
}

.button:active {
    -webkit-transform: scale(.98);
    -ms-transform: scale(.98);
    transform: scale(.98);
}

.section hr {
    border-top: 1px solid rgba(110, 133, 165, .3);
    opacity: 1;
}

/* .box-popular {
    color: #fff;
    overflow: hidden;
    position: relative;
} */

/* @media (max-width:1199.98px) {
    .box-popular {
        padding: 32px;
    }
} */


.invest_div {
    text-align: center;
}

.box-popular__title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.box-popular__title a {
    color: #2196f3;
    display: block;
    font-size: 52px;
    font-weight: 600;
    line-height: 95%;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-family: 'Airborne Pilot';
}

.box-popular__title small {
    color: #ffffff;
    font-size: clamp(0.8125rem, 4.8125rem, 0.8125rem);
    font-weight: 400;
    letter-spacing: .5em;
    line-height: 95%;
    /* opacity: .5; */
    text-transform: uppercase;
}

.box-popular__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.box-popular__list small {
    color: #bcc8d7;
    display: block;
    font-size: clamp(.875rem, calc(.875rem + .06472vw), .9375rem);
    margin-bottom: 4px;
}

.box-popular__list span {
    /* font-size: clamp(1rem, calc(1rem + .19417vw), 1.1875rem); */
    font-weight: 400;
}

.box-popular__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 36px;
    height: 100%;
    /* background: #000; */
    padding: 45px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    border-radius: 20px;
}

.box-popular__price {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgb(33 150 243);
    border-radius: 64px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: clamp(1.1875rem, calc(1.1875rem + .12945vw), 1.3125rem);
    font-weight: 400;
    justify-content: center;
    line-height: 140%;
    padding: 15px 42px;
}

.box-popular__list img {
    filter: hue-rotate(14deg);
}

.box-popular__price small {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
}

.box-popular__img {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    height: 400px;
    margin-left: -50px;
    width: 100%;
}

@media (max-width:767.98px) {
    .box-popular__img {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        height: auto;
        justify-content: center;
        margin-left: 0;
    }
}

.box-popular__img img {
    mix-blend-mode: luminosity;
}

@media (max-width:1199.98px) {
    .box-popular__img img {
        height: 550px;
        margin-left: -82px;
    }
}

@media (max-width:991.98px) {
    .box-popular__img img {
        margin-left: 0;
    }
}

@media (max-width:767.98px) {
    .box-popular__img img {
        height: 490px;
    }
}

@media (max-width:575.98px) {
    .box-popular__img img {
        height: 400px;
        margin-bottom: -50px;
        margin-left: 50px;
        margin-top: -50px;
    }
}

.box-popular__large {
    bottom: -25px;
    color: rgba(71, 160, 188, .06);
    font-size: 235px;
    font-weight: 600;
    left: -25px;
    line-height: 95%;
    position: absolute;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: -1;
}



.inves_plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}




.invest_p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    margin: 0 0 45px 0;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    padding: 20px;
    border-radius: 20px;
}



/* ********************************* */

.invest_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.history-block__items .deposits-block__item-cell {
    padding: 10px;
    justify-content: center;
}

.dep_now {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.dep_post {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.dep_post h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Airborne Pilot';
    text-align: center;
}

.reff_now {
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

.reff_img {
    max-width: 136px;
}

.reff_img img {
    width: 100%;
}

.reff_p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.invest_snop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.invest_snop h3 {
    font-size: clamp(30px, 4vw, 39px);
    text-transform: uppercase;
    font-family: 'Airborne Pilot';
    text-align: center;
}

.dep_inv {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stats_vob {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}

.start_stat {
    margin: 50px 0 60px 0;
}

.start_doc {
    margin: 50px 0 6px 0;
}

.start_acad {
    margin: 50px 0 50px 0;
}

.start_pass {
    margin: 81px 0 29px 0;
}

.about_main {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    justify-content: space-between;
    gap: 42px;
}

.pass_blur {
    backdrop-filter: blur(0);
}

.about_mix {
    max-width: 468px;
    z-index: 1;
}

.about_mix img {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 23px #2196f366);
}

.about_nex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 698px;
}

.start_about {
    margin: 50px 0 60px 0;
}

.acad {
    max-width: 400px;
}

.acad img {
    width: 100%;
}

.reg_topik {
    margin: 50px 0 60px 0;
}


.start_red {
    margin: 80px 0 0 0;
}

.start_news {
    margin: 52px 0 60px 0;
}

.refTabsWrap {
    display: flex;
    justify-content: space-between;
}

.refTab {
    display: inline-block;
    width: 100%;
    font-weight: 700;
    text-align: center;
    padding: 5px;
    margin: 3px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    border-radius: 5px;
    cursor: pointer;
}

.refTab.active {
    background: var(--col2);
}

.refTabItem {
    display: none;
}

#ref1 {
    display: block;
}

.refTabItem .deposits-block__item-text {
    color: #fff;
}


.news_colum {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.start_faq {
    margin: 50px 0 60px 0;
}

.dep_news {
    width: 100%;
}

.form_start_dep {
    width: 100%;
}

.dep_colunm {
    flex-direction: column;
    gap: 25px;
}

.dep_n {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about_nav_mix {
    position: relative !important;
}

.about_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.about_click_main {
    display: none;
}

.about_nav_mix span {
    transform: rotate(89deg);
    display: inline-block;
    margin: 0 0 0 3px;
}

.start_menu_nav2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.start_menu_nav2 .start-block__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.start_menu_nav2 .start-block__buttons a.neon-btn {
    position: relative;
    display: inline-block;
    padding: 6px 14px;
    color: #ffffff;
    text-transform: inherit;
    letter-spacing: 0px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
    font-size: 14px !important;
    font-weight: 600;
}

.about_nav a {
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    background: #2196f317;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    width: 100%;
    z-index: 3;
    backdrop-filter: blur(33px);
}

.about_nav a:hover {
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    background: #2196f3;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    width: 100%;
    z-index: 3;
}

.afer_reg {
    padding: 45px !important;
    margin-top: -27px !important;
}

.no_blur {
    backdrop-filter: blur(0) !important;
}


.academy {
    position: relative;

}


.big_acad {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    height: auto;
    position: absolute;
    top: 9%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
    border-radius: 67px;
}

.big_acad img {
    border-radius: 20px;
    width: 100%;
    padding: 19px;
    backdrop-filter: blur(10px);
    border: 3px #1c97f347 solid;
}

#box {
    display: none;
}

#box1 {
    display: none;
}

#box2 {
    display: none;
}

#box3 {
    display: none;
}

.comp_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    font-size: 15px;
}

[name="change_compound"] {
    margin: 0 auto;
    width: 100%;
}

.tab_11 {
    width: 100%;
}



.change_dep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.change_mix {
    background: #2196f3;
    color: #fff;
    padding: 1px 10px;
    border-radius: 10px;
    font-size: 11px;
    transition: all 0.3s ease-in-out;
}

.change_neo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.change_mic {
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    color: #fff;
    background: none;
}


.change_mix:hover {
    background: #2196f34d;
    color: #fff;
    padding: 1px 10px;
    border-radius: 10px;
    font-size: 11px;
}

.chang_kio {
    background: #2196f3;
    padding: 5px 15px;
    border-radius: 25px;
}

.chang_leo0 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
}

.chang_leo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
}

.chang_leo2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.calk_link {
    color: #fff;
    padding: 7px 15px;
    border: 1px #2196f3 solid;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.calk_link:hover {
    color: #2196f3;
    padding: 7px 15px;
    border: 1px #2196f3 solid;
    border-radius: 25px;
}

.chang_via {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.chang_sel {
    padding: 4px 8px;
    border-radius: 25px;
    border: 0;
    outline: 0;
}

.deposit-form__balance-valued {
    color: #000;
}

.form_dep_n {
    width: 100%;
}

.dep_cong {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#newElement {

    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #9d9d9d;

}

.wrapped {
    height: 38px;
    width: 100%;
    margin-top: 8px;
    font-size: 13px;
    line-height: 14px;
    outline: unset;
    background: #fff;
    border-radius: 10px;
    padding-left: 0;
    color: #515151;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ********************* */

table.iksweb {
    text-decoration: none;
    border-collapse: collapse;
    width: 100%;
    text-align: left;
}

table.iksweb th {
    font-weight: normal;
    font-size: 13px;
    color: #ffffff;
    background-color: #2196f3;
}

table.iksweb td {
    font-size: 13px;
    color: #ffffff;
}

table.iksweb td,
table.iksweb th {
    /* white-space: pre-wrap; */
    padding: 5px;
    line-height: 100%;
    vertical-align: middle;
    border: 1px solid #2196f34f;
}

/* table.iksweb tr:hover {
    background-color: #f9fafb
} */

table.iksweb tr:hover td {
    color: #e6e6e6;
    cursor: pointer;
}

.mobile-table {
    overflow-x: auto;
}


.from_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(9px);
    border: 1px #2196f333 solid;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0 0 0;
}

.from_box_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.img_crypto {
    max-width: 20px;
}

.from_box_crypto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.text_hid {
    width: 39px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 27px 0 0;
}

@media screen and (max-width: 885.98px) {

    .blog-block__item {
            display: flex;
            align-items: center;
            border: 1px solid #fff;
            backdrop-filter: blur(9px);
            border-radius: 10px;
            background: var(--gradient-3);
            flex-direction: column;
        }

    .settings-block .button {
            margin-top: 18px;
            max-width: 100%;
            width: 100%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .wrapped {
            height: 38px;
            width: 100%;
            margin-top: 8px;
            font-size: 13px;
            line-height: 14px;
            outline: unset;
            background: #fff;
            border-radius: 10px;
            padding-left: 0;
            color: #515151;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .from_box_row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-direction: column;
        }

    .from_box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(9px);
            border: 1px #2196f333 solid;
            border-radius: 10px;
            padding: 15px;
            margin: 10px 0 0 0;
            flex-direction: column;
        }

    .inp_fl_2 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 100%;
            border-radius: 10px;
            backdrop-filter: blur(9px);
            border: 1px #2196f333 solid;
            padding: 20px 0;
            width: 100%;
            flex-direction: column;
        }


    .chang_now {
            overflow-x: scroll;
            max-width: 100%;
            cursor: pointer;
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(9px);
            border: 1px #2196f333 solid;
        }

    .change_neo p {
        color: #fff;
    }

    .change_mic {
        backdrop-filter: blur(9px) !important;
        border: 1px #2196f333 solid !important;
        color: #fff !important;
        background: none !important;
    }

    .dep_n {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .dep_g {
        align-items: center;
    }

    .dashboard-block__content,
    .dashboard-header,
    .dashboard-news {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .big_acad img {
        border-radius: 20px;
        width: 100%;
        padding: 23px;
        backdrop-filter: blur(10px);
        border: 3px #1c97f347 solid;
    }

    .interest_fx {
        display: flex;
        align-items: center;
        gap: 9px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .swiper {
        margin-left: auto;
        margin-right: inherit !important;
        position: relative;
        overflow: hidden;
        list-style: none;
        padding: 0;
        z-index: 1;
        max-width: 100%;
        width: 100%;
        margin: 15px 0 0 0;
    }

    .deposit-form__switch {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        background: #fff;
        border-radius: 10px;
        width: 100%;
    }

    .deposit-form__balance,
    .deposit-form__balance-block {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0 8px;
        /* text-align: center; */
        width: 100%;
    }

    .deposit-form__input {
        height: 38px;
        background: #fff;
        border-radius: 10px;
        padding: 0px 8px;
        outline: unset;
        font-family: "Jura", sans-serif;
        text-align: center;
        width: 100%;
    }

    .deposit-form {
        max-width: 100%;
        padding: 9px;
        z-index: 2;
        width: 100%;
        justify-items: center;
        display: flex;
        gap: 7px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .deposit-form {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .dep_news {
        width: 100%;
    }

    .form_start_dep {
        width: 100%;
    }

    .history-block__items .deposits-block__item-cell {
        height: auto !important;
        background: unset;
        border: unset;
        backdrop-filter: unset;
    }

    .blog-page__block {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        /* backdrop-filter: blur(9px); */
        backdrop-filter: blur(9px);
        border: 1px #2196f333 solid;
        padding: 20px 20px;
        border-radius: 20px;
        margin: -14px 0 60px 0;
        flex-wrap: wrap;
    }

    .start_news {
        margin: 52px 0 13px 0;
    }

    .blog {
        width: 100%;
        /* padding-left: 24px; */
        z-index: 1;
        margin: 0;
    }

    .blog-block {
        width: 100%;
        /* display: grid; */
        /* grid-template-columns: repeat(13, 1fr); */
        grid-template-areas: "a a b b c c"
            "d d d e e e";
        grid-column-gap: 32px;
        grid-row-gap: 26px;
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
    }

    .dashboard-block {
        grid-template-columns: 1fr;
        margin-top: -20px;
        gap: 5px !important;
    }

    .start_pass {
        margin: 81px 0 -22px 0;
    }

    .start_row {

        margin: 0
    }

    .start_about {
        margin: 50px 0 0 0;
    }

    .about_main {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
        gap: 42px;
        flex-wrap: wrap;
        z-index: 2;
    }


    .academy-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid #fff;
        backdrop-filter: blur(9px);
        border-radius: 10px;
        /* background: var(--gradient-3); */
        /* padding: 11px 14px 18px 19px; */
        backdrop-filter: blur(9px);
        border: 1px #2196f333 solid;
        justify-content: center;
        padding: 25px 20px;
        width: 100%;
    }

    .academy {
        /* grid-template-columns: 1fr; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }



    .start_acad {
        margin: 50px 0 0 0;
    }

    .start_doc {
        margin: 135px 0 62px 0;
    }

    .start_doc {
        margin: 50px 0 5px 0;
    }

    .stats-block {
        grid-template-columns: 1fr;
        max-width: 100% !important;
    }

    .start_stat {
        margin: 50px 0 0 0;
    }

    .start_ref {
        margin: 50px 0 0 0;
    }

    .referral {
        gap: 40px !important;

    }



    .referral {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;

    }

    .reff_now {
        backdrop-filter: blur(9px);
        border: 1px #2196f333 solid;
        padding: 20px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        flex-direction: column;
        justify-content: center;
    }

    .deposits-items {
        margin-bottom: 0 !important;
    }

    .deposits-block__item-name,
    .deposits-block__item-text {
        font-weight: 700;
        font-size: 14px;
        color: #000000;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .deposits-block__item :nth-child(3).deposits-block__item-cell p {
        color: #000000;
        padding: 0px;
        font-size: 13px;
        margin: 0 19px 0 0;
    }

.deposits-block__item :nth-child(3).deposits-block__item-cell p {
    color: #ffffff;
    padding: 0px;
    font-size: 13px;
    margin: 3px 14px 0 0;
}
    .dashboard-header__column {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0px;
    }

    .dashboard-header__user {
        margin-bottom: 10px !important;
    }

    .deposits-item__block {
        height: 100%;
        /* background: var(--gradient-1); */
        /* border: 1px solid #fff; */
        backdrop-filter: blur(9px);
        border-radius: 10px;
        min-width: 122px;
        width: 122px;
        flex-direction: column;
        justify-content: center;
        background: url("");
        background-size: 425px;
    }

    .dashboard-header__row {
        margin-bottom: 0 !important
    }

    .deposits-item__column .button {
        max-width: 162px;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form_start {
        padding: 0 20px;
    }

    .deposit-form {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .deposits-item__column-value {
        font-weight: 800;
        font-size: 13px;
        line-height: 34px;
        color: #ffffff;
    }

    .deposits-item__column {
        display: flex;
        align-items: center;
        gap: 11px;
        justify-content: space-between;
        flex-direction: row;
    }

    .deposits-item__row {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
        padding: 0 25px;
    }


    .deposits-item,
    .deposits-item__block {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 131px;
        flex-wrap: wrap;
    }


    .tabs {
        width: 100%;
        padding: 0px;
        margin: 0 auto;
        margin: 15px 0 0 0;
    }

    .tabs>input {
        display: none;
    }

    .tabs>div {
        display: none;
    }

    .tabs>label {
        display: inline-block;
        padding: 10px 19px;
        margin: 0 2px 0 0;
        text-align: center;
        color: #ffffff;
        cursor: pointer;
        backdrop-filter: blur(9px);
        border: 1px #2196f333 solid;
    }

    .tabs>input:checked+label {
        color: #ffffff;
        /* border: 1px solid #C0C0C0; */
        /* border-bottom: 1px solid #FFFFFF; */
        background: #2196f3;
    }

    #tab_1:checked~#txt_1,
    #tab_2:checked~#txt_2,
    #tab_3:checked~#txt_3,
    #tab_4:checked~#txt_4 {
        display: block;
    }











    .dashboard-block {
        grid-template-columns: 1fr;
        margin-top: -20px;
        gap: 20px;
    }

    .dashboard-block {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .swiper {
        margin-left: auto;
        margin-right: inherit !important;
        position: relative;
        overflow: hidden;
        list-style: none;
        padding: 0;
        z-index: 1;
        max-width: 100%;
        width: 100%;
    }

    .aside {
        padding: 27px 35px;
        display: none;
    }

    .container_dash {
        padding: 0;
        width: 100%;
        display: flex;
        gap: 15px;
        margin: 19px 0 0px 0;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .contact {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        z-index: 1;
        gap: 5px;
    }

    .contact-social,
    .contact-social__block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }

    .contact-social__block.another:first-child {
        margin-bottom: 0px;
        background: #2196f3;
        padding: 20px;
        border-radius: 20px;
        color: #fff;
    }

    .contact-social__block.another:last-child {
        margin-top: 0px;
        background: #2196f3;
        padding: 20px;
        border-radius: 20px;
        color: #fff;
    }

    .start_contact {
        margin: 50px 0 10px 0;
    }

    .contact-social__block.another {
        display: block !important;
    }

    .contact-social {
        display: flex;
        /* flex-direction: row; */
        align-items: center;
        gap: 0;
        flex-wrap: wrap !important;
        justify-content: center;
    }

    .start_faq {
        margin: 50px 0 0 0;
    }

    .start_invest {
        /* margin: 50px 1218px 0; */
        margin: 50px 0 -44px 0;
    }

    .inves_plan {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }


    .main-faq__btn {
        font-weight: 400;
        /* font-size: 15px; */
        line-height: 15px;
        color: #fff;
        cursor: pointer;
        transition: unset;
        background: #2196f3;
        padding: 15px 20px;
        width: 100%;
        border-radius: 10px;
        border: 1px;
        border: 1px #2196f333 solid;
    }

    .main-faq__btns {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 25px 20px;
        gap: 9px !important;
    }

    .main-faq__btns {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        gap: 16px;
    }

    .main-faq__btns {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .15);
        border-radius: 10px;
        gap: 4px;
        z-index: 1;
    }

    .main-faq__btns {
        display: flex;
        justify-content: center;
        padding: 25px 20px;
        gap: 16px;
        width: 100%;
        flex-wrap: wrap;
    }

    .faq {
        display: flex;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
        flex-wrap: wrap;
        z-index: 3;
    }


    .form-block__form {
        min-height: unset;
        margin: 0 auto;
        flex-direction: column;
        padding: 25px !important;
        /* background: var(--gradient-4); */
        box-shadow: 4px 6px 17px rgba(0, 0, 0, .04);
        border-radius: 10px;
        max-width: 904px;
        backdrop-filter: blur(4px);
        background: #2196f30a;
    }

    .reg_topik {
        margin: 50px 0 10px 0;
    }

    .start_link_foot_mix {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 6px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .start_link_foot {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        flex-direction: column;
        gap: 6px;
        margin: 0 0 25px 0;
    }

    .form-block__form {
        padding: 23px 12px 28px;
        max-width: 100% !important;
        width: 100%;
    }


    .foot_logo span {
        background: #010c23;
        padding: 5px 10px;
        line-height: 100%;
        display: none;
    }

    .login_foot a {
        padding: 10px 25px;
        border-radius: 30px;
        color: #fff;
        background: #010c23;
        transition: all 0.3s ease-in-out;
        display: block;
    }

    .header-nav_foot {
        display: flex;
        align-items: center;
        gap: 6px;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .login_top {
        margin: 50px 0 10px 0;
    }

    /* .reg_top {
      margin: 50px 0 0 0;
  } */

    .login_hight {
        height: 100vh !important;
        padding: 0 !important;
    }

    .start-block__text,
    .start-block__title {
        text-align: center;
        margin-bottom: 36px;
        font-weight: 700;
        font-size: 21px !important;
        line-height: 24px !important;
    }

    .start_logo {
        width: 100%;
        z-index: 1;
        height: 101px;
        margin: -41px 0 8px 0;
    }

    .footer-start {
        padding: 10px 20px !important;
        margin: 40px 0 0 0;
    }

    .start {
        width: 100%;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .start_menu_nav {
        display: none;
    }

    .start_burger {
        max-width: 1.5625rem;
        display: block;
        cursor: pointer;
    }
    .start_burger img {
        width: 100%;
    }

        .nav_mobile_box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
    
        .nav_mobile_box {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    
        .nav_mobile {
            display: none;
            width: 100%;
        }
    
        .nav_mobile2 {
            display: block !important;
            width: 100%;
        }
    
        .nav_mobile_box nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
    
        .header-nav__item {
            color: #fff;
            font-size: 14px;
            padding: 10px 10px;
            background: #2196f317;
            border-radius: 5px;
            transition: all 0.3s ease-in-out;
            width: 100%;
        }
    
        .header-nav {
            flex-direction: column;
            gap: 5px !important;
            margin-bottom: 0 !important;
            margin: 12px 0 0 0 !important;
        }



    }

 
        
       

        