.header-cta {
    height: 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-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;
}

.header-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) {
    .header-cta {
        height: 165px;
    }

    .header-cta:before {
        height: 120px;
    }

    .header-cta .title-cont h2 {
        font-size: 20px;
    }
}