

/* <editor-fold desc="1. Tokens"> */

:root {
    --navy: #0A2C7C;
    --navy-deep: #021133;
    --blue: #4466B5;
    --cream: #FFF9EF;
    --yellow: #FFB331;
    --yellow-dark: #BE7800;
    --green: #42C654;
    --red: #C64242;
    --link: #0990CA;
    --ink: #292F2C;
    --ink-soft: rgba(41, 47, 44, .95);
    --grey: #616161;
    --placeholder: #717573;
    --grey-border: #BEBEBE;
    --grey-line: #D9D9D9;
    --white: #FFFFFF;
    --page-bg: var(--white);
    --footer-bg: var(--cream);
    --h1: 52px;
    --h2: 32px;
    --h3: 24px;
    --h4: 20px;
    --h5: 16px;
    --body: 16px;
    --small: 13px;
    --content-width: 1110px;
    --gutter: 30px;
    --header-h: 90px;
    --section-pad: 90px;
    --radius: 20px;
    --radius-sm: 8px;
    --radius-input: 4px;
    --radius-pill: 68px;
    --font: 'Google Sans Flex', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --shadow-card: 0 4px 33px 12px rgba(0, 0, 0, .08);
    --shadow-soft: 0 0 80px 0 rgba(163, 163, 163, .15);
    --shadow-menu: 0 4px 30px rgba(0, 0, 0, .25);
    --shadow-cta: 0 6px 0 0 var(--yellow-dark);
    --transition: .2s ease;
}

@media (max-width: 991px) {
    :root {
        --h1: 40px;
        --h2: 28px;
        --section-pad: 60px;
        --header-h: 70px;
    }
}

@media (max-width: 575px) {
    :root {
        --h1: 36px;
        --h2: 28px;
        --h3: 22px;
        --h4: 16px;
        --radius: 14px;
        --gutter: 15px;
        --section-pad: 48px;
        --header-h: 54px;
        --shadow-cta: 0 4px 0 0 var(--yellow-dark);
    }
}

@media (min-width: 1921px) {
    body {
        zoom: calc(100vw / 1920px);
    }
}

/* </editor-fold> */

/* <editor-fold desc="2. Elements"> */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--page-bg);
    color: var(--ink-soft);
    font-family: var(--font);
    font-size: var(--body);
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

strong,
b {
    font-weight: 700;
}

:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
}

/* </editor-fold> */

/* <editor-fold desc="3. Layout"> */

.container {
    width: 100%;
    max-width: calc(var(--content-width) + var(--gutter) * 2);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container--md {
    --content-width: 1250px;
}

.container--lg {
    --content-width: 1570px;
}

.main {
    position: relative;
}

.section {
    position: relative;
    padding: var(--section-pad) 0;
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section--blue {
    background: var(--blue);
    color: var(--white);
}

.section--cream {
    background: var(--cream);
}

.section--tight {
    padding: calc(var(--section-pad) / 2) 0;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* </editor-fold> */

/* <editor-fold desc="4. Typography"> */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
    font-family: var(--font);
    color: inherit;
    margin: 0;
}

h1,
.h1 {
    font-size: var(--h1);
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

h2,
.h2 {
    font-size: var(--h2);
    font-weight: 500;
    line-height: 1.2;
}

.section-title {
    font-size: var(--h1);
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px;
}

h3,
.h3 {
    font-size: var(--h3);
    font-weight: 700;
    line-height: normal;
    letter-spacing: .04em;
}

h4,
.h4 {
    font-size: var(--h4);
    font-weight: 400;
    line-height: normal;
}

h5,
.h5 {
    font-size: var(--h5);
    font-weight: 400;
    line-height: normal;
}

p {
    margin: 0 0 20px;
}

p:last-child {
    margin-bottom: 0;
}

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

.text-white {
    color: var(--white);
}

.text-green {
    color: var(--green);
}

.text-navy {
    color: var(--navy);
}

.text-muted {
    color: var(--grey);
}

.link {
    color: var(--link);
    text-decoration: underline;
}

.link:hover {
    opacity: .8;
}

.link--white {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* </editor-fold> */

/* <editor-fold desc="5. Buttons"> */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font);
    font-size: var(--h5);
    font-weight: 400;
    line-height: normal;
    border-radius: var(--radius-pill);
    padding: 11px 31px;
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn--primary {
    background: var(--yellow);
    color: var(--navy-deep);
    font-size: var(--h3);
    font-weight: 700;
    letter-spacing: .04em;
    min-height: 80px;
    min-width: 370px;
    padding: 0 40px;
    border-radius: 60px;
    box-shadow: var(--shadow-cta);
    transition: all var(--transition);
}

.btn--primary:hover {
    transform: translateY(6px);
    box-shadow: 0 0 0 0 var(--yellow-dark);
}

.btn--outline {
    border: 1px solid var(--white);
    color: var(--white);
    font-weight: 700;
}

.btn--outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn--outline-dark {
    width: 100%;
    max-width: 157px;
    border: 1px solid var(--navy-deep);
    color: var(--navy-deep);
}

.btn--outline-dark:hover {
    background: var(--navy-deep);
    color: var(--white);
}

.btn--block {
    width: 100%;
    min-width: 0;
}

@media (max-width: 575px) {
    .btn--primary {
        min-height: 64px;
        min-width: 0;
        width: 100%;
        max-width: 290px;
    }

    .btn--primary:hover {
        transform: translateY(4px);
    }
}

/* </editor-fold> */

/* <editor-fold desc="6. Header"> */

.site-header {
    position: relative;
    background: var(--navy);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 20px;
}

.site-header__logo {
    width: 154px;
    height: 50px;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-left: auto;
}

.site-header__nav-list {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__nav-link {
    font-size: var(--h5);
    color: var(--white);
    text-underline-offset: 3px;
}

.site-header__nav-link:hover {
    opacity: 0.7;
}

.site-header__nav-link.active {
    text-decoration: underline;
}

.site-header__cta {
    flex-shrink: 0;
    max-width: 160px;
    margin: 0 auto;
}

.site-header__nav-head,
.site-header__burger,
.site-header__overlay {
    display: none;
}

.site-header__burger span {
    display: block;
    width: 34px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 1100px) {
    .site-header__logo {
        width: 118px;
        height: 38px;
    }

    .site-header__burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        padding: 0 3px;
        margin-left: auto;
    }

    .site-header__burger.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header__burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .site-header__burger.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .site-header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px var(--gutter) 60px;
        background: var(--navy);
        box-shadow: var(--shadow-menu);
        transform: translateX(100%);
        transition: transform .3s ease;
        overflow-y: auto;
        z-index: 60;
    }

    .site-header__nav.is-open {
        transform: translateX(0);
    }

    .site-header__nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .site-header__nav-logo {
        width: 118px;
        height: 38px;
    }

    .site-header__nav-close {
        position: relative;
        width: 32px;
        height: 32px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .site-header__nav-close span {
        position: absolute;
        top: 50%;
        left: 4px;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
    }

    .site-header__nav-close span:nth-child(1) {
        transform: rotate(45deg);
    }

    .site-header__nav-close span:nth-child(2) {
        transform: rotate(-45deg);
    }

    .site-header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 26px;
        margin-bottom: 50px;
    }

    .site-header__overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(2, 17, 51, .6);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
        z-index: 55;
    }

    .site-header__overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 575px) {
    .site-header__logo {
        width: 93px;
        height: 30px;
    }
}

/* </editor-fold> */

/* <editor-fold desc="7. Footer"> */

.site-footer {
    background: var(--footer-bg);
    color: var(--ink);
    padding-top: 54px;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.site-footer__logo {
    width: 154px;
    height: 50px;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 55px;
    font-size: var(--h5);
}

.site-footer__nav a {
    text-underline-offset: 3px;
}

.site-footer__nav a:hover {
    opacity: 0.7;
}

.site-footer__nav a.active {
    text-decoration: underline;
}

.legal-text {
    font-size: var(--small);
    line-height: 1.45;
    color: inherit;
}

.legal-text p {
    margin-bottom: 14px;
}

.site-footer__material {
    font-size: var(--h5);
    line-height: 20px;
    color: var(--ink);
    text-align: justify;
}

.site-footer__material h3 {
    font-size: var(--h5);
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    margin: 0 0 20px;
}

.site-footer__material p {
    margin: 0 0 20px;
}

.site-footer__material p:last-child {
    margin-bottom: 0;
}

.site-footer__material strong {
    font-weight: 400;
}

.site-footer__material .title {
    display: block;
    font-weight: 400;
}

.site-footer__material p:has(+ .table),
.site-footer__material p:empty {
    display: none;
}

.site-footer__material .table {
    display: table;
    table-layout: fixed;
    width: 100%;
    min-width: 0;
    max-width: 887px;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: var(--h5);
    text-align: left;
}

.site-footer__material .tr {
    display: table-row;
}

.site-footer__material .td {
    display: table-cell;
    width: 20%;
    height: 39px;
    padding: 9px 12px;
    vertical-align: middle;
    border: 1px solid var(--grey-line);
}

.site-footer__material .tr:first-child .td {
    height: 50px;
    padding: 5px 12px;
}

@media (max-width: 769px) {
    .site-footer__material .table {
        display: flex;
        max-width: none;
    }

    .site-footer__material .tr {
        display: flex;
        flex: 1 1 0;
        flex-direction: column;
        min-width: 0;
    }

    .site-footer__material .tr:first-child {
        flex: 0 0 33%;
    }

    .site-footer__material .td,
    .site-footer__material .tr:first-child .td {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        width: auto;
        height: auto;
        min-height: 44px;
        padding: 8px 7px;
        font-size: 11px;
        line-height: 1.3;
    }
}

.site-footer__bottom {
    margin-top: 50px;
    padding: 16px 0;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.site-footer__copyright {
    margin: 0;
    font-size: var(--h5);
}

@media (max-width: 1280px) {
    .site-footer {
        padding-top: 40px;
    }

    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        margin-bottom: 50px;
    }

    .site-footer__nav {
        gap: 16px 51px;
    }
}

@media (max-width: 991px) {
    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--ink-soft);
    }

    .site-footer__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

/* </editor-fold> */

/* <editor-fold desc="8. Cards"> */

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 30px;
}

.card--soft {
    box-shadow: var(--shadow-soft);
}

.cat-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 41px;
    min-height: 290px;
    padding: 50px 40px 45px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    color: var(--ink-soft);
    transition: background-color var(--transition), color var(--transition);
}

.cat-card__icon {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.cat-card__title {
    font-size: var(--h2);
    font-weight: 500;
    line-height: normal;
}

.cat-card:hover,
.cat-card.is-active {
    background: var(--navy);
    color: var(--white);
}

@media (max-width: 1280px) {
    .cat-card {
        flex-direction: row;
        justify-content: flex-start;
        gap: 46px;
        min-height: 184px;
        padding: 50px 40px 54px;
    }
}

@media (max-width: 769px) {
    .cat-card {
        flex-direction: row;
        justify-content: flex-start;
        gap: 30px;
        min-height: 0;
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .cat-card {
        padding: 30px 22px;
        gap: 20px;
    }

    .cat-card__icon {
        width: 40px;
        height: 40px;
    }
}

.step-card {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 600px;
    width: 100%;
    padding: 49px 60px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.step-card__icon {
    width: 65px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}

.step-card__title {
    font-size: var(--h2);
    font-weight: 500;
    line-height: normal;
}

.step-card__text {
    font-size: var(--h4);
}

@media (max-width: 769px) {
    .step-card {
        gap: 30px;
        padding: 30px;
    }

    .step-card__icon {
        width: 50px;
        height: 54px;
    }
}

@media (max-width: 575px) {
    .step-card {
        padding: 40px 30px 30px;
        flex-direction: column;
        text-align: center;
        max-width: 260px;
    }

    .step-card__title {
        margin: 0 0 10px;
    }
}

/* </editor-fold> */

/* <editor-fold desc="9. Accordion (FAQ)"> */

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

.accordion__item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: var(--shadow-soft);
}

.accordion__item.is-open {
    border-color: #B3B3B3;
}

.accordion__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 27px 34px 27px 50px;
    text-align: left;
    font-size: var(--h4);
    color: var(--white);
    background: var(--navy);
}

.accordion__q:hover {
    background: var(--blue);
}

.accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--yellow);
    transition: transform var(--transition);
}

.accordion__toggle img {
    width: 15px;
    height: 9px;
}

.accordion__a {
    display: none;
    padding: 40px 50px 50px;
    background: var(--white);
    font-size: var(--body);
    line-height: normal;
}

.accordion__a ol,
.accordion__a ul {
    margin: 10px 0;
    padding-left: 22px;
}

.accordion__a ol {
    list-style: decimal;
}

.accordion__a ul {
    list-style: disc;
}

.accordion__item.is-open .accordion__a {
    display: block;
}

.accordion__item.is-open .accordion__toggle {
    transform: rotate(180deg);
}

@media (max-width: 769px) {
    .accordion {
        gap: 16px;
    }

    .accordion__q {
        padding: 18px 20px;
    }

    .accordion__a {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .accordion {
        gap: 10px;
    }

    .accordion__q {
        padding: 20px 16px 26px;
    }

    .accordion__a {
        padding: 30px 16px;
    }
}

/* </editor-fold> */

/* <editor-fold desc="10. Forms"> */

.form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form__required {
    font-size: 10px;
    color: var(--ink-soft);
    text-align: right;
    margin: 0 0 20px;
    opacity: 0.7;
}

.field {
    display: block;
    position: relative;
}

.field__control {
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    font-family: var(--font);
    font-size: var(--h5);
    line-height: normal;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-input);
    transition: border-color var(--transition);
}

textarea.field__control {
    min-height: 162px;
    padding-top: 24px;
    resize: vertical;
}

.field__control::placeholder {
    color: transparent;
}

.field__control:focus {
    border-color: var(--ink);
    outline: none;
}

.field__label {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    font-size: var(--h5);
    line-height: normal;
    color: var(--placeholder);
    pointer-events: none;
    transition: top var(--transition), left var(--transition), font-size var(--transition), color var(--transition), transform var(--transition);
}

.field__control.required ~ .field__label::after {
    content: " *";
}

.field__control:focus ~ .field__label,
.field__control:not(:placeholder-shown) ~ .field__label,
.field__control.error ~ .field__label,
.field__control.valid ~ .field__label {
    top: 3px;
    left: 13px;
    font-size: 11px;
    transform: none;
}

.field__control:focus ~ .field__label::after,
.field__control:not(:placeholder-shown) ~ .field__label::after,
.field__control.error ~ .field__label::after,
.field__control.valid ~ .field__label::after {
    content: "";
}

textarea.field__control ~ .field__label {
    top: 16px;
    transform: none;
}

textarea.field__control:focus ~ .field__label,
textarea.field__control:not(:placeholder-shown) ~ .field__label,
textarea.field__control.error ~ .field__label,
textarea.field__control.valid ~ .field__label {
    top: 3px;
}

.field__control.error,
.field.has-error .field__control {
    border-color: var(--red);
}

.field__control.error {
    color: var(--placeholder);
}

.field__control.error ~ .field__label {
    color: var(--red);
}

.field__control.valid {
    border-color: var(--green);
}

.field__control.valid ~ .field__label {
    color: var(--green);
}

.field__error {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.3;
    color: var(--red);
}

.form__captcha:empty {
    display: none;
}

.form__captcha .feedCaptcha-error {
    margin-top: 6px;
    font-size: var(--small);
    line-height: 1.3;
    color: var(--red);
}

.form__recaptcha:empty {
    display: none;
}

.form__button {
    min-width: 157px;
    min-height: 44px;
    border: 1px solid var(--navy-deep);
    color: var(--navy-deep);
    background: transparent;
    transition: all var(--transition);
}

.form__captcha {
    display: none;
}

.form__button:hover {
    background: var(--yellow);
    color: var(--white);
    border-color: var(--yellow);
}

.form__button.is-active {
    border-color: var(--yellow);
    background: var(--yellow);
}

.form__button.is-active:hover {
    color: var(--white);
}

.form__button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.form__success {
    padding: 40px 0;
    text-align: center;
    font-size: var(--h4);
}

.form-card {
    position: relative;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 40px 52px;
    z-index: 4;
}

@media (max-width: 1280px) {
    .form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .form-card {
        padding: 30px 15px 40px;
    }

    .form {
        gap: 20px;
    }
}

/* </editor-fold> */

/* <editor-fold desc="11. Tables (rates / disclosure)"> */

.table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0 30px;
}

.table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: var(--small);
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--grey-line);
    vertical-align: middle;
}

.table th {
    font-weight: 400;
}

/* </editor-fold> */

/* <editor-fold desc="12. Blocks"> */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
    padding: 90px 0 67px;
}

.hero:before,
.hero:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 600px;
    height: 520px;
    background: transparent url(../img/hero-illustration.svg) no-repeat center;
    background-size: cover;
    z-index: 0;
}

.hero:before {
    left: 0;
}

.hero:after {
    right: 0;
    transform: scaleX(-1);
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 675px;
    margin: 0 auto;
}

.hero__title {
    margin-bottom: 60px;
}

.hero__title .text-green {
    color: var(--green);
}

.hero__text {
    font-size: var(--h2);
    font-weight: 500;
    line-height: normal;
    margin: 0 0 50px;
}

.hero__legal-text {
    font-size: var(--h4);
    font-weight: 400;
    line-height: normal;
}

.hero__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin: 0 0 60px;
    padding: 0;
    list-style: none;
}

.hero__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--h4);
}

.hero__list img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.hero__disclosures {
    margin-top: 66px;
    font-size: var(--h5);
}

.hero__disclosures:hover {
    opacity: 0.6;
}

.hero__person {
    position: absolute;
    bottom: 0;
    z-index: 2;
    max-width: 460px;
    max-height: 590px;
    object-fit: contain;
    object-position: bottom;
}

.hero__person--left {
    left: max(0px, calc(50% - 690px));
}

.hero__person--right {
    right: max(0px, calc(50% - 730px));
}

.hero--split .hero__inner {
    align-items: flex-start;
    text-align: left;
    max-width: 630px;
    margin: 0;
}

.hero--intro {
    padding: 90px 0 130px;
    min-height: 700px;
}

.hero--intro .hero__inner {
    max-width: 765px;
}

.hero--intro .hero__title {
    margin-bottom: 70px;
}

.hero--intro .legal-text {
    font-size: var(--h4);
    line-height: 1.3;
}

.hero--intro .hero__person--right {
    right: max(0px, calc(50% - 731px));
    bottom: 27px;
    width: clamp(360px, 30vw, 572px);
    max-width: none;
    max-height: none;
}

.hero--debt,
.hero--personal,
.hero--emergency {
    padding: 70px 0 52px;
}

.hero--debt .hero__inner,
.hero--emergency .hero__inner {
    max-width: 620px;
}

.hero--personal .hero__inner {
    max-width: 610px;
}

.hero--bad-credit .hero__inner {
    max-width: 440px;
}

.hero--personal .hero__title,
.hero--emergency .hero__title {
    margin-bottom: 50px;
}

.hero--personal .hero__list,
.hero--emergency .hero__list {
    margin: 0 0 50px;
}

.hero--personal .hero__disclosures,
.hero--emergency .hero__disclosures {
    margin-top: 56px;
}

.hero--hiw {
    min-height: 700px;
    padding: 90px 0 136px;
}

.hero--hiw:before {
    width: 316px;
    height: 274px;
}

.hero--hiw:after {
    bottom: auto;
    top: 0;
    background-image: url(../img/hero-hiw-illustration.svg);
    transform: none;
    width: 608px;
    height: 527px;
}

.hero--hiw .hero__person {
    top: 60px;
}

.hero--hiw .hero__person--right {
    right: max(0px, calc(50% - 615px));
}

.hero--hiw .hero__inner {
    align-items: flex-start;
    text-align: left;
    max-width: 765px;
    margin: 0;
}

.hero--contact {
    padding: 90px 0 0;
}

.hero--contact:before {
    content: none;
}

.hero--contact:after {
    bottom: auto;
    top: 0;
    background-image: url(../img/hero-hiw-illustration.svg);
    transform: none;
    width: 608px;
    height: 527px;
}

.hero--contact .container {
    position: relative;
    z-index: 1;
}

.hero--contact .hero__title {
    margin-bottom: 40px;
}

@media (max-width: 1280px) {
    .hero {
        padding: 70px 0 67px;
    }

    .hero:before,
    .hero:after {
        width: 335px;
        height: 290px;
    }

    .hero__person {
        max-width: 273px;
        max-height: 350px;
    }

    .hero__person--left {
        left: max(0px, calc(50% - 455px));
    }

    .hero__person--right {
        right: max(0px, calc(50% - 455px));
    }

    .hero__list {
        margin: 0 0 80px;
    }

    .hero--contact {
        padding: 90px 0 0
    }

    .hero--hiw {
        padding: 70px 0 100px;
        min-height: 670px;
    }

    .hero--hiw:before {
        display: none;
    }

    .hero--hiw:after {
        width: 514px;
        height: 445px;
    }

    .hero--hiw .hero__inner {
        max-width: 560px;
    }

    .hero--hiw .hero__title {
        margin-bottom: 30px;
    }

    .hero--hiw .hero__text {
        margin-bottom: 40px;
    }

    .hero--hiw .hero__person {
        top: 70px;
        max-width: 327px;
        max-height: 500px;
    }

    .hero--hiw .hero__person--right {
        right: max(0px, calc(50% - 540px));
    }
}

@media (max-width: 991px) {
    .hero--contact {
        padding: 90px 0 80px;
    }

    .hero--hiw {
        min-height: 0;
    }

    .hero--contact .hero__inner {
        margin: 0 auto;
    }

    .hero--bad-credit .hero__title .text-green {
        display: block;
    }
}

@media (max-width: 860px) {
    .hero--hiw .hero__person {
        display: none;
    }

    .hero--hiw .hero__inner {
        max-width: 100%;
    }
}

@media (max-width: 769px) {
    .hero {
        padding: 70px 0 350px;
    }

    .hero:before,
    .hero:after {
        width: 300px;
        height: 265px;
    }

    .hero--contact {
        padding: 90px 0 70px;
    }

    .hero--hiw {
        padding: 70px 0 100px;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 26px 0 270px;
    }

    .hero:before,
    .hero:after {
        width: 290px;
        height: 250px;
    }

    .hero:after {
        content: none;
    }

    .hero__person {
        left: 50%;
        transform: translateX(-50%);
        max-height: 250px;
    }

    .hero__person--right {
        display: none;
    }

    .hero__title {
        margin-bottom: 30px;
    }

    .hero__list {
        margin: 0 0 50px;
    }

    .hero__disclosures {
        margin-top: 34px;
    }

    .hero__list li {
        font-size: var(--h5);
        gap: 12px;
    }

    .hero__list img {
        width: 24px;
        height: 24px;
    }

    .hero--contact {
        padding: 26px 0 60px;
    }

    .hero--contact .hero__title {
        margin-bottom: 26px;
    }

    .hero--hiw {
        padding: 26px 0 60px;
    }

    .hero--hiw .hero__text {
        margin: 0 0 30px;
    }

    .hero__legal-text {
        font-size: 20px;
    }
}

.categories {
    padding: 100px 0 85px;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: calc(1250px + var(--gutter) * 2);
}

@media (max-width: 1280px) {
    .categories {
        padding: 50px 0 40px;
    }

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

@media (max-width: 840px) {
    .categories__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 769px) {
    .categories {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .categories {
        padding: 30px 0 50px;
    }

    .categories__grid {
        gap: 10px;
    }
}

.steps {
    position: relative;
    overflow: hidden;
    padding: 35px 0 76px;
}

.steps__inner {
    max-width: 100%;
}

.steps__band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 156px;
    height: 420px;
    background: var(--blue);
    z-index: 1;
}

.steps__band:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    max-width: 385px;
    height: 100%;
    background: linear-gradient(90deg, #FFDC95 23.08%, #FFF8EB 100%);
    display: block;
}

.steps--full {
    padding: 80px 0 50px;
}

.steps--full .steps__band {
    top: 0;
    height: 100%;
}

.steps--full .steps__photo {
    bottom: 0;
}

.steps--full .section-title {
    margin: 0 0 70px;
}

.steps > .container {
    position: relative;
    z-index: 3;
}

.steps__list {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.steps__list .step-card {
    margin: 0 auto;
}

.steps__list .step-card:nth-child(2) {
    transform: translateX(260px);
}

.steps__list .step-card:nth-child(3) {
    transform: translateX(calc(260px * 2));
}

.steps__photo {
    position: absolute;
    left: calc(50% - 785px);
    bottom: 156px;
    z-index: 2;
    width: 560px;
}

@media (max-width: 1750px) {
    .steps__list {
        transform: translateX(-125px);
    }
}

@media (max-width: 1500px) {
    .steps--full .steps__band:before {
        top: 295px;
    }
}

@media (max-width: 1450px) {
    .steps__list .step-card:nth-child(2) {
        transform: translateX(220px);
    }

    .steps__list .step-card:nth-child(3) {
        transform: translateX(calc(220px * 2));
    }
}

@media (max-width: 1280px) {
    .steps {
        padding: 40px 0 90px;
    }

    .steps__list {
        transform: translateX(0);
        align-items: center;
    }

    .steps__list .step-card {
        margin: 0;
    }

    .steps__list .step-card:nth-child(1) {
        transform: translateX(-165px);
    }

    .steps__list .step-card:nth-child(2) {
        transform: translateX(0);
    }

    .steps__list .step-card:nth-child(3) {
        transform: translateX(165px);
    }

    .steps__band {
        height: 585px;
        bottom: 0;
    }

    .steps__band:before {
        max-width: 275px;
    }

    .steps__photo {
        width: 285px;
        left: 30px;
        bottom: 0;
    }
}

@media (max-width: 840px) {
    .steps {
        padding: 80px 0 280px;
    }

    .steps__band {
        height: 760px;
    }

    .steps__band:before {
        max-width: 100%;
        height: 210px;
        bottom: 0;
        top: auto;
        right: 0;
    }

    .steps--full .steps__band:before {
        top: auto;
    }

    .steps__photo {
        left: 50%;
        transform: translateX(-50%);
    }

    .steps__list .step-card:nth-child(n) {
        transform: translateX(0);
    }

    .steps--full .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 769px) {
    .steps {
        padding: 50px 0 280px;
    }

    .steps__title {
        color: var(--white);
    }

    .steps__band {
        height: 100%;
    }
}

@media (max-width: 575px) {
    .steps {
        padding: 40px 0 280px;
    }

    .steps__title {
        margin: 0 0 40px;
    }
}

.faq {
    position: relative;
    margin-top: -156px;
    padding: 156px 0 115px;
}

.faq:before,
.faq:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    max-width: 390px;
    height: 1160px;
    background: transparent url(../img/faq-illustration.svg) no-repeat center;
    background-size: cover;
}

.faq:before {
    left: 0;
    bottom: 0;
}

.faq:after {
    top: 0;
    right: 0;
    transform: scale(-1, -1);
}

.faq--full {
    margin-top: 0;
    padding: 90px 0;
}

.faq--full:before {
    top: 0;
    bottom: auto;
    transform: scale(1, -1);
}

.faq__link-wrap {
    text-align: center;
    margin-top: 60px;
}

.faq__link {
    text-decoration: none;
    font-size: var(--h4);
    text-underline-offset: 3px;
}

.faq__link:hover {
    text-decoration: underline;
}

@media (max-width: 1280px) {
    .faq {
        margin-top: 0;
        padding: 80px 0;
    }

    .faq:before,
    .faq:after {
        max-width: 300px;
        height: 892px;
    }

    .faq--full {
        padding: 90px 0;
    }

    .faq__link-wrap {
        margin-top: 40px;
    }
}

@media (max-width: 1100px) {
    .faq:before,
    .faq:after {
        content: none;
    }
}

@media (max-width: 769px) {
    .faq {
        padding: 50px 0 60px;
    }
}

@media (max-width: 575px) {
    .faq {
        padding: 50px 0 310px;
    }

    .faq--full {
        padding: 26px 0 50px;
    }

    .faq__title {
        margin: 0 0 30px;
    }
}

.why {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 81px;
    text-align: center;
}

.why:before,
.why:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 724px;
    height: 531px;
    z-index: 0;
}

.why:before {
    left: 0;
    background: transparent url(../img/why-illustration-left.svg) no-repeat center;
    background-size: cover;
}

.why:after {
    right: 0;
    background: transparent url(../img/why-illustration-right.svg) no-repeat center;
    background-size: cover;
}

.why__title {
    margin: 0 0 37px;
}

.why__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin: 0 0 60px;
    padding: 0;
    list-style: none;
}

.why__list li {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: var(--h4);
    text-align: left;
}

.why__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-input);
}

.why__person {
    position: absolute;
    bottom: 0;
    z-index: 1;
    max-width: 390px;
    max-height: 470px;
    object-fit: contain;
    object-position: bottom;
}

.why__person--left {
    left: max(0px, calc(50% - 770px));
}

.why__person--right {
    right: max(0px, calc(50% - 780px));
}

.why .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 1280px) {
    .why:before,
    .why:after {
        width: 300px;
        height: 220px;
    }

    .why__person {
        max-width: 225px;
        max-height: 270px;
    }

    .why__person--left {
        left: max(0px, calc(50% - 465px));
    }

    .why__person--right {
        right: max(0px, calc(50% - 465px));
    }
}

@media (max-width: 769px) {
    .why {
        padding: 60px 0 290px;
    }
}

@media (max-width: 575px) {
    .why {
        padding: 40px 0 310px;
        overflow: unset;
    }

    .why:before {
        top: -220px;
    }

    .why__person--left {
        top: -270px;
        left: 30px;
    }

    .why__person--right {
        right: 30px;
    }

    .why__title {
        margin: 0 0 25px;
    }

    .why__list {
        margin: 0 0 50px;
    }

    .why__list li {
        flex-direction: column;
        gap: 9px;
    }

    .why__icon {
        width: 30px;
        height: 30px;
        background: transparent;
        filter: brightness(0) invert(1);
    }
}

.content-page {
    padding: 90px 0 60px;
}

.content-page *:not(a):empty {
    display: none;
}

.content-page h1 {
    font-size: var(--h2);
    font-weight: 500;
    text-transform: none;
    margin-bottom: 70px;
}

.content-page h2 {
    font-size: var(--h4);
    font-weight: 700;
    margin: 30px 0 14px;
}

.content-page h3 {
    font-size: var(--h5);
    font-weight: 700;
    letter-spacing: 0;
    margin: 24px 0 10px;
}

.content-page p,
.content-page li {
    font-size: var(--body);
    line-height: normal;
}

.content-page p {
    margin: 0 0 26px;
}

.content-page ul,
.content-page ol {
    margin: 0 0 26px;
    padding-left: 22px;
}

.content-page ul {
    list-style: disc;
}

.content-page ol {
    list-style: none;
}
.content-page ol li a {
    text-decoration: none;
}
.content-page ol li a:hover {
    text-decoration: underline;
}

.content-page h4 {
    font-size: var(--h5);
    font-weight: 700;
    margin: 20px 0 8px;
}

.content-page a {
    color: var(--link);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-page__address {
    font-size: var(--small);
    font-style: normal;
    line-height: 1.6;
}

.toc {
    margin: 30px 0 40px;
}

.toc__title {
    font-size: var(--small);
    margin-bottom: 12px;
}

.content-page .toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 575px) {
    .content-page {
        padding: 40px 0;
    }

    .content-page h1 {
        margin: 0 0 40px;
    }

    .content-page p {
        margin: 0 0 20px;
    }

    .content-page ul,
    .content-page ol {
        margin: 0 0 20px;
    }
}

.toc__list a {
    font-size: var(--small);
    color: var(--link);
    text-decoration: none;
}

.toc__list a:hover {
    text-decoration: underline;
}

.contact-text {
    font-size: var(--h4);
    font-weight: 400;
    line-height: normal;
    max-width: 610px;
    margin: 0;
}

.contact-info {
    margin-top: 40px;
    font-size: var(--h3);
    font-weight: 400;
    letter-spacing: 0;
}

.contact-info__row span:not(.contact-info__label):not(.contact-info__phone) {
    display: inline-block;
    margin-bottom: 5px;
    font-size: var(--h4);
    white-space: nowrap;
}

.contact-info__row {
    margin-bottom: 15px;
}

.contact-info__label {
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 15px;
    font-weight: 700;
}

.contact-info__phone {
    display: inline-block;
    margin-bottom: 15px;
    color: #59A9E0;
    font-weight: 700;
    white-space: nowrap;
}

.contact-photo {
    position: relative;
    width: 100%;
    max-width: 630px;
    margin-top: 50px;
}

.contact-photo:before {
    content: '';
    display: block;
    width: 927px;
    height: 927px;
    border-radius: 50%;
    background: var(--blue);
    position: absolute;
    top: 83px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 60px;
    align-items: start;
}

@media (max-width: 1280px) {
    .contact-grid {
        grid-template-columns: 1fr 450px;
    }

    .form-card {
        padding: 40px 30px;
    }

    .contact-photo {
        margin-top: 135px;
    }

    .contact-photo:before {
        top: -80px;
    }
}

@media (max-width: 991px) {
    .contact-grid {
        max-width: 650px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-photo {
        margin-top: 35px;
        margin-left: auto;
        margin-right: auto;
        max-width: 72%;
    }

    .contact-photo:before {
        content: none;
    }
}

@media (max-width: 575px) {
    .contact-text {
        font-size: 18px;
    }

    .contact-info__row {
        margin-bottom: 25px;
    }

    .contact-info__row span:not(.contact-info__label):not(.contact-info__phone) {
        margin-bottom: 15px;
    }

    .contact-info__phone {
        margin-bottom: 15px;
    }
}

.intro {
    background: linear-gradient(180deg, #FDEFD4 0%, var(--white) 100%);
    padding: 90px 0 15px;
    text-align: center;
}

.intro__title {
    margin-bottom: 40px;
}

.intro__text {
    margin: 0 auto;
    font-size: var(--h2);
    font-weight: 500;
    line-height: normal;
}

.intro__arrow {
    display: block;
    width: 2px;
    height: 80px;
    margin: 49px auto 0;
    background: var(--green);
    position: relative;
}

.intro__arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 19px solid var(--green);
    transform: translateX(-50%);
}

.intro--emergency .intro__inner {
    max-width: 1240px;
}

.intro--emergency .intro__text {
    max-width: 1110px;
}

@media (max-width: 1280px) {
    .intro__text {
        font-size: 28px;
    }
}

@media (max-width: 769px) {
    .intro {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .intro {
        padding: 50px 0 55px;
    }

    .intro__arrow {
        display: none;
    }
}

/* </editor-fold> */

/* <editor-fold desc="13. Utilities"> */

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.stack-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* </editor-fold> */
