.footer-cta {
    display: flex;
    height: 115px;
    margin-left: 0px;
    padding: 15px 28px 15px 28px;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 30px 0 rgba(0, 0, 0, 0.8);
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: background-color 325ms ease, -webkit-transform 325ms ease;
    transition: background-color 325ms ease, -webkit-transform 325ms ease;
    transition: transform 325ms ease, background-color 325ms ease;
    transition: transform 325ms ease, background-color 325ms ease, -webkit-transform 325ms ease;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 20px;
}

.footer-cta:hover {
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-transform: translate(0px, -5px);
    -ms-transform: translate(0px, -5px);
    transform: translate(0px, -5px);
}

.footer-cta.vg-img img{
    width: 60px;
    height: auto;
    max-width: none;
    border-style: solid;
    border-width: 2px;
    border-color: #ffb602;
    -webkit-transform: rotate(0deg) scale3d(1none, 1none, 1none);
    transform: rotate(0deg) scale3d(1none, 1none, 1none);
    -webkit-transition: -webkit-transform 325ms ease;
    transition: -webkit-transform 325ms ease;
    transition: transform 325ms ease;
    transition: transform 325ms ease, -webkit-transform 325ms ease;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.footer-cta.vg-img img:hover {
    -webkit-transform: rotate(6deg) scale(1.1);
    -ms-transform: rotate(6deg) scale(1.1);
    transform: rotate(6deg) scale(1.1);
}

.footer-cta.en-img{
    padding: 15px 28px 15px 15px;
}

.footer-cta.en-img img{
    width: 75px;
}

.footer-cta .cta-label {
    font-family: 'CB Sans W00 Bold', sans-serif;
    color: #1c57a7;
    font-size: 20px;
    line-height: 1em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}

.footer-cta.vg-img .cta-label {
    margin-left: 16px;
}

.footer-cta.en-img .cta-label {
    margin-left: 14px;
}
@media screen and (min-width: 40em){
    .footer-cta {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (min-width: 64em){
    .footer-cta{
        margin-bottom: 0;
        margin-top: 30px;
    }
    .footer-cta.en-img{
        padding: 15px 30px 15px 36px;
    }
    .footer-cta.vg-img{
        padding: 16px 28px 14px 30px;
    }

    .footer-cta.vg-img img{ 
        margin-left: 13px;
        border-width: 3px;
    }
    .footer-cta.en-img img {
        width: 75px;
    }

    .footer-cta .cta-label {
        line-height: 1.1em;
        font-size: 22px;
    }

    .footer-cta.vg-img .cta-label {
        margin-left: 25px;
        font-size: 22px;
    }
    .footer-cta.en-img .cta-label {
        margin-left: 18px;
    }
}