@import url('https://fonts.googleapis.com/css2?family=Inter&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&display=swap');

/* @font-face {
    font-family: 'Nighty DEMO';
    font-weight: 400;
    src: url('../fonts/Nighty DEMO.otf') format('opentype');
} */

body {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    --color-1: #2F3967;
    --color-1-hover: #212950;
    --color-2: #EE3131;
    --color-2-hover: #ca2b2b;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 128px;
    overflow-x: hidden;
}
a {
    color: inherit;
    outline: none;
    text-decoration: none;
    display: inline-block;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
* {
    box-sizing: border-box;
}
:root{
    --cc-text: #212529;
    --cc-btn-primary-bg: #EE3231;
    --cc-btn-primary-hover-bg: #ca2b2b;
}
.container {
    max-width: 1500px;
    width: calc(100% - 80px);
    margin: 0 auto;
    position: relative;
}
@media (max-width: 768px) {
    .container {
      width: calc(100% - 60px);
    }
}
p {
    margin: 0;
}
img {
    max-width: 100%;
}
.scroll-locked {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}



.header_wrapper {
    height: 128px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: white;
    padding-top: 10px;
}
.header_wrapper .container {
    height: 100%;
}
.header_inside {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.header_logo {
    width: 307px;
    height: auto;
    display: block;
}

.header_navigation {
    margin: 0 0 0 auto;
}
.header_navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header_navigation ul li a {
    line-height: 19px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-1);
    text-align: center;
    position: relative;
}
.header_navigation ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    background: var(--color-2);
    transition: ease-in-out 0.1s;
    bottom: 0;
}
.header_navigation ul li a:hover::before {
    height: 3px;
    bottom: -3px;
}
.header_link_btn {
    margin: 0 0 0 16px;
    padding: 14px 22px 14px 27px;
    border-radius: 8px;
    background: transparent linear-gradient(154deg, #EE3231 50%, #FFE764 116%) 0% 0% no-repeat padding-box;
    background-size: 100%;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    color: white;
    transition: ease-in-out 0.35s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.header_link_btn:hover {
    background-size: 200%;
}




.home_slider {
    height: 678px;
    width: 100%;
    padding-top: 92px;
    position: relative;
    margin-top: 128px;
}
.home_slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
    z-index: -3;
    pointer-events: none;
    user-select: none;
}
.home_slider .container {
    display: flex;
    gap: 105px;
}
.home_slider_bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: initial;
    height: 100%;
    width: 70%;
    pointer-events: none;
    user-select: none;
}
.home_main_bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -5;
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
@media (min-width: 2100px) {
    .home_main_bg {
        width: 80%;
        height: 100%;
        object-fit: cover;
    }
}


.btn_1 {
    transition: ease-in-out 0.35s;
    padding: 17px 27px 17px 27px;
    background: linear-gradient(163deg, #EE3231 60%, #FFE764 120%);
    background-size: 100%;
    border: none;
    border-radius: 8px;
    position: relative;
    cursor: pointer;

    font-family: inherit;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: white;
}
.btn_icon_arrow,
.btn_icon_lines,
.btn_icon_check {
    padding: 17px 56px 17px 27px;
    overflow: hidden;
}
.btn_icon_arrow:before,
.btn_icon_check:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translateY(-50%);
}
.btn_icon_arrow:before {
    background-image: url('../../images/icons/arrow-right.svg');
}
.btn_icon_check:before {
    background-image: url('../../images/icons/check.svg');
}
.btn_icon_lines:before {
    content: '';
    position: absolute;
    top: 14px;
    right: -5px;
    width: 47px;
    height: 47px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../../images/icons/lines.svg');
}
.btn_1:hover {
    background-size: 200%;
}


.btn_2 {
    background: transparent;
    border-radius: 23px;
    border: 2px solid var(--color-1);
    padding: 9px 36px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-1);
    transition: ease-in-out 0.2s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}
.btn_2:hover {
    background: var(--color-1);
    color: white;
    text-decoration: initial;
}
.btn_2_full {
    background: var(--color-1);
    border-radius: 23px;
    border: 2px solid var(--color-1);
    padding: 9px 36px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: white;
    transition: ease-in-out 0.2s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}
.btn_2_full:hover {
    background: transparent;
    color: var(--color-1);
    text-decoration: initial;
}
.btn_3 {
    background: var(--color-2);
    border-radius: 23px;
    padding: 11px 23px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: white;
    transition: ease-in-out 0.2s;
    display: block;
    width: fit-content;
    height: fit-content;
    text-align: center;
}
.btn_3:hover {
    background: var(--color-2-hover);
}



h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4em;
    color: var(--color-1);
    margin: 0 0 40px 0;
    text-align: center;
}


.credit_wrap {
    display: flex;
    gap: 30px;
}
.credit_col_secondary {
    background: #EEEEEE;
    border-radius: 9px;
    padding: 43px 36px 46px 36px;
    width: 100%;
    max-width: 322px;
    display: flex;
    flex-direction: column;
}
.credit_col_secondary h3 {
    font-weight: 700;
    font-size: 33px;
    line-height: 42px;
    color: var(--color-1);
    letter-spacing: -2px;
    text-align: center;
    position: relative;
    padding: 0 0 24px 0;
    margin: 0 0 50px 0;
}
.credit_col_secondary h3::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    background: linear-gradient(270deg, #2F3967 1.77%, #EE3131 97.7%);
    bottom: 0;
}
.credit_col_secondary p,
.credit_col_secondary a:not(.btn_2) {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: var(--color-1);
}
.credit_col_secondary a:not(.btn_2) {
    margin: 18px 0 10px 0;
}
.credit_col_secondary a:not(.btn_2):hover {
    text-decoration: underline;
}
.credit_col_secondary .btn_2 {
    margin-top: auto;
}

.credit_col_main {
    width: 100%;
    max-width: 684px;
    padding: 64px 38px 34px 38px;
    position: relative;
    overflow: hidden;
}
.credit_col_upper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 45px 0;
}
.credit_col_upper p {
    font-weight: 700;
    font-size: 25px;
    line-height: 45px;
    color: var(--color-1);
}

.credit_col_slider_wrap {
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.credit_col_slider_wrap label {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-1);
    margin: 0 10px 0 0;
    text-align: initial;
}
.credit_col_slider_wrap > label {
    width: 175px;
}
.credit_col_slider_legend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    gap: 4px;
    width: fit-content;
    min-width: 115px;
}
.credit_col_slider_legend span,
.credit_col_slider_legend label {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-1);
    display: block;
    margin: 0;
}
.credit_col_slider_legend input::-webkit-outer-spin-button,
.credit_col_slider_legend input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}
.credit_col_slider_legend input {
    font-weight: 600;
    color: var(--color-1);
    border: initial;
    border-radius: 8px;
    width: 81px;
    height: 30px;
    display: block;
    padding: 5px;
    text-align: center;

    appearance: none;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    margin: 0;
}
.credit_col_slider_legend input:focus {
    outline: 1px solid rgba(47, 57, 103, 0.34);
}



.credit_col_payment {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #EE3231;
    position: relative;
    flex-shrink: 0;
}
.credit_col_payment span {
    font-size: inherit;
    line-height: inherit;
}

.credit_col_inputs,
.box_person {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 19px;
}
.credit_col_inputs {
    gap: 11px;
}

.credit_col_slider_wrap input[type="range"] {
    -webkit-appearance: none;
    appearance: initial;
    margin: 0;
    padding: 0;
    border: initial;
    border-radius: 9px;
    outline: none;
    background: #D9D9D9;
    box-shadow: inset 0px 3px 6px #0000001F;
    height: 15px;
    width: 100%;
    max-width: 200px;
}

.credit_col_slider_wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: initial;
    background: linear-gradient(212deg, rgba(238,50,49,1) 10%, rgba(255,231,100,1) 90%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #f1f1f1;
}
.credit_col_slider_wrap input[type="range"]::-moz-range-thumb {
    background: linear-gradient(212deg, rgba(238,50,49,1) 10%, rgba(255,231,100,1) 90%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #f1f1f1;
}
.apply_block {
    width: 100%;
    height: 769px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 56px;
    position: relative;
}
.apply_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(30.56% 76.04% at 73.82% -71.1%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
    opacity: 0.9;
    pointer-events: none;
    user-select: none;
}
.apply_block .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.apply_block h2 {
    text-align: initial;
    color: white;
}

.apply_lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto 0 0 0;
}
.apply_lower_text {
    display: flex;
    gap: 8px
}
.apply_lower_text_1 {
    font-weight: 400;
    font-size: 36px;
    line-height: 28px;
    color: white;
    padding-top: 3px;
}
.apply_lower_text_2 {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: white;
    width: fit-content;
    text-align: right;
}

.apply_wrap {
    position: relative;
    margin-top: 56px;
}
.apply_text {
    position: absolute;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    color: white;
    max-width: 210px;
    transform: translateX(-50%);
}
.ap_1 {
    top: 320px;
    left: 18%;
}
.ap_2 {
    top: 40px;
    left: 39.5%;
}
.ap_3 {
    top: 320px;
    left: 60.5%;
}
.ap_4 {
    top: 40px;
    left: 81%;
    max-width: 180px;
}
.apply_parts_img {
    display: block;
    margin: 0 auto;
    height: 411px;
}




.hb_label_wrap {
    display: flex;
    align-items: center;
    margin-left: auto;
}
label.hb_label {
    display: flex;
    flex-direction: column;
    width: 23px;
    cursor: pointer;
    margin-bottom: 0;
}
label.hb_label span {
    background: black;
    border-radius: 15px;
    height: 2px;
    margin: 3px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.hb_label span:nth-of-type(1) {
    width: 100%;
}
.hb_label span:nth-of-type(2) {
    width: 100%;
}
.hb_label span:nth-of-type(3) {
    width: 100%;
}
.hb_label input[type="checkbox"] {
    display: none;
}
.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(1) {
    width: 50%;
    transform-origin: bottom;
    transform: rotatez(45deg) translate(3px, 1px);
}
.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(2) {
    width: 100%;
    transform-origin: top;
    transform: rotatez(-45deg);
}
.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(9px, -5px) rotatez(45deg);
}
.header_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 284px;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 20000;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: ease-in-out 0.2s;
    overflow: hidden;
    overflow-y: auto;
}
.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-right {
    0% {
      right: -1500px;
      opacity: 0;
    }
    100% {
      right: 0px;
      opacity: 1;
    }
}
@keyframes slide-in-right {
    0% {
      right: -1500px;
      opacity: 0;
    }
    100% {
      right: 0;
      opacity: 1;
    }
}
.slide-out-right {
    -webkit-animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-out-right {
    0% {
      right: 0px;
      opacity: 1;
    }
    100% {
      right: -1500px;
      opacity: 0;
    }
}
@keyframes slide-out-right {
    0% {
      right: 0;
      opacity: 1;
    }
    100% {
      right: -1500px;
      opacity: 0;
    }
}
@media (min-width: 1300px) {
    #site-navigation {
      display: none;
    }
}
#site-navigation {
    opacity: 0;
}
nav.main-navigation.header_menu.hidden {
    z-index: 2;
    display: none;
}
@media (min-width: 1301px) {
    .hb_label_wrap {
      display: none;
    }
}
@media (max-width: 1300px) {
    .header_inside > .header_navigation,
    .header_inside > .header_language_switch,
    .header_inside > .header_link_btn {
      display: none;
    }
}

.header_menu .header_link_btn {
    margin: auto auto 0 auto;
}
.header_menu .header_language_switch {
    margin: 0 auto;
    font-size: 17px;
}
.header_menu .mobile_header_navigation_wrapper {
    margin: auto 0 auto 0;
    padding: 0 0 36px 0;
}
.mobile_header_navigation_wrapper ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 36px;
}
.mobile_header_navigation_wrapper ul li a {
    line-height: 19px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-align: center;
}


.page-404 {
    padding: 200px 0 70px 0;
    min-height: calc(100vh - 200px);
    background: white;
}

.error-404-title, .error-404-text {
    text-align: center;
}
.error-404-title {
    font-size: 21px;
    line-height: 36px;
    margin: 40px 0 12px 0;
}
.error-404-text {
    font-size: 60px;
    font-weight: 600;
    display: block;
    margin-bottom: 30px;
    color: black;
}
a.error-404-btn {
    background: var(--color-1);
    height: 46px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    font-size: 18px;
    color: white;
    transition: ease-in-out 0.18s;
    margin: 0 auto 90px auto;
    text-decoration: none;
}
.error-404-btn:hover {
    background: var(--color-1-hover);
}




.home_points_wrap {
    display: flex;
    flex-direction: column;
    gap: 33px;
    margin: 30px 0 10px 0;
}
.home_points_box {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 330px;
}
.home_points_box img {
    display: block;
}
.home_points_box p {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--color-1);
}

.home_steps_block {
    height: 789px;
    position: relative;
    margin: 8px 0 0 0;
    display: flex;
    align-items: center;
}
.steps_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}
.home_steps_block::before {
    content: '';
    background: black;
    opacity: 0.45;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    transition: ease-in-out 0.25s;
}
.home_steps_block::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: transparent linear-gradient(80deg, #EE3231 0%, #F5C938 100%) 0% 0% no-repeat padding-box;
    pointer-events: none;
    user-select: none;
}

.home_steps_block .container {
    position: relative;
    z-index: 10;
}
.steps_text_1 {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #EEA231;
    margin: 0;
}
.steps_line {
    width: 233px;
    height: 6px;
    background: white;
    margin: 40px 0 44px 0;
    border-radius: 5px;
    pointer-events: none;
}
.steps_text_2 {
    font-weight: 700;
    font-size: 70px;
    line-height: 80px;
    color: white;
    margin: 0 0 38px 0;
    max-width: 432px;
}
.steps_text_2 span {
    color: #EEA231;
}

.steps_figure {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 53%;
    pointer-events: none;
    user-select: none;
    opacity: 0.41;
    z-index: 1;
    object-position: bottom;
    object-fit: initial;
}
.steps_info {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.steps_info_img {
    width: 730px;
    height: 460px;
    max-width: initial;
}
.steps_info_1,
.steps_info_2,
.steps_info_3 {
    position: absolute;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-1);
    width: 100%;
    max-width: 122px;
    text-align: center;
    margin: 0;
    transform: translateX(-50%)translateY(-50%);
}
.steps_info_1 {
    top: 162px;
    left: 126px;
}
.steps_info_2 {
    top: 373px;
    left: 335px;
}
.steps_info_3 {
    top: 160px;
    left: 542px;
}


.steps_icon_1,
.steps_icon_2,
.steps_icon_3 {
    display: block;
    position: absolute;
    transform: translateX(-50%)translateY(-50%);
}
.steps_icon_1 {
    top: 102px;
    left: 126px;
}
.steps_icon_2 {
    top: 314px;
    left: 335px;
}
.steps_icon_3 {
    top: 97px;
    left: 542px;
}




.finance_block {
    height: auto;
    background: transparent linear-gradient(18deg, #EE3231 0%, #FFE764 100%) 0% 0% no-repeat padding-box;
    position: relative;
    overflow: hidden;
    padding: 0 0 80px 0;
}
.finance_block .finance_bg {
    position: absolute;
    top: 0;
    right: -30px;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}
@media (max-width: 1200px) {
    .finance_block .finance_bg {
        right: -535px;
    }
}
.finance_block .container {
    display: flex;
    justify-content: space-between;
    padding: 143px 0 0 0;
}
.finance_left {
    width: 100%;
    max-width: 525px;
    padding-top: 100px;
}
.finance_right {
    width: 100%;
    max-width: 496px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 7px 20px #00000012;
    background: url(../../images/finance_form_bg.svg);
    background-repeat: no-repeat;
    background-size: 102%;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}
@media (max-width: 768px) {
    .finance_right {
        background: url(../../images/finance_form_bg_mobile.svg);
        background-repeat: no-repeat;
        background-size: 102%;
        background-position: top center;
    }
}
.finance_text_1 {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: white;
    margin: 0;
}
.finance_text_2 {
    font-weight: 700;
    font-size: 70px;
    line-height: 80px;
    color: white;
    margin: 0;
}
.finance_text_3 {
    font-weight: 500;
    font-size: 40px;
    line-height: 49px;
    color: white;
    margin: 24px 0 0 0;
}


.finance_switch {
    display: flex;
    border-radius: 60px 60px 0 0;
    overflow: hidden;
    max-width: 508px;
    width: 100%;
}
.finance_switch > button {
    width: 100%;
    background: rgba(255, 255, 255, 0.34);
    padding: 17px 0 13px 0;
    text-align: center;
    cursor: pointer;
    transition: ease-in-out 0.25s;
    user-select: none;
    -webkit-appearance: initial;
    appearance: initial;
    border: none;
    border-radius: 0;

    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    color: white;
}
.finance_switch > button:focus {
    text-decoration: underline;
    outline: none;
}
.finance_switch .finance_person_active {
    background: #F8F8F8;
    color: #B56E03;
}


.credit_field_main {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 14px 19px;
    margin: 42px 0 22px 0;
}


.credit_col_field,
.fin_field {
    position: relative;
}
.select2-container--default .select2-selection,
.credit_col_field input,
.fin_field input {
    display: block;
    border: 1px solid rgba(47, 57, 103, 0.34);
    border-radius: 8px;
    width: 100%;
    height: 64px;
    padding: 10px 40px;
    transition: ease-in-out 0.25s;

    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    color: #2F3967;
}
.credit_col_field input:focus,
.fin_field input:focus,
.credit_col_field textarea:focus,
.fin_field textarea:focus {
    outline: 1px solid rgba(47, 57, 103, 0.34);
}
.credit_col_field input:focus~label,
.fin_field input:focus~label,
.credit_col_field textarea:focus~label,
.fin_field textarea:focus~label {
    font-weight: 700;
}
.fin_field .iti.error~label.top-label,
.fin_field input.error~label.top-label,
.credit_col_field .iti.error~label.top-label,
.credit_col_field input.error~label.top-label {
    display: none;
}
.credit_col_field label,
.fin_field label:not(.custom_checkbox) {
    position: absolute;
    top: 0;
    left: 22px;
    background: white;
    padding: 2px 30px;
    transform: translateY(-50%);
    border-radius: 6px;
    transition: ease-in-out 0.25s;

    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    margin: 0;
    color: var(--color-1);
}
.fin_field label.error {
    z-index: 1;
    color: var(--color-2) !important;
}
.credit_col_field textarea,
.fin_field textarea {
    display: block;
    border: 1px solid rgba(47, 57, 103, 0.34);
    border-radius: 8px;
    width: 100%;
    height: 145px;
    min-height: 64px;
    max-height: 500px;
    padding: 24px 40px 14px 40px;
    transition: border ease-in-out 0.25s;
    resize: vertical;

    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    color: #2F3967;
}
.credit_col_field input.error,
.fin_field input.error,
.credit_col_field textarea.error,
.fin_field textarea.error,
.credit_col_field input.input_error,
.fin_field input.input_error,
.credit_col_field textarea.input_error,
.fin_field textarea.input_error {
    border-color: var(--color-2) !important;
    border-width: 2px;
}
.credit_col_field input.input_error:focus,
.fin_field input.input_error:focus,
.credit_col_field textarea.input_error:focus,
.fin_field textarea.input_error:focus {
    outline-color: var(--color-2) !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    top: 50%;
    right: 1rem;
    transform: translate(0, -50%);
}
.select2-container.select2-container--open .select2-selection--single .select2-selection__rendered {
    display: none;
}

.select2-dropdown {
    border: 1px solid rgba(47, 57, 103, 0.34);
}



.fin_field.fin_field_file {
    background: rgb(224 224 224 / 34%);
    border: initial;
    border-radius: 32px;
    width: 100%;
    min-height: 64px;
    padding: 10px 53px;
    display: flex;
    align-items: center;

    font-weight: 600;
    font-size: 15px;
    line-height: 1.2em;
    color: #fff;
    cursor: pointer;
}
.fin_field.fin_field_file:hover {
    background: rgb(224 224 224 / 50%);
}
.fin_field.fin_field_file img {
    margin-left: auto;
    filter: brightness(0) invert(1);
}
.fin_field_file input[type="file"] {
    opacity: 0;
    height: 0;
    width: 0;
    padding: 0;
}



.credit_col_field_text {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-1);
    margin: 0;
    z-index: 10;
}

#credit_apply {
    width: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    font-size: 18px;
}
.finance_hand {
    display: block;
    position: absolute;
    left: -319px;
    bottom: -364px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}


.history_block {
    height: 912px;
    position: relative;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background: linear-gradient(28deg, #EE3231 23%, #FFE764 121%);
}
/* .history_block::before {
    content: '';
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */
.history_content {
    position: relative;
    z-index: 10;
    max-width: 750px;
}
.history_content h6 {
    font-weight: 700;
    font-size: 70px;
    line-height: 80px;
    color: white;
    margin: 0 0 38px 0;
}
.history_content h6 span {
    color: var(--color-2);
}
.history_content p {
    font-weight: 500;
    font-size: 40px;
    line-height: 49px;
    color: white;
    margin: 0 0 38px 0;
}



.footer_wrapper {
    padding: 12px 0 10px 0;
    background: #242424;
    height: 300px;
    display: flex;
    align-items: center;
}
.footer_wrapper .container{
    max-width: 1500px;
    width: calc(100% - 80px);
}
@media (max-width: 768px) {
    .footer_wrapper .container {
        width: calc(100% - 60px);
    }
}
.footer_upper {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
}
.footer_logo img {
    display: block;
    width: 220px;
}
.footer_navigation_wrapper ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
}
.footer_navigation_wrapper ul li {
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    color: white;
    transition: ease-in-out 0.2s;
    text-align: center;
}
.footer_navigation_wrapper ul li:hover {
    text-decoration: underline;
}

.footer_left {
    display: flex;
    gap: 100px;
}
.footer_left > div {
    max-width: 200px;
}
.footer_lower p {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: var(--color-1);
    margin: 0 0 20px 0;
}
.footer_lower .footer_info_value {
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: #EEA231;
}
.footer_lower .footer_info_label {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer_right {
    width: auto;
    flex-shrink: 0;
}
.footer_right_upper {
    text-align: right;
    margin-bottom: 36px;
}
.footer_right_lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_lower .footer_copyright {
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer_middle {
    display: flex;
    align-items: center;
    gap: 5px 24px;
}
.footer_middle p {
    font-weight: 600;
    font-size: 12px;
    color: white;
}



@media (min-width: 768px) {
    .steps_info_mobile_img {
        display: none;
    }
}
@media (max-width: 768px) {
    .steps_info_img {
        display: none;
    }
}


.default_page {
    min-height: calc(100vh - 160px);
    padding: 180px 0 70px 0;
}
.default_page h2 {
    text-align: left;
    margin: 20px 0 30px 0;
}
.default_page p {
    font-size: 18px;
    line-height: 1.3em;
    margin: 0 0 0.4em 0;
}
.default_page ul {
    list-style: initial;
    padding: 0 0 0 30px;
    margin: 14px 0;
    font-size: 18px;
    line-height: 1.3em;
}
@media (max-width: 768px) {
    .default_page h2 {
        margin: 14px 0 22px 0;
    }
    .default_page p {
        font-size: 16px;
        margin-bottom: 1.3rem;
    }
    .default_page ul {
        padding-left: 24px;
        font-size: 16px;
    }
}




.application_wrapper {
    display: flex;
    height: 100%;
    flex-direction: column;
}
.application_left {
    background: transparent linear-gradient(18deg, #EE3231 0%, #FFE764 170%) 0% 0% no-repeat padding-box;
    width: 100%;
    height: auto;
    min-height: inherit;
    padding: 72px 150px 78px 150px;
    display: flex;
    flex-direction: column;
}
.application_right {
    width: 100%;
    padding: 40px 120px 40px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.application_title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.1em;
    color: white;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}
.application_line {
    width: 100%;
    max-width: 223px;
    height: 6px;
    background: white;
    border-radius: 5px;
    margin: 30px auto 35px auto;
}

.application_spacer {
    height: calc(100vh - 51.1rem);
}

.bank_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 11px;
    margin: 0 0 40px 0;
    justify-content: center;
    min-height: 7.9rem;
}
.bank_box {
    width: 127px;
    height: 127px;
    display: block;
}
.bank_box img {
    display: block;
}

.application_logo {
    width: 100%;
    max-width: 280px;
    position: absolute;
    top: 66px;
    left: 56px;
}


.form_title {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.1em;
    color: var(--color-1);
    margin: 0;
    position: relative;
    text-align: center;
}
.form_title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 22rem;
    height: 4px;
    background: var(--color-2);
    border-radius: 5px;
    transform: translateX(-50%);
}


.input-section,
.fin_form_wrap {
    margin: 72px auto 0 auto;
    max-width: 1000px;
    width: 100%;
}
.input-section {
    margin: 0;
}
.fin_form_main,
.fin_form_middle{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px 30px;
}
.fin_form_lower {
    position: relative;
    display: grid;
    gap: 13px;
    overflow: hidden;
    padding: 13px 0;
}
.fin_form_middle {
    margin: 30px 0;
}
a.application_small_logo_wrap {
    display: none;
}

a.application_small_logo_wrap .application_logo {
    max-width: 5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.input-file label {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2em;
    padding: 0 22px;
    text-align: center;
}


@media (max-width: 500px) {
    .fin_form_main,
    .fin_form_middle,
    .fin_form_lower {
        display: flex;
        flex-direction: column;
    }

    .fin_form_wrap {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    a.application_logo_wrap {
        order: 10;
        margin-top: 2rem;
    }

    a.application_small_logo_wrap {
        display: block;
        margin-bottom: 1rem;
    }

    .application_logo {
        position: initial;
        max-width: 173px;
    }

    .form_title + .fin_form_wrap {
        margin-top: 5rem;
    }

    .page-template-page-application-success .application_logo {
        display: none;
    }

    .input-file label {
        font-size: 14px;
    }

}

.radio-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.radio-horizontal .radio {
    margin-right: 2rem;
}
.radio-horizontal p {
    width: 100%;
}
.radio-steps {
    justify-content: center;
}
.has-file .radio-steps {
    display: none;
}
.radio-steps input:checked + label {
    display: none;
}
.radio-steps .radio {
    margin: 0;
}
.radio input {
    display: none !important;
}


.custom_checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2em;
    color: var(--color-1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom_checkbox p {
    margin: 0;
}
.custom_checkbox.input_error .checkmark {
    border-color: red;
    border-width: 2px;
}

.custom_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 53%;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid var(--color-1);
    transition: ease-in-out 0.25s;
    transform: translateY(-50%);
}
.custom_checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
.custom_checkbox input:checked ~ .checkmark {
    background-color: #fff;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom_checkbox input:checked ~ .checkmark:after {
    display: block;
}
.custom_checkbox .checkmark:after {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #EE3231;
}
.custom_checkbox input.error:not(:checked) ~ .checkmark::after {
    content: '!';
    height: 25px;
    width: 23px;
    position: absolute;
    text-align: center;
    font-weight: 700;
    color: var(--color-2);
    top: 50%;
    transform: translate(0, -50%);
    background: transparent;
    background-image: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    padding: 0;
    border: 0;
}

.custom_checkbox input.error ~ .checkmark {
    border-color: var(--color-2);
}

.custom_checkbox label.error {
    left: -2.1rem;
    width: 11rem;
    top: -1.2rem;
    color: var(--color-2);
}

.radio-horizontal p,
.fin_form_lower p {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2em;
    color: var(--color-1);
    margin: 0;
}
.fin_lower_select_wrap {
    padding-left: 24px;
}

.fin_select_field {
    display: flex;
    gap: 18px 30px;
    flex-wrap: wrap;
    align-items: center;
    margin: 15px 0 0 0;
}

#fin_apply {
    width: fit-content;
    height: fit-content;
    margin: 0 0 0 auto;
    padding-left: 57px;
    padding-right: 86px;
}

.fin_field_gender {
    border: 1px solid rgba(47, 57, 103, 0.34);
    border-radius: 32px;
    width: 100%;
    height: auto;
    padding: 22px 53px;
    transition: ease-in-out 0.25s;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    color: #2F3967;
}
.fin_field_gender .fin_select_field {
    margin: 0;
    height: 100%;
}

.fin_field_gender .custom_checkbox input.error ~ .checkmark {
    border: 1px solid var(--color-1);
}

.fin_field_gender .custom_checkbox input.error:not(:checked) ~ .checkmark::after {
    display: none;
}




.header_language_switch .wpml-ls-legacy-dropdown-click {
    width: auto;
}
.header_language_switch .wpml-ls-legacy-dropdown-click a {
    border: initial;
    padding: 6px 6px 6px 20px;
    transition: ease-in-out 0.25s;
}
.header_language_switch .wpml-ls-legacy-dropdown-click a .wpml-ls-native {
    display: none;
}
.header_language_switch .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
    content: initial;
}
.header_language_switch {
    margin: 0 0 0 auto;
    position: relative;
}
.header_language_switch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url(../../images/icons/chevron-left-solid.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: invert(17%) sepia(67%) saturate(659%) hue-rotate(193deg) brightness(97%) contrast(86%);
    z-index: 100;
    pointer-events: none;
}
.header_language_switch .wpml-ls-legacy-dropdown-click .wpml-ls-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.header_language_switch .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    width: auto;
    right: 0;
    left: initial;
    border-radius: 8px;
    overflow: hidden;
}
.header_language_switch .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-direction: row-reverse;
    background: #efefef;
    padding: 6px;
}
.header_language_switch .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-1);
}

.header_language_switch .wpml-ls-legacy-dropdown-click a:hover {
    background: initial;
}
.header_language_switch .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a:hover {
    background: #dddddd;
}
.header_language_switch .js-wpml-ls-item-toggle.wpml-ls-item-toggle {
    background: white !important;
}


.application_success .fin_form_lower {
    margin: 20px 0;
}
.application_success .fin_lower_select_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.application_success .btn_1 {
    margin: 0 auto;
    margin-top: 1rem;
}




.contact_block {
    padding: 110px 0 20px 0;
}
.contact_block .container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.contact_left {
    width: 100%;
    max-width: 469px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background: #242424;
    padding: 53px 30px 46px 53px;
    position: absolute;
    top: 55px;
}

.contact_right {
    width: 100%;
    height: fit-content;
    max-width: 1260px;
    box-shadow: 0px 10px 30px #0000001A;
    border-radius: 20px;
    background: white;
    padding: 79px 62px 68px 308px;
    margin: 0 0 0 auto;
}
@media (min-width: 1000px) {
    .contact_right {
        min-height: 700px;
    }
}

.contact_left h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1em;
    color: #fff;
    margin: 0;
    max-width: 240px;
    text-align: left;
}
.contact_line {
    width: 100%;
    max-width: 223px;
    height: 6px;
    border-radius: 5px;
    margin: 47px 0 52px 0;
    background: #000000;
}

.contact_box_wrap {
    display: flex;
    gap: 42px 80px;
    flex-wrap: wrap;
}
.contact_box {
    width: fit-content;
}
.contact_label {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1em;
    color: #000000;
    margin: 0 0 16px 0;
}
.contact_value {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1em;
    color: #EEA231;
    margin: 0;
}


.contact_social_wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.contact_social_wrap a, .contact_social_wrap img {
    display: block;
}
.contact_social_wrap img {
    width: 25px;
    height: 25px;
}

.contact_box_work_time {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 14px
}
.contact_box_work_time .contact_label {
    width: 100%;
}
.contact_box_work_time p:not(.contact_label) {
    font-weight: 500;
    font-size: 18px;
    color: #000000;
}

.contact_form_title {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.1em;
    color: #000000;
    text-align: center;
    margin: 0 auto;
    text-align: left;
}
.contact_form_title span {
    font-weight: 600;
    font-size: 18px;
}

.contact_form_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 27px 0 16px 0;
}


#contact_send {
    margin: 0 0 0 auto;
    display: block;
    padding-left: 54px;
    padding-right: 88px;
}
#contact_send::before {
    width: 24px;
    height: 24px;
    right: 51px;
}

.form_success_message p {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.1em;
    color: var(--color-1);
}



.application_alert {
    text-align: center;
    margin: 0 auto 50px auto;
    max-width: 800px;
}
.application_alert p  {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1em;
    color: white;
}


.application_step,
.application_subtitle,
.application_return {
    margin: auto 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    font-weight: 700;
    font-size: 20px;
    line-height: 1.1em;
    color: white;
}
.application_return:hover {
    text-decoration: underline;
}

.application_subtitle::after,
.application_subtitle::before {
    content: '';
    width: 50%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    display: block;
}

.application_subtitle::before {
    left: -30px;
}

.application_subtitle::after {
    right: -30px;
}

label.application_step {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1em;
    color: white;
    cursor: pointer;
}

.finance_right .credit_col_field input {
    height: 40px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 10px;
    border: initial;
    padding: 10px 17px;
}
.finance_right .credit_col_field input::placeholder {
    color: #2F3967;
    opacity: 0.65;
}
.finance_right .credit_col_field label {
    font-size: 10px;
    line-height: 13px;
    padding: 2px 16px;
}
.finance_right .credit_col_field label.error {
    color: red;
    right: 0;
    left: auto;
    top: 0.6rem;
}
.finance_right .custom_checkbox {
    font-size: 12px;
    font-weight: 400;
    color: black;
}
.finance_right .checkmark {
    border: initial;
}

.credit_double_col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}


.credit_col_line {
    width: 100%;
    max-width: 177px;
    height: 4px;
    background: #EE3231;
    border-radius: 5px;
    margin-right: auto;
}


.custom_checkbox a {
    text-decoration: underline;
}

.credit_col_upper_part {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 33px 37px 0 37px;
    position: relative;
}
.credit_col_u1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    color: #FFFFFF;
    margin: 0;
}

.credit_upper_box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.credit_upper_box img {
    width: 20px;
    height: 20px;
    display: block;
    filter: invert(1);
}
.credit_upper_box p {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2em;
    color: white;
    margin: 0;
}

.history_bg_figure {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .checkbox_reversed {
        padding-left: 0;
        padding-right: 35px;
    }
    .checkbox_reversed .checkmark {
        left: initial;
        right: 0;
    }
}

.history_block .btn_1.btn_icon_lines {
    background: white;
    color: #EE3231;
}
.history_block .btn_1.btn_icon_lines::before {
    filter: invert(1) invert(38%) sepia(61%) saturate(6965%) hue-rotate(345deg) brightness(96%) contrast(93%);
}

.header_link_btn {
    opacity: 0;
}
.header_wrapper.scrolled .header_link_btn {
    opacity: 1;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: transparent;
}

.success-message, .error-message {
	 display: none;
	 width: 100%;
}
 .success-message p:last-child, .error-message p:last-child {
	 margin-bottom: 0;
}
 .section-error, .error-message {
	 display: flex;
	 align-items: center;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 background-color: #fff;
	 color: #000;
	 border: 0;
	 padding: 2.4rem;
	 transition: all 0.5s ease-in-out;
	 bottom: 0;
     z-index: 20;
}
 .section-error.hide, .error-message.hide {
	 bottom: -100%;
}
 .section-error::before, .error-message::before {
	 content: '';
	 width: 6rem;
	 height: 6rem;
	 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E");
	 background-position: center;
	 background-repeat: no-repeat;
	 background-size: contain;
	 margin-right: 2rem;
}

.file-drop-area {
    width: 100%;
    height: auto;
    padding: 1rem;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-wrap: wrap;
}
.file-drop-area .dz-message {
    display: flex;
    width: 100%;
    align-items: center;
}
.file-drop-area .dz-message > span:last-child {
    margin-left: auto;
    display: inline-block;
}
.file-drop-area.dz-started .dz-message {
    display: none;
}
.file-drop-area .dz-preview {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
}
.file-drop-area .dz-preview:last-child {
    margin-bottom: 0;
}
.file-drop-area .dz-preview.dz-error .dz-details {
    display: none;
}
.file-drop-area .dz-preview .dz-success-mark, .file-drop-area .dz-preview .dz-error-mark, .file-drop-area .dz-preview .dz-progress, .file-drop-area .dz-preview .dz-image, .file-drop-area .dz-preview .dz-size {
    display: none;
}
.file-drop-area .dz-preview .dz-remove {
    padding: 0.5rem 1rem;
    border: 2px solid #fff;
    border-radius: 0.8rem;
    display: inline-block;
    margin-left: auto;
    white-space: nowrap;
}
.file-drop-area .dz-preview .dz-filename {
    line-break: anywhere;
}
.has-file .input-file {
    display: flex !important;
}
.input-file {
    padding: 26px 0;
    margin: 26px 0;
    color: #fff;
}
.iti {
    display: block;
}
.iti__selected-flag {
    padding-left: 53px;
}
.credit_col_field .iti__selected-flag {
    padding-left: 30px;
}

.cform_lower {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 17px;
}


.partner_block {
    padding: 60px 0 75px 0;
}
.partner_upper_row {
    display: flex;
    margin: 0 0 50px 0;
}
.partner_upper_row p {
    font-weight: 700;
    font-size: 18px;
    color: black;
    margin: 0;
}
#partner_wrap {
    display: flex;
    --f-carousel-slide-width: calc(100% / 8);
    --f-carousel-slide-padding: 0;
}
@media (max-width: 1200px) {
    #partner_wrap { --f-carousel-slide-width: calc(100% / 6); }
}
@media (max-width: 800px) {
    #partner_wrap { --f-carousel-slide-width: calc(100% / 4); }
}
@media (max-width: 600px) {
    #partner_wrap { --f-carousel-slide-width: calc(100% / 3); }
}
@media (max-width: 400px) {
    #partner_wrap { --f-carousel-slide-width: calc(100% / 2); }
}
#partner_wrap .f-carousel__dots { display: none; }
.partner_box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px !important;
}
.partner_box img {
    display: block;
}

#partner_wrap .f-button.is-next {
    position: absolute;
    top: -67px;
    left: 230px;
    right: initial;
    transform: translateY(-50%) rotate(180deg);
}
#partner_wrap .f-button.is-prev {
    position: absolute;
    top: -65px;
    left: 190px;
    right: initial;
}
#partner_wrap .f-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: black;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}
#partner_wrap .f-button:hover svg {
    stroke: #ee3231;
}



.lottery-btn {
    position: fixed;
    bottom: 80px;
    right: 170px;
    z-index: 10;
    cursor: pointer;
    display: none;
    align-items: flex-start;
}
.lottery-btn img {
    filter: drop-shadow(0px 11px 20px #00000021);
}
.hide-elem {
    display: none !important;
}
section.lottery-section {
    max-height: 100vh;
    overflow: hidden;

    position: fixed;
    z-index: 100001;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px)brightness(0.56);
    -webkit-backdrop-filter: blur(12px)brightness(0.56);
    background: rgb(2 26 64 / 27%);
}
section.lottery-section .lottery-banner {
    display: flex;
    position: relative;
    padding: 38px 50px 43px 50px;
    min-height: 607px;
    height: auto;
    width: 100%;
    max-width: 952px;
    background-color: white;
    background-position: 150px 0;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 20px 30px #0000001A;
    border-radius: 20px;
}
section.lottery-section .lottery-banner .thankyou-box {
    display: none;
    font-size: 30px;
    padding: 15px;
    text-align: center;
    max-width: 470px;
    width: 100%;
}
.lottery_title {
    font-weight: 800;
    font-size: 40px;
    line-height: 1.25em;
    color: #000000;
    margin: 0 0 20px 0;
}
.lottery_title span {
    color: #EE3231
}
.lottery_text p {
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin: 0 0 18px 0;
}

.lottery-section .form-info-block {
    max-width: 350px;
}

section.lottery-section input:not([type="checkbox"]) {
    width: 100%;
    height: 52px;
    border: 0.5px solid #6A6A6A98;
    border-radius: 8px;
    background: white;
    margin: 0 0 9px 0;

    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    color: black;
    padding: 16px 20px;
}
section.lottery-section input:not([type="checkbox"]).error {
    outline: 2px solid red;
}
section.lottery-section .iti__selected-flag {
    padding-left: 20px;
}
section.lottery-section #phone_lotery {
    padding-left: 100px !important;
}
section.lotter-section .custom_checkbox {
    line-height: 1.1em;
}

.lottery-checkboxes {
    margin: 22px 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.lottery-checkboxes label span,
.lottery-checkboxes label a {
    font-size: 12px;
    color: #000000;
}
.lottery-checkboxes label a {
    text-decoration: underline;
}

section.lottery-section .btn.golden {
    width: 100%;
    height: 52px;
    background: transparent linear-gradient(152deg, #EE3231 0%, #FFE764 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 11px 20px #00000040;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: ease-in-out 0.2s;
}
section.lottery-section .btn.golden:hover {
    box-shadow: -6px 2px 5px #00000040;
}





section.lottery-section .lottery-banner .wheel-wrap {
    position: absolute;
    left: 70px;
    top: 74%;
    transform: translate(0, -50%);
    display: block;
    width: 100%;
    transition: left 1s ease-in-out;
    width: 615px;
    height: 615px
}

section.lottery-section .lottery-banner .wheel-box {
    width: 100%;
    position: relative;
}
section.lottery-section .lottery-banner .wheel-box .wheel-inner-box {
    position: relative;
    z-index: 1;
    width: 100%;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
section.lottery-section .lottery-banner .wheel-box .wheel-inner-box .wheel {
    width: 529px;
    height: 529px;
    margin: auto;
    padding-top: 100%;
    display: block;
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
section.lottery-section .lottery-banner .wheel-box .wheel-inner-box .wheel.spin {
    animation: WHEEL-SPIN linear 2s;
}
section.lottery-section .lottery-banner .wheel-box .wheel-pointer {
    transform: translate(0, -50%) scale(1.4);
    top: 50%;
}
section.lottery-section .lottery-banner .wheel-box .wheel-pointer {
    width: 29px;
    height: 99px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 9;
    left: 50%;
    top: -30px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
section.lottery-section .lottery-banner .wheel-box .next-wheel-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 17.6rem;
    position: absolute;
    bottom: -2.1rem;
    right: -1.9rem;
}

section.lottery-section .lottery-banner .wheel-box .wheel-bg {
    width: 100%;
    padding-top: 100%;
    display: block;
    position: absolute;
    top: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
section.lottery-section .lottery-banner .wheel-box .logo {
    display: none;
}

section.lottery-section .error-msg {
    font-weight: 600;
    color: black;
    font-size: 16px;
}


@-webkit-keyframes WHEEL-SPIN {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    10% {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
    }
    25% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
    }
    50% {
      -webkit-transform: rotate(540deg);
      -moz-transform: rotate(540deg);
      -ms-transform: rotate(540deg);
      -o-transform: rotate(540deg);
    }
    75% {
      -webkit-transform: rotate(690deg);
      -moz-transform: rotate(690deg);
      -ms-transform: rotate(690deg);
      -o-transform: rotate(690deg);
    }
    100% {
      -webkit-transform: rotate(720deg);
      -moz-transform: rotate(720deg);
      -ms-transform: rotate(720deg);
      -o-transform: rotate(720deg);
    }
}
@-moz-keyframes WHEEL-SPIN {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    10% {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
    }
    25% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
    }
    50% {
      -webkit-transform: rotate(540deg);
      -moz-transform: rotate(540deg);
      -ms-transform: rotate(540deg);
      -o-transform: rotate(540deg);
    }
    75% {
      -webkit-transform: rotate(690deg);
      -moz-transform: rotate(690deg);
      -ms-transform: rotate(690deg);
      -o-transform: rotate(690deg);
    }
    100% {
      -webkit-transform: rotate(720deg);
      -moz-transform: rotate(720deg);
      -ms-transform: rotate(720deg);
      -o-transform: rotate(720deg);
    }
}
@-o-keyframes WHEEL-SPIN {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    10% {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
    }
    25% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
    }
    50% {
      -webkit-transform: rotate(540deg);
      -moz-transform: rotate(540deg);
      -ms-transform: rotate(540deg);
      -o-transform: rotate(540deg);
    }
    75% {
      -webkit-transform: rotate(690deg);
      -moz-transform: rotate(690deg);
      -ms-transform: rotate(690deg);
      -o-transform: rotate(690deg);
    }
    100% {
      -webkit-transform: rotate(720deg);
      -moz-transform: rotate(720deg);
      -ms-transform: rotate(720deg);
      -o-transform: rotate(720deg);
    }
}
@keyframes WHEEL-SPIN {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    10% {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
    }
    25% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
    }
    50% {
      -webkit-transform: rotate(540deg);
      -moz-transform: rotate(540deg);
      -ms-transform: rotate(540deg);
      -o-transform: rotate(540deg);
    }
    75% {
      -webkit-transform: rotate(690deg);
      -moz-transform: rotate(690deg);
      -ms-transform: rotate(690deg);
      -o-transform: rotate(690deg);
    }
    100% {
      -webkit-transform: rotate(720deg);
      -moz-transform: rotate(720deg);
      -ms-transform: rotate(720deg);
      -o-transform: rotate(720deg);
    }
}

@media (max-width: 1200px) {
    section.lottery-section .lottery-banner { flex-direction: column;}
    section.lottery-section .lottery-banner .wheel-wrap {
        width: 280px;
        height: 280px;
        left: initial;
        top: initial;
        transform: initial;
        margin-top: 30px;
    }
    .wheel-box {
        height: 290px;
        display: flex;
        justify-content: center;
        flex-shrink: 0;
    }
    section.lottery-section .lottery-banner .wheel-box .wheel-inner-box .wheel {
        width: 234px;
        height: 234px;
    }
    section.lottery-section .lottery-banner .wheel-box .wheel-pointer {
        width: 16px;
        height: 52px;
        top: -16px;
    }
    .lottery-section .form-info-block { max-width: initial; }
    section.lottery-section .lottery-banner {
        width: 95%;
        height: 95%;
        overflow-y: scroll;
        max-width: 600px;
        padding-left: 28px;
        padding-right: 28px;
        min-height: initial;
        margin: 30px 0 20px 0;
    }
    .lottery_title {
        font-size: 22px;
        text-align: center;
    }
    .lottery_text p { text-align: center; }
    section.lottery-section input:not([type="checkbox"]) { height: 48px; }
    .lottery-btn {
        bottom: 20px;
        right: 30px;
        width: 130px;
    }
}

.lottery-section .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 40;
}
.lottery-section .close-btn img { display: block; }
@media (max-width: 768px) {
    .lottery-section .close-btn {
        right: 18px;
    }
}
@media (min-width: 1200px) {
    html[lang="ru-RU"] .lottery_title {
        width: 455px;
        font-size: 30px;
    }
}
html[lang="ru-RU"] .lottery-btn {
    bottom: 40px;
    right: 107px;
}
@media (max-width: 1200px) {
    html[lang="ru-RU"] .lottery-btn {
        bottom: 12px;
        right: 18px;
        width: 155px;
    }
}



.contact_form_lower_row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact_form_lower_row .custom_checkbox {
    max-width: 360px;
    font-weight: 400;
    font-size: 16px;
    padding-left: 43px;
}

.contact_form_lower_row .checkmark {
    height: 26px;
    width: 26px;
    border-radius: 8px;
}


.credit_block {
    padding: 158px 0 50px 0;
    height: 734px;
    background: #1D1D1D;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
@media (min-width:1200px) {
    html[lang="ru-RU"] .credit_block { padding-top: 120px; }
    .credit_block_element { top: 183px; }
}
.credit_block .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    position: relative;
}
.credit_block h6 {
    font-weight: 700;
    font-size: 70px;
    line-height: 83px;
    color: white;
    margin: 0 0 29px 0;
    max-width: 532px;
    text-align: left;
}
.credit_block p {
    font-weight: 300;
    font-size: 35px;
    line-height: 1.1em;
    color: white;
    margin: 0 0 29px 0;
    max-width: 620px;
    text-align: left;
}
.credit_block_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    pointer-events: none;
    user-select: none;
}
.credit_block_element {
    position: absolute;
    top: 160px;
    right: 63px;
    transform: translateY(-50%);
    filter: drop-shadow(-30px -10px 40px #00000029);
    pointer-events: none;
    user-select: none;
}




.car_refinance_block {
    height: 735px;
}
.car_refinance_block .container {
    height: 100%;
    display: flex;
}
.car_refinance_block .cr_left {
    background: #F9F9F9;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    padding-right: 25px;
}
.car_refinance_block .cr_left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    transform: translateX(-100%);
    width: 50vw;
    height: 100%;
    background: inherit;
    z-index: -1;
}
.car_refinance_block .cr_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (min-width: 1200px) {
    .car_refinance_block .cr_left, .car_refinance_block .cr_right {
        width: 50%;
    }
}
.car_refinance_block h6 {
    font-weight: 700;
    font-size: 70px;
    line-height: 80px;
    color: black;
    margin: 0 0 33px 0;
    max-width: 530px;
}
@media ( min-width: 768px ) {
    html:lang(ru-RU) .car_refinance_block h6 {
        font-size: 60px;
    }
}
.car_refinance_block p {
    font-weight: 300;
    font-size: 35px;
    line-height: 1.1em;
    color: black;
    margin: 0 0 33px 0;
    max-width: 660px;
}

.cr_step_wrap {
    display: flex;
    flex-direction: column;
    gap: 84px;
}
.cr_step_box {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}
.cr_step_box > div {
    width: 83px;
    height: 83px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: padding ease-in-out 0.25s;
}
.cr_step_box > div > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 27px;
    color: #797979;
    background: rgba(121, 121, 121, 0.14);
    border-radius: inherit;
    transition: ease-in-out 0.25s;
    position: relative;
}
.cr_step_box p {
    font-weight: 700;
    font-size: 27px;
    color: #797979;
    margin: 0;
}

.cr_step_box::before {
    content: '';
    position: absolute;
    left: 41px;
    bottom: -11px;
    border: 2px dashed #797979;
    border-width: 0px 3px 0 0;
    height: 64px;
    width: 2px;
    transform: translate(0, 100%);
}
.cr_step_box:last-of-type::before {
    content: initial;
}


.cr_step_box.cr_step_active > div {
    padding: 11px;
    outline: 2px solid #EE3231;
}
.cr_step_box.cr_step_active > div > div {
    background: transparent linear-gradient(228deg, #EE3231 0%, #FFE764 180%) 0% 0% no-repeat padding-box;
    color: white;
}
.cr_step_box.cr_step_active > div > div::before {
    content: '';
    width: 52px;
    height: 41px;
    background: rgb(168 25 25 / 60%);
    filter: blur(15px);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.cr_step_box.cr_step_active p { color: #000000; }
.cr_step_box.cr_step_active::before { border-color: #EE3231; }




.informative_block {
    height: 735px;
    background: #1D1D1D;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.informative_block .ib_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}
.informative_block .ib_right {
    padding-right: 190px;
}
.informative_block .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.informative_block h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2em;
    margin: 0 0 26px 0;
    max-width: 760px;
    color: white;
}
.informative_block h1 span {
    color: #EE3231;
}
.informative_block p {
    font-weight: 300;
    font-size: 35px;
    color: white;
    text-shadow: 0px 20px 20px #91000038;
    max-width: 670px;
    margin: 0 0 33px 0;
}

@media ( min-width: 768px ) {
    :lang(ru-RU) .informative_block h6 {
        font-size: 36.9px;
        line-height: 39px;
    }
}


.ib_box {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0 0 30px 0;
}
.ib_box img {
    width: 34px;
    height: 32px;
}
.ib_box h2 {
    font-weight: 500;
    font-size: 25px;
    color: white;
    margin: 0;
    text-align: left;
}
@media (min-width: 768px) {
    :lang(ru-RU) .informative_block h1 {
        font-size: 35px;
    }
    :lang(ru-RU) .informative_block p {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .informative_block h1 {
        font-size: 25px;
    }
    :lang(ru-RU) .informative_block h1 {
        font-size: 21px;
    }
    .ib_box h2 {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .hide_below_1200 { display: none; }
}
@media (min-width: 1201px) {
    .hide_above_1200 { display: none; }
}
@media (max-width: 768px) {
    .hide_below_768 { display: none; }
}


.fr_text_1 {
    font-weight: 700;
    font-size: 25px;
    margin: 0 0 6px 0;
    color: black;
}
.fr_text_2 {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    color: black;
}
.fr_text_2 span {
    color: #EE3231;
}
.fr_text_3 {
    font-weight: 500;
    font-size: 17px;
    color: black;
}
.fr_text_3:not(.fr_active) {
    display: none;
}

.fc_step_wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 18px 0;
}
.fc_step {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    transition: ease-in-out 0.25s;

    font-weight: 700;
    font-size: 14px;
    color: white;
}
.fc_step::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)translateX(100%);
    background: inherit;
    transition: inherit;
    width: 28px;
    height: 2px;
}
.fc_step:last-of-type::before {
    content: initial;
}
.fc_step.fc_step_active {
    background: #EE3231;
}

.credit_person_switch {
    display: flex;
    margin: 0 0 5px 0;
}
.credit_person_switch .nice-select {
    width: 100%;
    border-radius: 10px;
    border: initial;
    height: 40px;
    line-height: 40px;
}
.credit_person_switch .nice-select .current {
    font-weight: 500;
    font-size: 16px;
}
.credit_person_switch .nice-select-dropdown {
    width: 100%;
}


.home_finance_content {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}
.hfc_1 {
    font: normal normal normal 120px/70px Nighty DEMO;
    color: white;
    margin: 60px 0 54px 0;
}
.hfc_1 span {
    font-size: 200px;
}
.hfc_2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.25em;
    margin: 0 0 21px 0;
    color: white;
    max-width: 430px;
}
@media ( min-width: 768px ) {
    :lang(ru-RU) .hfc_2 {
        font-size: 24px;
    }
}
.ae_box {
    background: rgba(255, 204, 64, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 38px 14px 27px;
    max-width: 399px;
}
.ae_box p {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.15em;
    color: white;
    margin: 0;
}

.home_slider_figure {
    position: absolute;
    top: -95px;
    right: -610px;
}

.fc_step_img:not(.fc_img_active) {
    display: none;
}
.fc_step_img {
    display: block;
}
.fc_step_img_wrap {
    width: 166px;
    height: 166px;
    position: absolute;
    top: 64px;
    right: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
#finance_person {
    display: none;
}

.finance_right .credit_col_field .iti__selected-flag {
    padding-left: 14px;
}

html::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    -ms-pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background: rgba(0, 0, 0, 0.62);
    z-index: 10001;
    opacity: 0;
    transition: ease-in-out 0.25s;
}
html.header_open::after {
    opacity: 1;
}

.mobile_menu_upper {
    width: 100%;
    height: auto;
    padding: 122px 20px 69px 20px;
    background: transparent linear-gradient(175deg, #EE3231 0%, #FFE764 180%) 0% 0% no-repeat padding-box;
}

.mobile_menu_upper a.header_mobile_link_btn {
    font: normal normal bold 15px/19px Montserrat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    background: #FFD53C;
    color: black;
    border-radius: 8px;
}

.wpml-ls-statics-footer {
    display: none;
}
#site-navigation .wpml-ls-statics-footer {
    display: block !important;
    margin: 0;
    padding: 0;
}
#site-navigation .wpml-ls-statics-footer a {
    width: 52px;
    height: 38px;
    background: #E5E5E5;
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #797979;
}
#site-navigation .wpml-ls-statics-footer li.wpml-ls-current-language a {
    background: #EE3231;
    color: white;
}
#site-navigation .wpml-ls-statics-footer ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.mobile_menu_lower {
    padding: 63px 10px 40px 10px;
}

.mobile_menu_lower_nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 28px 0 0 0;
}
.mobile_menu_lower_nav a {
    font-weight: 700;
    font-size: 16px;
    color: #797979;
    text-align: center;
}

.header_menu_close {
    position: absolute;
    top: 35px;
    right: 30px;
    height: 30px;
    width: 30px;
    filter: invert(1);
}


.home_lower_bg {
    /* background: transparent linear-gradient(159deg, #EE3231 0%, #FFD342 100%) 0% 0% no-repeat padding-box; */
    background-image: url('../../images/contact_bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.cb_box {
    display: flex;
    gap: 24px;
    margin: 22px 0;
}
.cb_box img {
    display: block;
    width: 38px;
    height: 38px;
}
.cb_box > div {
    display: flex;
    flex-direction: column;
}
.cb_box > div p {
    font-weight: 500;
    font-size: 25px;
    line-height: 1.2em;
    color: #FFFFFF;
    margin-bottom: 6px;
}
.cb_box > div p:nth-child(1) {
    font-weight: 700;
    font-size: 14px;
    color: #EEA231;
}

.cb_line {
    width: 100%;
    height: 1px;
    max-width: 325px;
    background: #FFFFFF;
    margin: 0 0 30px 0;
}

.cb_lower_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1em;
    color: white;
    margin: 30px 0 0 0;
    max-width: 300px;
}


.contact_form_wrap .credit_col_field input,
.contact_form_wrap .credit_col_field textarea {
    border-color: transparent;
    border-width: 2px;
    background: rgba(203, 203, 203, 0.34);
    color: #797979;
    border-radius: 8px;
}

@media (min-width: 1000px) and (max-width: 1500px) {
    .contact_right {
        padding-left: 492px;
    }
}



.application_success {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 800px;
    background: rgba(0, 0, 0, 0.52);
}
.application_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    object-fit: initial;
}
.application_main_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.application_success .application_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
}
.application_success h1 {
    font-weight: 700;
    font-size: 60px;
    color: white;
    margin: 16px 0 28px 0;
    max-width: 555px;
}
.application_success hr {
    background: white;
    max-width: 490px;
    margin: 0 auto 1em 0;
}
.application_success p {
    font-size: 30px;
    max-width: 530px;
    color: white;
}
.application_phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    color: white;
    margin: 40px 0 10px 0;
}
.application_phone img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(1);
}
.application_success .application_content {
    width: calc(100% - 60px);
    max-width: 1000px;
}




.cnews_subscribe {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 467px;
    margin: 16px 0 28px 0;
}
.cnews_subscribe > p {
    font-weight: 700;
    font-size: 25px;
    margin: 0 0 16px 0;
    color: #FFFFFF;
}
.cnews_subscribe > p span {
    color: #F69F37;
}
.cnews_input_wrap {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 16px 0;
}
.cnews_input_wrap input {
    height: 41px;
    border: initial;
    outline: initial;
    background: white;
    width: 100%;
    max-width: 314px;
    border-radius: 5px;
    padding: 10px 19px;
    margin: 0;

    font-family: inherit;
    font-size: 16px;
    color: #5A5A5A;
}
.cnews_input_wrap input.error {
    outline: 2px solid red;
}
.cnews_input_wrap button {
    height: 41px;
    box-shadow: 0px 7px 15px #0000001D;
    border: initial;
    border-radius: 5px;
    display: block;
    padding: 10px 18px;
    background: linear-gradient(163deg, #EE3231 60%, #FFE764 120%);
    cursor: pointer;
    white-space: nowrap;

    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    color: white;
}
.cnews_subscribe .checkbox a {
    display: inline;
    color: white;
    text-decoration: underline;
}
.cnews_subscribe .checkbox {
    font-size: 12px;
    margin: 0;
    color: white;
    font-weight: 400;
}
.cnews_sucess p {
	color: white;
    font-weight: 500;
	margin: 12px 0 10px 0;
}
.cnews_subscribe .iti__selected-flag {
    padding-left: 8px;
}

.footer_navigation ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.footer_navigation ul li a {
    font-weight: 500;
    font-size: 15px;
    color: white;
    margin: 0;
    width: 165px;
}
.footer_col hr {
    width: 100%;
    max-width: 520px;
    background: rgb(255 255 255 / 22%);
    height: 1px;
    border: initial;
    margin: 32px 0 21px 0;
}

.fcc1 {
    display: flex;
    gap: 27px;
    color: white;
    font-size: 12px;
}

@media (max-width: 768px) {
    .cnews_subscribe {
        margin-left: auto;
        margin-right: auto;
    }
    .cnews_subscribe > p {
        font-size: 20px;
        text-align: center;
    }
    .cnews_input_wrap {
        flex-direction: column;
        gap: 70px;
        margin: 0;
    }
    .cnews_subscribe .checkbox {
        position: relative;
        top: -90px;
        margin: 0 auto;
    }
    .cnews_input_wrap button {
        text-align: center;
        width: 100%;
    }
    .footer_navigation, .footer_logo { display: none; }
    .fcc1 {
        opacity: 0.6;
        font-size: 12px;
        justify-content: center;
    }
    .footer_col {
        width: 100%;
    }
    .footer_col hr {
        position: relative;
        max-width: initial;
        left: -30px;
        width: calc(100% + 60px);
    }
    .cnews_sucess p { text-align: center; }
}


@media (min-width: 768px) {
    .footer_mobile_nav { display: none !important; }
}
.footer_mobile_nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: -55px;
}
.footer_mobile_nav a {
    font-size: 12px;
    color: white;
}
@media (max-width: 1300px) {
    .footer_logo { display: none; }
}

html[lang="ru-RU"] .cnews_subscribe > p {
    font-size: 22px;
}
html[lang="ru-RU"] .footer_navigation ul li a {
    font-size: 13px;
}


.credit_block, .informative_block {
    background-attachment: fixed;
}




.home_slider_2024_09 {
    width: 100%;
    height: 805px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 232px 0 0 0;
}
.archive .home_slider_2024_09 {
    padding: 79px 0 0 0;
}
.home_slider_2024_09 .container {
    display: flex;
    gap: 86px;
    position: relative;
}
.home_slider_2024_09 .content_side {
    width: 100%;
    max-width: 480px;
    padding: 48px 0 0 0;
}

.home_slider_2024_09 .block_text_01 {
    color: #FFDF32;
    font-size: 71px;
    line-height: 1.25em;
    font-family: "Halant", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 18px 0;
    position: relative;
    z-index: 5;
}
.home_slider_2024_09 .block_text_01 span {
    font-size: 100px;
}

.home_slider_2024_09 .block_text_02 {
    font-weight: 700;
    font-size: 32px;
    color: white;
    line-height: 1.2em;
    margin: 0 0 34px 0;
    position: relative;
    z-index: 5;
    max-width: 300px;
}
.home_slider_2024_09 ul:not([class]) li {
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin: 0 0 20px 0;
    padding: 0 0 0 38px;
    position: relative;
}
.home_slider_2024_09 ul:not([class]) li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../../images/star_white.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(92%) sepia(88%) saturate(1597%) hue-rotate(327deg) brightness(104%) contrast(100%);
}

.home_slider_2024_09 span.star {
    width: 36px;
    height: 36px;
    display: inline-block;
    background-image: url(../../images/star_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 0;
    left: 210px;
}

.home_slider_2024_09 .block_text_02::before {
    content: '';
    position: absolute;
    top: 0;
    right: -90px;
    width: 82px;
    height: 68px;
    background-image: url('../../images/arrow_2024_09.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.home_slider_2024_09_figure {
    display: block;
    position: absolute;
    width: 1331px;
    height: 1124px;
    top: -180px;
    right: -523px;
}


.sect_202409_1 {
    padding: 172px 0 140px 0;
    background: #BEE084;
}
.sect_202409_1 .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.sect_202409_1 h1 {
    width: 100%;
    max-width: 840px;

    font-weight: 700;
    font-size: 55px;
    line-height: 1.15em;
    color: #000000;
    margin: 0 0 26px 0;
}
.sect_202409_1 p {
    width: 100%;
    max-width: 610px;
    font-weight: 300;
    font-size: 25px;
    line-height: 1.2em;
    color: black;
    margin: 0 0 24px 0;
}


.sect_202409_1 ul {
    position: absolute;
    bottom: 0;
    right: -14px;

    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #FFFFFF31;
    border-radius: 23px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 36px 30px 20px 36px;
}
.sect_202409_1 ul li {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1em;
    color: white;
    margin: 0 0 16px 0;
    padding: 0 0 0 38px;
    position: relative;
}
.sect_202409_1 ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-image: url('../../images/star_white.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(92%) sepia(88%) saturate(1597%) hue-rotate(327deg) brightness(104%) contrast(100%);
}


.sect_202409_1 .block_left {
    padding: 0 0 30px 0;
}
.sect_202409_1 .block_right {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.sect_202409_1 .sect_202409_1_figure {
    width: 805px;
    height: 300px;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    right: 0;
}


.cloud_figure {
    position: absolute;
    padding: 22px 30px 18px 30px;
    background: white;
    border-radius: 52px;
    right: 190px;
    width: 100%;
    max-width: 300px;
    bottom: 350px;
}
.cloud_figure p {
    font-weight: 700;
    font-size: 20px;
    color: black;
    margin: 0 !important;
}
.cloud_figure p span {
    color: #EE3231;
}
.cloud_figure::before {
    content: '';
    position: absolute;
    transform: translateY(100%);
    bottom: 0;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ffffff;
}



.sect_202409_2 {
    padding: 98px 0 116px 0;
    background: #FBFBFB;
}

.sect_202409_2 .block_left {
    width: 100%;
    max-width: 620px;
}

.sect_202409_2 h2 {
    font-weight: 700;
    font-size: 55px;
    line-height: 1.1em;
    color: black;
    margin: 0 0 20px 0;
    text-align: left;
}
.sect_202409_2 p {
    font-weight: 300;
    font-size: 25px;
    margin: 0 0 22px 0;
    width: 100%;
    max-width: 445px;
}

.sect_202409_2_figure {
    position: absolute;
    top: -30px;
    right: 0;
    width: 701px;
    height: 728px;
}



@media (max-width: 1600px) {
    .home_slider_2024_09_figure {
        width: 1200px;
        height: auto;
        top: -154px;
    }
}
@media (max-width: 1300px) {
    .home_slider_2024_09 {
        height: auto;
    }
    .home_slider_2024_09 .container {
        flex-direction: column-reverse;
        gap: 38px
    }
    .home_slider_2024_09 .content_side {
        margin: 0 auto;
        padding: 0;
    }



    .home_slider_2024_09 .finance_right {
        margin-bottom: -180px;
    }
    .sect_202409_1 {
        padding: 310px 0 64px 0;
    }



    .sect_202409_1 .container {
        flex-direction: column;
    }
    .sect_202409_1 .block_right {
        height: 460px;
    }
    .sect_202409_1 .sect_202409_1_figure {
        width: 570px;
        height: 212px;
        transform: scaleX(-1);
        right: initial;
        left: -182px;
        bottom: 122px;
        max-width: initial;
    }

    .cloud_figure {
        right: initial;
        left: 0;
    }
    .sect_202409_1 ul {
        right: initial;
        left: 180px;
    }

    .sect_202409_2_figure {
        width: 521px;
        height: auto;
        top: 60px;
    }
}


@media (max-width: 1000px) {
    .sect_202409_2_figure {
        width: 393px;
        height: 408px;
        right: -177px;
        top: initial;
        bottom: -278px;
        max-width: initial;
    }
}

@media (max-width: 768px) {
    .home_slider_2024_09 .block_text_01 {
        font-size: 45px;
        max-width: 245px;
    }
    .home_slider_2024_09 .block_text_01 span {
        font-size: 64px;
    }
    .home_slider_2024_09 .block_text_02 {
        font-size: 20px;
        max-width: 190px;
    }
    .home_slider_2024_09 .block_text_02::before {
        width: 51px;
        height: 43px;
        top: 0px;
        right: -56px;
    }
    .home_slider_2024_09 .finance_right {
        margin: 0 0 -240px 0;
    }
    .home_slider_2024_09 span.star {
        height: 28px;
        width: 28px;
        left: 150px;
    }
    .home_slider_2024_09_figure {
        width: 619px;
        height: 523px;
        right: -274px;
        max-width: initial;
        top: -215px;
    }


    .sect_202409_1 h1 {
        font-size: 25px;
        margin: 0 0 14px 0;
    }
    .sect_202409_1 p {
        font-size: 18px;
        margin: 0 0 14px 0;
    }

    .home_slider_2024_09 ul:not([class]) li {
        font-size: 16px;
    }


    .sect_202409_1 ul {
        transform: translateX(-50%);
        left: 50%;
        width: 100%;
        max-width: 340px;
    }
    .sect_202409_1 ul li {
        font-size: 16px;
    }
    .sect_202409_1 ul li::before {
        width: 18px;
        height: 18px;
    }

    .cloud_figure {
        right: 0;
        left: initial;
        padding: 16px 28px 14px 28px;
        max-width: 220px;
    }
    .cloud_figure p {
        font-size: 14px;
    }
    .cloud_figure::before {
        left: initial;
        right: 36px;
    }


    .sect_202409_2 h2 {
        font-size: 25px;
        margin: 0 0 14px 0;
        max-width: 295px;
    }
    .sect_202409_2 p {
        font-size: 18px;
        margin: 0 0 14px 0;
        max-width: 255px;
    }
}





.events-none {
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    -ms-pointer-events: none;
	pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	user-select: none;
}




.header_wrapper.header_refreshed {
    position: absolute;
    background: initial;
    height: 200px;
}
.header_refreshed .header_logo {
    width: 338px;
}
.header_island_wrap {
    position: fixed;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1500px;
    width: calc(100% - 80px);
    margin: 0 auto;
    display: flex;
    justify-content: end;
    transition: ease-in-out 0.25s;
}
.header_island {
    background: white;
    border-radius: 56px;
    display: flex;
    align-items: center;
    gap: 60px;
    height: 84px;
    padding: 10px 38px 10px 100px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: ease-in-out 0.25s;
}
.header_refreshed .header_navigation {
    margin: 0;
}
.header_refreshed .header_navigation ul {
    gap: 50px;
    margin: 0;
}
.header_refreshed .header_navigation ul li a {
    text-transform: uppercase;
    color: #000000;
}

.header_apply_btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 28px;
    background: transparent linear-gradient(163deg, #EE3231 0%, #FFE764 250%) 0% 0% no-repeat padding-box;
    border-radius: 25px;
    transition: ease-in-out 0.25s;

    font-weight: 700;
    font-size: 16px;
    color: white;
}

.header_refreshed .header_language_switch::before {
    left: initial;
    right: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%) rotate(270deg);
}
.header_refreshed .header_language_switch .js-wpml-ls-item-toggle.wpml-ls-item-toggle {
    padding: 6px 20px 6px 6px;
}

@media (max-width: 1600px) {
    .header_apply_btn { display: none; }
}
@media (max-width: 1300px) {
    .header_island .header_navigation,
    .header_island .header_language_switch {
        display: none;
    }
    .header_island .hb_label_wrap { margin: 0; }

    .header_island {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }

    .header_island_wrap {
        top: 30px;
    }
    .header_wrapper.header_refreshed {
        height: 100px;
    }
    .header_refreshed .header_logo {
        width: 187px;
    }
}
.header_refreshed label.hb_label span {
    background: #EE3231;
}



html[lang="ru-RU"] .home_slider_2024_09 .block_text_01 span {
    font-size: 75px;
}
html[lang="ru-RU"] .home_slider_2024_09 .block_text_01 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
}
html[lang="ru-RU"] .home_slider_2024_09 .block_text_02 {
    font-size: 24px;
    max-width: 344px;
}
html[lang="ru-RU"] .home_slider_2024_09 ul:not([class]) li {
    font-size: 18px;
}
html[lang="ru-RU"] .sect_202409_1 h1 {
    font-size: 42px;
}
@media (max-width: 768px) {
    html[lang="ru-RU"] .home_slider_2024_09 .block_text_01 span {
        font-size: 55px;
    }
    html[lang="ru-RU"] .home_slider_2024_09 .block_text_01 {
        font-size: 30px;
        font-family: 'Montserrat', sans-serif;
    }
    html[lang="ru-RU"] .home_slider_2024_09 .block_text_02 {
        font-size: 17px;
        max-width: 185px;
    }
    html[lang="ru-RU"] .home_slider_2024_09 ul:not([class]) li {
        font-size: 16px;
    }
    html[lang="ru-RU"] .sect_202409_1 h1 {
        font-size: 20px;
    }


    .home_slider_2024_09 {
        background-image: url('../../images/home_banner_2024_09_mobile.svg') !important;
        background-position: left;
    }
}



@media (min-width: 1300px) {
    .scrolled .header_island {
        height: 60px;
        padding: 10px 20px 10px 50px;
    }
    .scrolled .header_island_wrap {
        top: 30px;
    }
    .scrolled .header_apply_btn {
        padding: 7px 27px;
    }
}

.error-message { display: none !important; }
