.banner {
    position: relative;
    padding: var(--space-3) var(--space-4) var(--space-4) var(--space-4);
    margin-bottom: var(--space-10);
}

.banner::before {
    position: absolute;
    top: 185px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    background: #eeeae4;
    content: '';
    pointer-events: none;
}

.banner .img-cont {
    position: relative;
    z-index: 3;
}

.banner .img-cont::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    background: rgba(0,0,0,.3);
    content: '';
}

.banner .banner-img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.banner .wave {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    z-index: 3;
    height: 114px;
    background-image: url('/includes/public/assets/shared/wave-text.svg');
    background-repeat: repeat-x;
    background-position: 0 center;
    background-size: auto 100%;
}

.banner .content-section {
    position: relative;
    z-index: 4;
    padding: var(--space-5) 0;
    text-align: center;
}

.banner .title {
    margin-bottom: var(--space-4);
    font-family: var(--font-display);
    font-weight: var(--font-weight-heavy);
    font-size: 40px;
    line-height: 1.2;
    color: var(--yellow);
    text-transform: uppercase;
}

.banner .title a {
    text-decoration: none !important;
}

.banner .button-wrp {
    display: flex;
    justify-content: center;
}

@media (min-width: 40em) {
    .banner {
        display: grid;
        grid-template: auto / 1fr 1fr;
        padding: 0 var(--space-5) var(--space-5) 0;
    }

    .banner::before {
        top: var(--space-5);
        right: var(--space-5);
        bottom: 0;
        left: var(--space-5);
    }

    .banner .banner-img {
        height: 100%;
        object-fit: cover;
    }

    .banner .content-section {
        align-self: center;
        padding-right: 30px;
        padding-left: 30px;
        text-align: left;
    }

    .banner .button-wrp {
        justify-content: flex-start;
    }
}

@media (min-width: 64em) {
    .banner {
        grid-template: auto / 67.7% 1fr;
    }

    .banner .content-section {
        text-align: right;
    }

    .banner .title {
        font-size: 60px;
    }

    .banner .button-wrp {
        justify-content: flex-end;
    }
}

@media (min-width: 90em) {
    .banner {
        padding: 0 var(--space-10) 44px 0;
        margin-bottom: var(--space-20);
    }

    .banner::before {
        top: 52px;
        right: var(--space-10);
        bottom: 0;
        left: var(--space-10);
    }

    .banner .wave {
        bottom: var(--space-10);
        height: 174px;
    }

    .banner .banner-img {
        min-height: 36.7vw;
    }

    .banner .content-section {
        padding: 104px 103px 52px 0;
        margin-left: -15vw;
    }

    .banner .title {
        margin-bottom: 27px;
        font-size: 136px;
        line-height: 1;
    }
}