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

p {
    margin: 0;
}

html {
    overflow-x: hidden;
}

body {
    /* background: #010101; */
    overflow-x: hidden;
}

.name.user,
.lastname.user{
    color: rgb(0, 194, 0)!important;
}

.footer {
    background: #1C1B1D;
    padding: 45px 0;
}

.footer .nav-item {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-top: 15px !important;
}
.footer .nav-item:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.footer .text-content {
    padding-top: 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #E2E2E2;
    opacity: 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: 600;
    color: #FDFDFD;
    opacity: 0.8;
    text-decoration: none;
    transition-duration: 0.5s;
    font-size: calc(clamp(0.75rem, 0.2258rem + 0.6452vw, 1rem));
}

.navbar a:hover {
    color: #FDFDFD;
    opacity: 1;
}

button#login {
    white-space: nowrap;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #FDFDFD;
    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 #FDFDFD;
}

button#registration {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    color: #FDFDFD;
    border-radius: 10px;
    border: 1px solid #FDFDFD;
    background: transparent;
    padding: 8px 18px;
    transition-duration: 0.5s;
}

button#registration:hover{
    background: #FDFDFD !important;
    color: #1C1B1D;
}

.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: linear-gradient(180deg, rgba(3, 3, 13, 1) 50%, rgba(3, 3, 13, 1) 90%, rgba(3, 3, 13, 0) 100%);
    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: #FF4F4F;
}

.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: #F6764D !important;
}

.mobile-nav-btn {
    display: none;
    color: #FDFDFD;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    padding: 3px 15px;
    width: 23px;
}

.mobile-nav-btn i {
    font-size: 26px;
    color: #FDFDFD;
}

.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;
}



/*.contact-us {*/
/*    margin: 0 5px 0;*/
/*    background: #fff;*/
/*    border-radius: 20px;*/
/*    padding: 60px;*/
/*    width: 90%;*/
/*}*/



#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 .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) {

    .header {
        background: #rgba(3, 3, 13, 1);
        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));
    }

    .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: 0px;
        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 {

    }

    .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;
    }


    .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: start;
    }

    .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;
} */
.top60{
    margin-top: 60px!important;
}

/* new style */
:root {
    --bg-clr: #08061C;
    --basic-btn-clr: #2F80ED;
    --basic-btn-text: #FFF;
    --t-clr: #ffffff;
    --d-clr: #ffffff;
    --basic-btn-clr-hov: rgba(47, 128, 237, 0.8);
}

* {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

body {
    min-width: 375px;
    background: var(--bg-clr) !important;
}

section {
    width: min(1920px, 100%);
    margin: 0 auto;
    position: relative;
}

.dfcol {
    display: flex;
    flex-direction: column;
}

.index-up {
    position: relative;
    z-index: 3;
}

.index-center {
    position: relative;
    z-index: 2;
}

.index-down {
    position: relative;
    z-index: 1;
}

/*---BUTTONS---*/
.basic-btn, .any-q-btn, .contact-us-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 0.965rem + 0.1333vw, 1.125rem);
    padding: clamp(0.875rem, 0.7917rem + 0.1736vw, 1rem) clamp(2.3125rem, 2.1042rem + 0.434vw, 2.625rem);
    border-radius: 10px;
    background-image: linear-gradient(89deg, #6D3BFC -0.41%, #D5BEFC 104.84%);
    border: 1px solid #A481FB;
    color: var(--basic-btn-text);
    text-align: center;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}
.basic-btn:before, .any-q-btn:before, .contact-us-btn:before {
    background-image: linear-gradient(89deg, #D5BEFC, #6D3BFC);
    content: "";
    border-radius: inherit;
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    transition: opacity 0.3s;
    z-index: 0;
}

@media screen and (max-width: 576px) {
    .basic-btn {
        width: 100%;
    }
}

.basic-btn.btn-transp {
    background: transparent;
    color: var(--basic-btn-text);
}

.basic-btn:hover:before, .any-q-btn:hover:before, .contact-us-btn:hover:before {
    opacity: 1;
}
.basic-btn.d-inline:hover:before{
    opacity: 0;
}

/*---*/
.w1920 {
    width: min(1920px, 100%);
    margin: 0 auto;
}

.banner {
    padding: calc(clamp(1.5rem, -0.9052rem + 3.8793vw, 3.75rem) + 68px) clamp(1.25rem, -10.4418rem + 18.8578vw, 12.1875rem) clamp(3.125rem, -0.847rem + 7.4766vw, 8.125rem);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2.1875rem, -4.0187rem + 11.6822vw, 10rem);
}
@media screen and (max-width: 991px) {
    .banner {
        grid-template-columns: 1fr;
    }
}

.banner-img {
    position: relative;
}
@media screen and (576px < width < 991px) {
    .banner-img {
        display: flex;
        justify-content: center;
    }
}
.banner-img img {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
}
@media screen and (576px < width < 991px) {
    .banner-img img {
        width: min(600px, 115%);
        right: 0;
        top: 0;
    }
}
@media screen and (max-width: 575px) {
    .banner-img img {
        width: 115%;
        right: 15%;
        top: 0;
    }
}

.banner-content-wrap {
    gap: clamp(1.5rem, -0.9002rem + 3.8751vw, 3.75rem);
}

.ban-top {
    gap: clamp(1rem, -0.6001rem + 2.5834vw, 2.5rem);
}

.banner-content {
    gap: clamp(1.5rem, 0.6999rem + 1.2917vw, 2.25rem);
}
.banner-content .button {
    margin-top: clamp(0.75rem, 0.4833rem + 0.4306vw, 1rem);
}

.banner-title {
    color: #FDFDFD;
    font-size: clamp(2.5rem, 0.3665rem + 3.4446vw, 4.5rem);
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
}

.banner-description {
    color: #FDFDFD;
    font-size: clamp(1.125rem, 0.725rem + 0.6459vw, 1.5rem);
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
}

.people-wrap {
    display: flex;
    gap: clamp(0.75rem, 0.2166rem + 0.8611vw, 1.25rem);
}
.people-wrap .people-title {
    color: #D0B9FB;
    font-size: clamp(2rem, 0.1332rem + 3.014vw, 3.75rem);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.people-wrap .people {
    width: clamp(4.6875rem, -1.0208rem + 11.8924vw, 13.25rem);
}
.people-wrap .people img {
    width: 100%;
}
.people-wrap .people-description {
    color: #D0B9FB;
    font-size: clamp(0.875rem, 0.625rem + 0.5208vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.6px;
}

.partners {
    display: flex;
    gap: clamp(1rem, 0.4666rem + 0.8611vw, 1.5rem) clamp(1.5rem, -2.6336rem + 6.6738vw, 5.375rem);
    flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
    .partners {
        justify-content: center;
    }
}

.item-wrap {
    border-radius: clamp(0.9375rem, 0.6034rem + 0.5388vw, 1.25rem) !important;
    background: linear-gradient(180deg, #1D1E28 0%, #03030D 100%) !important;
}

.ben-item-i {
    padding: clamp(2rem, 0.931rem + 1.7241vw, 3rem) clamp(1.25rem, 0.7155rem + 0.8621vw, 1.75rem) clamp(1.25rem, 0.7155rem + 0.8621vw, 1.75rem);
    gap: clamp(1rem, 0.4655rem + 0.8621vw, 1.5rem);
    position: relative;
}
.ben-item-i:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 30%;
    height: clamp(3rem, 2.1983rem + 1.2931vw, 3.75rem);
    flex-shrink: 0;
    border-radius: clamp(5rem, 3.6638rem + 2.1552vw, 6.25rem);
    background: linear-gradient(89deg, #6D3BFC -0.41%, #D5BEFC 104.84%);
}
.ben-item-i:after {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(2.25rem, 1.7155rem + 0.8621vw, 2.75rem);
    height: clamp(2.25rem, 1.7155rem + 0.8621vw, 2.75rem);
    z-index: 2;
}
.ben-item-i:nth-child(1):after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 37 37" fill="none"><path d="M27.9998 11.9804C27.9998 11.581 27.7832 11.213 27.4341 11.0191L18.9339 6.29672C18.6017 6.11219 18.1978 6.11219 17.8657 6.29672L9.36543 11.0191C9.01629 11.213 8.79976 11.581 8.79976 11.9804V18.1956C8.79976 22.1896 10.9651 25.8696 14.4565 27.8093L17.8657 29.7033C18.1978 29.8878 18.6017 29.8878 18.9339 29.7033L22.343 27.8093C25.8344 25.8696 27.9998 22.1896 27.9998 18.1956V11.9804Z" stroke="%23FDFDFD" stroke-width="2"/><path opacity="0.45" d="M14.698 19.8128L17.9714 23.0862L24.5183 16.5394" stroke="%23FDFDFD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.ben-item-i:nth-child(2):after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 36 37" fill="none"><ellipse cx="17.241" cy="16.4431" rx="7.4231" ry="7.4231" stroke="%23FDFDFD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path opacity="0.45" d="M22.3447 21.9714L26.9842 26.6109" stroke="%23FDFDFD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.ben-item-i:nth-child(3):after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 37 36" fill="none"><path d="M20.9692 15.5264C20.8588 15.5264 20.7692 15.4369 20.7692 15.3264V5.60383C20.7692 5.41125 20.5237 5.32994 20.4088 5.48445L10.5941 18.6751C10.3487 19.005 10.5841 19.4736 10.9953 19.4736H16.5308C16.6412 19.4736 16.7308 19.5631 16.7308 19.6736V29.3962C16.7308 29.5888 16.9763 29.6701 17.0912 29.5156L26.9059 16.3249C27.1513 15.995 26.9159 15.5264 26.5047 15.5264H20.9692Z" stroke="%23FDFDFD" stroke-width="2"/></svg>');
}
.ben-item-i:nth-child(4):after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 37 37" fill="none"><path d="M27.4151 29.9577C24.8094 32.5634 18.1365 30.115 12.5107 24.4892C6.88492 18.8634 4.4366 12.1906 7.04222 9.58491L8.75783 7.8693C9.94221 6.68492 11.8938 6.71623 13.1168 7.93923L15.7741 10.5966C16.9971 11.8196 17.0284 13.7711 15.844 14.9555L15.4755 15.324C14.8361 15.9635 14.7735 16.995 15.3677 17.7151C15.9408 18.4096 16.5587 19.1014 17.2286 19.7713C17.8986 20.4413 18.5904 21.0591 19.2849 21.6323C20.0049 22.2264 21.0365 22.1639 21.676 21.5244L22.0445 21.1559C23.2288 19.9716 25.1804 20.0029 26.4034 21.2259L29.0607 23.8832C30.2837 25.1062 30.315 27.0578 29.1307 28.2421L27.4151 29.9577Z" stroke="%23FDFDFD" stroke-width="2"/><path opacity="0.3" d="M25.5009 15.0006C25.1756 14.207 24.6908 13.4636 24.0465 12.8192C23.4385 12.2113 22.7423 11.7454 21.9991 11.4214" stroke="%23FDFDFD" stroke-width="2" stroke-linecap="round"/><path opacity="0.3" d="M21.9992 6.88442C23.7787 7.52907 25.4482 8.56467 26.8748 9.99126C28.3372 11.4536 29.3887 13.1714 30.0294 15.001" stroke="%23FDFDFD" stroke-width="2" stroke-linecap="round"/></svg>');
}
.ben-item-i .item-title, .ben-item-i .item-description {
    color: #D0B9FB;
}

.item-title {
    font-size: clamp(1.25rem, 0.9828rem + 0.431vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.item-description {
    font-size: clamp(1rem, 0.8664rem + 0.2155vw, 1.125rem);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.section-content.dfcol {
    gap: clamp(1.75rem, 0.9483rem + 1.2931vw, 2.5rem);
}

.main-section {
    padding: clamp(2.25rem, -0.0216rem + 3.6638vw, 4.375rem) clamp(1.25rem, -10.4418rem + 18.8578vw, 12.1875rem);
}

.main-title {
    color: #FDFDFD;
    font-size: clamp(1.75rem, 0.1466rem + 2.5862vw, 3.25rem);
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
}

.main-description {
    font-size: clamp(1.125rem, 0.7241rem + 0.6466vw, 1.5rem);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    color: rgba(253, 253, 253, 0.75);
}

#markets {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2.1875rem, -4.0187rem + 11.6822vw, 10rem);
}
@media screen and (max-width: 991px) {
    #markets {
        grid-template-columns: 1fr;
    }
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
}
@media screen and (max-width: 991px) {
    .benefits {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-wrap {
    border-radius: clamp(0.9375rem, 0.6034rem + 0.5388vw, 1.25rem);
    padding: clamp(4.375rem, 3.7069rem + 1.0776vw, 5rem) clamp(1.25rem, -5.7651rem + 11.3147vw, 7.8125rem);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-wrap .abouline {
    height: 2px;
    background-color: #D0B9FB;
    position: relative;
    z-index: 0;
}
.about-wrap .abouline:before {
    position: absolute;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 50 50" fill="none"><g opacity="0.5" filter="url(%23filter0_f_22_4632)"><path d="M42 25C42 34.3888 34.3888 42 25 42C15.6112 42 8 34.3888 8 25C8 15.6112 15.6112 8 25 8C34.3888 8 42 15.6112 42 25ZM12.7514 25C12.7514 31.7647 18.2353 37.2486 25 37.2486C31.7647 37.2486 37.2486 31.7647 37.2486 25C37.2486 18.2353 31.7647 12.7514 25 12.7514C18.2353 12.7514 12.7514 18.2353 12.7514 25Z" fill="%23D0B9FB"/></g><defs><filter id="filter0_f_22_4632" x="0" y="0" width="50" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="4" result="effect1_foregroundBlur_22_4632"/></filter></defs></svg>');
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    height: 34px;
    width: 34px;
}
.about-wrap .abouline:after {
    position: absolute;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="12" fill="url(%23paint0_linear_22_4631)"/><defs><linearGradient id="paint0_linear_22_4631" x1="1.53441e-07" y1="28.2" x2="25.8567" y2="27.5755" gradientUnits="userSpaceOnUse"><stop stop-color="%236D3BFC"/><stop offset="1" stop-color="%23D5BEFC"/></linearGradient></defs></svg>');
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    height: 24px;
    width: 24px;
}

.about-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.about-bg img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 0.9483rem + 1.2931vw, 2.5rem);
    width: min(620px, 100%);
}

#commitments {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 24px;
}
@media screen and (max-width: 991px) {
    #commitments {
        grid-template-columns: 1fr;
    }
}

.commitments {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, -0.4526rem + 1.9397vw, 1.875rem);
}
@media screen and (992px < width < 1000px) {
    .commitments {
        grid-template-columns: 1fr;
    }
}
@media screen and (768px < width < 991px) {
    .commitments {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .commitments {
        grid-template-columns: 1fr;
    }
}

.comm-item {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-decoration: none;
    cursor: pointer;
    padding: clamp(1.25rem, -0.0862rem + 2.1552vw, 2.5rem);
}
.comm-item .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comm-item .top span {
    font-size: clamp(1.75rem, 1.4828rem + 0.431vw, 2rem);
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    color: #A481FB;
}
.comm-item .top svg {
    width: clamp(1.75rem, 1.2155rem + 0.8621vw, 2.25rem);
    height: clamp(1.75rem, 1.2155rem + 0.8621vw, 2.25rem);
}
.comm-item .comm-item-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.comm-item .comm-item-content .item-title {
    font-size: clamp(0.96875rem, 0.402rem + 0.915vw, 1.5rem);
    color: #FDFDFD;
}
@media screen and (max-width: 991px) {
    .comm-item .comm-item-content .item-title {
        font-size: 18px;
    }
}
.comm-item .comm-item-content .item-description {
    color: #FDFDFD;
    font-size: clamp(0.875rem, 0.6083rem + 0.4306vw, 1.125rem);
}
@media screen and (max-width: 991px) {
    .comm-item .comm-item-content .item-description {
        font-size: 14px;
    }
}

.basic-btn.d-inline {
    padding: 0px;
    border-radius: 0px;
    border: 0px;
    background: transparent;
    text-align: start;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    gap: 0px;
    box-shadow: none;
    color: #D0B9FB;
    font-size: clamp(1.25rem, 0.9828rem + 0.431vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-decoration: underline;
    text-underline-offset: 6px;
}

#steps {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, -0.9002rem + 3.8751vw, 3.75rem);
}

.steps-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2.1875rem, -4.0187rem + 11.6822vw, 10rem);
    align-items: center;
}
@media screen and (max-width: 991px) {
    .steps-wrap {
        grid-template-columns: 1fr;
    }
}

.steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 0.1999rem + 1.2917vw, 1.75rem);
    padding-left: clamp(2.75rem, -0.9836rem + 6.028vw, 6.25rem);
}

.steps-bg {
    position: absolute;
    left: 0;
    top: 50%;
    height: 80%;
    transform: translateY(-50%);
}
.steps-bg img {
    height: 100%;
}

.step-item {
    padding: clamp(1.25rem, 0.7166rem + 0.8611vw, 1.75rem) clamp(1.25rem, -0.0834rem + 2.1529vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 1.05rem + 0.3229vw, 1.4375rem);
    position: relative;
}
.step-item .top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.step-item .top .stepnum {
    font-size: clamp(1.75rem, 1.4833rem + 0.4306vw, 2rem);
    color: #A481FB;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
}
.step-item .top .item-title {
    color: #FDFDFD;
}
.step-item .item-description {
    color: #FDFDFD;
    opacity: 0.8;
}

.step-img {
    width: min(700px, 100%);
}
.step-img img {
    width: 100%;
}

.tariffs-block-wrap {
    background: linear-gradient(180deg, #272A53 0%, rgba(39, 42, 83, 0) 35.18%, rgba(39, 42, 83, 0) 55.02%, #272A53 100%);
}

#tariffs {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, -0.9002rem + 3.8751vw, 3.75rem);
}

.section-content.d-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
}
@media screen and (max-width: 991px) {
    .section-content.d-grid {
        grid-template-columns: 1fr;
    }
}

.tariffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 0.0666rem + 1.507vw, 1.875rem);
}
@media screen and (max-width: 991px) {
    .tariffs {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.tar-item {
    width: min(490px, 100%);
    padding: clamp(0.9375rem, 0.6041rem + 0.5382vw, 1.25rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 0.4499rem + 1.2917vw, 2rem);
    border-radius: clamp(0.9375rem, 0.6041rem + 0.5382vw, 1.25rem);
    border: 3px solid rgba(39, 42, 83, 0.5);
    background: #03030D;
    min-height: 100%;
}
.tar-item .tar-up {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 0.9833rem + 0.4306vw, 1.5rem);
}
.tar-item .tar-up .tar-description {
    color: #D0B9FB;
    font-size: clamp(1rem, 0.8667rem + 0.2153vw, 1.125rem);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.tar-item .tar-up .tar-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tar-item .tar-up .tar-title-wrap .tar-price {
    color: #FDFDFD;
    font-size: clamp(2rem, 0.9333rem + 1.7223vw, 3rem);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.tar-item .tar-up .tar-title-wrap .tar-title {
    display: flex;
    flex-direction: column;
    gap: clamp(0.25rem, 0.1167rem + 0.2153vw, 0.375rem);
}
.tar-item .tar-up .tar-title-wrap .tar-title span:first-of-type {
    color: #FDFDFD;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.tar-item .tar-up .tar-title-wrap .tar-title span:last-of-type {
    color: #FDFDFD;
    font-size: clamp(1.25rem, 0.7166rem + 0.8611vw, 1.75rem);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.tar-item .tar-hr {
    margin: 0;
}
.tar-item .tar-down {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 0.5332rem + 2.3681vw, 3.375rem);
    flex-grow: 1;
    justify-content: space-between;
}
.tar-item .tar-down .tar-descriptions {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 0.7333rem + 0.4306vw, 1.25rem);
}
.tar-item .tar-down .tar-descriptions .tar-des {
    position: relative;
    padding-left: 32px;
}
.tar-item .tar-down .tar-descriptions .tar-des svg {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}
.tar-item .tar-down .tar-descriptions .tar-des span {
    color: #FDFDFD;
    font-size: clamp(0.875rem, 0.7417rem + 0.2153vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.tar-item .tar-down .tar-descriptions .tar-des.notactive {
    padding-left: 0;
}
.tar-item .tar-down .tar-descriptions .tar-des.notactive span {
    color: #A481FB;
}

#contacts {
    display: flex;
    flex-direction: column;
    gap: clamp(3.75rem, 1.7499rem + 3.2293vw, 5.625rem);
}

.contacts .ben-item-i:nth-child(1):after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 44 44" fill="none"><rect x="8" y="11" width="28" height="22.4" rx="5" stroke="%23FDFDFD" stroke-width="3"/><path opacity="0.2" d="M12 19L20.8 25.6C21.5111 26.1333 22.4889 26.1333 23.2 25.6L32 19" stroke="%23FDFDFD" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.contacts .ben-item-i:nth-child(2):after {
    content: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 45 44" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M37.1667 19.0973C37.1667 29.0482 25.4334 39.4167 22.5 39.4167C19.5667 39.4167 7.83337 29.0482 7.83337 19.0973C7.83337 11.0815 14.3999 4.58337 22.5 4.58337C30.6002 4.58337 37.1667 11.0815 37.1667 19.0973Z" stroke="%23FDFDFD" stroke-width="3"/><circle opacity="0.3" cx="5.5" cy="5.5" r="5.5" transform="matrix(-1 0 0 1 28 12.8334)" stroke="%23FDFDFD" stroke-width="3"/></svg>');
}
.contacts .ben-item-i:nth-child(3):after {
    content: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 45 44" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M31.9151 32.9577C29.3094 35.5634 22.6365 33.115 17.0107 27.4892C11.3849 21.8634 8.9366 15.1906 11.5422 12.5849L13.2578 10.8693C14.4422 9.68492 16.3938 9.71623 17.6168 10.9392L20.2741 13.5966C21.4971 14.8196 21.5284 16.7711 20.344 17.9555L19.9755 18.324C19.3361 18.9635 19.2735 19.995 19.8677 20.7151C20.4408 21.4096 21.0587 22.1014 21.7286 22.7713C22.3986 23.4413 23.0904 24.0591 23.7849 24.6323C24.5049 25.2264 25.5365 25.1639 26.176 24.5244L26.5445 24.1559C27.7288 22.9716 29.6804 23.0029 30.9034 24.2259L33.5607 26.8832C34.7837 28.1062 34.815 30.0578 33.6307 31.2421L31.9151 32.9577Z" stroke="%23FDFDFD" stroke-width="3"/><path opacity="0.3" d="M30.0009 18.0006C29.6756 17.207 29.1908 16.4636 28.5465 15.8192C27.9385 15.2113 27.2423 14.7454 26.4991 14.4214" stroke="%23FDFDFD" stroke-width="3" stroke-linecap="round"/><path opacity="0.3" d="M26.4992 9.8843C28.2787 10.5289 29.9482 11.5645 31.3748 12.9911C32.8372 14.4535 33.8887 16.1712 34.5294 18.0009" stroke="%23FDFDFD" stroke-width="3" stroke-linecap="round"/></svg>');
}
.contacts .ben-item-i .item-title, .contacts .ben-item-i .item-description {
    color: #FDFDFD;
}
.contacts .ben-item-i .item-sub {
    color: #D0B9FB;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
}

.contacts {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 30px;
    justify-content: center;
}
@media screen and (max-width: 991px) {
    .contacts {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.any-q-wrap {
    border-radius: clamp(0.9375rem, 0.6041rem + 0.5382vw, 1.25rem);
    padding: clamp(4.5rem, -0.0336rem + 7.3197vw, 8.75rem) clamp(1.25rem, -14.7511rem + 25.8342vw, 16.25rem);
    position: relative;
    overflow: hidden;
}
.any-q-wrap .any-q-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.any-q-wrap .any-q-bg img:first-of-type {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    object-fit: cover;
}
.any-q-wrap .any-q-bg img:last-of-type {
    width: clamp(37.6875rem, 20.353rem + 27.9871vw, 53.9375rem);
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    transform: translate(-45%, -25%);
}

.any-q {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.333fr 1fr;
    gap: clamp(2.1875rem, -4.0187rem + 11.6822vw, 10rem);
}
@media screen and (max-width: 991px) {
    .any-q {
        grid-template-columns: 1fr;
    }
}

.any-q-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 0.4166rem + 2.1529vw, 3rem);
}

.anyqfrom {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, -0.9002rem + 3.8751vw, 3.75rem);
}

.inputs-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 0.7333rem + 0.4306vw, 1.25rem);
}
.inputs-wrap .anyqinput {
    padding: 20px 0 12px;
    border: 0px;
    outline: none;
    border-bottom: 1px solid #FDFDFD;
    color: #fff;
    font-size: clamp(1rem, 0.8667rem + 0.2153vw, 1.125rem);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    background: transparent;
}
.inputs-wrap .anyqinput::placeholder {
    opacity: 0.7;
    color: #ffffff;
}

#faq {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, -0.9002rem + 3.8751vw, 3.75rem);
}

.faq-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}
@media screen and (max-width: 991px) {
    .faq-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.faq-img {
    width: min(600px, 100%);
}

.faq-des {
    padding: clamp(1.25rem, -0.0834rem + 2.1529vw, 2.5rem);
    padding-top: 0;
    color: #FDFDFD;
}

.faq-bt {
    background: transparent;
    font-size: clamp(1.25rem, 0.9828rem + 0.431vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    color: #FDFDFD;
    outline: none;
    border: 0px;
    width: 100%;
    padding: clamp(1.25rem, -0.0834rem + 2.1529vw, 2.5rem);
    text-align: start;
    display: flex;
    justify-content: space-between;
}
.faq-bt svg {
    transition: 0.3s all ease;
}

.faq-bt:not(.collapsed) svg {
    transform: rotate(-90deg);
}

.faq .accordion {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 0.7333rem + 0.4306vw, 1.25rem);
}

.faq-it {
    overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
