.cta-section {
    background: var(--color-secondary);
    padding: 0 !important;
}

.cta-section h4,
.cta-section p {
    color: var(--color-white);
}

.cta-section img {
    max-width: 100%;
    height: auto;
}

.cta-section .col-md-6:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section .cta-content {
    padding: 1.5rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}

/* CTA CONTENT CONTAINER SPACING */
@media (min-width: 768px) {
    .cta-section .cta-content {
        padding-right: calc((100vw - 672px) / 2);
    }
}

@media (min-width: 992px) {
    .cta-section .cta-content {
        padding-right: calc((100vw - 936px) / 2);
    }
}

@media (min-width: 1200px) {
    .cta-section .cta-content {
        padding-right: calc((100vw - 1116px) / 2);
    }
}

@media (min-width: 1400px) {
    .cta-section .cta-content {
        padding-right: calc((100vw - 1296px) / 2);
    }
}

/* /CTA CONTENT CONTAINER SPACING */


/*==>> RESPONSIVE <<===========================*/
@media (max-width: 768px) {
    .cta-section .col-md-6:first-child img {
        height: auto;
    }

    .cta-section .cta-content {
        text-align: center;
    }
}

/* /768px */

@media (max-width: 575px) {

    .cta-content p {
        font-size: 1.125rem;
    }
}

/* /575px */