.footer-cta {
    padding: 24px 0;
    position: relative;
}

.footer-cta::after {
    content: '';
    pointer-events: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--white);
}

.footer-cta .title {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-cta .title i {
    color: var(--green-f7);
    font-size: 15px;
    margin-left: 8px;
}

.footer-cta .description {
    font-size: 15px;
    line-height: 1.6;
}

@media screen and (min-width: 64em) {
    .footer-cta {
        padding: 0 50px 5px;
    }

    .footer-cta::after {
        display: none;
    }

    .footer-cta .title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-cta .title i {
        font-size: 16px;
    }

    .footer-cta .description {
        font-size: 16px;
    line-height: 1.8;}
}