.section-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner {
    position: absolute;
    inset: 0;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    background: rgba(77, 57, 40, 0.550);
}

.banner-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.banner-info-container-content {
    position: relative;
    color: var(--white);
    text-align: center;
}

.banner-info-container-content h1 {
    margin-bottom: 1rem;
    color: var(--white);
}

.banner-info-container-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 48rem;
}