.cta-section.bg-white{
    background: unset;
}

.cta-section {
    padding: 82px 0;
    position: relative;
    background: linear-gradient(90deg, #34CCBF 0%, #1FFFC3 100%);
    background-blend-mode: multiply;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}
.cta-section .rsg-buttons.rsg-buttons-center {
    margin-top: 25px;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* HEADING */

/* Force heading styles */
.cta-heading .h2-heading {
    font-size: 48px;
    font-weight: 800;
    color: #262626;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-heading .wysiwyg-text {
    font-size: 18px;
    line-height: 28px;
    color: #262626;
    max-width: 720px;
    margin: 0 auto;
}

/* BUTTON */
.cta-button {
    display: flex;
    justify-content: center;
}

.cta-button .btn-primary {
    background: #fff;
    color: #262626;
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button .btn-primary:hover {
    background: #262626;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 767px) {

    .cta-heading .h2-heading {
        font-size: 32px;
    }

    .cta-heading .wysiwyg-text {
        font-size: 16px;
    }
}