.image-cta {
    position: relative;
    display: flex;
    min-height: 45rem;
}


.image-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(0deg, #17171733 0%, #17171733 100%), linear-gradient(270deg, #17171700 22.99%, #171717b3 81.94%);
}


.image-cta-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem var(--container-space);
    color: white;
}


.image-cta-mid {
    display: flex;
    flex-direction: column;
    max-width: 34.25rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.image-cta-title {
    font-family: var(--font-family-headline);
    font-size: 3rem;
    letter-spacing: -0.06rem;
    line-height: 100%;
    margin-bottom: 1.25rem;
}

.image-cta-description {
    line-height: 140%;
}

.image-cta .hw-button.button-simple>i svg {
    color: white;
}

.image-cta .hw-button>span {
    color: white;
}


@media (max-width: 992px) {
    .image-cta-title {
        font-size: 2.25rem;
    }

    .image-cta {
        min-height: 35rem;
    }
}

@media (max-width: 768px) {
    .image-cta-description {
        font-size: 0.875rem;
    }

    .image-cta-title {
        font-size: 1.75rem;
    }
}