/* CSS for CTA flexible section */ 
/* Import main style */

.cta-section {
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: var(--spacing-3) 0;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    margin-bottom: 100px;
}

.cta-image {
    width: 90%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    margin-bottom: -50px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-form {
    width: 80%;
}

@media (max-width: 768px) {
    .cta-form {
        width: 100%;
    }
}

.cta-title {
    line-height: 1;
}

.cta-sub-title {
    line-height: 1.2;
}