.background-wrapper {
    position: relative;
}

img.bg-with-text-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(107deg, rgba(0, 0, 0, 0.60) 38.28%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}

.background-content-wrapper {
    color: var(--color-white);
    display: flex;
    gap: 80px;
    padding: var(--spacing-large);
    position: relative;
    flex-direction: column;
    z-index: 2;
}

.background-title {
    color: var(--color-white);
    line-height: 100%;
    max-width: 75%;
}

.background-text {
    font-weight: 300;
    line-height: 140%;
    max-width: 62%;
}

.background-content-wrapper a {
    align-self: flex-start;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 768px) {

    .background-title {
        max-width: 100%;
    }

    .background-text {
        max-width: 100%;
    }

}