.section-offer-banner {
    display: flex;
    gap: var(--tmpl-gap);
    align-items: center;
    justify-content: space-between;
    background: var(--light-blue);
    padding: 0 var(--tmpl-p);
    border-radius: var(--tmpl-border-radius-lg);
}

.section-offer-banner__btns {
    display: flex;
    flex-direction: column;
    gap: var(--tmpl-gap-xs);
}
.section-offer-banner__svg {
    width: 130px;
    height: 178px;
    color: #E3E8EE;
}

@media (max-width: 767.98px) {
    .section-offer-banner {
        text-align: center;
        padding: var(--tmpl-p);
        flex-direction: column;
    }
    .section-offer-banner__svg {
        display: none;
    }
}