

@layer feed-reset, feed-site, feed-embed;

@layer feed-site {

:root {
    --accent: #59E400;
    --accent-deep: #00B05C;
    --ink: #000000;
    --surface-dark: #0D2000;
    --surface-accent: #C8E6D7;
    --surface-alt: #F3F9F6;

    --accent-hover: #60F600;
    --accent-active: #5FE808;
    --accent-deep-hover: #00D570;
    --surface-dark-end: #012715;
    --text: #212121;
    --surface: #FFFFFF;
    --border: #BEBEBE;
    --surface-disabled: #D8D8D8;
    --text-muted: #A9A9A9;
    --error: #C43244;
    --overlay: rgba(0, 0, 0, .5);
    --border-on-dark: rgba(255, 255, 255, .5);

    --gradient-accent: linear-gradient(180deg, #00B05C 0%, #59E400 100%);
    --gradient-surface-dark: linear-gradient(135deg, #000000 0%, #012715 100%);

    --h1: 64px;
    --h2: 48px;
    --h3: 28px;
    --h4: 28px;
    --h5: 22px;
    --h6: 16px;
    --body: 16px;
    --caption: 14px;
    --section-title: 64px;

    --btn-h: 80px;
    --btn-font: 24px;
    --btn-pad: 54px;

    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;

    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    --content-width: 1110px;
    --content-wide: 1728px;
    --gutter: 40px;
    --header-h: 108px;
    --section-pad: 100px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .06);
    --shadow-card-hover: 0 8px 28px rgba(0, 0, 0, .12);
    --shadow-header: 0 2px 10px rgba(0, 0, 0, .06);
    --transition: .2s ease;
}

@media (max-width: 1199px) {
    :root {
        --gutter: 39px;
        --section-pad: 70px;
    }
}

@media (max-width: 767px) {
    :root {
        --h1: 26px;
        --h2: 22px;
        --h3: 20px;
        --h4: 18px;
        --h5: 16px;
        --h6: 16px;
        --section-title: 26px;

        --btn-h: 60px;
        --btn-font: 20px;
        --btn-pad: 32px;

        --gutter: 15px;
        --header-h: 65px;
        --section-pad: 40px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: var(--body);
    -webkit-font-smoothing: antialiased;
}

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

body.no-scroll {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

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

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

strong,
b {
    font-weight: 700;
}

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

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

@media (max-width: 1199px) {
    .section {
        padding: var(--band-pad-t, var(--band-pad, var(--section-pad) 0));
    }

}
@media (max-width: 767px) {
    .section {
        padding: var(--band-pad-m, var(--band-pad-t, var(--band-pad, var(--section-pad) 0)));
    }

}
.section--mint {
    background: var(--surface-alt);
}

.section--dark {
    background: var(--surface-dark-end);
    color: var(--surface);
    --band-art: var(--gradient-surface-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
    color: var(--surface);
}

.section {
    background-image: var(--band-art, none);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--btn-font);
    font-weight: 700;
    text-align: center;
}

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

.input,
.textarea {
    width: 100%;
    transition: border-color var(--transition);
}

.textarea {
    resize: vertical;
}

.input.error,
.textarea.error {
    border-color: var(--error);
}

.site-header__inner {
    display: flex;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.site-header__nav {
    display: flex;
    align-items: center;
}

.site-header__nav-list {
    display: flex;
    align-items: center;
}

.site-header__nav-link {
    white-space: nowrap;
}

.site-header__burger {
    display: none;
    flex-direction: column;
}

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

.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-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__nav {
    display: flex;
    align-items: center;
}

.site-footer__nav a {
    line-height: 1.2;
    white-space: nowrap;
}

.material {
    font-size: 14px;
}

.copyright {
    font-size: 14px;
}

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

.accordion-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.accordion-item__body {
    display: none;
}

.accordion-item.is-open .accordion-item__body {
    display: block;
}

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

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

.loan-options__item {
    display: flex;
    flex-direction: column;
}

.loan-options__item-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.loan-options__item-title {
    font-size: var(--h3);
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

.steps__item-label {
    line-height: 1.2;
}

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

.advantages__list li {
    display: flex;
    align-items: center;
}

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

.contact-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-title {
    line-height: 1.2;
}

.contact-text a {
    text-decoration: underline;
}

.contact__item-label {
    line-height: 1.2;
}

.form__required {
    line-height: 1.2;
}

.feedCaptcha-error {
    color: var(--error);
}

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

.legal-content > :last-child {
    margin-bottom: 0;
}

.legal-content a[id]:empty {
    display: block;
    height: 0;
    scroll-margin-top: calc(var(--header-h) + 20px);
}

.legal-content em {
    font-style: italic;
}

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

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

.legal-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 767px) {
    .site-footer__top {
        align-items: flex-start;
    }

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

}
.material p:has(+ .table),
.material p:empty {
    display: none;
}

.material .table {
    display: table;
    width: 100%;
}

.material .tr {
    display: table-row;
}

.material .td {
    display: table-cell;
    vertical-align: middle;
}

.material .tr:first-child .td {
    font-weight: 700;
}

body {
    background: var(--surface);
    color: var(--text);
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}

img,
svg {
    height: auto;
    display: block;
}

a {
    transition: color var(--transition), opacity var(--transition);
}

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

.container--wide {
    --content-width: var(--content-wide);
}

.container--sm {
    --content-width: 768px;
}

.main {
    position: relative;
}

.section {
    overflow-x: clip;
}

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

h1 {
    font-size: var(--h1);
    font-weight: 900;
    line-height: 1.25;
}

h2 {
    font-size: var(--h2);
    font-weight: 900;
    line-height: 1.2;
}

h3 {
    font-size: var(--h3);
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: var(--h4);
    font-weight: 400;
    line-height: 1.35;
}

h5 {
    font-size: var(--h5);
    font-weight: 400;
    line-height: 1.45;
}

h6 {
    font-size: var(--h6);
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 767px) {
    h2 {
        font-weight: 700;
    }

}
.steps-title,
.loan-summary-title,
.faq-preview-title,
.faq-title,
.advantages-title,
.legal-title {
    font-size: var(--section-title);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 var(--space-xxl);
}

p {
    margin: 0 0 var(--space-md);
}

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

.text-highlight {
    color: var(--accent);
}

.text-highlight--deep {
    color: var(--accent-deep);
}

.faq-preview-text a {
    color: var(--accent-deep);
    font-weight: 700;
    text-underline-offset: 4px;
}

.faq-preview-text a:hover {
    color: var(--accent-deep-hover);
    text-decoration: underline;
}

.faq-preview-text a:active {
    text-decoration: underline;
}

.faq-preview-text a:visited {
    color: var(--text-muted);
    text-decoration: underline;
}

.hero-text a {
    color: inherit;
    text-decoration: underline;
}

.hero-text a:hover {
    color: var(--accent);
}

.btn {
    gap: var(--space-md);
    min-height: var(--btn-h);
    padding: 0 var(--btn-pad);
    font-family: var(--font);
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn svg {
    flex-shrink: 0;
}

.btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink);
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn--primary:active {
    background: var(--accent-active);
    border-color: var(--accent-active);
}

.btn--outline {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--ink);
}

.btn--outline:hover {
    border-color: var(--accent-hover);
}

.btn--outline:active {
    border-color: var(--accent-active);
}

.btn--md {
    --btn-h: 60px;
    --btn-font: 20px;
    --btn-pad: 36px;
}

.btn--sm {
    --btn-h: 40px;
    --btn-font: 16px;
    --btn-pad: 27px;
    gap: var(--space-xs);
}

.btn--block {
    display: flex;
    width: 100%;
}

.btn[disabled],
.btn.is-disabled {
    background: var(--surface-disabled);
    border-color: var(--surface-disabled);
    color: var(--text-muted);
    pointer-events: none;
}

.form__body {
    gap: var(--space-lg);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field__label {
    font-size: var(--body);
    line-height: 1.4;
    color: var(--text);
}

.field__error,
label.error {
    display: block;
    font-size: var(--caption);
    line-height: 1.4;
    color: var(--error);
}

.input,
.textarea {
    font-family: var(--font);
    font-size: var(--body);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 var(--space-lg);
    appearance: none;
}

.input {
    height: 52px;
}

.textarea {
    min-height: 130px;
    padding: var(--space-md) var(--space-lg);
}

.input::placeholder,
.textarea::placeholder {
    color: var(--text-muted);
}

.input:focus,
.textarea:focus {
    outline: none;
    border-color: var(--accent-deep);
}

.input.valid,
.textarea.valid {
    border-color: var(--accent-deep);
}

.input:disabled,
.textarea:disabled {
    background: var(--surface-disabled);
    border-color: var(--surface-disabled);
    color: var(--text-muted);
    cursor: not-allowed;
}

.site-header {
    position: relative;
    z-index: 30;
    background: var(--surface);
}

.site-header__inner {
    justify-content: space-between;
    gap: var(--space-lg);
    min-height: var(--header-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.logo__icon {
    width: 42px;
    height: 49px;
}

.logo__text {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.5px;
    color: var(--text);
    white-space: nowrap;
}

.logo--white .logo__text {
    color: var(--surface);
}

.site-header__nav {
    gap: 60px;
    margin-left: auto;
}

.site-header__nav-list {
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__nav-link {
    font-size: var(--body);
    color: var(--text);
    text-underline-offset: 4px;
}

.site-header__nav-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.site-header__nav-link.active {
    color: var(--accent-deep);
    text-decoration: underline;
}

.site-header__cta {
    flex-shrink: 0;
}

.site-header__cta--mobile {
    display: none;
}

.site-header__burger {
    width: 24px;
    height: 18px;
    padding: 0;
    justify-content: space-between;
    flex-shrink: 0;
}

.site-header__burger span {
    width: 100%;
    background: var(--ink);
}

.site-header__overlay {
    position: fixed;
    inset: 0;
    z-index: 25;
    background: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

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

@media (max-width: 1199px) {
    .site-header {
        box-shadow: var(--shadow-header);
    }

    .logo__icon {
        width: 30px;
        height: 35px;
    }

    .logo__text {
        font-size: 20px;
    }

    .site-header__burger {
        display: flex;
    }

    .site-header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 30;
        display: block;
        margin: 0;
        padding: 0 0 var(--space-lg);
        background: var(--surface);
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
        box-shadow: var(--shadow-header);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .site-header__nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-header__nav-list {
        display: block;
        gap: 0;
    }

    .site-header__nav-list li + li {
        border-top: 1px solid var(--surface-disabled);
    }

    .site-header__nav-list li:first-child {
        border-top: 1px solid var(--surface-disabled);
    }

    .site-header__nav-link {
        display: block;
        padding: var(--space-md) var(--gutter);
    }

    .site-header__cta--desktop {
        display: none;
    }

    .site-header__cta--mobile {
        display: flex;
        margin: var(--space-lg) var(--gutter) 0;
    }

}
.site-footer {
    background: var(--ink);
    color: var(--surface);
    padding: 79px 0 22px;
    font-size: 14px;
    line-height: 18px;
}

.site-footer__top {
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.site-footer .logo__icon {
    width: 36px;
    height: 42px;
}

.site-footer .logo__text {
    font-size: 26px;
}

.site-footer__nav {
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__nav a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.site-footer__nav a:hover,
.site-footer__nav a.active {
    color: var(--accent);
}

.material {
    line-height: 18px;
}

.material p {
    margin: 0 0 18px;
}

.material strong {
    font-weight: 700;
}

.material .title {
    display: block;
    margin-top: var(--space-md);
}

.copyright {
    margin: 33px 0 0;
    text-align: center;
    line-height: 18px;
}

@media (max-width: 1199px) {
    .site-footer {
        padding: 50px 0 22px;
    }

    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
        margin-bottom: 40px;
    }

    .site-footer__nav {
        gap: var(--space-sm) var(--space-md);
    }

}
.hero__list svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.hero__list svg rect {
    fill: var(--surface-dark);
    stroke: var(--accent);
}

.hero__list svg path {
    stroke: var(--accent);
}

.list-ordered,
.list-dots {
    margin: 0 0 var(--space-md);
    padding-left: 22px;
}

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

.list-dots {
    list-style: disc;
}

.list-ordered li,
.list-dots li {
    margin-bottom: var(--space-xs);
}

.accordion {
    gap: 29px;
}

.accordion-item {
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--gradient-accent) border-box;
    overflow: hidden;
}

.accordion-item__head {
    gap: var(--space-lg);
    min-height: 86px;
    padding: 15px 22px 15px 26px;
    font-size: var(--h5);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}

.accordion-item__head svg {
    flex-shrink: 0;
    width: 14px;
    height: 9px;
    color: var(--text);
    transition: transform var(--transition);
}

.accordion-item.is-open .accordion-item__head svg {
    transform: rotate(180deg);
}

.accordion-item__body {
    padding: 16px 28px 22px 26px;
    border-top: 2px solid var(--accent-deep);
    font-size: var(--h5);
    line-height: 28px;
    color: var(--text);
}

.accordion-item__body p {
    margin: 0 0 11px;
}

.accordion-item__body ol,
.accordion-item__body ul {
    margin: 0 0 13px;
}

.accordion-item__body li {
    margin-bottom: 0;
}

.accordion-item__body > :last-child {
    margin-bottom: 0;
}

.accordion-item__body li p {
    margin: 0;
}

@media (max-width: 767px) {
    .accordion {
        gap: var(--space-md);
    }

    .accordion-item__head {
        min-height: 64px;
        padding: var(--space-md);
        font-size: var(--h3);
    }

    .accordion-item__body {
        padding: var(--space-md);
        font-size: var(--body);
        line-height: 1.5;
    }

}
.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.table,
.material table {
    width: 100%;
    max-width: 887px;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 18px;
    margin: 18px 0;
}

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

.table th,
.material th {
    height: 50px;
    font-weight: 700;
}

.table td,
.material td {
    height: 39px;
}

.main .table th,
.main .table td {
    border-color: var(--border);
}

.hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 918px;
    background: var(--gradient-surface-dark);
}

.hero,
.how-it-works {
    position: relative;
    z-index: 1;
    padding: 131px 0 112px;
    color: var(--surface);
}

.hero-layout,
.how-it-works-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "title photo" "content photo";
    align-items: start;
    row-gap: 30px;
}

.hero-title,
.how-it-works-title {
    grid-area: title;
    margin: 0;
    color: var(--surface);
}

.hero-content {
    grid-area: content;
}

.how-it-works-content {
    display: contents;
}

.hero-title span {
    color: var(--accent);
}

.hero__list {
    gap: 6px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.hero__list li {
    display: flex;
    align-items: center;
    gap: 31px;
    min-height: 49px;
    font-size: 24px;
    line-height: 1.4;
}

.hero__list svg {
    flex-shrink: 0;
}

.hero-content .btn {
    margin-bottom: 34px;
}

.hero-text {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.hero-text a {
    color: var(--surface);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.hero-text a:hover {
    color: var(--accent);
}

.hero-media,
.how-it-works-media {
    grid-area: photo;
    position: relative;
    width: var(--plate-w, auto);
    height: var(--plate-h, auto);
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
}

.hero-media {
    margin-top: -1px;
}

.hero-media img,
.how-it-works-media img {
    position: absolute;
    left: var(--photo-x, 0);
    top: var(--photo-y, 0);
    width: var(--photo-w, 100%);
    height: var(--photo-h, 100%);
    max-width: none;
}

@media (max-width: 1199px) {
    .hero-media,
    .how-it-works-media {
        width: var(--plate-w-t, var(--plate-w));
        height: var(--plate-h-t, var(--plate-h));
    }

    .hero-media img,
    .how-it-works-media img {
        left: var(--photo-x-t, var(--photo-x, 0));
        top: var(--photo-y-t, var(--photo-y, 0));
        width: var(--photo-w-t, var(--photo-w, 100%));
        height: var(--photo-h-t, var(--photo-h, 100%));
    }

}
@media (max-width: 767px) {
    .hero-media,
    .how-it-works-media {
        width: 100%;
        height: var(--plate-h-m, 382px);
    }

    .hero-media img,
    .how-it-works-media img {
        left: var(--photo-x-m, 0);
        top: var(--photo-y-m, 0);
        width: var(--photo-w-m, 100%);
        height: var(--photo-h-m, 100%);
    }

}
.hero-inner,
.how-it-works {
    min-height: 829px;
    padding: 131px 0 100px;
}

.hero-inner .hero-layout,
.how-it-works-layout {
    row-gap: 28px;
}

.hero-inner .hero__list {
    margin-bottom: 29px;
}

.hero-inner .hero-media {
    margin-top: 0;
}

.loan-options {
    position: relative;
    z-index: 2;
}

.loan-options__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 46px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.loan-options__item {
    height: 178px;
    padding: 22px 32px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--gradient-accent) border-box;
    box-shadow: var(--shadow-card);
    color: var(--text);
    transition: box-shadow var(--transition), transform var(--transition);
}

.loan-options__item:hover {
    box-shadow: var(--shadow-card-hover);
}

.loan-options__item-media {
    width: 64px;
    height: 64px;
    margin-bottom: auto;
    border-radius: var(--radius-md);
    background: var(--surface-alt);
}

.loan-options__item-content {
    gap: var(--space-md);
}

.loan-options__item svg {
    flex-shrink: 0;
    color: var(--accent-deep);
}

.loan-summary {
    margin-bottom: 126px;
}

.loan-summary-title {
    margin: 0 0 28px;
}

.loan-summary-text {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
}

.steps-title {
    margin: 0 0 77px;
}

.steps__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 0 80px;
    padding: 0;
    list-style: none;
}

.steps__item {
    min-height: 285px;
    padding: 30px 42px;
    background: var(--surface);
    border-radius: var(--radius-lg);
}

.steps__item-content {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 63px;
}

.steps__item-num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-deep);
    color: var(--surface);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.steps__item-label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.steps__item-title {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}

.steps > .btn {
    display: flex;
    width: fit-content;
    margin-inline: auto;
}

.faq-preview-layout {
    display: grid;
    grid-template-columns: 445px minmax(0, 1fr);
    grid-template-rows: max-content 1fr;
    grid-template-areas: "title main" "photo main";
    align-items: start;
    column-gap: 30px;
    row-gap: 50px;
}

.faq-preview-title {
    grid-area: title;
    margin: 0;
}

.faq-preview-media {
    grid-area: photo;
    position: relative;
    width: 445px;
    height: 556px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-accent);
}

.faq-preview-media img {
    position: absolute;
    left: 28px;
    bottom: 0;
    width: 386px;
    height: 500px;
    max-width: none;
}

.faq-preview-content {
    grid-area: main;
    min-width: 0;
}

.faq-preview-text {
    margin: 27px 0 0;
    text-align: center;
}

.advantages-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "title photo" "list photo" "cta photo";
    align-items: start;
    column-gap: 30px;
}

.advantages-title {
    --section-title: var(--h2);
    grid-area: title;
    margin: 13px 0 35px;
    color: var(--surface);
}

.advantages__list {
    grid-area: list;
    gap: 31px;
    margin: 0 0 53px;
    padding: 0;
    list-style: none;
}

.advantages-layout > .btn {
    grid-area: cta;
    justify-self: start;
}

.advantages__list li {
    gap: 29px;
}

.advantages__item-media {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-md);
}

.advantages__item-title {
    font-size: var(--h4);
    line-height: 1.1;
}

.advantages-media {
    grid-area: photo;
    position: relative;
    width: 454px;
    height: 596px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-accent);
}

.advantages-media img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    max-width: none;
}

.how-it-works-title {
    margin-bottom: 17px;
}

.how-it-works-text {
    grid-area: content;
    max-width: 540px;
    font-size: 24px;
    line-height: 38px;
}

.how-it-works-text p {
    margin: 0 0 38px;
}

.how-it-works-text p:last-child {
    margin-bottom: 0;
}

.faq-title {
    margin: 0 0 41px;
}

.faq .accordion {
    gap: 22px;
}

.contact-layout {
    gap: 34px;
}

.contact-content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 536px;
    padding-top: 35px;
}

.contact-title {
    font-size: 80px;
    font-weight: 900;
    color: var(--surface);
    margin: 0 0 46px;
}

.contact-text {
    max-width: 422px;
    margin: 0 0 63px;
    font-size: var(--h5);
    line-height: 28px;
}

.contact-text a {
    color: var(--accent);
    text-underline-offset: 3px;
}

.contact__item-label {
    margin: 0 0 11px;
    font-size: var(--h5);
}

.contact__item-text--phone {
    margin: 0 0 62px;
}

.contact__item-text--phone a {
    font-size: var(--h4);
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contact__item-text--address {
    margin: 0;
    max-width: 445px;
    font-size: var(--h5);
    line-height: 28px;
}

.form {
    flex: 0 0 540px;
    width: 540px;
    padding: 47px 53px 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    color: var(--text);
}

.form__required {
    margin: 0 0 11px;
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
}

.form .form__body {
    gap: 39px;
}

.form .textarea {
    min-height: 162px;
}

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

.form__captcha {
    margin-top: -39px;
}

.form__submit {
    margin-top: -16px;
}

.feedCaptcha-error {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--caption);
}

.form__success {
    font-size: var(--h5);
    line-height: 1.4;
    text-align: center;
    color: var(--text);
}

.form:has(.form__success) {
    padding: 47px 53px;
}

@media (max-width: 1199px) {
    .form:has(.form__success) {
        flex-basis: auto;
        padding: 47px 68px;
    }

}
@media (max-width: 767px) {
    .form:has(.form__success) {
        padding: 32px 18px;
    }

}
.legal-title {
    margin: 0 0 60px;
}

.legal-content {
    font-size: var(--h5);
    line-height: 28px;
    color: var(--text);
}

.legal-content p {
    margin: 0 0 28px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    font-size: var(--h5);
    font-weight: 700;
    line-height: 28px;
    margin: 0 0 28px;
}

.legal-content > h1:first-child {
    font-size: var(--h4);
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 28px;
    padding-left: 28px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-deep);
}

.legal-content strong,
.legal-content b {
    font-weight: 700;
}

@media (max-width: 1199px) {
    .hero-text {
        font-size: var(--h5);
    }

    :root {
        --section-title: 48px;
    }

    .hero-decor {
        height: auto;
        bottom: 0;
    }

    .hero {
        padding: 59px 0 63px;
    }

    .hero-layout,
.hero-inner .hero-layout {
        grid-template-areas: "title title" "content photo";
        column-gap: 30px;
        row-gap: 8px;
    }

    .hero-content {
        padding-top: 39px;
    }

    .hero-inner {
        min-height: 747px;
        padding: 59px 0 80px;
    }

    .hero-inner .hero-title,
    .how-it-works-title {
        max-width: 620px;
    }

    .how-it-works {
        min-height: 0;
        padding: 94px 0 83px;
    }

    .how-it-works-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "title" "content" "photo";
        row-gap: 0;
    }

    .how-it-works-title {
        margin-top: 17px;
    }

    .how-it-works .how-it-works-text {
        max-width: none;
    }

    .how-it-works-media {
        justify-self: center;
        margin-top: 73px;
    }

    .loan-options__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 30px;
    }

    .loan-options__item {
        height: 148px;
        padding: 20px;
    }

    .loan-summary {
        margin-bottom: 94px;
    }

    .steps-title {
        margin-bottom: 59px;
    }

    .steps__list {
        gap: 29px;
        margin-bottom: 58px;
    }

    .steps__item {
        padding: 30px 8px 30px 20px;
    }

    .steps__item-title {
        font-size: 24px;
        line-height: 32px;
    }

    .faq-preview-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        grid-template-areas: "title photo" "main main";
        column-gap: 30px;
        row-gap: 86px;
    }

    .faq-preview-media {
        width: 330px;
        height: 174px;
        overflow: visible;
    }

    .faq-preview-media img {
        left: 79px;
        top: -50px;
        bottom: auto;
        width: 173px;
        height: 224px;
    }

    .faq-preview-text {
        margin-top: 42px;
    }

    .accordion-item__head {
        padding-left: 29px;
        padding-right: 29px;
    }

    .accordion-item__body {
        padding-left: 29px;
        padding-right: 29px;
    }

    .advantages-layout {
        grid-template-columns: minmax(0, 1fr) 208px;
        grid-template-areas: "title title" "list photo" "cta cta";
        column-gap: 30px;
    }

    .advantages-title {
        margin: 0 0 54px;
    }

    .advantages__list {
        margin-bottom: 0;
    }

    .advantages-layout > .btn {
        margin-top: 75px;
    }

    .advantages-media {
        width: 208px;
        height: 317px;
    }

    .legal-title,
.faq-title {
        margin-bottom: 52px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 0;
    }

    .contact-content {
        max-width: none;
        padding-top: 0;
    }

    .contact-title {
        font-size: 64px;
        margin-bottom: 34px;
    }

    .contact-text {
        max-width: none;
        margin-bottom: 6px;
    }

    .contact__item-text--phone {
        margin-bottom: 50px;
    }

    .form {
        width: 100%;
        margin-top: 69px;
        padding: 47px 68px 24px;
    }

    .site-footer {
        padding: 43px 0 82px;
    }

    .site-footer__top {
        margin-bottom: 32px;
    }

}
@media (max-width: 767px) {
    :root {
        --section-title: 26px;
    }

    .steps > .btn,
    .advantages-layout > .btn {
        width: 100%;
        justify-self: stretch;
    }

    .hero,
.hero-inner,
.how-it-works {
        min-height: 0;
        padding: 25px 0 60px;
    }

    .hero-layout,
.hero-inner .hero-layout,
.how-it-works-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "title" "content" "photo";
        row-gap: 0;
    }

    .hero-title,
    .hero-inner .hero-title,
    .how-it-works-title {
        max-width: none;
        margin-bottom: 23px;
        text-align: center;
    }

    .hero-content {
        padding-top: 0;
    }

    .how-it-works-title {
        margin-top: 0;
    }

    .hero__list {
        gap: 6px;
        margin-bottom: 29px;
    }

    .hero__list li {
        gap: 19px;
        min-height: 34px;
        font-size: var(--h4);
    }

    .hero-content .btn {
        width: 100%;
    }

    .hero-text {
        margin-top: 15px;
        font-size: var(--h5);
    }

    .hero-media,
.how-it-works-media {
        margin-top: 57px;
        justify-self: stretch;
    }

    .how-it-works-text {
        max-width: none;
        font-size: var(--h4);
        line-height: 28px;
    }

    .how-it-works-text p {
        margin-bottom: 28px;
    }

    .loan-options__list {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .loan-options__item {
        height: 117px;
        padding: 15px 20px 18px;
    }

    .loan-options__item-media {
        width: 50px;
        height: 50px;
    }

    .loan-options__item-media img {
        width: 31px;
        height: 31px;
    }

    .loan-options__item-title {
        font-size: var(--h3);
    }

    .loan-summary {
        margin-bottom: 60px;
    }

    .loan-summary-text {
        font-size: var(--h4);
        line-height: 1.4;
    }

    .steps-title {
        margin-bottom: 38px;
    }

    .steps__list {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
        margin-bottom: 23px;
    }

    .steps__item {
        min-height: 0;
        padding: 27px 23px 21px;
    }

    .steps__item-num {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .steps__item-content {
        margin-bottom: 32px;
    }

    .steps__item-title {
        font-size: var(--h3);
        line-height: 34px;
    }

    .faq-preview-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "title" "photo" "main";
        row-gap: 0;
    }

    .faq-preview-title {
        margin-bottom: 28px;
        text-align: center;
    }

    .faq-preview-media {
        width: 100%;
        height: 174px;
        margin-bottom: 28px;
    }

    .faq-preview-media img {
        left: 71px;
        top: -19px;
        bottom: auto;
        width: 149px;
        height: 193px;
    }

    .faq-preview-text {
        margin-top: 25px;
    }

    .accordion {
        gap: 17px;
    }

    .accordion-item__head {
        min-height: 84px;
        padding: 16px;
    }

    .accordion-item__body {
        padding: 16px;
    }

    .advantages-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "title" "list" "photo" "cta";
        row-gap: 0;
    }

    .advantages-title {
        margin: 0 0 23px;
        text-align: center;
    }

    .advantages__list {
        gap: 20px;
        margin-bottom: 0;
    }

    .advantages__list li {
        gap: 20px;
    }

    .advantages__item-media {
        width: 46px;
        height: 46px;
        border-radius: var(--radius);
    }

    .advantages__item-media img {
        width: auto;
        height: 24px;
    }

    .advantages__item-title {
        font-size: var(--h4);
        line-height: 25px;
    }

    .advantages-media {
        width: 100%;
        height: 317px;
        margin-top: 42px;
    }

    .advantages-layout > .btn {
        margin-top: 41px;
    }

    .legal-title,
.faq-title {
        margin-bottom: 30px;
    }

    .legal-content {
        font-size: var(--h5);
        line-height: 24px;
    }

    .legal-content p,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content ul,
.legal-content ol {
        margin-bottom: 24px;
    }

    .contact-title {
        font-size: var(--h1);
        margin-bottom: 22px;
        text-align: center;
    }

    .contact-text {
        font-size: var(--h5);
        line-height: 24px;
        margin-bottom: 24px;
    }

    .contact__item-label {
        font-size: var(--h5);
        margin-bottom: 8px;
    }

    .contact__item-text--phone {
        margin-bottom: 30px;
    }

    .contact__item-text--phone a {
        font-size: var(--h3);
    }

    .contact__item-text--address {
        font-size: var(--h5);
        line-height: 24px;
    }

    .form {
        margin-top: 40px;
        padding: 9px 18px 20px;
        border-radius: var(--radius-md);
    }

    .form .form__body {
        gap: 20px;
    }

    .form .input {
        height: 42px;
        padding: 0 var(--space-md);
    }

    .form .textarea {
        min-height: 133px;
        padding: var(--space-sm) var(--space-md);
    }

    .form__submit {
        margin-top: -4px;
    }

    .form__submit .btn {
        width: 100%;
    }

    .form__captcha {
        margin-top: -20px;
    }

    .logo__icon {
        width: 31px;
        height: 36px;
    }

    .logo__text {
        font-size: 22px;
    }

    .site-footer {
        padding: 35px 0 60px;
    }

    .site-footer .logo__icon {
        width: 26px;
        height: 30px;
    }

    .site-footer .logo__text {
        font-size: 22px;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 45px;
        margin-bottom: 52px;
    }

    .site-footer__nav {
        gap: 21px;
    }

}
.material h3 {
    font-size: var(--h5);
    font-weight: 700;
    line-height: 1.2;
    color: var(--surface);
    margin: 0 0 16px;
}

.material .table {
    max-width: 887px;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 18px;
    margin: 18px 0;
    min-width: 0;
}

.material .td {
    border: 1px solid var(--border-on-dark);
    padding: 10px 12px;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
}

@media (max-width: 767px) {
    .material .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

}

@media (max-width: 767px) {
    .hero-media img,
    .how-it-works-media img,
    .faq-preview-media img {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-inner .hero-media {
        margin-top: 40px;
    }
}

.main--bad-credit > .section:nth-child(1) {
    --band-pad: 0;
}

.main--bad-credit > .section:nth-child(1) .hero-media {
    --plate-w: 445px;
    --plate-h: 587px;
    --photo-w: 552px;
    --photo-h: 687px;
    --photo-x: -47px;
    --photo-y: -100px;
    --plate-w-t: 238px;
    --plate-h-t: 314px;
    --photo-w-t: 282px;
    --photo-h-t: 351px;
    --photo-x-t: -22px;
    --photo-y-t: -37px;
    --plate-h-m: 382px;
    --photo-w-m: 332px;
    --photo-h-m: 413px;
    --photo-x-m: -26px;
    --photo-y-m: -31px;
}

.main--bad-credit > .section:nth-child(2) {
    --band-pad-t: 80px 0;
    --band-pad-m: 61px 0 60px;
}

.main--bad-credit > .section:nth-child(3) {
    --band-pad-t: 124px 0 80px;
    --band-pad-m: 60px 0 57px;
}

.main--bad-credit > .section:nth-child(4) {
    --band-pad-t: 80px 0;
    --band-pad-m: 60px 0;
}

.main--ca-privacy-rights-act-reporting > .section:nth-child(1) {
    --band-pad: 56px 0 100px;
    --band-pad-t: 39px 0 80px;
    --band-pad-m: 30px 0 60px;
}

.main--contact > .section:nth-child(1) {
    --band-pad: 76px 0 111px;
    --band-pad-t: 51px 0 80px;
    --band-pad-m: 19px 0 75px;
}

.main--debt-consolidation > .section:nth-child(1) {
    --band-pad: 0;
}

.main--debt-consolidation > .section:nth-child(1) .hero-media {
    --plate-w: 445px;
    --plate-h: 587px;
    --photo-w: 479px;
    --photo-h: 636px;
    --photo-x: -15px;
    --photo-y: -49px;
    --plate-w-t: 238px;
    --plate-h-t: 314px;
    --photo-w-t: 253px;
    --photo-h-t: 336px;
    --photo-x-t: -7px;
    --photo-y-t: -22px;
    --plate-h-m: 382px;
    --photo-w-m: 310px;
    --photo-h-m: 412px;
    --photo-x-m: -11px;
    --photo-y-m: -30px;
}

.main--debt-consolidation > .section:nth-child(2) {
    --band-pad-t: 80px 0;
    --band-pad-m: 61px 0 60px;
}

.main--debt-consolidation > .section:nth-child(3) {
    --band-pad-t: 124px 0 80px;
    --band-pad-m: 60px 0 57px;
}

.main--debt-consolidation > .section:nth-child(4) {
    --band-pad-t: 80px 0;
    --band-pad-m: 60px 0;
}

.main--emergency-loans > .section:nth-child(1) {
    --band-pad: 0;
}

.main--emergency-loans > .section:nth-child(1) .hero-media {
    --plate-w: 445px;
    --plate-h: 587px;
    --photo-w: 529px;
    --photo-h: 691px;
    --photo-x: -42px;
    --photo-y: -104px;
    --plate-w-t: 238px;
    --plate-h-t: 314px;
    --photo-w-t: 294px;
    --photo-h-t: 384px;
    --photo-x-t: -28px;
    --photo-y-t: -70px;
    --plate-h-m: 382px;
    --photo-w-m: 327px;
    --photo-h-m: 427px;
    --photo-x-m: -22px;
    --photo-y-m: -45px;
}

.main--emergency-loans > .section:nth-child(2) {
    --band-pad-t: 80px 0;
    --band-pad-m: 61px 0 60px;
}

.main--emergency-loans > .section:nth-child(3) {
    --band-pad-t: 124px 0 80px;
    --band-pad-m: 60px 0 57px;
}

.main--emergency-loans > .section:nth-child(4) {
    --band-pad-t: 80px 0;
    --band-pad-m: 60px 0;
}

.main--faq > .section:nth-child(1) {
    --band-pad: 53px 0 94px;
    --band-pad-t: 39px 0 80px;
    --band-pad-m: 30px 0 60px;
}

.main--form > .section:nth-child(1) {
    --band-pad: 64px 0 96px;
    --band-pad-t: 50px 0 72px;
    --band-pad-m: 30px 0 60px;
}

.main--how-it-works > .section:nth-child(1) {
    --band-pad: 0;
}

.main--how-it-works > .section:nth-child(1) .how-it-works-media {
    --plate-w: 445px;
    --plate-h: 587px;
    --photo-w: 619px;
    --photo-h: 621px;
    --photo-x: -87px;
    --photo-y: -34px;
    --plate-w-t: 446px;
    --plate-h-t: 590px;
    --photo-w-t: 619px;
    --photo-h-t: 621px;
    --photo-x-t: -85px;
    --photo-y-t: -28px;
    --plate-h-m: 382px;
    --photo-w-m: 381px;
    --photo-h-m: 382px;
    --photo-x-m: -46px;
    --photo-y-m: 0px;
}

.main--how-it-works > .section:nth-child(2) {
    --band-pad-t: 80px 0;
    --band-pad-m: 61px 0 60px;
}

.main--index > .section:nth-child(1) {
    --band-pad: 0;
    --band-pad-t: 0 0 80px;
    --band-pad-m: 0 0 62px;
}

.main--index > .section:nth-child(1) .hero-media {
    --plate-w: 349px;
    --plate-h: 587px;
    --photo-w: 464px;
    --photo-h: 660px;
    --photo-x: -57px;
    --photo-y: -73px;
    --plate-w-t: 238px;
    --plate-h-t: 314px;
    --photo-w-t: 248px;
    --photo-h-t: 353px;
    --photo-x-t: -7px;
    --photo-y-t: -39px;
    --plate-h-m: 382px;
    --photo-w-m: 287px;
    --photo-h-m: 429px;
    --photo-x-m: 2px;
    --photo-y-m: -47px;
}

.main--index > .section:nth-child(2) {
    --band-pad-t: 80px 0;
    --band-pad-m: 61px 0 60px;
}

.main--index > .section:nth-child(3) {
    --band-pad-t: 124px 0 80px;
    --band-pad-m: 60px 0 57px;
}

.main--index > .section:nth-child(4) {
    --band-pad-t: 80px 0;
    --band-pad-m: 60px 0;
}

.main--installment-loans > .section:nth-child(1) {
    --band-pad: 56px 0 100px;
    --band-pad-t: 39px 0 80px;
    --band-pad-m: 30px 0 60px;
}

.main--notice-to-residents > .section:nth-child(1) {
    --band-pad: 56px 0 100px;
    --band-pad-t: 39px 0 80px;
    --band-pad-m: 30px 0 60px;
}

.main--personal-credit > .section:nth-child(1) {
    --band-pad: 0;
}

.main--personal-credit > .section:nth-child(1) .hero-media {
    --plate-w: 445px;
    --plate-h: 587px;
    --photo-w: 471px;
    --photo-h: 721px;
    --photo-x: -13px;
    --photo-y: -134px;
    --plate-w-t: 238px;
    --plate-h-t: 314px;
    --photo-w-t: 275px;
    --photo-h-t: 421px;
    --photo-x-t: -25px;
    --photo-y-t: -107px;
    --plate-h-m: 382px;
    --photo-w-m: 305px;
    --photo-h-m: 467px;
    --photo-x-m: -8px;
    --photo-y-m: -85px;
}

.main--personal-credit > .section:nth-child(2) {
    --band-pad-t: 80px 0;
    --band-pad-m: 61px 0 60px;
}

.main--personal-credit > .section:nth-child(3) {
    --band-pad-t: 124px 0 80px;
    --band-pad-m: 60px 0 57px;
}

.main--personal-credit > .section:nth-child(4) {
    --band-pad-t: 80px 0;
    --band-pad-m: 60px 0;
}

.main--rates-and-fees > .section:nth-child(1) {
    --band-pad: 56px 0 100px;
    --band-pad-t: 39px 0 80px;
    --band-pad-m: 30px 0 60px;
}

.main--terms-and-conditions > .section:nth-child(1) {
    --band-pad: 56px 0 100px;
    --band-pad-t: 39px 0 80px;
    --band-pad-m: 30px 0 60px;
}

.main--your-privacy-rights > .section:nth-child(1) {
    --band-pad: 56px 0 100px;
    --band-pad-t: 39px 0 80px;
    --band-pad-m: 30px 0 60px;
}

}

@layer feed-embed {
    .main--form > .section :not(svg, svg *, img, picture, video, audio, canvas, iframe, embed, object, table, caption, colgroup, col, thead, tbody, tfoot, tr, th, td, hr, font),
    .main--form > .section ::before,
    .main--form > .section ::after {
        all: revert;
    }

    .main--form > .section :is(svg, img, picture, video, audio, canvas, iframe, embed, object, table, caption, colgroup, col, thead, tbody, tfoot, tr, th, td, hr, font) {
        display: revert;
        max-width: revert;
        box-sizing: revert;
        flex-shrink: revert;
    }
}
