/* CTA */
div#cta-content h2 {
    color: var(--white);
    text-align: center;
    font-size: clamp(24px, 4vw, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: auto;
}

section#cta-section {
    padding: clamp(100px, 10vw, 200px) 0;
    position: relative;
    overflow: hidden;
}

div#cta-background img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#cta-section:before {
    backdrop-filter: blur(4px);
    content: '';
    background: rgba(7, 47, 65, 0.72);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

div#cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 57px;
}

div#cta-content a.button {
    width: fit-content;
    margin: auto;
}