body {
    /* font-family: 'Poppins', sans-serif;
    /* Los colores ahora se controlan desde theme.css */
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    /* Los colores ahora se controlan desde theme.css */
}

.navbar {
    /* El color de fondo ahora se controla desde theme.css */
}

.navbar-brand,
.nav-link {
    /* El color del texto ahora se controla desde theme.css */
}

.navbar-brand i {
    color: #ffc825;
    /* Color turquesa para el ícono */
}

.carousel-item {
    height: 100vh;
    /* Altura completa de la pantalla */
    background-size: cover;
    background-position: center;
}

.carousel-item {
    background-size: cover;
    background-position: center;
}

.carousel-secundario {
    height: 54.5vh;
}

.section {
    padding: 80px 0;
}

.section img {
    max-width: 100%;
    border-radius: 10px;
}

.contacto {
    /* El color de fondo ahora se controla desde theme.css */
}

.footer {
    padding: 20px 0;
    text-align: center;
    /* Los colores ahora se controlan desde theme.css */
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-img {
    width: 5%;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.footer a {
    text-decoration: none;
    /* El color ahora se controla desde theme.css */
}

.footer a:hover {
    text-decoration: underline;
}

.navbar-brand img {
    width: 190px !important;
    height: auto !important;
}

.navbar-brand2 img {
    width: 190px !important;
    height: auto !important;
}

/* Estilo para las imágenes en la sección de Programas */
#programas img {
    width: 100%;
    /* Asegura que la imagen ocupe el 100% del contenedor */
    height: auto;
    /* Mantiene la proporción de la imagen */
    border-radius: 10px;
    /* Bordes redondeados */
    display: block;
    /* Elimina el espacio adicional debajo de la imagen */
    margin-bottom: 15px;
    /* Espacio entre la imagen y el texto */
}

/* Cambia el color de fondo y el color del texto al pasar el mouse */
tbody tr.hover,
tbody tr:hover {
    /* El color de fondo ahora se controla desde theme.css */
}

/* Estilo para la fuente en imágenes */
.degradado {
    border-radius: 10px;
    /* Bordes redondeados */
    width: 200%;
    /* Ocupa todo el ancho disponible */
    padding: 40px 0;
    /* Espacio interno para que el texto no quede pegado a los bordes */
    height: 200px;
    margin-top: 40px;
    /* Mueve el degradado hacia abajo */
    /* El degradado ahora se controla desde theme.css */
}

.degradado .contenido h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin: 0;
    /* Elimina el margen predeterminado del h1 */
    /* El color ahora se controla desde theme.css */
}

.degradado .contenido p {
    font-size: 1rem;
    margin: 0;
    /* Elimina el margen predeterminado del p */
    /* El color ahora se controla desde theme.css */
}

/* Estilo para la fuente en imágenes */
.degradado2 {
    border-radius: 10px;
    /* Bordes redondeados */
    width: 200%;
    /* Ocupa todo el ancho disponible */
    padding: 70px 0;
    /* Espacio interno para que el texto no quede pegado a los bordes */
    height: 200px;
    margin-top: 40px;
    /* Mueve el degradado hacia abajo */
    /* El degradado ahora se controla desde theme.css */
}

.degradado2 .contenido h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin: 0;
    /* Elimina el margen predeterminado del h1 */
    /* El color ahora se controla desde theme.css */
}

.degradado2 .contenido p {
    font-size: 1rem;
    margin: 0;
    /* Elimina el margen predeterminado del p */
    /* El color ahora se controla desde theme.css */
}

/* button style */
.butn {
    display: inline-block;
    padding: 14px 25px 14px 55px;
    position: relative;
    background-color: #003366;
    color: #ffffff;
    text-transform: capitalize;
    border-radius: 5px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: 0.5s;
}

.butn .icon-arrow {
    color: #ffffff;
    top: 16px;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    font-size: 18px;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000;
}

.butn .icon-arrow.before {
    left: 22px;
    position: absolute;
    transform-origin: left center;
}

.butn .icon-arrow.after {
    opacity: 0;
    position: absolute;
    right: 24px;
    transform: translateX(75%) scaleX(0.1);
    transform-origin: right center;
}

.butn.secondary {
    background-color: #ffc825;
}

.butn.secondary:hover,
.butn.secondary:active,
.butn.secondary:focus {
    background-color: #003366;
}

.butn.white .icon-arrow {
    color: #003366;
}

.butn.white:hover .icon-arrow,
.butn.white:active .icon-arrow,
.butn.white:focus .icon-arrow {
    color: #fff;
}

.butn.md {
    padding: 12px 25px 12px 50px !important;
    font-size: 14px !important;
}

.butn.md .icon-arrow {
    top: 14px;
}

.butn.sm {
    padding: 10px 25px 10px 50px !important;
    font-size: 14px !important;
}

.butn .label {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000;
}

.butn.white {
    background-color: #ffffff;
    color: #003366;
}

.butn .icon-arrow.white {
    color: #003366;
    top: 16px;
}

.butn:hover,
.butn:active,
.butn:focus {
    background-color: #ffc825;
    color: #ffffff;
}

.butn:hover .icon-arrow.before,
.butn:active .icon-arrow.before,
.butn:focus .icon-arrow.before {
    opacity: 0;
    transform: translateX(-75%) scaleX(0.1);
}

.butn:hover .icon-arrow.after,
.butn:active .icon-arrow.after,
.butn:focus .icon-arrow.after {
    opacity: 1;
    transform: translateX(0) scaleX(1);
}

.butn:hover .label,
.butn:active .label,
.butn:focus .label {
    transform: translateX(-32px);
}

@media screen and (max-width: 767px) {
    .butn {
        padding: 12px 20px 12px 50px;
        font-size: 13px;
    }

    .butn .icon-arrow {
        top: 14px;
        font-size: 16px;
    }

    .butn .icon-arrow.white {
        top: 14px;
        font-size: 16px;
    }

    .butn .icon-arrow.before {
        left: 20px;
    }
}

@media screen and (max-width: 575px) {
    .butn {
        padding: 10px 15px 10px 45px;
        font-size: 13px;
    }

    .butn .icon-arrow {
        top: 13px;
    }

    .butn .icon-arrow.white {
        top: 13px;
    }
}

.butn-style1 {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-left: 0;
    margin-bottom: 0;
    font-size: 15px;
    color: #003366;
    vertical-align: middle;
    transition: 0.3s ease-in-out;
}

.butn-style1:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    height: 2px;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: width 0.35s ease-in-out;
    width: 100%;
    background: #dfdfdf;
}

.butn-style1:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: width 0.35s ease-in-out;
    background: #003366;
}

.butn-style1:hover:after,
.butn-style1:active:after,
.butn-style1:focus:after {
    width: 100%;
    background: #003366;
}

.butn-style1.secondary {
    color: #ffc825;
}

.butn-style1.secondary:after,
.butn-style1.secondary:hover:after,
.butn-style1.secondary:active:after,
.butn-style1.secondary:focus:after {
    background: #ffc825;
}

/* ===================================
    Story video
====================================== */
.video_btn {
    position: relative;
    height: 48px;
    width: 80px;
    background: #6b6b6b;
    text-align: center;
    display: inline-block;
    border: 2px solid #fff !important;
    /* line-height: 80px;*/
    color: #fff;
    border-radius: 10%;
    transition-duration: 0s;
}

.video_btn:hover {
    position: relative;
    height: 48px;
    width: 80px;
    background: #a1a1a1;
    text-align: center;
    display: inline-block;
    border: 2px solid #fff !important;
    /* line-height: 80px;*/
    color: #fff;
    border-radius: 10%;
    transition-duration: 0s;
}

.video_btn:hover i,
.video_btn:focus i {
    color: #fff;
    background: #a1a1a1;
}

.video_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    opacity: .3;
}

.video_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border-radius: 50%;
    background: #6b6b6b;
    opacity: .3;
}

.video-img {
    position: relative;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 30%;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@media screen and (max-width: 1199px) {
    .video_btn {
        height: 75px;
        width: 75px;
        line-height: 80px;
    }

    .video_btn:after {
        height: 75px;
        width: 75px;
    }

    .video_btn:before {
        height: 90px;
        width: 90px;
    }
}

@media screen and (max-width: 991px) {
    .video-icon {
        left: 45%;
    }

    .video_btn {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }

    .video_btn:after {
        height: 70px;
        width: 70px;
    }

    .video_btn:before {
        height: 85px;
        width: 85px;
    }

    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        }

        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
        }
    }
}

@media screen and (max-width: 767px) {
    .video_btn {
        height: 60px;
        width: 60px;
        line-height: 62px;
    }

    .video_btn:after {
        height: 60px;
        width: 60px;
    }

    .video_btn:before {
        height: 75px;
        width: 75px;
    }
}

/* Magnific close*/
button.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}


.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #000;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.respuestaform{
    color: #000;
}