* {
    margin: 0;
    padding: 0;
    font-family: Manrope;
}

p {
    margin: 0;
}

html {
    overflow-x: hidden;
}

body {
    /* background: #010101; */
    overflow-x: hidden;
}

.main-content {
    padding: 160px 10px;
}

.footer {
    background: #090024;
    padding: 45px 0;
}

.footer .nav-item {
    color: #aaaaaa;
    font-size: 16px;
    margin-top: 15px !important;
    margin-left: 0 !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: #56566C;
    text-decoration: none;
    transition-duration: 0.5s;
}

.navbar a:hover {
    color: #01A020;
}

#login {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #56566C;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 10px;
    padding: 8px 30px;
    margin-right: 10px;
    transition-duration: 0.5s;
}

#login:hover {
    color: #01A020;
    border: 1px solid #01A020;
}

#registration,
.basic-btn {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    background: #01A020;
    border: 2px solid #01A020;
    border-radius: 10px;
    padding: 8px 18px;
    color: #FFFFFF;
    transition-duration: 0.5s;
}

#registration:hover,
.basic-btn:hover {
    background: transparent;
    color: #01A020;
    border-color: #01A020;
}

.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 #01A020;
}

.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: 5;
    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 {
    /* margin-top: 20px; */
    background:  #ffffff;
    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: 150px;
}

.navbar {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.nav-item#registration,
.nav-item#login{
    line-height: var(--basic-line-height);

    width: auto;
    padding: 0;
    border: 0;
    background-color: transparent;
    margin: 0 10px;
    cursor: pointer;
    align-items: center;
    font-style: normal;
    font-weight: normal;
    color: #aaaaaa;

}
.nav-item {
    color: #FFFFFF;
    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: #01A020;
}

.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);
    width: max-content;
}

.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: #01A020 !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;
    color: #01A020;
}

.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;
    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%;
    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;
}



.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: 16px;
    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;
}


.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;
    width: 90%;
}

.contact-us .title {
    text-align: center;
    font-size: 40px;
    color: #000;
    margin-bottom: 40px;
}

.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 {
    background: url(../images/contacts-bg.png);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contacts .title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    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: 150px;
    }

    .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: 0px;
}

::-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 */

*{
    font-family: 'Gilroy';
}
body{
    min-width: 375px;
}
.w43{
    width: 43%;
}
.w57{
    width: 57%;
}
.bg.w43{
    position: relative;
}
.p240x140{
    padding: 240px 40px;
}
.mt87-32{
    margin-top: 87px!important;
}
.p160-64{
    padding: 60px 15px;
}
.w1640{
    max-width: 1640px;
    margin: 0 auto;
}
.w1160{
    max-width: 1160px;
    margin: 0 auto;
}
.bgc-darkb{
    background-color: #000021;
}
.blocks{
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 62px;
}
.bg-grad{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 33, 0) 22.42%, #000021 100%);
}

.clr-white{
    color: #ffffff!important;
}
.clr-green{
    color: #6BF5C0;
}
.clr-green2{
    font-size: 18px!important;
    line-height: 32px;
    color: #A8FFDE!important;
}
.clr-darkblue{
    background-color: #01012F!important;
}
.green{
    color: #01A020!important;
}
/*---BUTTONS---*/
.basic-btn,
.anyq{
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.02em;
    padding: 16px 42px;
    width: 235px;
    height: 54px;
    background: #01A020;
    border-radius: 50px;
    color: #FFFFFF;
    border: 2px solid #01A020;
    transition-duration: 0.5s;
    white-space: nowrap;
}
.basic-btn:hover{
    background: transparent;
    color: #01A020;
}
.btn-arrow{
    position: relative;
    width: 100% !important;
    padding: 0 32px;
    text-align: start;
    border-radius: 0 0 20px 20px!important;
}
.btn-arrow:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 32px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateY(-50%) rotate(-45deg);
    transition-duration: 0.5s;
}
.btn-arrow:hover::after{
    content: "";
    border-color: #01A020;
}
.btn-arrow.ben-btn{
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #01A020;
    padding-left: 0;
    text-align: left;
    font-weight: 700;
    font-size: 22px;
    line-height: 0px;
}
.btn-arrow.ben-btn:hover{
    border-color: #01A020;
    padding-left: 32px;
}
.btn-arrow.ben-btn:after{
    border-bottom: 2px solid #01A020;
    border-right: 2px solid #01A020;
}
/*---*/
.bg-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-banner{
    max-height: 902px;
}
.banner{
    display: flex;
    overflow: hidden;
    position: relative;
}
.banner .content-wrap{
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.banner .bg{
    align-self: stretch;
    position: relative;
}
.bg img{
    position: absolute;
    z-index: 0;
}
.main-banner .content{
    max-width: 850px;
}
.banner .content .title{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 72px;
    line-height: 112%;
    letter-spacing: -0.05em;
    color: #000021;
}
.banner .content .description{
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.05em;
    color: #67677B;
    margin-top: 32px;
    margin-bottom: 60px;
}
.banner .content .subtitle-green{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 84px;
    line-height: 112%;
    letter-spacing: -0.05em;
    color: #01A020;
}
.content .title{
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 25px;
}
.content .description{
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}
.min-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 87px auto;
}
.m-item{
    width: 215px;
    border-bottom: 2px solid #33334D;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #FFFFFF;
}
.m-item:first-of-type{
    border-bottom: 4px solid #FFFFFF;
}
.assetscarousel .slick-slide{
    opacity: 0.8;
}
.assetscarousel .slick-slide.slick-active{
    opacity: 1;
}
.assets{
    display: flex;
    gap: 82px;
    max-width: 1316px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}
.asset-item{
    border-radius: 20px;
    overflow: hidden;
    width: 384px;
}
.asset-item .item-top{
    background: #EEEEEE;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.asset-item .item-top .center{
    max-width: 175px;
    min-height: 49px;
}
.asset-item .item-top .center img{
    width: 100%;
}
.asset-item .item-top .title{
    font-weight: 700;
    font-size: 18px;
    line-height: 144%;
    color: #464646;
    margin-bottom: 10px;
}
.asset-item .item-top .description{
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #464646;
}
.asset-item .item-top .right{
    text-align: right;
}
.carousel-comments-btns{
    position: absolute;
    display: flex;
    gap: 15px;
    right: 0;
    top: 0;
}
.comment-next.slick-disabled,
.comment-prev.slick-disabled{
    background: #bdbdbb !important;
    border: 2px solid #bdbdbb !important;
}
.comment-next.slick-disabled:hover:after,
.comment-prev.slick-disabled:hover:after{
    border-bottom: 3px solid #FFFFFF;
    border-left: 3px solid #FFFFFF;
}
.comment-next,
.comment-prev{
    position: relative;
    width: 51px;
    height: 51px;
    background: #01A020;
    border-radius: 10px;
    border: 2px solid #01A020;
    transition: all 0.3s ease;
}

.comment-next:after,
.comment-prev:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 12px;
    width: 12px;
    border-bottom: 3px solid #FFFFFF;
    border-left: 3px solid #FFFFFF;
    border-radius: 2px;
}
.comment-next:hover,
.comment-prev:hover{   ;
    background: transparent;
}

.comment-next:hover:after,
.comment-prev:hover:after{
    border-bottom: 3px solid #01A020;
    border-left: 3px solid #01A020;
}
.comment-prev:after{
    transform: rotate(45deg) translate(-60%, -5%);;
}
.comment-next:after{
    transform: rotate(-135deg) translate(80%, -10%);;
}
.carousel-wrap{
    margin-top: 87px;
    margin-left: -15px;
    margin-right: -15px;
}
.comment-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px;
    margin: 20px 30px 40px 30px;
    gap: 35px;
    width: 645px;
    height: 335px;
    background: #FFFFFF;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}
.comment-item .description{
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #71757D;
}
.comment-item .user-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 15px;
}
.user-wrap .left .icon{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
}
.user-wrap .left .icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-wrap .right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 5px;
}
.user-wrap .right .title{
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    color: #2F2F2F;
    margin-bottom: 0;
}
.user-wrap .right .description{
    font-weight: 500;
    font-size: 18px;
    line-height: 167%;
    color: #9A9A9A;
}
.ourplatform{
    display: flex;
    gap: 87px;
    align-items: center;
}
.img-wrap{
    position: relative;
}
.circle-img{
    position: absolute;
    z-index: 0;
    top: -20%;
    left: -5%;
    right: -5%;
    bottom: -20%;
    background: radial-gradient(48.43% 48.43% at 50% 50.07%, #13C636 0%, rgba(217, 217, 217, 0) 100%, rgba(19, 198, 54, 0) 100%);
    opacity: 0.6;
}
.img-wrap img{
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}
.ourplatform .left{
    flex-basis: 967px;
    flex-shrink: 1;
}
.ourplatform .right{
    display: flex;
    flex-direction: column;
    flex-basis: 750px;
    flex-shrink: 1;
    gap: 87px;
}
.pl-items{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.pl-item{
    position: relative;
    font-weight: 400;
    font-size: 22px;
    line-height: 145%;
    color: #A8FFDE;
    padding-left: 60px;
}

.pl-item img{
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0;
    left: 0;
}
.benefits{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1455px;
    margin: 0 auto;
}
.ben-item{
    flex-basis: 375px;
    flex-shrink: 1;
    display: grid;
}
.ben-item .button{
    align-self: end;
}
.ben-item .icon{
    width: 130px;
    height: 105px;
    margin-bottom: 45px;
}
.ben-item .icon img{
    width: 100%;
    height: 100%;
}
.ben-item .title{
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #000021;
    margin-bottom: 25px;
}
.ben-item .description{
    font-weight: 600;
    min-height: 128px;
    font-size: 20px;
    line-height: 160%;
    color: #71757D;
    margin-bottom: 44px;
}
.partners{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
    margin-top: 60px;
}
.partner-item{
    height: 51px;
}
.partner-item img{
    height: 100%;
    width: auto;
}
/*---TARIFFS---*/
.tariff__wrap{
    flex-basis: 400px;
    flex-shrink: 1;
    flex-grow: 1;
}
.tariffs{
    position: relative;
    gap: 20px;
    margin-top: 80px;
    padding-left: 275px;
    max-width: 1641px;
}
.tariff{
    padding: 24px;
    height: 100%;
    max-width: 400px;
    border-radius: 6px;
}
.tariff__icon{
    display: flex;
}
.tariff__icon>img{
    height: 20px;
    width: 20px;
    margin-right: 10px;
}
.tariff__title{
    font-weight: 800;
    font-size: 30px;
    line-height: 41px;
    color: #081B3E;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(8, 27, 62, 0.1);
}
.tariff_price {
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    color: #080808;
    margin-top: 26px;
}
.tariff_price span{
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #717171;
}
.popular{
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    padding: 4px 8px;
    background: #01A020;
    border-radius: 28px;
    margin-left: 16px;
}
.tariff__subtitle{
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #080808;
    opacity: 0.6;
    min-height: 136px;
}
.tariff__description{
    position: relative;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    #padding-left: 28px;
    height: 76px;
    color: #081B3E;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.check{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
}
.tariff__btn{
    width: 100%;
    position: relative;
}
.tariff__settings span{
    display: none;
}
.tariff__btn button{
    width: 100%;
    background-color: #01A020;
}
.tariff__btn button:hover{
    background-color: #9dbdb3;
    color: #ffffff;
}
.pc-settings{
    position: absolute;
    left: 45px;
    bottom: 22px;
    z-index: 2;
}
.pc-settings .tariff__description-pc{
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: 76px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #080808;
}
.striped-block{
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
}
.striped-block .striped-item{
    height: 76px;
}
.striped-block .striped-item:nth-child(2n-1){
    background-color: #F9FBFC;
}
.guarantees{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 60px;
}
.guarantees-item{
    width: calc((100% - 120px) / 3);
    box-shadow: 0px 4px 20px rgba(104, 104, 104, 0.1), inset -5px -5px 250px rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 25px;
    background-color: #ffffff;
}
.guarantees-item .title{
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
    color: #000000;
    text-align: left;
}
.guarantees-item .description{
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #000000;
    opacity: 0.6;
    text-align: left;
}
.bgc-darkblue{
    background-color: #000021!important;
}
.bgc-darkblue .title,
.bgc-darkblue .description{
    color: #ffffff!important;
}
.c-markets-item{
    display: flex;
    flex-direction: column;
    max-width: 471px;
    margin: 0 30px;
}
.c-markets-item .top{
    border-radius: 10px 10px 0 0;
    background-color: #fff;
    padding: 25px 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.c-markets-item .top .icon{
    height: 33px;
}
.c-markets-item .top .icon img{
    height: 100%;
    width: auto;
}
.c-markets-item .top .title{
    font-weight: 800;
    font-size: 22px;
    color: #3C3C42;
    margin-bottom: 0;
}
.c-markets-item .top .description{
    font-weight: 400;
    font-size: 18px;
    line-height: 121.5%;
    color: #081B3E;
}
.c-markets-item .button .basic-btn{
    height: 75px;
    border-radius: 0 0 10px 10px!important;
}
.graph-wrap{
    padding: 17px 33px;
    background: #F2F2F2;
    gap: 24px;
    display: flex;
    justify-content: space-between;
}
.graph-wrap .left .title,
.graph-wrap .right .title{
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #3C3C42;
    margin-bottom: 0;
}
.graph-wrap .left .description,
.graph-wrap .right .description{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #3C3C42;
}
.graph-wrap .right .description{
    text-align: right;
}
.reddown{
    color: #E82A00!important;
}
.greenup{
    color: #00AC26!important;
}
.graph-wrap .center{
    height: 50px;
}
.graph-wrap .center img{
    height: 100%;
    width: auto;
}
.carousel-wrap2{
    padding: 0 135px;
}

.mar-btns{
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.mar-next.slick-disabled,
.mar-prev.slick-disabled{
    background: #bdbdbb !important;
    border: 2px solid #bdbdbb !important;
}
.mar-next.slick-disabled:hover:after,
.mar-prev.slick-disabled:hover:after{
    border-bottom: 3px solid #FFFFFF;
    border-left: 3px solid #FFFFFF;
}
.mar-next,
.mar-prev{
    position: relative;
    width: 51px;
    height: 51px;
    background: #01A020;
    border-radius: 10px;
    border: 2px solid #01A020;
    transition: all 0.3s ease;
}

.mar-next:after,
.mar-prev:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 12px;
    width: 12px;
    border-bottom: 3px solid #FFFFFF;
    border-left: 3px solid #FFFFFF;
    border-radius: 2px;
}
.mar-next:hover,
.mar-prev:hover{   ;
    background: transparent;
}

.mar-next:hover:after,
.mar-prev:hover:after{
    border-bottom: 3px solid #01A020;
    border-left: 3px solid #01A020;
}
.mar-prev:after{
    transform: rotate(45deg) translate(-60%, -5%);;
}
.mar-next:after{
    transform: rotate(-135deg) translate(80%, -10%);;
}

.my-slick-dots ul,
.my-slick-dots2 ul,
.my-slick-dots3 ul{
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.my-slick-dots ul li,
.my-slick-dots2 ul li,
.my-slick-dots3 ul li{
    display: flex;
    align-items: center;
}
.my-slick-dots ul li button,
.my-slick-dots2 ul li button,
.my-slick-dots3 ul li button{
    font-size: 0;
    width: 16px;
    height: 4px;
    background: #626262;
    opacity: 0.5;
    border-radius: 25px;
    transition: all 0.3s ease;
    outline: none;
    border: 0;
}
.my-slick-dots ul li.slick-active button,
.my-slick-dots2 ul li.slick-active button,
.my-slick-dots3 ul li.slick-active button{
    width: 46px;
    height: 4px;
    opacity: 1;
    background: #006D15;
    border-radius: 25px;
}
.clr-str-green{
    color: #01A020;
}
.my-slick-dots3{
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.anymarkets{
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.any-item{
    display: grid;
    flex-basis: 445px;
    flex-shrink: 1;
    background-color: #fff;
    border-radius: 20px;
}
.any-item .top{
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}
.any-item .top .img{
    height: 210px;
    width: 100%;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}
.any-item .top .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.any-item .top .title{
    font-weight: 800;
    font-size: 26px;
    line-height: 32px;
    color: #000021;
    margin-bottom: 16px;
}
.any-item .top .description{
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #67677B;
}
.any-item .button{
    align-self: end;
}
.any-item .button button{
    height: 80px;
}
.with-us{
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 25px;
}
.w-item{
    display: flex;
    align-items: center;
    gap: 25px;
}
.contact-us{
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.contact-us .left{
    flex-basis: 675px;
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.contact-us .right{
    align-self: center;
    flex-basis: 704px;
    flex-shrink: 1;
    display: flex;
    gap: 40px;
    flex-direction: column;
    background: #000021;
    border-radius: 20px;
    padding: 50px 55px;
}
.inputs{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.input-wrap{
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.input-wrap label{
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}
.input-wrap input{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 17px;
    color: white;
}
.input-wrap input::placeholder{
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #E9E9E9;
    opacity: 0.24;
}
.contact-btn{
    width: 100%!important;
    padding: 16px 42px;
    border: 2px solid #FFFFFF;
    background: #000021!important;
    border-radius: 50px;
}
.contact-btn:hover{
    background: #FFFFFF!important;
    color: #000021!important;
    border-color: #FFFFFF!important;
}
.table>.col-12:not(:first-child) {
    border-left: 1px solid rgba(208, 208, 208, 0.6);
    margin-left: 2px;
}
.table>:not(:first-child) {
    border-top: 0!important;
    color: #67677B;
}
.education .title{
    color: #FFFFFF;
}
.education .description{
    font-family: Gilroy;
    font-weight: 300;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
}
.table-hours th, .table-hours td{
    padding: 12px!important;
    font-size: 14px!important; ;
}
.wrapcfd{
    background: #F8F6FF;
}
.table-wrap{
    background-color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
}
@media screen and (min-width: 992px) {
    .clr-white-lg{
        color: #ffffff!important;
    }
}
@media screen and (min-width: 1201px) and (max-width: 1400px){
    .tariff{
        padding: 24px 10px;
    }
    .tariff__title{
        font-size: 25px;
    }
    .tariff__subtitle{
        font-size: 17px;
    }
    .tariff_price {
        font-size: 34px;
    }
    .popular{
        font-size: 12px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1200px){
    .banner .content .title{
        font-size: 60px;
    }
    .banner .content .subtitle-green{
        font-size: 65px;
    }
    .p240x140{
        padding: 140px 40px;
    }
    .tariff{
        padding: 24px 10px;
    }
    .tariff__title{
        font-size: 25px;
    }
    .tariff__subtitle{
        font-size: 14px;
    }
    .tariff_price {
        font-size: 26px;
    }
    .popular{
        font-size: 12px;
    }
}
@media screen and (max-width: 991px) {
    .w43, .w57 {
        width: 100%;
    }
    .mt87-32{
        margin-top: 32px!important;
    }
    .pb51{
        padding-bottom: 51px;
    }
    .p160-64 {
        padding: 64px 6px;
    }
    .bg.w43 {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
    }

    .bg-grad {
        background: linear-gradient(180deg, rgba(0, 0, 33, 0) -99.08%, #000021 100%);
    }

    .basic-btn,
    .anyq {
        font-size: 15px;
        line-height: 19px;
        letter-spacing: 0.02em;
        padding: 13px 35px;
        width: 199px;
        height: 45px;
        background: #01A020;
        border-radius: 42px;
    }
    .btn-arrow.ben-btn{
        background: #FFFFFF;
        border-color: #FFFFFF;
        color: #01A020;
        padding-left: 20px;
        text-align: left;
        font-weight: 700;
        font-size: 22px;
    }
    .btn-arrow.ben-btn:hover{
        border-color: #01A020;
        padding-left: 52px;
    }
    .btn-arrow.ben-btn:hover:after{
        right: 18%;
    }
    .blocks{
        margin-top: 68px;
    }
    .content {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 5;
    }
    .banner .content .title{
        font-size: 28px;
        text-align: center;
    }
    .banner .content .description {
        font-size: 16px;
        text-align: center;
    }
    .main-banner .content .title {
        color: #FFFFFF;
    }

    .banner .content .subtitle-green {
        font-size: 36px;
    }

    .p240x140 {
        padding: 140px 40px;
    }

    .main-banner .content .description {
        color: #6BF5C0;
    }

    .content .title {
        margin-bottom: 12px;
        font-size: 26px;
        line-height: 112.5%;
    }

    .content .description {
        font-size: 16px;
        line-height: 140.5%;
    }

    .min-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 32px auto;
    }

    .asset-item .item-top {
        padding: 15px 15px 5px 15px;
    }

    .asset-item {
        margin: 0 auto;
    }

    .m-item {
        width: 114px;
        padding-bottom: 6px;
        font-size: 12px;
        line-height: 16px;
    }

    .m-item:first-of-type {
        border-bottom: 4px solid #FFFFFF;
    }

    .asset-item {
        border-radius: 15px;
        width: 290px;
        margin: 0 10px;
    }

    .asset-item .item-top .center {
        max-width: 140px;
    }

    .asset-item .item-top .title {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .asset-item .item-top .description {
        font-size: 10px;
    }

    /*---*/
    .carousel-wrap {
        margin-top: 32px;
        margin-left: -4px;
        margin-right: -4px;
    }

    .comment-item {
        padding: 36px;
        gap: 25px;
        width: calc(100% - 22px);
        height: 307px;
        border-radius: 3px;
        margin: 20px 10px 40px 12px;
    }

    .comment-item .description {
        font-size: 16px;
    }

    .comment-item .user-wrap {
        gap: 11px;
    }

    .user-wrap .left .icon {
        height: 57px;
        width: 57px;
    }
    .user-wrap .right {
        gap: 4px;
    }

    .user-wrap .right .title {
        font-size: 21px;
    }

    .user-wrap .right .description {
        font-size: 13px;

    }
    .carousel-comments-btns{
        position: absolute;
        justify-content: space-between;
        width: 100%;
        padding: 0 12px;
        display: flex;
        align-items: center;
        gap: 15px;
        right: 50%;
        top: calc(100% - 51px);
        transform: translateX(50%);
    }
    .comments .content{
        display: block !important;
    }
    .ourplatform{
        flex-direction: column;
        gap: 32px;
    }
    .ourplatform .left{
        flex-basis: auto;
    }
    .ourplatform .right{
        flex-basis: auto;
        gap: 60px;
    }
    .pl-items{
        gap: 35px;
    }
    .pl-item{
        font-size: 16px;
        line-height: 162%;
        padding-left: 0;
        padding-top: 48px;
        text-align: center;
    }
    .pl-item img{
        height: 30px;
        width: 30px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .benefits{
        flex-direction: column;
        gap: 60px;
    }
    .ben-item{
        flex-basis: 375px;
        flex-shrink: 1;
    }
    .ben-item .icon{
        width: 81px;
        height: 65px;
        margin-bottom: 32px;
        justify-self: center;
    }
    .ben-item .title{
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 12px;
        text-align: center;
    }
    .ben-item .description{
        font-size: 16px;
        margin-bottom: 12px;
        text-align: center;
    }
    .partners{
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-top: 32px;
    }
    .partner-item{
        height: 30px;
    }
    .tariff{
        background-color: #fff;
    }
    .tariff__icon>img{
        height: 24px;
        width: 24px;
    }
    .tariff__title{
        font-weight: 800;
        font-size: 30px;
        line-height: 38px;
        text-align: center;
        color: #080808;
    }
    .tariff__subtitle{
        font-size: 14px;
        line-height: 160%;
        text-align: center;
        min-height: auto;
    }
    .tariff__description{
        font-size: 14px;
        padding-left: 34px;
        height: 22px;
    }
    .check{
        width: 20px;
        height: 20px;
        left: 0;
        transform: translate(-50%, 0);
    }
    .tariff__btn{
        width: calc(100% + 48px);
        left: -24px;
        bottom: -48px;
    }
    .tariffs{
        margin-top: 32px;
        padding-left: 0;
        margin-left: 0;
        position: relative;
    }
    .tariff-active{
        border: 2px solid #01A020;
        box-shadow: 0 10px 22px 20px rgba(34, 75, 129, 0.1);
    }
    .tariff__btn button{
        border: 0;
        border-radius: 0px;
    }
    .tariff__settings span{
        display: block;
    }
    .tariff_price {
        font-weight: 600;
        font-size: 30px;
        line-height: 37px;
        text-align: center;
        color: #080808;
    }
    .tariff_price span{
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        color: #717171;
        opacity: 0.6;
    }
    .popular{
        font-size: 12px;
        line-height: 15px;
        padding: 3px 5px;
        border-radius: 20px;
        margin-left: 0px;
    }
    .guarantees{
        flex-direction: column;
        gap: 32px;
    }
    .guarantees-item{
        position: relative;
        width: 100%;
        padding: 14px 24px;
        border-radius: 8px;
    }
    .guarantees-item:after{
        content: "";
        position: absolute;
        top: 50%;
        right: 32px;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #000000;
        border-right: 2px solid #000000;
        transform: translateY(-50%) rotate(-45deg);
        transition-duration: 0.5s;
    }
    .guarantees-item.bgc-darkblue:after{
        content: "";
        position: absolute;
        top: 50%;
        right: 32px;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        transform: translateY(-50%) rotate(-45deg);
        transition-duration: 0.5s;
    }
    .guarantees-item .title{
        font-size: 18px;
        line-height: 20px;
    }
    .guarantees-item .description{
        font-size: 16px;
        line-height: 20px;
        max-width: 250px;
        margin-left: 0;
    }
    .c-markets-item{
        margin: 0 15px;
    }
    .c-markets-item .top{
        padding: 17px 25px 21px;
        gap: 7px;
    }
    .c-markets-item .top .icon{
        height: 23px;
    }
    .c-markets-item .top .title{
        font-size: 15px;
    }
    .c-markets-item .top .description{
        font-size: 12px;
    }
    .c-markets-item .button .basic-btn{
        height: 52px;
    }
    .graph-wrap{
        padding: 11px 23px;
        gap: 17px;
    }
    .graph-wrap .left .title,
    .graph-wrap .right .title{
        font-size: 12px;
        line-height: 18px;
    }
    .graph-wrap .left .description,
    .graph-wrap .right .description{
        font-size: 9px;
        line-height: 14px;
    }
    .graph-wrap .center{
        height: 35px;
    }
    .carousel-wrap2{
        padding: 0 0 83px 0;
    }
    .mar-btns{
        align-items: center;
        top: calc(100% - 32px);
        transform: translateY(0%);
    }
    .anymarkets{
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .any-item{
        flex-basis: auto;
        max-width: 445px;
    }
    .any-item .top{
        padding: 15px 18px;
    }
    .any-item .top .img{
        height: 158px;
        margin-bottom: 18px;
        border-radius: 9px;
    }
    .any-item .top .title{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    .any-item .top .description{
        font-size: 16px;
    }
    .any-item .button button{
        height: 60px;
    }
    .with-us{
        margin-top: 12px;
    }
    .w-item{
        display: flex;
        align-items: start;
        gap: 10px;
    }
    .contact-us{
        flex-direction: column-reverse;
    }
    .contact-us .left{
        gap: 32px;
        flex-basis: auto;
        width: 100%;
    }
    .contact-us .right{
        gap: 32px;
        flex-basis: auto;
        width: 100%;
        padding: 30px 27px;
    }
    .education .title{
        font-size: 26px;
        line-height: 34px;
    }
    .education .description{
        font-size: 16px;
        line-height: 22px;
    }
    .mwtable{
        min-width:825px;
    }
    .table-wrap{
        padding: 0;
    }
}

