html,
body {
    background:
        radial-gradient(circle at top right,
            rgba(76, 144, 255, 0.08),
            transparent 50%),
        radial-gradient(circle at bottom left,
            rgba(37, 99, 235, 0.045),
            transparent 48%),
        #FAFCFF;
}

html,
body {
    background:
        radial-gradient(circle at top right,
            rgba(76, 144, 255, 0.08),
            transparent 50%),
        radial-gradient(circle at bottom left,
            rgba(37, 99, 235, 0.045),
            transparent 48%),
        #FAFCFF;
}

.promo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 36px 16px 56px 16px;
}

.promo__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 4px 8px 4px;
    text-align: center;
}

.promo__header-title {
    color: #172554;
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 32px;
    letter-spacing: -1.2px;
    line-height: 1.08em;
    font-weight: bold;
}

.promo__header-description {
    color: #172554;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1.5em;
}

.promo__content {
    width: 100%;
}

.promo__how {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;

    border-radius: 24px;
    background: #FFFFFF;

    border: 1px solid #DDE7F7;
}

.promo__how-title {
    color: #172554;
    font-family: "Onest", sans-serif;
    font-size: 22px;
    letter-spacing: -0.4px;
    line-height: 1.2em;
}

.promo__how-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.promo__how-step {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo__how-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #E8FAF4;
    border-radius: 14px;
}

.promo__how-icon-two {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #EAF0FF;
    border-radius: 14px;
}

.promo__how-number-one,
.promo__how-number-three {
    color: #00B17C;
    font-family: "Onest", sans-serif;
    font-size: 14px;
    line-height: 1.2em;
}

.promo__how-number-two {
    color: #2563EB;
    font-family: "Onest", sans-serif;
    font-size: 14px;
    line-height: 1.2em;
}

.promo__how-text {
    color: #172554;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1.5em;
}

@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-VariableFont_wght.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "BalsamqSansBold";
    src: url("/fonts/BalsamiqSans-Bold.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@media (min-width:769px) and (max-width:1200px) {
    .promo {
        padding: 50px 24px 72px 24px;
        gap: 28px;
    }

    .promo__header {
        max-width: 680px;
    }

    .promo__header-title {
        font-size: 40px;
    }

    .promo__header-description {
        font-size: 18px;
    }

    .promo__content {
        max-width: 560px;
    }

    .promo__how {
        max-width: 560px;
    }

    .promo__how-title {
        font-size: 24px;
    }

    .card-promo-btn-text {
        font-size: 16px !important;
    }
}

@media (min-width:1200px) {
    .promo {
        padding: 64px 24px 80px 24px;
        gap: 32px;
    }

    .promo__header {
        max-width: 680px;
    }

    .promo__header-title {
        font-size: 55px;
    }

    .promo__header-description {
        font-size: 18px;
    }

    .promo__content {
        max-width: 560px;
    }

    .promo__how {
        max-width: 560px;
    }

    .promo__how-title {
        font-size: 24px;
    }

    .card-promo-btn-text {
        font-size: 16px !important;
    }
}