/* ===== FONTS ===== */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
        url('../fonts/Inter-Light.woff') format('woff'),
        url('../fonts/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff'),
        url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff'),
        url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.woff') format('woff'),
        url('../fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MontserratAlternates';
    src: url('../fonts/MontserratAlternates-Bold.woff2') format('woff2'),
        url('../fonts/MontserratAlternates-Bold.woff') format('woff'),
        url('../fonts/MontserratAlternates-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MontserratAlternates';
    src: url('../fonts/MontserratAlternates-SemiBold.woff2') format('woff2'),
        url('../fonts/MontserratAlternates-SemiBold.woff') format('woff'),
        url('../fonts/MontserratAlternates-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff'),
        url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== GLOBAL STYLES ===== */

* {
    box-sizing: border-box;
}


body {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    font-size: 14px;
    color: #393937;
    font-style: normal;
}


input,
textarea,
.form__input {
    height: 52px;
    width: 100%;
    padding: 12px;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid #F4F4F1;
    background: #F9FAFB;
    font-family: 'Inter', Arial, sans-serif;
    color: #9B9B99;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    font-family: 'Inter', Arial, sans-serif;
    color: #9B9B99;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

input:focus,
textarea:focus,
.form__input:focus {
    border: 1px solid #1C64F2;
}

input:hover,
textarea:hover,
.form__input:hover {
    border: 1px solid #3D89DF;
}

input:active,
textarea:active,
.form__input:active {
    border: 1px solid #1C64F2;
}

label {
    color: #1D1D1B;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

select.form__input {
     appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Добавляем свою стрелку */
    background-image: url(../images/select-unput.svg);
    background-repeat: no-repeat;
    background-position: right 20px center; /* позиция - 20px от правого края */
    background-size: 16px;
    
    padding-right: 45px; /* место для стрелки */
}

.form__box-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visually-hidden {
    display: none;
}


textarea {
    min-height: 100px;
    resize: none;
}


input[type="checkbox"] {
    border-radius: 4px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    background-color: #fff;
    border: 1px solid #868684;
    transition: background-color 0.3s ease;
    appearance: none;
    outline: none;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: #E30613;
    border: 1px solid #E30613;
}

input[type="checkbox"]:checked::after {
    content: "";
    background: url('../images/check.svg');
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"] {
    appearance: none;
    outline: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-height: 24px;
    border-radius: 50%;
    border: 1px solid #868684;
    position: relative;
    appearance: none;
    outline: none;
}

input[type="radio"]:checked {
    background-color: #fff;
    border-color: #E30613;
}

input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E30613;
}
















.hero__title-primary {
    color: #FFF;
    text-align: center;
    font-family: 'MontserratAlternates', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.72px;
}

.heading-secondary {
    color: #1D1D1B;
    font-size: 25px;
}

/* ===== GLOBAL BUTTON STYLES ===== */

.btn {
    font-family: 'Inter', Arial, sans-serif;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none; /* @egeleon*/
}

.button-red {
    color: #FFF;
    background: #E30613;
}

.button-red:hover {
    background: #FD382A;
}

.button-red:active,
.button-red:focus {
    background: #C50005;
}

.button-red:disabled,
.button-black:disabled,
.button-border:disabled,
.button-white:disabled {
    background: #DDDDDB;
}

.button-black {
    color: #FFF;
    background: #1D1D1B;
}

.button-black:hover {
    background: #393937;
}

.button-black:active,
.button-black:focus {
    background: #000;
}

.button-border {
    color: #1D1D1B;
    border: 1px solid #1D1D1B;
    background: #FFF;
}

a.button-border /* @egeleon  */
{
  text-decoration: none;
}

.button-border:hover {
    color: #fff;
    background: #1D1D1B;
}

.button-border:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(4140%) hue-rotate(202deg) brightness(96%) contrast(101%);
}

.button-border:active img,
.button-border:focus img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(4140%) hue-rotate(202deg) brightness(96%) contrast(101%);
}

.button-border:active,
.button-border:focus {
    color: #fff;
    background: #000;
}

.button-white {
    color: #1D1D1B;
    background: #FFF;
}

.button-white:hover {
    color: #fff;
    background: #FD382A;
}

.button-white:active,
.button-white:focus {
    color: #fff;
    background: #1D1D1B;
}

/* ===== BURGER STYLES ===== */

.menu-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 8;
    max-height: 0;
    transition: max-height 0.5s;
}

.menu-overlay.active {
    max-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

.header__burger {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    cursor: pointer;
    padding: 16px;
    gap: 3px;
    border-radius: 8px;
    background: #E30613;
    transition: all 0.4s;
}

.header__burger:hover {
    background: #FD382A;
}

.header__burger:active {
    background: #C50005;
}

.header__burger-line {
    background: white;
    height: 2px;
    width: 20px;
    transition: transform 0.5s, opacity 0.5s;
}

.header__burger.open .header__burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header__burger.open .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger.open .header__burger-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
    margin: 0;
}

.header__mobile-nav {
    list-style: none;
    position: absolute;
    display: flex;
    overflow: hidden;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 800px;
    background: #F9FAFB;
    height: max-content;
    flex-direction: column;
    z-index: 9;
    max-height: 0;
    transition: max-height 0.5s;
}

.header__mobile-nav.open {
    max-height: 500px;
}

.header__mobile-nav-list {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
}

.header__mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}

.header__mobile-nav-item {
    padding: 4px;
}

.header__mobile-nav-link,
.header__mobile-nav-dropdown-link {
    color: #1D1D1B;
    text-decoration: none;
    transition: all 0.4s;
}

.header__mobile-nav-item:hover .header__mobile-nav-link,
.header__mobile-nav-dropdown-item:hover .header__mobile-nav-dropdown-link {
    color: #FF553E;
}

.has-dropdown:hover .header__mobile-nav-link::after {
    filter: brightness(0) saturate(100%) invert(47%) sepia(24%) saturate(5257%) hue-rotate(335deg) brightness(99%) contrast(105%);
}

.header__mobile-nav-item:active .header__mobile-nav-link,
.header__mobile-nav-dropdown-item:active .header__mobile-nav-dropdown-link {
    color: #E30613;
}

.has-dropdown:active .header__mobile-nav-link::after {
    filter: brightness(0) saturate(100%) invert(9%) sepia(92%) saturate(4573%) hue-rotate(350deg) brightness(129%) contrast(108%);
}


.header__mobile-nav-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.has-dropdown .header__mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    width: max-content;
}

.header__mobile-nav-dropdown-item {
    padding: 4px 4px 4px 10px;
}

.has-dropdown .header__mobile-nav-link::after {
    content: "";
    background: url('../images/select.svg') no-repeat center;
    width: 16px;
    height: 16px;
    transition: all 0.4s;
}

.has-dropdown.dropdown-open .header__mobile-nav-link::after {
    transform: rotate(180deg);
}

.header__mobile-nav-dropdown.open {
    max-height: 500px;
}










/* ===== HEADER STYLES ===== */
.header {
    display: flex;
    width: 100%;
    padding: 8px 16px;
    flex-direction: column;
    align-items: center;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.header__bottom {
    display: none;
}

.header__top .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.header__controls {
    display: none;
}

.header__top {
    width: 100%;
}

.header__logo {
    width: 95.526px;
    height: 30px;
}

.header__logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

main {
    margin-top: 72px;
}

.hero {
    padding: 24px 16px;
}

.hero .wrapper {
    display: flex;
    max-width: 800px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    margin: 0 auto;
}

.hero__banner {
    position: relative;
    padding: 32px 12px 12px 12px;
    border-radius: 12px;
    background: #E30613;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 232px;
    align-self: stretch;
}

.hero__banner-content {
    min-width: 264px;
}

.hero__calculate {
    max-width: 476px;
    position: relative;
    z-index: 2;
}

.hero__banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.hero__title-secondary {
    color: #FFF;
    text-align: center;
    font-family: 'MontserratAlternates', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.56px;
    margin-bottom: 8px;
}

.hero__subtitle {
    color: #FFF;
    text-align: center;
    font-size: 18px;
}

.credit-box__content {
    padding: 16px;
    border-radius: 8px;
    background: #FFF;
    display: flex;
    flex-direction: column;
}

.credit-box__title {
    color: #1D1D1B;
    font-size: 21px;
    margin-bottom: 16px;
}

.credit-form__field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
    align-self: stretch;
    margin-bottom: 48px;
}

.faq__category-header img {
    object-fit: contain;
}

.credit-form__label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    color: #1D1D1B;
}

.credit-form__amount {
    height: 52px;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #F4F4F1;
    background: #F9FAFB;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.credit-form__range-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.credit-form__range {
    width: 100%;
}

.credit-form__range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.credit-form__range-labels span {
    color: #1D1D1B;
    text-align: right;
    font-weight: 400;
    line-height: 120%;
}

.credit-form__range-min {
    text-align: left;
}

.credit-form__field--row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    align-self: stretch;
    margin-bottom: 12px;
}

.credit-form__term sstrong {
    color: #1D1D1B;
}

.credit-form__submit {
    padding: 19px;
    margin-left: auto;
}

.credit-box__link {
    margin: 8px 0 16px auto;
    display: flex;
    font-family: 'Inter', Arial, sans-serif;
    align-items: center;
    gap: 7px;
    align-self: stretch;
    padding: 4px;
    color: #1C64F2;
    background: transparent;
    border: none;
    transition: all 0.4s;
}

.credit-box__link:hover {
    color: #3D89DF;
}

.credit-box__link:hover img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(17%) saturate(5181%) hue-rotate(191deg) brightness(91%) contrast(91%);
}

.credit-box__link:active,
.credit-box__link:focus {
    color: #0046D4;
}

.credit-box__link:active img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(82%) saturate(4672%) hue-rotate(213deg) brightness(118%) contrast(114%);
}

.credit-box__warning p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.12px;
}

.hero__cards {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
}

.hero__card {
    display: flex;
    min-width: 256px;
    padding: 4px 12px 4px 16px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 12px;
    background: #F9FAFB;
}

.hero__card-image {
    display: flex;
    height: 176px;
    max-width: 200px;
    min-width: 150px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 0 0;
}


.hero__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero__card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-self: stretch;
}

.hero__card-title {
    color: #E30613;
    font-size: 16px;
    font-weight: 600;
}

.hero__card-description {
    font-weight: 400;
}

.get-credit {
    padding: 24px 16px;
}

.get-credit .wrapper {
    padding: 32px 12px 12px 12px;
    border-radius: 28px;
    background: #F9FAFB;
    max-width: 100%;
    position: relative;
}

.get-credit__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.get-credit__wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.get-credit__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.get-credit__background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.get-credit__container {
    width: 100%;
    display: flex;
    padding: 12px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
    border-radius: 24px;
    background: #FFF;
}

.get-credit__image {
    height: 376px;
    min-width: 240px;
    max-height: 376px;
    border-radius: 20px;
    background: #F9FAFB;
    overflow: hidden;
    flex: 1 0 0;
}

.get-credit__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.get-credit__content {
    width: 100%;
    display: flex;
    padding-top: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.get-credit__steps {
    display: flex;
    padding-right: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.get-credit__steps-title {
    color: #1D1D1B;
    font-size: 21px;
}

.get-credit__steps-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.get-credit__step {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    padding: 4px 8px 16px 8px;
    border-bottom: 1px solid #F4F4F1;
}

.get-credit__step-icon {
    display: flex;
    padding: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #F9FAFB;
    min-width: 40px;
    height: 40px;
}

.get-credit__step-icon img {
    width: 100%;
    height: 100%;
}

.get-credit__step-title {
    font-size: 16px;
    font-weight: 400;
}

.get-credit__conditions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.get-credit__conditions-title {
    color: #1D1D1B;
    font-size: 16px;
}

.get-credit__conditions-list {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.get-credit__condition {
    display: flex;
    height: 116px;
    min-width: 124px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 20px;
    border: 1px solid #F4F4F1;
    background: #F9FAFB;
}

.get-credit__condition-icon {
    display: flex;
    padding: 4px;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    background: #FFF;
    width: 28px;
    height: 28px;
}

.get-credit__condition-icon img {
    width: 100%;
    height: 100%;
}

.get-credit__condition-title {
    color: #1D1D1B;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.12px;
}

.loan-application__tab-content {
    display: none;
    width: 100%;
    padding: 0 12px 12px 12px;
}

.loan-application__tab-content.active {
    display: block;
}

.loan-application {
    padding: 24px 16px;
}

.loan-application .wrapper {
    padding: 12px;
    border-radius: 24px;
    overflow: hidden;
    background: #F9FAFB;
    display: flex;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
    position: relative;
}

.loan-application__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.loan-application__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}



.loan-application__content {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
    border-radius: 24px;
    flex: 1 0 0;
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.loan-application__info {
    display: flex;
    min-width: 240px;
    height: max-content;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 24px;
    background: #FFF;
}



.loan-application__content .credit-box__content {
    border-radius: 24px;
    padding: 16px 0;
    width: 100%;
}

.loan-application__content .credit-box__title {
    margin-bottom: 32px;
}

.loan-application__content .credit-form__field--row .credit-form__label {
    font-size: 18px;
}

.loan-application__content .credit-form__term strong {
    font-size: 18px;
}

.loan-application__content .credit-form__field--row {
    margin-bottom: 24px;
}

.loan-application__calc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
    padding: 12px;
    background: #fff;
    border-radius: 24px;
    min-width: 240px;
}

.loan-application__table {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 20px;
    background: #F9FAFB;
    gap: 20px;
}

.loan-application__table-title {
    color: #1D1D1B;
    font-size: 16px;
}

.loan-application__table-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    align-self: stretch;
}

.loan-application__table-row {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    justify-content: space-between;
}

.loan-application__table-row dt {
    color: #1D1D1B;
    font-weight: 400;
    text-align: left;
}

.loan-application__table-row dd {
    color: #1D1D1B;
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
}

.loan-application__table .credit-box__link {
    margin: 0 auto 12px 0;
}

.loan-application__table .credit-box__warning {
    padding-top: 12px;
    border-top: 1px solid #F4F4F1;
    margin-top: -19px;
}

.loan-application__info-title {
    color: #1D1D1B;
    font-size: 18px;
    margin-bottom: 16px;
    padding: 12px 12px 0 12px;
}

.loan-application__tabs {
    display: flex;
    align-items: center;
    align-content: center;
    flex: 1 0 0;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 24px;
    padding: 0 12px;
}

.loan-application__tab {
    display: flex;
    height: 45px;
    min-width: 176px;
    font-family: inherit;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    background: transparent;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #DDDDDB;
    color: #1D1D1B;
    transition: all 0.4s;
}

.loan-application__tab.active {
    color: #E30613;
    border-bottom: 1px solid #E30613;
}

.loan-application__tab:hover {
    border-bottom: 1px solid #E30613;
}

.loan-application__tab.active img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(91%) saturate(4296%) hue-rotate(349deg) brightness(105%) contrast(110%);
}

.loan-application__docs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    align-self: stretch;
    margin-bottom: 43px;
}

.loan-application__doc {
    width: 100%;
}

.loan-application__doc-link {
    display: flex;
    padding: 20px;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 10px;
    background: #F9FAFB;
    text-decoration: none;
}

.loan-application__doc-img {
    min-width: 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFF;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loan-application__doc-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loan-application__doc-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.loan-application__doc-title {
    color: #1D1D1B;
}

.loan-application__doc-description {
    color: #1D1D1B;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.12px;
}

.loan-application__accordion-box {
    padding: 8px 0;
}


.loan-application__accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #F4F4F1;
}

.loan-application__accordion-button::after {
    content: "";
    background-image: url(../images/select.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 2px;
    right: -4px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::-moz-details-marker {
    display: none;
}

details {
    list-style: none;
}

summary {
    list-style: none;
}

.loan-application__accordion-button {
    color: #1D1D1B;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.loan-application__accordion-content {
    margin-top: 16px;
    padding: 0 24px 0 12px;
    max-height: 303px;
    margin-right: 16px;
    overflow: auto;
}

.loan-application__accordion-content p {
    color: #1D1D1B;
    font-weight: 300;
}

.loan-application__accordion-button {
    transition: all 0.4s;
    position: relative;
}

.loan-application__accordion-button:hover,
.loan-application__accordion-button:active,
.loan-application__accordion-button:focus {
    color: #E30613;
}

.loan-application__accordion-button:hover::after,
.loan-application__accordion-button:active::after,
.loan-application__accordion-button:focus::after {
    content: "";
    filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(6861%) hue-rotate(350deg) brightness(85%) contrast(112%);
}

details[open] .loan-application__accordion-button {
    color: #E30613;
}

details[open] .loan-application__accordion-button::after {
    content: "";
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(6861%) hue-rotate(350deg) brightness(85%) contrast(112%);
}




.advantages {
    padding: 48px 16px;
}

.advantages .wrapper {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.advantages__box {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 23px;
    align-self: stretch;
    flex-wrap: wrap;
}

.advantages__box-content {
    min-width: 288px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.advantages__box-image {
    height: 376px;
    min-width: 288px;
    border-radius: 20px;
    background: #F9FAFB;
    overflow: hidden;
    flex: 1 0 0;
}

.advantages__box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.advantages__box-content-card {
    display: flex;
    padding: 24px 24px 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 20px;
    background: #F9FAFB;
    gap: 24px;
}

.advantages__box-content-img {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #FFF;
    width: 100%;
}

.advantages__box-content-img span {
    color: #E30613;
    font-size: 16px;
    font-weight: 600;
}

.advantages__box-content-img img {
    object-fit: contain;
    width: 21px;
    height: 25px;
}

.advantages__box-content-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.advantages__box-content-text h3 {
    color: #1D1D1B;
    font-weight: 600;
}

.advantages__box-content-text p {
    font-weight: 400;
}

.pay {
    padding: 48px 16px;
}

.pay__background {
    display: none;
}

.pay .wrapper {
    display: flex;
    max-width: 800px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    margin: 0 auto;
}

.pay-mobile__title {
    color: #1D1D1B;
    font-size: 25px;
}

.pay__wrapper {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
}

.pay__image {
    height: 376px;
    min-width: 288px;
    flex: 1 0 0;
    border-radius: 20px;
    background: #F9FAFB;
    overflow: hidden;
}

.pay__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pay__content {
    flex: 1 0 0;
}

.pay__title {
    display: none;
}

.pay__cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.pay__card {
    display: flex;
    height: 200px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 16px;
    background: #F9FAFB;
    position: relative;
}

.pay__card-image {
    display: none;
}

.pay__card-title {
    color: #1D1D1B;
    font-weight: 600;
    margin-bottom: 8px;
}

.pay__card-description {
    font-weight: 400;
    margin-bottom: 15px;
}

.pay__card-link {
    min-height: 36px;
    text-decoration: none;
}

.pay__card-buttons {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.btn img {
    width: 17.012px;
    height: 14.024px;
    object-fit: contain;
}

.pay__card-button {
    flex: 1 0 0;
    text-decoration: none;
    min-height: 36px;
}

.reviews {
    padding: 48px 16px;
    overflow: hidden;
}

.reviews .wrapper {
    display: flex;
    max-width: 800px;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
    margin: 0 auto;
}

.reviews__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 23px 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.reviews__all-link {
    display: flex;
    min-width: 288px;
    padding: 16px;
    min-height: 56px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    color: #FFF;
    text-decoration: none;
}

.reviews__navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews__nav-button {
    padding: 16px;
    width: 56px;
    height: 56px;
    background: transparent;
}

.reviews__header .heading-secondary {
    margin-right: auto;
    min-width: 288px;
    flex: 1 0 0;
}

.reviews__slide {
    width: 288px !important;
}

.reviews__slider {
    width: calc(100% + 32px);
    overflow: visible;
}

.reviews__quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.reviews__text {
    color: #1D1D1B;
    font-weight: 400;
    padding: 0 16px;
}

.reviews__author {
    width: 276px;
    padding: 64px 48px;
    background: url(../images/reviews.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    color: #000;
    font-size: 18px;
    text-align: center;
    min-height: 172px;
}

.faq__accordion-header {
    transition: all 0.3s ease;
}

.faq__accordion-icon {
    transition: transform 0.3s ease;
}

.faq__accordion-header[aria-expanded="true"] .faq__accordion-icon {
    transform: rotate(180deg);
}

.faq__accordion-content {
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    max-height: 0;
}

.faq__accordion-content.open {
    max-height: 500px;
    /* Достаточно большое значение */
}

.faq__accordion-body {
    padding: 0 16px 8px 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq__accordion-header[aria-expanded="true"] .faq__accordion-title {
    color: #E30613;
}

.faq__accordion-header[aria-expanded="true"] .faq__accordion-icon {
    filter: brightness(0) saturate(100%) invert(9%) sepia(95%) saturate(6348%) hue-rotate(353deg) brightness(102%) contrast(100%);
}

.faq__accordion-body p {
    font-weight: 300;
    color: #1D1D1B;
}

.faq__accordion-content.open .faq__accordion-body {
    opacity: 1;
}

.faq {
    padding: 0 16px;
}

.faq .wrapper {
    padding: 35px 12px;
    border-radius: 24px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 0 0;
}

.faq .wrapper h2 {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.faq__content {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.faq__accordion {
    display: flex;
    min-width: 264px;
    padding: 32px 24px;
    flex: 1 0 0;
    border-radius: 24px;
    background: #FFF;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.faq__image {
    height: 376px;
    min-width: 264px;
    padding: 32px 24px;
    position: relative;
    flex: 1 0 0;
    border-radius: 20px;
    background: #FFF;
    overflow: hidden;
}

.faq__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.faq__more-link {
    text-decoration: none;
    margin: 7px auto 0 auto;
    padding: 16px;
    width: 100%;
    min-height: 56px;
}

.faq__accordion-header {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__accordion-item {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
    border-bottom: 1px solid #F4F4F1;
}

.faq__accordion-title {
    font-family: 'Inter', Arial, sans-serif;
    color: #1D1D1B;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    max-width: 90%;
    transition: all 0.4s;
}

.faq__accordion-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.faq__accordion-item:hover .faq__accordion-title {
    color: #E30613;
}

.faq__accordion-item:hover .faq__accordion-icon {
    filter: brightness(0) saturate(100%) invert(9%) sepia(95%) saturate(6348%) hue-rotate(353deg) brightness(102%) contrast(100%);
}

.faq__accordion-item:active .faq__accordion-title {
    color: #E30613;
}

.faq__accordion-item:active .faq__accordion-icon {
    filter: brightness(0) saturate(100%) invert(9%) sepia(95%) saturate(6348%) hue-rotate(353deg) brightness(102%) contrast(100%);
}

.faq__warning {
    padding: 8px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq__warning-button {
    position: relative;
    font-size: 18px;
    font-weight: 400;
}

.faq__warning-details {
    padding-bottom: 16px;
    border-bottom: 1px solid #F4F4F1;
}

.faq__warning-button::after {
    content: "";
    background-image: url(../images/select.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.faq__warning-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__warning-content {
    padding: 0 16px;
    max-height: 221px;
    overflow: auto;
    margin-right: 27px;
}

.faq__warning-content p {
    color: #1D1D1B;
    font-weight: 400;
}


.faq__warning-button:hover,
.faq__warning-button:active,
.faq__warning-button:focus {
    color: #E30613;
}

.faq__warning-button:hover::after,
.faq__warning-button:active::after,
.faq__warning-button:focus::after {
    content: "";
    filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(6861%) hue-rotate(350deg) brightness(85%) contrast(112%);
}

details[open] .faq__warning-button {
    color: #E30613;
}

details[open] .faq__warning-button::after {
    content: "";
    filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(6861%) hue-rotate(350deg) brightness(85%) contrast(112%);
}

.faq__categories {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    max-width: 800px;
    margin: 0 auto;
}

.faq__category {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.faq__category-header {
    display: flex;
    align-items: center;
    gap: 4px;
}

.faq__category-title {
    padding: 4px 0;
    color: #1D1D1B;
    font-size: 18px;
}

.faq__category-tags {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.faq__tag {
    min-height: 56px;
    padding: 16px 24px;
}

.news {
    padding: 45px 16px;
    overflow: hidden;
}

.news .wrapper {
    display: flex;
    max-width: 800px;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
    margin: 0 auto 24px auto;
}

.news__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 24px 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.news__header h2 {
    margin-right: auto;
}

.news__all-link {
    min-width: 288px;
    flex: 1 0 0;
    text-decoration: none;
    padding: 16px;
    min-height: 56px;
}

.news__nav-button {
    width: 56px;
    height: 56px;
}

.news__nav-button {
    padding: 16px;
}

.news__slider {
    width: calc(100% + 32px);
    margin: 0 auto;
    max-width: 800px;
    overflow: visible;
}

.news__slider .swiper-slide {
    width: 276px !important;
}

.news__card {
    width: 276px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 20px;
    background: #F9FAFB;
    border: 1px solid transparent;
    transition: all 0.4s;
    text-decoration: none;
    color: inherit;
}

.news__card:hover {
    border: 1px solid #DDDDDB;
}

.news__card:hover .news__title {
    color: #E30613;
}

.news__card:active {
    border: 1px solid #C7C6C4;
    background: #F4F4F1;
}

.news__card:active .news__title {
    color: #E30613;
}

.news__badge {
    padding: 2px 8px;
    border-radius: 99px;
    background: #E30613;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.12px;
}

.news__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

.news__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1D1D1B;
    min-height: 35px;
    transition: all 0.4s;
}

.news__date {
    color: #E30613;
    font-weight: 400;
}

.news__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    line-height: 120%;
}

.news__link {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding: 4px;
    align-self: stretch;
    color: #1D1D1B;
    text-decoration: none;
    transition: all 0.4s;
}

.news__link:hover {
    color: #FF553E;
}

.news__link:hover img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(79%) saturate(2168%) hue-rotate(336deg) brightness(100%) contrast(101%);
}

.news__link:active {
    color: #E30613;
}

.news__link:active img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(94%) saturate(7097%) hue-rotate(346deg) brightness(85%) contrast(118%);
}

.news__slider-box .news__nav-button {
    display: none;
}

.footer {
    padding: 16px;
}

.footer .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 151px;
    align-self: stretch;
    max-width: 800px;
    margin: 0 auto;
}

.footer__scroll {
    width: 100%;
}

.footer__warning-button {
    position: relative;
    font-size: 18px;
    font-weight: 400;
}

.footer__warning-details {
    padding-bottom: 16px;
    width: 100%;
    padding: 9px;
    border-bottom: 1px solid #F4F4F1;
}

.footer__content-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__warning-button::after {
    content: "";
    background-image: url(../images/select.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.footer__warning-content h3 {
    font-weight: 500;
}

.footer__warning-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__warning-content {
    padding: 0 16px;
    max-height: 271px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-right: 26px;
}

.footer__warning-content p {
    color: #1D1D1B;
    font-weight: 300;
}


.footer__warning-button:hover,
.footer__warning-button:active,
.footer__warning-button:focus {
    color: #E30613;
}

.footer__warning-button:hover::after,
.footer__warning-button:active::after,
.footer__warning-button:focus::after {
    content: "";
    filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(6861%) hue-rotate(350deg) brightness(85%) contrast(112%);
}

details[open] .footer__warning-button {
    color: #E30613;
}

details[open] .footer__warning-button::after {
    content: "";
    filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(6861%) hue-rotate(350deg) brightness(85%) contrast(112%);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.footer__content-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.footer__content-top {
    position: relative;
}

.footer__content-card-box {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 20px;
    background: #E30613;
    position: relative;
    z-index: 2;
}

.footer__content-bg {
    position: absolute;
    top: -185px;
    left: 0;
    width: 238px;
    height: 301px;
    z-index: 1;
}


.footer__content-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__content-image {
    width: 100%;
    height: 153px;
}

.footer__content-text {
    color: #FFF;
    margin-top: 16px;
}

.footer__content-info {
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
    gap: 48px;
    align-self: stretch;
    flex-wrap: wrap;
    border-radius: 20px;
    background: #F9FAFB;
}

.footer__nav {
    min-width: 256px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.footer__nav-title {
    color: #E30613;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #C7C6C4;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.footer__nav-link {
    display: flex;
    width: 100%;
    gap: 4px;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    color: #1D1D1B;
    text-decoration: none;
    transition: all 0.4s;
}

.footer__nav-link:hover {
    color: #FF553E;
}

.footer__nav-link:hover::after {
    filter: brightness(0) saturate(100%) invert(38%) sepia(79%) saturate(1294%) hue-rotate(335deg) brightness(104%) contrast(105%);
}

.footer__nav-link:hover {
    color: #E30613;
}

.footer__nav-link:hover::after {
    filter: brightness(0) saturate(100%) invert(14%) sepia(96%) saturate(6478%) hue-rotate(354deg) brightness(117%) contrast(94%);
}

.footer__nav-link::after {
    content: "";
    background: url('../images/arrow-right.svg') no-repeat center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: all 0.4s;
}

.footer__nav-column {
    width: 100%;
}

.footer__nav-item {
    width: 100%;
}

.footer__contacts {
    display: flex;
    min-width: 256px;
    flex-direction: column;
    align-items: flex-end;
    flex: 1 0 0;
    gap: 24px;
}

.footer__contact-phone {
    color: #1D1D1B;
    text-align: right;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.footer__contact-email {
    margin-top: -16px;
    color: #4B4B49;
    font-weight: 400;
    text-decoration: none;
    display: block;
}

.footer__social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.footer__social-link {
    text-decoration: none;
}

.footer__cta-button {
    min-height: 56px;
    text-decoration: none;
}

/* @egeleon
.footer__developer {
    display: flex;
    padding: 16px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 0.5px solid #DDDDDB;
    background: #FFF;
    text-decoration: none;
}
*/

.footer__developer-block
{
  display:block;
  margin-top:4px;  
}

.footer__developer {
    padding: 0px 16px 0 0;
    text-decoration: none;
}
    
.footer__developer-text {
    color: #353535;
    font-size: 10px;
}
/* @egeleon
.footer__bottom {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
}
*/

.footer__bottom {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
}
    

.footer__bottom p {
    min-width: 288px;
    flex: 1 0 0;
    color: #1D1D1B;
    font-size: 12px;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: 0.12px;
}

.get-credit__background {
    display: none;
}

.breadcrumb {
    padding: 12px 16px;
}

.breadcrumb .wrapper {
    max-width: 800px;
    width: 100%;
    padding: 8px;
    border-top: 1px solid #F4F4F1;
    border-bottom: 1px solid #F4F4F1;
    margin: 0 auto;
    overflow: hidden;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.breadcrumb__item {
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.breadcrumb__item::after {
    content: "";
    background: url('../images/breadcrumb-arrow.svg') no-repeat center;
    width: 12px;
    height: 12px;
    display: flex;
}

.breadcrumb__item:nth-last-of-type(1)::after {
    content: none;
}

.breadcrumb__item--link {
    color: #1D1D1B;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.12px;
    text-decoration: none;
}

.breadcrumb__item--text {
    color: #DDDDDB;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0.12px;
    white-space: nowrap;
}

.blog__hero {
    padding: 16px;
}

.blog__hero .wrapper {
    padding: 4px;
    border-radius: 24px;
    background: #F9FAFB;
}

.blog__hero-content {
    display: flex;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    align-items: center;
    align-content: center;
    gap: 24px 128px;
    border-radius: 24px;
    background: #FFF;
    flex-wrap: wrap;
}

.blog__hero-content-text {
    min-width: 216px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    flex: 1 0 0;
}

.blog__hero-content-text h2 {
    font-size: 18px;
    color: #1D1D1B;
}

.blog__hero-content--img {
    display: flex;
    overflow: hidden;
    align-items: center;
    height: 256px;
    min-width: 216px;
    flex: 1 0 0;
    border-radius: 20px;
    background: #FFF;
}

.blog__hero-content-text h1 {
    color: #1D1D1B;
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
}

.blog__hero-content-text h1 mark {
    color: #E30613;
    background: transparent;
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
}

.blog__hero-content-text p {
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

.blog__hero-content--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.blog {
    padding: 30px 16px;
}

.blog .wrapper {
    display: flex;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.blog__tabs {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.blog__tab {
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 8px;
}

.blog__tab--active {
    border: none;
}

.blog__content {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px 16px;
    align-self: stretch;
    flex-wrap: wrap;
}

.blog__article {
    flex: 1 1 256px;
}

.blog__card.news__card {
    width: 100%;
    height: 100%;
}

.blog__card-text.news__text {
    min-height: 68px;
}

.blog__pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.blog__pagination-button {
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 8px;
}

.blog__pagination-button img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(16%) saturate(0%) hue-rotate(264deg) brightness(106%) contrast(77%);
}

.blog__pagination-button:disabled {
    border: none;
    color: #FFF;
}

.blog__pagination-button:disabled img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(316deg) brightness(104%) contrast(103%);
}

.blog__pagination-button--prev {
    transform: rotate(180deg);
}

.blog__pagination {
    width: 100%;
}

.footer-blog {
    padding-top: 168px;
}

.article {
    padding: 32px 16px;
}

.article .wrapper {
    display: flex;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    flex: 1 0 0;
    flex-wrap: wrap;
}

.article__content h1 {
    color: #1D1D1B;
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
}

.article__content {
    display: flex;
    align-items: center;
    flex: 1 1 288px;
    flex-direction: column;
    gap: 32px;
}

.article__sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1 1 288px;
}

.article__content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    width: 100%;
}

.blog__hero-content-text--desc {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog__hero-content-text--faq {
    gap: 8px;
}

.blog__hero-content-text--faq p {
    font-size: 14px;
}

.article__content-box .faq__accordion {
    background: transparent;
    padding: 0;
}

.article__content-boxing img {
    width: 100%;
    height: 276px;
}

.article__content-boxing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.article__content-boxing h2 {
    color: #1D1D1B;
    font-weight: 600;
    line-height: 1.2;
}

.article__content-boxing p {
    color: #4B4B49;
    font-weight: 400;
    line-height: 1.2;
}

.article__content-filter {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 20px;
    background: #F9FAFB;
    gap: 20px;
}

.article__content-filter-grid {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}

.article__content-faq {
    padding: 16px;
    border-radius: 20px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.article__content-faq h3 {
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
}

.article__sidebar-nav {
    display: none;
}

.article__sidebar {
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    background: #F9FAFB;
}

.article__sidebar .credit-box__title {
    font-size: 18px;
}

.article__sidebar .faq__accordion {
    padding: 0;
}

.article-about--title {
    color: #1D1D1B;
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
}

.article-about .article__content-boxing img {
    height: 220px;
    border-radius: 20px;
    display: block;
    margin: 20px 0 9px 0;
}

.article__content-boxing--grid {
    padding: 32px 16px 16px 16px;
    border-radius: 24px;
    background: #F4F4F1;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article__content-boxing--grid-box {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 8px;
    flex: 1 0 0;
    flex-wrap: wrap;
}

.article__content-boxing--grid-item {
    display: flex;
    height: 204px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 176px;
    gap: 8px;
    border-radius: 16px;
    background: #FFF;
}

.article__content-boxing--grid-item h4 {
    color: #1D1D1B;
    font-weight: 600;
}

.article__content-boxing--grid-item p {
    color: #393937;
    font-weight: 400;
}

.article__content-boxing--grid h3 {
    color: #1D1D1B;
    font-size: 18px;
}

.article__content-boxing--big {
    margin: 9px 0 0 0;
    color: #1D1D1B;
    font-weight: 600;
}

.article__content-boxing--badge {
    padding: 32px;
    border-radius: 20px;
    background: #F9FAFB;
    margin-bottom: 7px;
}

.article__content-boxing--badge p {
    color: #1D1D1B;
    font-weight: 600;
}

.article__content-boxing--badge p span {
    color: #E30613
}

.article__content-faq--about {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #DDDDDB;
    background: #FFF;
    gap: 32px;
}

.article__content-faq--about .faq__accordion-item {
    gap: 0;
}

.article__content-faq--about .faq__accordion-item .faq__accordion-header {
    min-height: 38px;
    align-items: flex-start;
}

.article__content-faq--about .faq__accordion {
    gap: 20px
}

.article__content-faq--about .faq__accordion-body {
    padding: 0;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.article__content-faq--about .loan-application__doc-link {
    padding: 12px;
}

.article__content-faq--about .loan-application__doc-img {
    display: none;
}

.article__content-faq--about .loan-application__doc-description {
    font-size: 14px;
    letter-spacing: normal;
}

.blog__hero-content--about .blog__hero-content-text--faq p {
    font-size: 16px;
}

.advantages--about {
    padding-top: 24px;
    padding-bottom: 24px;
}

.registration-container {
    padding: 16px;
}

.registration-container .wrapper {
    padding: 4px;
    border-radius: 24px;
    background: #F9FAFB;
}

.registration-container__inner {
    display: flex;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px 48px;
    align-self: stretch;
    flex-wrap: wrap;
    border-radius: 20px;
    background: #FFF;
}

.registration-content {
    flex: 1 1 248px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.registration-content h1 {
    color: #1D1D1B;
    font-size: 30px;
    font-weight: 700;
}

.registration-form {
    flex: 1 1 248px;
    padding: 4px;
    border-radius: 20px;
    background: #F9FAFB;
}

.registration-form-box {
    padding: 24px 12px;
    border-radius: 16px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
}

.registration-form-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    align-self: stretch;
}

.registration-form-title h3 {
    color: #1D1D1B;
    font-size: 18px;
    font-weight: 600;
}

.registration-form-title p {
    color: #4B4B49;
    font-weight: 400;
}

.registration-content__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.form__captcha {
    display: flex;
    width: 100%;
    height: 76px;
}

.form__captcha img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.registration-content__text h2 {
    color: #1D1D1B;
    font-size: 18px;
    font-weight: 600;
}

.registration-content__text p {
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 400;
}

.registration-content__image {
    height: 176px;
    border-radius: 20px;
    overflow: hidden;
}

.registration-content__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.registration-content__box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.registration-content__box h3 {
    color: #1D1D1B;
    font-weight: 600;
}

.registration-content__box p {
    color: #5E5E5C;
    font-weight: 400;
    display: inline;
}

.registration-content__box p a {
    color: #1C64F2;
    text-decoration: none;
}

.footer-registration {
    padding-top: 200px;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.form__checkbox-group .form__checkbox-label {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    padding: 12px;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.4s;
}

.form__checkbox-group .form__checkbox-label:hover {
    border: 1px solid #1C64F2;
    background: #F9FAFB;
}


.form__checkbox-group .form__checkbox-label span {
    color: #9B9B99;
    font-weight: 400;
}

.form__checkbox-group .form__checkbox-label span a {
    color: #1C64F2;
    text-decoration: none;
}

.form__submit {
    padding: 16px;
    width: 100%;
    min-height: 56px;
}

.form__actions {
    width: 100%;
}

.form__box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.form__checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    align-self: stretch;
}

@media (min-width: 576px) {
 .form__checkbox-group {
    gap: 24px;
 }
}

.form__box-label {
    width: 100%;
}

.document,
.documents {
    display: none;
}

.document.active,
.documents.active  {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.form__checkbox-group--radio .form__checkbox-label {
    align-items: center;
    display: flex;
    gap: 8px;
}

.form__checkbox-group--radio .form__checkbox-label {
    padding: 2px;
}

@media (min-width: 576px) {
.form__checkbox-group--radio .form__checkbox-label {
    padding: 12px;
}
}

.form__checkbox-group--radio .form__checkbox-label span {
    font-weight: 700;
    color: #1D1D1B;
}

.form__box-label span {
    color: #9B9B99;
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.12px;
}

/* @egeleon
.form__actions {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 8px;
    align-self: stretch;
}
*/

.form__actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
    align-self: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.form__actions .btn {
    padding: 16px;
    flex: 1
}

.form__actions .form__sign-in {
    text-decoration: none;
}

.form__actions .form__sign-in img {
    transform: rotate(180deg);
}

.form__box-group3 {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.form__box-disable {
    /*    max-height: 0;   #egeleon */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.registration-content__box a {
    color: #1C64F2;
    text-decoration: none;
    transition: all 0.4s;
}

.form__checkbox-group a {
    color: #1C64F2;
    text-decoration: none;
    transition: all 0.4s;
}

.form__checkbox-group a:hover {
    color: #3D89DF;
}

.form__checkbox-group a:active {
    color: #0046D4;
}

.registration-content__box a:hover {
    color: #3D89DF;
}

.registration-content__box a:active {
    color: #0046D4;
}

.registration-form .registration-form {
    padding: 12px;
    background: #fff;
}

.registration-form--with-calc .registration-form-box {
    padding: 0;
}

.registration-form--with-calc .credit-form__label {
    font-size: 18px;
}

.registration-form--with-calc .credit-form__term strong {
    font-size: 18px;
}

.registration-form .loan-application__calc {
    padding: 0;
}

.registration-form--with-calc {
    background: #fff;
}

.registration-form--with-calc .credit-box__content {
    padding: 0;
    width: 100%;
}

#app {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.base-timer {
    position: relative;
    max-width: 237px;
    width: 100%;
    height: 100%;
    max-height: 237px;
}

.base-timer__svg {
    transform: scaleX(1);
    overflow: visible;
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 5px;
    stroke: #f0f2f5;
}

.base-timer__path-remaining {
    stroke-width: 5px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

.base-timer__path-remaining.arc {
    color: #E30613;
    stroke-linecap: butt;
}

.base-timer__label {
    position: absolute;
    max-width: 237px;
    width: 100%;
    height: 100%;
    max-height: 237px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D1D1B;
    font-size: 25px;
    font-weight: 600;
}

.registration-form--timer .registration-form-box {
    padding: 24px 12px;
    border-radius: 16px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
}

.form__box-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    align-self: stretch;
}

.form__box-title h2 {
    color: #1D1D1B;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
}

.form__box-title p {
    color: #4B4B49;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}

.form__checkbox-group.form__checkbox-group--two {
    flex-direction: column;
}

.form__checkbox-group.form__checkbox-group--radio {
    flex-direction: row;
}

.contacts {
    padding: 16px;
    border-radius: 20px;
    background: #F9FAFB;
}

.contacts__title {
    color: #1D1D1B;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contacts__address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    margin-bottom: 12px;
}

.contacts__address-label {
    color: #1D1D1B;
}

.contacts__address-text {
    font-weight: 400;
    color: #1D1D1B;
}

.contacts__schedule-title {
    color: #1D1D1B;
    margin-bottom: 8px;
}

.contacts__schedule-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.contacts__schedule-description {
    color: #1D1D1B;
}

.contacts__schedule-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    justify-content: space-between;
}

.contacts__schedule-days {
    font-weight: 400;
    color: #1D1D1B;
}

.contacts__schedule-time {
    text-align: right;
    color: #1D1D1B;
    font-weight: 600;
}

.contacts__schedule-item {
    margin-bottom: 12px;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.contacts__phone {
    color: #1D1D1B;
    text-align: right;
    font-size: 21px;
    font-weight: 600;
    text-decoration: none;
}

.contacts__email {
    color: #868684;
    font-weight: 400;
    text-decoration: none;
}

.contacts__social-link {
    text-decoration: none;
}

.contacts__social {
    margin-top: 4px;
}

.maps {
    height: 476px;
    width: 100%;
}

.maps img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form__checkbox-label-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.form__checkbox-label-text b {
    color: #1D1D1B;
    font-weight: 700;
}

.form__checkbox-label-text span {
    color: #9B9B99;
    font-weight: 400;
}

.form__checkbox-group--contacts .form__checkbox-label {
    align-items: center;
}

.loan-terms-hero .credit-box__title {
    margin-bottom: 32px;
    font-size: 18px;
}

.loan-terms-hero .credit-form__field {
    gap: 27px;
}

.loan-terms-hero .credit-box__link {
    margin: 8px 0 33px auto;
}

.loan-terms-hero .credit-form__field input {
    padding: 16px;
    min-height: auto;
}

.loan-terms-hero .credit-form__range-wrapper input {
    padding: 0;
}

.loan-terms-hero .registration-form--with-calc .credit-form__label,
.loan-terms-hero .registration-form--with-calc .credit-form__term strong {
    font-size: 14px;
}

.loan-terms-hero .credit-form__field--row {
    margin-bottom: 24px;
}

.loan-terms-hero .registration-form {
    padding: 4px;
    border-radius: 20px;
    background: #F9FAFB;
}

.loan-terms-hero .hero__calculate {
    padding: 24px 12px;
    border-radius: 16px;
    background: #FFF;
}

.loan-terms-hero .registration-content {
    gap: 14px;
}

.loan-terms-hero .get-credit__condition {
    min-height: 152px;
}

.get-credit2 .get-credit__steps-list .get-credit__step:nth-of-type(4) {
    padding-bottom: 0;
    border-bottom: 0;
}

.get-credit2 .get-credit__image {
    max-height: 277px;
    height: 277px;
}

.article-privecy .article__content {
    gap: 16px;
    align-items: flex-start;
}

.article-privecy .article__content-box {
    gap: 16px;
}

.article__content-boxing--text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article__content-boxing--text p,
.article-privecy .article__content-box ol li,
.article-privecy .article__content-box ul li,
.article__content-boxing--text a {
    color: #4B4B49;
    font-weight: 400;
    text-decoration: none;
}

.article-privecy .article__content-box ol {
    list-style: disc;
    padding-left: 20px;
}

.article-privecy .article__content-box ul {
    list-style: decimal;
    padding-left: 20px;
}

.registration-content__image {
    width: 100%;
    height: 183px;
}

.registration-content__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.registration-content--btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.registration-content--btns .btn {
    padding: 16px;
    text-decoration: none;
}

.registration-content-thank-you .footer__contacts {
    align-items: flex-start;
}

.registration-content-thank-you .footer__contacts .footer__contact-phone {
    font-size: 21px;
}

.registration-content-thank-you .footer__contacts .footer__contact-email {
    font-size: 21px;
}

.registration-form.registration-form-thank-you {
    padding: 0;
    background: transparent;
    height: 376px;
    margin: 0 auto;
}

.registration-form.registration-form-thank-you img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.registration-container__inner-thank-you {
    flex-direction: column-reverse;
}

.personal-account__section {
    padding: 32px 16px;
    background: #FFF;
}

.personal-account__section .container {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    flex: 1 0 0;
    flex-wrap: wrap;
}

.personal-account__sidebar {
    display: flex;
    min-width: 276px;
    align-items: center;
    flex: 1 0 0;
    border-radius: 24px;
    border: 12px solid #F9FAFB;
}

.personal-account__sidebar-container {
    padding: 12px;
    width: 100%;
    border-radius: 16px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
}

.personal-account__sidebar-container h1 {
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2; 
}

.personal-account__sidebar-main {
    width: 100%;
}

.personal-account__sidebar-list {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
}

.personal-account__sidebar-link {
    padding: 8px 12px;
    gap: 8px;
    text-decoration: none;
    min-height: 36px;
}

.personal-account__sidebar-link.button-black img{
     filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(245deg) brightness(108%) contrast(106%);
}

.personal-account__sidebar-link:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(245deg) brightness(108%) contrast(106%);
}

.personal-account__sidebar-link:active img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(245deg) brightness(108%) contrast(106%);
}

.personal-account__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 276px;
    flex: 1 0 0;
}

.personal-account__main h2 {
    color: #1D1D1B;
    font-size: 25px;
    font-weight: 700;
}

.personal-account__main-history-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    width: 100%;
}

.personal-account__main-history-credits-box {
    border: 8px solid #F9FAFB;
    border-radius: 24px;
    padding: 12px;
    background: #FFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.personal-account__main-history-credits-row {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    align-self: stretch;
    flex-wrap: wrap;
}

.personal-account__main-history-credits-col {
    display: flex;
    min-width: 116px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 4px;
    transition: all 0.4s;
}

.personal-account__main-history-credits-col:hover {
    background: #F9FAFB;
}

.personal-account__main-history-credits-col:active {
    background: #E5E7EB;
}

.personal-account__main-history-credits-col p {
    color: #1D1D1B;
    font-weight: 700;
}

.personal-account__main-history-credits-col span {
    color: #9B9B99;
    font-weight: 400;
}

.personal-account__main-history-credits-list {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
}

.personal-account__main-history-credits-link {
    padding: 4px;
    color: #1C64F2;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s;
}

.personal-account__main-history-credits-link:hover {
    color: #3D89DF;
}

.personal-account__main-history-credits-link:active {
    color: #0046D4;
}

.personal-account__main-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-self: stretch;
}

.personal-account__main-header p {
    color: #4B4B49;
    font-weight: 400;
}

.personal-account__form-card {
    border: 8px solid #F9FAFB;
    border-radius: 24px;
    width: 100%;
}

.personal-account__form-card-content {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    border-radius: 20px;
    background: #FFF;
}

.personal-account__form-card-content h3 {
    color: #1D1D1B;
    font-size: 18px;
    font-weight: 600;
}

.personal-account__form-card-col {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.personal-account__form-card-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.form__box-labels {
    display: flex;
    min-width: 224px;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.personal-account__form-card-delate {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    background: #FFF;
    border: 1px solid transparent;
    transition: all 0.4s;
}

.personal-account__form-card-delate:hover {
    background: #FD382A;
}

.personal-account__form-card-delate:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(255deg) brightness(108%) contrast(101%);
}

.personal-account__form-card-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    width: 100%;
}

.personal-account__text {
    position: relative;
}

.personal-account__text  input{
    padding-right: 40px;
}

.personal-account__text:before {
    content: "";
    background: url(../images/pen.svg) no-repeat center;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 2;
}

.personal-account__form-card-label label {
    color: #1D1D1B;
}

.personal-account__form-card-btn {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
}

/* @egeleon
.personal-account__form-card-btn-left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
}
 */
.personal-account__form-card-btn-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: space-between;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
}

.personal-account__form-card-btn .btn, .personal-account__form-card-btn-left .btn  {
    text-decoration: none;
    padding: 16px;
    min-height: 56px;
    width: max-content;
}


.personal-account__text {
    width: 100%;
}

.personal-account__save-cards {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px 24px;
    align-self: stretch;
    flex-wrap: wrap;
}

.personal-account__save-cards--label {
    display: flex;
    min-width: 224px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.form__submit--width img {
    width: 24px;
    height: 24px;
}

.personal-account__text--date::before {
    content: none;
}

.personal-account__text--date input{
    padding: 12px;
}

.personal-account__save-cards--label--full,
.personal-account__save-cards--label--full-width {
    width: 100%;
}

.personal-account__save-cards--label--file .personal-account__text::before {
    content: "";
    background: url(../images/file.svg) no-repeat center;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 2;
}

.personal-account__full-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
}

.footer__bottom-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.repayment-schedule-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.repayment-schedule-content-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
    gap: 8px;
}

.repayment-schedule-content-text {
    color: #757575;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%; 
}

.repayment-schedule-content-value {
    color: #212121;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%; 
    flex-shrink: 0;
}






























    .footer__bottom .footer__copyright{
        width: 100%;
        min-width: 100%;
    }








@media (min-width: 576px) {
    .news__all-link {
        max-width: 316px;
    }
}


@media (min-width: 1280px) {
    .header__top .wrapper {
        max-width: 1540px;
    }

    .footer__bottom {
        gap: 64px;
    }

    .footer__bottom .footer__copyright{
        min-width: auto;
    }

    .header__top {
        padding: 16px 0;
    }

    .header {
        padding: 0 52px;
    }

    .header__mobile-menu {
        display: none;
    }

    .header__mobile-nav {
        display: none;
    }

    .header__logo {
        width: 121px;
        height: 38px;
    }

    .header__controls {
        display: flex;
        align-items: center;
        gap: 32px;
        align-self: stretch;
    }

    .header__contacts {
        display: flex;
        align-items: center;
        gap: 12px;
        align-self: stretch;
        padding-right: 16px;
    }

    .header__phone {
        padding: 4px;
        color: #1D1D1B;
        text-decoration: none;
        transition: all 0.4s;
    }

    .header__phone:hover {
        color: #FF553E;
    }

    .header__phone:active,
    .header__phone:focus {
        color: #E30613;
    }

    .header__accessibility {
        gap: 4px;
        padding: 4px;
        background: transparent;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__lang-select {
        padding: 4px;
        color: #1D1D1B;
        font-family: inherit;
        font-size: inherit;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        border: none;
        background: transparent;
    }

    .header__account {
        display: flex;
        align-items: center;
        gap: 12px;
        align-self: stretch;
    }

    .header__account-separator {
        width: 0.5px;
        height: 16px;
        background: #C7C6C4;
    }

    .header__account-link {
        padding: 4px;
        color: #1C64F2;
        text-decoration: none;
        transition: all 0.4s;
    }

    .header__account-link:hover {
        color: #3D89DF;
    }

    .header__account-link:active {
        color: #0046D4;
    }

    .header__bottom {
        display: block;
        width: 100%;
    }

    .header__bottom .wrapper {
        background: #F9FAFB;
        padding: 8px;
        max-width: 1800px;
        border-radius: 12px;
        margin: 0 auto;
    }

    .header__nav {
        max-width: 1540px;
        margin: 0 auto;
    }

    .header__nav-list {
        display: flex;
        align-items: center;
        gap: 27px;
    }

    .header__nav-dropdown {
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        width: max-content;
        display: flex;
        min-width: 100%;
        flex-direction: column;
        gap: 8px;
        padding-top: 8px;
        background: #F9FAFB;
        transition: all 0.4s;
    }

    .header__nav-item {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .header__nav-item:hover .header__nav-dropdown {
        max-height: 500px;
    }

    .header__nav-link {
        color: #1D1D1B;
        text-decoration: none;
        padding: 4px;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: all 0.4s;
    }

    .header__nav-item--dropdown .header__nav-link::after {
        content: "";
        background: url('../images/select.svg') no-repeat center;
        width: 16px;
        height: 16px;
        transition: all 0.4s;
    }

    .header__nav-item--dropdown:hover .header__nav-link::after {
        transform: rotate(180deg);
    }

    .header__nav-dropdown-item {
        padding: 4px;
    }

    .header__nav-dropdown-link {
        color: #1D1D1B;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.4s;
    }

    .header__nav-link:hover,
    .header__nav-dropdown-link:hover {
        color: #FF553E;
    }

    .header__nav-link:hover::after {
        filter: brightness(0) saturate(100%) invert(47%) sepia(24%) saturate(5257%) hue-rotate(335deg) brightness(99%) contrast(105%);
    }

    .header__nav-link:active,
    .header__nav-dropdown-link:active {
        color: #E30613;
    }

    .header__nav-link:active:after {
        filter: brightness(0) saturate(100%) invert(9%) sepia(92%) saturate(4573%) hue-rotate(350deg) brightness(129%) contrast(108%);
    }

    main {
        margin-top: 110px;
    }

    .hero {
        padding: 48px 52px;
    }

    .hero .wrapper {
        max-width: 1540px;
        gap: 24px;
    }

    .hero__banner {
        padding: 12px;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    .hero__banner-content {
        min-width: 676px;
        padding-left: 64px;
        flex: 1 0 0;
    }

    .hero__title {
        align-items: flex-start;
        gap: 16px;
        max-width: 60%;
    }

    .hero__title-primary {
        font-size: 80px;
        letter-spacing: -1.6px;
        text-align: left;
    }

    .hero__title-secondary {
        font-size: 55px;
        letter-spacing: -1.1px;
        margin-bottom: 16px;
        text-align: left;
    }

    .hero__subtitle {
        font-size: 30px;
    }

    .hero__calculate {
        min-width: 376px;
        max-width: 376px;
    }

    .credit-box__content {
        padding: 32px;
    }

    .credit-box__title {
        font-size: 25px;
        margin-bottom: 32px;
    }

    .credit-form__field--row .credit-form__label {
        font-size: 16px;
    }

    .credit-form__term strong {
        font-size: 16px;
    }

    .credit-form__field--row {
        margin-bottom: 24px;
    }

    .btn {
        font-size: 16px;
    }

    .credit-box__link {
        margin: 8px 0 32px auto;
    }

    .hero__card {
        padding: 12px 12px 12px 32px;
        gap: 24px;
    }

    .hero__card-title {
        font-size: 18px;
    }

    .hero__card-image {
        min-width: 200px;
    }

    .hero__banner-image img {
        object-position: right center;
    }

    .get-credit {
        padding: 48px 52px;
    }

    .get-credit .wrapper {
        padding: 64px 12px 12px 12px;
        border-radius: 24px;
    }

    .get-credit__wrapper {
        max-width: 1176px;
        gap: 48px;
    }

    .heading-secondary {
        font-size: 30px;
    }

    .get-credit__container {
        gap: 48px;
        align-items: stretch;
    }

    .get-credit__image {
        height: 100%;
        max-height: max-content;
    }

    .get-credit__content {
        padding-top: 24px;
        gap: 27px;
    }

    .get-credit__steps {
        gap: 32px;
        padding-right: 24px;
    }

    .get-credit__steps-title {
        font-size: 25px;
    }

    .get-credit__steps-list {
        gap: 16px
    }

    .get-credit__step {
        padding: 4px 16px 20px 16px;
    }

    .get-credit__step-title {
        font-size: 18px;
    }

    .get-credit__conditions-title {
        font-size: 18px;
    }

    .loan-application__content {
        max-width: 1176px;
        gap: 24px;
    }

    .loan-application {
        padding: 48px 52px;
    }

    .loan-application .credit-box__content {
        position: static;
    }

    .loan-application .wrapper {
        padding: 64px 12px 69px;
    }

    .loan-application__content .credit-box__content {
        padding: 32px;
    }

    .loan-application__table {
        padding: 32px;
    }

    .loan-application__info-title {
        font-size: 21px;
        padding: 32px 32px 0 32px;
        width: 100%;
        margin-bottom: 32px;
    }

    .loan-application__tabs {
        padding: 0 32px;
    }

    .loan-application__tab {
        font-size: 16px;
        justify-content: center;
    }

    .loan-application__accordion-content {
        max-height: 243px;
    }

    .loan-application__tab-content {
        padding: 0 32px;
    }

    .advantages {
        padding: 96px 52px;
    }

    .advantages .wrapper {
        max-width: 1176px;
        gap: 48px;
    }

    .advantages__box {
        gap: 24px
    }

    .advantages__box-image {
        height: 576px;
    }

    .advantages__box-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .advantages__box-content-card {
        width: 276px;
        height: 276px;
        padding: 24px;
    }

    .advantages__box-content-img span {
        font-size: 18px;
    }

    .advantages__box-content-text h3 {
        font-size: 16px;
    }

    .pay {
        padding: 0 52px;
        position: relative;
    }

    .pay .wrapper {
        max-width: 1176px;
        position: relative;
        padding: 32px 0;
        z-index: 2;
    }

    .pay__background {
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        max-width: 1816px;
        border-radius: 24px;
        overflow: hidden;
    }

    .pay__background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .pay-mobile__title {
        display: none;
    }

    .pay__image {
        display: none;
    }

    .pay__wrapper {
        display: flex;
        max-width: 576px;
        align-items: center;
        align-self: stretch;
    }

    .pay__content {
        display: flex;
        flex-direction: column;
        padding: 32px 16px 16px 16px;
        gap: 24px;
        flex: 1 0 0;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.50);
        backdrop-filter: blur(12px);
    }

    .pay__title {
        display: block;
        color: #1D1D1B;
        font-size: 21px;
    }

    .pay__cards {
        display: flex;
        align-items: center;
        align-content: center;
        gap: 16px;
        flex: 1 0 0;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .pay__card {
        width: 264px;
        height: 264px;
        padding: 16px 108px 16px 16px;
        position: relative;
        overflow: hidden;
    }

    .pay__card-title {
        font-size: 16px;
    }

    .pay__card-info {
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .pay__card-button,
    .pay__card-link {
        min-height: auto;
    }

    .pay__card-image {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .pay__card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .reviews {
        padding: 128px 52px;
    }

    .reviews .wrapper {
        max-width: 1176px;
        gap: 24px;
        position: relative;
    }

    .reviews__all-link {
        padding: 16px;
        width: max-content;
        min-width: max-content;
        flex: none;
    }

    .reviews__nav-button--prev {
        position: absolute;
        bottom: 71px;
        left: 0;
    }

    .reviews__nav-button--next {
        position: absolute;
        bottom: 71px;
        right: 0;
    }

    .reviews__slider {
        width: 776px;
        margin: 0 auto;
        padding: 0;
        overflow: hidden;
    }

    .reviews__slide {
        width: 776px !important;
    }

    .reviews__quote {
        flex-direction: row;
        align-items: flex-start;
    }

    .reviews__author {
        background: url(../images/reviews-desk.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 276px;
        height: 180px;
        padding: 64px 72px 64px 48px;
        text-align: left;
        min-width: 276px;
    }

    .faq__accordion {
        gap: 20px;
    }

    .reviews__text {
        padding: 45px 0 0 0;
        font-size: 16px;
    }

    .faq .wrapper {
        gap: 48px;
        padding: 64px 12px;
    }

    .faq .wrapper h2 {
        max-width: 1176px;
    }

    .faq__content,
    .faq__warning,
    .faq__categories {
        max-width: 1176px;
    }

    .faq__image {
        height: 576px;
    }

    .faq__categories {
        gap: 48px;
    }

    .news {
        padding: 96px 52px;
    }

    .news .wrapper {
        max-width: 1176px;
        margin: 0 auto 48px auto;
        position: relative;
    }

    .news__slider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .news__slider-box {
        max-width: 1816px;
        padding: 0 60px;
        margin: 0 auto;
        position: relative;
    }

    .news__nav-button--prev {
        position: absolute;
        left: 0;
        bottom: 120px;
        max-width: 36px;
        width: 100%;
        height: 36px;
    }

    .news__nav-button--next {
        position: absolute;
        right: 0;
        bottom: 120px;
        max-width: 36px;
        width: 100%;
        height: 36px;
    }

    .news__header .reviews__navigation .news__nav-button {
        display: none;
    }

    .news__slider-box .news__nav-button {
        display: flex;
    }

    .footer {
        padding: 32px 52px;
    }

    .footer .wrapper {
        gap: 161px;
        max-width: 100%;
    }

    .footer__scroll {
        max-width: 1176px;
    }

    .footer__content {
        max-width: 1816px;
    }

    .get-credit__background {
        display: block;
    }

    .footer__content-top {
        gap: 24px;
        flex-direction: row;
        align-items: stretch;
    }

    .footer__content-card {
        width: 476px;
    }

    .footer__content-text {
        margin-top: auto;
    }

    .footer__content-card-box {
        display: flex;
        padding: 48px;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
        height: 100%;
    }

    .footer__content-info {
        padding: 48px;
        flex: 1 0 0;
        flex-wrap: nowrap;
    }

    .footer__nav {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        gap: 48px;
        align-self: stretch;
        flex-wrap: wrap;
        flex: 1;
    }

    .footer__nav-title {
        font-size: 18px;
    }

    .footer__contact-phone {
        font-size: 37px;
    }

    .footer__contact-email {
        font-size: 16px;
    }

    .footer__contacts {
        flex: none;
    }

    .footer__nav-column {
        min-width: 288px;
        flex: 1 0 0;
    }

    .loan-application__content .credit-form__field--row .credit-form__label,
    .loan-application__content .credit-form__term strong {
        font-size: 21px;
    }

    .loan-application__docs {
        margin-bottom: 62px;
    }

    .loan-application__table-title {
        font-size: 18px;
    }

    .loan-application__table-box {
        gap: 8px;
    }

    .advantages__box-content-img img {
        width: 25px;
        height: 30px;
    }

    .pay__card-button {
        font-size: 14px;
        padding: 8px 0;
        width: calc(50% - 4px);
    }

    .reviews__nav-button {
        width: 36px;
        height: 36px;
    }

    .faq__warning-content {
        min-height: 138px;
        max-height: 138px;
    }

    .faq__category-title {
        font-size: 21px;
    }

    .faq__category-header {
        gap: 11px;
    }

    .faq__category {
        gap: 21px;
    }

    .news__all-link {
        max-width: max-content;
        min-width: max-content;
    }

    .advantages__box-content {
        gap: 24px;
    }

    .breadcrumb {
        padding: 12px 52px;
    }

    .breadcrumb .wrapper {
        padding: 8px;
        max-width: 1800px;
    }

    .blog__hero {
        padding: 16px 52px;
    }

    .blog__hero .wrapper {
        padding: 12px;
        max-width: 1800px;
        margin: 0 auto;
        width: 100%;
    }

    .blog__hero-content {
        max-width: 1176px;
        padding: 12px 12px 12px 64px;
        align-items: center;
        gap: 128px;
    }

    .blog__hero-content--img {
        height: 276px;
        flex: 0 0 276px;
    }

    .blog__hero-content-text {
        justify-content: center;
    }

    .blog__hero-content-text h1 {
        font-size: 37px;
    }

    .blog__hero-content-text h1 mark {
        font-size: 37px;
    }

    .blog__hero-content-text p {
        font-size: 18px;
    }

    .blog {
        padding: 32px 52px;
    }

    .blog .wrapper {
        max-width: 1176px;
        gap: 48px;
    }

    .blog__tab {
        font-size: 14px;
    }

    .blog__content {
        gap: 48px 24px;
    }

    .blog__article {
        flex: 0 0 276px;
    }


    .footer-blog {
        padding-top: 168px;
    }


    .article {
        padding: 32px 52px;
    }

    .article .wrapper {
        display: flex;
        max-width: 1176px;
        justify-content: space-between;
        align-items: stretch;
        flex: 1 0 0;
    }

    .article__content {
        max-width: 676px;
        gap: 64px;
    }

    .article__sidebar {
        max-width: 376px;
    }

    .article__content h1 {
        font-size: 30px;
    }

    .article__content-boxing {
        gap: 19px;
    }

    .article__content-boxing h2 {
        font-size: 16px;
    }

    .article__content-box {
        gap: 48px;
    }

    .article__content-filter {
        padding: 32px;
    }

    .article__content-filter h3 {
        font-size: 18px;
    }

    .article__content-faq {
        padding: 24px;
        gap: 32px;
    }

    .article__content-faq h3 {
        font-size: 18px;
    }

    .article__sidebar {
        background: transparent;
        padding: 0;
        gap: 16px;
        height: auto;
    }

    .credit-box__content {
        position: sticky;
        top: 100px;
        gap: 16px;
    }

    .credit-box__content-boxs {
        padding: 24px;
        border-radius: 16px;
        background: #FFF;
    }

    .article__sidebar-nav {
        display: flex;
        flex-direction: column;
        border-radius: 24px;
        background: #F9FAFB;
        padding: 12px;
        width: 100%;
    }

    .article__sidebar .credit-box__title {
        font-size: 21px;
    }

    .article__sidebar-bg {
        padding: 24px;
        border-radius: 16px;
        background: #FFF;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        flex: 1 0 0;
    }

    .article__sidebar-bg h3 {
        color: #1D1D1B;
        font-size: 21px;
        font-weight: 500;
        line-height: 120%;
    }

    .article__sidebar-bg ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4px;
        align-self: stretch;
    }

    .article__sidebar-bg ul li a {
        color: #1D1D1B;
        text-decoration: none;
        gap: 4px;
        display: flex;
        align-items: flex-start;
        padding: 4px;
        transition: all 0.4s;
    }

    .article__sidebar-bg ul li a:hover {
        color: #FF553E;
    }

    .article__sidebar-bg ul li a:active {
        color: #E30613;
    }

    .article__sidebar-bg ul li a:hover::before {
        filter: brightness(0) saturate(100%) invert(41%) sepia(99%) saturate(1920%) hue-rotate(336deg) brightness(101%) contrast(101%);
    }

    .article__sidebar-bg ul li a:active::before {
        filter: brightness(0) saturate(100%) invert(13%) sepia(67%) saturate(7461%) hue-rotate(352deg) brightness(87%) contrast(104%);
    }

    .article__sidebar-bg ul li a::before {
        content: "";
        background: url('../images/list.svg') no-repeat center;
        width: 16px;
        height: 16px;
        min-width: 16px;
        display: flex;
    }

    .credit-box__content {
        padding: 32px;
        border-radius: 8px;
        background: #fff;
        gap: 0;
    }

    .article__content-boxing img {
        height: 476px;
    }

    .article__content-faq .faq__accordion {
        padding: 0;
        background: transparent;
    }

    .blog__hero-content--about .blog__hero-content-text--faq p {
        font-size: 18px;
    }

    .article-about--title {
        font-size: 30px;
    }

    .advantages--about h3 {
        font-size: 16px;
    }

    .article-about .article__content-boxing img {
        height: 376px;
        margin: 12px 0 0 0;
    }

    .article__content-boxing--grid {
        margin-top: -16px;
    }

    .article__content-boxing--grid h3 {
        font-size: 21px;
    }

    .article__content-boxing--grid-item h4 {
        font-size: 16px;
    }

    .article__content-boxing--grid-box {
        gap: 16px;
    }

    .article__content-boxing--big {
        font-size: 16px;
        margin: -18px 0 0 0;
    }

    .article__content-boxing--badge {
        width: 100%;
        margin-top: -24px;
        margin-bottom: -15px;
    }

    .article__content-boxing--badge p {
        font-size: 16px;
    }

    .article__content-faq--about .loan-application__doc-img {
        display: flex;
    }

    .article__content-faq--about .faq__accordion-body {
        padding: 0 16px;
    }

    .article__content-faq--about .loan-application__doc-link {
        padding: 20px;
    }

    .reviews--about {
        padding-bottom: 0;
    }

    .registration-container {
        padding: 16px 52px;
    }

    .registration-container .wrapper {
        padding: 12px;
        max-width: 1800px;
        width: 100%;
        margin: 0 auto;
    }

    .registration-container__inner {
        max-width: 1176px;
        padding: 12px 12px 12px 64px;
        gap: 64px;
    }

    .registration-content {
        padding: 64px 0;
    }

    .registration-content h1 {
        font-size: 37px;
    }

    .registration-content__text h2 {
        font-size: 21px;
    }

    .registration-content__text p {
     /*     font-size: 18px; @egeleon */
    }

    .registration-content__box h3 {
        font-size: 16px;
    }

    .registration-content__box p {
        font-size: 16px;
    }

    .registration-content__image {
        height: 276px;
        border-radius: 20px;
    }

    .registration-form {
        padding: 12px;
        border-radius: 24px;
    }

    .registration-form-box {
        padding: 24px;
    }

    .registration-form-title h3 {
        font-size: 21px;
    }

    .registration-form__step {
        font-size: 16px;
        font-weight: 400;
    }

    .footer-registration {
        padding-top: 192px;
    }

    .breadcrumb__list {
        max-width: 1540px;
        width: 100%;
        margin: 0 auto;
    }

    .form__checkbox-group {
        flex-direction: row;
    }

    .registration-form--with-calc {
        background: #F9FAFB;
    }

    .registration-form .registration-form-box {
        padding: 12px;
    }

    .registration-form--with-calc .credit-box__content {
        padding: 32px;
        background: #fff;
        position: static;
    }

    .registration-form--with-calc .credit-form__label {
        font-size: 21px;
    }

    .registration-form--with-calc .credit-form__term strong {
        font-size: 21px;
    }

    .registration-form .loan-application__calc {
        gap: 24px;
    }

    .registration-form .registration-form-box {
        padding: 24px;
    }

    .form__box-title h2 {
        font-size: 21px;
    }

    .form__box-title p {
        font-size: 16px;
    }

    .contacts {
        padding: 32px;
    }

    .contacts__title {
        font-size: 21px;
        margin-bottom: 24px;
    }

    .contacts__address-label {
        font-size: 16px;
    }

    .contacts__address {
        margin-bottom: 24px;
    }

    .contacts__schedule-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .contacts__schedule-item {
        margin-bottom: 24px;
    }

    .contacts__phone {
        font-size: 25px;
    }

    .contacts__email {
        font-size: 16px;
    }

    .maps {
        padding-top: 16px;
    }

    .loan-terms-hero .registration-form {
        flex: 0 0 376px;
        width: 100%;
        max-width: 376px;
    }

    .loan-terms-hero .registration-content {
        flex: 1;
    }

    .loan-terms-hero .registration-container__inner {
        gap: 128px;
        border-radius: 24px;
        background: #FFF;
    }

    .loan-terms-hero .registration-form {
        border-radius: 24px;
        background: #F9FAFB;
        padding: 12px;
    }

    .loan-terms-hero .hero__calculate {
        min-width: 100%;
        max-width: 100%;
        padding: 24px;
    }

    .loan-terms-hero .registration-form--with-calc .credit-box__content {
        padding: 0;
    }

    .loan-terms-hero .credit-box__link {
        margin: 12px 0 16px auto;
    }

    .loan-terms-hero .get-credit__condition-title {
        font-size: 14px;
    }

    .loan-terms-hero .get-credit__condition {
        height: auto;
    }

    .loan-terms-hero .get-credit__conditions-list {
        align-items: stretch;
    }

    .loan-terms-hero .credit-box__title {
        font-size: 21px;
        margin-bottom: 15px;
    }

    .loan-terms-hero .credit-form__field {
        gap: 10px;
    }

    .loan-terms-hero .credit-form__range-wrapper input {
        padding: 0;
    }

    .loan-terms-hero .credit-form__range-labels {
        margin-top: 17px;
    }

    .loan-terms-hero .registration-content {
        gap: 40px;
    }

    .get-credit2 .get-credit__background img {
        object-fit: cover;
    }

    .get-credit2 {
        padding: 48px 52px;
    }

    .get-credit2 .wrapper {
        padding: 64px 12px;
    }

    .get-credit2 .get-credit__image {
        max-height: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
    }

    .faq {
        padding: 0 52px;
    }

    .article__sidebar .credit-box__content {
        padding: 12px;
        border-radius: 24px;
    }

    .article-privecy .article__content-boxing {
        gap: 12px;
    }

    .registration-content__image {
        height: 376px;
    }

    .registration-content--btns .btn {
        padding: 16px;
    }

    .registration-container__inner-thank-you {
        flex-direction: row;
        align-items: center;
    }

    .registration-form.registration-form-thank-you {
        background: transparent;
        width: 476px;
        height: 476px;
        flex: none;
        max-width: 476px;
        padding: 0;
    }

    .registration-content-thank-you .footer__contacts .footer__contact-phone {
        font-size: 25px;
    }

    .registration-content-thank-you .footer__contacts .footer__contact-email {
        font-size: 16px;
    }

    .personal-account__section {
        padding: 32px 52px;
    }

    .personal-account__section .container {
        display: flex;
        max-width: 1176px;
        align-items: flex-start;
        gap: 24px;
        flex: 1 0 0;
    }

    .personal-account__sidebar {
        display: flex;
        max-width: 276px;
        align-items: center;
        flex: 1 0 0;
    }

    .personal-account__sidebar-container {
        padding: 24px;
    }

    .personal-account__sidebar-container h1 {
        font-size: 18px;
    }

    .personal-account__main h2 {
        font-size: 30px
    }

    .personal-account__main {
        gap: 32px;
    }

    .personal-account__main-history-credits-box {
        padding: 24px;
    }

    .personal-account__sidebar-link {
        font-size: 14px;
    }

    .personal-account__form-card-content {
        padding: 24px;
    }

    .personal-account__form-card-col {
        padding: 16px 48px;
        gap: 24px;
    }

    .personal-account__form-card-content h3 {
        font-size: 21px;
    }

    .personal-account__save-cards--label {
        min-width: 222px;
    }

    .personal-account__save-cards--label--full-width {
        min-width: 100%;
    }

    .personal-account__save-cards--label--full {
        min-width: 276px;
    }

    .personal-account__full-info .form__actions .btn {
        width: max-content;
        flex: none
    }

    .personal-account__full-info .form__checkbox-label {
        flex: 1;
    }

    .personal-account__full-info .document,
    .personal-account__full-info .documents {
        flex-direction: row;
        flex-wrap: wrap;
    }
}


#popup-overlay, #p2_popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    padding: 32px 16px;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

#popup-overlay.show, #p2_popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-menu {
    border-radius: 16px;
    background: #F9FAFB;
    padding: 8px;
    border-radius: 8px;
    max-width: 400px;
    height: 100%;
    max-height: 492px;
    width: 100%;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

@media (min-width: 1024px) {
    .popup-menu {
        max-width: 560px;
        padding: 16px;
        border-radius: 24px;
        max-height: 599px;
    }

    .repayment-schedule-scroll {
        height: 330px;
    }
}

.popup-menu .close-popup {
    display: flex;
    height: 32px;
    width: 32px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    border: none;
    top: -35px;
    right: 0;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .popup-menu .close-popup {
        top: 0;
        right: -40px;
    }
}

.popup-menu .close-popup span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.popup-menu .close-popup span::before {
    font-size: 20px;
    color: #757575;
}

.popup-menu__content {
    border-radius: 12px;
    display: flex;
    padding: 16px 8px;
    flex-direction: column;
    background: #fff;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    height: 100%;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .popup-menu__content {
        padding: 24px;
        max-height: 100%;
        border-radius: 20px;
    }
}

.popup-menu .repayment-schedule__title {
    color: var(--color-gray-900);
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
}

@media (min-width: 1024px) {
    .popup-menu .repayment-schedule__title {
        font-size: 21px;
    }
}

.popup-menu .repayment-schedule {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    height: 100%;
    overflow: hidden;
}

#popup-overlay.show #popup-menu, #p2_popup-overlay.show #popup-menu  {
    transform: translateY(0);
    opacity: 1;
}

body.no-scroll {
    overflow: hidden;
}

.repayment-schedule__table {
    width: 100%;
    border-collapse: collapse;
}

.repayment-schedule__table th,
.repayment-schedule__table td {
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    padding: 4px 0;
    padding-left: 4px;
}

@media (min-width: 1024px) {

    .repayment-schedule__table th,
    .repayment-schedule__table td {
        padding: 8px 0 8px 8px;
        font-size: 14px;
    }
}


.repayment-schedule__table td:nth-child(2) {
    color: var(--color-gray-900);
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
}

.repayment-schedule__table td:nth-child(3) {
    color: var(--color-gray-600);
    font-size: 12px;
    font-weight: 400;
    text-align: right;
    line-height: 120%;
    padding-right: 4px;
}

@media (min-width: 1024px) {
    .repayment-schedule__table td:nth-child(3) {
        padding: 8px 8px 8px 0;
        font-size: 14px;
    }
}

.repayment-schedule__table tbody tr:nth-child(even) {
    background: #F9FAFB;
}

.repayment-schedule-scroll {
    overflow: auto;
    width: 100%;
    padding-right: 4px;
}


input[type="range"]{
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 20px;
    border: none;
    outline: none;
    padding: 0;
}
input[type="range"]::-webkit-slider-runnable-track{
    -webkit-appearance: none;
    height: 8px;
}
input[type="range"]::-moz-track{
    -moz-appearance: none;
    height: 8px;
}
input[type="range"]::-ms-track{
    appearance: none;
    height: 8px;
}
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    background: url(../images/range.svg);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
     border-radius: 50%;
    margin-top: -5px;
}
input[type="range"]::-moz-range-thumb{
    -webkit-appearance: none;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 50%;
    background: url(../images/range.svg);
    background-repeat: no-repeat;
     border-radius: 50%;
    background-size: cover;
    cursor: pointer;
    margin-top: -18px;
    border: 0 !important;
    box-shadow: inset;
}
input[type="range"]::-ms-thumb{
    -webkit-appearance: none;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 50%;
    background: url(../images/range.svg);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    margin-top: -18px;
    border: 0 !important;
    box-shadow: inset;
}

input[type="range"]:hover {
    border: none;
}

input[type="range"]:active {
    border: none;
}

input[type="range"]:focus {
    border: none;
}

/* @egelon 
.home .hero__figure {
    background: url(/wp-content/uploads/2025/10/background.jpg) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
 */

/* @egelon */
.mobile_hide {
   display: none;
}

@media (min-width: 1280px) {
    .mobile_hide {
       display: revert;
    }
}
