.image-content-background {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.image-content-background__background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.image-content-background__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-content-background__image {
    display: flex;
    align-items: center;
}

.image-content-background__image picture {
    width: 100%;
}

.image-content-background__image img {
    height: 445px;
    width: 100%;
    object-fit: cover;
}

.image-content-background__content {
    position: relative;
}

.image-content-background__content--wrapper {
    background: var(--white);
    padding: 64px 0;
    padding-left: 16.66%;
    position: absolute;
}

.image-content-background__title--wrapper, .image-content-background__content-anim--wrapper {
    margin-bottom: 30px;
}

.image-content-background__title, .image-content-background__content, .image-content-background__button {
    position: relative;
    z-index: 96;
}

.image-content-background__title {
    color: var(--gold);
    margin-bottom: 0;
}

.image-content-background__content, .image-content-background__content p:last-child {
    margin-bottom: 0;
}

.image-content-background__button {
    display: inline-block;
    padding: 12px 32px;
    text-transform: uppercase;
}

.image-content-background__white {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100%;
    background: var(--white);
}

@media (max-width: 991px) {
    .image-content-background {
        padding: 50px 0;
    }
    
    .image-content-background__image {
        margin-bottom: 30px;
        overflow: hidden;
    }

    .image-content-background__image picture {
        width: 100%;
    }

    .image-content-background__image picture img {
        width: 100%;
        height: 325px;
        object-fit: cover;
    }

    .image-content-background__content--wrapper {
        position: relative;
        padding: 50px 27px;
    }

    .image-content-background__content {
        font-weight: var(--font-weight-thin);
    }

    .image-content-background__white {
        display: none;
    }
}

@media (max-width: 767px) {
    .image-content-background__content--wrapper {
        padding: 50px 27px 30px;
    }

    .image-content-background__title--wrapper {
        margin-bottom: 20px;
    }

    .image-content-background__content-anim--wrapper {
        margin-bottom: 20px;
    }
}