* {
    margin: 0;
    padding: 0;
    font-family: Manrope;
    box-sizing: border-box;
}

p {
    margin: 0;
}

html {
    overflow-x: hidden;
}

body {
    /* background: #010101; */
    overflow-x: hidden;
}

.name.user,
.lastname.user{
    color: #000;
}

.main-content {
    padding: 160px 10px;
}

.footer {
    background: #000A3F;
    padding: 45px 0;
}

.footer .nav-item {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 15px !important;
}

.footer .text-content {
    padding-top: 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.footer .nav-title {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    margin-top: 20px;
}

.footer .nav-description {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
}

.navbar a {
    font-style: normal;
    font-weight: normal;
    /*     font-size: 18px;
        line-height: 22px; */
    color: #474747;
    text-decoration: none;
    transition-duration: 0.5s;
}

.navbar a:hover {
    color: #4F69F2 ;
}

button#login {
    white-space: nowrap;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #474747;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 10px;
    padding: 8px 30px;
    margin-right: 10px;
    transition-duration: 0.5s;
}

button#login:hover {
    border: 1px solid #474747;
}

button#registration,
.basic-btn {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #4F69F2;
    background: #4F69F2;
    padding: 8px 18px;
    transition-duration: 0.5s;
}

button#registration:hover,
.basic-btn:hover {
    background: transparent !important;
    color: #4F69F2;
    border: 1px solid #4F69F2;
}

.modal-container {
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    background: rgba(253, 253, 253, 0.75);
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    /* background: transparent; */
    justify-content: center;
    align-items: center;
    display: none;
}

.modal-container .custom-modal {
    width: 460px;
    border-radius: 8px;
}

.modal-container .custom-modal .modal-head {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.modal-container .custom-modal .modal-head div {
    width: 50%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding-bottom: 10px;
}

.modal-container .custom-modal .modal-head div.active {
    border-bottom: 3px solid #6A70FF;
}

.modal-container .custom-modal .modal-head i {
    position: absolute;
    top: -10px;
    right: -5px;
}

.modal-container.active {
    display: flex;
}

.custom-modal {
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px;
    background: #fff;
    box-shadow: inset -5px -5px 250px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    position: relative;
    z-index:998;
    box-shadow: 1px 4px 10px 6px rgba(34, 60, 80, 0.2);
}

.custom-modal form {
    padding-top: 20px;
}

.custom-modal form #phone {
    padding-left: 45px;
    width: 100%;
    margin-top: 3px !important;
    margin-bottom: 8px !important;
}

.custom-modal .forgot-pass-btn {
    text-align: center;
    opacity: 0.7;
    margin-top: 20px;
    cursor: pointer;
}

.custom-modal #forgot_pass,
#reset_pass {
    text-align: center;
}

.custom-modal #forgot_pass p {
    /* color: #fff; */
    padding: 12px;
}

.custom-modal #forgot_pass .success-message {
    color: green;
}

.custom-modal form input.error {
    border-color: rgb(252, 110, 110) !important;
    margin-bottom: 0 !important;
}

.custom-modal form label.error {
    color: rgb(252, 110, 110) !important;
}

.custom-modal form .error-form {
    color: rgb(252, 110, 110) !important;
    text-align: center;
}

.custom-modal form .modal-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.custom-modal form .modal-input input {
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    border: 2px solid #e3e3e3;
    /*     color: #88949C; */
    border-radius: 4px;
    outline: none;
    margin-top: 5px;
    margin-bottom: 10px;
}

.custom-modal form .modal-input label {
    font-weight: 200;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}

.custom-modal form button {
    border-radius: 12px;
    width: 100%;
    padding: 17px 0;
    border: none;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
}

.custom-modal .modal-body form {
    display: none;
}

.custom-modal .modal-body form.active {
    display: block;
}

.modal-body #login,
.modal-body #registration,
.custom-modal form button {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    border: 1px solid #17181E;
    border-radius: 10px;
    background: #17181E;
    padding: 12px 20px;
}

.modal-body #login:hover,
.modal-body #registration:hover,
.custom-modal form button:hover {
    background: transparent !important;
    color: #17181E;
    border: 1px solid #17181E;
}

.modal-footer {
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.forgot-title {
    color: #fff;
}

.header {
    background: #ECF3FC;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 0;
    position: absolute;
    top: 0;
    width: 100%;
    min-width: 375px;
    z-index: 999;
    filter: drop-shadow(0px 9px 29px rgba(0, 0, 0, 0.11));
}

.header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content img {
    width: 100px;
}

.navbar {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.nav-item {
    color: #17181E;
    text-decoration: none;
    font-size: var(--basic-font-size);
    line-height: var(--basic-line-height);
    margin: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition-duration: 0.5s;
}

.nav-item:hover {
    color: #6A70FF;
}

.login-nav {
    display: flex;
    position: relative;
    align-items: center;
}

.login-nav .user-info {
    display: flex;
    align-items: center;
}

.login-nav .balance-container {
    display: none;
}

.login-nav .balance-container.active {
    display: flex;
}

.nav-icons,
.mobile-nav-user {
    display: none;
}

.mobile-nav-user.active {
    display: none;
}

.nav-icons .mobile-nav-user i {
    color: #fff;
    font-size: 50px;
    margin-right: 20px;
}

.login-nav .name,
.login-nav .lastname,
.login-nav .balance,
.login-nav span {
    margin: 0 5px;
    color: #17181E;
    font-size: 16px;
    cursor: pointer;
}

.login-nav span {
    color: rgb(163, 163, 163);
    margin: 0 !important;
}

.login-nav .balance {
    color: rgb(0, 194, 0);
}

.user-settings {
    position: absolute;
    width: 145px !important;
    top: 55px;
    right: 17px;
    z-index: 10;
    width: max-content;
    background: linear-gradient(
            180deg,
            #2a2836 83.52%,
            rgba(255, 255, 255, 0.11) 129.09%
    );
    text-align: start;
    font-size: 14px;
    font-weight: bold;
    display: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.user-settings .title {
    font-size: 22px;
}

.title span {
    color: #fff;
}

.user-settings.active {
    display: block;
}

.user-settings .settings-item {
    padding: 10px;
    /* border-bottom: 1px solid rgb(209, 209, 209); */
    cursor: pointer;
}

.user-settings .settings-item a {
    text-decoration: none;
    color: #fff;
}

.user-settings .settings-item:hover,
.user-settings .settings-item:hover a {
    color: #6A70FF !important;
}

.mobile-nav-btn {
    display: none;
    color: #000;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    padding: 3px 15px;
    width: 23px;
}

.mobile-nav-btn i {
    font-size: 26px;
}

.logo-container {
    display: flex;
    justify-content: space-between;
}

.mobile-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-settings .title {
    display: none;
}

.nav-item i {
    font-size: 10px;
    cursor: pointer;
    margin-left: 3px;
}

.navbar .nav-dropdown-open:hover i {
    color: #ffe600;
}

.nav-dropdown-open {
    position: relative;
}

.nav-dropdown-open:hover {
    color: #ffe600 !important;
}

.open_dropdown {
    position: relative;
}

.nav-dropdown {
    padding: 5px 0;
    width: max-content;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    left: 0;
    top: 30px;
    display: none;
    /*     background: linear-gradient(
            180deg,
            #111018 93.52%,
            rgba(255, 255, 255, 0.61) 129.09%
        ); */
    background-color: #fff;
    backdrop-filter: blur(2px);
    z-index: 10;
    transition-duration: 0.5s;
}

.nav-dropdown.active {
    display: flex;
}

.nav-dropdown .nav-item {
    padding: 8px 0 !important;
}

.main-block {
    padding: 130px 0;
    background: url(../images/first-block-bg.png);
}

/*.title {*/
/*    font-style: normal;*/
/*    font-weight: 800;*/
/*    font-size: 72px;*/
/*    line-height: 60px;*/
/*    color: #fff;*/
/*    text-align: start;*/
/*}*/

.block-title {
    font-size: 60px;
    line-height: 60px;
}


/*.description {*/
/*    font-style: normal;*/
/*    font-weight: 300;*/
/*    font-size: 36px;*/
/*    line-height: 140.5%;*/
/*    color: #fff;*/
/*    letter-spacing: 0.02em;*/
/*    !* padding: 40px 0; *!*/
/*    text-align: start;*/
/*}*/

.block-description {
    font-size: 25px;
    line-height: 30px;
}

.description span {
    color: #26272F;
    font-size: 20px;
}

.description.desctop {
    display: block;
}

.description.mobile {
    display: none;
}

.not-dt {
    opacity: 0;
}

.platform-screen {
    position: relative;
}

.main-features {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
}

.main-features .subtitle {
    padding: 15px 0 6px;
    font-size: 15px;
    text-align: start;
    color: #fff;
    border-bottom: 1px solid #ACACAC;
}

.main-features li {
    color: #fff;
    font-weight: 300;
    font-size: 10px;
}


.platform-screen .noclick {
    width: 100%;
    height: 100px;
    top: 0;
    position: absolute;
    z-index: 2;
    background: transparent;
}

.platform-screen-mb {
    display: none;
}

.platform-screen-dt {
    display: block;
}

.button {
    /* margin: 0 0 60px; */
    /*text-align: center;*/
}

.platform-screen img {
    width: 98%;
    height: 85px;
}

.trade-tech img {
    width: 80%;
    margin-bottom: 50px;
}

.rate {
    padding: 10px 0;
}




.rate-title {
    padding-bottom: 2px;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    border-bottom: 2px solid;
    border-color: #e65700;
}

.rate-description {
    font-weight: bold;
    font-size: 65px;
    line-height: 79px;
    color: #fff;
}

.yellow-container,
.black-container {
    position: relative;
}

.yellow-container .container {
    position: relative;
    z-index: 3;
    padding-top: 120px;
}

.payments-container img {
    max-width: 100%;
}

.black-container .container {
    position: relative;
    z-index: 3;
    padding-top: 150px;
}

.yellow-container .basic-btn,
.our-platform .basic-btn {
    background: #000;
    color: #fff;
}

.yellow-block {
    width: 100%;
    height: 550px;
    background: linear-gradient(90deg, #1a1829 32.19%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    z-index: 2;
}

.black-block {
    background: #000;
    height: 750px;
    position: relative;
    padding: 80px 0;
}

.black-block .title {
    font-size: 25px;
    line-height: 40px;
}

.black-block .description {
    font-size: 16px;
    line-height: 20px;
    padding: 0;
    padding-top: 5px;
    font-weight: 100;
}

.black-block-image {
    position: absolute;
    top: 0;
    height: 750px;
}

.black-container-image {
    position: absolute;
    right: 0;
    height: 700px;
    opacity: 1;
}

.yellow-container-image {
    width: 80%;
    position: absolute;
    right: 0;
    height: 550px;
    opacity: 1;
}

.yellow-container .title,
.yellow-container .description {
    text-align: start;
    width: 40%;
}

.benefit-title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #1a0022;
}

.contact-info {
    padding-top: 180px;
}

.contact-form-container {
    /*     background: rgb(44, 44, 44); */
    padding: 25px;
    border-radius: 8px;
}

.contact-form-container .form-input {
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

.contact-form-container .form-input label {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #1a0022;
    padding-bottom: 20px;
}

.contact-form-container .form-input input {
    background: transparent;
    border: none;
    border: 1px solid rgb(202, 202, 202);
    padding: 8px 12px;
    outline: none;
    color: #000;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
}

.contact-form-container .form-input input::placeholder {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
    color: rgba(128, 128, 128, 0.36);
}

.contact-form-container button {
    width: 100%;
    padding: 12px;
    background: #5077ff;
    border-radius: 2px;
    border: none;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    transition-duration: 1s;
    border: 1px solid #5077ff;
}

.contact-form-container button:hover {
    background: transparent !important;
    color: #5077ff;
}

.feature .title,
.feature .description {
    color: #fff;
    font-weight: 400;
    font-size: 28px !important;
    line-height: 34px !important;
    padding: 45px 0 35px;
}

.feature .description {
    font-size: 16px !important;
    line-height: 24px !important;
    padding: 0 !important;
    color: #F1F1F1 !important;
    opacity: 0.7;
}

.feature {
    margin: 10px;
    box-shadow: 14px 12px 22px 6px rgba(87, 65, 217, 0.3);
    border-radius: 20px;
    padding: 40px 20px;
    height: 400px;
}

.market {
    position: relative;
}

.market-noclick {
    background: transparent;
    z-index: 2;
    position: absolute;
    top: 0;
    width: 190px;
    height: 450px;
}

.forex-noclick {
    background: transparent;
    z-index: 2;
    position: absolute;
    top: 105px;
    width: 190px;
    height: 450px;
}

.crypto-noclick {
    background: transparent;
    z-index: 2;
    position: absolute;
    top: 50px;
    width: 190px;
    height: 450px;
}

.accounts-types .col-2:nth-child(1) {
    background: transparent;
    border: none;
}

.accounts-types .col-2 {
    padding: 12px 25px;
    background: #000;
    background: linear-gradient(180deg, #35383d 0%, #1a1b1d 100%);
    box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.1);
    border: 0.1px solid rgba(209, 209, 209, 0.1);
}

.accounts-types .col-2 .type {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
}

.accounts-types .col-2 .price {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #ffffff;
    opacity: 0.5;
}

.accounts-types-desc .col-2 {
    background: transparent;
    border: 0.1px solid rgba(209, 209, 209, 0.1);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accounts-types-desc .col-2 .content {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
}

.accounts-types-desc .col-2 .content img {
    width: 20px;
}

.accounts-types-btn .content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 80px;
}

.accounts-types-btn .content button {
    padding: 6px 10px !important;
}

.account-types-slider {
    margin-top: 20px;
}

.account-types-slider .account {
    background: #fff;
    backdrop-filter: blur(17.6898px);
    border-radius: 25px;
    padding: 20px 0;
    width: 280px;
    height: 350px;
    box-shadow: 2px 2px 7px 3px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
}

.account-types-slider .account.slick-active {
    opacity: 1;
    transform: translateY(-20px);
    transition-duration: 1s;
}

.slick-list {
    overflow: visible !important;
}

.account-types-slider .account {
    margin: 0 10px;
    padding: 25px 15px;
}

.account-types-slider .account.active {
    opacity: 1;
}

.account-types-slider .account .slide-title {
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 25px;
    color: #020052;
    padding: 0 25px 25px;
    text-align: center;
}


.account-types-slider .basic-btn {
    background: #17181E !important;
    color: #fff !important;
    border: 1px solid #17181E !important;
    font-size: 17px;
}

.slide-feature {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    padding: 10px 0;
    text-align: center;
}

.slide-feature div {
    width: max-content;
}

.slide-feature .feature-title {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #2D2020;
    text-align: center;
    width: 100%;
}

.slide-feature .feature-description {
    font-style: bold;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #000;
    padding: 0 3px;
}

.account-types-slider .account .button {
    margin-top: 40px !important;
    width: 90%;
}

.account-types-slider .account .button button {
    color: #fff;
    background: #17181E;
    width: 100%;
}

.account-types-slider .account .button button:hover {
    background: transparent !important;
    color: #17181E !important;
}

.our-platform {
    background: linear-gradient(
            276.64deg,
            #e65700 59.97%,
            rgba(230, 87, 0, 0) 142.92%
    );
}

/*.contact-us {*/
/*    margin: 0 5px 0;*/
/*    background: #fff;*/
/*    border-radius: 20px;*/
/*    padding: 60px;*/
/*    width: 90%;*/
/*}*/

.contact-us .title {
    text-align: center;
    font-size: 40px;
    color: #000;
    margin-bottom: 40px;
}

#contact_us {
    display: flex;
}

#contact_us .form-input {
    display: flex;
    flex-direction: column;
}

#contact_us .form-input label {
    font-size: clamp(0.75rem, 0.7197rem + 0.1294vw, 0.875rem);
    font-weight: 400;
    line-height: 1.2em;
    color: #FFFFFF;
}

#contact_us .form-input input {
    padding: clamp(0.75rem, -0.0517rem + 1.2931vw, 1.5rem) 0;
    width: 100%;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem);
    background: transparent;
    line-height: 1.2em;
    color: #FFFFFF;
}

#contact_us .form-input input::placeholder {
    font-size: clamp(0.75rem, 0.3491rem + 0.6466vw, 1.125rem);
    color: rgba(255,255,255,0.5);
}

#contact_us .form-button {
    display: flex;
    align-items: flex-end;
}

#contact_us .form-button button {
    background: #0575F6;
    border-radius: 2px;
    color: #fff;
    padding: 10px 46px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 8px;
    margin-left: 10px;
}

#contact_us .form-button button:hover {
    background: #000000;
}

.contact-us .contact-us-footer {
    padding: 40px 0 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 40px;
    color: #5B7E8D;
    opacity: 0.5;
}

.our-platform img {
    width: 100%;
}
/*
.lang_bl {
    margin: 0 40px;
} */

.lang_bl img {
    width: 25px !important;
    height: 15px !important;
}

/* .lang_bl {
    margin-bottom: 4px !important;
} */

.lang_assets {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 5px 0;
    display: none;
}

.lang_assets.active {
    display: block;
}

.lang_assets li {
    list-style-type: none;
}

.work-hours-container {
    background: #fff;
    padding: 20px 20px 50px 20px;
}

.work-hours-head {
    display: flex;
    justify-content: space-between;
    background: #000;
    color: #fff;
    padding: 20px 0 20px 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.work-hours-table {
    display: flex;
    justify-content: space-between;
    color: #000;
    border-left: 1px solid #c6ced3;
    border-right: 1px solid #c6ced3;
    border-bottom: 1px solid #c6ced3;
    padding: 10px 0 10px 15px;
}

.work-hours-head-item {
    width: 25%;
    font-size: 25px;
    font-weight: 800;
}

.work-hours-table-item {
    width: 25%;
    font-size: 15px;
    font-weight: 500;
    margin-left: 13px;
}

.last-item {
    width: 20%;
}

.last-table {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.blue-container {
    /* background: url(../images/blue-block.png) no-repeat; */
    background-size: cover;
    padding: 80px 0;
}

.blue-container .description {
    padding-top: 17px !important;
}

.blue-container .basic-btn {
    color: #5077ff;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #fff;
}

.blue-container .basic-btn:hover {
    color: #fff;
}

.success-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 250px;
    margin-top: 20px;
}

.success-card img {
    padding: 10px 0;
}

.success-card .title {
    text-align: center;
    color: #1a0022;
    font-weight: 800;
}

.success-card .description {
    color: #1a0022;
    padding: 0 !important;
}

.text-container {
    padding: 80px 0;
}

.doc-nav {
    display: flex;
    flex-direction: column;
    background: #061333;
    padding: 30px;
}

.doc-nav .doc-nav-item {
    padding: 3px 0 3px 5px;
    cursor: pointer;
    margin: 3px 0;
    transition-duration: 0.5s;
    color: #fff;
}

.doc-nav .doc-nav-item.active {
    background: #a6ffd2;
    border-left: 3px solid #5077ff;
    color: #000;
}

.doc-nav .doc-nav-item:hover {
    background: #a6ffd2;
    border-left: 3px solid #ecf2ff;
    color: #000;
}

.doc-info {
    display: none;
}

.doc-info.active {
    display: block;
}

.faq .questions-container {
    margin: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.faq .questions-container .question {
    width: 100%;
}

.faq .questions-container .question .title {
    width: 100%;
    background: #F4BF59;
    border-bottom: 1px solid #b8b8b8;
    padding: 13px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    text-align: start;
    box-sizing: border-box;
    cursor: pointer;
    color: #fff;
}

.faq .questions-container .question .title i {
    color: #161616 !important;
}

.faq .questions-container .question .title p {
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
}

.faq .questions-container .question .title i {
    font-size: 22px;
}

.faq .questions-container .question .description {
    width: 100%;
    background: #563B7A;
    padding: 24px 30px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #9199A6;
    display: none;
    box-sizing: border-box;
    text-align: left;
}

.faq .questions-container .question .description a {
    color: #F4BF59;
    text-decoration: none;
}

.faq .questions-container .question .description.active {
    display: block;
}

.contacts {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contacts .title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    color: #1a223d;
    text-align: center;
}

.contacts .contacts-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    position: relative;
    z-index: 2;
}

.contacts .address-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.description-container {
    width: 40%;
}

.contacts .address-container .description {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #B0B0B0;
    text-align: left;
}

.contacts .address-container .address .title {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    color: #fff;
    text-align: left;
    margin-top: 20px;
}

.contacts .form-container .form {
    width: 450px;
    background: #505555;
    border: 1px solid rgba(10, 27, 38, 0.2);
    box-sizing: border-box;
    border-radius: 10px;
    padding: 36px;
    margin: 40px 0;
}

.contacts .form-container .form .form-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 100%;
}

.contacts .form-container .form .form-input input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid rgba(10, 27, 38, 0.2);
    border-radius: 4px;
    outline: none;
    margin-top: 5px;
    background: #1C1C1C;
}

.contacts .form-container .form .form-input label {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.contacts .form-container .form button {
    background: #33AC1F;
    border: 1px solid #33AC1F;
    border-radius: 12px;
    width: 100%;
    padding: 17px 0;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    cursor: pointer;
    transition-duration: 1s;
}

.contacts .form-container .form button:hover {
    background: transparent;
    color: #33AC1F;
    border: 1px solid #33AC1F;
}

.trade-cards {
    position: relative;
}

.trade-cards .image-1 {
    position: absolute;
    top: 10px;
    z-index: 1;
}

.trade-cards .image-2 {
    position: absolute;
    top: -50px;
    left: 170px;
    z-index: 2;
}

.trade-cards .image-3 {
    position: absolute;
    top: 0;
    left: 355px;
    z-index: 1;
}

.conditions-feature {
    width: 350px;
    height: 222px;
    border: 1px solid #e6ecef;
    filter: drop-shadow(0px 20px 20px rgba(194, 208, 221, 0.15));
    border-radius: 20px;
    padding: 20px;
    margin-top: 10px;
}

.conditions-feature .title,
.mob-feature .title {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    text-align: left;
    padding-top: 20px;
}

.conditions-feature .description,
.mob-feature .description {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #5b7e8d;
    text-align: left;
    padding: 10px 0;

}

.graph-block {
    background: url(../images/graph-bg.png);
    background-size: cover;
    padding: 100px 0 0;
    height: 800px;
    position: relative;
}

.client-acces {
    background: transparent;
    border: 1px solid #E6ECEF;
    filter: drop-shadow(0px 20px 20px rgba(194, 208, 221, 0.15));
    border-radius: 20px;
    padding: 12px 20px 35px 20px;
    height: 490px;
    margin: 20px 0;
}

.client-acces .title {
    font-size: 18px;
    line-height: 26px;
    text-align: start;
    padding: 25px 0 10px 0;
}

.client-acces .description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #5B7E8D;
    padding: 10px 0;
    text-align: start;
}

.operation .title {
    font-size: 18px;
    line-height: 162.5%;
    letter-spacing: 0.025em;
    color: #FFFFFF;
}

.operation .description {
    font-weight: 250;
    font-size: 16px;
    line-height: 162.5%;
    letter-spacing: 0.025em;
    color: #FFFFFF;
    padding: 5px 0;
    opacity: 0.5;
}

.operation .operation-content {
    background: #073A5F;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}


.study {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}

.study .study-header {
    width: 100%;
    background: url(../images/study-header.png);
    padding: 150px 0 100px;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.study .study-header .title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
}

.study .study-header .subtitle {
    margin-top: 30px;
    width: 50%;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.study .study-nav {
    width: 100%;
    padding: 20px 0;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    border-top: 1px solid #0575F6;
    border-bottom: 1px solid #0575F6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-ellipse {
    position: absolute;
    z-index: 1;
}

.bg-dots {
    position: absolute;
    z-index: 1;
}

.study .study-nav .text {
    width: 80%;
}

.study .study-nav span {
    color: #885CC4 !important;
}

.study .study-content {
    display: flex;
    justify-content: center;
    position: relative;
}

.study .study-content .text {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 0 80px;
    position: relative;
    z-index: 2;
}

.study .study-content .study-content-nav {
    width: 30%;
    margin-top: 60px;
}

.study .study-content .text .title {
    width: 80%;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    margin: 60px 0 30px;
}

.study .study-content .text .description {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #444444;
    text-align: start;
}

.study .study-content .text .description span {
    color: #5841D8 !important;
}

.study .study-content .text img {
    width: 100%;
    margin-top: 20px;
}

.study .study-content .study-content-nav .action {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #A8BAD3;
    margin: 5px 0 5px 50%;
}

.study .study-content .study-content-nav .action.active {
    font-weight: bold;
    font-size: 20px;
    color: #5841D8 !important;
}

.operation .operation-content .white {
    background: rgba(255, 255, 255, 0.1)
}

@media screen and (min-width: 1600px) {
}

@media screen and (max-width: 1200px) {
    .header-content {
        width: 95%;
    }
}

@media screen and (max-width: 820px) {

    .lang_bl {
        margin: 20px 0;
    }

    #registration,
    #login {
        width: 100%;
    }

    .study .study-content .text,
    .study .study-content .text .title {
        width: 95%;
    }

    .girl-img {
        width: 100%;
    }

    .work-hours-table-item {
        margin-left: 0;
    }

    .account-types-slider .account {
        width: 250px;
    }

    .header-content img {
        width: 80px;
    }

    .nav-dropdown {
        padding: 5px 10px;
        top: 50px;
    }

    .open_dropdown .nav-item {
        margin-left: 0 !important;
    }

    /*     .footer .navbar {
            align-items: center !important;
        } */

    .footer .text-content {
        text-align: center;
    }

    .footer .text-content {
        padding: 20px 15px;
    }

    .user-settings .title {
        display: flex;
        flex-direction: column;
        padding: 0 8px;
    }

    .user-settings .title .balance {
        color: green;
        margin-left: 3px;
    }

    .user-settings .user-info {
        display: flex;
    }

    .user-settings .user-info .name {
        margin-right: 5px;
    }

    .user-settings {
        width: 100% !important;
        top: 66px;
        right: 0 !important;
        padding-bottom: 30px;
        font-size: 20px;
        background: #061333;
    }

    .graph-block {
        background: url(../images/graph-bg.png);
        background-size: cover;
        padding: 100px 0 0;
        height: 600px;
    }

    .header-content,
    .login-nav,
    .navbar,
    .mobile-nav {
        display: flex;
        flex-direction: column;
    }

    .navbar {
        align-items: flex-start;
    }

    .navbar .nav-item {
        margin-top: 25px;
        font-size: 20px;
        margin-left: 0;
    }

    .nav-dropdown .nav-item {
        margin-top: 5px;
    }

    #login {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .mobile-nav {
        align-items: initial;
        height: 0;
        overflow: hidden;
        animation: close_nav 1s;
    }

    .mobile-nav.active {
        height: max-content;
        animation: open_nav 1s;
    }

    .logo-container {
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid rgb(153, 153, 153);
    }

    .mobile-nav-btn,
    .nav-icons {
        display: flex;
    }

    .mobile-nav-btn .fa-bars.remove,
    .mobile-nav-btn .fa-times.remove {
        animation: change_nav_btn 1s;
    }

    .login-nav {
        margin: 10px 0 20px;
        align-items: baseline;
        /* justify-content: space-between; */
        /* height: 85px; */
    }

    /*.title {*/
    /*    font-size: 32px;*/
    /*    line-height: 40px;*/
    /*    text-align: center;*/
    /*}*/

    /*.description {*/
    /*    text-align: center;*/
    /*    font-size: 14px;*/
    /*    line-height: 20px;*/
    /*}*/

    .platform-screen-mb {
        display: block;
    }

    .platform-screen-dt {
        display: none;
    }

    .black-block {
        height: max-content !important;
    }

    .button {
        display: flex;
        justify-content: center;
    }

    .main-content,
    .index-main-content {
        overflow-x: hidden;
    }

    .main-block {
        padding: 160px 0;
        background: url(../images/first-block-bg.png);
        height: max-content;
    }

    .not-dt {
        opacity: 1;
    }

    .trade-tech img {
        width: 100%;
    }

    .rate-title,
    .rate-description {
        text-align: center;
    }

    /*     .yellow-block {
        background: linear-gradient(0deg, #1f222c 43.61%, rgba(0, 35, 230, 0.21) 166.73%);
    } */

    .about .yellow-block {
        height: 350px;
    }

    .about .yellow-container-image {
        height: 350px;
    }

    .yellow-container-image {
        opacity: 1;
    }

    .description.desctop {
        display: none;
    }

    .description.mobile {
        display: block;
    }

    .black-container .description br {
        display: none;
    }

    .footer .nav-item {
        font-size: 16px;
        margin-top: 8px;
    }

    .faq .questions-container .question .title {
        padding: 7px 8px;
        width: auto;
    }

    .faq .questions-container .question .title p {
        font-size: 16px;
    }

    .faq .questions-container,
    .contacts .contacts-container {
        width: 100%;
        margin: 0;
    }

    .contacts {
        padding: 50px 0;
    }

    .contacts .contacts-container {
        flex-direction: column;
    }

    .contacts .form-container .form {
        width: 350px;
    }

    .main-content,
    .assets-main {
        padding: 160px 10px 60px;
    }

    .contacts .address-container {
        flex-direction: column;
    }

    .description-container {
        width: 100%;
    }

    .contacts .title {
        font-size: 31px;
        line-height: 29px;
        width: 100%;
        text-align: center;
    }

    .contacts .address-container {
        width: 100%;
        text-align: center;
    }

    .contacts .address-container .address .description {
        text-align: start;
    }

    .contacts .address-container .address .title {
        text-align: center;
    }

    .lang_bl img {
        width: 25px !important;
        height: 15px !important;
        margin-left: 1px;
        margin-top: 20px;
    }

    .lang_bl .dropdown {
        position: relative;
        z-index: 9;
    }

    .lang_assets.active {
        display: flex;
    }

    .lang_assets {
        top: -5px;
        left: 30px;
    }

    .small {
        height: 450px !important;
    }

    .yellow-container-image.small {
        height: 450px !important;
    }

    .yellow-container .title,
    .yellow-container .description {
        text-align: center;
        width: 100%;
    }

    .work-hours-head-item {
        font-size: 10px;
    }

    .work-hours-head,
    .work-hours-table {
        padding: 10px 0 10px 10px;
    }

    .work-hours-table-item {
        font-size: 8px;
    }

    .footer .nav-description {
        color: #fff;
        font-size: 14px;
        font-style: normal;
        font-weight: 200;
        width: 80%;
        text-align: center;
    }

    .bubble-block .bubble {
        top: -50px !important;
    }

    .icon-1 {
        position: absolute;
        top: 114px !important;
        left: 197px !important;
        width: 120px !important;
    }

    .icon-2 {
        position: absolute;
        top: 0px !important;
        right: 200px !important;
        z-index: 1;
        width: 120px !important;
    }

    .icon-11 {
        position: absolute;
        bottom: -9px !important;
        right: 210px !important;
        z-index: 1;
        width: 110px !important;
    }

    .icon-22 {
        position: absolute;
        top: -1px;
        right: 40px;
        z-index: 3;
        width: 110px !important;
    }

    .icon-33 {
        position: absolute;
        top: 127px !important;
        right: 202px !important;
        z-index: 3;
        width: 110px !important;
    }

    .icon-44 {
        position: absolute;
        top: 228px !important;
        right: 4px !important;
        z-index: 1;
        width: 110px !important;
    }

    .step {
        width: 100% !important;
    }

    .trade-cards .image-1 img,
    .trade-cards .image-2 img,
    .trade-cards .image-3 img {
        width: 120px;
    }

    .trade-cards .image-1 {
        left: 70px;
        top: 10px;
    }

    .trade-cards .image-2 {
        top: 0px;
        left: 125px;
    }

    .trade-cards .image-3 {
        top: 20px;
        left: 197px;
    }

    .main-block-img {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 100%;
    }

    .main-block-container {
        padding-bottom: 80px !important;
    }
}

.acces-block-container {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 60px 0;
}

.client-acces-image {
    position: absolute;
    top: 0;
}

.main-block-container {
    position: relative;
    overflow: hidden;
    padding: 180px 0 180px;
}

.main-block-img {
    position: absolute;
    top: 70px;
    right: -310px;
    z-index: 3;
}

.line {
    width: 80px;
    border-bottom: 0.5px solid #ffffff;
    margin: 0 10px;
    opacity: 0.8;
}

.bubble-block {
    position: relative;
}

.how-it-feature {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.how-it-feature .title{
    font-size: 28px;
    line-height: 24px;
    color: #242424;
    font-weight: 600;
    margin-top: 40px;
}

.how-it-feature .description {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #444444;
    padding: 20px 0;
}

.how-it-feature .img {
    height: 220px;
}

.how-it-feature .img {
    display: flex;
    align-items: flex-end;
}

.bubble-block .bubble {
    position: absolute;
    top: -250px;
    width: 100%;
    z-index: 2;
}

.small-bubble {
    top: -10px !important;
}

.platform-block {
    position: relative;
}

.icon-1 {
    position: absolute;
    top: 400px;
    left: -66px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.icon-2 {
    position: absolute;
    top: 0;
    right: 100px;
    z-index: 1;
}

.icon-11 {
    position: absolute;
    bottom: -23px;
    right: 346px;
    z-index: 1;
    width: 229px;
}

.icon-22 {
    position: absolute;
    top: -10px;
    right: 74px;
    z-index: 3;
    width: 229px;
}

.icon-33 {
    position: absolute;
    top: 248px;
    right: 346px;
    z-index: 3;
    width: 229px;
}

.icon-44 {
    position: absolute;
    top: 369px;
    right: -9px;
    z-index: 1;
    width: 229px;
}

.custom-modal label {
    display: none;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-button {
    background-color: #666;
    height: 0;
}

::-webkit-scrollbar-track {
    background-color: #999;
}

::-webkit-scrollbar-track-piece {
    background-color: #000;
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #666;
    border-radius: 3px;
}

::-webkit-scrollbar-corner {
    background-color: #999;
}
/* .nav-item {
    visibility: hidden;
} */



/* new style */
:root{
    font-size: 16px;
}
*{
    font-family: 'Gilroy', sans-serif;
    box-sizing: border-box;
    line-height: 110%;
    letter-spacing: 0.02em;
}
body{
    min-width: 375px;
    background: #ECF3FC!important;
}
.top60{
    margin-top: 60px;
}
.w1920{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
.w826{
    max-width: 826px;
}
.dfcol{
    display: flex;
    flex-direction: column;
}
.gap64-32{
    gap: clamp(2rem, 1.2958rem + 2.2535vw, 4rem);
}
.gap32-24{
    gap: clamp(1.5rem, 0.9655rem + 0.8621vw, 2rem);
}
.p80-216{
    padding: clamp(3.75rem, 2.4138rem + 2.1552vw, 5rem) clamp(0.375rem, -4.2465rem + 14.7887vw, 13.5rem);
}
.p80-148{
    padding: clamp(3.75rem, 2.4138rem + 2.1552vw, 5rem) clamp(0.875rem, -8.0776rem + 14.4397vw, 9.25rem);
}
.p120-216{
    padding: clamp(3.75rem, -0.2586rem + 6.4655vw, 7.5rem) clamp(0.375rem, -13.6552rem + 22.6293vw, 13.5rem);
}
.clr-wt{
    color: #fff!important;
}
.gomarket{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/*---BUTTONS---*/
.btn-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.basic-btn,
.any-q-btn{
    font-weight: 600;
    font-size: 18px;
    width: clamp(13.4375rem, 8.5625rem + 7.8629vw, 15.875rem); /*254-215*/
    height: clamp(3.125rem, 1.875rem + 2.0161vw, 3.75rem); /*60-50*/
    background: #4F69F2;
    color: #FFFFFF;
    border: 2px solid  #4F69F2;
    border-radius: clamp(0.75rem, 0.375rem + 0.6048vw, 0.9375rem); /*15-12*/
    text-align: center;
    line-height: 100%;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.basic-btn:hover,
.any-q-btn:hover{
    background: transparent;
    color:  #4F69F2;
}
/*---*/
.main-banner{
    display: flex;
    align-items: center;
    gap: clamp(2rem, -4.5474rem + 10.5603vw, 8.125rem);
    padding: clamp(3.75rem, 2.4296rem + 4.2254vw, 7.5rem) clamp(0.375rem, -4.2465rem + 14.7887vw, 13.5rem);
}
.main-banner>.left{
    gap: clamp(2rem, 0.9764rem + 2.5197vw, 4rem);
}
.main-banner>.left>.content{
    width: 100%;
}
.clr-prpl{
    color: #4F69F2!important;
}
.main-banner>.left>.content>.title{
    font-size: clamp(2.25rem, 1.2817rem + 3.0986vw, 5rem);
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}
.main-banner>.left>.content>.title>b{
    font-weight: 700;
}
.main-banner>.left>.content>.subtitle{
    font-size: clamp(2rem, 1.3838rem + 1.9718vw, 3.75rem);
    font-weight: 600;
    margin-bottom: clamp(1.5rem, 1.247rem + 0.8097vw, 2rem);
    color: #000;
}
.main-banner>.left>.content>.description{
    font-size: clamp(1.25rem, 1.1235rem + 0.4049vw, 1.5rem);
    font-weight: 500;
}
.partners{
    gap: 12px;
    padding: 0 clamp(0.375rem, -13.6552rem + 22.6293vw, 13.5rem);
}
.partners>.title{
    font-size: clamp(1.5rem, 1.2328rem + 0.431vw, 1.75rem);
    color: #979797;
    font-weight: 600;
}
.partners>.content{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.partners>.content>.partn-wrap{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 28px;
}
.arrow-down{
    display: flex;
    align-items: center;
    gap: 34px;
}
.stats-wrap{
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 0.931rem + 1.7241vw, 3rem);/*48-32*/
}
.stat-item{
    flex-basis: 370px;
    flex-shrink: 1;
    padding: clamp(1.5625rem, -0.1078rem + 2.694vw, 3.125rem);
    background: #FFFFFF;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 36px;
    display: flex;
    gap: 25px;
}
.stat-item>.stat-icon{
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}
.stat-item>.stat-icon>img{
    width: 100%;
}
.stat-item>.content{
    gap: 16px;
}
.stat-item>.content>.title{
    font-weight: 600;
    font-size: 44px;
    color: #000;
}
.stat-item>.content>.description{
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #999AAD;
}
.hold-credit{
    gap: 15px;
}
.hold-credit>.left{
    position: relative;
    z-index: 2;
    flex-basis: 826px;
    flex-shrink: 1;
}
.bl-title{
    font-weight: 600;
    font-size: clamp(2rem, -0.1379rem + 3.4483vw, 4rem);
    color: #031329;
}
.bl-description{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #031329;
}
.hold-credit>.right{
    flex-basis: 708px;
    flex-shrink: 1;
    position: relative;
    z-index: 1;
}
.hold-credit>.right>img{
    position: absolute;
    top: -20%;
    left: 0;
    z-index: 0;
}
.cards-wrap{
    height: 100%;
    position: relative;
    z-index: 1;
}
.card1,
.card2,
.card1>span,
.card2>span{
    position: absolute;
}
.card1{
    top: 0;
    right: 16%;
    z-index: 1;
}
.card2{
    top: 45%;
    right: -50%;
    z-index: -1;
}
.card1>span:first-of-type{
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
    top: 25px;
    color: #141917;
    white-space: nowrap;
}
.card1>span:last-of-type{
    font-weight: 600;
    color: #8B8B8B;
    left: 50%;
    transform: translateX(-50%);
    top: 205px;
}
.card2>span:first-of-type{
    font-weight: 700;
    font-size: 14px;
    color: #080B09;
    left: 34px;
    bottom: 40px;
}
.card2>span:last-of-type{
    font-weight: 700;
    font-size: 14px;
    color: #1B73EE;
    left: 34px;
    bottom: 21px;
}
.wht-bg-block{
    padding: 80px clamp(0.375rem, -0.5603rem + 1.5086vw, 1.25rem) clamp(3.75rem, 2.4138rem + 2.1552vw, 5rem);
}
.wht-wrap{
    background-color: #fff;
    border-radius: 20px;
    padding: clamp(3.75rem, -2.2629rem + 9.6983vw, 9.375rem)  clamp(4.5rem, -3.7845rem + 13.3621vw, 12.25rem);
}
.markets-1{
    gap:  clamp(2rem, -1.2069rem + 5.1724vw, 5rem);
    align-items: center;
}
.markets-1>.content{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.markets-1>.content>.bl-title{
    width: 45%;
    flex-shrink: 0;
}
.mar-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, -3.5431rem + 7.3276vw, 5.25rem) clamp(0.5rem, -4.5776rem + 8.1897vw, 5.25rem);
}
.mar-item{
    gap: clamp(1.25rem, 0.4483rem + 1.2931vw, 2rem);
    align-items: center;
    justify-content: center;
    padding: 44px 68px;
    background: #ECF3FC;
    border-radius: 15px;
    max-width: 230px;
    width: calc((100% - (clamp(0.5rem, -4.5776rem + 8.1897vw, 5.25rem) * 4)) / 5);
}
.mar-item:not(:last-of-type)>img{
    width: clamp(3.75rem, 1.9461rem + 2.9095vw, 5.4375rem);
    height: clamp(3.75rem, 1.9461rem + 2.9095vw, 5.4375rem);
}
.mar-item:last-of-type>img{
    width: 44px;
    height: 44px;
}
.mar-item:not(:last-of-type)>.title{
    font-weight: 600;
    font-size: clamp(1.125rem, 0.9914rem + 0.2155vw, 1.25rem);
    color: #474747;

}
.mar-item:last-of-type>.title{
    font-weight: 600;
    font-size: clamp(1.125rem, 0.9914rem + 0.2155vw, 1.25rem);
    color: #4F69F2;
    white-space: nowrap;
}
.security{
    display: flex;
    justify-content: center;
}
.security>.left{
    width: 55.5%;
}
.security>.right{
    width: 44.5%;
}
.secur-wrap{
    max-width: 550px;
    gap: 12px;
}
.secur-href{
    position: relative;
    padding: 16px 48px 16px 24px;
    text-decoration: none;
    font-size: clamp(1.25rem, 0.9828rem + 0.431vw, 1.5rem);
    color: #586074;
    border-radius: 30px;
    transition: 0.3s all linear;
    font-weight: 600;
    text-align: left!important;
}
.secur-href:hover{
    background: #FFFFFF;
    font-weight: 700;
    color: #4F69F2;
}
.secur-href:after{
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    border-right: 2px solid #ECF3FC;
    border-bottom: 2px solid #ECF3FC;
    top: 48.5%;
    right: 22px;
    transform: rotate(-45deg) translateY(-50%);
    transition: all 0.3s linear;
}

.secur-href:hover:after{
    border-right: 2px solid #4F69F2;
    border-bottom: 2px solid #4F69F2;
}
.security>.right>.content{
    gap: 18px;
}
.secur-subtitle{
    font-weight: 700;
    font-size: clamp(1.375rem, 1.2414rem + 0.2155vw, 1.5rem);
    color: #4F69F2;
}
.security>.right>img{
    max-width: 88%;
    align-self: center;
}
/*---Tariffs---*/
.tariff__wrap{
    flex-basis: 400px;
    flex-shrink: 1;
    flex-grow: 1;
}
.tariff{
    padding: 24px;
    height: 100%;
    max-width: 400px;
    background: #FFFFFF;
    border: 2px solid rgba(210, 209, 209, 0.4);
    box-shadow: 0px 4px 20px rgba(104, 104, 104, 0.1), inset -5px -5px 250px rgba(255, 255, 255, 0.02);
    border-radius: 12px
}
.tariff-active{
    transform: scale(1.02);
    box-shadow: 0 10px 22px 20px rgba(34, 75, 129, 0.1);
    border: 1px solid #4F69F2;
}
.tariff__title{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2em;
    color: #302F2D;
    margin-bottom: 0.75rem;
}
.tariff__subtitle{
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2em;
    color: rgba(48, 47, 45, 0.8);
    border-bottom: 1px solid rgba(8, 27, 62, 0.1);
}
.tariff__description{
    position: relative;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2em;
    color: #302F2D;
    padding-left: 20px;
    text-align: start!important;
}
.check{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 13px;
}
.tariff__btn{
    width: calc(100% + 48px);
    bottom: -24px;
    left: -24px;
}
.tariff__btn>.basic-btn{
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-drk {
    display: block;
    width: 100%!important;
    text-align: left;
    font-weight: 800;
    font-size: 18px;
    line-height: 134.4%;
    padding: 20px 24px;
    letter-spacing: 0.025em;
    color: #FFFFFF;
    border: 1px solid #4F69F2;
    border-radius: 0;
    background: #4F69F2;
}
.btn-drk:hover{
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
}
.min-dep{
    display: flex;
    flex-direction: column;
}
.min-dep>span:nth-child(1){
    font-weight: 500;
    font-size: clamp(0.8125rem, 0.767rem + 0.1942vw, 1rem);
    line-height: 1.2em;
    color: #9A9A9A;
}
.min-dep>span:nth-child(2){
    font-weight: 600;
    font-size: clamp(1.75rem, 1.6893rem + 0.2589vw, 2rem);
    line-height: 38px;
    color: #302F2D;
}
.tariff__title>.popular{
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #FFFFFF;
    background-color: #4F69F2;
    padding: 0.28rem 0.78rem;
    border-radius: 18px
}
.tariffs-wrap{
    display: flex;
    gap: clamp(2rem, -4.9483rem + 11.2069vw, 8.5rem);
}
.tariffs-wrap>.content{
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, -2.2414rem + 6.0345vw, 5rem);
    flex-basis: 412px;
    margin-top: 200px;
}
.tariffs-wrap>.content>.bl-title>b{
    color: #4F69F2;
    font-weight: 600;
}
.tar-center{
    gap: clamp(2rem, -0.8728rem + 4.6336vw, 4.6875rem);
}
.tariffs{
    gap: clamp(2rem, 0.931rem + 1.7241vw, 3rem);
}
/*---*/
/*---FAQ---*/
.faq>.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.btn-faq {
    text-decoration: none;
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #001E2A;
    padding: 24px 90px 24px 24px;
}
.btn-faq2 {
    text-decoration: none;
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #001E2A;
    padding: 24px 90px 24px 0px;
}
.faq-wrap{
    background: transparent;
    border: 1px solid rgba(94, 90, 91, 0.66);
    border-radius: 8px;
    width: 95% !important;
    margin: 0 auto;
}
.faq-wrap2{
    background: transparent;
    border-bottom: 3px solid rgba(244, 88, 0, 0.4);
    width: 95% !important;
    margin: 0 auto;
}

.btn-faq:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 40%;
    height: 8px;
    width: 8px;
    border-left: 2px solid #686865;
    border-bottom: 2px solid #686865;
    transform: rotate(-45deg) translateY(-50%);
    transition-duration: 0.5s;
}
.btn-faq2:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 40%;
    height: 8px;
    width: 8px;
    border-left: 2px solid #F4580066;
    border-bottom: 2px solid #F4580066;
    transform: rotate(-45deg) translateY(-50%);
    transition-duration: 0.5s;
}
.btn-faq:hover{
    color: #60acff;
}
.card{
    border: 0!important;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    background-color: transparent!important;
    color: #686865;
}
.card-body{
    padding: 0 50px 0 24px!important;
}
.card-body2{
    padding: 0;
}
.card-body>b{
    display: contents;
}
.terms {
    background: #000000;
    border: 1px solid rgba(33, 26, 114, 0.2);
    border-radius: 8px;
    filter: drop-shadow(0px 2px 5px #211A72);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    outline: none;
    margin: 0 10px;
    text-decoration: none;
    color: #FFFFFF;
}
.onclick:after {
    content: "";
    right: 28px!important;
    border-left: 2px solid #686865!important;
    border-bottom: 2px solid #686865!important;
    transform: rotate(135deg) translateY(-50%)!important;
}
/*---*/
.banner{
    align-items: center;
    gap: clamp(2rem, 0.3966rem + 2.5862vw, 3.5rem);
}
.banner>img{
    width: 85%;
}
.ban-title{
    font-weight: 700;
    font-size: clamp(2.25rem, 1.2817rem + 3.0986vw, 5rem);
}
.knowing{
    display: flex;
    gap: clamp(2rem, -0.8609rem + 9.1549vw, 10.125rem);
}
.knowing>.left{
    flex-basis: 769px;
    flex-shrink: 1;
}
.knowing>.right{
    position: relative;
    flex-basis: 716px;
    flex-shrink: 1;
}
.knowing>.right>img{
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(30.9375rem, 20.8143rem + 32.3944vw, 59.6875rem);
}
.bot-tr{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.tv-embed-widget-wrapper__body {
    border: 0px solid #e0e3eb!important;
}
.markets-2{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2.25rem, 1.4483rem + 1.2931vw, 3rem);
}
.market-item{
    align-items: center;
    gap: clamp(0.9375rem, -0.1983rem + 1.8319vw, 2rem);
}
.market-item>.content{
    text-align: center;
    gap: clamp(0.75rem, 0.4828rem + 0.431vw, 1rem);
}
.market-item>.icon{
    width: clamp(4.5rem, 2.6293rem + 3.0172vw, 6.25rem);
    height: clamp(4.5rem, 2.6293rem + 3.0172vw, 6.25rem);
}
.market-item>.icon>img{
    width: 100%;
    height: 100%;
}
.market-item>.content>.title{
    font-weight: 600;
    font-size: clamp(1.25rem, 0.9828rem + 0.431vw, 1.5rem);
    color: #010101;
}
.market-item>.content>.description{
    font-weight: 500;
    font-size: clamp(1rem, 0.4655rem + 0.8621vw, 1.5rem);
    color: #838383;
}
.time-to-trade{
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(21.3125rem, 14.1382rem + 22.9577vw, 41.6875rem);
}
.time-to-trade>table>thead>tr>th{
    font-size: clamp(1rem, 0.5991rem + 0.6466vw, 1.375rem);
    padding: clamp(0.625rem, 0.2909rem + 0.5388vw, 0.9375rem);
}
.time-to-trade>table>tbody>tr>td{
    font-size: clamp(0.75rem, 0.6286rem + 0.5178vw, 1.25rem);
    padding: clamp(0.625rem, 0.2909rem + 0.5388vw, 0.9375rem);
}
/*---*/
.best-exp{
    display: flex;
}
.best-exp>.left{
    flex-basis: 891px;
}
.best-exp>.left,
.best-exp>.right{
    flex-shrink: 1;
}
.best-exp>.right>.img-wrap{
    max-width: 535px;
    margin: 0 auto;
}
.best-exp>.right>.img-wrap>img{
    width: 100%;
}
.sert{
    max-width: 1022px;
    margin: 0 auto;
}
.sert>img{
    width: 100%;
}
/*Contact-us-form*/
.any-q{
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
}
.any-q>form>.content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: center;
    text-align: center;
}
.contact-us{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 114px;
    gap: 36px;
    background: #000A3F;
    border-radius: 20px;
}
.contact-title{
    font-weight: 700;
    font-size: clamp(2.375rem, 1.7069rem + 1.0776vw, 3rem);
    color: #fff;
}
.description28-20{
    font-weight: 500;
    font-size: clamp(1.25rem, 0.7155rem + 0.8621vw, 1.75rem);
    color: #9D9D9E;
}
.contact-us>.inputs-wrap{
    width: 100%;
    display: flex;
    gap: 34px;
    justify-content: center;
    align-items: flex-end;
}
.contact-us>.inputs-wrap>.button{
    flex-shrink: 0;
}
.form-input{
    display: flex;
    flex-direction: column;
    flex-basis: 383px;
}
.form-input>label{
    font-size: clamp(0.75rem, 0.7197rem + 0.1294vw, 0.875rem);
    font-weight: 400;
    line-height: 1.2em;
    color: #FFFFFF;
}
.form-input>input{
    padding: 24px 0;
    width: 100%;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem);
    background: transparent;
    line-height: 1.2em;
    color: #FFFFFF;
}
.form-input>input::placeholder{
    font-size: clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem);
}
.form-input>input:focus{
    border-bottom: 2px solid #FFFFFF;
    outline: 0;
}
.contact-us>.message{
    text-align: center;
    font-weight: 500;
    font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
    line-height: 1.2em;
    color: #A3A3A3;
    opacity: 0.5;
}
/*---*/
#contact_us{
    position: relative;
}
.vis{
    display: flex;
}
.text-thx{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #fff;
    z-index: 1;
    display: none;
}
.benefits{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.9375rem, -0.7328rem + 2.694vw, 2.5rem);
}

.ben-item{
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 25px;
}
.ben-icon{
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.ben-icon>img{
    width: 100%;
}
.ben-item>.content{
    gap: 12px;
}
.ben-item>.content>.title{
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
}
.ben-item>.content>.description{
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #999AAD;
}
.steps{
    padding-top: clamp(3.75rem, -0.2586rem + 6.4655vw, 7.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, -6.4526rem + 14.4397vw, 10.875rem);
}
.step-num{
    width: 60px;
    height: 60px;
    background: #4F69F2;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    margin-bottom: clamp(0.25rem, -1.0862rem + 2.1552vw, 1.5rem);
}
.steps-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 1.4655rem + 0.8621vw, 2.5rem);
}
.step-title{
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #010101;
}
.step-description{
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #838383;
}
.contacts>.content{
    display: flex;
}
.contacts>.content>.left{
    flex-basis: 803px;
}
.contacts>.content>.left,
.contacts>.content>.right{
    flex-shrink: 1;
}
.contacts>.content>.right>.img-wrap{
    max-width: 621px;
    margin: 0 auto;
}
.contacts>.content>.right>.img-wrap>img{
    width: 100%;
}
.contacts-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}
.contact-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(0.75rem, 0.2823rem + 0.7543vw, 1.1875rem);
}
.contact-item>.title{
    font-weight: 600;
    font-size: clamp(1.5rem, 1.2328rem + 0.431vw, 1.75rem);
    color: #010101;
}
.contact-item>.description{
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #838383;
}
.contact-item>.sub-title{
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    color: #010101;
}
.bg-circles{
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bg-circles>img{
    position: absolute;
}
.bg-circles>img:nth-child(1){
    top: -274px;
    left: -0.057%;
}
.bg-circles>img:nth-child(2){
    top: 1284px;
    left: -0.047%;
}
.bg-circles>img:nth-child(3){
    top: -242px;
    right: -0.081%;
}
.bg-circles>img:nth-child(4){
    top: -52px;
    right: 0.078%;
}
.bg-circles>img:nth-child(5){
    top: 1577px;
    right: -0.2%;
}
.bg-circles>img:nth-child(6){
    top: 3286px;
    right: 0;
}
.bg-circles>img:nth-child(7){
    top: 3533px;
    left: 0;
}
.bg-circles>img:nth-child(8){
    top: 2361px;
    right: 0.066%;
}
@media screen and (max-width: 1220px){
    .stats-wrap{
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 991px) {
    .main-banner,
    .partners,
    .hold-credit,
    .markets-1>.content,
    .security,
    .tariffs-wrap,
    .tariff__title,
    .knowing,
    .best-exp,
    .step-item,
    .contacts>.content{
        flex-direction: column;
        text-align: center;
    }
    .main-banner>.right>img,
    .card1>img,
    .card2>img,
    .markets-1>.content>.bl-title,
    .security>.left,
    .security>.right,
    .tariffs-wrap>.content>.bl-title,
    .tariffs-wrap>.content>.bl-description,
    .faq>.content>.bl-title,
    .faq>.content>.bl-description{
        width: 100%;
    }
    .partners,
    .hold-credit{
        gap: 32px;
    }
    .partners>.content>.partn-wrap{
        justify-content: center;
    }
    .stat-item{
        flex-basis: 370px;
        flex-shrink: 1;
        padding: 50px;
        background: #FFFFFF;
        box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.05);
        border-radius: 36px;
        display: flex;
        gap: 25px;
    }
    .hold-credit>.left,
    .hold-credit>.right,
    .knowing>.left,
    .knowing>.right,
    .best-exp>.left,
    .contacts>.content>.left,
    .contacts>.content>.right{
        flex-basis: auto;
    }
    .cards-wrap{
        height: 325px;
    }
    .card1{
        width: 217px;
        left: 40%;
        transform: translateX(-50%);
    }
    .card2{
        width: 162px;
    }
    .card1>span:first-of-type{
        top: 18px;
        font-size: 11px;
    }
    .card1>span:last-of-type{
        top: 135px;
        font-size: 11px;
    }
    .card2>span:first-of-type{
        font-size: 10px;
        left: 25px;
        bottom: 25px;
    }
    .card2>span:last-of-type{
        font-size: 10px;
        left: 25px;
        bottom: 13px;
    }
    .hold-credit>.right>img{
        position: absolute;
        height: 100%;
        top: 0%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }
    .wht-bg-block{
        padding: 0px clamp(0.375rem, -0.5603rem + 1.5086vw, 1.25rem);
    }
    .wht-wrap{
        padding: 60px clamp(0.375rem, -3.8171rem + 13.4146vw, 4.5rem);
    }
    .markets-1>.content>.bl-title>br{
        display: none;
    }
    .mar-wrap{
        justify-content: center;
    }
    .mar-item{
        max-width: 170px;
        width: 100%;
    }
    .security{
        gap: 32px;
    }
    .security>.right>.content{
        gap: 24px;
    }
    .secur-href{
        background: #FFFFFF;
        font-weight: 600;
        color: #4F69F2;
    }
    .secur-href:after{
        border-right: 2px solid #4F69F2;
        border-bottom: 2px solid #4F69F2;
    }

    /*---*/
    .tariff__btn{
        bottom: -48px;
    }

    .min-dep{
        text-align: center;
    }
    .tariffs-wrap{
        gap: 48px;
    }
    .tariff__subtitle,
    .tariffs-wrap>.content>.bl-title,
    .tariffs-wrap>.content>.bl-description,
    .faq>.content>.bl-title,
    .faq>.content>.bl-description{
        text-align: center;
    }
    .tariffs-wrap>.content{
        flex-direction: column;
        flex-basis: auto;
        margin-top: 0px;
    }
    /*FAQ*/
    .faq>.content{
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }
    .btn-faq {
        font-size: 18px;
        line-height: 20px;
        padding: 14px 90px 14px 24px;
    }
    .card{
        font-size: 16px;
        line-height: 20px;
    }
    .knowing>.right>img,
    .time-to-trade{
        position: relative;
    }
    .time-to-trade{
        text-align: start;
        margin: 0 auto;
    }
    .bot-tr{
        position: static;
        left: 0%;
        transform: translateX(0%);
    }
    .markets-2{
        grid-template-columns: 1fr
    }
    /*---*/
    /*Contact-us-form*/
    .any-q{
        gap: 48px;
    }
    .any-q>.content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .any-q>.content>.bl-title,
    .any-q>.content>.bl-description{
        width: 100%;
        text-align: center;
    }
    .contact-us{
        padding: 40px 10px;
    }
    .contact-us>.inputs-wrap{
        flex-direction: column;
        align-items: center;
    }
    .form-input{
        flex-basis: auto;
        width: 100%;
    }
    /*---*/
    .benefits{
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .steps,
    .steps-wrap,
    .contacts-wrap{
        grid-template-columns: 1fr;
    }
    .step-item{
        align-items: center;
    }
    .top60{
        margin-top: 68px;
    }
}


