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

body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    background: #FFFFFF;
    webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.disable-body {
    overflow: hidden;
}

.side-menu {
    padding-top: 80px;
    position: fixed;
    z-index: 25;
    margin-top: 70px;
    top: -120%;
    height: 80vh;
    padding-bottom: 64px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: top 0.5s ease;
    background: url("../img/bg/modal-page.bg.png"), #FFFFFF;
    background-repeat: no-repeat;
    background-position-y: 90%;
    background-size: 100%;
    border-radius: 0 0 64px 64px;
    box-shadow: 0px 4px 47.3px 0px #385DA8;
    overflow: scroll;
}

.side-menu::-webkit-scrollbar {
    display: none;
}

.side-menu .btns-wrapper {
    display: none;
    gap: 16px;
    flex-direction: column;
    max-width: 345px;
    width: 100%;
}

.side-menu .btns-wrapper .btn-transparent {
    border: 0.78px solid #3C69D7;
    background: transparent;
    border-radius: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 49px;

    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    color: #3C69D7;
}

.side-menu .btns-wrapper .btn {
    border: none;
    background: #3C69D7;
    border-radius: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 49px;

    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    color: #FFFFFF;
}

.side-menu .side-menu__wrapper {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.side-menu .side-menu__wrapper ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 64px;
    max-width: 684px;
    width: 100%;
}

.side-menu .side-menu__wrapper ul li {
    max-width: 310px;
    width: 100%;
    cursor: pointer;
}

.side-menu .side-menu__wrapper ul li a {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: Nunito Sans, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    color: #3C69D7;
    transition: .1s all linear;
}

.side-menu .side-menu__wrapper ul li a:hover {
    transform: scale(1.01);
}

.side-menu .info {
    max-width: 390px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-menu .info .wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    text-align: left;
    color: #3C69D7;
}

.side-menu .info .wrapper span {
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    text-align: left;
    color: #072664;
}


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

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

.hide {
    display: none !important;
}

.btn {
    background: #3C69D7;
    border-radius: 4px;
    font-family: Nunito Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    border: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .1s all linear;
}

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

.btn-transparent {
    background: transparent;
    border-radius: 4px;
    border: 0.78px solid #FFFFFF;
    font-family: Nunito, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    text-align: center;
    color: #FFFFFF;
}

.btn-white {
    background: #FFFFFF;
    border-radius: 4px;
    font-family: Nunito Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    border: none;
    color: #01050F;
}

.lines-button {
    cursor: pointer;
    background: transparent;
    padding: 15px 3px;
    border: 0;
    outline: none;
    transition: .1s all linear;
}

.lines-button:hover {
    transform: scale(1.02);
}

.lines {
    display: inline-block;
    width: 38px;
    height: 3px;
    -webkit-transition: 0.35s;
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    transition: 0.35s;
    position: relative;
    background: transparent;
    /*create the upper and lower lines as pseudo-elements of the middle line*/
}

.lines:before, .lines:after {
    display: inline-block;
    width: 38px;
    height: 6px;
    background: #FFFFFF;
    -webkit-transition: 0.35s;
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    transition: 0.35s;
    position: absolute;
    left: -3px;
    content: '';
    -webkit-transform-origin: 0.1785714286rem center;
    -moz-transform-origin: 0.1785714286rem center;
    -ms-transform-origin: 0.1785714286rem center;
    transform-origin: 0.1785714286rem center;
}

.lines:before {
    top: 0px;
}

.lines:after {
    top: -14px;
}

.lines-button.x .lines:before, .lines-button.x .lines:after {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: top 0.3s 0.1s ease, transform 0.3s ease;
}

.lines-button.x.close .lines {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -moz-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
}

.lines-button.x.close .lines:before, .lines-button.x.close .lines:after {
    -webkit-transition: top 0.3s ease, transform 0.3s 0.1s ease;
    -moz-transition: top 0.3s ease, transform 0.3s 0.1s ease;
    -ms-transition: top 0.3s ease, transform 0.3s 0.1s ease;
    transition: top 0.3s ease, transform 0.3s 0.1s ease;
    top: 0;
}

.lines-button.x.close .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.lines-button.x.close .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.tel {
    cursor: pointer;
    transition: .1s all linear;
    display: flex;
    column-gap: 12px;
    align-items: center;
}

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

.tel .tel-text {
    font-family: Nunito Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: center;
    color: #3C69D7;
}

.sub-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: center;
    color: #072664;
    margin-bottom: 5px;
}

section {
    padding: 64px 0;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 67.2px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px 0px #7394E5;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
    color: #01050F;
}

h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #01050F;
}

h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    color: #01050F;
}

header.side-menu-open {
    background: #FFFFFF;
}

header.side-menu-open .lines:before, header.side-menu-open .lines:after {
    background: #3C69D7;
}

header.side-menu-open .btns-wrapper .btn-transparent {
    border: 1px solid #3C69D7;
    color: #3C69D7;
}

header.side-menu-open .btns-wrapper .btn-white {
    background: #3C69D7;
    color: #FFFFFF;
}

header {
    background: #BBCFFF;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 26;
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    height: 70px;
}

header .btns-wrapper {
    display: flex;
    gap: 12px;
}

header .btns-wrapper .btn-transparent {
    width: 88px;
    height: 33px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .1s all linear;
}

header .btns-wrapper .btn-transparent:hover {
    transform: scale(1.05);
}

header .btns-wrapper .btn-white {
    width: 110px;
    height: 33px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .1s all linear;
}

header .btns-wrapper .btn-white:hover {
    transform: scale(1.05);
}

footer {
    background: #FFFFFF;
    padding: 80px 0;
}

footer .footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

footer .footer-wrapper .company {
    max-width: 285px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    color: #3C69D7;
}

footer .rights {
    margin-top: 80px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: #3C69D7;
}

footer nav {
    max-width: 390px;
    width: 100%;
}

footer nav ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    column-gap: 56px;
    max-height: 150px;
    flex-wrap: wrap;
}

footer nav ul li {
    transition: .1s all linear;
}

footer nav ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #01050F;
}

footer nav ul li:hover {
    transform: scale(1.02);
}

footer nav ul li .wrapper {
    max-width: 280px;
    white-space: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #01050F;
}

footer nav ul li .wrapper span {
    font-size: 14px;
    font-weight: 400;
    color: #3C69D7;
}

footer nav ul li .wrapper span a {
    text-decoration: underline;
    color: #3C69D7;
}


footer .footer-info {
    max-width: 284px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .footer-info .wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #01050F;
}

footer .footer-info .wrapper span {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #3C69D7;
}


section.why-we-best {
    background: #FFFFFF;
}

section.why-we-best ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

section.why-we-best ul li {
    max-width: 390px;
    width: 100%;
    min-height: 390px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30.9px 0px #B5CAFF;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

section.why-we-best ul li:first-child {
    background: transparent;
    border: none;
    box-shadow: none;
    align-items: flex-start;
}

section.why-we-best ul li:first-child .text {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
    color: #072664;
}

section.why-we-best ul li:first-child .btn {
    width: 163px;
    height: 49px;
    font-size: 16px;
    margin-top: 32px;
}

section.why-we-best ul li .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: center;
    color: #616161;
}

section.exchange {
    background: #FFFFFF;
}

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

section.exchange .container > img {
    max-width: 1227px;
    width: 100%;
}

section.exchange .help {
    background: transparent;
    padding: 18px 18px 36px 18px;
    border-radius: 42px;
    border: 1px solid #3C69D7;
    max-width: 1056px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto;
}

section.exchange .text {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
    color: #FFFFFF;
}

section.exchange .help .help-description {
    box-shadow: 0px 4px 30.9px 0px #B5CAFF;
    background: url("../img/eyes-img.png"), #3C69D7;
    background-repeat: no-repeat;
    background-position: 99% 100%;
    border-radius: 22px;
    padding: 40px;
}

section.exchange h3 {
    font-size: 40px;
    color: #FFFFFF;
    max-width: 677px;
    width: 100%;
    margin-bottom: 10px;
    line-height: 40px;
}

section.exchange .contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
}

section.exchange .contacts a {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    width: 100%;
    transition: .2s all linear;
}

section.exchange .contacts a:hover {
    transform: scale(1.01);
}

section.exchange .contacts a .text {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: center;
    color: #3C69D7;
}

section.get-loan-easy {
    background: #ECF2FF;
    padding-bottom: 0;
    position: relative;
}

section.get-loan-easy .content {
    display: flex;
    justify-content: flex-start;
}

section.get-loan-easy .content > .wrapper {
    max-width: 531px;
    width: 100%;
}

section.get-loan-easy h2 {
    margin-bottom: 16px;
    text-align: left;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #01050F;
}

section.why-we-best h2 {
    text-align: left;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #01050F;
}

section.get-loan-easy img.upper-eye {
    position: absolute;
    top: 0;
    right: 3%;
}

section.get-loan-easy img.lower-eye {
    position: absolute;
    bottom: 0;
    left: 3%;
}

section.get-loan-easy .container{
  position: relative;
}

section.get-loan-easy .content{
  position: relative;
  z-index: 2;
}

section.get-loan-easy img.upper-eye,
section.get-loan-easy img.lower-eye{
  z-index: 1;
  pointer-events: none;
}

section.get-loan-easy .background-img-wrapper
section.get-loan-easy .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 553px;
    width: 100%;
}

section.get-loan-easy .content .sub-title {
    margin-bottom: 0;
    text-align: left;
}

section.get-loan-easy .content .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #616161;
}

section.get-loan-easy .content .btn {
    margin-top: 16px;
    max-width: 145px;
    width: 100%;
    height: 49px;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    color: #FFFFFF;
}

section.feedback {
    background: #D0E0FF;
}

section.feedback .container {
    position: relative;
}

section.feedback h3 {
    text-align: center;
}

section.feedback ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 64px;
}

section.feedback ul li {
    max-width: 494px;
    display: flex;
    position: relative;
    gap: 24px;
    align-items: center;
}

section.feedback ul li .comment {
    max-width: 358px;
    width: 100%;
    min-height: 225px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

section.feedback ul li .comment .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #8694A3;
}

section.feedback ul li .comment .name {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    color: #01050F;
}

section.feedback ul li .comment > img {
    width: 40px;
    height: 34px;
}

section.feedback .feedback-ul-nav button {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5;
    transition: .1s all linear;
}

section.feedback .feedback-ul-nav button.active {
    opacity: 1;
    cursor: pointer;
}

section.feedback .feedback-ul-nav button#feedback-prev {
    transform: rotate(180deg);
    left: 30px;
}

section.feedback .feedback-ul-nav button#feedback-next {
    right: 30px;
}

section.feedback .feedback-ul-nav button#feedback-prev, section.feedback .feedback-ul-nav button#feedback-next {
    position: absolute;
    top: 231px;
    transition: .1s all linear;
}

section.feedback .feedback-ul-nav button#feedback-next:hover {
    transform: scale(1.01);
}

section.feedback .feedback-ul-nav button#feedback-prev:hover {
    transform: rotate(180deg) scale(1.01);
}

section.calculator-section {
    background: url("../img/bg/calculator-section-bg.png") center center/cover no-repeat;
    padding-top: 134px;
    padding-bottom: 250px;
}

section.calculator-section .calculator-wrapper {
    max-width: 854px;
    align-items: stretch;
    width: 100%;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 16px;
    display: flex;
    gap: 32px;
    margin: 64px auto 0 auto;
    padding: 30px;
}

section.calculator-section .calculator-wrapper .calculator, section.calculator-section .calculator-wrapper .loan-details {
    height: auto;
    padding: 24px 24px 48px 24px;
    border-radius: 8px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    max-width: 422px;
    width: 100%;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper {
    background: #F3F4F5;
    padding: 16px;
    border-radius: 4px;
    max-width: 374px;
    width: 100%;
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #01050F;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper .wrapper {
    display: flex;
    position: relative;
    align-items: flex-start;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper .wrapper span {
    text-wrap: nowrap;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper .dots {
    width: 100%;
    border-bottom: 1px dashed black;
    position: relative;
    bottom: auto;
    margin-top: 14px;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper span {
    font-weight: 700;

}

section.calculator-section .calculator-wrapper .loan-details .btn {
    width: 100%;
    height: 49px;
    font-size: 16px;
    line-height: 19px;
}

section.calculator-section #copy-promo {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

section.calculator-section #percent {
    display: inline-flex;
    flex-direction: column;
}

section.calculator-section #percent .percent-without-promo {
    color: #878D97;
    text-decoration: line-through;
}

section.calculator-section .calculator-wrapper .calculator {
    max-width: 342px;
    width: 100%;
}

section.calculator-section .calculator-wrapper .calculator .btns-wrapper {
    width: 100%;
    background: #F3F4F5;
    padding: 4px;
    border-radius: 4px;
    display: flex;
}

section.calculator-section .calculator-wrapper .calculator .btns-wrapper button {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #94A2AF;
    background: #F3F4F5;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 141px;
    width: 100%;
    border: none;
    height: 35px;
    cursor: pointer;
    transition: .1s all linear;
    border-radius: 4px;
}

section.calculator-section .calculator-wrapper .calculator .btns-wrapper button.active {
    background: #3C69D7;
    color: #FFFFFF;
}

.modal {
    padding-bottom: 90px;
    background: url("../img/bg/modal-page.bg.png");
    background-repeat: no-repeat;
    background-position-y: 92%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 154px;
    padding-bottom: 64px;
}

.modal .modal-content {
    position: relative;
    max-width: 908px;
    height: fit-content;
    width: fit-content;
    border-radius: 16px;
    background: transparent;
    border: 1px solid #3C69D7;
    padding: 40px;
}

.modal .modal-content .payment-check .timer {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    color: #3C69D7;
    margin: 12px 0;
}

.modal .modal-content .payment-check .application {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 4px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #3C69D7;
    margin-top: 24px;
}

.modal .modal-content .payment-check .application .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    color: #01050F;
    cursor: pointer;
}

.modal .modal-content .fourth-step .payment-via-crypto-wallet, .modal .modal-content .fourth-step .payment-via-wallet {
    max-width: 310px;
}

.modal .modal-content .fourth-step .payment-via-wallet ul.payment-guide {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.modal .modal-content .fourth-step .payment-via-wallet ul.payment-guide li {
    border: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    max-width: 310px;
    width: 100%;
}

.modal .modal-content .fourth-step .payment-via-wallet ul.payment-guide li .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #636972;
}

.modal .modal-content .fourth-step .payment-via-wallet ul.payment-guide li .number {
    background: #ECF2FF;
    max-width: 32px;
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 15.36px;
    text-align: center;
    color: #3C69D7;
}

.modal .modal-content .fourth-step .payment-info {
    width: 100%;
    background: linear-gradient(105.03deg, #608EFF -25.3%, #3C69D7 63.75%);
    padding: 24px 24px 36px 24px;
    border-radius: 16px;
    margin: 24px 0;
}

.modal .modal-content .fourth-step .payment-info .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal .modal-content .fourth-step .payment-info .wrapper .timer {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: right;
    color: #FFFFFF;
}

.modal .modal-content .fourth-step .payment-info .text-small {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    text-align: left;
    color: #FFFFFF;
}

.modal .modal-content .fourth-step .payment-info .iban {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.modal .modal-content .fourth-step .warning {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    color: #636972;
}

.modal .modal-content .fourth-step .warning span {
    color: #F1807D;
    font-weight: 700;
}

.modal .modal-content .copy {
    cursor: pointer;
}

.modal .modal-content .fourth-step .payment-info .payment-amount {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: #FFFFFF;

    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.modal .modal-content .fourth-step .payment-via-wallet .payment-info {
    padding: 18px 18px 24px 18px;
    background: linear-gradient(98.95deg, #608EFF 19.57%, #3C69D7 84.48%);
}

.modal .modal-content .fourth-step .payment-via-wallet .payment-info .payment-amount {
    font-size: 18px;
}

.modal .modal-content .fourth-step .payment-checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

.modal .modal-content .fourth-step .payment-checkbox-wrapper input {
    margin: 0;
    padding: 0;
    width: 24px;
    height: 24px;
}

.modal .modal-content .fourth-step .payment-checkbox-wrapper label {
    font-family: Nunito Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    color: #636972;
    padding-top: 4px;
}

.modal .modal-content > .small {
    max-width: 310px;
}

.modal .modal-content .modal-footer {
    max-width: 326px;
    padding: 20px;
    border-radius: 8px;
    background: #1D2228;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 32px;
}

.modal .modal-content .modal-footer h4 {
    color: #F3F4F5;
    font-family: PT Sans, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    margin-bottom: 12px;
}

.modal .modal-content .modal-footer .text {
    color: #4F5D6D;
    font-family: PT Sans, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
    text-align: left;
}

.modal .modal-content input {
    margin-top: 32px;
    padding-top: 24px;
}

.modal .modal-content .label {
    color: #8399AE;
    font-family: PT Sans, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.modal .modal-content .btn {
    height: 49px;
    max-width: 310px;
    width: 100%;

    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Nunito Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;

    margin-top: 32px;
}

.modal .modal-content .modal-footer .tel {
    margin: 8px 0;
}

.modal .modal-content .modal-footer .tel .tel-text {
    font-family: PT Sans, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    background: linear-gradient(308deg, #D39433 -33.34%, #FDE47F 92.09%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal .modal-content .modal-footer .tel a {
    margin: 0;
}

.modal .modal-content .modal-footer .tel:hover {
    transform: scale(1.01);
}

.modal .modal-content h2 {
    color: #3C69D7;
    text-align: center;
    font-family: PT Sans, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 33.6px */
    margin-bottom: 12px;
}

.modal .modal-content .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: center;
    color: #4F5D6D;
    max-width: 311px;
}

.modal .modal-content .input-wrapper {
    position: relative;
}

.modal .modal-content .input-wrapper input:focus {
    outline: none;
}

.modal .modal-content .input-wrapper input:focus ~ label, .modal .modal-content .input-wrapper input:not(:placeholder-shown) ~ label {
    top: 36px;
    font-size: 14px;
    color: #A0A8B4;
}

.modal .modal-content .input-wrapper label {
    position: absolute;
    top: 45px;
    left: 21px;

    color: #A0A8B4;
    font-family: Nunito Sans, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    transition: .1s all linear;
}

.modal .modal-content .credit-details {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.modal .modal-content .credit-details .credit-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3px;
}

.modal .modal-content .credit-details .credit-detail .text, .modal .modal-content .credit-details .credit-detail .detail-information {
    color: #4F5D6D;
    font-family: PT Sans, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.modal .modal-content .credit-details .credit-detail .detail-information {
    color: #1D2228;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
}

.modal .modal-content .requisites {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.modal .modal-content .requisites .crypto-wallet-wrapper {
    display: flex;
    gap: 16px;
    padding-bottom: 3px;
    max-width: 326px;
    width: 100%;
    cursor: pointer;
}

.modal .modal-content .requisites .crypto-wallet-wrapper .wallet-number {
    color: #1D2228;
    max-width: 286px;
    width: 100%;
    font-family: PT Sans, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
    overflow-wrap: anywhere;
}

.modal .modal-content .payment-method-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 32px 0 8px 0
}

.modal .modal-content .payment-method-wrapper .payment-method {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #C0C8D3;
    align-items: center;
    cursor: pointer;
    width: 100%;
    max-width: 310px;
}

.modal .modal-content .payment-method-wrapper .payment-method:hover {
    border: 1px solid #3C69D7
}

.modal .modal-content .payment-method-wrapper .payment-method .number {
    max-width: 40px;
    width: 100%;
    height: 40px;
    background: #ECF2FF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .modal-content .payment-method-wrapper .payment-method .text {
    color: #01050F;
    font-family: Nunito Sans, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;

}

.modal .modal-content .text-small {
    font-family: Nunito Sans, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    text-align: center;
    color: #A0A8B4;
    margin-top: 16px;
}

.modal .modal-content .btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.modal .modal-content .third-step .btn-wrapper, .modal .modal-content .fourth-step .btn-wrapper {
    gap: 0;
}

.modal .modal-content .third-step .btn-wrapper .btn-transparent,
.modal .modal-content .fourth-step .btn-wrapper .btn-transparent,
.modal .modal-content #step-4 #payment-via-wallet .information-found  .to-thread-step {
    border: none;
    font-family: Nunito Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: center;
    color: #A0A8B4;
    text-transform: initial;
}

.modal .modal-content .fourth-step .text {
    margin: 0;
    font-family: Nunito Sans, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: center;
    color: #636972;
}

.modal .modal-content .btn-wrapper .btn {
    margin: 0;
}

.modal .modal-content .btn-transparent {
    border-radius: 8px;
    border: 0.607px solid #8399AE;
    background: transparent;

    color: #8399AE;
    text-align: center;
    font-family: PT Sans, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.modal .modal-content .payment-via-card .requisites {
    margin-top: 32px;
}

.modal .modal-content ol.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    list-style-type: decimal;
    margin-left: 20px;
}

.modal .modal-content .text-wrapper .text {
    text-align: left;
}

.modal .modal-content .payment-qr-code {
    display: block;
    margin: 32px auto;
}

input[type=text] {
    height: 50px;
    font-size: 16px;
    max-width: 310px;
    width: 100%;
    border: none;
    border-radius: 8px 8px 0 0;
    background: #F3F4F5;
    padding: 8px 16px 8px 20px;
    border-bottom: 1px solid #878D97
}


.modal.fifth-step {
    position: relative;
    z-index: 50;
}

.modal .fifth-step svg {
    position: absolute;
    right: 13px;
    top: 13px;
}

.modal .fourth-step {
    max-width: 908px;
    width: 100%;
}

.modal .fourth-step .choose-bank-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    color: #01050F;
    margin: 24px 0;
}

.modal .fourth-step .to-pay {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    max-width: 828px;
    width: 100%;
    background: linear-gradient(105.03deg, #608EFF -25.3%, #3C69D7 63.75%);
    border-radius: 16px;
    padding: 24px 24px 36px 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #FFFFFF;
}

.modal .fourth-step .to-pay span {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    text-align: left;

}

.modal .fourth-step ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 23px;
}

.modal .fourth-step ul li {
    max-width: 260px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #C0C8D3;
    background: #FFFFFF;
    cursor: pointer;
    padding: 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #01050F;
    transition: .1s all linear;
}

.modal .fourth-step ul li:hover {
    border: 1px solid #3C69D7
}

.modal .fourth-step .text {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    color: #01050F;
    margin: 32px 0;
}

.modal > .container {
    display: flex;
    justify-content: center;
}

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

.result-modal {
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 31;

    max-width: 310px;
    width: 100%;
    background: #FFF;
    border-radius: 8px;
    padding: 32px 16px;
}

.result-modal > svg {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.result-modal h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    color: #1D2228;
    margin-bottom: 12px;
}

.result-modal .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: center;
    color: #878D97;
}

.result-modal .btn {
    margin-top: 32px;
    height: 49px;
    font-size: 16px;
    line-height: 19.2px;
}

section.content {
    padding-top: 134px;
}

.primary-content {
    background: #ecf2ff;
}

.content .container .page-content {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.content .container .page-container {
    max-width: 1000px;
}

.h5 {
    font-family: Nunito Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: center;
    color: #072664;
    margin-bottom: 20px;
}

.h4 {
    font-family: Nunito Sans;
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    text-align: left;
}

.h1 {
    font-family: Nunito Sans;
    font-size: 56px;
    font-weight: 700;
    line-height: 67.2px;
    text-align: center;
    color: #3C69D7;
    margin-bottom: 30px;
}

.h6 {
    font-family: Nunito Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    text-align: left;
}

.day-theme {
    margin-bottom: 30px;
}

.main-item {
    position: relative;
}

.main-item .main-img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}

.main-item__content {
    margin: 24px;
    bottom: 0;
    position: absolute;
    width: calc(100% - 48px);
    display: flex;
    flex-direction: column;
    padding: 16px 24px 16px 24px;
    border-radius: 16px;
    background: rgba(1, 5, 15, 0.6);
}

.main-item__button {
    background: none;
    border: none;
    cursor: pointer;
}

.main-item__content--small {

    padding: 8px 16px 8px 16px
}

.main-item__content--row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-item__content__column {
    width: 100%;
}

.main-item__content-text {
    font-family: Nunito Sans;
    font-size: 24px;
    font-weight: 700;
    line-height: 33.6px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 12px;
}

.main-item__content-text--small {
    font-size: 16px;
    margin-bottom: 0;
}

.main-item__content-footer {
    font-family: Nunito Sans;
    font-size: 12px;
    font-weight: 300;
    line-height: 16.8px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
}

.item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: rgba(255, 255, 255, 1);
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0px 11px 26.3px 0px rgba(60, 105, 215, 0.38);
    cursor: pointer;
}

.item__left {
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.item__right {
    display: flex;
    min-width: 250px;
}

.item__right img {
    width: 100%;
    height: auto;

}

.item__header {
    font-family: Nunito Sans;
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    text-align: left;
    color: rgba(1, 5, 15, 1);
    margin-bottom: 10px;
}

.item__content {
    height: 100%;
    font-family: Nunito Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    margin-bottom: 10px;
    color: rgba(99, 105, 114, 1);

}

.item__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: rgba(99, 105, 114, 1);
}

.actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.actions .btn {
    margin-top: 16px;
    max-width: 165px;
    width: 100%;
    height: 49px;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    color: #FFFFFF;
}

.breadcrumb {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb a {
    font-family: Nunito Sans, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #072664;
    cursor: pointer;
}

.article-header {
    display: flex;
    justify-content: space-between;
    margin-top: 38px;
    margin-bottom: 45px;
    align-items: center;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.social-link-button {
    border: none;
    background: none;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    position: relative;
}

a.social-link-button {
    display: contents;
}

a.social-link-button img {
    margin: 8px;
}

.social-link-button__hint {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ECF2FF;
    box-shadow: 0px 2px 6.3px 0px #3C69D740;
    color: #072664;
    position: absolute;
    border-radius: 13px;
    background: #FFFFFF;
    width: max-content;
    gap: 10px;
    padding: 10px;
    top: -40px;
    transform: translateX(-50%);
    left: 50%;
}

.social-link-button:hover {
    background-color: #D0E0FF5C;
    border: none;
    border-radius: 50%;
}

.breadcrumb--active {
    color: #3C69D7;
    font-size: 14px;
    line-height: 140%;
}

.article-image {
    border-radius: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.article-content-title {
    text-align: left;
    color: #01050F;
    font-family: Nunito Sans;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    margin-bottom: 12px;
}

.article-content-list li {
    margin-left: 10px;
    margin-bottom: 24px;
    color: #636972;
    font-family: Nunito Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    text-align: left;
}

.article-content-list {
    list-style: inside;
}

.article-content__paragraph {
    font-family: Nunito Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    text-align: left;
    color: #636972;
    margin-bottom: 24px;
}

.promotion {
    width: calc(50% - 15px)
}

.promotion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.row {
    display: flex;
    flex-direction: row;
}


.questions-list {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.questions-list li:last-child {
    color: #878D97;
    border-radius: 0px 100px 100px 0px;
    border: 1px solid #3C69D7;

}

.questions-list li:first-child {
    color: #878D97;
    border-radius: 100px 0 0 100px;
    border: 1px solid #3C69D7;
    border-right: none;

}

.questions-list li {
    border-radius: 0px 100px 100px 0px;
    padding: 12px 12px 12px 12px;
    cursor: pointer;
    font-family: Nunito Sans;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.questions-list li img {
    display: none;

}

.question-active {
    color: #3C69D7 !important;
    background: #ecf2ff !important;
}

.question-active img {
    display: block !important;
}

section.QA {
    padding: 84px 0;
    padding-top: 140px;
    background: #FFFFFF;
}

section.QA h2 {
    margin-bottom: 32px;
}

section.QA .text {
    color: #4F5D6D;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 44px;
}


section.QA h3 {
    color: #1D2228;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 24px;
}

section.QA .qa-list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.QA .qa-list li {
    max-width: 810px;
    width: 100%;
    border-radius: 16px;
    border: 1px solid transparent;
}

section.QA .qa-list li .item__wrapper {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: .3s all linear;
    margin: 0 auto;
    gap: 10px;
}

section.QA .qa-list > li:hover {
    transform: scale(1.01);
    border: 1px solid #3C69D7;
    border-radius: 16px;
}

section.QA .qa-list > li.li-active {
    border: 1px solid #3C69D7;
    border-radius: 16px;
    padding-bottom: 24px;
}

section.QA .qa-list li .item__wrapper .img-hover {
    display: none;
    transition: .3s;
}

section.QA .qa-list li .item__wrapper:hover .img-closed {
    display: none !important;
}

section.QA .qa-list li .item__wrapper:hover .img-hover:not(.hide) {
    display: block !important;
}

section.QA .qa-list li .item__wrapper:hover .img-open:is(.hide) {
    display: none !important;
}

section.QA .qa-list li .item__wrapper .text {
    color: #01050F;

    font-family: Nunito Sans;
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    text-align: left;

}

section.QA .qa-list li .item__wrapper img {
    width: 32px;
    height: 32px;
    transform: rotate(180deg);
    transition: .3s all linear;
}

section.QA .qa-list .text {
    margin-bottom: 0;
}

section.QA .qa-list li .text__wrapper-to-open {
    padding: 0px 32px;
    display: none;
    flex-direction: column;
    row-gap: 24px;
    justify-content: center;
    align-items: center;
}

section.QA .qa-list li .text__wrapper-to-open .text, section.QA .qa-list li .text__wrapper-to-open p {
    color: #636972;
    font-family: Nunito Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    max-width: 955px;
    opacity: .9;
}

.qa-more-btn-open {
    transform: rotate(360deg) !important;
}

.show-flex {
    display: flex !important;
}

.text-bold {
    font-weight: bold;
}

.item__text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.item__number {
    min-width: 40px;
    min-height: 40px;
    padding: 10px 0px 0px 0px;
    gap: 10px;
    border-radius: 4px;
    opacity: 0px;
    background: #ECF2FF;
    font-family: Nunito Sans;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    color: #3C69D7;;
}

.disabled {
    opacity: 0.7;
}


.info {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    background: #ECF2FF;
    gap: 30px;
    max-width: 494px;
    padding: 24px 32px 24px 32px;
    border-radius: 8px;
}

.contacts-info__item {
    display: flex;
    gap: 10px;
}

.contacts-info__title {
    font-family: Nunito Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    text-align: left;
    color: #3C69D7;
    margin-bottom: 10px;
}

.contacts-info__subtitle {
    font-family: Nunito Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    text-align: left;
    color: #878D97;

}

.map {
    min-height: 100%;
    width: 100%;
}

.map iframe {
    border-radius: 8px;
    margin: 0 auto;
    min-height: 100%
}

.swiper {
    height: 200px;
    background: #F3F4F5;
}

.swiper-wrapper {
    /*padding: 20px;*/
}

.swiper-slide {
    padding: 0px 5px;
}

.amount-option {
    border-radius: 4px;
    opacity: 0.5;
    background: #F3F4F5;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 10px;
}

.swiper-slide-active .amount-option__active {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 4px;
    border: 1px;
}

.amount-option__title {
    font-family: Nunito Sans;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: center;
    color: #01050F;
}

.amount-option__subtitle {
    font-family: Nunito Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #A9ABB1;

}

.swiper-slide-active {

}

.swiper-slide-active .amount-option {
    opacity: 1;
    box-shadow: 0px 5px 7.5px 0px #96B1F085;
    background: white;
    padding: 10px 10px;
    /*transform: scale(1.1);*/
}

.swiper-slide-active .amount-option__title {
    font-size: 48px;
    color: #01050F;
    display: none;
}

.calculator__input {
    display: block;
    color: #01050F;
    font-family: Nunito Sans;
    font-size: 48px;
    background: transparent;
    z-index: 1000;
    border: none;
    width: 120px;
    padding: 0;
}

.calculator__input[name='day'] {
    width: 70px;
}

.calculator__input:focus {
    outline: none;
}

.swiper-slide-active .amount-option__subtitle {
    font-size: 24px;
    color: #A9ABB1;
}

.method-wallet-selected {
    border: 1px solid #3C69D7 !important;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 80px;
    right: 100px;
    display: none;
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 5px 5px;
    border-radius: 20%;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000;
}

#scrollToTopBtn:hover {
    background-color: #BBCFFF;
}

.why-we-best-header {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    color: #01050F;
}

.cookie-modal {
    position: fixed;
    opacity: .9;
    background: #ECF2FF;
    padding: 60px 100px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: column;
    bottom: 0;
    z-index: 20;
}

.cookie-modal .text {
    font-family: Nunito Sans, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #01050F;
}

.cookie-modal .btns-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.cookie-modal .btn {
    height: 49px;
    max-width: 216px;
    width: 100%;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: Nunito Sans, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.cookie-modal .btn.white {
    color: #01050F;
    background: #FFFFFF;
}

section.privacy-policy {
    padding-top: 110px;
}

section.privacy-policy h1 {
    margin: 48px auto;
    line-height: 120%;
}

section.privacy-policy ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1020px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

section.privacy-policy ul li .name {
    font-family: Nunito Sans, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #01050F;
    margin-bottom: 12px;
}

section.privacy-policy ul li .text {
    font-family: Nunito Sans, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: #636972;
}

section.breadcrumb-pt {
    padding-top: 110px;
}

section.about-us {

}

.subtitle {
    font-family: Nunito Sans, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #072664;
}

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

section.about-us .pink-text-bg {
    background: #ECF2FF;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section.about-us .pink-text-bg .text {
    font-family: Nunito Sans, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: #636972;
}

section.about-us .pink-text-bg .text.fw-700 {
    color: #01050F;
}

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

section.about-us .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
}

section.about-us .text {
    font-family: Nunito Sans, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #636972;
}

section.about-us ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 48px 0;
    gap: 30px;
}

section.about-us h1 {
    margin-bottom: 0;
}

section.about-us .subtitle {
    margin-bottom: 32px;
}

section.about-us ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    box-shadow: 0px 4px 30.9px 0px #B5CAFF;
    background: #FFFFFF;
    padding: 24px;
    border-radius: 24px;
    min-height: 390px;
    max-width: 285px;
    width: 100%;
}

section.about-us ul li .name {
    font-family: Nunito Sans, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #01050F;
    margin-bottom: 8px;
}

section.about-us ul li .text {
    font-family: Nunito Sans, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #616161;
    text-wrap: balance;
}

h4 {
    font-family: Nunito Sans, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #000000;
}

footer .footer-info .wrapper span a {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #3C69D7;
}

/* Убираем горизонтальный скролл */
html, body {
    overflow-x: hidden;
}

/* Разрешаем перенос длинных ссылок и никнеймов */
a, .tel-text, .info, .wrapper span {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* FIX: центрируем логотип в шапке независимо от количества кнопок */
header .container {
  display: block !important; /* отменяет твой прошлый flex на container */
}

header .wrapper {
  position: relative;
}

header .wrapper > a { /* ссылка с логотипом */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

header .btns-wrapper { /* блок кнопок справа */
  margin-left: auto;
}


