*, :before, :after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    background: #FFFFFF;
}

/* BASIC STYLES */

.burger {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: .3s all linear;
}

.burger:hover {
    transform: scale(1.05);
}

#burger {
    user-select: none;
    width: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 25px;
    border-radius: 6px;
    background: linear-gradient(89.71deg, #0E0671 -9.78%, #4135DC 87.15%);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#burger span:nth-child(1) {
    top: -7px;
}

#burger span:nth-child(2) {
    top: 0px;
}

#burger span:nth-child(3) {
    top: 7px;
}

#burger.open span:nth-child(1) {
    top: 0px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#burger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#burger.open span:nth-child(3) {
    top: 0px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.side-menu {
    position: fixed;
    z-index: 25;
    margin-top: 50px;
    top: -8px;
    right: -100%;
    height: 100vh;
    background: #EEFBFF;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px 0 24px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: right 0.5s ease;
}

.side-menu.open {
    right: 0;
}

.side-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.side-menu ul li a {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #090630;
}

.side-menu .buttons-wrapper {
    flex-direction: column;
    margin-top: 32px;
    gap: 24px;
}

.side-menu .buttons-wrapper .btn {
    max-width: 340px;
    width: 100%;
}

.disable-body {
    overflow: hidden;
}

.backdrop {
    background: rgba(0, 0, 0, 0.7);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 20;
    top: 0;
}

.media-1024 {
    display: none !important;
}

.hidden {
    display: none !important;
}

.plus-minus {
    position: relative;
    width: 25px;
    height: 25px;
    cursor: pointer;
    user-select: none;
}

.plus-minus.active:before {
    transform: translatey(-50%) rotate(-90deg);
    opacity: 0;
}

.plus-minus.active:after {
    transform: translatey(-50%) rotate(0);
}

.plus-minus:before, .plus-minus:after {
    content: "";
    display: block;
    background-color: #6AC6FF;
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.35s;
    width: 100%;
    height: 3px;
}

.plus-minus:before {
    transform: translatey(-50%);
}

.plus-minus:after {
    transform: translatey(-50%) rotate(90deg);
}

.container {
    max-width: 1840px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #6AC6FF;
    line-height: 1;
}

h1 {
    font-weight: 600;
    font-size: 200px;
    line-height: 156px;
    text-align: right;
}

h2 {
    font-size: 120px;
}

h3 {
    font-size: 96px;
}

h4 {
    font-size: 56px;
    color: #142251;
}

h5 {
    font-size: 40px;
    color: #FFFFFF;
}

h6 {
    font-size: 28px;
    line-height: 34px;
    color: #090630;
}

.bold {
    font-weight: 700 !important;
}

.primary-text {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #0083D5;
}

.subtitle {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #142251;
}

.subtitle.white {
    color: #FFFFFF;
}

.subtitle.small {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.text-black {
    color: #142251;
}

.text-white {
    color: #F6F6F6;
}

.text-blue {
    color: #6AC6FF;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.btn {
    padding: 12px 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    border-radius: 48px;
    cursor: pointer;
    transition: .1s all linear;
}

.btn:hover {
    transform: scale(1.01);
}

.btn.primary-btn {
    border: none;
    outline: none;
    color: #FFFFFF;
    background: linear-gradient(0deg, #090630, #090630, #0E0671 -9.78%, #4135DC 87.15%);
}

.btn.btn-transparent {
    border: 1px solid #090630;
    color: #090630;
    background: transparent;
}

.buttons-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
}

section {
    padding: 140px 0 90px 0;
}

ul.info-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 30px;
    margin-top: 64px;
}

ul.info-list li {
    padding: 24px 24px 40px 24px;
    background: #EEFBFF;
    border-radius: 32px;
    max-width: 852px;
    width: 100%;
}

ul.info-list .title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #090630;
    margin-bottom: 24px;
}

/* HEADER */

header {
    position: fixed;
    width: 100%;
    background: #FFFFFF;
    z-index: 10;
}

header .header__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    height: 104px;
}

header nav ul {
    display: flex;
    gap: 72px;
}

header nav ul li a {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #090630;
    cursor: pointer;
    transition: .1s all linear;
}

header nav ul li a:hover {
    color: #1c1ca8;
}

header nav ul li a.active {
    color: #6AC6FF;
}

/* FIRST SCREEN */

.telegram-promotion h6 {
    text-transform: unset;
}

.telegram-promotion h6 img {
    width: 24px;
    height: 24px;
}

.swiper-nav-btns-wrapper {
    display: flex;
    gap: 28px;
    position: absolute;
    bottom: 0;
    z-index: 5;
}

.swiper-nav-btns-wrapper .swiper-button-prev, .swiper-nav-btns-wrapper .swiper-button-next {
    position: initial;
    height: auto;
    width: auto;
    border: none;
    background: transparent;
}

.swiper-nav-btns-wrapper .swiper-button-prev button, .swiper-nav-btns-wrapper .swiper-button-next button {
    border: none;
    background: transparent;
    cursor: pointer;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after, .swiper-button-prev:before, .swiper-rtl .swiper-button-next:before {
    content: '' !important;
}

.swiper-slide {
    cursor: pointer;
}

.telegram-promotion .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 32px;
}

.telegram-promotion .wrapper .primary-text {
    max-width: 484px;
}

.telegram-promotion .wrapper .btn {
    gap: 6px;
    max-width: 283px;
    width: 100%;
    justify-content: space-between;
}

section.first-screen {
    padding: 0;
    padding-top: 120px;
}

section.first-screen .swiper {
    max-width: 852px;
}

section.first-screen .swiper-slide h5 {
    text-transform: unset;
}

section.first-screen .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

section.first-screen .swiper-slide img {
    width: 100%;
    margin-top: 10px;
    border-radius: 32px;
    margin-bottom: 98px;
}

section.first-screen .container {
    padding: 0;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

section.first-screen .main-title {
    max-width: 1800px;
    margin-bottom: -48px;
    display: block;
    margin-inline: auto;
    width: 100%;
}

section.first-screen .first-screen__wrapper {
    background: linear-gradient(176.18deg, #6AC6FF 15.2%, #0C7EC5 111.5%);
    border-radius: 64px 64px 0 0;
    width: 100%;
    padding: 96px;
}

section.first-screen .right-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calculator {
    max-width: 370px;
    width: 100%;
}

.calculator-details {
    max-width: 370px;
    width: 100%;
}

.calculator-details .btn {
    width: 100%;
    margin-bottom: 32px;
}

.calculator-details .additional-info {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #949494;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.calculator-calculation__list {
    background: #EEFBFF;
    padding: 24px;
    border-radius: 24px;
    max-width: 370px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.calculator-calculation__list .calculator-detail {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #239CE6;
}

.calculator-calculation__list li {
    display: flex;
    gap: 4px;
    justify-content: space-between;
}

.calculator-calculation__list .value {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #239CE6;
}

.calculator-wrapper {
    display: flex;
    gap: 48px;
}

.calculator-wrapper .calculator-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 370px;
    width: 100%;
    position: relative;
    margin-bottom: 32px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 24px;
    background: transparent;
    width: 100%;
    cursor: pointer;
}

/* Track styles for WebKit browsers (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-runnable-track {
    height: 24px;
    border-radius: 24px;
    background: linear-gradient(to right, #0E0671 0%, #4135DC var(--fill-percent), #ECECEC var(--fill-percent), #ECECEC 100%);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 32px;
    width: 8px;
    background: #1B128D;
    border-radius: 2px;
    cursor: pointer;
    margin-top: -3px;
    border-radius: 4px;
}

/* Track styles for Firefox */
input[type="range"]::-moz-range-track {
    height: 24px;
    border-radius: 24px;
    background: linear-gradient(to right, #0E0671 0%, #4135DC var(--fill-percent), #ECECEC var(--fill-percent), #ECECEC 100%);
    border: none;
}

input[type="range"]::-moz-range-thumb {
    height: 32px;
    width: 8px;
    background: #1B128D;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    margin-top: -3px;
    border-radius: 4px;
}

/* For the unfilled portion of the track */
input[type="range"] {
    background: #ECECEC;
    border-radius: 24px;
}

/* Firefox specific - to show the unfilled portion */
input[type="range"]::-moz-range-progress {
    background: linear-gradient(to right, #0E0671 0%, #4135DC var(--fill-percent), #ECECEC var(--fill-percent), #ECECEC 100%);
    height: 24px;
    border-radius: 24px;
}

input[type="text"] {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #090630;
}

input[type="text"]::placeholder {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #090630;
}

.calculator-block-wrapper {
    background: #FFFFFF;
    padding: 32px 32px 64px 32px;
    border-radius: 32px;
    max-width: 852px;
    width: 100%;
}

.calculator-indicators-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.calculator-indicators-wrapper .calculator-indicator {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #949494;
}

/* WHY WE */

section.why-we {
    border-radius: 64px 64px 0 0;
}

/* EASY TO GET */

section.easy-to-get {

}

section.easy-to-get h2 {
    max-width: 1420px;
    width: 100%;
}

section.easy-to-get h5, section.easy-to-get h4 {
    color: #142251;
}

section.easy-to-get h4 {
    font-size: 75px;
}

section.easy-to-get .subtitle {
    max-width: 852px;
    width: 100%;
    margin-top: 64px;
}

section.easy-to-get ul.info-list {
    margin-bottom: 64px;
}

section.easy-to-get ul.info-list li {
    max-width: 560px;
}

section.easy-to-get ul.info-list li .title {
    margin-bottom: 8px;
}

section.easy-to-get .btn {
    margin: 0 auto;
}

/* FEEDBACK */

section.feedback {
    background: #A4DCFF;
    border-radius: 64px 64px 0 0;
}

section.feedback .swiper-slide {
    margin-bottom: 98px;
}

section.feedback .swiper-btns-wrapper {
    position: absolute;
    bottom: 10px;
    left: 20px;
    display: flex;
    gap: 68px;
}

section.feedback .swiper-button-next, section.feedback .swiper-button-prev {
    position: initial;
    border: none;
    background: transparent;
    cursor: pointer;
}

section.feedback .swiper-button-next button, section.feedback .swiper-button-prev button {
    position: initial;
    border: none;
    background: transparent;
    cursor: pointer;
}

.swiper-button-next:after, .swiper-button-prev:after {
    content: '' !important;
}

section.feedback .subtitle {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

section.feedback ul.feedback__list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 64px;
}

section.feedback ul.feedback__list li {
    border-radius: 20px;
    padding: 24px;
    background: #FFFFFF;
    max-width: 452px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

section.feedback ul.feedback__list li .feedback__list-item-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

section.feedback .container {
    padding-right: 0;
    margin-right: 0;
}

section.feedback ul.feedback__list li .primary-text {
    max-height: 80px;
    overflow: hidden;
}

section.feedback ul.feedback__list li .wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

section.feedback ul.feedback__list li .wrapper .feedback-info {
    display: flex;
    gap: 8px;
}

section.feedback ul.feedback__list li .wrapper .feedback-info .feedback-rate {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #239CE6;
}

section.feedback ul.feedback__list li .wrapper .feedback-info .name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #172858;
}

section.feedback ul.feedback__list li .wrapper .feedback-info .date {
    margin-left: 8px;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #757575;
}

/* FAQ */

section.faq {
    background: #6AC6FF;
    border-radius: 64px 64px 0 0;
    margin-bottom: -48px;
    padding-bottom: 138px;
}

section.faq ul.faq__list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin-top: 64px;
}

section.faq ul.faq__list li {
    max-width: 852px;
    width: 100%;
    background: #FFFFFF;
    backdrop-filter: blur(30px);
    border-radius: 24px;

}

section.faq ul.faq__list li .faq__list-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 16px 24px;
    height: 80px;
}

section.faq ul.faq__list li .faq__list-item-header .title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #172858;
}

section.faq ul.faq__list li .item-content {
    padding: 0 24px 16px 24px;
}

/* PROMOTION */

section.promotion {
    padding-bottom: 320px;
}

section.promotion h5 {
    font-size: 48px;
    text-transform: initial;
}

section.promotion .promotion__wrapper {
    background: linear-gradient(183.11deg, #6AC6FF 13.95%, #0C7EC5 138.13%);
    border-radius: 64px;
    padding: 44px 64px;
    position: relative;
}

section.promotion .promotion__wrapper .text-wrapper {
    max-width: 1145px;
    width: 100%;
    position: relative;
    z-index: 3;
}

section.promotion h4 {
    margin-bottom: 24px;
}

section.promotion .btn {
    margin: 48px 0;
}

section.promotion img.desk {
    position: absolute;
    top: -80px;
    right: 0;
    z-index: 2;
}

section.promotion img.mobile {
    display: none;
}

section.promotion .additional-info {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
    max-width: 800px;
    width: 100%;
}

/* FOOTER */

footer {
    padding: 96px 0;
    position: relative;
}

footer .footer__main-title {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

footer .footer__wrapper {
    display: flex;
    justify-content: center;
    gap: 140px;
    margin: 64px 0;
}

footer .footer__wrapper .footer__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 3px 0 3px 16px;
    border-left: 1px solid #757575;
}

footer .footer__wrapper .footer__title, footer .footer__wrapper .footer__list li.footer__title a {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #1F1F1F;
    max-width: 426px;
    width: 100%;
}

footer .footer__wrapper .footer__list li a {
    display: flex;
    gap: 8px;
    align-items: center;

    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #757575;
}

footer .footer__wrapper .footer__list.footer__login-content {
    flex-direction: row;
    gap: 24px;
}

footer .footer__additional-info {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 120%;
    text-align: center;
    color: #757575;
    max-width: 1700px;
    margin: 0 auto;
}

footer .footer__additional-info a {
    text-decoration: underline;
}

.all-rights {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #1F1F1F;
    display: block;
    margin: 50px auto 0 auto;
}

footer .btn {
    max-width: 140px;
    width: 100%;
}

#footer-up {
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 320px;
}

.footer-docs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-docs a {
    font-size: 16px;
    line-height: 22px;
    color: #757575;
}
