.hero-compact {
    position: relative;
    width: 100%;
    height: fit-content;
    padding-top: 142px;
    padding-bottom: 82px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-compact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--dark-color), 0.62);
}

.hero-compact .hero-content {
    width: 100%;
}

.hero-compact .hero-content .hero-title {
    font-size: 3.75rem;
    font-family: var(--font-playfair-display-sc-regular);
    line-height: 124%;
    margin-bottom: 16px;
    color: rgba(var(--light-color), 1);
}

.hero-compact .hero-content .hero-description {
    font-size: 0.913rem;
    color: rgba(var(--light-color), 1);
    line-height: 150%;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
    .hero-compact .hero-content .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-compact .hero-content .hero-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 767.98px) {
    .hero-compact {
        padding-top: 120px;
        padding-bottom: 62px;
    }

    .hero-compact .hero-content .hero-title {
        font-size: 3rem;
        margin-bottom: 12px;
    }
}
/* END RESPONSIVE */