.section-banner {
    position: relative;
    padding: 64px 0;
}
@media (min-width: 768px) {
    .section-banner {
        padding: 80px 0;
    }
}
@media (min-width: 1024px) {
    .section-banner {
        padding: 100px 0;
    }
}
.section-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section-banner__bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1b1b1b;
    opacity: 0.4;
}
.section-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-banner__body {
    position: relative;
    max-width: 760px;
}
.section-banner__title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 28px;
    line-height: 114%;
    letter-spacing: -0.01em;
    color: var(--neutral-white);
}
@media (min-width: 768px) {
    .section-banner__title {
        font-size: 32px;
    }
}
@media (min-width: 1024px) {
    .section-banner__title {
        font-size: 42px;
    }
}
.section-banner__subtitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: -0.01em;
    color: var(--neutral-white);
    margin-top: 24px;
}
.section-banner__btn {
    margin-top: 200px;
    background: var(--accent-gold-light);
}
@media (min-width: 768px) {
    .section-banner__btn {
        margin-top: 32px;
    }
}
.section-banner__btn .primary-btn__text {
    color: var(--neutral-graphitic);
}
.section-banner__btn .primary-btn__icon {
    background: var(--neutral-graphitic);
}
.section-banner__btn .primary-btn__icon svg {
    color: var(--neutral-white);
}
@media (hover: hover) {
    .section-banner__btn:hover {
        background: var(--beige-dark);
    }
}