.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: var(--ocean);
    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: var(--font-body);
    font-weight: var(--weight-normal);
    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,
.footer-cta.tripassist .overlay {
    width: 258px;
}

.footer-cta.vguide .overlay {
    width: 183px;
}

@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,
    .footer-cta.tripassist .overlay {
        width: 380px;
    }

    .footer-cta.vguide .overlay {
        width: 233px;
    }
}