/** Main Styles */

body {
    background-color: #0b0b0b!important;
}

.page-content, .entry-content, .entry-summary {
    margin: 0!important;
}

.post, .page {
    margin: 0!important;
}

form .wpcf7-response-output {
    color: #000000;
}

/** Container Styles */

.container {
    width: 100%;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

@media (max-width: 1536px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/** Header */

.stk-header {
    background: #fff;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin: 0;
    border: 1px solid #0000001A;
    font-family: "Poppins", Sans-serif;
}

.stk-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.stk-header__inner .custom-logo-link img {
    height: 60px;
    width: auto;
    display: block;
}

.stk-nav {
    flex: 1;
}

.stk-nav__list {
    list-style: none;
    margin: 0;
    padding: 7px 0;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.stk-nav__list a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 300ms ease;
}

.stk-nav__list a:visited {
    color: #000000;
}

.stk-nav__list a:hover {
    color: #ff6600;
}

.stk-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 32px;
    background: #ff6600;
    color: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 300ms ease;
}

.stk-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

.stk-btn:visited {
    color: #ffffff;
}

/* TranslatePress */
.stk-lang .trp-shortcode-arrow {
    display: none;
}

.stk-lang .trp-shortcode-switcher {
    padding: 0;
    border-radius: 20px;
    border: 1px solid #FF6600;
}

.stk-lang .trp-shortcode-switcher > .trp-current-language-item__wrapper {
    padding: 0;
}

.stk-lang .trp-shortcode-switcher .trp-language-item {
    padding: 7px 13px;
    gap: 10px;
    min-height: 100%;
    flex-direction: row-reverse;
}

.stk-lang .trp-shortcode-switcher .trp-language-item-name {
    font-size: 18px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    overflow: initial;
}

.trp-shortcode-switcher__wrapper {
    display: flex;
}

.stk-lang ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.stk-lang li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1.5px solid #e6e6e6;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
}

.stk-lang .trp-shortcode-switcher .trp-flag-image {
    width: 25px!important;
}

/* Бургер */
.stk-burger {
    display: none;
    background: transparent;
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    position: relative;
}

.stk-burger span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: 0.2s;
}

.stk-burger span:nth-child(1) {
    top: 12px;
}

.stk-burger span:nth-child(2) {
    top: 18px;
}

.stk-burger span:nth-child(3) {
    top: 24px;
}

.stk-nav__close {
    display: none;
}

/* modal */
.stk-gold-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.75);
    z-index: 10000;
    backdrop-filter: blur(6px);
}

.stk-gold-modal__content {
    position: relative;
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 70%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stk-gold-modal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.stk-gold-modal__form {
    margin-top: 20px;
}

.stk-gold-modal__form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/** Footer */

.s-footer {
    background: #ffffff;
    color: #000000;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) inset;
    font-family: "Poppins", Sans-serif;
}

.s-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 32px;
    padding: 100px 0 50px;
}

@media (max-width: 960px) {
    .s-footer__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

.sf-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sf-brand {
    align-items: center;
    gap: 30px;
}

.sf-logo img {
    max-width: 220px;
    height: auto;
}

.sf-org {
    font-weight: 700;
    font-size: 20px;
}

.sf-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sf-social__title {
    font-weight: 700;
    font-size: 18px;
}

.sf-social__list {
    display: flex;
    gap: 30px;
}

.sf-so {
    display: inline-flex;
    transition: 0.2s ease;
}

.sf-so svg {
    width: 42px;
    height: auto;
}

.sf-so:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.sf-heading {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 50px;
}

.sf-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sf-menu a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 300ms ease;
}

.sf-menu a:visited {
    color: #000000;
}

.sf-menu a:hover {
    color: #ff6600;
}

.sf-nav nav {
    width: 100%;
}

.sf-contacts {
    align-items: flex-start;
    text-align: left;
}

.sf-contacts .sf-heading {
    text-align: center;
    width: 100%;
}

.sf-line {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.sf-ico {
    display: flex;
}

.sf-ico svg {
    width: 28px;
    height: auto;
}

.sf-line__text {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
}

.sf-line__text a {
    color: #000000;
    text-decoration: none;
    transition: all 300ms ease;
}

.sf-line__text a:hover {
    color: #ff6600;
}

.sf-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sf-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.sf-bottom__inner a {
    color: #000000;
}

.sf-bottom__inner a:hover {
    color: #ff6600;
}

@media (max-width: 600px) {
    .sf-bottom__inner {
        flex-direction: column;
        gap: 6px;
    }
}

/** Home Hero Form */

.home-hero-form {
    background-color: #0b0b0b;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 150px;
    font-family: "Poppins", Sans-serif;
}

.home-hero-form__grid {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 50px;
    align-items: start;
}

.home-hero-form__title {
    font-size: 48px;
    font-weight: 700;
    padding-right: 35%;
    margin: 0 0 50px;
}

.home-hero-form__subtitle {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 100px;
}

.home-hero-form__cards {
    display: flex;
    gap: 60px;
    align-items: center;
}

.home-hero-form__card {
    text-align: center;
}

.home-hero-form__card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.home-hero-form__card-text {
    font-size: 20px;
    font-weight: 300;
}

.home-hero-form__divider {
    width: 3px;
    height: 228px;
    background-color: #ff6600;
}

.home-hero-form__form {
    background: #fff;
    border-radius: 20px;
    padding: 39px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.home-hero-form__form .gold-form input[type="submit"] {
    width: 90%;
}

/* form */
.home-hero-form__form .gold-form h2 {
    margin-bottom: 15px;
}

.home-hero-form__form form > p {
    margin: 0 0 10px;
}

.home-hero-form__form form label {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    font-family: "Poppins", Sans-serif;
}

.form-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-tabs > p {
    width: 100%;
    display: flex;
    gap: 10px;
    margin: 0;
}

.form-tab {
    flex: 1;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    background: #f1f1f1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.form-tab.active {
    background: #ff6600;
    color: #fff;
}

.stk-gold-modal__form .gold-form h2 {
    margin-bottom: 15px;
}

.stk-gold-modal__form form > p {
    margin: 0;
}

.form-tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-tabs-header > p {
    width: 100%;
    display: flex;
    gap: 10px;
    margin: 0;
}

.form-tab-header {
    flex: 1;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    background: #f1f1f1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.form-tab-header.active {
    background: #ff6600;
    color: #fff;
}

/** Home Work Cards */

.home-work-cards {
    width: 100%;
    text-align: center;
    background-color: #0b0b0b;
    padding-bottom: 150px;
}

.home-work-cards__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 100px;
    text-align: left;
}

.home-work-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.home-work-cards__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    min-height: 370px;
    max-height: 370px;
}

.home-work-cards__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    filter: brightness(0.4);
    min-height: 370px;
    max-height: 370px;
    transition: all 300ms linear;
}

.home-work-cards__card:hover .home-work-cards__image img {
    transform: scale(1.1);
}

.home-work-cards__content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
}

.home-work-cards__card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.home-work-cards__card-text {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

/** Home Link Cards */

.home-link-cards {
    width: 100%;
    text-align: center;
    background-color: #0b0b0b;
    padding-bottom: 150px;
}

.home-link-cards__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 100px;
    text-align: left;
}

.home-link-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
}

.home-link-cards__card {
    width: 100%;
    padding: 55px 55px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #FF6600;
    border-radius: 20px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 30px 0;
}

.home-link-cards__card:hover {
    background: rgba(255, 106, 0, 0.1);
    transform: translateY(-4px);
}

.home-link-cards__icon {
    display: flex;
    justify-content: center;
}

.home-link-cards__icon svg {
    width: auto;
    height: 130px;
}

.home-link-cards__card-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/** Home Advantage Cards */

.home-advantage-cards {
    width: 100%;
    text-align: center;
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.home-advantage-cards__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 100px;
    text-align: left;
}

.home-advantage-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.home-advantage-cards__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    min-height: 370px;
    max-height: 370px;
}

.home-advantage-cards__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    filter: brightness(0.4);
    min-height: 370px;
    max-height: 370px;
    transition: all 300ms linear;
}

.home-advantage-cards__card:hover .home-advantage-cards__image img {
    transform: scale(1.1);
}

.home-advantage-cards__content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
}

.home-advantage-cards__card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.home-advantage-cards__card-text {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

/** Home Exchange Rate */

.home-exchange-rate {
    width: 100%;
    color: #fff;
    background-color: #0b0b0b;
    padding-bottom: 150px;
}

.home-exchange-rate__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 100px;
}

.home-exchange-rate__subtitle {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 50px;
    padding-right: 15%;
}

.home-exchange-rate__table {
    border: 5px solid #FF6600;
    border-radius: 20px;
    padding: 50px 100px;
    font-family: "Poppins", Sans-serif;
}

.home-exchange-rate__header {
    display: grid;
    gap: 45px 0;
}

.home-exchange-rate__row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}

.home-exchange-rate__header div.home-exchange-rate__row div:nth-of-type(1) {
    text-align: left;
}

.home-exchange-rate__header div.home-exchange-rate__row div:nth-last-of-type(1) {
    text-align: right;
}

.home-exchange-rate__row--head {
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 5px;
}

.home-exchange-rate__cell img {
    margin-right: 30px;
    vertical-align: middle;
}

.home-exchange-rate__cell span {
    vertical-align: middle;
}

.diff.plus {
    color: #00ff6a;
}

.diff.minus {
    color: #ff4444;
}

.muted {
    opacity: 0.6;
    font-size: 0.9em;
}

.loading,
.error {
    padding: 16px;
    text-align: center;
    color: #ccc;
}

/** Home Filial Maps */

.home-filial-maps {
    color: #fff;
    background-color: #0b0b0b;
    padding-bottom: 150px;
}

.home-filial-maps__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 50px;
}

.home-filial-maps__subtitle {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 100px;
}

.home-filial-maps__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
}

.home-filial-maps__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.home-filial-maps__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 5px solid #ff6600;
    border-radius: 20px;
    padding: 57px 30px;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-filial-maps__card.active,
.home-filial-maps__card:hover {
    background: rgba(255, 106, 0, 0.1);
}

.home-filial-maps__card-title {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
}

.home-filial-maps__card-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.home-filial-maps__map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.home-filial-maps__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.home-filial-maps__footer {
    margin-top: 50px;
    text-align: center;
}

.home-filial-maps__button {
    width: 40%;
    display: inline-block;
    padding: 18px 32px;
    background: #ff6600;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.home-filial-maps__button:hover {
    background: #ff8533;
}

/** Home Questions */

.home-questions {
    color: #fff;
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.home-questions__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 100px;
}

.home-questions__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.home-questions__item {
    border: 1px solid #ff6600;
    border-radius: 31px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.home-questions__question {
    cursor: pointer;
    padding: 22px 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 28px;
    font-weight: 700;
    font-family: "Poppins", Sans-serif;
    transition: background 0.3s ease;
}

.home-questions__item svg {
    transform: rotate(0deg);
    transition: all 300ms ease;
}

.home-questions__item.active svg {
    transform: rotate(90deg);
}

.home-questions__icon {
    width: 53px;
    height: 53px;
    min-width: 53px;
    border-radius: 100%;
    background-color: #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.home-questions__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.home-questions__answer p {
    padding: 28px 53px 43px;
    margin: 0;
    font-size: 28px;
    font-weight: 500;
}

/** About Hero Info */

.about-hero-info {
    color: #fff;
    background-color: #0b0b0b;
    padding-bottom: 100px;
    padding-top: 60px;
}

.about-hero-info__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px;
}

.about-hero-info__divider {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    margin-bottom: 60px;
}

.about-hero-info__text {
    width: 100%;
    font-size: 32px;
    font-weight: 700;
}

.about-hero-info__text span {
    color: #ff6600;
    font-weight: 700;
}

.about-hero-info__text br {
    margin-bottom: 10px;
}

/** About Standard Cards */

.about-standard-cards {
    width: 100%;
    text-align: center;
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.about-standard-cards__title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 100px;
    text-align: left;
}

.about-standard-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.about-standard-cards__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    min-height: 370px;
    max-height: 370px;
}

.about-standard-cards__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    filter: brightness(0.4);
    min-height: 370px;
    max-height: 370px;
    transition: all 300ms linear;
}

.about-standard-cards__card:hover .about-standard-cards__image img {
    transform: scale(1.1);
}

.about-standard-cards__content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
}

.about-standard-cards__card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.about-standard-cards__card-text {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

/** About License Cards */

.about-license-cards {
    width: 100%;
    text-align: center;
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.about-license-cards__title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 100px;
    text-align: left;
}

.about-license-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
}

.about-license-cards__card {
    width: 100%;
    padding: 55px 55px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #FF6600;
    border-radius: 20px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 50px 0;
}

.about-license-cards__card:hover {
    background: rgba(255, 106, 0, 0.1);
    transform: translateY(-4px);
}

.about-license-cards__image {
    display: flex;
    justify-content: center;
}

.about-license-cards__card .about-license-cards__image img {
    width: auto;
    height: 190px;
}

.about-license-cards__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/** About Mission */

.about-mission {
    color: #fff;
    text-align: left;
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.about-mission__title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 100px;
}

.about-mission__subtitle {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 100px;
}

.about-mission__button-wrap {
    display: flex;
    justify-content: center;
}

.about-mission__button {
    width: 40%;
    display: inline-block;
    padding: 11px 42px;
    border: 1px solid #ff6600;
    border-radius: 20px;
    color: #fff;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-mission__button:hover {
    background: #ff6600;
    transform: translateY(-2px);
}

/** Document Hero Slider */

.document-hero-slider {
    color: #ffffff;
    text-align: left;
    background-color: #0b0b0b;
    padding-top: 60px;
    padding-bottom: 100px;
}

.document-hero-slider__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px;
}

.document-hero-slider__divider {
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin-bottom: 60px;
}

.document-hero-slider__text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 100px;
}

.document-hero-slider__text br {
    margin-bottom: 10px;
}

/* контейнер слайдера */
.document-hero-slider__swiper {
    position: relative;
    overflow: hidden;
    padding: 0 80px; /* внутренний отступ для стрелок */
    box-sizing: border-box;
}

/* слайды */
.document-hero-slider__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.document-hero-slider__slide img {
    width: 100%;
    height: auto;
    max-width: 420px; /* оптимальная ширина */
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.document-hero-slider__slide img:hover {
    transform: scale(1.04);
}

/* стрелки */
.document-hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    color: #ff6a00;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    background-color: #FF6600;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.document-hero-slider__nav:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.15);
}

.document-hero-slider__nav--prev {
    left: 10px;
}
.document-hero-slider__nav--next {
    right: 10px;
}

/** Filials Hero Cards */

.filials-hero-cards {
    color: #ffffff;
    background-color: #0b0b0b;
    padding-top: 60px;
    padding-bottom: 100px;
    font-family: "Poppins", Sans-serif;
}

/* Заголовок и линия */
.filials-hero-cards__title {
    font-weight: 700;
    font-size: 48px;
    margin: 0 0 30px;
}

.filials-hero-cards__underline {
    height: 2px;
    width: 100%;
    background: #FFFFFF;
    margin-bottom: 60px;
}

/* Сетка карточек 2×2 */
.filials-hero-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}

/* Карточка */
.filials-hero-cards__card {
    padding: 2px;
}

.filials-hero-cards__card.is-hidden {
    display: none;
}

.filials-hero-cards__content {
    border: 3px solid #FF6600;
    border-radius: 30px;
    padding: 51px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.filials-hero-cards__card-title {
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filials-hero-cards__badge {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    padding: 5px 30px;
    border: 1px solid #FF6600;
    text-align: center;
    border-radius: 10px;
    color: #ffffff;
    text-transform: uppercase;
}

.filials-hero-cards__card-text {
    color: #ffffff;
    margin: 0 0 50px;
    padding-right: 15%;
    font-size: 24px;
    font-weight: 400;
}

/* Кнопки */
.filials-hero-cards__btn,
.filials-hero-cards__all-btn {
    text-align: center;
    padding: 11px 32px;
    border: 1px solid #FF6600;
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filials-hero-cards__btn {
    width: 80%;
}

.filials-hero-cards__all-btn {
    width: 30%;
}

.filials-hero-cards__btn:hover,
.filials-hero-cards__all-btn:hover {
    color: #ffffff;
    background: #ff6600;
    border-color: #ff6600;
    transform: translateY(-2px);
}

.filials-hero-cards__btn:visited,
.filials-hero-cards__all-btn:visited {
    color: #ffffff;
}

.filials-hero-cards__all {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/** Filial Hero Info */

.filial-hero-info {
    background: #0b0b0b;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 100px;
    font-family: "Poppins", Sans-serif;
}

.filial-hero-info__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px;
}

.filial-hero-info__underline {
    height: 2px;
    background: #ffffff;
    margin-bottom: 60px;
}

/* инфобар */
.filial-hero-info__infobar {
    display: grid;
    grid-template-columns: 1fr 3px 1fr 3px 1fr;
    align-items: center;
    gap: 0 56px;
    margin-bottom: 60px;
}

.filial-hero-info__info {
    display: flex;
    gap: 17px;
    align-items: center;
}

.filial-hero-info__text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
}

.filial-hero-info__phone {
    color: #fff;
    text-decoration: none;
    transition: all 200ms linear;
}

.filial-hero-info__phone:hover {
    color: #ff6600;
}

.filial-hero-info__sep {
    width: 3px;
    height: 110px;
    background: #ffffff;
    border-radius: 1px;
}

/* медиа блок (фото + карта) */
.filial-hero-info__media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.filial-hero-info__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-height: 500px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

.filial-hero-info__map-embed {
    height: 100%;
}

.filial-hero-info__map-embed iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 0;
}

/** News Hero Cards */

.news-hero-cards {
    background-color: #0b0b0b;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 100px;
    font-family: "Poppins", Sans-serif;
}

.news-hero-cards__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 30px;
}
.news-hero-cards__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}
.news-hero-cards__underline {
    height: 2px;
    width: 100%;
    background: #ffffff;
    margin-bottom: 60px;
}

/* categories dropdown */
.news-hero-cards__cats {
    position: relative;
}

.news-hero-cards__cats-btn {
    display: flex;
    gap: 30px;
    align-items: center;
    background: transparent;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 40px;
    font-weight: 700;
    padding: 0;
}

.news-hero-cards__cats-menu {
    position: absolute;
    right: 0;
    top: 120%;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    list-style: none;
    margin: 0;
    padding: 6px;
    min-width: 220px;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    display: none;
}

.news-hero-cards__cats-menu li a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--news-ink);
    text-decoration: none;
}

.news-hero-cards__cats-menu li a:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* grid */
.news-hero-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
}

@media (max-width: 1024px) {
    .news-hero-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-hero-cards__grid {
        grid-template-columns: 1fr;
    }
}

/* card */
.news-hero-cards__card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-hero-cards__media {
    display: block;
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.news-hero-cards__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 20%, rgba(0, 0, 0, 0.65) 75%, rgba(0, 0, 0, 0.65) 100%);
}

.news-hero-cards__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    z-index: 1;
    color: #fff;
    margin-bottom: 40px;
}

.news-hero-cards__card-title {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.news-hero-cards__card-text {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* actions */
.news-hero-cards__actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-hero-cards__btn {
    width: 60%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 21px 40px;
    border: 1px solid #FF6600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
}

.news-hero-cards__btn:hover {
    color: #ffffff;
    background-color: #FF6600;
}

.news-hero-cards__btn:visited {
    color: #ffffff;
}

/* pagination */
.news-hero-cards__pag {
    margin: 24px 0 10px;
    text-align: center;
}
.news-hero-cards__pag ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 8px;
}
.news-hero-cards__pag li a,
.news-hero-cards__pag li span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: var(--news-ink-d);
}
.news-hero-cards__pag li .current {
    background: var(--news-accent);
    color: #000;
    border-color: var(--news-accent);
    font-weight: 700;
}

/* empty */
.news-hero-cards__empty {
    color: var(--news-ink-d);
}

/** New Hero Info */

.new-hero-info {
    background-color: #0b0b0b;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 100px;
    font-family: "Poppins", Sans-serif;
}

.new-hero-info__title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 30px;
}

.new-hero-info__underline {
    height: 2px;
    width: 100%;
    background: #ffffff;
    margin: 0 0 60px;
}

.new-hero-info__meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.new-hero-info__date {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
}

.new-hero-info__hero {
    margin: 0 0 100px;
}

.new-hero-info__hero-img {
    width: 100%;
    height: 100%;
    max-height: 722px;
    min-height: 722px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.new-hero-info__content {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    font-size: 24px;
    font-weight: 400;
}

.new-hero-info__content p {
    width: 100%;
    margin: 0;
}

.new-hero-info__content ul,
.new-hero-info__content ol {
    width: 100%;
    margin: 0 0 14px 18px;
}

/* === New More Cards (related slider) === */
.new-more-cards {
    background-color: #0b0b0b;
    color: #ffffff;
    padding-bottom: 100px;
}

.new-more-cards__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
}

.new-more-cards__title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.new-more-cards__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-more-cards__all {
    color: #ffffff;
    border: 1px solid #ff6600;
    border-radius: 10px;
    padding: 8px 60px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 300ms ease;
}

.new-more-cards__all:hover {
    background-color: #ff6600;
}

.new-more-cards__all:visited {
    color: #ffffff;
}

.new-more-cards__slider {
    --swiper-navigation-size: 24px;
}

.new-more-cards__card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.new-more-cards__thumb img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
    display: block;
    border-radius: 10px;
}

.new-more-cards__card-title {
    margin: 20px 0 10px;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    transition: all 300ms ease;
}

.new-more-cards__card:hover .new-more-cards__card-title {
    color: #ff6600;
}

.new-more-cards__card-date {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
}

.new-more-cards__empty {
    color: var(--news-ink-dim);
}

/* утилиты */
@media (max-width: 768px) {
    .new-hero-info__title {
        font-size: 22px;
    }
}

/** Gold Hero Info */

.gold-hero-info {
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.gold-hero-info__grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.gold-hero-info__card {
    font-weight: 400;
    font-size: 32px;
    color: #fff;
}

.gold-hero-info__card p {
    margin: 0;
}

.gold-hero-info__card span {
    color: #ff6600;
    font-weight: 700;
}

/** Gold Questions */

.gold-questions {
    color: #fff;
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.gold-questions__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 100px;
}

.gold-questions__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gold-questions__item {
    border: 1px solid #ff6600;
    border-radius: 31px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gold-questions__question {
    cursor: pointer;
    padding: 22px 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 28px;
    font-weight: 700;
    font-family: "Poppins", Sans-serif;
    transition: background 0.3s ease;
}

.gold-questions__item svg {
    transform: rotate(0deg);
    transition: all 300ms ease;
}

.gold-questions__item.active svg {
    transform: rotate(90deg);
}

.gold-questions__icon {
    width: 53px;
    height: 53px;
    border-radius: 100%;
    background-color: #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.gold-questions__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.gold-questions__answer p {
    padding: 28px 53px 43px;
    margin: 0;
    font-size: 28px;
    font-weight: 500;
}

.gold-questions__btn-wrap {
    text-align: center;
    margin-top: 100px;
}
.gold-questions__btn {
    width: 40%;
    text-align: center;
    background: transparent;
    border: 1px solid #ff6600;
    border-radius: 20px;
    color: #ffffff;
    padding: 11px 32px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.gold-questions__btn:hover {
    background: #ff6600;
    color: #ffffff;
    border: 1px solid #ff6600;
}

/* modal */
.gold-questions__modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gold-questions__modal.active { 
    display: flex;
}

.gold-questions__modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 50px 20px;
    max-width: 70%;
    width: 100%;
    position: relative;
}

.gold-questions__modal-close {
    position: absolute;
    top: 68px;
    right: 50px;
    font-size: 24px;
    cursor: pointer;
    color: red;
}

/* form */
.gold-form {
    color: #000000;
    font-family: "Poppins", Sans-serif;
}

.gold-form h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 50px;
}

.gold-form > p {
    margin: 0 0 20px;
}

.gold-form > p > label {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    font-family: "Poppins", Sans-serif;
}

.gold-form > .form-content > p {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
}

.gold-form > .form-content > p > label {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    font-family: "Poppins", Sans-serif;
}

.gold-form > .form-content-header > p {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
}

.gold-form > .form-content-header > p > label {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    font-family: "Poppins", Sans-serif;
}

.gold-form input,
.gold-form select {
    width: 100%;
    border: 1px solid #ff6600!important;
    border-radius: 10px!important;
    padding: 15px 20px!important;
    margin: 10px 0 0;
    font-family: "Poppins", Sans-serif;
}

.gold-form__total {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 50px;
}

.gold-form__total p {
    margin: 0;
}

.gold-form__totalHeader {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 50px;
}

.gold-form__totalHeader p {
    margin: 0;
}

.gold-form input[type="submit"] {
    width: 50%;
    background: #ff6600;
    border: none!important;
    border-radius: 20px!important;
    color: #fff;
    padding: 11px 36px!important;
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: "Poppins", Sans-serif;
}

.gold-form input[type="submit"]:hover {
    background: #d65601;
}

.gold-form .wpcf7-spinner {
    display: none!important;
}

/** Gold Form Calculator */

.gold-form-calculator {
    background-color: #0b0b0b;
    padding-bottom: 100px;
    font-family: "Poppins", Sans-serif;
}

.gold-form-calculator__body {
    padding: 57px 36px 63px;
    background: #fff;
    border: 1px solid #0000001a;
    box-shadow: 0 4px 30px 0 #00000040;
    border-radius: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 50px;
}

.gold-form-calculator__heading {
    font-size: 48px;
    font-weight: 700 !important;
    margin: 0 0 60px;
    font-family: "Poppins", sans-serif !important;
}

.gf-input > div:nth-of-type(1) {
    border: 3px solid #0000003b;
    border-radius: 20px;
    position: relative;
    padding: 14px 37px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.gf-input > div:nth-of-type(1) label {
    font-size: 22px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    color: #848484;
}

.gf-input > div:nth-of-type(1) > div {
    font-size: 20px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    color: #000000;
}

.gf-input > .gf-input-block {
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    margin-bottom: 35px;
    margin-top: 10px;
}

.gf-input > .gf-input-block input,
.gf-input > .gf-input-block select {
    border: 3px solid #0000003b;
    border-radius: 20px;
    position: relative;
    padding: 23px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    font-size: 20px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    color: #000000;
}

.gf-input > label {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}

.gold-form-calculator input[type="range"] {
    -webkit-appearance: none;
    width: calc(100% - 14px);
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    outline: none;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 7px;
}

.gf-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 21px;
    margin-bottom: 35px;
}

.gf-range-labels span {
    color: #ff6600;
    font-size: 18px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
}

.gold-form-calculator__interest {
    margin-top: 72px;
    font-size: 22px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
}

.gold-form-calculator__right {
    padding: 42px 63px 27px;
    border: 3px solid #c4c4c4;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    gap: 23px 0;
    align-items: center;
}

.gf-result {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 9px 0;
}

.gf-result span {
    font-size: 22px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    color: #848484;
}

.gf-result div {
    font-size: 35px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    color: #ff6600;
}

.gf-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 23px 0;
    margin-top: 16px;
}

.gf-btn {
    width: 100%;
    padding: 31px 40px;
    cursor: pointer;
    background: linear-gradient(180deg, #ff6600 20%, #f37019 100%);
    color: #fff;
    font-size: 25px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    border-radius: 15px;
    transition: all 300ms ease;
    border: 0;
}

.gf-btn:hover {
    background: linear-gradient(180deg, #f37019 0%, #ff6600 80%);
}

.gold-form-calculator input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: white;
    border: 4px solid #ff6600;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.gold-form-calculator input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: white;
    border: 4px solid #ff6600;
    border-radius: 50%;
    cursor: pointer;
}

.gold-form-calculator input[type="range"]::-moz-range-track {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
}

.gold-form-calculator input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(to right, #ff6600 0%, #ff6600 var(--progress), #e0e0e0 var(--progress), #e0e0e0 100%);
    height: 8px;
    border-radius: 4px;
}

.gold-form-calculator input[type="range"]:focus {
    outline: none;
}

/* Переменная прогресса */
.gold-form-calculator input[type="range"] {
    --progress: 50%;
}

/* Table Gold Form Calculator */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 37px;
    max-height: 90vh;
    overflow: auto;
    width: 60vw;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.modal-title {
    margin: 0 0 20px;
    font-size: 38px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    text-align: center;
    color: #ff6600;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.table-wrapper {
    overflow-x: auto;
    max-height: 70vh;
}

.payment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: "Poppins", sans-serif !important;
    min-width: 400px;
}

.payment-table thead th {
    padding: 21px 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    color: #000000;
    border: 3px solid #0000003b;
}

.payment-table thead th:first-child {
    border-radius: 20px 0 0 20px;
}

.payment-table thead th:last-child {
    border-radius: 0 20px 20px 0;
}

.payment-table tbody td {
    font-size: 22px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif !important;
    color: #383838;
    padding: 17px;
    text-align: center;
    white-space: nowrap;
}

.payment-table tbody {
    font-size: 14px;
}

.hfe-nav-menu a.active {
    color: #f88b42 !important;
}

/** Microloans Hero Cards */

.microloans-hero-cards {
    background: #0b0b0b;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 100px;
    font-family: "Poppins", Sans-serif;
}

/* Заголовок и линия */
.microloans-hero-cards__title {
    font-weight: 700;
    font-size: 48px;
    margin: 0 0 30px;
}

.microloans-hero-cards__underline {
    height: 2px;
    background: #ffffff;
    margin-bottom: 60px;
}

.microloans-hero-cards__lead {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 100px;
}

.microloans-hero-cards__lead .hl {
    color: #ff6600;
}

/* Сетка карточек 2×2 */
.microloans-hero-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .microloans-hero-cards__grid {
        grid-template-columns: 1fr;
    }
}

/* Карточка */
.microloans-hero-cards__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 37px;
    text-decoration: none;
    color: inherit;
    border: 3px solid #ff6600;
    border-radius: 20px;
    background: transparent;
    padding: 50px;
    transition: all 300ms ease;
}

.microloans-hero-cards__card:hover {
    transform: translateY(-4px);
    background: rgba(255, 106, 0, 0.1);
    color: #ffffff;
}

.microloans-hero-cards__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.microloans-hero-cards__image .ml-icon {
    width: 100%;
    height: 100%;
}

.microloans-hero-cards__image .ml-icon svg {
    width: auto;
    height: 100%;
}

.microloans-hero-cards__image svg path {
    fill: #FFFFFF4D;
}

.microloans-hero-cards__card-title {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}
.microloans-hero-cards__card-text {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
}

.microloans-hero-cards__empty {
    color: #ffffff;
}

/* Пагинация */
.microloans-hero-cards__pag {
    margin: 22px 0 6px;
    text-align: center;
}
.microloans-hero-cards__pag ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 8px;
}
.microloans-hero-cards__pag li a,
.microloans-hero-cards__pag li span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--micro-line);
    border-radius: 10px;
    text-decoration: none;
    color: var(--micro-ink-d);
}
.microloans-hero-cards__pag li .current {
    background: var(--micro-accent);
    color: #000;
    border-color: var(--micro-accent);
    font-weight: 700;
}

/** Microloans Credit Info */

.microloans-credit-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 100px;
}

.microloans-credit-info > .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    font-family: "Poppins", Sans-serif;
}

.microloans-credit-info__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.microloans-credit-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.microloans-credit-info__card {
    background: #ffffff;
    padding: 32px 40px;
    border-radius: 20px;
    border: 1px solid #0000001A;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.microloans-credit-info__card svg {
    width: 50px;
    min-width: 50px;
    height: auto;
}

.microloans-credit-info__card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.microloans-credit-info__card-title {
    font-size: 24px;
    font-weight: 700;
}

.microloans-credit-info__card-description {
    font-size: 20px;
    font-weight: 500;
}

.microloans-credit-info__bottom-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

/** Microloans Documents */

.microloans-documents {
    text-align: left;
    padding-top: 60px;
    padding-bottom: 100px;
    font-family: "Poppins", sans-serif;
}

.microloans-documents__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px;
}

.microloans-documents__divider {
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin-bottom: 60px;
}

.microloans-documents__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.microloans-documents__card {
    border: 1px solid #FF6600;
    border-radius: 31px;
    padding: 25px 30px;
    background: transparent;
    cursor: pointer;
    transition: all 300ms ease;
}

.microloans-documents__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.microloans-documents__card-title {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.microloans-documents__card-title svg {
    width: 25px;
    min-width: 25px;
    height: auto;
}

.microloans-documents__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    min-width: 53px;
    height: 53px;
    border-radius: 100%;
    background-color: #FF6600;
    transition: all 300ms ease;
}

.microloans-documents__card-icon svg {
    transform: rotate(0deg);
    transition: all 300ms ease;
}

.microloans-documents__card.active .microloans-documents__card-icon svg {
    transform: rotate(90deg);
}

.microloans-documents__card-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
    padding-top: 12px;
}

.microloans-documents__open-link {
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline!important;
    color: #ffffff;
}

.microloans-documents__open-link:hover, .microloans-documents__open-link:visited {
    color: #ffffff;
}

/** Microloans Credit Questions */

.microloans-credit-questions {
    width: 100%;
    font-family: "Poppins", sans-serif;
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 100px;
}

.microloans-credit-questions * {
    box-sizing: border-box;
}

.microloans-credit-questions__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

.microloans-credit-questions__card-header {
    padding: 23px 50px 23px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.microloans-credit-questions__card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.microloans-credit-questions__card-button {
    border: none;
    border-radius: 20px;
    padding: 10px 92px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: #FF6600;
    cursor: pointer;
    box-shadow: 0 4px 30px 0 #00000040;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.microloans-credit-questions__card-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px #2a292940;
    background: #f57a29;
}

/* === ТЕЛО АККОРДИОНА С АНИМАЦИЕЙ === */

.microloans-credit-questions__card-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}

.microloans-credit-questions__card-body-inner {
    padding: 0 28px 0;
    transition: padding .35s ease;
}

.microloans-credit-questions__card--active
.microloans-credit-questions__card-body-inner {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}


.microloans-credit-questions__card--active {
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

/* === ТИТУЛЬНИК ВНУТРИ КАЖДОГО РАЗДЕЛА (если используешь h2) === */

.microloans-credit-questions__section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* ============================================= */
/* === НИЖЕ — СТИЛИ ДЛЯ ВНУТРЕННЕГО КОНТЕНТА === */
/* (таблица тарифов, калькулятор, списки, ставки) */
/* ============================================= */

/* Общая карточка внутри (белые блоки на сером фоне аккордеона) */

.mcq-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 4px 30px 0 #00000040;
    margin-bottom: 30px;
}

.mcq-card:last-child {
    margin-bottom: 0;
}

.mcq-banner {
    width: 90%;
    background: #FF6600;
    color: #ffffff;
    border-radius: 20px;
    padding: 22px 36px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 80px;
    border: 1px solid #0000001A;
    box-shadow: 0 4px 30px 0 #00000040;
}

/* === Таблица "Компонент / Размер / Описание" === */

.mcq-card--table {
    padding-top: 20px;
    padding-bottom: 0;
}

.mcq-table {
    width: 100%;
}

.mcq-table__header-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    margin-bottom: 30px;
}

.mcq-table__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    padding-bottom: 20px;
}

.mcq-table__cell {
    font-size: 16px;
    font-weight: 500;
}

.mcq-table__cell--head {
    font-size: 24px;
    font-weight: 700;
}

.mcq-card--table > div > div:nth-of-type(1) {
    text-align: left;
}

.mcq-card--table > div > div:nth-of-type(2) {
    text-align: center;
}

.mcq-card--table > div > div:nth-of-type(3) {
    text-align: right;
}

.mcq-card--table > div:not(.mcq-table__header-row) > div:nth-of-type(3) {
    color: #26981A;
}

/* === Калькулятор === */

.mcq-card--calc {
    padding-top: 30px;
    padding-bottom: 30px;
}

.mcq-calc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 25px;
}

.mcq-calc-block__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.mcq-calc-block__label {
    color: #000000;
}

.mcq-calc-block__span {
    color: #BCBCBC;
}

.mcq-input-wrapper {
    margin-bottom: 30px;
}

.mcq-input-wrapper > .mcq-input {
    width: 100%;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    outline: none;
    background-color: #FF6600;
    border: none;
}

.mcq-input-wrapper > .mcq-input::placeholder {
    color: #ffffff!important;
}

.mcq-input-wrapper > .mcq-input:focus {
    color: #ffffff;
}

.mcq-input::-webkit-outer-spin-button,
.mcq-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.mcq-input[type=number] {
    -moz-appearance: textfield;
}

/* Range + значение */

.mcq-range-row {
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    align-items: center;
    gap: 50px;
}

.mcq-range-row > .mcq-range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: #BCBCBC;
    outline: none;
    margin: 10px 0;
}

.mcq-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF6600;
    cursor: pointer;
}
.mcq-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF6600;
    cursor: pointer;
}

.mcq-range__value {
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    color: #BCBCBC;
}

/* Режим расчёта */

.mcq-mode-card {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.mcq-mode-button {
    flex: 1;
    border-radius: 16px;
    border: 1px solid #FF6600;
    background: #ffffff;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
    text-align: left;
}

.mcq-mode-button--active {
    background: #FF6600;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.5);
}

/* Результаты */

.mcq-result-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 30px;
}

.mcq-result-card__item {
    display: flex;
    gap: 6px;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.mcq-result-card__label {
    white-space: nowrap;
}

/* === Списки для 2 и 3 блока (галочка + текст) === */

.mcq-card--list {
    padding: 0;
    margin-bottom: 50px;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.mcq-list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 32px 40px;
    border: 1px solid #0000001A;
    box-shadow: 0 4px 30px 0 #00000040;
    border-radius: 20px;
    gap: 30px;
}

.mcq-list-item__icon svg{
    width: 100%;
    height: auto;
}

.mcq-list-item__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.mcq-list-item__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.mcq-list-item__text {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.mcq-list__bottom-text {
    padding: 22px 120px;
    border-radius: 20px;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 30px 0 #00000040;
    border: 1px solid #0000001A;
    text-align: center;
}

/* === Таблицы "Процентная ставка" === */

.mcq-card--tabs {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.mcq-tabs {
    display: inline-flex;
    background: #f2f2f2;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 50px;
}

.mcq-tabs__button {
    border: none;
    border-radius: 20px;
    padding: 17px 57px;
    font-size: 24px;
    font-weight: 700;
    background: transparent;
    color: #555555;
    cursor: pointer;
    transition: background .16s ease, box-shadow .16s ease, color .16s ease;
}

.mcq-tabs__button--active {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 30px 0 #00000040;
}

.mcq-rate-table {
    display: none;
}

.mcq-rate-table--active {
    display: block;
}

.mcq-rate-table--active {
    display: block;
}

.mcq-rate-table__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.mcq-rate-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 30px 0 #00000040;
    border: 1px solid #0000001A;
    margin-bottom: 10px;
    border-radius: 10px;
}

.mcq-rate-table__cell--head {
    font-weight: 700;
}

.mcq-rate-table__cell--right {
    text-align: right;
}

.mcq-rate-table__cell--green {
    color: #26981A;
}

/* Подписи под таблицей */

.mcq-rate-note {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    padding: 22px 36px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #0000001A;
    box-shadow: 0 4px 30px 0 #00000040;
}

.mcq-rate-note--overdue {
    display: none;
}

/** Technic Hero Info */

.technic-hero-info {
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.technic-hero-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.technic-hero-info__card {
    font-weight: 400;
    font-size: 32px;
    color: #fff;
}

.technic-hero-info__card p {
    margin: 0;
}

.technic-hero-info__card span {
    color: #ff6600;
    font-weight: 700;
}

/** Technic Process Cards */

.technic-process-cards {
    width: 100%;
    text-align: center;
    background-color: #0b0b0b;
    padding-bottom: 150px;
}

.technic-process-cards__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 100px;
    text-align: left;
}

.technic-process-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.technic-process-cards__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    min-height: 370px;
    max-height: 370px;
}

.technic-process-cards__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    filter: brightness(0.4);
    min-height: 370px;
    max-height: 370px;
    transition: all 300ms linear;
}

.technic-process-cards__card:hover .technic-process-cards__image img {
    transform: scale(1.1);
}

.technic-process-cards__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
}

.technic-process-cards__card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/** Gold Questions */

.technic-questions {
    color: #fff;
    background-color: #0b0b0b;
    padding-bottom: 100px;
}

.technic-questions__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 100px;
}

.technic-questions__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.technic-questions__item {
    border: 1px solid #ff6600;
    border-radius: 31px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.technic-questions__question {
    cursor: pointer;
    padding: 22px 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 28px;
    font-weight: 700;
    font-family: "Poppins", Sans-serif;
    transition: background 0.3s ease;
}

.technic-questions__item svg {
    transform: rotate(0deg);
    transition: all 300ms ease;
}

.technic-questions__item.active svg {
    transform: rotate(90deg);
}

.technic-questions__icon {
    width: 53px;
    height: 53px;
    min-width: 53px;
    border-radius: 100%;
    background-color: #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.technic-questions__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.technic-questions__answer p {
    padding: 28px 53px 43px;
    margin: 0;
    font-size: 28px;
    font-weight: 500;
}

.technic-questions__btn-wrap {
    text-align: center;
    margin-top: 100px;
}
.technic-questions__btn {
    width: 40%;
    text-align: center;
    background: transparent;
    border: 1px solid #ff6600;
    border-radius: 20px;
    color: #ffffff;
    padding: 11px 32px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.technic-questions__btn:hover {
    background: #ff6600;
    color: #ffffff;
    border: 1px solid #ff6600;
}

/* modal */
.technic-questions__modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.technic-questions__modal.active { 
    display: flex;
}

.technic-questions__modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 50px 20px;
    max-width: 70%;
    width: 100%;
    position: relative;
}

.technic-questions__modal-close {
    position: absolute;
    top: 68px;
    right: 50px;
    font-size: 24px;
    cursor: pointer;
    color: red;
}

/* form */
.technic-form {
    color: #000000;
    font-family: "Poppins", Sans-serif;
}

.technic-form h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 50px;
}

.technic-form > p {
    margin: 0 0 20px;
}

.technic-form > p > label {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    font-family: "Poppins", Sans-serif;
}

.technic-form input,
.technic-form select {
    width: 100%;
    border: 1px solid #ff6600!important;
    border-radius: 10px!important;
    padding: 15px 20px!important;
    margin: 10px 0 0;
    font-family: "Poppins", Sans-serif;
}

.technic-form__total {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 50px;
}

.technic-form__total p {
    margin: 0;
}

.technic-form input[type="submit"] {
    width: 50%;
    background: #ff6600;
    border: none!important;
    border-radius: 20px!important;
    color: #fff;
    padding: 11px 36px!important;
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: "Poppins", Sans-serif;
}

.technic-form input[type="submit"]:hover {
    background: #d65601;
}

.technic-form .wpcf7-spinner {
    display: none!important;
}

/** Thank You */

.thankyou-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
}

.thankyou-wrapper .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thankyou-box {
    background: #fff;
    border-radius: 40px;
    padding: 75px 30px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.thankyou-title {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}

.thankyou-description {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.thankyou-button {
    width: 40%;
    display: inline-block;
    padding: 8px 25px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
    transform: none;
}

.thankyou-button:hover {
    transform: translateY(-4px);
}

/** Media Styles */

@media screen and (max-width: 1380px) {
    /*  */
    .home-hero-form__cards {
        gap: 20px;
    }
}

@media screen and (max-width: 1280px) {
    /*  */
    .stk-nav__list a {
        font-size: 14px;
    }

    .stk-btn {
        padding: 7px 22px;
        font-size: 14px;
    }

    .stk-lang .trp-shortcode-switcher .trp-language-item-name {
        font-size: 14px;
    }

    .stk-nav__list {
        gap: 30px;
    }

    .stk-lang .trp-shortcode-switcher .trp-flag-image {
        width: 18px!important;
    }

    .home-hero-form__form form label {
        font-size: 16px;
    }

    /*  */
    .filials-hero-cards__title {
        font-size: 38px;
    }

    .filials-hero-cards__content {
        padding: 32px 20px;
    }

    .filials-hero-cards__card-title {
        font-size: 24px;
    }

    .filials-hero-cards__badge {
        font-size: 16px;
        padding: 5px 20px;
    }

    .filials-hero-cards__card-text {
        font-size: 18px;
    }

    .filials-hero-cards__btn, .filials-hero-cards__all-btn {
        font-size: 16px;
    }

    /*  */
    .sf-logo img {
        width: 180px;
    }

    .sf-org {
        font-size: 16px;
    }

    .sf-social__title {
        font-size: 16px;
    }

    .sf-social {
        gap: 20px;
    }

    .sf-so svg {
        width: 32px;
    }

    .sf-heading {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .sf-menu a {
        font-size: 14px;
    }

    .sf-menu {
        gap: 20px;
    }

    .sf-line__text {
        font-size: 14px;
    }

    .sf-line {
        margin-bottom: 25px;
    }

    .sf-bottom__inner {
        font-size: 14px;
    }

    /*  */
    .filial-hero-info__title {
        font-size: 38px;
    }

    .filial-hero-info__text {
        font-size: 16px;
    }

    .filial-hero-info__infobar {
        gap: 0 36px;
    }

    .filial-hero-info__icon svg {
        width: 25px;
        height: auto;
    }

    /*  */
    .news-hero-cards__title {
        font-size: 38px;
    }

    .news-hero-cards__cats-btn {
        font-size: 30px;
        gap: 20px;
    }

    .news-hero-cards__cats-btn svg {
        width: 30px;
        height: auto;
    }

    .news-hero-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-hero-cards__media {
        height: 400px;
    }

    .news-hero-cards__card-title {
        font-size: 20px;
    }

    .news-hero-cards__card-text {
        font-size: 16px;
    }

    .news-hero-cards__btn {
        font-size: 16px;
        padding: 11px 30px;
    }

    /*  */
    .new-hero-info__title {
        font-size: 30px;
    }

    .new-hero-info__date {
        font-size: 16px;
    }

    .new-hero-info__hero-img {
        max-height: 500px;
        min-height: 500px;
    }

    .new-hero-info__content {
        font-size: 20px;
    }

    .new-more-cards__title {
        font-size: 30px;
    }

    .new-more-cards__thumb img {
        max-height: 300px;
        min-height: 300px;
    }

    .new-more-cards__card-title {
        font-size: 18px;
    }

    .new-more-cards__card-date {
        font-size: 16px;
    }

    .new-more-cards__head {
        margin-bottom: 60px;
    }

    /*  */
    .microloans-hero-cards__title {
        font-size: 38px;
    }

    .microloans-hero-cards__lead {
        font-size: 25px;
    }

    .microloans-hero-cards__card {
        gap: 25px;
        padding: 30px;
    }

    /*  */
    .document-hero-slider__title {
        font-size: 38px;
    }

    .document-hero-slider__text {
        font-size: 20px;
    }

    .document-hero-slider__nav svg {
        width: 10px;
        height: auto;
    }

    .document-hero-slider__nav {
        width: 40px;
        height: 40px;
    }

    /*  */
    .about-hero-info__title {
        font-size: 38px;
    }

    .about-hero-info__text {
        font-size: 25px;
    }

    .about-standard-cards__title {
        font-size: 30px;
        margin-bottom: 60px;
    }

    .about-license-cards__title {
        font-size: 30px;
        margin-bottom: 60px;
    }

    .about-license-cards__card .about-license-cards__image img {
        height: 120px;
    }

    .about-mission__title {
        font-size: 30px;
        margin-bottom: 60px;
    }

    .about-mission__subtitle {
        font-size: 25px;
        margin-bottom: 60px;
    }

    /*  */

    .ml-head .ml-head__title {
        font-size: 38px;
    }

    .technic-hero-info__card {
        font-size: 25px;
    }

    .technic-process-cards__title {
        font-size: 38px;
    }

    .technic-questions__title {
        font-size: 38px;
    }

    .technic-questions__question {
        padding: 15px 33px;
        font-size: 22px;
    }

    .technic-questions__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .technic-questions__icon svg {
        width: 18px;
        height: auto;
    }

    .technic-questions__answer p {
        padding: 14px 33px 23px;
        font-size: 22px;
    }

    .technic-questions__btn {
        font-size: 16px;
    }

    .technic-questions__modal-content {
        padding: 20px;
    }

    .technic-form h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .technic-form > p > label {
        font-size: 16px;
    }

    .technic-form input, .technic-form select {
        padding: 10px 15px!important;
        font-size: 14px;
    }

    .technic-form > p {
        margin-bottom: 10px;
    }

    .technic-form input[type="submit"] {
        font-size: 16px;
    }

    .technic-questions__modal-close {
        top: 30px;
    }

    /*  */
    .gold-hero-info__card {
        font-size: 25px;
    }

    .gold-form-calculator__heading {
        font-size: 38px;
    }

    .gf-input > label {
        font-size: 18px;
    }

    .gf-input > .gf-input-block input, .gf-input > .gf-input-block select {
        padding: 13px 20px;
        font-size: 16px;
    }

    .gf-input > .gf-input-block {
        margin-bottom: 20px;
    }

    .gf-input > div:nth-of-type(1) label, .gf-input > div:nth-of-type(1) > div {
        font-size: 16px;
    }

    .gf-range-labels {
        margin: 15px 0;
    }

    .gf-range-labels span {
        font-size: 14px;
    }

    .gf-input > div:nth-of-type(1) {
        padding: 14px 20px 25px;
    }

    .gold-form-calculator__interest {
        font-size: 18px;
    }

    .gold-form-calculator__right {
        padding: 30px;
        gap: 15px 0;
    }

    .gf-result span {
        font-size: 18px;
    }

    .gf-result div {
        font-size: 25px;
    }

    .gf-btn {
        padding: 21px 30px;
        font-size: 20px;
    }

    .gf-buttons {
        gap: 15px 0;
    }

    .gold-form-calculator__body {
        padding: 30px 25px;
    }

    .modal-content, .banner-modal-content {
        padding: 20px!important;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-close, .banner-close {
        top: 36px!important;
    }

    .payment-table thead th {
        padding: 15px 20px;
        font-size: 16px;
    }

    .payment-table tbody td {
        font-size: 16px;
        padding: 12px;
    }

    .gold-form h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .gold-form > p > label {
        font-size: 16px;
    }

    .gold-form input, .gold-form select {
        font-size: 14px;
        padding: 10px 15px !important;
    }

    .gold-form > p {
        margin-bottom: 10px;
    }

    .gold-form > .form-content > p > label {
        font-size: 16px;
    }

    .gold-form > .form-content > p {
        margin-bottom: 10px;
    }

    .gold-form > .form-content-header > p > label {
        font-size: 16px;
    }

    .gold-form > .form-content-header > p {
        margin-bottom: 10px;
    }

    .form-tabs {
        margin-bottom: 10px;
    }

    .form-tab {
        font-size: 16px;
    }

    .form-tabs-header {
        margin-bottom: 10px;
    }

    .form-tab-header {
        font-size: 16px;
    }

    .gold-form__total {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .gold-form__totalHeader {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .gold-form input[type="submit"] {
        font-size: 16px;
    }

    .gold-questions__title {
        font-size: 38px;
    }

    .gold-questions__question {
        font-size: 22px;
        padding: 15px 33px;
    }

    .gold-questions__answer p {
        font-size: 22px;
        padding: 14px 33px 23px;
    }

    .gold-questions__icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .gold-questions__item svg {
        width: 18px;
        height: auto;
    }

    .gold-questions__btn {
        font-size: 16px;
    }

    .gold-questions__modal-content {
        padding: 20px;
    }

    .gold-questions__modal-close {
        top: 30px;
    }

    /*  */
    .home-hero-form__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-hero-form__title {
        padding-right: 0;
        font-size: 38px;
    }

    .home-hero-form__subtitle {
        font-size: 20px;
        margin-bottom: 60px;
    }

    .home-hero-form__card-title {
        font-size: 25px;
    }

    .home-hero-form__card-text {
        font-size: 16px;
    }

    .home-hero-form__divider {
        height: 182px;
    }

    .home-work-cards__title {
        font-size: 38px!important;
    }

    .home-link-cards__title {
        font-size: 38px;
    }

    .home-advantage-cards__title {
        font-size: 38px;
    }

    .home-exchange-rate__title {
        font-size: 38px;
    }

    .home-exchange-rate__subtitle {
        font-size: 25px;
        padding-right: 0;
    }

    .home-exchange-rate__table {
        padding: 20px 30px;
    }

    .home-exchange-rate__row--head {
        font-size: 22px;
    }

    .home-exchange-rate__row {
        font-size: 16px;
    }

    .home-filial-maps__title {
        font-size: 38px;
    }

    .home-filial-maps__subtitle {
        font-size: 25px;
    }

    .home-questions__title {
        font-size: 38px;
    }

    .home-questions__question {
        font-size: 22px;
        padding: 15px 33px;
    }

    .home-questions__answer p {
        font-size: 22px;
        padding: 14px 33px 23px;
    }

    .home-questions__icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .home-questions__icon svg {
        width: 18px;
        height: auto;
    }

    .home-hero-form__form {
        padding: 20px;
    }

    /*  */
    .microloans-credit-info__title {
        font-size: 20px;
    }

    .microloans-credit-info__card-title {
        font-size: 20px;
    }

    .microloans-credit-info__card-description {
        font-size: 20px;
    }

    .microloans-credit-info__card svg {
        width: 35px;
        min-width: 35px;
    }

    .microloans-credit-info__bottom-text {
        font-size: 20px;
    }

    /*  */
    .microloans-documents__title {
        font-size: 38px;
    }

    .microloans-documents__card-icon svg {
        width: 18px;
        height: auto;
    }

    .microloans-documents__card-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .microloans-documents__card-title {
        font-size: 20px;
    }

    .microloans-documents__card-title svg {
        width: 20px;
        min-width: 20px;
    }

    .microloans-documents__card {
        padding: 15px 30px;
    }

    .microloans-documents__open-link {
        font-size: 16px;
    }

    /*  */
    .microloans-credit-questions__card-title,
    .mcq-table__cell--head,
    .mcq-result-card__item,
    .mcq-tabs__button,
    .mcq-rate-table__header,
    .mcq-rate-note,
    .mcq-list-item__title,
    .mcq-list__bottom-text  {
        font-size: 20px;
    }

    .microloans-credit-questions__card-button,
    .mcq-banner {
        font-size: 16px;
    }

    .mcq-calc-block__header, 
    .mcq-mode-button,
    .mcq-input-wrapper > .mcq-input,
    .mcq-range__value,
    .mcq-table__cell {
        font-size: 14px;
    }

    .mcq-rate-table__row {
        font-size: 12px;
    }

    .mcq-list-item__icon svg {
        width: 35px;
        min-width: 35px;
    }

    /*  */
    .thankyou-title {
        font-size: 32px;
    }

    .thankyou-description {
        font-size: 20px;
    }

    .thankyou-button {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    /*  */
    .stk-nav {
        position: fixed;
        inset: 70px 0 auto 0;
        background: #fff;
        border-top: 1px solid #eee;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: 0.2s;
        padding: 12px 18px;
        z-index: 50;
    }

    .stk-nav__list {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }

    .stk-header__inner {
        padding: 10px 14px;
    }

    .stk-burger {
        display: inline-block;
    }

    .stk-header.nav-open .stk-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .stk-btn {
        display: none;
    }

    .stk-header__inner {
        justify-content: space-between;
    }

    .home-hero-form__form form > p {
        display: flex;
        flex-direction: column;
    }

    /*  */
    .filials-hero-cards {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .filials-hero-cards__title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .filials-hero-cards__underline {
        margin-bottom: 40px;
    }

    .filials-hero-cards__grid {
        grid-template-columns: 1fr;
    }

    .filials-hero-cards__card-title {
        font-size: 20px;
    }

    .filials-hero-cards__card-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .filials-hero-cards__badge {
        font-size: 14px;
        padding: 3px 15px;
    }

    .filials-hero-cards__btn, .filials-hero-cards__all-btn {
        font-size: 14px;
    }

    /*  */
    .filial-hero-info__media {
        grid-template-columns: 1fr;
    }

    .filial-hero-info__title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .filial-hero-info {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .filial-hero-info__underline {
        margin-bottom: 40px;
    }

    .filial-hero-info__infobar {
        grid-template-columns: 1fr;
        gap: 10px 0;
        margin-bottom: 40px;
    }

    .filial-hero-info__sep {
        display: none;
    }

    .filial-hero-info__img {
        min-height: 320px;
        max-height: 320px;
    }

    .filial-hero-info__map-embed {
        min-height: 320px;
    }

    /*  */
    .news-hero-cards__title {
        font-size: 30px;
    }

    .news-hero-cards__head {
        margin-bottom: 10px;
    }

    .news-hero-cards {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .news-hero-cards__cats-btn {
        font-size: 25px;
    }

    .news-hero-cards__underline {
        margin-bottom: 40px;
    }

    .news-hero-cards__cats-btn svg {
        width: 20px;
    }

    .news-hero-cards__overlay {
        margin-bottom: 10px;
    }

    /*  */
    .new-hero-info {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .new-hero-info__title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .new-hero-info__underline {
        margin-bottom: 40px;
    }

    .new-hero-info__hero-img {
        min-height: 350px;
        max-height: 350px;
    }

    .new-hero-info__hero {
        margin-bottom: 40px;
    }

    .new-hero-info__content {
        font-size: 16px;
        gap: 15px;
    }

    .new-more-cards__head {
        margin-bottom: 40px;
    }

    .new-more-cards__thumb img {
        max-height: 250px;
        min-height: 250px;
    }

    .new-more-cards {
        padding-bottom: 60px;
    }

    /*  */
    .microloans-hero-cards__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .microloans-hero-cards__underline {
        margin-bottom: 40px;
    }

    .microloans-hero-cards {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .microloans-hero-cards__lead {
        margin: 0 0 60px;
        font-size: 20px;
    }

    .microloans-hero-cards__card-title {
        font-size: 16px;
    }

    .microloans-hero-cards__card-text {
        font-size: 13px;
    }

    /*  */
    .document-hero-slider {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .document-hero-slider__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .document-hero-slider__divider {
        margin-bottom: 40px;
    }

    .document-hero-slider__text {
        font-size: 16px;
        margin-bottom: 50px;
    }

    /*  */
    .about-hero-info__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .about-hero-info__divider {
        margin-bottom: 40px;
    }

    .about-hero-info__text {
        font-size: 20px;
    }

    .about-hero-info {
        padding-bottom: 40px;
    }

    .about-hero-info {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .about-standard-cards__title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .about-standard-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-standard-cards__image img, .about-standard-cards__card {
        min-height: 320px;
        max-height: 320px;
    }

    .about-standard-cards {
        padding-bottom: 60px;
    }

    .about-license-cards__title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .about-license-cards__card {
        padding: 30px;
        gap: 20px;
    }

    .about-license-cards__card-title {
        font-size: 16px;
    }

    .about-license-cards {
        padding-bottom: 60px;
    }

    .about-mission__title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .about-mission__subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .about-mission__button {
        width: 70%;
        font-size: 16px;
    }

    .about-mission {
        padding-bottom: 60px;
    }

    /*  */
    .ml-head .ml-head__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    #content .ml-head {
        padding: 40px 0;
    }

    .technic-hero-info__card {
        font-size: 20px;
    }

    .technic-hero-info__grid {
        gap: 20px;
    }

    .technic-hero-info {
        padding-bottom: 60px;
    }

    .technic-process-cards__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .technic-process-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technic-process-cards__image img, .technic-process-cards__card {
        min-height: 250px;
        max-height: 250px;
    }

    .technic-process-cards__card-title {
        font-size: 20px;
    }

    .technic-process-cards {
        padding-bottom: 60px;
    }

    .technic-questions__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .technic-questions__question, .technic-questions__answer p {
        font-size: 18px;
    }

    .technic-questions__btn-wrap {
        margin-top: 60px;
    }

    .technic-questions {
        padding-bottom: 60px;
    }

    /*  */
    .gold-hero-info__card {
        font-size: 20px;
    }

    .gold-hero-info__grid {
        gap: 20px;
    }

    .gold-hero-info {
        padding-bottom: 60px;
    }

    .gold-form-calculator__heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .gold-form-calculator {
        padding-bottom: 60px;
    }

    .gold-questions__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .gold-questions__question, .gold-questions__answer p {
        font-size: 18px;
    }

    .gold-questions__btn-wrap {
        margin-top: 60px;
    }

    .gold-questions {
        padding-bottom: 60px;
    }

    /*  */
    .home-hero-form {
        font-size: 28px;
        padding-bottom: 40px;
    }

    .home-hero-form__subtitle {
        margin-bottom: 40px;
    }

    .home-hero-form__card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .home-hero-form__card-text {
        font-size: 14px;
    }

    .home-hero-form__cards {
        justify-content: center;
    }

    .home-hero-form__grid {
        grid-template-columns: 1fr;
    }

    .home-hero-form__divider {
        height: 140px;
    }

    .home-hero-form__title {
        font-size: 28px;
    }

    .home-work-cards__title {
        font-size: 28px!important;
        margin-bottom: 40px;
    }

    .home-work-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-work-cards__card-title {
        font-size: 20px;
    }

    .home-work-cards__card-text {
        font-size: 16px;
    }

    .home-work-cards__card, .home-work-cards__image img {
        min-height: 300px;
        max-height: 300px;
    }

    .home-work-cards {
        padding-bottom: 60px;
    }

    .home-link-cards__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .home-link-cards__card {
        padding: 20px;
    }

    .home-link-cards__icon svg {
        height: 90px;
    }

    .home-link-cards__card-title {
        font-size: 22px;
    }

    .home-link-cards {
        padding-bottom: 60px;
    }

    .home-advantage-cards__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .home-advantage-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-advantage-cards__card, .home-advantage-cards__card img {
        min-height: 300px;
        max-height: 300px;
    }

    .home-advantage-cards__card-title {
        font-size: 16px;
    }

    .home-advantage-cards__card-text {
        font-size: 13px;
    }

    .home-advantage-cards {
        padding-bottom: 60px;
    }

    .home-exchange-rate__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .home-exchange-rate__subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .home-exchange-rate {
        padding-bottom: 60px;
    }

    .home-filial-maps__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .home-filial-maps__subtitle {
        font-size: 20px;
        margin-bottom: 60px;
    }

    .home-filial-maps__card {
        padding: 20px;
        gap: 10px;
    }

    .home-filial-maps__card-title {
        font-size: 20px;
    }

    .home-filial-maps__card-subtitle {
        font-size: 18px;
    }

    .home-filial-maps__list {
        gap: 20px;
    }

    .home-filial-maps__button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .home-filial-maps {
        padding-bottom: 60px;
    }

    .home-questions__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .home-questions__question, .home-questions__answer p {
        font-size: 18px;
    }

    .home-questions {
        padding-bottom: 60px;
    }

    /*  */
    .microloans-credit-info__title {
        font-size: 18px;
    }

    .microloans-credit-info__card {
        padding: 18px 25px;
    }

    .microloans-credit-info__grid {
        gap: 20px;
    }

    .microloans-credit-info__card-title {
        font-size: 16px;
    }

    .microloans-credit-info__card-description {
        font-size: 14px;
    }

    .microloans-credit-info__card svg {
        width: 25px;
        min-width: 25px;
    }

    .microloans-credit-info__card {
        gap: 15px;
    }

    .microloans-credit-info__bottom-text {
        font-size: 16px;
    }

    .microloans-credit-info {
        gap: 35px;
        padding-bottom: 60px;
    }

    .microloans-credit-info__card-content {
        gap: 10px;
    }

    /*  */
    .microloans-documents {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .microloans-documents__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .microloans-documents__divider {
        margin-bottom: 40px;
    }

    .microloans-documents__card-title {
        font-size: 18px;
    }

    /*  */
    .microloans-credit-questions__card-title, 
    .mcq-table__cell--head, 
    .mcq-result-card__item, 
    .mcq-tabs__button, 
    .mcq-rate-table__header, 
    .mcq-rate-note, 
    .mcq-list-item__title, 
    .mcq-list__bottom-text {
        font-size: 16px;
    }

    .microloans-credit-questions__card-button, .mcq-banner {
        font-size: 14px;
    }

    .microloans-credit-questions__card-button {
        padding: 10px 42px;
    }

    .mcq-calc-block__header, .mcq-mode-button, .mcq-input-wrapper > .mcq-input, .mcq-range__value, .mcq-table__cell {
        font-size: 12px;
    }

    .mcq-banner {
        padding: 15px 36px;
        margin: 0 auto 40px;
    }

    .mcq-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .mcq-calc-block__header,
    .mcq-input-wrapper {
        margin-bottom: 15px;
    }

    .mcq-input-wrapper > .mcq-input,
    .mcq-mode-button {
        padding: 8px 12px;
    }

    .mcq-mode-card {
        margin-bottom: 30px;
    }

    .mcq-card--tabs {
        padding: 0!important;
    }

    .mcq-tabs__button,
    .mcq-rate-note {
        padding: 8px 16px;
    }

    .mcq-tabs {
        margin-bottom: 20px;
    }

    .mcq-rate-table__header {
        margin-bottom: 10px;
    }

    .mcq-rate-table__row {
        padding: 8px 16px;
        margin-bottom: 5px;
    }

    .mcq-rate-note {
        margin-top: 10px;
    }

    .mcq-card--list {
        padding: 0!important;
    }

    .mcq-list-item__icon svg {
        width: 25px;
        min-width: 25px;
    }

    .mcq-list-item {
        gap: 15px;
        padding: 18px 25px;
    }

    .mcq-list-item__text {
        font-size: 14px;
    }

    .mcq-list-item__block {
        gap: 10px;
    }

    .mcq-card--list {
        gap: 15px;
    }

    .mcq-list__bottom-text {
        padding: 8px 40px;
    }

    .microloans-credit-questions {
        padding-bottom: 60px;
    }

    /*  */
    .thankyou-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .thankyou-box {
        padding: 55px 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 900px) {
    /*  */
    .s-footer__inner {
        padding: 50px 0 20px;
    }

    .sf-contacts {
        padding: 0 20%;
    }

    /*  */
}

@media screen and (max-width: 768px) {
    /*  */
    .news-hero-cards__grid {
        grid-template-columns: 1fr;
    }

    .news-hero-cards__media {
        height: 320px;
    }

    /*  */
    .technic-questions__modal-close {
        top: 22px;
    }

    /*  */

    .gold-form-calculator__body {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gold-form-calculator__interest {
        margin-top: 32px;
    }

    .modal-close, .banner-close {
        top: 28px!important;
    }

    /*  */
    .home-work-cards__grid, .home-link-cards__grid, .home-advantage-cards__grid {
        grid-template-columns: 1fr;
    }

    .home-exchange-rate__row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .home-exchange-rate__row > div:nth-of-type(3), .home-exchange-rate__row > div:nth-of-type(4) {
        display: none;
    }

    /*  */
    .microloans-credit-info__grid {
        grid-template-columns: 1fr;
    }

    .microloans-credit-info__card {
        padding: 8px 18px;
    }

    /*  */

    .microloans-documents__card-body {
        padding-top: 6px;
    }

    .microloans-documents__list {
        gap: 10px;
    }

    /*  */
    .mcq-calc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .microloans-credit-questions__card--active .microloans-credit-questions__card-body-inner {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /*  */
    .thankyou-button {
        width: 80%;
    }
}

@media screen and (max-width: 540px) {
    /*  */
    .sf-contacts {
        padding: 0 10%;
    }

    .sf-brand {
        gap: 20px;
    }

    .sf-menu {
        gap: 10px;
    }

    .sf-heading {
        margin-bottom: 20px;
    }

    .sf-ico svg {
        width: 20px;
    }

    .sf-org {
        font-size: 12px;
        width: 80%;
    }

    /*  */
    .filials-hero-cards__all {
        margin-top: 30px;
    }

    .filials-hero-cards__all-btn {
        width: 60%;
    }

    /*  */
    .filial-hero-info__icon svg {
        width: 20px;
    }

    .filial-hero-info__text {
        font-size: 14px;
    }

    /*  */
    .news-hero-cards__cats-btn {
        font-size: 20px;
        gap: 10px;
    }

    .news-hero-cards__cats-menu {
        font-size: 14px;
    }

    /*  */
    .new-hero-info__title {
        font-size: 18px;
    }

    .new-hero-info__underline {
        margin-bottom: 20px;
    }

    .new-hero-info__date {
        font-size: 14px;
    }

    .new-hero-info__hero-img {
        min-height: 250px;
        max-height: 250px;
    }

    .new-hero-info__hero {
        margin-bottom: 20px;
    }

    .new-hero-info__content {
        font-size: 14px;
    }

    .new-more-cards__title {
        font-size: 25px;
    }

    .new-more-cards__card-title {
        font-size: 16px;
    }

    .new-more-cards__card-date {
        font-size: 12px;
    }

    .new-more-cards__thumb img {
        max-height: 180px;
        min-height: 180px;
    }

    /*  */
    .microloans-hero-cards__lead {
        margin-bottom: 30px;
        font-size: 16px;
    }

    .microloans-hero-cards__card {
        gap: 15px;
        padding: 20px;
    }

    /*  */
    .swiper-slide img {
        padding: 0 10%;
    }

    /*  */
    .about-standard-cards__grid {
        grid-template-columns: 1fr;
    }

    .about-license-cards__grid {
        grid-template-columns: 1fr;
    }

    .about-hero-info__text {
        font-size: 16px;
    }

    .about-standard-cards__image img, .about-standard-cards__card {
        min-height: 250px;
        max-height: 250px;
    }

    .about-standard-cards__card-title {
        font-size: 18px;
    }

    .about-standard-cards__card-text {
        font-size: 14px;
    }

    .about-license-cards__card .about-license-cards__image img {
        height: 90px;
    }

    .about-mission__subtitle {
        font-size: 16px;
    }

    .about-mission__button {
        padding: 8px 32px;
        font-size: 14px;
    }

    /*  */

    .technic-hero-info__grid {
        grid-template-columns: 1fr;
    }

    .technic-hero-info__card {
        font-size: 16px;
    }

    .technic-process-cards__grid {
        grid-template-columns: 1fr;
    }

    .technic-process-cards__image img, .technic-process-cards__card {
        min-height: 180px;
        min-width: 180px;
    }

    .technic-process-cards__card-title {
        font-size: 18px;
    }

    .technic-questions__question, .technic-questions__answer p {
        font-size: 16px;
    }

    .technic-questions__question {
        padding: 12px 25px;
    }

    .technic-questions__answer p {
        padding: 0 25px 12px;
    }

    .technic-questions__icon svg {
        width: 12px;
    }

    .technic-questions__icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .technic-questions__btn-wrap {
        margin-top: 40px;
    }

    .technic-questions__btn {
        width: 60%;
    }

    .technic-questions__modal-content {
        max-width: 90%;
    }

    .technic-form h2 {
        font-size: 22px;
    }

    .technic-questions__modal-close {
        right: 20px;
        top: 20px;
    }

    .technic-form input, .technic-form select {
        font-size: 12px;
        margin-top: 5px;
    }

    .technic-form > p > label {
        font-size: 12px;
    }

    .technic-questions__modal-close svg {
        width: 18px;
        height: auto;
    }

    /*  */
    .gold-hero-info__card {
        font-size: 16px;
    }

    .modal-content, .banner-modal-content {
        max-width: 90%!important;
    }

    .gold-form h2 {
        font-size: 22px;
    }

    .modal-title {
        font-size: 22px;
    }

    .gold-form > p > label {
        font-size: 12px;
    }

    .gold-form > .form-content > p > label {
        font-size: 12px;
    }

    .gold-form input, .gold-form select {
        font-size: 12px;
        margin-top: 5px;
    }

    .gold-form__total {
        font-size: 12px;
    }

    .modal-close svg, .banner-close svg {
        width: 18px;
        height: auto;
    }

    .modal-close, .banner-close {
        top: 20px!important;
        right: 20px!important;
    }

    .payment-table thead th {
        padding: 10px 15px;
        font-size: 12px;
    }

    .payment-table tbody td {
        font-size: 12px;
        padding: 8px;
    }

    .gold-questions__modal-content {
        max-width: 90%;
    }

    .gold-questions__modal-close svg {
        width: 18px;
        height: auto;
    }

    .gold-questions__modal-close {
        top: 20px;
        right: 20px;
    }

    .gold-questions__item svg {
        width: 12px;
    }

    .gold-questions__icon {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }

    .gold-questions__question, .gold-questions__answer p {
        font-size: 16px;
    }

    .gold-questions__question {
        padding: 12px 25px;
    }

    .gold-questions__answer p {
        padding: 0 25px 12px;
    }

    .gold-questions__btn-wrap {
        margin-top: 40px;
    }

    .gold-questions__btn {
        width: 60%;
    }

    /*  */
    .home-hero-form__title {
        margin-bottom: 20px;
    }

    .home-hero-form__subtitle {
        font-size: 16px;
    }

    .home-hero-form__divider {
        height: 100px;
    }

    .home-hero-form__cards {
        gap: 10px;
    }

    .home-hero-form__card-title {
        font-size: 16px;
    }

    .home-hero-form__card-text {
        font-size: 12px;
    }

    .home-hero-form__grid {
        gap: 30px;
    }

    .home-work-cards__title, .home-link-cards__title, .home-advantage-cards__title, .home-exchange-rate__title, .home-filial-maps__title, .home-questions__title {
        margin-bottom: 20px;
    }

    .home-work-cards__card, .home-work-cards__image img, .home-advantage-cards__card, .home-advantage-cards__card img {
        max-height: 220px;
        min-height: 220px;
    }

    .home-link-cards__icon svg {
        height: 70px;
    }

    .home-link-cards__card {
        gap: 10px 0;
    }

    .home-link-cards__card-title {
        font-size: 16px;
    }

    .home-exchange-rate__subtitle {
        font-size: 16px;
    }

    .home-exchange-rate__row {
        font-size: 14px;
    }

    .home-exchange-rate__cell img {
        margin-right: 10px;
    }

    .home-exchange-rate__row {
        grid-template-columns: 1.5fr 0.5fr 1fr;
    }

    .home-filial-maps__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .home-filial-maps__content {
        grid-template-columns: 1fr;
    }

    .home-filial-maps__card-title {
        font-size: 16px;
    }

    .home-filial-maps__card-subtitle {
        font-size: 14px;
    }

    .home-filial-maps__list {
        gap: 10px;
    }

    .home-filial-maps__map {
        height: 300px;
    }

    .home-filial-maps__footer {
        margin-top: 20px;
    }

    .home-filial-maps__button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .home-questions__question, .home-questions__answer p {
        font-size: 16px;
    }

    .home-questions__question {
        padding: 12px 25px;
    }

    .home-questions__answer p {
        padding: 0 25px 12px;
    }

    .home-questions__icon {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }

    .home-questions__icon svg {
        width: 12px;
    }

    .home-hero-form__form form label {
        font-size: 12px;
    }

    /*  */
    .microloans-documents__card-title {
        font-size: 14px;
        gap: 10px;
    }

    .microloans-documents__card-title svg {
        width: 15px;
        min-width: 15px;
    }

    .microloans-documents__card {
        padding: 12px 25px;
    }

    .microloans-documents__card-icon {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }

    .microloans-documents__card-icon svg {
        width: 12px;
    }

    .microloans-documents__open-link {
        font-size: 12px;
    }

    /*  */
    .microloans-credit-questions__card-title, .mcq-table__cell--head, .mcq-result-card__item, .mcq-tabs__button, .mcq-rate-table__header, .mcq-rate-note, .mcq-list-item__title, .mcq-list__bottom-text {
        font-size: 14px;
    }

    .microloans-credit-questions__card-button, .mcq-banner {
        font-size: 12px;
    }

    .microloans-credit-questions__card-button {
        padding: 8px 25px;
    }

    .mcq-card {
        padding: 20px 12px;
    }

    .mcq-mode-card {
        margin-bottom: 20px;
        gap: 10px;
    }

    .mcq-tabs {
        padding: 5px;
    }

    .mcq-tabs__button, .mcq-rate-note, .mcq-rate-table__row {
        padding: 6px 12px;
    }

    .mcq-list-item {
        padding: 8px 18px;
    }

    .mcq-card--list {
        gap: 10px;
    }

    .microloans-credit-questions__card-body-inner {
        padding: 0 12px 0;
    }

    .mcq-list-item__text {
        font-size: 12px;
    }

    /*  */
    .thankyou-box {
        padding: 25px 15px;
        gap: 20px;
    }

    .thankyou-title {
        font-size: 24px;
    }

    .thankyou-description {
        font-size: 16px;
    }

    .thankyou-button {
        font-size: 16px;
    }
}

@media screen and (max-width: 431px) {
    /*  */
    .sf-line {
        margin-bottom: 15px;
    }

    .sf-social__list {
        gap: 20px;
    }

    /*  */
    .filial-hero-info__img {
        max-height: 250px;
        min-height: 250px;
    }

    .filial-hero-info__map-embed {
        min-height: 250px;
    }

    /*  */
    .news-hero-cards__cats-btn {
        font-size: 16px;
    }

    .news-hero-cards__card {
        gap: 20px;
    }

    .news-hero-cards__btn {
        font-size: 14px;
        padding: 8px 30px;
    }

    .news-hero-cards__title {
        font-size: 20px;
    }

    /*  */

    .technic-questions__question, .technic-questions__answer p {
        font-size: 14px;
    }

    .technic-questions__list {
        gap: 15px;
    }

    .technic-form input[type="submit"] {
        font-size: 12px;
    }

    /*  */
    .gf-input > label {
        font-size: 14px;
    }

    .gf-input > .gf-input-block {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .gf-input > .gf-input-block input, .gf-input > .gf-input-block select {
        padding: 8px 12px;
        font-size: 14px;
    }

    .gf-input > div:nth-of-type(1) label, .gf-input > div:nth-of-type(1) > div {
        font-size: 14px;
    }

    .gold-form-calculator__interest {
        font-size: 14px;
    }

    .gold-form-calculator__body {
        gap: 30px 0;
    }

    .gold-form-calculator__right {
        padding: 20px;
    }

    .gf-result span {
        font-size: 14px;
    }

    .gf-result div {
        font-size: 20px;
    }

    .gf-btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .gf-buttons {
        margin-top: 0;
    }

    .gold-questions__question, .gold-questions__answer p {
        font-size: 14px;
    }

    .gold-questions__list {
        gap: 15px 0;
    }
}

@media screen and (max-width: 376px) {
    /*  */
    .stk-actions {
        gap: 15px;
    }

    /*  */
    .gold-form-calculator__body {
        padding: 20px 15px;
    }

    .gf-input > div:nth-of-type(1) {
        padding: 14px 12px 20px;
    }

    .gold-form input[type="submit"] {
        width: 100%;
    }

    .gold-form-calculator__right {
        padding: 10px;
    }

    /*  */
    .microloans-credit-questions__card-header {
        padding: 12px 25px;
    }

    .microloans-credit-questions__card-button {
        padding: 8px 15px;
    }

    .mcq-table__row {
        grid-template-columns: 1fr;
        padding-bottom: 12px;
    }

    .mcq-table__cell {
        text-align: center!important;
    }

    .mcq-table__header-row {
        grid-template-columns: 1fr;
        margin-bottom: 10px;
    }

    .mcq-table__cell--head {
        font-size: 12px;
    }

    .mcq-banner {
        padding: 8px 12px;
        width: 100%;
    }

    .mcq-result-card {
        gap: 10px;
    }
}

/* ====== Бургер меню (справа налево) ====== */
@media screen and (max-width: 1024px) {
    /* ===== Боковое меню (правое) ===== */
    .stk-nav {
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 50vw;
        height: 100vh;
        background: #ffffff;
        isolation: isolate;
        box-shadow: -4px 0 25px rgba(0, 0, 0, 0.25);
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.45s ease, opacity 0.35s ease;
        z-index: 3001 !important;
        padding: 70px 24px 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .stk-header.nav-open .stk-nav {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Кнопка закрытия (X) */
    .stk-nav__close {
        display: block;
        position: absolute;
        top: 22px;
        right: 24px;
        font-size: 30px;
        border: none;
        background: none;
        cursor: pointer;
        color: #111;
        z-index: 3100;
        transition: transform 0.2s ease;
        padding: 0;
    }

    .stk-nav__close:hover {
        transform: scale(1.15);
    }

    /* Пункты меню */
    .stk-nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .stk-nav__list li {
        margin-bottom: 22px;
    }

    .stk-nav__list a {
        text-decoration: none;
        font-weight: 600;
        color: #111;
        font-size: 20px;
        transition: color 0.2s ease;
    }

    .stk-nav__list a:hover {
        color: #f58220;
    }

    /* ===== Затемнение фона ===== */
    body.nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 2000 !important;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    body::before {
        content: "";
        opacity: 0;
        pointer-events: none;
    }

    /* ===== Слой хедера ===== */
    .stk-header {
        position: relative;
        z-index: 3000 !important;
    }

    /* ===== Остальные элементы под меню ===== */
    .stk-lang,
    .stk-actions {
        z-index: 1 !important;
        position: relative;
    }
}