/**
* ------------------------------------------------------------
* CABECECERA I-CAMPUS
*
* ------------------------------------------------------------
*/
.header-divider {
    width: 1px;
    height: 40px;
    background-color: black;
    margin: 0 1rem;
}

.alumno-btn {
    border: none;
    color: white;
    background-color: #000000;
    transition: background 0.2s;
}

.alumno-btn:hover {
    color: white;
    background: #575757;
}

.custom-navbar {
    background-color: black;
    color: white;
    width: 100%;
}

.custom-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.custom-navbar-toggler {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    padding: 1rem;
}

.custom-navbar-links {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.custom-navbar-links li {
    position: relative;
}

/* Base nav link */
.custom-navbar-links a {
    color: white;
    text-decoration: none;
    padding: 1.5rem 1rem;
    display: block;
    text-align: center;
    transition: background-color 0.2s;
}

.custom-navbar-links a:hover {
    background-color: #333;
}

/* Submenu styles */
.submenu-big {
    display: none;
    position: absolute;
    background-color: black;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 1000;
}

.submenu-big ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu-big a {
    text-align: start;
}

.banner {
    height: 450px !important;
}

/* Desktop: show submenu on hover if submenu-big exists */
@media (min-width: 769px) {
    .custom-navbar-links li:hover>.submenu-big {
        display: block;
    }
}

/* Mobile hamburger & submenu */
@media (max-width: 768px) {
    .custom-navbar-toggler {
        display: block;
    }

    .custom-navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: black;
    }

    .custom-navbar-links a {
        text-align: center;
    }

    .custom-navbar-links.show {
        display: flex;
        position: absolute;
        top: 194px;
        z-index: 100;
    }

    .submenu-big {
        position: static;
        background-color: #222;
    }

    /* Hide mobile submenus by default, show when .show-submenu is added via JS */
    li.show-submenu>.submenu-big {
        display: flex;
        flex-direction: column;
    }

    .banner {
        height: 350px !important;
    }
}


/*
* ------------------------------------------------------------
* NUESTRAS ALIANZAS
* ------------------------------------------------------------
*/
.section-subtitle {
    border-top: 3px solid #fcd42f;
    width: 80px;
    margin: 0.5rem auto 1rem;
}

.partner-logo {
    object-fit: contain;
    margin: auto;
}


.fondo-carta-color {
    background-color: #D9D9D9;
}


/*** ------------------------------------------------------------
* VOCETYS CAROUSEL

/*-- VOCETYS CAROUSEL --*/
.vocetys-carousel {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.vocetys-slide-content {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0px 0px 0px 20px;
    padding: 150px 30px 50px 30px;
}

.vocetys-carousel-container .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.vocetys-carousel .slick-prev:before,
.vocetys-carousel .slick-next:before {
    color: #FFD000;
}

.vocetys-carousel-container .indicadores-container {
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.vocetys-carousel-container .slick-dots {
    display: block;
    position: relative;
    bottom: unset;
}

.vocetys-carousel-container .arrow-link {
    color: white;
    justify-content: unset;
}

.vocetys-carousel-container .arrow-link>span {
    border-bottom: 2px solid #FFFFFF;
}

.vocetys-carousel-container .arrow-link:hover>span {
    color: white;
    border-bottom: 2px solid #FFD000;
}

.vocetys-carousel-container .slick-dots li {
    display: block;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

.vocetys-carousel-container .slick-dots li,
.vocetys-carousel-container .slick-dots li button,
.vocetys-carousel-container .slick-dots li button::before {
    width: 4px;
    height: 28px;
}

.vocetys-carousel-container .slick-dots li button {
    color: #646464;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding-left: 10px;
    padding-right: 20px;
}

.vocetys-carousel-container .slick-dots li button::before {
    content: "";
    background-color: #d9d9d9;
    opacity: 1;
}

.vocetys-carousel-container .slick-dots li.slick-active button {
    color: #000000;
}

.vocetys-carousel-container .slick-dots li.slick-active button::before {
    background-color: #FFD000;
}

.vocetys-carousel-subtitles {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
}

.vocetys-carousel-subtitles span {
    width: 50%;
    height: auto;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: white;
}

.vocetys-slide-content h4 {
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vocetys-carousel-author {
    display: block;
    position: relative;
    font-size: 16px;
    font-style: italic;
    color: white;
    margin-bottom: 20px;
}

.vocetys-carousel-container .btn-transparent-underline-white {
    font-size: 18px;
}

.vocetys-slide-content-bottom {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0px;
}



@media (max-width: 991.98px) {
    .vocetys-carousel-container {
        padding-top: 20px;
    }

    .vocetys-slide-content {
        padding: 250px 20px 50px 20px;
    }

    .vocetys-slide-content h4 {
        font-size: 16px;
        font-weight: 400;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .vocetys-carousel-container .indicadores-container {
        display: block;
        padding-left: 0px;
        padding-top: 20px;
    }

    .vocetys-carousel-container .slick-dots li,
    .vocetys-carousel-container .slick-dots li button,
    .vocetys-carousel-container .slick-dots li button::before {
        display: inline-block;
        width: 28px;
        height: 4px;
    }

    .vocetys-carousel-container .slick-dots li button {
        padding-bottom: 20px;
    }
}