/********** Template CSS **********/


:root {
    --primary: #007bff;
    --light: #EFF5FF;
    --dark: #1B2C51;
}

.navbar-nav .nav-link {
    font-size: 13px !important;
}


.fw-medium {
    font-weight: 500 !important;
}
p{
    text-align: justify;
}

.lead{
    text-align: center;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}




.color-main{
    background: #00263C;
  }

/* Estilos para el párrafo con id "miParrafo" */
#miParrafo1 {
    color: #0D47A1; /* Color del texto */
    font-size: 17px; /* Tamaño de la fuente */
    font-family: Arial, sans-serif; /* Familia de fuente */
    text-align: center; /* Alineación del texto */
    background-color: #f8f8f8; /* Color de fondo */
    padding: 10px; /* Espaciado interno */
    border: 1px solid #ccc; /* Borde */
    border-radius: 5px; /* Bordes redondeados */
    font-weight: bold;
}

#miParrafo2 {
    color: #2596be; /* Color del texto */
    font-size: 14px; /* Tamaño de la fuente */
    font-family: Arial, sans-serif; /* Familia de fuente */
    text-align: center; /* Alineación del texto */
}

#miParrafo {
    color: #0D47A1; /* Color del texto */
    font-size: 14px; /* Tamaño de la fuente */
    font-family: Arial, sans-serif; /* Familia de fuente */
    text-align: center; /* Alineación del texto */
    font-weight: bold;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Logo en estado normal (desktop) */
.navbar-brand img {
    width: 100%; /* Ajusta el tamaño según lo que necesites */
    height: auto;
}

/* Ajustes para tablet y móviles */
@media (max-width: 991px) {
    .navbar-brand img {
        width: 200px; /* Tamaño para tablet */
        height: auto;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 200px; /* Tamaño para móviles */
        height: auto;
    }
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-text {
    position: absolute;
    width: 100%;
    height: 50%;
    padding: 3rem;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.header-carousel .owl-nav {
    position: absolute;
    width: 250px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: url(../images/backgrounds/bg1.jpg)  center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.page-sanfernandito {
    background-color: #007bff;
    /* background: url(../images/backgrounds/bg1.jpg)  center no-repeat; */
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.page-header-qs {
    background: url(../images/backgrounds/bg1.jpg)  center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.page-header-equipo {
    background: url(../images/backgrounds/bg1.jpg)  center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.page-header-docs-gestion {
    background: url(../images/backgrounds/bg1.jpg)  center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.page-header-admision {
    background: url(../images/backgrounds/bg1.jpg)  center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.page-header-soporte {
    background: url(../images/backgrounds/bg1.jpg)  center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.page-header-tutorial {
    background: url(../images/backgrounds/bg1.jpg)  center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.page-header-comite {
    background: url(../images/backgrounds/bg1.jpg)  center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item {
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 40px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 140px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    /* top: 15px; */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}




/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    padding-top: 0;
}

.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 25px 20px;
    transition: 0.3s;
    color: #2b2320;
}

.features .nav-link:hover {
    color: #FFCC00;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
}

.features .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.features .nav-link.active {
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.12);
    color: #FFCC00;
}

.features .tab-pane.active {
    -webkit-animation: slide-down 0.5s ease-out;
    animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/*--------------------------------------------------------------
# ESTADISTICAS
--------------------------------------------------------------*/
@font-face {
    font-family: 'icomoon';
    src: url("../fonts/icomoon/icomoon.eot?srf3rx");
    src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
}

.fh5co-counters {
    padding: 7em 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
}

.fh5co-counters .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: rgba(0, 0, 0, 0.0);
}

.fh5co-counters .counter-wrap {
    border: 1px solid red !important;
}

.fh5co-counters .fh5co-counter {
    font-size: 44px;
    display: block;
    color: white;
    font-family: "Roboto Slab", serif;
    width: 100%;
    font-weight: 300;
    margin-bottom: .1em;
}

.fh5co-counters .fh5co-counter-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 2em;
    display: block;
    font-family: "Roboto Slab", serif;
}

.fh5co-counters .icon i {
    font-size: 45px;
    color: #fff;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 75px 20px;
    margin-top: 35px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid #ebe6e4;
    height: 200px;
    position: relative;
    background: #EFF5FF;
  }
  
  .services .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100px;
    height: 100px;
    /*background: #FFCC00;*/
  }
  
  .services .icon i {
    color: #fff;
    font-size: 24px;
  }
  
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
  }
  
  .services .title a {
    color: #343a40;
  }
  
  .services .icon-box:hover .icon {
    background: #fff;
    /*border: 2px solid #FFCC00;*/
  }
  
  .services .icon-box:hover .icon i {
    color: #FFCC00;
  }
  
  .services .icon-box:hover .title a {
    color: #FFCC00;
  }
  
  .services .description {
    line-height: 24px;
    font-size: 14px;
  }

/* CSS personalizado para FancyBox */
.fancybox-caption__body{
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
    font-size: 16px;
}

/* jumbotron */

.container-bg{
    background-color: #EFF5FF  ;
}

/* Carrousel Infinite */


  
  @keyframes slide {
    from {
      transform: translateX(50%);
    }
    to {
      transform: translateX(-30%);
    }
  }

  .logos {
    overflow: hidden;
    padding: 60px 0;
    background: #EFF5FF ;
    position: relative;
    display: flex;
    justify-content: center; /* Centra los elementos horizontalmente */
    align-items: center; /* Centra los elementos verticalmente */
  }
  
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
  }

  
  .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  
  .logos-slide {
    animation: 15s slide infinite linear;
    display: flex; /* Permite colocar los logo-items horizontalmente */
    margin: 0 20px; /* Espacio entre cada logo-slide */
  }
  
  .logo-item {
    display: flex; /* Mantiene el contenido del logo-item en línea */
    flex-direction: column; /* Apila el título y la descripción debajo del logo */
    align-items: center; /* Centra el contenido horizontalmente */
    text-align: center; /* Centra el texto */
    width: 300px;
    margin: 0 10px; /* Espacio entre cada logo-item */
    padding: 20px; /* Añade espacio interno para simular un estilo de tarjeta */
    border-radius: 10px; /* Añade bordes redondeados */
    box-shadow: 4px -6px 6px rgb(38 32 32 / 27%);
    background-color: #fff; /* Color de fondo */
    transition: transform 0.3s ease; /* Agrega una transición suave al hacer hover */
  }
  
  .logo-item img {
    width: 200px;
    height: 100px;
  }
  
  .logo-item h3 {
    margin-top: 10px; /* Espacio entre el logo y el título */
    font-size: 18px;
  }
  
  .logo-item p {
    margin-top: 5px; /* Espacio entre el título y la descripción */
    font-size: 14px;
  }
  
  .logo-item:hover {
    transform: translateY(-5px); /* Eleva ligeramente el elemento al hacer hover */
  }

/* Slides Image */
.slider-image {
    width: 100%; /* Establece el ancho al 100% */
    height: auto; /* Mantén la proporción de aspecto */
    max-height: 840px; /* Establece la altura máxima deseada */
}

/* Slides Image */

/* Card Hover */
    .customcard:hover {
        background-color: #ffc1078c; /* Color amarillo */
        color: #EEEEEE ;
    }

    .customcard:hover h4{
        color: #EEEEEE;
    }
    
/* Time Line */

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}



.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3b82f6
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #3b82f6;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

.horizontal-timeline .items {
    border-top: 5px solid #0080ff;
  }
  
  .horizontal-timeline .items .items-list {
    display: block;
    position: relative;
    text-align: center;
    padding-top: 70px;
    margin-right: 0;
  }
  
  .horizontal-timeline .items .items-list:before {
    content: "";
    position: absolute;
    height: 36px;
    border-right: 5px dashed #0080ff;
    top: 0;
  }
  
  .horizontal-timeline .items .items-list .event-date {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    width: 75px;
    margin: 0 auto;
    font-size: 0.9rem;
    padding-top: 8px;
  }
  
  @media (min-width: 1140px) {
    .horizontal-timeline .items .items-list {
      display: inline-block;
      width: 24%;
      padding-top: 45px;
    }
  
    .horizontal-timeline .items .items-list .event-date {
      top: -40px;
    }
  }
  
  /* Estilos para las tarjetas */
  .items-list {
    padding-bottom: 20px;
  }
  
  .items-list h5 {
    font-size: 1.25rem;
    margin-top: 10px;
  }
  
  .items-list p {
    font-size: 1rem;
    margin-top: 10px;
  }
  
  .items-list img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
  }
  
  .items-list .card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    box-shadow: 4px -6px 6px rgb(38 32 32 / 27%);
  }


 /* Estilos para el icono de WhatsApp */
 .whatsapp-icon {
    position: fixed;
    bottom: 20px; /* Posición vertical del icono de WhatsApp */
    right: 20px; /* Posición horizontal del icono de WhatsApp */
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    cursor: pointer; /* Cambia el cursor al pasar sobre él */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra suave */
    background-color: #25d366; /* Color de fondo de WhatsApp */
    color: #fff; /* Color del icono */
    width: 50px; /* Ancho del icono */
    height: 50px; /* Altura del icono */
    border-radius: 50%; /* Forma circular */
    text-align: center; /* Centra el contenido */
    line-height: 50px; /* Centra verticalmente el contenido */
}

/* Estilos para el icono de WhatsApp al pasar el cursor */
.whatsapp-icon:hover {
    color: white;
    font-size: 30px;
    background-color: #a3ccc7; /* Cambia el color de fondo al pasar sobre él */
}

/* Estilos para el botón "Back to Top" */
.back-to-top {
    position: fixed;
    bottom: 100px; /* Posición vertical del botón "Back to Top" */
    right: 30px; /* Posición horizontal del botón "Back to Top" */
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    cursor: pointer; /* Cambia el cursor al pasar sobre él */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra suave */
    background-color: #007bff; /* Color de fondo del botón */
    color: #fff; /* Color del texto */
    width: 50px; /* Ancho del botón */
    height: 50px; /* Altura del botón */
    border-radius: 50%; /* Forma circular */
    text-align: center; /* Centra el contenido */
    line-height: 50px; /* Centra verticalmente el contenido */
    
}

/* Estilos para el botón "Back to Top" al pasar el cursor */
.back-to-top:hover {
    background-color: #0056b3; /* Cambia el color de fondo al pasar sobre él */
}




/* Elipsis */
.ellipsis {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limita el texto a 3 líneas */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}



/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  .team .member .member-img {
    position: relative;
    overflow: hidden;
  }
  
  .team .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
  }
  
  .team .member .social a {
    transition: color 0.3s;
    color: #2b2320;
    margin: 0 10px;
    padding-top: 8px;
    display: inline-block;
  }
  
  .team .member .social a:hover {
    color: #FFCC00;
  }
  
  .team .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  .team .member .member-info {
    padding: 25px 15px;
  }
  
  .team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #2b2320;
  }
  
  .team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #b4aca8;
  }
  
  .team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #847872;
  }
  
  .team .member:hover .social {
    opacity: 1;
  }




/* Admision */
.bg-custom {
    background-image: url('/img/BACKGROUND/background.jpg');
    background-size: cover;
    position: relative;
    overflow: visible; /* Permite que los hijos sobresalgan */
}
.out-image {
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%) scale(1.1); /* Escala la imagen un 10% mÃ¡s grande */
    width: 45%; /* Hace la imagen un poco mÃ¡s ancha */
    z-index: 10;
}
.video-container {
    width: 400px; /* Ajusta el tamaño como prefieras */
    height: 225px; /* Proporción 16:9 */
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 120%, 0 90%);
    background-color: #00263C;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .video-container {
        width: 90vw; /* Asegura que el video ocupe el ancho de la pantalla */
        height: 50.625vw; /* Proporción 16:9 */
        margin: 0 auto; /* Centra horizontalmente */
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 110%, 0 100%);
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
    }
}



.animated-number {
    font-size: 2rem;
    color: #007BFF; /* Color inicial, cambia por el que desees */
    animation: growAndColorChange 5s ease-in-out forwards;
}

@keyframes growAndColorChange {
    0% {
        transform: scale(1);
        color: #FFC107;
    }
    50% {
        transform: scale(1.2);
        color: #c5c5c5; /* Un color llamativo para el cambio */
    }
    100% {
        transform: scale(1);
        color: #007BFF; /* Color final */
    }
}



.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000; /* Asegura que esté por encima del iframe */
}

.play-button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 40px solid #ffffff;
}


/* Estilos personalizados Noticia*/
.news-card {
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  .news-card:hover {
    transform: translateY(-5px);
  }

  .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
    padding-top: 56.25%; /* Relación de aspecto 16:9 */
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Estilos básicos para el sidebar sticky */
.sticky-sidebar {
    position: sticky;
    top: 100px;  /* Asegura un espacio para evitar solapamientos con una barra de navegación superior */
    overflow-y: auto; /* Permite el desplazamiento si los elementos exceden la altura del viewport */
}

/* Configuraciones para dispositivos de pantalla grande */
@media (min-width: 992px) {
    .sticky-sidebar {
        height: calc(100vh - 70px); /* Altura ajustada descontando la barra de navegación */
    }
}

/* Configuraciones para tablets y dispositivos móviles */
@media (max-width: 991px) {
    .sticky-sidebar {
        position: static; /* Desactiva el sticky en dispositivos móviles para evitar problemas */
        height: auto; /* Altura automática para adaptarse al contenido */
    }

    /* Ajustes para mejorar la visibilidad y el acceso en pantallas más pequeñas */
    .nav-link {
        padding: 10px 15px; /* Espacio reducido para una mejor adaptación */
        font-size: 14px; /* Tamaño de texto ligeramente reducido */
    }
}

/* Iconos en los tabs */
.nav-link i {
    margin-right: 8px; /* Espacio adecuado entre icono y texto */
    font-size: 18px; /* Tamaño de ícono ajustado */
}






#hashLink {
	display: none;
}
#hashLink:target {
	display: block;
}
.float-nav {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999999;
}
.float-nav:hover {
cursor:pointer;
}
.float-nav-2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.float-nav-2:hover {
cursor:pointer;
}
.main-nav-2 {
  font-family: sans-serif;
  position: absolute;
  bottom: 7px;
  right: 0px;
  width: 120px;
  margin-bottom:40px;
}
.main-nav-2.active {
  display: block;
  opacity: 1;
}
.main-nav-2 > ul {
  width: 100%;
  display: block;
  list-style: none;
	z-index:10;
}
.main-nav-2 > ul > li {
    display: flex;
    justify-content: space-between;
}
.main-nav-2 > ul > li > a {
  text-decoration: none;
  display: block;
  font-weight: 200;
  padding: 18px 80px 18px 18px;
  color: black;
}
.main-nav-2 > ul > li > a:hover {
  font-weight: 400;
}


/* Estilos para Eventos */
/* Agrega estos estilos a tu archivo CSS */
#posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .post {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
  }
  
  .media-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .media-item {
    max-width: 100%;
    height: auto;
  }
  
  .album {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .album-container {
    display: flex;
    flex-wrap: wrap;
  }
  

  
  .post img, .post video {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .post h2 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
  }
  
  .post p {
    font-size: 0.875rem;
    color: #333;
  }
  
  .card {
    background: #f9f9f9;
    border-radius: 8px;
  }
  
  .card-header {
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 8px 8px 0 0;
  }

  .bg-blue{
    background: #007BFF;
  }
  
  .card-body {
    padding: 1rem;
  }
  /* botones paginacion */
  .pagination-buttons {
    position: fixed;
    right: 20px; /* Ajusta este valor para el margen derecho */
    top: 50%; /* Centrar verticalmente */
    transform: translateY(-50%); /* Ajustar para centrar */
    z-index: 1000; /* Asegura que el botón esté por encima de otros elementos */
}

.custom-btn {
    width: 60px; /* Ancho del botón */
    height: 60px; /* Altura del botón */
    font-size: 24px; /* Tamaño de la fuente */
    border-radius: 50%; /* Hacer el botón redondo */
    background-color: #007bff; /* Color de fondo del botón */
    color: #fff; /* Color del texto y del ícono */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-btn:hover {
    background-color: #0056b3; /* Color al pasar el mouse sobre el botón */
}

.custom-btn i {
    margin-left: 0; /* Eliminar el margen */
}

@media screen and (max-width: 768px) {
    .custom-btn {
        width: 50px; /* Ancho del botón en pantallas más pequeñas */
        height: 50px; /* Altura del botón en pantallas más pequeñas */
        font-size: 20px; /* Tamaño de la fuente en pantallas más pequeñas */
    }
}
/* Album diseño */
#posts-container {
    padding: 20px;
}

.post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 15px;
    max-width: 800px;
    margin: auto;
}

.post-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.media {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer; /* Para indicar que es clickeable */
}

.album-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* Centra el contenido horizontalmente */
    max-width: 100%;
}

.album-media-link {
    flex: 1 1 calc(33.333% - 10px); /* Tres columnas con espacio entre ellas */
    box-sizing: border-box; /* Incluye padding y border en el tamaño total */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 0; /* Inicializa la altura a 0 para mantener la proporción cuadrada */
    padding-bottom: 33.333%; /* Mantiene la proporción cuadrada de las imágenes */
}

.album-media-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene la proporción de las imágenes */
    border-radius: 8px;
}


.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 14px;
    padding: 5px;
    border-radius: 0 0 8px 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.created-time {
    font-size: 14px;
    color: #888;
    margin: 0;
}

#next-page {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#next-page:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Estilos de la custom table */
.custom-table {
    border-collapse: collapse;
    width: 100%;
    background-color: #edeaf9;
}

.custom-table th, .custom-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #2596be;
}

.custom-table th {
    background-color: #012D4E;
    color: white;
}

.custom-table td {
    background-color: #f4f4ff;
}

 /* Estilo adicional para los bordes de la tabla */
 .table-bordered th,
 .table-bordered td {
     border-color: #012D4E; /* Color del borde */
     font-weight: bolder;

 }

.green-dot {
    height: 15px;
    width: 15px;
    background-color: #6fbf4b;
    border-radius: 50%;
    display: inline-block;
}

.custom-table td.empty-cell {
    background-color: transparent;
}

/**/

.card-hover {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: scale(1.05); /* Aumenta el tamaño del card al pasar el mouse */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Añade sombra */
    color: #000;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.5), rgba(255, 87, 34, 0.5));
    transition: all 0.5s ease;
    z-index: 0; /* Para que el fondo esté detrás del contenido */
}

.card-hover:hover::before {
    top: 0;
    left: 0;
}

.card-hover .card-body {
    position: relative;
    z-index: 1; /* El contenido se queda encima del efecto de fondo */
}

.icon {
    transition: color 0.3s ease;
}

.icon-container-regular {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    margin: 0 auto;
}

.icon-container-verano {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #339b2e;
    color: white;
    border-radius: 50%;
    margin: 0 auto;
}

.icon-square {
    font-size: 2rem;
}

.card-hover:hover .icon {
    color: #ffc107; /* Cambia el color del ícono en hover */
}

.info-box {
    background-color: #f8f9fa; /* Color de fondo claro */
    border: 1px solid #e0e0e0; /* Borde sutil */
    transition: transform 0.3s; /* Efecto de escala al pasar el mouse */
}

.info-box:hover {
    transform: scale(1.05); /* Aumentar el tamaño al pasar el mouse */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Sombra al pasar el mouse */
}

.info-title {
    font-size: 1.5rem; /* Tamaño de fuente del título */
    color: #343a40; /* Color del texto del título */
}

.info-text, .info-list {
    color: #495057; /* Color del texto */
}

.info-list {
    padding-left: 1.5rem; /* Espaciado a la izquierda para listas */
}

.angled-section {
    background-color: #007bff; /* Color de fondo */
    color: white; /* Color del texto */
    min-height: 100vh; /* Mínima altura de la sección */
    padding: 50px 0; /* Añade padding superior e inferior */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* Inclinación del fondo */
}

.custom-image {
    width: 80%; /* Ajusta el ancho de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    max-height: 500px; /* Ajusta la altura máxima de la imagen */
    object-fit: contain; /* Mantiene la imagen sin recortar */
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 767.98px) {
    .angled-section {
        padding-top: 100px; 
        padding: 0 5px 5px 5px;
        clip-path: none; /* Remueve el ángulo diagonal en móviles */
    }

    /* Oculta la imagen en móviles */
    .d-none {
        display: none !important;
    }

    /* Estilos específicos para hacer la tabla más angosta en móviles */
    .list-group-item {
        font-size: 0.9rem; /* Reduce el tamaño del texto */
        padding: 0.5rem; /* Reduce el padding de las celdas */
    }
    .list-group {
        display: flex;
        flex-wrap: wrap;
    }
    .list-group-item {
        width: 100%; /* Hace que los ítems ocupen el 100% del ancho en móviles */
    }
}

  /*Turnos*/
  .form-section {
    display: flex;
    align-items: flex-start; /* Alinea el contenido al inicio verticalmente */
    margin-bottom: 15px;
}

/* Estilo para los íconos */
.icono {
    margin-right: 10px;
    font-size: 1.5em;
    color: #5a5a5a;
    align-self: flex-start; /* Alinea el ícono al inicio verticalmente */
}

/* Contenedor para la etiqueta */
.label-container {
    background-color: #ffeb3b; /* Fondo amarillo */
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Estilo para las etiquetas */
.form-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0; /* Elimina el margen inferior */
}

/* Estilo para los campos de entrada */
.form-control {
    border-radius: 10px;
    width: 100%;
}

/* Modal start */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-dialog {
    max-width: 1000px; /* Aumenta el ancho máximo del modal */
}

.modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.modal-body img {
    width: 100%; /* Hace que la imagen ocupe todo el ancho del modal */
    height: auto; /* Mantiene la proporción */
    max-height: 80vh; /* Ajusta la altura máxima para que no exceda el 80% de la ventana */
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1055;
}
/* Modal End */


/* Estilos para el bagde etiqueta cursos */
.badge-custom {
    left: 50%;
    /* transform: translateX(10%); */
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 12px;  

}

.dropdown-submenu {
    position: relative;
  }
  /* Posicionar el submenú debajo (y no a la derecha) */
  .dropdown-submenu > .dropdown-menu {
    top: 100%;
    left: 0;
    margin-top: 0.125rem;
  }



  .whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }
  .whatsapp-button {
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }
  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-widget-container {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 280px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 15px;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #25D366;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.whatsapp-header-icon {
    width: 24px;
    height: 24px;
}

.close-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.input-field {
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 14px;
}

/* Estilos para el Textarea expandible */
.auto-expand {
    resize: none;
    min-height: 40px;
    max-height: 150px;
    overflow-y: hidden;
}

.send-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999; /* 🔹 Coloca el toast por encima de todo */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Opcional: sombra */
}

#toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { bottom: 30px; opacity: 0; }
    to { bottom: 50px; opacity: 1; }
}

@keyframes fadeout {
    from { bottom: 50px; opacity: 1; }
    to { bottom: 30px; opacity: 0; }
}


  .owl-carousel .owl-carousel-item img {
    cursor: pointer; /* Cambia el cursor a una mano */
}