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

html {
    /* background-color: #fff; */
    /* scroll-behavior: smooth; */
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: #667788;
    font-size: calc(12px + 0.208vw);
    line-height: 1.5 !important;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 !important;
    /* background: #F9F9F9; */
    background: #fff;
    /*
    webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
     */
}

h1, .h1 {
    font-size: calc(36px + 0.625vw);
    font-weight: 700;
    margin: 0;
    /* text-transform: uppercase; */
    line-height: 1.2;
    color: #000;
}

.purple {
    color: #816EF9;
    background: #816EF9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2, .h2 {
    font-weight: 500;
    font-size: calc(18px + 0.938vw);
    color: #000;
    /* text-transform: uppercase; */
}

h3, .h3 {
    font-weight: 700;
    font-size: calc(18px + 0.625vw);
    margin: 0;
    color: #000;
}

p {
    margin: 0;
}

a {
    text-decoration: none !important;
    color: inherit;
}

a:focus {
    outline: none;
    /* border: none; */
}

img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

legend {
    font-size: 18px;
    padding: 7px 0px
}

label {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 16px;
}

video {
    width: 100%;
}

.hidden {
    display: none
}

::-webkit-scrollbar {
    width: 10px;
    /* ширина для вертикального скролла */
    height: 8px;
    /* высота для горизонтального скролла */
    background: #fff;
    /*box-shadow: inset 0 4px 9px rgba(38, 117, 218, 0.25);*/
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
    background: linear-gradient(220deg, #97CA3E 4.52%, #FFFF22 95.48%);
    max-width: 153px;
}

input {
    -webkit-appearance: none;
    border-radius: 0;
}

textarea {
    border-radius: 0;
}

.scroll_up {
    position: fixed;
    right: 3%;
    bottom: 3%;
    cursor: pointer;
    z-index: 1000;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    -o-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    max-width: 65px;
}

.show {
    display: flex !important;
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
}

.chat {
    position: fixed;
    right: 3%;
    bottom: 3%;
    cursor: pointer;
    z-index: 1000;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    -o-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    max-width: 90px;
}

.container {
    /* max-width: 1480px; */
    width: 80%;
    height: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile{
    display: none;
}

.action_btn {
    width: 100%;
    max-width: 220px;
    height: 50px;
    font-size: calc(12px + 0.208vw);
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
    color: #000;
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align:center;
    position: relative;
    font-weight: 400;
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    animation: grad 3s ease-in-out infinite alternate;
    /* animation: grad duration timing-function delay iteration-count direction fill-mode; */
}

@keyframes grad{
    0%{
        background-size: 300% 100%;
    }
    100%{
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }
}

/* .action_btn:before {
    position: absolute;
    content: '';
    background: #816EF9;
    height: 2px;
    width: 85px;
    left: 0;
    top: auto;
    bottom: auto;
} */

.action_btn:focus {
    outline: none;
}

.action_btn:hover {
    transform: scale(1.05);
    /* -webkit-box-shadow: 5px 5px 20px 0px rgba(151,202,62,0.6);
    box-shadow: 5px 5px 20px 0px rgba(151,202,62,0.6); */
    transition: all .2s linear;
}



.popup-block {
    max-width: 500px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    margin: 0 auto;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    text-align: center;
}

.popup-block h1 {
    color: #fff;
    margin: 0 0 15px;
}

.popup-block p {
    color: #fff;
}

.mfp-close-btn-in .mfp-close {
    color: #145FCD !important;
}

.modal__form .form_field {
    width: 100%;
    margin: 0 0 25px;
    display: flex;
    justify-content: center;
}

.modal__form .form_field input[type=text],
.modal__form .form_field input[type=tel],
.modal__form .form_field input[type=email]{
    width: 100%;
    height: 45px;
    /* border-radius: 20px; */
    padding: 5px 20px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    outline: none;
    font-family: 'Roboto', sans-serif !important;
    background: #fff;
    color: #171717;
}

.modal__form .form_field textarea{
    width: 100%;
    height: 90px;
    /* border-radius: 20px; */
    padding: 5px 20px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    outline: none;
    font-family: 'Roboto', sans-serif !important;
    resize: none;
    background: #fff;
    color: #171717;
}

.modal__form input::-webkit-input-placeholder, .modal__form textarea::-webkit-input-placeholder {
    color: #171717;
}

.modal__form input::-moz-placeholder, .modal__form textarea::-moz-placeholder {
    color: #171717;
}

.modal__form input:-ms-input-placeholder, .modal__form textarea:-ms-input-placeholder {
    color: #171717;
}

.modal__form input::-ms-input-placeholder, .modal__form textarea::-ms-input-placeholder {
    color: #171717;
}

.modal__form input::placeholder,
.modal__form textarea::placeholder {
    color: #171717;
}

#thanks_modal {
    text-align: center;
    color: #fff;
}

.thanks_modal__button {
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
}

main {
    /* margin: 0 0 200px; */
    /*position: relative;*/
    /*opacity: 0;*/
}

.wpcf7-response-output {
    display: none;
}

.wpcf7-spinner {
    position: absolute;
    top: 0;
    right: 0;
}

.wpcf7-not-valid-tip {
    margin: 0 0 -20px;
}

/**
 * Fade-zoom animation for first dialog
 **/
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}
/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}
/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}
/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    -o-transform: translateY(0) perspective( 600px ) rotateX( 0 );
    transform: translateY(0) perspective( 600px ) rotateX( 0 );
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
    transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
}
/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}


.my-mfp-zoom-in .zoom-anim-dialog .modal__form .wpcf7 {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog .modal__form .wpcf7 {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.preloader_block {
    position: fixed;
    height: 250vh;
    width: 250vw;
    /*z-index: 10000;*/
    z-index: 0;
    background: linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: round 2s infinite forwards;
    left: -75%;
    top: -75%;
    /* animation: round 2s infinite forwards; */
}

@keyframes round {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1005;
    background: linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader{
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    animation: loader 5s linear infinite;
}
.loader div{
    height: 5vw;
    max-height: 100%;
    width: 2vw;
    max-width: 100%;
    margin: auto;
    border-radius: 0vw 10vw 0vw 10vw;
    box-shadow: inset 0vw 0vw 0vw .1vw #e618ca, 0vw 0vw 1.5vw 0vw #e618ca;
    overflow: auto;
    position: absolute;
}
.loader .one{
    transform: rotate(45deg);
    left: 0;
    right: 0;
    top: 0;
    bottom: 7.5vw;
    animation: animate 1s ease infinite;
}
.loader .two{
    transform: rotate(90deg);
    left: 5.5vw;
    right: 0;
    top: 0;
    bottom: 5.5vw;
    animation: animate 1s .125s ease infinite;
}
.loader .three{
    transform: rotate(135deg);
    left: 7.5vw;
    right: 0;
    top: 0;
    bottom: 0;
    animation: animate 1s .25s ease infinite;
}
.loader .four{
    transform: rotate(180deg);
    left: 5.5vw;
    right: 0;
    top: 5.5vw;
    bottom: 0;
    animation: animate 1s .375s ease infinite;
}
.loader .five{
    transform: rotate(225deg);
    left: 0;
    right: 0;
    top: 7.5vw;
    bottom: 0;
    animation: animate 1s .5s ease infinite;
}
.loader .six{
    transform: rotate(270deg);
    left: 0;
    right: 5.5vw;
    top: 5.5vw;
    bottom: 0;
    animation: animate 1s .625s ease infinite;
}
.loader .seven{
    transform: rotate(315deg);
    left: 0;
    right: 7.5vw;
    top: 0;
    bottom: 0;
    animation: animate 1s .750s ease infinite;
}
.loader .eight{
    transform: rotate(360deg);
    left: 0;
    right: 5.5vw;
    top: 0;
    bottom: 5.5vw;
    animation: animate 1s .875s ease infinite;
}
@keyframes loader{
    0%{ transform: rotate(0deg); }
    100%{ transform: rotate(-360deg); }
}
@keyframes animate{
    50%{ box-shadow: inset 0vw 0vw 0vw .1vw #03cccf, 0vw 0vw 1.5vw 0vw #03cccf; }
}


/* Header */

header{
    display: flex !important;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    font-size: 18px;
    transition: all .3s linear;
    height: 70px;
    background: #fff;
    /*opacity: 0;*/
}

header .container{
    height: 100%;
    width: 90%;
    /* max-width: 1615px; */
}

.header__wrapper  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: space-between;
    position: relative;
}

.header_black {
    background: rgba(255,255,255, 1);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    justify-content: center;
}

.header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    /* max-width: 500px; */
    width: 80%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.header__list li{
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
}

.header__list .menu-header_menu_en-container {
    width: 100%;
}

#primary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__link {
    /* color: #fff; */
    font-size: 12px;
    font-family: 'Craftwork Grotesk Heavy';
    text-decoration: none;
    cursor: pointer;
    height: 100%;
}

.header__link:hover {
    color: #97CA3E;
}

.header__menu {
    /* max-width: 795px; */
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
    transition: all .5s;
}

nav.menu ul li a {
    position: relative;
    color: #000;
    /* text-transform: uppercase; */
}

.footer_up__middle nav.menu ul li a {
    color: #fff;
}

nav.menu ul li a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #97CA3E;
    height: 2px;
}

nav.menu ul li a:hover:after {
    width: 100%;
}

.header_contacts {
    /*width: 23%;*/
    width: 460px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header_contacts .action_btn {
    max-width: 100px;
    height: 40px;
    font-size: calc(10px + 0.208vw);
}

.header_contacts .dark_btn {
    max-width: 70px;
    height: 40px;
    font-size: calc(10px + 0.208vw);
}

.header_tel {
    font-size: calc(12px + 0.208vw);
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
    display: flex;
    align-items: center;
    color: #000;
}

.header_tel img{
    margin: 0 7px 0 0;
}

.header_btn {
    width: 100%;
    max-width: 225px;
}

.sub-menu {
    /* background: #14203C; */
    position: absolute;
    left: auto;
    right: auto;
    top: 70px;
    width: 240px;
    opacity: 0;
    transform-origin: 0 0;
    visibility: hidden;
    transform: translateY(-2em);
    z-index: -1;
    transition: all .3s ease-in-out 0s,visibility 0s linear .3s,z-index 0s linear .01s;
    background: #fff;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
}

.sub-menu li {
    margin: 0 !important;
    padding: 15px 20px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.sub-menu li:not(:last-child) {
    border-radius: 20px 20px 0 0;
}

.sub-menu li:last-child {
    border-radius: 0 0 20px 20px;
}

.sub-menu li:not(:last-child):after {
    display: none;
}

.sub-menu li a {
    text-transform: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    /* font-size: 18px; */
    /* font-weight: 400; */
    height: 100%;
    cursor: pointer;
}

.submenu__link:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s,0s,.3s;
}

.submenu__link {
    display: flex;
    justify-content: center;
}

/* .submenu__link:before {
    position: absolute;
    content: '';
    background-image: url(/data/img/submenu__arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 5px;
    width: 9px;
    top: auto;
    bottom: auto;
    right: -13px;
    z-index: 1;
} */

/* Burger */

.burger {
    display: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill:none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke:#414141;
    stroke-width:5.5;
    /* stroke-linecap:round; */
}

.ham4 .top {
    stroke-dasharray: 40 121;
}

.ham4 .bottom {
    stroke-dasharray: 40 121;
}

.ham4.active .top {
    stroke-dashoffset: -68px;
}

.ham4.active .bottom {
    stroke-dashoffset: -68px;
}

.header_contacts .action_btn img {
    display: none;
}

.header_contacts .dark_btn img {
    display: none;
}


/* Footer */

footer {
    position: relative;
    padding: 45px 0 25px !important;
    height: 100%;
    background-color: #193E53;
    color: #fff;
    overflow: hidden;
    z-index: 15;
    /*opacity: 0;*/
}

.footer__wrapper {
    position: relative;
    z-index: 10;
    display: flex;
}

.footer__elem {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer_up {
    display: flex;
    justify-content: space-between;
}

.footer_up__left {
    width: 18%;
}

.footer_up__left p {
    margin: 10px 0;
    color: rgba(255,255,255,.5);
    font-size: calc(6px + 0.208vw);
}

.footer_up__payment {
    display: flex;
    justify-content: space-between;
    margin: 25px 0 0;
    width: 100%;
}

.footer_up__payment a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48%;
}

.mastercard, .visa {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__elem .logo img {
    width: 100%;
}

.footer__info {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 40px;
}

.footer__list {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer_up__middle {
    width: 50%;
}

.footer_up__right {
    width: 12%;
}

.text-center {
    color: #fff;
    font-size: calc(6px + 0.208vw);
    padding-top: 15px;
    text-align: center;
    line-height: 1;
}

.text-center p {
    margin: 0 0 3px;
}

.footer__social {
    max-width: 160px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer__menu {
    width: 75%;
    margin: 0 auto 40px;
}

.footer__menu .header__list {
    flex-direction: column;
    height: 220px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-footer-menu-main-container {
    width: 100%;
}

.footer__menu .header__list li {
    height: auto;
    padding-bottom: 10px;
}

.footer__menu .header__list .header__link {
    height: auto;
    margin: 0 0 13px;
    padding: 0;
}

.footer__menu .submenu__link:before {
    display: none;
}

.footer__tel, .footer__mail, .footer__loc {
    width: 25%;
}

.footer__tel a, .footer__mail a, .footer__loc a {
    display: flex;
    align-items: center;
}

.footer__tel a img, .footer__mail a img, .footer__loc a img {
    margin: 0 15px 0 0;
}

.footer__list .header__link {
    font-size: 18px;
}

.footer_contacts a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-family: inherit;
    font-size: calc(14px + 0.208vw);
    transition: all .2s linear;
    color: #fff;
}

.footer_contacts a:hover {
    transform: scale(1.05);
    transition: all .2s linear;
}

.footer_socials {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 15px;
    width: 60%;
}

.footer_socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32%;
}

.footer_up__right_text {
    font-size: calc(6px + 0.208vw);
    color: rgba(255,255,255,.5);
    margin: 15px 0;
}

.footer_complaint {
    font-family: 'Craftwork Grotesk Heavy';
}


/* Главная */

.section {
    padding: 70px 0;
    position: relative;
}

.first_screen {
    /*background: linear-gradient(to bottom, #E5F2F2 0%, #E5F2F2 56.6%, #FFFFFF 56.6%, #FFFFFF 100%);*/
    background: #ffffff;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    position: relative;
    /* padding-bottom: 30px; */
    padding-bottom: 70px;
    padding-top: 109px;
    display: flex;
    align-items: flex-end;
    /* opacity: 0; */
    height: 700px !important;
}

.wrapper {
    display: flex;
    height: 100%;
    position: relative;
    /* z-index: 5; */
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.first_screen__wrapper {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    /* height: 75vh; */
    margin: 0 auto;
    /*padding-left: 15px;*/
    /*padding-right: 15px;*/
}

.first_screen__text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.first_screen__text img {
    width: 3842px;
    height: 405px;
}

/*.slide_calc {*/
/*    !* width: 40%; *!*/
/*    max-width: 417px;*/
/*    !* height: 100%; *!*/
/*    min-height: 622px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    border-radius: 50px;*/
/*    z-index: 5;*/
/*    background: white;*/
/*    border: 9px solid #193E53;*/
/*    padding-block: 24px !important;*/
/*    box-shadow: 2px 28px 67px 0px #00000040;*/

/*}*/
.slide_calc {
    width: 407px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    z-index: 5;
    background: white;
    border: 9px solid #193E53;
    padding-block: 24px !important;
    box-shadow: 2px 28px 67px 0px #00000040;
}

.first_screen__text_title {
    /* margin: 0 0 20px; */
    width: 80%;
    min-height: 175px;
    font-family: 'Craftwork Grotesk Heavy';
    z-index: 10;
}

.first_screen__slider {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.arrow_next {
    background-image: url("/data/img/next.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 50px;
    height: 70px;
    opacity: 1;
}

.arrow_prev {
    background-image: url("/data/img/next.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 50px;
    height: 70px;
    opacity: 1;
    transform: scale(-1,-1);
}

.first_screen__text_desc {
    max-width: 577px;
    width: 100%;
    font-size: 18px;
    /* margin: 0 0 30px; */
    text-align: center;
    color: #667788;
    margin-top: 32px;
    margin-left: 350px;
}

.first_screen__text_desc span{
    color: #193E53;
}

.light_1 {
    position: absolute;
    bottom: 0;
    left: 0;
    /* animation: 10s pulseIcons linear infinite 2s forwards; */
}

.light_2 {
    position: absolute;
    right: 0;
    /* animation: 15s pulseIcons linear infinite 2s forwards; */
}

/* @keyframes pulseIcons {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-100px, 100px);
    }
    100% {
        transform: translate(0, 0);
    }
} */

.first_screen__up {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.first_screen__bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 45px 0 0;
}

.first_screen__social {
    display: flex;
    justify-content: space-between;
    width: 10%;
}

.first_screen__social a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.first_screen__bottom_text {
    width: 60%;
    display: flex;
    justify-content: center;
}

.first_screen__bottom_text p {
    text-transform: uppercase;
}

.first_screen__bottom_text p span {
    color: #474747;
}


.first_screen__slide__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* margin: 25px; */
    padding: 0 15px;
    max-width: 1750px;
    margin: 0 auto;
}

.first_screen__slide__inner .more_btn {
    margin: 0 auto;
    margin-top: 24px;
}

.center {
    width: 100%;
    height: 70vh;
}

.slick-list, .slick-track {
    height: 100%;
}

.swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right {
    background-image: none !important;
}

.firstScreenSlider:nth-child(1) {
    z-index: 0 !important;
}

.firstScreenSlider:nth-child(2) {
    z-index: 1 !important;
    /*padding: 25px 0 !important;*/
    margin: -385px 0 30px;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    color: #B7AFAF;
    font-size: 30px !important;
    transition: all .2s linear;
}

.swiper-button-next:hover:after
.swiper-button-prev:hover:after {
    color: #97CA3E;
    transition: all .2s linear;
}

.swiper-pagination-bullet {
    background: #97CA3E !important;
}

.swiper-pagination {
    bottom: 40px !important;
    width: 84% !important;
    transform: translateX(-6%) !important;
}

.firstScreenSlider:nth-child(1) .first_screen__text_imgs {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 475px; */
    width: 100%;
    position: relative;
    margin: 0 0 15px;
}

.firstScreenSlider:nth-child(1) .first_screen__text_imgs {
    height: 385px;
}

.firstScreenSlider:nth-child(2) .first_screen__text_imgs {
    height: 226px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.first_screen__text_imgs img {
    position: absolute !important;
    height: auto;
    width: auto;
}

.firstScreenSlider:nth-child(1) .first_screen__text_imgs img {
    left: 0 !important;
    top: -40% !important;
    /*min-height: 430px;*/
}

.firstScreenSlider:nth-child(2) .first_screen__text_imgs img {
    right: 28% !important;
    left: auto !important;
    top: auto !important;
    bottom: auto;
}

.comforter {
    font-family: 'Manrope', sans-serif;
    color: #fff;
    font-weight: 300;
    font-size: 30px;
    font-style: oblique;
}

.first_screen__bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.first_screen__text_btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
}

.first_screen__text_btn img {
    margin: 0 0 0 calc(25px + 5vw);
}

.first_screen__text_btn__down {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
}

.first_screen__text_btn__down a {
    max-width: 190px;
    font-size: calc(10px + 0.208vw);
    padding: 0 25px;
    width: 100%;
}

.more_btn {
    max-width: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border: 1px solid #193E53;
    color: #193E53;
    border-radius: 6px;
    background: transparent;
    transition: all .2s linear;
    font-family: 'Craftwork Grotesk Heavy';
    font-size: calc(12px + 0.208vw);
    font-weight: 400;
}

.more_btn:hover {
    transform: scale(1.05);
    /* -webkit-box-shadow: 5px 5px 20px 0px rgba(151,202,62,0.6);
    box-shadow: 5px 5px 20px 0px rgba(151,202,62,0.6); */
    transition: all .2s linear;
}

.slider_nav {
    display: flex;
    position: absolute;
    bottom: 27%;
    height: auto;
    flex-direction: row-reverse;
    width: 627px;
    justify-content: space-between;
    transform: translateX(-38%);
}

.swiper-button-next, .swiper-button-prev {
    top: auto !important;
    bottom: 0 !important;
    position: relative !important;
}



.range-slider {
    margin: 12px 0 0 0;
}

.range-slider {
    width: 100%;
    position: relative;
}

.range-slider__range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    border-radius: 6px;
    outline: none;
    padding: 0;
    margin: 0;
}
.range-slider__range.input-range-date::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #97CA3E;
    border-radius: 50%;
    top: 31%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.range-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 27px;
    height: 27px;
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    border: 3px solid #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}

.range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    border: 3px solid #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    cursor: pointer;
    -moz-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}

.range-slider__range::-moz-range-thumb:hover {
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    border: 3px solid #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.range-slider__range:active::-moz-range-thumb {
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    border: 3px solid #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.range-slider__range:focus::-webkit-slider-thumb {
    /* box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c; */

    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    border: 3px solid #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.range-slider__value {
    display: inline-block;
    position: relative;
    width: 60px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: #2c3e50;
    padding: 5px 10px;
    margin-left: 8px;
    display: none;
}

.range-slider__value:after {
    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid #2c3e50;
    border-bottom: 7px solid transparent;
    content: "";
}

::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}

.slide_calc__inner {
    width: 81%;
}

.sum_up {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sum_up p {
    color: #000;
    font-size: calc(10px + .208vw);
    font-weight: 700;
    font-family: inherit;
}

.sum_up input {
    background: #EDEDED;
    border-radius: 6px;
    max-width: 100px;
    height: 35px;
    padding: 5px;
    padding-left: 15px;
    outline: none;
    border: none;
    font-size: 16px;
    color: #000;
    font-family: 'Craftwork Grotesk Heavy';
}

.sum_up input::placeholder{
    color: #000;
    font-family: 'Craftwork Grotesk Heavy';
    text-align: center;
}

.calc_info {
    background: #667788;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    padding: 15px;
    margin: 25px 0 0;
    /*min-height: 265px;*/
}

.calc_info__up_item {
    display: flex;
    justify-content: space-between;
}

.calc_info__up_item p:last-child {
    font-weight: 700;
}

.calc_info__up_item:not(:last-child) {
    margin: 0 0 5px;
}

.calc_info__desc {
    margin: 15px 0 0;
    text-align: justify;
    color: rgba(255,255,255,.5);
}

.sum {
    margin: 0 0 25px;
}

.sum_btn a {
    max-width: 100%;
}

.slide_calc__inner h2 {
    font-size: 22px;
    text-align: center;
    margin: 0 0 12px;
    font-family: 'Craftwork Grotesk Heavy';
}

.indicators {
    display: flex;
    justify-content: space-between;
    color: #878787;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}

.first_screen__slider_block {
    width: 100%;
}

.more_text__btn {
    display: none;
}

.second_block {
    display: none;
}

.advantages {
    padding: 50px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(66.39deg, #97CA3E 0%, #FFFF22 99.18%);
    position: relative;
}

.headline {
    margin: 0 0 50px;
    text-align: center;
}

.headline h2 {
    color: #000000;
    font-family: 'Craftwork Grotesk Heavy';
    text-transform: inherit;
}

.advantages__elem {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 60%;
    margin: 0 auto;
}

.advantages__item {
    width: 16%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

.advantages__image {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 100%;
    margin: 0 0 10px;
    transition: all .2s linear;
}

.advantages__item:hover .advantages__image, .why_we__item:hover .why_we__image,
.what_need__loan__item:hover .what_need__loan__image {
    transform: scale(.8) rotate(10deg);
    transition: all .2s linear;
}

.how_it_works {
    height: 80vh;
    background: #fff;
    z-index: 5;
    position: relative;
}

.elem_block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.half_item {
    width: 48%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.full_item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*.how_it_works__elem {*/
/*    width: 90%;*/
/*    margin: 0 auto;*/
/*}*/

.how_it_works__elem .half_item {
    width: 50%;
}

.how_it_works .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.how_it_works__image {
    display: flex;
    /*justify-content: center;*/
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.how_it_works__left .how_it_works__image {
    margin: 0 20px 0 0;
}

.how_it_works__right .how_it_works__image {
    margin: 0 0 0 20px;
}

.how_it_works__right .how_it_works__text .desc {
    color: #667788;
}

.how_it_works__image img {
    /*width: auto;*/
    width: 85%;
}

/*.how_it_works__item:first-child .how_it_works__image {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 5%;*/
/*    z-index: 1;*/
/*}*/

/*.how_it_works__item:last-child .how_it_works__image {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    bottom: 8%;*/
/*    z-index: 1;*/
/*}*/

.how_it_works__text {
    width: 40%;
    text-align: center;
    margin: 0;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
    transition: all .2s linear;
}

.how_it_works__text:hover {
    transform: scale(1.05);
    transition: all .2s linear;
}

.how_it_works__link {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 5;
}

/* .how_it_works__right .how_it_works__text {
    width: 35%;
} */

.title {
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
    text-transform: inherit;
    /*line-height: 1;*/
}

.why_we__text .title {
    color: #193E53;
}

.how_it_works__text .desc {
    margin: 40px 0;
    font-weight: 500;
    font-size: calc(14px + 0.208vw);
}

.how_it_works__left .how_it_works__text .desc {
    color: #fff;
}

.how_it_works__text .btn_block {
    display: flex;
    justify-content: center;
    width: 100%;
}

.how_it_works__left {
    /* background-image: url("/data/img/how_it_works__left_bg.png"); */
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    flex-direction: row;
    padding-right: 60px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(66.39deg, #97CA3E 0%, #FFFF22 99.18%);
}

.how_it_works__right {
    /* background-image: url("/data/img/how_it_works__right_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-left: 60px;
}

.section_image__bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.download.section_image__bg {
    /*background-size: 100%;*/
    /*margin: -75px 0;*/
    position: relative;
    z-index: 10;
    background: #EFEFEF;
}

/*.download.section_image__bg .container {*/
/*    width: 100%;*/
/*    padding-left: 0;*/
/*    padding-right: 0;*/
/*}*/

.download__elem {
    padding: 25px 0;
}

.download__phone {
    position: absolute;
    /*left: 10%;*/
    left: -3%;
}

.download__text {
    width: 45%;
    margin: 0 15px 0 50px;
}

.download__text .desc {
    font-size: calc(14px + 0.208vw);
    font-weight: 700;
    color: #667788;
    margin: 10px 0 20px;
}

.btn_block {
    display: flex;
    width: 50%;
    justify-content: space-between;
}

.btn_block a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    /*max-width: 100%;*/
    text-align: center;
}

.home__about_us.section_image__bg {
    padding: 60px 0 0;
}

.home__about_us__text {
    color: #fff;
    font-size: calc(14px + 0.208vw);
    font-weight: 700;
}

.home__about_us__text .more_btn {
    border: 1px solid #fff;
    color: #fff;
    /*max-width: 220px;*/
}

.home__about_us__text .btn_block .dark_btn {
    margin: 0 45px 0 0;
}

.home__about_us__elem {
    margin: -50px auto 0;
    width: 90%;
}

.home__about_us__text p {
    margin: 0 0 30px;
    width: 90%;
}

.home__about_us__text .btn_block {
    width: 90%;
    justify-content: flex-start;
}

.dark_btn {
    max-width: 220px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #193E53 !important;
    border-radius: 6px;
    color: #fff;
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
    font-size: calc(12px + 0.208vw);
    font-weight: 400;
    transition: all .2s linear;
}

.dark_btn:hover {
    transform: scale(1.05);
    transition: all .2s linear;
}

.home__about_us__item .dark_btn {
    margin: 0 40px 0 0;
}

.home__about_us .headline {
    margin: 0;
}

.why_we, .awards {
    padding: 50px 0 70px;
    background: #fff;
    position: relative;
    z-index: 5;
}

.why_we__elem {
    justify-content: space-between;
}

.why_we__item {
    flex-direction: row;
    justify-content: flex-end;
    margin: 0 0 50px;
}

.why_we__text {
    text-align: right;
    width: 60%;
}

.why_we__text .desc {
    color: #667788;
}

.why_we__image {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EDEDED;
    border-radius: 100%;
    margin: 0 0 0 20px;
    box-shadow: 10px 12px 14px #d7d7d7;
    transition: all .2s linear;
}

.why_we__item.reverse_item {
    flex-direction: row-reverse;
}

.why_we__item.reverse_item .why_we__image {
    margin: 0 20px 0 0;
}

.why_we__item.reverse_item .why_we__text {
    text-align: left;
}

.why_we .btn_block {
    width: 100%;
    justify-content: center;
    margin: 30px 0 0;
}

.third_item {
    width: 33%;
    height: 100%;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rules__item .title {
    align-self: center;
}

.awards__elem {
    width: 60%;
    margin: 0 auto;
}

.awards_slide {
    display: flex;
    justify-content: center;
}

.news {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    padding: 65px 0;
    position: relative;
}

.news_slide {
    display: flex;
    justify-content: center;
}

.news_slide__inner {
    display: flex;
    justify-content: center;
    transition: all .2s linear;
    border-radius: 20px;
    position: relative;
    max-width: 362px;
}

.news_slide__inner_block {
    width: 100%;
    box-shadow: 0px 4px 15px rgba(1, 47, 86, 0.1);
    border-radius: 20px;
}

.news_slide__inner_image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 170px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.news_slide__inner_image img {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
}

.news_slide__inner_text {
    padding: 18px 18px 40px;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

.news_slide__inner_text .title {
    font-size: calc(14px + 0.313vw);
    margin: 0;
    color: #193E53;
    /*min-height: 60px;*/
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 60px;
}

.news_slide__inner_text .desc {
    margin: 10px 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 75px;
}

.news_details {
    color: #193E53;
    font-size: 14px;
    text-decoration: underline;
    font-family: 'Craftwork Grotesk Heavy';
    text-align: center;
}

.news__slider_nav {
    display: flex;
    top: 50%;
    position: absolute;
    justify-content: space-between;
    width: 100%;
    flex-direction: row-reverse;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -3% !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -3% !important;
}

.news_slide__link {
    position: absolute;
    width: 100%;
    height: 100%;
}

.news__slider, .reviews_slider  {
    padding: 25px !important;
}

.news_slide__inner:hover {
    transform: scale(1.02);
    transition: all .2s linear;
}

.news_btn {
    margin: 40px auto 0;
    width: 35%;
}

.reviews {
    padding: 50px 0;
    background: #fff;
    position: relative;
}

.swiper-button-next-news:after, .swiper-button-prev-news:after {
    color: #fff;
}

.reviews__slider_nav {
    display: flex;
    position: absolute;
    top: 50%;
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.reviews_slide__inner {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    padding: 20px;
    width: 90%;
}

.reviews_author {
    display: flex;
    margin: 0 0 20px;
    position: relative;
    align-items: center;
}

.reviews_author:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    background-image: url(/data/img/reviews_bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    right: 10px;
    top: 0;
    opacity: 1;
}

.rating {
    width: 76px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.reviews_author__image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 13px 0 0;
}

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

.reviews_more {
    display: flex;
    justify-content: flex-end;
    margin: 10px 0 0;
    color: #193E53;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Craftwork Grotesk Heavy';
}

.reviews_more .more_btn {
    max-width: fit-content;
    height: fit-content;
}

/* .reviews_block p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 75px;
} */

.reviews__slider_nav {
    display: flex;
    top: 50%;
    position: absolute;
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.reviews_swiper, .news_swiper {
    padding: 25px 0 !important;
}

.reviews_slide {
    display: flex;
    justify-content: center;
}

.reviews__btn_block {
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
    width: 100%;
}

.rating {
    width: 76px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.rating_0 {
    background-image: url(/data/img/rating_0.svg);
}

.rating_1 {
    background-image: url(/data/img/rating_1.svg);
}

.rating_2 {
    background-image: url(/data/img/rating_2.svg);
}

.rating_3 {
    background-image: url(/data/img/rating_3.svg);
}

.rating_4 {
    background-image: url(/data/img/rating_4.svg);
}

.rating_5 {
    background-image: url(/data/img/rating_5.svg);
}

.reviews_author__name p {
    font-weight: 900;
    margin: 0 0 5px;
    line-height: 1.2;
    color: #193E53;
}

.reviews .btn_block a, .why_we .btn_block a {
    width: 100%;
    /*max-width: fit-content;*/
}

.convenience {
    padding: 50px 0 0;
    background: #fff;
    position: relative;
}

.convenience__elem.elem_block {
    align-items: flex-start;
    width: 80%;
    margin: 0 auto;
}

.convenience__item_text.half_item {
    align-items: flex-start;
    padding-top: 60px;
}

.convenience__item_text .title {
    color: #193E53;
}

.convenience__item_text .desc {
    margin: 40px 0;
    font-size: calc(14px + 0.208vw);
    font-weight: 700;
    color: #667788;
}

.convenience_adv__wrapper {
    background: #F4F4F4;
    padding: 25px 0;
    margin-top: 0;
}

.headline h3 {
    color: #193E53;
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
}

.convenience_adv__item.third_item {
    flex-direction: row;
}

.convenience_adv__image {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px 0 0;
    background: #EDEDED;
    border-radius: 100%;
}

.convenience_adv__text {
    width: 60%;
}

.convenience_adv__text .title {
    color: #193E53;
}

.convenience_adv__text .desc {
    color: #667788;
    min-height: 195px;
}

.convenience_adv__elem {
    width: 80%;
    margin: 0 auto;
    align-items: flex-start;
}

.convenience_adv__wrapper .headline {
    margin: 0 0 25px;
}

.convenience_adv__item {
    display: flex;
    align-items: center;
}

.contacts__elem {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    width: 85%;
    margin: 0 auto;
}

.contacts__left {
    width: 45%;
    padding: 30px 40px;
}

.contacts__right {
    width: 55%;
}

.contacts__title {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid #C8E5FF;
    margin-bottom: 25px;
    font-family: 'Craftwork Grotesk Heavy';
    color: #000;
    font-size: 17px;
}

.contacts__item {
    display: flex;
    align-items: center;
}

.contacts__item:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #C8E5FF;
    margin: 0 0 20px;
}

.contacts__item.vertical {
    display: flex;
    align-items: normal;
    flex-direction: column;
}
.text-entity-link.little-margin {
    margin-bottom:5px;
}

.contacts__item_img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px 0 0;
}

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

.contacts__tel {
    align-items: center;
}

.contacts__right iframe{
    width: 100%;
    height: 100%;
    border-radius: 0 20px 20px 0;
}

.contacts__btns .more_btn {
    max-width: fit-content;
    margin: 0 0 0 40px;
}

.contacts__item a {
    color: #193E53;
    font-weight: 700;
    display: flex;
    transition: all .2s linear;
}

.contacts__item a:hover {
    transform: scale(1.05);
    transition: all .2s linear;
}

.contacts {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    padding: 65px 0;
    position: relative;
}

.contacts__loc .contacts__item_text p {
    color: #667788;
}

.contacts__image {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit, .faq-section {
    padding: 60px 0 100px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    position: relative;
}

.credit__item {
    width: 100%;
    display: flex;
    margin: 0 0 20px;
}

.credit__item_title {
    font-size: calc(18px + 0.521vw);
    color: #fff;
    font-family: 'Craftwork Grotesk Heavy';
    width: 15%;
}

.credit__item_slider__block {
    width: 85%;
    color: #000;
}

.credit_slide__inner {
    height: 50px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Craftwork Grotesk Heavy';
    padding: 12px 16px;
}

.credit_slide {
    width: fit-content !important;
}

.credit .container, .faq-section .container {
    margin: 0 0 0 auto;
    padding-right: 0;
    width: 87%;
}

.faq-section .container {
    margin: 0 auto;
}

.credit__elem {
    width: 87%;
    margin: 0 0 0 auto;
}

.swiper {
    width: 100%;
    min-width: 0;
    height: auto;
}

.slider-mobile-show {
    display: none;
}
.how_it_works__btn_block {
    width: 100%;
    display: flex;
    justify-content: center;
}

.bold {
    font-family: 'Craftwork Grotesk Regular', sans-serif;
    font-weight: 700;
}

.heavy {
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
    font-weight: 700;
}

.header_contacts__mobile {
    display: none;
}

/* ABOUT US PAGE */

.about_page__first_screen {
    padding: 70px 0 0;
}

.breadcrumbs_wrapper {
    padding: 20px 15px;
    display: flex;
    color: #193E53;
    font-size: calc(8px + 0.208vw);
    font-weight: 700;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    /* position: absolute;
    top: 3%;
    left: 0; */
}

.breadcrumbs_wrapper span {
    margin: 0 5px;
}

.about_page__second_screen {
    background: #fff;
    position: relative;
    padding: 65px 0 0;
}

.about_page__second_bg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 6%;
}

.about_page__second_image__block {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.about_page__second__elem {
    align-items: flex-start;
}

.about_page__second_image__block .mobile_img,
.how_to_pay__left .mobile_img {
    display: none;
}

.about_page__second__text p {
    font-size: calc(14px + 0.208vw);
    font-weight: 700;
    margin: 0 0 20px;
    width: 80%;
}

.about_page__second__text {
    align-items: flex-start;
    padding-top: 25px;
}

.about_page__second__text .btn_block {
    width: 100%;
    margin: 20px 0 0;
}

.press {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    padding: 55px 0;
}

.press__elem {
    width: 60%;
    margin: 0 auto;
}

.press__slider_nav {
    display: none;
}

.press__image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.press_slide__inner {
    height: 100%;
}

/* SERVICES PAGE */

.services_page {
    padding: 70px 0 0;
    background: #fff;
    position: relative;
    height: 100vh;
}

.services_page .breadcrumbs_wrapper {
    width: 90%;
}

.services_page__image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 260px;
}

.services_page__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75%;
    margin: 0 auto;
}

.services_page__text .desc {
    color: #193E53;
    font-size: calc(14px + .208vw);
    font-weight: 700;
    width: 55%;
    text-align: center;
    margin: 40px 0 30px;
}

.services_page__text .btn_block {
    width: 100%;
    justify-content: center;
}

.services_page__right {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(66.39deg, #FFFF22 0%, #97CA3E 99.18%);
}

.services_page__elem {
    justify-content: space-between;
}

.services_page__link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.services_page__left__inner, .services_page__right__inner {
    transition: all .2s linear;
    position: relative;
}

.services_page__left__inner:hover, .services_page__right__inner:hover {
    transform: scale(1.05);
    transition: all .2s linear;
}

.services_page__wrapper {
    margin-top: -58px;
}

.services_page__right .services_page__text .desc {
    color: #fff;
}

/* CREDIT SERVICE PAGE */

.credit_service__page {
    padding: 70px 0 35px;
}

.credit_service__page__item {
    margin: 0 0 30px;
}

.credit_service__page__item_inner {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    padding: 30px 16px;
    width: 95%;
}

.credit_service__page__item_inner .title {
    color: #193E53;
    font-size: calc(16px + .208vw);
    text-align: center;
    margin: 0 0 10px;
}

.credit_service__page__item_inner .info {
    background: #667788;
    border-radius: 6px;
    padding: 20px 15px;
    color: #fff;
    margin: 0 0 30px;
}

.credit_service__page__item_inner .info_item {
    display: flex;
    justify-content: space-between;
}

.credit_service__page__item_inner .btn_block {
    width: 100%;
    justify-content: center;
    margin: 0 0 20px;
}

.credit_service__page__item_inner .btn_block .action_btn,
.credit_service__page__item_inner .btn_block .dark_btn {
    width: 100%;
    max-width: 100%;
}

.credit_service__page__item_inner .btn_block .dark_btn {
    background: #667788 !important;
    cursor: default;
}

.credit_service__page__item_inner .btn_block .dark_btn:hover {
    transform: scale(1);
}

.credit_service__page__item_inner .desc {
    text-align: center;
    width: 70%;
    margin: 0 auto 30px;
}

.credit_service__page__item_inner .more_info {
    display: flex;
    justify-content: center;
    transition: all .2s linear;
}

.credit_service__page__item_inner .more_info a {
    color: #193E53;
    text-decoration: underline !important;
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
    font-size: calc(10px + .208vw);
}

.credit_service__page__item_inner .more_info:hover {
    transform: scale(1.05);
    transition: all .2s linear;
}

.credit_service__page .breadcrumbs_wrapper, .documents_service__page .breadcrumbs_wrapper,
.faq__page .breadcrumbs_wrapper, .reviews__page .breadcrumbs_wrapper {
    width: 100%;
}

.product__credit_services .credit_service__page__item_inner {
    box-shadow: none;
}

.credit_service__page__elem {
    margin: 0 0 30px;
}

.credit_service__info__elem {
    color: #193E53;
    justify-content: flex-start;
    width: 97%;
    margin: 0 auto;
    border: 1px solid #193E53;
    padding: 20px;
    border-radius: 20px;
}

.credit_service__info__elem ul {
    padding: 0 0 0 20px;
    list-style: disc;
}

.rules {
    padding: 70px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    position: relative;
}

.rules__item {
    transition: all .2s linear;
}

.rules__item:hover {
    transform: scale(1.03);
    transition: all .2s linear;
}

.rules__item_inner {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    flex-direction: row;
    padding: 18px 23px;
    justify-content: space-between;
    width: 95%;
    display: flex;
}

.rules__item .title {
    width: 50%;
    color: #193E53;
    min-height: 50px;
}

.rules__item .link {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: underline !important;
    font-family: 'Craftwork Grotesk Regular', sans-serif;
    font-weight: 700;
    color: #193E53;
}

/* DOCUMENTS SERVICE PAGE */

.documents_service__page, .reviews__page {
    padding: 70px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    position: relative;
    min-height: 800px;
}

.documents_service__page__elem {
    justify-content: space-between;
    align-items: flex-start;
}

.tabcontent__block {
    width: 80%;
}

.documents_service__sidebar {
    width: 18%;
}

.documents_service__tab {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    width: 100%;
    margin: 0 0 10px;
    color: #193E53;
    font-weight: 700;
    font-size: calc(14px + .208vw);
    cursor: pointer;
    transition: all ease 0.2s;
}

.documents_service__tab:hover {
    transform: scale(1.05);
    transition: all ease 0.2s;
}

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

.accordeon_item {
    margin: 0 0 10px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
}

.accordeon_item h3 {
    margin: 0 !important;
}

.accordeon_item.active>.accordeon_title {
    border-radius: 5px 5px 0 0;
}

.accordeon_item.active>.accordeon_title:after {
    transform: rotate(180deg);
    transition: all ease 0.2s;
}

.accordeon_title {
    position: relative;
    cursor: pointer;
    font-weight: 700;
    background: transparent;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    font-size: calc(14px + .208vw);
    color: #193E53;
}

.accordeon_title:after {
    position: absolute;
    top: auto;
    bottom: auto;
    right: 15px;
    width: 16px;
    height: 10px;
    background-image: url(/data/img/dropdown.svg);
    background-repeat: no-repeat;
    background-size: auto;
    content: "";
    transition: all ease 0.2s;
}

.accordeon_content p {
    margin: 0 !important;
    padding: 0 30px 16px;
}

.accordeon_content ul {
    padding: 0 30px 16px;
    padding: 0 30px 16px 55px;
    list-style: url(/data/img/list_style.svg);

}

.accordeon_item.active_acc {
    background: #2E2E30;
    color: #FFFFFF !important;
}

/* FAQ PAGE */

.faq__page {
    padding: 70px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    position: relative;
}

.faq__page__elem {
    justify-content: space-between;
    align-items: flex-start;
}

/* HOW TO PAY PAGE */

.how_to_pay__page {
    background-position: left;
    background-repeat: no-repeat;
    background-size: 50%;
    position: relative;
    background-color: #fff;
    padding: 70px 0 0;
}

.how_to_pay__elem {
    align-items: flex-start;
}

.how_to_pay__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how_to_pay__right {
    color: #193E53;
    font-size: calc(14px + .208vw);
    font-weight: 700;
    padding-left: 45px;
    align-items: flex-start;
}

.how_to_pay__right p {
    margin: 0 0 30px;
}

.how_to_pay__right ul {
    margin: 0 0 30px;
    padding: 0 0 0 25px;
    list-style: url(/data/img/list_style.svg);
}

.how_to_pay__right ul li {
    margin: 0 0 10px;
}

.how_to_pay__right .btn_block {
    margin: 15px 0 0;
    width: 100%;
}

.repayment {
    padding: 50px 0 25px;
}

.repayment__elem {
    justify-content: space-between;
}

.repayment__item {
    align-items: flex-start;
    margin: 0 0 25px;
    width: 49%;
}

.repayment__item__inner {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    width: 100%;
    padding: 21px 28px;
    display: flex;
    justify-content: space-between;
    transition: all .2s linear;
}

.repayment__item__inner:hover {
    transform: scale(1.02);
    transition: all .2s linear;
}

.repayment__item__link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.repayment__item__image {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.repayment__item__text {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.repayment__item__text .title {
    font-size: calc(12px + .208vw);
    margin: 0 0 20px;
    color: #193E53;
    width: 100%;
}

.repayment__item__text .desc {
    margin: 0 0 15px;
    /*min-height: 120px;*/
    height: 95px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.repayment__item__text.show_text .desc {
    height: auto;
    display: block;
}

.repayment__item__text .btn_block {
    width: fit-content;
    justify-content: flex-end;
    position: relative;
    align-items: center;
    margin-right: 15px;
}

.repayment__item__text .btn_block:after {
    position: absolute;
    top: auto;
    bottom: auto;
    right: -15px;
    width: 12px;
    height: 6px;
    background-image: url(/data/img/dropdown.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.repayment__item__text .btn_block {
    width: auto;
    color: #193E53;
    text-decoration: underline !important;
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
    font-size: 14px;
    margin: 0;
}

.want_to_pay {
    background-position: 0;
    background-size: 15%;
    background-repeat: no-repeat;
    position: relative;
    background-color: #fff;
}

.want_to_pay__elem {
    justify-content: space-between;
}

.want_to_pay__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.want_to_pay__text .title {
    font-size: calc(24px + 0.625vw);
    color: #000;
}

.want_to_pay__btn {
    display: flex;
    width: 25%;
    justify-content: center;
}

/* GET A LOAN PAGE */

.get_a_loan__page {
    padding: 70px 0 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    position: relative;
}

.get_a_loan__page .breadcrumbs_wrapper {
    width: 90%;
}

.get_a_loan__page__item:nth-child(odd) {
    background: rgba(255,255,255,.1);
}

.get_a_loan__page__item {
    padding: 35px 0;
}

.get_a_loan__page__item__inner {
    display: flex;
    justify-content: space-between;
    width: 45%;
    align-items: center;
    position: relative;
}

.get_a_loan__page__image {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get_a_loan__page__text {
    width: 50%;
}

.get_a_loan__page__item__inner .title {
    color: #fff;
    font-size: calc(16px + .208vw);
    margin: 0 0 10px;
}

.get_a_loan__page__text .desc {
    color: #193E53;
    font-size: calc(14px + .208vw);
    font-weight: 700;
    margin: 0 0 15px;
}

.get_a_loan__page__number {
    font-size: calc(75px + 5.208vw);
    background: linear-gradient(168.03deg, #193E53 19.2%, #4E99C4 104.21%), #193E53;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
    background-clip: text;
    text-fill-color: transparent;
    position: absolute;
    left: -7%;
}

.apply_loan {
    padding: 70px 0;
    background-color: #fff;
    position: relative;
    background-repeat: no-repeat;
    background-size: 45%;
}

.apply_loan__right {
    align-items: flex-start;
}

.apply_loan__right p {
    font-size: calc(14px + .208vw);
    font-weight: 700;
    color: #193E53;
    width: 65%;
}

.apply_loan__right .btn_block {
    width: 100%;
    margin: 40px 0 0;
}

.what_need__loan {
    padding: 50px 0 100px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    position: relative;
}

.quarter_item {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.what_need__loan__image {
    width: 135px;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 100%;
    margin: 0 0 15px;
    transition: all .2s linear;
}

.what_need__loan__text {
    font-size: calc(14px + .208vw);
    font-weight: 700;
    color: #193E53;
    text-align: center;
}

.what_need__loan__elem {
    margin: 0 auto;
    width: 60%;
}

.want_to_loan .want_to_pay__text {
    height: 100%;
}

.want_to_loan .want_to_pay__image {
    padding-top: 20px;
}

/* PROMOTIONS/NEWS PAGE */

.promotions_page {
    padding: 70px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    position: relative;
}

.promotions_page .breadcrumbs_wrapper {
    width: 100%;
}

.promotions_item {
    margin: 0 0 35px;
}

.promotions_page .btn_block {
    width: 100%;
    justify-content: center;
}

.page_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 97%;
    margin: 0 auto 35px;
    color: #fff;
}

/* PROMOTIONS/NEWS SINGLE PAGE */

.promotions__single_page {
    padding: 70px 0 35px;
    background: #fff;
    position: relative;
}

.promotions__single_page__item {
    width: 80%;
}

.promotions__single_page__image {
    width: 100%;
    margin: 0 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promotions__single_page__image img {
    width: 100%;
}

.promotions__single_page__item .btn_block {
    width: 100%;
    justify-content: center;
    margin: 0 0 35px;
}

.promotions__single_page__item .title {
    font-size: calc(16px + .208vw);
    margin: 0 0 35px;
    color: #193E53;
}

.promotions__single_page__item .desc {
    font-size: calc(14px + .208vw);
    margin: 0 0 35px;
}

.promotions__single_feedback {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    position: relative;
    padding: 40px 0;
}

.promotions__single_feedback__elem form {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

.form_field {
    position: relative;
}

.input_field {
    width: 65%;
}

.form_field input[type=text],
.form_field input[type=tel],
.form_field input[type=email]{
    background: #EDEDED;
    border-radius: 6px;
    height: 50px;
    padding: 13px;
    outline: none;
    border: none;
    width: 100%;
    font-size: calc(14px + .208vw);
    font-weight: 700;
    color: #000;
}

input::placeholder{
    font-size: calc(14px + .208vw);
    font-weight: 700;
    color: #000;
}

.submit_field {
    width: 30%;
}

.form_field input[type=submit]{
    outline: none;
    border: none;
    cursor: pointer;
}

.contacts__announcement {
    width: 75%;
    margin: 40px auto 0;
    color: #193E53;
    font-size: calc(14px + .208vw);
    font-weight: 700;
}

.contacts__announcement .title {
    margin: 0 0 10px;
}

.contacts__announcement ul {
    padding: 0 0 0 25px;
    list-style: disc;
}

.contacts__announcement a {
    color: #fff;
    margin: 0 0 0 5px;
}

/* PARTNERSHIP PAGE */

.partnership_page {
    padding: 70px 0 0;
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
}

.partnership_page__wrapper .headline {
    margin: 0;
}

.partnership_page__elem {
    width: 80%;
    margin: -50px auto 0;
}

.partnership_page__text p {
    color: #fff;
    font-size: calc(14px + .208vw);
    font-weight: 700;
    width: 85%;
}

.partnership_page__text {
    align-items: flex-start;
}

.partnership_page__text .btn_block {
    width: 100%;
    margin: 40px 0 0;
}

.choose {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
}

.choose__image {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 100%;
    box-shadow: 10px 12px 14px rgb(104 151 21 / 51%);
    margin-bottom: -45px;
    position: relative;
}

.choose__text {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    padding: 60px 15px 15px;
    text-align: center;
    color: #193E53;
    width: 100%;
}

.choose__text p {
    min-height: 50px;
}

.choose__item__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}

.choose__item {
    margin: 0 0 35px;
}

.need__coop, .partnership_form, .product__credit_services {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
}

.need__coop__item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

.need__coop__number {
    width: 125px;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 100%;
    margin: 0 0 7px;
    font-size: 110px;
    color: rgba(0,0,0,.1);
    font-family: 'Craftwork Grotesk Heavy';
    position: relative;
}

.need__coop__text {
    color: #193E53;
    font-weight: 700;
    width: 80%;
    text-align: center;
    min-height: 75px;
}

.need__coop__elem:before {
    position: absolute;
    content: '';
    width: 80%;
    height: 100px;
    background-image: url(/data/img/coop__bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
}

.need__coop__elem {
    width: 80%;
}

.partnership_form__elem {
    width: 60%;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(1, 47, 86, 0.1);
    border-radius: 20px;
    padding: 35px 50px;
}

.form_fields__block {
    display: flex;
    margin: 0 0 15px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form_fields__block .input_field{
    width: 48%;
    display: flex;
    flex-direction: column;
}

.form_field label {
    margin: 0 0 5px;
    color: #193E53;
    font-size: 14px;
    font-weight: 700;
    display: flex;
}

.pay_page .form_field label {
    color: #000;
}

.pay_page .form_field input[type=tel]::placeholder {
    color: #000;
    opacity: 1;
    font-weight: 700;
}

.email_input {
    width: 100%;
    margin: 0 0 15px;
}

.partnership_form__elem form {
    width: 100%;
}

.textarea_field {
    display: flex;
    flex-direction: column;
    margin: 0 0 15px;
}

textarea {
    background: #EDEDED;
    border-radius: 6px;
    height: 115px;
    padding: 13px;
    outline: none;
    border: none;
    width: 100%;
    font-size: calc(14px + .208vw);
    font-weight: 700;
    color: #000;
    resize: none;
}

.partnership_form__elem .submit_field {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.partnership_form__info {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
}

.partnership_form__info p {
    color: #193E53;
    font-size: 10px;
    width: 75%;
}

.partnership_form__info a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 25%;
}

.partnership_form__info a p {
    font-size: calc(14px + .208vw);
    font-weight: 700;
    margin: 0 0 0 10px;
    width: auto;
}

.partnership_form__wrapper:before {
    position: absolute;
    content: '';
    width: 25%;
    height: 109%;
    background-image: url(/data/img/call_back.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

/* ERROR PAGE */

.error_page {
    padding: 70px 0 0;
    height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
}

.error_page img {
    width: 100%;
}

.error_page__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 74%;
    right: 27%;
}

.error_page__elem {
    flex-direction: column;
    justify-content: flex-start;
}

.error_page__elem .title {
    font-size: calc(60px + 7.292vw);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #193E53;
    line-height: 1;
    padding-top: 25px;
}

.error_page__elem .desc {
    color: #193E53;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Craftwork Grotesk Regular', sans-serif;
    margin: 0 0 40px;
}

.error_page__elem .btn_block {
    width: 100%;
    justify-content: center;
}

/* LICENSES */

.licenses_page {
    background: #fff;
}

.licenses_page__item .title {
    color: #193E53;
    font-size: calc(16px + .208vw);
    margin: 0 0 25px;
}

.licenses_page__item .desc {
    font-size: calc(14px + .208vw);
    margin: 0 0 30px;
    text-align: center;
}

/* PRODUCT */

.product_page__tab_block {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    padding: 25px;
    width: 55%;
    height: fit-content;
    margin-bottom: 70px;
}

.product_page__tab_block .title {
    color: #193E53;
    margin: 0 0 25px;
    text-align: center;
    font-size: calc(10px + .208vw);
    font-family: 'Craftwork Grotesk Regular', sans-serif;
    font-weight: 700;
}

.product_page__tab_block .desc {
    background: rgba(102, 119, 136, .1);
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    padding: 15px;
    height: 300px;
    overflow-y: scroll;
    margin: 0 0 20px;
}

.custom-checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox>span {
    display: inline-flex;
    align-items: center;
    user-select: none;
    color: #193E53;
    font-family: 'Craftwork Grotesk Regular', sans-serif;
    font-weight: 700;
    font-size: calc(10px + .208vw);
}

.custom-checkbox>span::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    /* border: 1px solid #adb5bd; */
    margin-right: 0.5em;
    background-image: url("/data/img/not_check.png");
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 2px;
}

.custom-checkbox>input:not(:disabled):active+span::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.custom-checkbox>input:checked+span::before {
    background-color: transparent;
    background-image: url("/data/img/checked.png");
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: center;
}

.custom-checkbox>input:disabled+span::before {
    background-color: #e9ecef;
}

.custom-checkbox_contacts {
    display: flex;
    align-items: center;
}

.custom-checkbox_contacts a{
    color: #FF4949;
    text-decoration: underline !important;
    margin: 0 0 0 5px;
}

.product_page__tab_block .desc::-webkit-scrollbar {
    width: 8px;
    /* ширина для вертикального скролла */
    height: 8px;
    /* высота для горизонтального скролла */
    background: #fff;
    /*box-shadow: inset 0 4px 9px rgba(38, 117, 218, 0.25);*/
}

/* ползунок скроллбара */
.product_page__tab_block .desc::-webkit-scrollbar-thumb {
    background: linear-gradient(220deg, #97CA3E 4.52%, #FFFF22 95.48%);
    max-width: 153px;
    border-radius: 10px;
}

.product_page__tab_block .desc span {
    color: #193E53;
    font-weight: 700;
}

.product_page__left .headline {
    margin: 0 auto 0 0;
    width: 70%;
}

.product_page__tabs {
    margin: 35px auto 35px 0;
    display: flex;
    /*justify-content: center;*/
    width: 100%;
    /*overflow-y: scroll;*/
}

.product_page .breadcrumbs_wrapper {
    width: 80%;
    padding: 20px 0;
}

.product_page__tabs a {
    background: #fff;
    max-width: 100% !important;
    /*min-width: 20% !important;*/
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 30px rgb(1 47 86 / 10%);
    border-radius: 20px;
    /*margin: 0 25px 0 0;*/
    font-family: 'Craftwork Grotesk Heavy', sans-serif;
}

.product_page__tabs .dark_btn {
    max-width: 100% !important;
}

.product_page__left {
    /* align-items: flex-end; */
    width: 60%;
}

.product_page__elem {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.product_page__right {
    width: 90%;
    margin: -130px 0px -130px auto;
    align-items: flex-start;
}

.product_content {
    display: flex;
    width: 75%;
    justify-content: space-between;
    align-items: center;
}

.product_slide {
    width: 20% !important;
}

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

.credit_service__page__item {
    display: flex;
    justify-content: center;
}

.product__credit_services .swiper-button-next:after, .product__credit_services .swiper-button-prev:after {
    color: #fff !important;
}

.product__credit_services_nav {
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
}

.product_page {
    padding: 70px 0 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
}

.product_page__image {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.product_page__wrapper {
    z-index: 5;
}

.product_page__wrapper .slide_calc {
    justify-content: flex-start;
    padding-top: 65px;
    z-index: 10;
    margin-bottom: 166px;
}

.product_page__wrapper .slide_calc .calc_info {
    margin: 15px 0;
    min-height: auto;
}

.product_page__wrapper .sum {
    margin: 0 0 15px;
}

.product_rules {
    z-index: 10;
}

.product_rules .title {
    min-height: 50px;
    display: flex;
    align-items: center;
    font-size: calc(10px + .208vw);
}

.product_rules .rules__item {
    margin: 0 0 30px;
}

.product__credit_services .btn_block {
    width: 100%;
    justify-content: center;
}

.pay_page {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(57.81deg, #97CA3E 4.52%, #FFFF22 95.47%);
    margin-bottom: -215px;
}

.pay_page__2 {
    margin-bottom: -230px;
}

.pay_page__elem .input_field {
    width: 100%;
    margin: 0 0 20px;
}

.pay_page__elem .submit_field {
    width: 100%;
}

.pay_page__elem .submit_field .action_btn {
    max-width: 100%;
}

.pay_page__info {
    background: #667788;
    border-radius: 6px;
    padding: 15px;
    color: #fff;
}

.pay_page__2 .pay_page__info {
    margin: 20px 0 0;
}

.pay_page__info a {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.pay_page__info a p {
    margin: 0 0 0 10px;
}

.desc_1 {
    font-size: calc(8px + .208vw);
}

.desc_2 {
    font-size: calc(6px + .208vw);
    color: rgba(255,255,255,.5);
}

/* .pay_page {
    height: 690px;
} */

.pay_page__elem .slide_calc__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 155px;
    padding-top: 65px;
}

.pay_page__2 .pay_page__elem .slide_calc__inner {
    justify-content: flex-start;
}

.total_info__item {
    display: flex;
    justify-content: space-between;
    font-size: calc(10px + .208vw);
    font-weight: 700;
    margin: 0 0 10px;
}

.total_info__item .left {
    color: rgba(0,0,0,.5);
}

.total_info__item .right {
    color: rgba(0,0,0,1);
}

.pay_page__2 .pay_page__elem input::placeholder {
    opacity: .3;
    font-weight: 400;
    font-size: calc(10px + .208vw);
    text-align: center;
}

.pay_page .pay_page__elem input::placeholder {
    opacity: .3;
    font-weight: 400;
    font-size: calc(10px + .208vw);
    text-align: left;
}

.important_page__left {
    color: #193E53;
}

.fin_monitoring__right .title {
    font-size: calc(16px + .208vw);
    margin: 0 0 25px;
    color: #193E53;
    width: 100%;
}

.important_page__left .title {
    font-size: calc(16px + .208vw);
    margin: 0 0 25px;
    color: #193E53;
    width: 75%;
}

.important_page__left .desc {
    font-size: calc(14px + .208vw);
    width: 75%;
    font-weight: 700;
}

.fin_monitoring {
    background: #fff;
}

.fin_monitoring__right .desc {
    margin: 0 0 30px;
    font-weight: 700;
    font-size: calc(14px + .208vw);
}

.fin_monitoring__right .desc span {
    color: #193E53;
}

.fin_monitoring__image_block:nth-child(odd) {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.fin_monitoring__image_block:nth-child(even) {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin: -75px 0;
}

.fin_monitoring__image_block:nth-child(even) img{
    box-shadow: 2px 28px 67px rgba(0, 0, 0, 0.25);
}

.fin_monitoring__left {
    width: 40%;
}

.fin_monitoring__elem {
    justify-content: space-between;
    width: 80%;
}

.important_algoritm .need__coop__text {
    min-height: 120px;
}

.important_algoritm .need__coop__item {
    width: 25%;
}

.important_algoritm .btn_block {
    width: 100%;
    justify-content: center;
    margin: 40px 0 0;
}

.important_algoritm .btn_block a {
    max-width: 275px;
}


.custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background: #EDEDED;
    border-radius: 6px;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 16px;
    height: 10px;
    background-image: url(/data/img/dropdown_feedback.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s linear;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
    transition: all .2s linear;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    color: #000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    font-size: calc(14px + .208vw);
    font-weight: 700;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background: #EDEDED;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.feedback_page .partnership_form__elem form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.feedback_page .textarea_field.mobile {
    display: none;
}

.feedback_page .partnership_form__elem .submit_field {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.form_up {
    display: flex;
    justify-content: space-between;
}

.form_fields__left, .form_fields__right {
    width: 48%;
}

.feedback_page .input_field {
    width: 100%;
    margin: 0 0 12px;
}

.form_file_main {
    cursor: pointer;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EDEDED;
    border: 1px dashed rgba(0, 0, 0, 0.13);
    border-radius: 6px;
    color: rgb(25, 62, 83, .5);
    width: 100%;
}

.attach_file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.attach_file {
    margin: 0 0 15px;
}


.feedback_page .textarea_field {
    margin: 0;
}

.feedback_page .textarea_field textarea {
    height: 150px;
}

.credit_service__page_nav.page_nav {
    display: none;
}

.apply_loan__right:before {
    position: absolute;
    content: '';
    background-image: url("/data/img/get_a_loan__8.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 10%;
    left: -20%;
    width: 123px;
    height: 127px;
}

.product_page .calc_info__up {
    width: 100%;
}

.article {
    background: #fff;
}

.article__elem {
    width: 65%;
}

.article__image {
    margin: 0 0 40px;
    width: 100%;
}

.article__image img {
    width: 100%;
}

.product_slider {
    width: auto;
}

.more_text__btn {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin-top: 3px;
    color: #0000FF;
    font-weight: 700;
    text-decoration: underline !important;
}

.active__more_btn {
    margin-top: 10px;
}

.show_text .more_text {
    height: auto;
    overflow: auto;
}

.calc_info__desc {
    height: 0;
    overflow: hidden;
}

.slide_calc {
    justify-content: flex-start;
    padding-top: 60px;
    margin-bottom: -50px;
}

.credit_service__restructuring__elem {
    justify-content: flex-start;
    width: 97%;
    margin: 0 auto 30px;
    color: #193E53;
}

.credit_service__restructuring__elem .title {
    width: 100%;
    margin-bottom: 6px;
    font-size: calc(14px + .208vw);
    font-weight: 700;
    font-family: inherit;
}

.credit_service__restructuring__elem ul.list-disc {
    list-style: disc;
    padding: 0 0 0 25px;
    margin: 15px 0;
}

.credit_service__restructuring__elem ol.list-decimal {
    padding: 0 0 0 25px;
    list-style: decimal;
    margin: 15px 0;
}

.credit_service__restructuring__elem ul {
    padding: 0 0 0 25px;
    list-style: decimal;
    margin: 15px 0;
}

.pay_page .slide_calc {
    margin-bottom: 10px;
}

.success_block {
    display: none;
    flex-direction: column;
    align-items: center;
    min-height: 270px;
}

.failure_block {
    display: none;
    flex-direction: column;
    align-items: center;
    min-height: 270px;
}

.success_block__text, .failure_block__text {
    font-size: calc(14px + .208vw);
    font-weight: 700;
    color: #000;
}

.success_block__btn, .failure_block__btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0 0;
}

.success_block__btn .action_btn, .failure_block__btn .action_btn {
    max-width: 100%;
}

.success_block__image, .failure_block__image {
    margin: 0 0 0 20px;
}
.promotions__single_page h1{
    font-size: calc(21px + 0.938vw);
}


section.video-tutorials .container {
    max-width: 1120px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Video tutorial */

.video_frame {
    display: flex;
    width: 100%;
    height: 400px;
}

.video_frame video {
    background: url(https://e-groshi.com/wp-content/themes/eg-site-wp-redesign-2023/img/home__about_us__bg.png) center center no-repeat;
    background-size: cover;
    position: relative;
}

.breadcrumbs_wrapper {
    padding: 20px 15px;
    display: flex;
    color: #193E53;
    font-size: calc(8px + 0.208vw);
    font-weight: 700;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}
.breadcrumbs_wrapper a {
    text-decoration: none;
    cursor: pointer;
    color: #193E53;
}
.breadcrumbs_wrapper span {
    margin: 0 5px;
}

section.video-tutorials {
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
}

.video-tutorials-h1__wrapper {
    min-height: 100px;

}

.video-tutorials-h1__wrapper h1 {
    font-family: 'Craftwork Grotesk', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    color: #000000;
}

.video-tutorials-list .video-tutorials-list__item .description_wrapper {
    min-height: 207px;
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 75px;
    padding: 0 25px;
}
.align-bottom {
    /*align-self: flex-end !important;*/
}

.video-tutorials-list .video-tutorials-list__item .description_wrapper h2 {
    font-family: 'Craftwork Grotesk', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    color: #000000;
}
.video-tutorials img.align-bottom{
    max-height: 207px;
}
.about_page__first_screen .home__about_us__image img{
    position: relative;
    bottom: 30px;
}
.nby-link{
    color: blue !important;
    text-decoration: underline !important;
}
.block_warning{
    font-weight: bold;
}
.block_warning ol {
    list-style: decimal;
}
.margin-top-15{
    margin-top: 15px;
}
.nbu-link{
    color: blue !important;
}
.home_info{
    padding: 50px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(66.39deg, #97CA3E 0%, #FFFF22 99.18%);
    position: relative;
}
.home_info .description{
    width: 100%;
    text-align: left;
    margin: 0 0 30px;
    border: 2px solid #678;
    padding: 15px;
    border-radius: 3px;
}
.home_info .description p{
    color: #000000;
    font-size: calc(14px + 0.208vw);
    font-weight: 700;
}
.home_info .description p.btn-info{
    display: flex;
}
.home_info .description p a{
    text-align: center;
    margin: 0 auto;
}
.nbu a
{
    color: #002FDC !important;
    text-decoration: underline !important;
    font-weight: 700;
}

.long-term-loan {
    position: relative;
    z-index: 5;
    padding: 50px 0;
    background: url("/data/img/long-term-loan-bg.png"), white;
    background-repeat: no-repeat;
    background-position: center;
}

.long-term-loan .long-term-loan-wrapper {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: flex-start;
}

.long-term-loan .long-term-loan-wrapper .long-term-loan-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.long-term-loan .long-term-loan-wrapper .long-term-loan-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 500px;
    width: 100%;
    gap: 12px;
}

.long-term-loan .long-term-loan-wrapper .long-term-loan-list li img {
    width: 91px;
    height: 91px;
}

.long-term-loan .long-term-loan-wrapper .long-term-loan-list li .item-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #193E53;
}

.long-term-loan .long-term-loan-wrapper .long-term-loan-list li .item-info .text {
    font-size: 18px;
    font-weight: 400;
    color: #667788;
}

.long-term-loan .get-loan-btn {
    height: 50px;
    max-width: 220px;
    width: 100%;
    border-radius: 6px;
    background-color: #193E53;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 19.2px;
    margin-top: 32px;
}

.ol-decimal {
    list-style: decimal;
}

#fallingWordsContainer {
    position: fixed;
    top: 0;
    z-index: 100
}

.fallingWord {
    position: absolute;
    width: 50px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: .8;
    transform: rotate(0);
    animation: fall linear;
    line-height: 25px;
}

@keyframes fallAndSpin-right {
    from {
        top: -300px;
        transform: rotate(0)
    }

    to {
        top: 100vh;
        transform: rotate(360deg);
        opacity: 0.15
    }
}

@keyframes fallAndSpin-left {
    from {
        top: -300px;
        transform: rotate(0)
    }

    to {
        top: 100vh;
        transform: rotate(-360deg);
        opacity: 0.15
    }
}

.calc-credit-choose {
    max-width: 324px;
    width: 100%;
    background-color: #667788;
    border-radius: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 5px;
    margin: 0 auto 12px auto;
}

.calc-credit-choose button {
    max-width: 163px;
    width: 100%;
    font-family: Craftwork Grotesk, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 52px;
    color: #FFFFFF;
    height: 44px;
    cursor: pointer;
    transition: .2s all linear;
}

.calc-credit-choose button.active {
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    color: #000000;
    font-weight: 700;
}

.slide_calc .second-credit-text {
    font-family: Manrope, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 22.5px;
    text-align: center;
    color: #667788;
    margin: 7px 0;
    display: none;
}
input[type=range]::-moz-range-track {
    height: 8px;
    background: #EDEDED;
}

input[type="range"]::-moz-range-progress {
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    height: 8px;
}

.hide {
    display: none;
}

.slider-mobile-show {
    display: none;
}

.slider-mobile-img {
    width: 100%;
}

.calc-wrapper {
    position: absolute;
    top: 20px;
    transform: translateX(78%);
    z-index: 11;
}

.mobile {
    display: none !important;
}

.slider-qr-code {
    margin: -10px 0 0 24px !important;
    max-width: 280px !important;
    width: 100% !important;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 160;
}

.backdrop {
    background: rgba(0, 0, 0, 0.72);
    mix-blend-mode: multiply;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 59;
    top: 0;
}

.qr-code-modal, .change-language-modal {
    max-width: 525px;
    width: 100%;
    padding: 20px 32px 48px 32px;
    background: #FFFFFF;
    border-radius: 24px;
}

.qr-code-modal h3, .change-language-modal h3 {
    text-align: center;
    font-size: 28px;
    font-family: "Craftwork Grotesk", sans-serif;
    color: #000000;
    line-height: 28px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.qr-code-modal .text, .change-language-modal .text {
    font-size: 18px;
    color: #667788;
    font-weight: 400;
    font-family: Manrope, sans-serif;
    text-align: center;
}

.qr-code-modal > img, .change-language-modal > img {
    position: relative;
    right: -97%;
    cursor: pointer;
}

.qr-code-modal .mobile > img, .qr-code-modal .desktop > img {
    display: block;
    margin: 0 auto;
}

.modal .modal-btn.transparent {
    background: transparent;
    border: 1px solid #193E53;
    color: #193E53;
}

.modal .modal-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    align-items: center;
}

.change-language-modal h3 {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
}

.change-language-modal .modal-btn {
    font-size: 16px !important;
    margin: 0 !important;
}

.qr-code-modal .qr-code-modal-btn, .change-language-modal .modal-btn {
    max-width: 324px;
    width: 100%;
    height: 50px;
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    color: #000000;
    font-family: "Craftwork Grotesk", sans-serif;
    line-height: 16.8px;
    font-weight: 700;
    border: none;
    margin: 32px auto 0 auto;
    cursor: pointer;
}


.overflow-hidden {
    overflow: hidden !important;
}

.download-mobile-app {
    height: 44px;
    background: rgba(246, 255, 214, 1);
    border-bottom: 3px solid rgba(151, 202, 62, 1);
    box-shadow: 0px 4px 4px 0px #92929240;
    width: 100%;
    position: fixed;
    z-index: 99;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
}

section.download-mobile-app a.btn {
    max-width: 31% !important;
}

section.download-mobile-app .download-mobile-app-content-section {
    max-width: 59% !important;
}

.download-mobile-app .download-mobile-app-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.download-mobile-app .download-mobile-app-wrapper .close {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.download-mobile-app button, .download-mobile-app a {
    height: 30px;
    max-width: 118px;
    width: 100%;
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    font-family: Craftwork Grotesk, sans-serif;
    font-size: 8px;
    font-weight: 700;
    line-height: 9.6px;
    text-align: center;
    color: #000000;
    border: none;
    border-radius: 6px;
}

.download-mobile-app a {
    justify-content: center;
    display: flex;
    align-items: center;
}

.hide {
    display: none !important;
}

.complaint-info {
    font-family: 'Manrope', sans-serif;
    margin: 0px auto;
    margin-bottom: 26px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 27px;
    max-width: 975px;
}

.info-icon {
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    position: relative;
}

.tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-90%);
    padding: 5px;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    max-width: 220px;
    z-index: 100;
    border-style: groove;
}

.info-icon:hover .tooltip,
.info-icon:focus .tooltip {
    display: block;
}

.promotions__single_page__wrapper h2 {
    font-family: 'Craftwork Grotesk Heavy';
}

.qr-code-modal .h3-title {
    text-align: center;
    margin: 20px auto;
    font-family: 'Craftwork Grotesk Heavy', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    color: #000;
}

.qr-code-modal .h3-title-mob {
    text-align: center;
    margin: 20px auto;
    font-family: 'Craftwork Grotesk Heavy', serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    color: #000;
}

.qr-code-modal .promo-title {
    text-align: center;
    margin: 20px auto;
}

.qr-code-modal .promo-title .promo-content {
    width: fit-content;
    margin: 0 auto;
    border: 4px dashed #97CA3E;
    padding: 14px 28px;
    border-radius: 26px;
    color: rgba(102, 119, 136, 1);
    font-size: 32px;
    font-family: 'Craftwork Grotesk Heavy', serif;
}

.qr-code-modal .promo-title .promo-content-mob {
    width: fit-content;
    margin: 0 auto;
    border: 4px dashed #97CA3E;
    padding: 14px 16px;
    border-radius: 26px;
    color: rgba(102, 119, 136, 1);
    font-size: 18px;
    font-family: 'Craftwork Grotesk Heavy';
}

.qr-code-modal .promo-title .promo-content span, .qr-code-modal .promo-title .promo-content-mob span {
    color: #97CA3E;
}

.swiper {
    height: 100% !important;
}

.slider-tablet{
    display: none;
}

.promotions__single_page__item.full_item h2 {
    font-size: calc(8px + 0.938vw) !important;
    color: #193e53;
}

.promotions__single_page__item.full_item h3 {
    font-size: calc(6px + 0.938vw) !important;
    color: #193e53;
}

#qr-code-modal-close-btn {
    display: none;
}

.privacy-policy-section ul {
    list-style: disc !important;
}

.privacy-policy-section ol {
    list-style: decimal !important;
}

.slide_calc {
    width: 407px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    z-index: 5;
    background: white;
    border: 9px solid #193E53;
    padding-block: 24px !important;
    box-shadow: 2px 28px 67px 0px #00000040;
}

.slide_calc .calculator-more {
    background: #EDEDED;
    padding: 16px;
    border-radius: 6px;
    margin: 24px 0;
    width: 100%;
}
.slide_calc .calculator-more .calculator-more-btn {
    background: transparent;
    border: none;
    display: block;
    margin: 0 auto;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16.39px;
    text-align: center;
    text-decoration: underline;
    color: #0000FF;
    cursor: pointer;
}
.slide_calc .calculator-more .calculator-more-text {
    font-family: Manrope, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 13.66px;
    text-align: left;
    color: #8C99A5;
    margin-bottom: 12px;
}
.slide_calc .calculator-more .calculator-more-text a {
    text-decoration: underline;
    color: #0000FF;
}
.slide_calc .sum_btn {
    font-size: 14px;
}

.cpSchedulle {
    margin-bottom: 10px;
}

.cpSchedulle h4 {
    text-align: center;
    cursor: pointer;
}

.slide_calc__inner .sum_btn {
    margin-bottom: 10px;
}

.slide_calc__inner p.calculator-title {
    font-size: 22px;
    text-align: center;
    margin: 0 0 12px;
    font-family: 'Craftwork Grotesk Heavy';
    color: #000;
}

.w-100p {
    width: 100%;
}

.hide {
    display: none !important;
}
.qr-code-btn-popup-wrapper {
    position: fixed;
    bottom: 0;
    left: 10%;
    width: 240px;
    z-index: 20;
}
.qr-code-btn-popup-wrapper .qr-code-popup {
    background: url("/data/img/qr-code-popup-240.svg");
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: Craftwork Grotesk, sans-serif;
    text-align: center;
    margin-bottom: 12px;
    padding: 12px 9px;
    height: auto;
    min-height: 134px;
    width: 244px;
    text-wrap: balance;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 400;
    vertical-align: middle;
    line-height: 20px;
    margin-top: 0;
}
.qr-code-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.qr-code-btn-popup-wrapper button.qr-code-btn {
    height: 38px;
    width: 240px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: #193E53;
    border: none;
    font-family: Craftwork Grotesk, sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    cursor: pointer;
    padding: 6px 12px;
}
.qr-code-btn-popup-wrapper button.qr-code-btn:hover {
    background: #245875;
}
span.green.bold {
    color: #97CA3E !important;
    font-weight: 700 !important;
}

.promotions__single_page ul {
    list-style: disc;
}

.promotions__single_page ol {
    list-style: decimal;
}

.select-dropdown.select-dropdown-mobile {
    display: none;
}

.select-dropdown {
    display: flex;
    gap: 8px;
    position: relative;
    color: #53565a;
    border-radius: 4px;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    margin-right: 24px;
    width: 72px;
    flex-shrink: 0;
    height: 32px;
}

.select-dropdown * {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    font-weight: 700;
    color: black;
}

.select-dropdown.is-active {
    border-radius: 8px 8px 0 0;
    border: 1px solid #4F5D6D;
}

.select-dropdown.is-active input[type="text"] {
    border-color: #00aeef;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-dropdown .dropdown-img {
    transition: .3s all linear;
    margin-left: 8px;
}

.select-dropdown.is-active .dropdown-img {
    top: 6px;
    transform: rotate(180deg);
}

.select-dropdown.is-active ul {
    display: block;
}

.select-dropdown #js-ddInput {
    display: flex;
    border-radius: 8px 0 0 0;
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
    gap: 8px;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #000000;
    font-family: Craftwork Grotesk, sans-serif;
    padding: 4px 8px;
    font-size: 16px;
    text-overflow: ellipsis;
    font-weight: 700;
    padding: 0;
    height: 32px;
    background: #FFFFFF;
    cursor: pointer;
    user-select: none !important;
}

.select-dropdown i {
    position: absolute;
    top: 6.5px;
    right: 5px;
}

.select-dropdown ul {
    display: none;
    top: 32px;
    position: absolute;
    z-index: 999;
    color: #000000;
    right: -1px;
    list-style: none;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
    padding: 0;
    margin: 0;
    border: 1px solid #4F5D6D;
    width: 72px;
}

/*.show {*/
/*    display: inherit !important;*/
/*}*/

.select-dropdown ul li {
    cursor: pointer;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    background: #FFFFFF;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.select-dropdown ul li * {
    pointer-events: none;
}

html.modal-open,
body.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 160;
}

.phone-not-found-modal {
    background: #FFFFFF;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center !important;
    width: 525px;
}
.phone-call-error{
    background: #FFFFFF;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center !important;
    width: 525px;
}

.phone-call-error h3 {
    font-family: 'Craftwork Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #000000;
    margin-top: 16px;
    margin-bottom: 12px;
}

.phone-call-ordered h3 {
    font-family: 'Craftwork Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #000000;
    margin-top: 16px;
    margin-bottom: 12px;
}

.phone-not-found-modal h3 {
    font-family: 'Craftwork Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #000000;
    margin-top: 16px;
    margin-bottom: 12px;
}

.phone-not-found-modal .btn  {
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    max-width: 290px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    margin-top: 16px;
    font-family: 'Craftwork Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #000000;
    position: relative;
    padding: 15px;
    top: 20px;
}

.phone-call-error .btn {
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    max-width: 290px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    margin-top: 16px;
    font-family: 'Craftwork Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #000000;
    position: relative;
    padding: 15px;
    top: 20px;
}

.phone-call-ordered {
    background: #FFFFFF;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center !important;
    width: 525px;
}
.phone-call-ordered .order-text {
    color: #97CA3E;
    margin-bottom: 40px;
    font-family: 'Craftwork Grotesk Heavy';
}

.disable {
    overflow: hidden !important;
}

.hide {
    display: none !important;
}

.phone-call-error .close-modal {
    position: absolute;
    right: 24px;
    top: 16px;
    cursor: pointer;
}

.phone-call-ordered .close-modal {
    position: absolute;
    right: 24px;
    top: 16px;
    cursor: pointer;
}

.phone-not-found-modal .close-modal {
    position: absolute;
    right: 24px;
    top: 16px;
    cursor: pointer;
}

.backdrop {
    background: rgba(0, 0, 0, 0.72);
    mix-blend-mode: multiply;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 59;
    top: 0;
}

.get-call {
    padding: 64px 0;
    background: linear-gradient(99.83deg, #97CA3E 16.87%, #FFFF22 83.13%);

}

.get-call .wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.get-call .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 405px;
    width: 100%;
    align-items: center;
}

.get-call .content-wrapper .btn {
    height: 60px;
    width: 220px;
    border-radius: 6px;
    background: #193E53;
    padding: 6px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-family: Craftwork Grotesk, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    transition: .1s all linear;
    border: none;
}

.get-call .content-wrapper .btn:hover {
    transform: scale(1.01);
}

.get-call select option {
    max-width: 405px;
    width: 100%;
}

.get-call input, .get-call select {
    max-width: 405px;
    width: 100%;
    height: 72px;
    border: 1px solid #B3BBC4;
    background: #F0F2F4;
    padding: 24px;
    border-radius: 18px;
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #667788;
}

.get-call input::placeholder {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #667788;
}

.get-call .inputs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 405px;
    width: 100%;
}

.get-call img {
    max-width: 650px;
}

.get-call h2 {
    font-family: Craftwork Grotesk, sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #000000;
    margin-bottom: 32px;
}

.get-call-modal {
    position: fixed;
    bottom: 10%;
    right: 2%;
    z-index: 20;
    display: flex;
    flex-direction: column;
}

.get-call-modal img {
    width: 190px;
}

.get-call-modal .get-call-btn {
    width: 192px;
    height: 43px;
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: none;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: Craftwork Grotesk, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #193E53;
    transition: .1s all linear;
}

.get-call-modal .chat-img {
    cursor: pointer;
}

.get-call-modal .get-call-btn-mobile {
    display: none;
    height: 47px !important;
    width: 68px !important;
    background: transparent;
    padding: 0 !important;
    border: none;
}

.get-call-modal .get-call-btn:hover {
    transform: scale(1.01);
}

.date-input {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #eee;
    outline-color: mediumpurple;
    width: 405px;
}

/* datepicker styles */

.datepicker-container {
    width: 405px;
    position: relative;
        /*display: flex;*/
        /*flex-direction: column;*/
        /*align-items: center;*/
        /*!*min-height: 100dvh;*!*/
        /*overflow: hidden;*/
        /*padding: 0;*/
        /*margin: 0;*/
}

.datepicker {
    position: absolute;
    top: 100%;
    z-index: 100;
    margin-top: 2px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    width:420px;
}

.datepicker button {
    cursor: pointer;
    border: none;
    border-radius: 3px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    touch-action: manipulation;
}

.days,
.dates {
    display: grid;
    grid-template-columns: repeat(7, 32px);
    gap: 10px;
    margin-block: 10px;
}

.days span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.dates button {
    color: slategray;
    aspect-ratio: 1;
}

.dates button:disabled {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.dates button:hover {
    background: rgba(119, 136, 153, 0.1);
}

.dates button.today {
    background: rgba(147, 112, 216, 0.2);
    color: mediumpurple;
}

.dates button.selected {
    background: #193E53;
    color: #fff;
}

.datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.datepicker-header select,
.datepicker-header input {
    font-size: 14px;
    border: 1px solid #eee;
    outline-color: mediumpurple;
}

.datepicker-header input {
    max-width: 64px;
}

.datepicker-header button {
    color: slategray;
}

.datepicker-header button:hover {
    color: mediumpurple;
}

.datepicker-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.timeslot {
    border-radius: 3px;
    padding: 6px;
    padding-bottom: 1px;
    padding-top: 1px;
}

.datepicker-footer button {
    background: rgba(119, 136, 153, 0.1);
    padding: 3px 10px;
}

.datepicker-footer button.apply {
    background: linear-gradient(57.8deg, #97CA3E 4.52%, #FFFF22 95.48%);
    color: black;
}
.date-time-container {
    display: flex;
    /* Optional: adds space between the divs */
    justify-content: space-around;
}

.div1 {
    /* Optional: ensures padding/borders are included in the width calculation */
    box-sizing: border-box;
    width: 80%; /* Makes each div take up half the width */
    padding: 10px;
    border: 1px solid black;
    border-radius: 10px;
    margin: 5px;
}
.div2 {
    overflow: scroll;
    box-sizing: border-box;
    width: 20%; /* Makes each div take up half the width */
    padding: 10px;
    border: 1px solid black;
    border-radius: 10px;
    max-height: 232px;
}
.timeslot-selected {


    /* MAIN COLOR 7 */
    background: #193E53 !important;
    color:#fff !important;
}

.days {
    margin-left: 12px;
}

.month-input {
    max-height: 20px;
    padding: 1px !important;
    width: fit-content !important;
}
.year-input{
    padding: 10px !important;
    max-width: 90px;
    max-height: 20px;
    width: fit-content !important;
}

.support-chat-wrapper img,
.support-chat-list img,
a.support-chat-item img {
    object-fit: contain !important;
}

.stock-active {
    background: #C6E22F80;
    padding: 2px;
    text-align: center;
    width: 150px;
    color: #486B0B;
    font-weight: bold;
    border-radius: 15px;
    font-family: 'Craftwork Grotesk', sans-serif;
    margin-bottom: 16px;
}

.stock-unactive {
    background: #C8D2DC;
    padding: 2px;
    text-align: center;
    width: 180px;
    color: #667788;
    font-weight: bold;
    border-radius: 15px;
    font-family: 'Craftwork Grotesk', sans-serif;
    margin-bottom: 16px;
}



