.footer-cta {
    position: relative;
    width: 100%;
    height: 113px;
    border-bottom: 3px solid #FFF;
}

.footer-cta a {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.footer-cta .logo {
    width: 50px;
}


.footer-cta .content-section {
    color: var(--white);
    padding: 0 0 0px 12px;
    text-align: left;
}

.footer-cta .content-section h3,
.footer-cta .content-section h4 {
    color: var(--white);
    line-height: 0.9em;
}

.footer-cta .content-section h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1em;
    font-weight: 600;
}

.footer-cta .content-section h4 {
    font-size: 20px;
    line-height: 1em;
}
@media (min-width: 64em) {
    .footer-cta {
        height: 258px;
        border-bottom: none;
    }

    .footer-cta-container > div:first-child .footer-cta {
        border-bottom: 6px solid #FFF;
    }

    .footer-cta::before {
        content: "";
        position: absolute;
        background-color: #215578;
        width: 100%;
        height: 100%;
        opacity: 0;

        -webkit-transition: opacity 300ms ease;
        -moz-transition: opacity 300ms ease;
        -o-transition: opacity 300ms ease;
        transition: opacity 300ms ease;
    }

    .footer-cta:hover::before {
        opacity: 0.8;
    }

    .footer-cta .logo {
        width: 88px;
    }
    .footer-cta .content-section {
        padding: 0 0 13px 22px;
    }

    .footer-cta.enews .content-section {
        width: 460px;
    }

    .footer-cta .content-section h3 {
        font-size: 52.04px;
        line-height: .9em
    }

    .footer-cta .content-section h4 {;
        font-size: 32.3px;
        display: block;
        line-height: 1.1em;
    }
}