.cta {
    position: relative;
    width: max-content;
    height: 100%;
    margin: 20px auto 18px;
}

.cta.enews {
    margin-top: 12px;
}

.cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta .title {
    text-align: center;
}

.cta h4,
.cta h5 {
    font-family: var(--font-body);
    color: white;
    line-height: 1em;
}

.cta h4 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 5px;
}

.cta h5 {
    font-size: 16px;
}

.cta .icon svg { 
    width: 56px;
    margin-bottom: 12px;
    display: inline-block;
}

.cta.enews .icon svg{
    width: 46px;
}

/*Mobile Nav CTA*/
.mobile-nav .cta {
    margin-bottom: 44px;
}
.mobile-nav .cta a {
    flex-direction: row;
}
.mobile-nav .cta .icon {
    width: 78px;
    text-align: center;
    margin-right: 17px;
}

.mobile-nav .cta .icon svg { 
    margin-bottom: 0;
}

.main-nav-widgets-container > .contentRender_name_plugins_common_cta {
    display: none;
}

@media (min-width: 64em) {
    .cta a {
        flex-direction: row;
    }

    .cta .icon {
        width: 95px;
        text-align: center;
        margin-right: 17px;
    }

    .cta.vguide .icon svg {
        width: 69px;
    }

    .cta.enews .icon svg {
        width: 54px;
    }

    .cta h4 {
        font-size: 30px;
    }
    .cta h5 { 
        font-size: 20px;

    }

    /*Footer CTA*/
    .panel-footer .cta {
        margin: 0;
        width: 100%;
        background-color: rgba(23, 69, 107, 0);
        transition: all ease-in-out 0.2s;
        display: flex;
        justify-content: center;
    }

    .panel-footer .cta:hover {
        background-color: #17456b;
    }
    .panel-footer .cta::before,
    .panel-footer .cta::after {
        content: '';
        position: absolute;
        width: 46px;
        height: 46px;
        opacity: 0;
        transition: all ease-in-out 0.2s;
        pointer-events: none;
    }

    .panel-footer .cta::before {
        left: 15px;
        top: 15px;
        border-top: solid 1px rgba(255, 255, 255, 0.4);
        border-left: solid 1px rgba(255, 255, 255, 0.4);
        transform: translate(-15px, -15px);
    }
    .panel-footer .cta::after {
        right: 15px;
        bottom: 15px;
        border-right: solid 1px rgba(255, 255, 255, 0.4);
        border-bottom: solid 1px rgba(255, 255, 255, 0.4);
        transform: translate(15px, 15px);
    }

    .panel-footer .cta:hover:before, 
    .panel-footer .cta:hover:after {
        opacity: 1;
        transform: translate(0, 0);
    }

    .panel-footer .cta a {
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
    }
    /************/

    /*Menu CTAs*/
    .panel-header .menu .cta {
        margin-top: 0;
        margin-bottom: calc(40px + (78 - 40) * ((100vw - 1025px) / (1440 - 1025)));
    }
    .panel-header .menu .cta .icon {
        width: calc(60px + (95 - 60) * ((100vw - 1025px) / (1440 - 1025)));
        margin-right: 12px;
    }
    .panel-header .menu .cta.vguide .icon svg {
        width: calc(50px + (69 - 50) * ((100vw - 1025px) / (1440 - 1025)));
    }

    .panel-header .menu .cta.enews .icon svg {
        width: calc(44px + (54 - 44) * ((100vw - 1025px) / (1440 - 1025)));
    }

    .panel-header .menu .cta h4 {
        font-size: calc(22px + (30 - 22) * ((100vw - 1025px) / (1440 - 1025)));
    }

    .panel-header .menu  .cta h5 {
        font-size: calc(15px + (20 - 15) * ((100vw - 1025px) / (1440 - 1025)));
    }
    /***********/

    /*Thumbnail VGuide*/
    .main-nav-widgets-container > .contentRender_name_plugins_common_cta {
        display: block;
    }

    .main-nav-widgets-container .cta {
        border: 3px solid #FFF;
        width: 100%;
        background-color: rgba(23,69,107, 0.55);
        padding: 12px 0;
        margin: 0;
    }

    .main-nav-widgets-container .cta a {
        height: 100%;
        justify-content: center;
    }

    .main-nav-widgets-container .cta .icon,
    .main-nav-widgets-container .cta .icon svg {
        width: 52px;
    }
    
    .main-nav-widgets-container .cta svg .cls-1 {
        fill: #FFF;
    }

    .main-nav-widgets-container .cta .title {
        text-align: left;
        margin-bottom: 6px;
    }

    .main-nav-widgets-container .cta h4 {
        font-size: 13.97px;
        line-height: 1.3em;
        margin-bottom: 0;
    }

    .main-nav-widgets-container .cta h5 {
        font-size: 12px;
        font-weight: 300;
    }
    /*************/
}

@media (min-width: 1440px) {
    .panel-header .menu .cta {
        margin-bottom: 78px;
    }

    .panel-header .menu .cta h4 {
        font-size: 30px;
    }

    .panel-header .menu  .cta h5 {
        font-size: 20px;
    }
    .panel-header .menu .cta .icon {
        width: 95px
    }
    .panel-header .menu .cta.vguide .icon svg {
        width: 69px;
    }

    .panel-header .menu .cta.enews .icon svg {
        width: 54px;
    }
}