section.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    z-index: -1;
}

section.banner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.banner .wrap {
    position: relative;
    z-index: 1;
    margin-top: auto;
    margin-bottom: clamp(50px, 10vw, 100px);
}

.banner-content h1 {
    color: var(--off-white);
    font-family:"Cormorant Garamond";
    font-size: clamp(45px, 7vw, 70px);
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-content p {
    color: var(--off-white);
    font-family: Mulish;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 41px;
    margin: 0;
}

section.banner:after {
    background: linear-gradient(243deg, rgba(0, 0, 0, 0.04) 33.1%, rgba(0, 0, 0, 0.75) 87.65%);
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
}