
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fontawesome/fa-regular-400.eot);src:url(../fonts/fontawesome/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fontawesome/fa-regular-400.woff2) format("woff2"),url(../fonts/fontawesome/fa-regular-400.woff) format("woff"),url(../fonts/fontawesome/fa-regular-400.ttf) format("truetype"),url(../fonts/fontawesome/fa-regular-400.svg#fontawesome) format("svg")}

:root{
    --main-dark:#2D5181;
    --secondary-dark:#1E3250;
    --secondary-dark-rgba:rgba(30,50,80,.625);
    --link-dark:#57A9ED;
    --main-light:#fff;
    --main-light-rgba:rgba(255,255,255,0.625);
    --secondary-light-rgba:rgba(238,238,238,0.75)
}

/*////////// Common x//////////*/
body{
    font-family: 'Roboto', Arial, Helvetica, sans-serif ;
    font-weight: 300 ;
}
h1{
    color: var(--secondary-dark);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5;
}
h1::after{
    content: '';
    display: block;
    width:100px;
    height: 6px;
    background-color: var(--secondary-dark-rgba);
    left: calc(50% - 50px);
    position: absolute;
}
h1.text-white::after{
    background-color: var(--main-light-rgba);
}
.single h1::after{
    background-color: transparent;
}
.single-ods h1{
    position: relative;
    margin-bottom: 1.5rem;
}
.single-ods h1::after{
    background-color: var(--secondary-dark-rgba);
    left: 0;
}
h2{
    color: var(--secondary-dark);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.5;
}
h2 a{
    text-decoration: none;
    color: var(--secondary-dark);
}
h2 a:hover{
    color: var(--link-dark);
}
p{
    color: var(--secondary-dark);
}
a{
    color: var(--link-dark);
    text-decoration: none;
}
a:hover{
    color: var(--secondary-dark);
}
strong{
    font-weight: 600;
}
.bg-dark-theme{
    background-color: var(--main-dark);
}
.bg-dark-theme-secondary{
    background-color: var(--secondary-dark);
}
.bg-light-theme-secondary{
    background-color: var(--secondary-light-rgba);
}
.site-content{
    padding-top: 110px;
}
@media(max-width:1024px){
    .site-content{
        padding-top: 100px;
    }
}
@media(max-width:767px){
    .site-content{
        padding-top: 75px;
    }
}
.btn-primary{
    font-weight: 300;
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--main-light);
}
.btn-primary:hover{
    border-color: var(--secondary-dark);
    background-color: var(--main-light);
    color: var(--secondary-dark);
    font-weight: 300;
}
.btn-outline-primary{
    border-color: var(--secondary-dark);
    color: var(--secondary-dark);
    font-weight: 300;
}
.btn-outline-primary:hover{
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--main-light)!important;
    font-weight: 300;
}


.card{
    overflow: hidden;
    background-color: var(--secondary-light-rgba);
    border: none;
}
.card-image-holder{
    height: 300px;
    background-size: cover!important;
    background-position: center center!important;
}
.card-title{
    color: var(--main-dark);
    height: 100px;
}
.card-title a{
    color: var(--secondary-dark);
    text-decoration: none;
}
.card-title a:hover{
    color: var(--link-dark);
}
.card-text{
    color: var(--secondary-dark);
    padding-top: 15px;
    position: relative;
    height: 155px;
}
.card-text::before{
    content: '';
    display: block;
    width:50px;
    height: 6px;
    background-color: var(--secondary-dark-rgba);
    position: absolute;
    top: 0;

}
.card-text a{
    color: var(--secondary-dark);
    text-decoration: none;
}
.card-text a:hover{
    color: var(--main-dark);
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot{
    zoom: 1.5;
}
.owl-theme .owl-dots .owl-dot span{
    margin: 5px 2px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: var(--secondary-dark);
}
.owl-theme .owl-nav{
    color: var(--secondary-dark-rgba);
    font-size: 1.5rem;
    margin-top: 2rem;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: transparent;
    color: var(--secondary-dark);
}
.banner-page-title{
    bottom: 0;
    background: rgba(30,50,80,0.5);
    background: linear-gradient(0deg, rgba(30,50,80,1) 0%, rgba(30,50,80,0) 100%);
    padding-top:8rem;
    padding-bottom: 3rem;
}
.pagination i{
    font-size: 1.5rem;
}
.pagination a{
    color: var(--secondary-dark-rgba);
}
.page-numbers{
 margin: 0 0.5rem;
 text-decoration: none;
}
.page-numbers.current{
    color: var(--link-dark);
    font-weight: 500;
}
.breadcrumb {
    color: var(--main-light-rgba);
    font-size: 0.75rem;
}
.breadcrumb a{
    text-decoration: none;
    color: var(--main-light);
    font-weight: 500;
}
.breadcrumb a:hover{
    color: var(--link-dark);
}
.badge{
    border-radius: 0.125rem;
}
.badge:hover{
    background-color: var(--link-dark)!important;
    color: var(--main-light)!important;
}
.tags-title{
    font-size: 0.75rem;
}
.widget{
    padding: 0;
    background-color: transparent!important;
}
.widget a{
    text-decoration: none;
}
.widget ul li{
    margin-bottom: 5px;
    line-height: 1.25rem;

}
.widget ul li::before{
    content: "";
    width: 6px;
    height: 9px;
    background: url(../img/common/angle-right-solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin: 0 5px 1px 0;

}
.widget-title{
    border: none!important;
    padding: 0!important;
    height: auto;
    color: var(--secondary-dark);
}
.dropdown-toggle::after{
    border: none!important;
    width: 9px;
    height: 6px;
    background: url(../img/common/angle-down-solid.svg);
    background-size: contain!important;
    background-repeat: no-repeat!important;
    margin-left: 5px;
    opacity: 0.75;
    background-position: center!important;
}
.dropdown-toggle:hover::after, .dropdown-toggle.active::after{
    background: url(../img/common/angle-down-solid-hover.svg);
    border: none;
}
.modal-body{
    padding: 1.5rem;
}
.modal .btn-close{
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: var(--secondary-dark);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    opacity: 1;
    color:var(--main-light);
    background-image: none;
    z-index: 9;
}
.modal-dialog {
    margin: 6.5rem 1rem 1rem;
}
@media (min-width: 576px){
    .modal-dialog {
        max-width: 500px;
        margin: 10.5rem auto 3rem;
    }
}
/*////////// Header //////////*/
header .bg-dark-theme .navbar-nav .nav-link{
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
}
header .bg-dark-theme .navbar-nav .nav-link.active, header .bg-dark-theme .navbar-nav .nav-link:hover {
    color: var(--link-dark);
}
header .bg-dark-theme .navbar-nav .nav-link:focus{
    color: var(--main-light);
}
header .rss{
    display: inline-block;
}
header .rss a{
    display: inline-block;
    border: 1px solid var(--main-light-rgba);
    border-radius: 50%;
    display: inline-block;
    font-size: 1rem;
    width: 26px;
    height: 26px;
    text-align: center;
    margin-right: 5px;
}
.top-nav-widget a{
    color: var(--main-light-rgba);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
}
.top-nav-widget a:hover{
    color: var(--link-dark);
    border-color: var(--link-dark);
}
.top-nav-search input[type=text]{
    background-color: transparent;
    color: var(--main-light);
    font-weight: 300;
    font-size: 0.75rem;
    border-color: rgba(255,255,255,0.25);
}
.top-nav-search button[type=submit]{
    border-color: rgba(255,255,255,0.25);
    color: var(--main-light);
    border-left: none;
}
.top-nav-search button[type=submit]:hover{
    background-color: var(--link-dark);
}
.top-nav-search input::placeholder{
    color: rgba(255,255,255,0.75);
}
.navbar-brand{
    padding: 0;
}
@media(max-width:1024px){
    .header-actions .btn-outline-secondary{
    color:var(--main-light);
    border:none;
    }
    .header-actions .btn-outline-secondary:active, .header-actions .btn-outline-secondary:focus, .header-actions .btn-outline-secondary:focus-within, .header-actions .btn-outline-secondary:target, .header-actions .btn-outline-secondary:hover, .header-actions .btn-outline-secondary:visited, .header-actions .btn-outline-secondary:focus-visible{
        background-color: transparent;
    }
}
.offcanvas{
    background-color: var(--main-dark);
}
.top-menu-mobile a{
    display: block;
}@media(max-width:1024px){
    .link-top-menu{
        margin-top: 0.5rem;
    }
}
.close-menu{
    background-color: transparent;
    border: none;
    color:var(--main-light);
    font-size: 1.5rem;
}
.dropdown-menu{
    background-color: var(--main-dark);
    border:none;
}
.dropdown-menu a{
    color: var(--main-light);
    font-size: 0.75rem;
    font-weight: 300;
}
.dropdown-item:hover{
    background-color: var(--main-dark);
    color: var(--link-dark);
}
.dropdown-item.active, .dropdown-item:active{
    background-color: transparent;
    color: var(--link-dark);
}
/*////////// Footer //////////*/

footer h6{
    color: var(--main-light);
}
.text-light-theme{
    color: var(--main-light-rgba);
}
footer .rss a{
    display: inline-block;
    border: 1px solid var(--main-light-rgba);
    border-radius: 50%;
    display: inline-block;
    font-size: 1rem;
    width: 26px;
    height: 26px;
    text-align: center;
    margin-right: 5px;
    color:var(--main-light-rgba);
}
footer p{
    color: var(--main-light);
    font-size: 0.75rem;
}
footer small{
    color: var(--main-light-rgba);
    font-size: 0.75rem;
}
#footer-menu li a{
    padding: 0 0 5px 0;
    color: var(--main-light-rgba);
    font-size: 0.75rem;
}
footer .btn-outline-light{
    font-weight: 300;
    font-size: 0.875rem;
}
footer a:hover{
    color:var(--link-dark)!important;
    border-color: var(--link-dark);
}
footer a.btn:hover{
    color: var(--secondary-dark)!important;
}
.to-top{
    background-color: var(--link-dark)!important;
    color: var(--main-light)!important;
    border-radius: 50%;
    border:1px solid var(--link-dark)
}
.top-button{
    right: 1%;
}
@media(max-width:1024px){
    .top-button{
        right: 5%;
    }
}
footer .logo.md{
    width: 40%;
}

/*////////// Archive //////////*/

.archive .card-text{
    height: auto;
}

/*////////// Home //////////*/
.carousel-caption{
    bottom: unset;
    top:15vh;
}
@media(max-width:1024px){
    .carousel-caption{
        top:2vh;
    }
}
@media(max-width:767px){
    .carousel-caption{
        top:10vh;
    }
}
.carousel h1{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.75);
    color: var(--main-light);
    margin-bottom: 30px;
}
.carousel h1::after{
    background-color: var(--main-light-rgba);
}
.carousel-caption p{
    margin-top: 1.5rem;
    font-size: 1.75rem;
    line-height: 1.25;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.75);
    color: var(--main-light);
}
.carousel-caption a{
    background-color: var(--secondary-dark-rgba);
    font-weight: 300;
}
.carousel-caption a:hover{
    color:var(--secondary-dark)
}
.carousel-control-prev-icon, .carousel-control-next-icon{
    background-image: none;
    width: 4rem;
    height: 4rem;
}
.carousel-control-prev-icon i, .carousel-control-next-icon i{
    font-size: 2rem;
    padding-top: 1rem;
}
.carousel-indicators{
    bottom: 30%;
    z-index: 3;
}
@media(max-width:1024px){
    .carousel-indicators{
        bottom:0;
    }
}
@media(max-width:767px){
    .carousel-indicators{
        bottom:5%;
    }
}
.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.banner-menu{
    bottom: 0;
    background: rgba(30,50,80,0.5);
    background: linear-gradient(0deg, rgba(30,50,80,1) 0%, rgba(30,50,80,0) 100%);
    padding-top:8rem;
    /*padding-bottom: 3rem;*/
    z-index: 2;
}
@media(max-width:1024px){
    .banner-menu{
        display: none;
    }
}
.banner-menu h6{
    color: var(--main-light-rgba);
    margin-top: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
}
.banner-menu a{
    opacity: 1;
    text-decoration: none;
    display: block;
}
/*.banner-menu a:hover{*/
/*    opacity: .75;*/
/*}*/
.banner-menu .border-end, .banner-menu .border-start{
    border-color: rgba(255, 255, 255, 0.35)!important;
}
#columnas-opinion .card{
    flex-direction: row;
}
#columnas-opinion .card-image-holder{
    height: 100%;
}
#columnas-opinion .card-title{
    min-height:50px;
    height: auto;
}
#columnas-opinion .card-body{
    width: 74%;
    min-height: 255px;
    height: auto;
}
#columnas-opinion .card-text{
    min-height: 90px;
    height: auto;
}
#milestones{
    /*background-image: url('../img/home/bkg-milestones.jpg');*/
    height: 210px;
    /*background-position-y: bottom;*/
    /*background-size: contain;*/
    display: flex;
    align-items: center;
}
#milestones h2, #milestones p{
    color: var(--main-light);
}
#milestones .border-end, #milestones .border-start{
    border-color: rgba(255, 255, 255, 0.35)!important;
}
@media(max-width:576px){
    #milestones{
        background-repeat: repeat-x;
        height: auto;
    }
    #milestones h2{
        margin-bottom: 0;
        line-height: 1;
    }
    #milestones p{
        margin-bottom: 1rem!important;
    }
    #milestones .col-md-4{
        border: none!important;
    }
}
#agenda{
    background-image: url('../img/home/bkg-agenda.png');
    background-size: cover;
}
#agenda .card{
    background-color: rgba(30,50,80,.75);
}
#agenda .card h2, #agenda .card h5, #agenda .card h2, #agenda .card a{
    color: var(--main-light);
}
#agenda .card a{
    text-decoration: none;
    font-size: 0.825rem;
}
#agenda .card a:hover{
    color:var(--secondary-dark);
}
#agenda .card h6, #agenda .card p{
    color: var(--main-light-rgba);
}
#agenda .card h6{
    margin-bottom: 0;
}
#agenda .card .card.body:first-child{
    width: 50%;
}
#agenda h5{
    font-size: 1rem;
    margin-bottom: 0;
}
#agenda .col-md-6{
    padding: 1.75rem;

}
#agenda .col-md-6:nth-child(2){
    background: rgba(0,0,0,.2);
}
#agenda .col-md-6:nth-child(2) a{
    color: var(--main-light-rgba);
}
#agenda .col-md-6:nth-child(2) a:hover{
    color: var(--main-light);
}
#agenda .col-md-6:nth-child(2) .card-body{
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding: 0 0 1rem 0;
    margin: 1rem 1.75rem 0 1rem;
}
#agenda .col-md-6:nth-child(2) .card-body:first-child{
    margin-top: 0;
}
#agenda .col-md-6:nth-child(2) .card-body:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
#agenda .agenda-date{
    color: var(--main-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
#empresas .owl-stage{
    display: flex;
    align-items: center;
}
/*////////// Agenda //////////*/

.agenda-date{
    margin-bottom: 0.75rem;
    color: var(--secondary-dark);
    font-size: 0.875rem;
}
.agenda-date span{
    background-color: var(--link-dark);
    color: var(--main-light);
    font-weight: 500;
    line-height: 1;
    padding: 0.5rem;
    margin-right: 8px;
    font-size: 1.25rem;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*////////// Single Agenda //////////*/
.single .agenda-date{
    margin-bottom:0;
}
.sidebar-single .card-title{
    height: auto;
}

/*////////// Adherentes //////////*/


#pacto-global-adhrentes{
    background-color: var(--secondary-light-rgba);
}
#empresas-adherentes .card{
    height: 165px;
}
@media (max-width: 576px){
    #empresas-adherentes .card{
        height: 100px;
    }
}
#empresas-adherentes .card img{
    mix-blend-mode: multiply;
}

/*////////// Alianzas //////////*/

.alianzas-logos .sub-categoria-alianzas .alianzas-logos-list{
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.alianzas-logos .sub-categoria-alianzas .alianzas-logos-list li{
    max-width: 25%;
    width: 100%;
}

.alianzas-logos .titulo-alianza h3{
    padding: 20px;
    text-align: center;
    background: #2D5181;
    color: #ffffff;
    margin-bottom: 30px;
}

.home-carousel-item:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 330px;
    background: linear-gradient(180deg, rgba(30,50,80,1) 0%, rgba(30,50,80,0.7987570028011204) 39%, rgba(30,50,80,0.5158438375350141) 73%, rgba(30,50,80,0.3337710084033614) 86%, rgba(30,50,80,0) 100%);

}



.ods-page-template .informative-table{
    background: #e8e8e8;
    margin: 30px 0;
}

.ods-page-template .informative-table h4{
    margin-bottom: 0;
    padding: 30px;
}

.ods-page-template .informative-table ul{
    padding: 0 30px 15px 30px;
    list-style: none;
}

.ods-page-template .informative-table ul li{
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.ods-page-template .informative-table ul li:last-child{
    border-bottom: none;
}

.ods-page-template .page-buttons{
    display: flex;
    justify-content: center;

}

.ods-page-template .page-buttons .btn-gender{
    margin-right: 15px;
}
.ods-page-template .page-buttons .btn-gender:last-child{
    margin-right: 0;
}

@media (max-width: 767px) {
    .ods-page-template .page-buttons{
        flex-wrap: wrap;
    }

    .ods-page-template .page-buttons .btn-gender{
        width: 100%;
        margin-right: 0;
    }

    .ods-page-template .page-buttons .btn-gender a{
        display: block;
    }
}
.cop-template .content-sections{
    padding-bottom: 70px;
}

.cop-template .content-sections .content-col{
    padding: 70px 30px;
}

.cop-template .content-sections .image-col{
    background-size: cover;
    background-position: center;
}

.cop-template .content-sections .repeater-row{
    justify-content: center;
}

.cop-template .content-sections .repeater-row:nth-child(odd) .image-col{
    order: 2;
}
.information-blurbs{
    padding-bottom: 30px;
}
.information-blurbs .blurb-item{
    margin-bottom: 15px;
    text-align: center;
}

.information-blurbs .blurb-item img{
    width: 50px;
    margin-bottom: 15px;
}

.pg-newsletter-form{
    padding: 20px 0;
}
.pg-newsletter-form label{
    display: block;
}

.pg-newsletter-form input{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.pg-newsletter-form input[type="submit"]{
    padding: 0.375rem 0.75rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 300;
    font-size: 0.875rem;
}

.pg-newsletter-form input[type="submit"]:hover{
    color: #1e3250;
    background: #fff;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.elo-post-banner{
    position: relative;
}

.elo-post-banner h1{
    position: absolute;
    left: 20px;
    bottom: 20px;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.75);
    color: #fff;
}
table{
    margin-bottom: 15px;
}
thead, tbody, tfoot, tr, td, th{
    border: 1px solid #4f4f4f;
    padding: 5px;
}
.page-template-page-landing-template .top-nav-widget{
    display: none;
}
.page-template-page-landing-template .offcanvas{
    display: none;
}
.page-template-page-landing-template .header-actions{
    display: none !important;
}
.page-template-page-landing-template .navbar-brand{
    top: unset !important;
    position: relative !important;
    display: block;
}
.page-template-page-landing-template .breadcrumb-container{
    display: none !important;
}

.page-template-page-landing-template  .wpcf7-list-item{
    display: block;
}
.page-template-page-landing-template .modulos-card{
    background: #1e3250;
    color: #fff;
    height: 100%;
    padding: 25px 20px;
    border-radius: 10px;
}

.page-template-page-landing-template .modulos-card h5{
    margin-bottom: 25px;
    font-weight: 400;
}

.page-template-page-landing-template .modulos-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.page-template-page-landing-template .modulos-card ul li{
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.page-template-page-landing-template .modulos-card ul li:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.logos-empresas-asociadas .img-logo{
    height: 130px;
}
.formulario-inscripcion-space-top{
    height: 97px;
}

/* merge with above css */
.video-background {
    position: relative; /* or absolute or fixed */
    width: 100%;
    height: calc(90vh - 112px);
}
.video-background video {
    position: absolute;
    left: 50%; /* % of surrounding element */
    top: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%); /* % of current element */
}

.action-gallery .item{
    position: relative;
    height: 500px;
}
.action-gallery .item:before{
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.35);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.action-gallery .item img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.action-gallery .item .content{
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.action-gallery .item {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
    color: #fff;
}
.action-gallery .item p{
    color: #fff;
}
.action-gallery .item .color{
    width: 12px;
    height: 30px;
    margin-right: 10px;
}

.action-gallery .item .text-content{
    max-height: 0;
    overflow: hidden;
    transition: all .6s ease;
}


.action-gallery .item:hover .text-content {
    max-height: 100%;
}
.action-gallery .item.text-item{
    background: #fff;
    color: #1e3250;
}
.action-gallery .item.text-item:before{
    display: none;
}
.page-template-page-landing-forward-faster footer{
    display: none;
}
.page-template-page-landing-forward-faster footer.forward-faster-footer{
    display: block;
}
.accordion-button:focus{
    outline: none;
    box-shadow: none;
}
.banner-menu .banner-menu-buttons{
    background: rgba(30, 50, 80, 0.7);
}
.banner-menu .banner-menu-buttons a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    text-align: left;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    padding: 25px 5px 25px 10px;
    position: relative;
    height: 100%;
}

.banner-menu .banner-menu-buttons .button-col:hover{
    background: rgba(255, 255, 255, 0.2);
}

.banner-menu .banner-menu-buttons a:before{
    content: '';
    width: 8px;
    height: 70px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}
.banner-menu .banner-menu-buttons a.green-decor:before{
    background: #297E6D;
}
.banner-menu .banner-menu-buttons a.red-decor:before{
    background: #EB3840;
}

.banner-menu .banner-menu-buttons a.yellow-decor:before{
    background: #CCB145;
}
.banner-menu .banner-menu-buttons a.purple-decor:before{
    background: #6E417A;
}
.banner-menu .banner-menu-buttons a img{
    height: 70px;
}
@media (max-width: 576px){
    .carousel h1{
        font-size: 1.5rem;
    }
    h1 {
        font-size: 1.5rem;
    }
}


.faqs-section-video .faqs-video iframe{
    width: 100%;
    height: 500px;
}
.Academy-section{
    background: #699DBF;
}
.Academy-section .img-Academy-section img{
    width: 100%;
}

.Academy-section .text .logo-img{
    max-width: 70%;
    display: inline-block;
    margin-bottom: 30px;
}
.Academy-section .text h3{
    font-weight: bold;
    font-size: 40px;
    line-height: 55px;
    color: #fff;
    margin-bottom: 40px;
}

.Academy-section .text .academy-button{
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border: 2px solid #FFF;
    padding: 0.375rem 2.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    transition: all .3s ease;
}
.Academy-section .text .academy-button:hover{
    color: #000;
    background: #fff;

}


.sesiones-informativas-section .session-blurb{
    position: relative;
    display: block;
}
.sesiones-informativas-section .session-blurb .overlay-link{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    opacity: 0;
}

.sesiones-informativas-section .session-blurb .overlay-link:hover{
    opacity: 1;
}

.sesiones-informativas-section .session-blurb .overlay-link:hover .button{
    opacity: 1;
    margin: 0;
}

.sesiones-informativas-section .session-blurb .overlay-link .button{
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border: 1px solid #FFF;
    padding: 0.375rem 2.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: all .6s ease;
    opacity: 0;
    margin-top: 50px;
}

#ctf{
    padding: 10px;
    background: #fff;
    border-radius: 5px;
}
#ctf .ctf-header-name{
    color: #1E3250;
}














































