.footer-cta {
    height: 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-cta:before {
    content: '';
    position: absolute;
    left: 0;
    height: 87px;
    width: 100%;
    background-image: url('/includes/public/assets/shared/sound-wave-transparent.svg');
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.panel-footer .cta-cont .contentRender_name_plugins_common_footer_cta:first-child {
    background-color: var(--blue-dark); 
}

.panel-footer .cta-cont .contentRender_name_plugins_common_footer_cta:nth-child(2) {
    background-color: #644084;
}

.panel-footer .cta-cont .contentRender_name_plugins_common_footer_cta:nth-child(3) {
    background-color: var(--lavender);
}

.panel-footer .cta-cont .contentRender_name_plugins_common_footer_cta:nth-child(4) {
    background-color: var(--orange);
}

.footer-cta .title-cont h2 {
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    font-weight: var(--font-weight-bold);
}

.cta-link {
    text-decoration: none;
    color: transparent;
}

/* Media queries */

@media(hover:hover) {
    .cta-link:hover {
        text-decoration: none;
    }
}

@media(min-width:64em) {
    .footer-cta {
        height: 219px;
    }

    .footer-cta:before {
       display: none;
    }

    .footer-cta .title-cont h2 {
        font-size: 28px;
        position: relative;
        top: 5px;
    }
}