/**
 * STYLES: Block 004 - CTA Bereich
*/

.block-004 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20rem;
    padding: var(--section-padding-top-bottom-medium);
}

.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: var(--background-grey);
    opacity: .8;
}

.block-004.gradient-29 .bg-img::before {
    background: var(--gradient-blue-29);
}

.block-004 .section-title-wrapper {
    text-align: center;
}

.block-004 .triangle {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.5rem;
}

.block-004 h2 {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 0;
}

.block-004 h3 {
    max-width: 800px;
    margin: 0 auto;
}

.block-004 .lead {
    max-width: 600px;
    margin: 1rem auto 0;
}

.block-004 .cta-button-wrapper {
    justify-content: center;
}