.footer-cta,
.footer-cta .background {
    position: relative;
    width: 100%;
    height: 100%
}

.footer-cta .background {
    overflow: hidden;
}        

.footer-cta .background::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.45;
}

.footer-cta .background > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-cta.enews .form {
    display: flex;
    height: 45px;
}

.footer-cta.enews .form .form-field {
    flex-grow: 1;
}

.footer-cta.enews .form .form-field input {
    margin: 0;
    height: 100%;
    background-color: #5ac5e0;
    color: #FFF;
    font-size: 18px;
    text-indent: 12px;
    border: none;
    box-shadow: none;
}

.footer-cta.enews .form .form-field input:focus {
    border: none;
    box-shadow: none;
}

.footer-cta.enews .form .form-field input::placeholder {
    color: #FFF;
    font-size: 18px;
}

.footer-cta.enews .form .submit {
    width: 100px;
    font-family: "Roboto", sans-serif;
    font-size: 16.06px;
    text-transform: uppercase;
    background-color: #3e4950;
    margin: 0;
    padding: 5px;
}

.footer-cta .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 15;
    transform: translate(-50%, -50%);
}

.footer-cta.enews .overlay {
    width: 335px;
}

.footer-cta.enews .overlay img {
    width: 258px;
    margin: 1px 0 16px 38px;
}

.footer-cta.vguide .overlay img {
    width: 182px;
}

@media (min-width: 64em) {

    .footer-cta .background > img {
        transition: transform ease-out 0.6s;
    }

    .footer-cta .background:before {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        width: 100%;
        height: 100%;
        background-color: #1c9eb8;
        opacity: 0;
        transition: opacity ease 0.6s;
        content: '';
    }

    .footer-cta:hover .background:before {
        opacity: 0.8;
    }

    .footer-cta:hover .background img{
        transform: scale(1.1);
    }

    .footer-cta.enews .overlay {
        width: 460px;
    }

    .footer-cta.enews .overlay img {
        width: 406px;
        margin: 1px 0 12px 26px;
    }

    .footer-cta.vguide .overlay img {
        width: 233px;
    }
}