.banner {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-color: hsl(26.67deg 8.82% 60% / 4%);
    text-align: center;
    color: rgba(161, 152, 143, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.1875rem;
}

.banner::before {
    display: none;
}

.banner .crop {
    position: relative;
    height: 100%;
}

.banner h4 {
    margin-block: 0;
    position: relative;
    padding: 0 7.5%;
    font-family: Montserrat-Medium;
    font-weight: 300;
    font-size: 400%;
}

.banner h5 {
    margin-block: 0;
    width: fit-content;
    padding: 0 75px;
    font-family: Roboto;
    font-size: 250%;
    font-weight: lighter;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.banner h5.lines::before,
.banner h5.lines::after {
    background-color: rgba(161, 152, 143, 1);
}
.banner > div {
    width: 70%;
    margin-inline: auto;
    margin-top: 3rem;
}
.banner__link {
    inset: 0;
    width: 100%;
    object-fit: cover;
    position: absolute;
}
@media (width < 1024px) {
    .banner {
        margin-bottom: 75px;
    }
}
@media (width <= 512px) {
    .banner > div {
        width: 90%;
    }
    .banner :is(h4, h5.lines) {
        font-size: 200%;
    }
    .banner h5.lines {
        text-transform: none;
    }
}
