/**
 * STYLES: Block 004 - CTA Bereich
*/

.block-004 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35rem;
    padding: var(--section-padding-top-bottom);
}

.block-004 .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.block-004 .bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(179deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.9) 94%);
}

.block-004.full-gradient .bg-img::before {
    background: linear-gradient(179deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 94%);
}

.block-004 .section-title-wrapper {
    text-align: center;
}

.block-004 h2 {
    color: var(--color-white);
    font-size: 3.4rem;
    padding-bottom: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.block-004 h3 {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

.block-004 .lead {
    color: var(--color-white);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.block-004 .cta-button-wrapper {
    justify-content: center;
}