*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    background: #0f222b;
}
.cab_redes{
    display: flex;
    color: #fff;
    background: #359804;
    line-height: 5vh;
    font-size: 1.25rem;
    font-family: sans-serif;
}
.text_cabeceras, .i_cabecera{
    margin-left: 2%;
}
.i_cabecera a{
    color: #fff;
}
@media screen and (max-width: 640px){
    .cab_redes{
        display: none;
    }
}
/****************************************Menu*********************************************/

.menu{
    background-color: #1F263E;
    color: #fff;
    height: 70px;
    z-index: 5;
    width: 100%;
}

.menu__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.menu-fixed{
    width: 100%;
    position: fixed;
    top: 0;
}
.menu__links{
    height: 100%;
    transition: transform .5s;
    display: flex;
}

.menu__item{
    list-style: none;
    position: relative;
    height: 100%;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu__item:hover{
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.menu__link{
    color: #fff;
    text-decoration: none;
    padding: 0 30px;
    display: flex;
    height: 100%;
    align-items: center;
}

.menu__link:hover{
    background-color: #5e7094;
}
.menu__arrow{
    transform: var(--transform);
    transition: transform .3s;
    display: block;
    margin-left: 3px;
}
.menu__nesting{
    list-style: none;
    transition:clip-path .3s;
    clip-path: var(--clip);
    position: absolute;
    left: 0;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    background-color: #262F4D;
}

.menu__link--inside{
    padding: 30px 100px 30px 20px;
}

.menu__link--inside:hover{
    background-color: #798499;
}

.menu__hamburguer{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
}
.menu__logo img{
    max-width: 50%;
}
.menu__img{
    display: block;
    width: 36px;
}

@media screen and (max-width: 640px){
    .menu__hamburguer{
        display: flex;
    }

    .menu__item{
        --clip:0;
        overflow:hidden ;
    }

    .menu__item--active{
        --transform: rotate(0);
        --background: #5e7094;
    }

    .menu__item--show{
        background-color: var(--background);
    }
    .menu__links{
        position: fixed;
        width: 100%;
        top: 70px;
        bottom: 0;
        right: 0;
        background-color: #262F4D;
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        transform: translateX(100%);
    }

    .menu__links--show{
        z-index: 100;
        transform: unset;
        width: 100%;
    }

    .menu__link{
        padding: 25px 0;
        padding-left: 30px;
        height: auto;
    }

    .menu__arrow{
        margin-left: auto;
        margin-right: 20px;
    }

    .menu__nesting{
        display: grid;
        position: unset;
        width: 100%;
        transform: translateY(0);
        height: 0;
        transition: height .3s;
        background: #48547C;
    }

    .menu__link--inside{
        width: 100%;
        margin-left: auto;
        border-left: 1px solid #798499;
        border-top: 1px solid rgba(255, 255, 255, .4);
    }
}
/*********************************************Slider************************************************/
.cont_slider{
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
    z-index: -5;
}

.slider{
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 1s ease;
    /*margin-left: -100%;*/
}
.slider-section{
    min-width: 100%;
}

.slider__img{
    display: block;
    max-width: 100%;
    height: 100%;
}
.slider__btn {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255, 0.5);
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    font-family: monospace;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.slider__btn:hover {
    background: #fff;
}
.slider__btn-right {
    right: 10px;
}
.slider__btn-left {
    left: 10px;
}
/***********************************************PRESENTACION************************************************/
.presentacion{
    width: 90%;
    padding: 15px;
    background: #35495d;
    margin: 5vh auto;
    border-radius: 10px;
    border: 4px solid #fff;
    box-shadow: 2px 0px 4px rgba(2, 15, 4, 1.0);
}
.cont_presentacion{
    display: flex;
}
.cont_presentacion p{
    color: #fff;
    font-size: 18px;
    text-align: justify;
}
.titulo_evento{
    color: #fff;
    margin-bottom: 1rem;
    line-height: 2.5rem;
    text-align: center;
    background: green;
}
.subt_evento{
    color: #f8d56d;
}
.detalles_evento{
    color: #f8d56d;
    display: flex;
    font-weight: bold;
    margin: 1rem auto;
    text-align: center;
    justify-content: space-evenly;
}
/***********************************MISION Y VISION************************************/
.mision_vision {
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.cont_mv{
    color: #fff;
    background-color: #0f222b;
    position: relative;
    text-align: center;
    width: 98%;
    height: 440px;
    margin: 10px;
}
.cont_mv .figure img{
    max-width: 50%;
    margin-bottom: 2vh;
}
.cont_mv .text{
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #69ca62;
    padding: 30px;
    box-shadow: 0px 0px 8px 8px rgba(6,207,53,1);
}
.cont_mv .text h2 {
    font-size: 20px;
    margin: 0 0 10px;
}
.cont_mv .text p {
    font-size: 16px;
}
svg, rect {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: transparent;

}
rect {
    stroke: #69ca62;
    stroke-width: 4;
    stroke-dasharray: 400;
    animation: animate 4s linear infinite;
}

@keyframes animate{
    0% {
        stroke-dashoffset: 800;
    }
    100%  {
        stroke-dashoffset: 0;
    }
}
@media(max-width: 400px) {
    .mision_vision{
        flex-direction: column;
    }
    .cont_mv {
        width: 90%;
        height: 400px
    }
    svg, rect {
        height: 270%;
    }
}

@media(min-width: 1024px) {
    .mision_vision {
        width: 1024px;
    }
    .cont_mv {
        width: 31%;
        height: 480px
    }
}

/*******************************************OBJETIVOS***************************************/
.objetivos{
    width: 100%;
    display: flex;
    margin: 5vh auto;
    text-align: justify;
    justify-content: center;
    align-items: center;
}
.cont_obj{
    margin: 0 1rem;
    padding: 1rem;
    width: 33.33%;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #fff;
    box-shadow: inset 0px 0px 10px -2px rgba(0,0,0,0.75);
}
.img_obj{
    width: 15%;
}
.txt_index{
    margin: 5vh auto;
    width: 80%;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 640px) {
    .objetivos{
        flex-direction: column;
    }
    .cont_obj{
        width: 90%;
        margin-bottom: 5vh;
    }
}

/**************************************************Muro de la Fama*************************************************/
.p_muro{
    width: 80%;
    margin: 5vh auto;
}
.text_muro{
    margin-top: 2vh;
}
.text_muro p{
    font-size: 16px;
    text-align: center;
    color: #bbb;
}
.muro{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    margin-bottom: 10vh;
}
.card{
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    height: 460px;
    width: 296px;
    margin: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.card .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: relative;
    z-index: 100;
}
.swiper{
    width: 950px;
}
.cont_card{
    position: relative;
    width: 450px;
    width: 1075px;
    display: flex;
    align-items: center;
}

.cont_card .card .image{
    height: 140px;
    width: 140px;
    border-radius: 50%;
    padding: 3px;
    background: #fff;
    box-shadow: 0px -1px 4px 2px rgba(0, 0, 0, 0.25);
}
.cont_card .card .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}
.box1, .box2, .box3, .box4{
    position: absolute;
    width: 100%;
    height: 30%;
    border-radius: 20px 20px 0 0;
}
.box1{
    background: linear-gradient(106.32deg, #f3a60f 14.23%,
    rgba(255, 25, 25, 0) 139.97%);
}
.box2{
    background: linear-gradient(106.32deg, #00c2ff 14.23%,
    rgba(255, 25, 25, 0) 139.97%);
}
.box3{
    background: linear-gradient(106.32deg, #f30fdd 14.23%,
    rgba(255, 25, 25, 0) 139.97%);
}
.box4{
    background: linear-gradient(106.32deg, #13B214 14.23%,
    rgba(255, 25, 25, 0) 139.97%);
}
#oro{
    color: #E7BD24;
}
#plata{
    color: #8CBCB7;
}
#bronce{
    color: #CD7F32;
}
.card .media-icons{
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card .media-icons i{
    color: #fff;
    opacity: 0.7;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.card .media-icons i:hover{
    opacity: 1;
}
.card .name-profession{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.name-profession .name{
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: center;
    text-transform: uppercase;
}
.name-profession .profession{
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
.card .rating{
    display: flex;
    align-items: center;
    margin-top: 18px;
}
.card .rating i{
    font-size: 18px;
    margin: 0 2px;
    color: orange;
}
.cont_card .card .about{
    display: flex;
    text-align: center;
    color: #444;
    margin-top: 45px;
    margin-bottom: 5px; 
}

.swiper-pagination{
    position: absolute;
    top: 510px;
}
.swiper-pagination-bullet{
    height: 15px;
    width: 15px;
    border-radius: 25px;
    background: #e634d7;
}
.swiper-button-next, .swiper-button-prev{
    opacity: 0.7;
    color: #e634d7;
    transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    opacity: 1;
    color: #e634d7;
}
.crit_evaluacion{
    width: 100%;
}
/*************************************************Criterios de Calificación********************************************/
.container_criterios {
    width: 90%;
    padding: 20px;
    display: flex;
    max-width: 1000px;
    margin: 5vh auto;
    background: #fff;
    border-radius: 10px;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.item-list {
    list-style-type: none;
    width: 30%;
}

.item {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.item:hover {
    background-color: #ececec;
}

.content-section {
    width: 65%;
    padding: 20px;
    border-left: 2px solid #ececec;
}

.content-section h2 {
    text-align: center;
}

.content-section img {
    max-width: 15%;
    height: auto;
    margin: 10px auto;
}
#content-display{
    text-align: justify;
}
@media screen and (max-width: 640px) {
    .item-list{
        width: 100%;
    }
    .container_criterios{
        flex-direction: column;
    }
    .content-section{
        width: 100%;
    }
}
/****************************************PUBLICACIONES***********************************************/
.publicaciones{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin: 5vh auto;
    align-items: center;
}
.titulo_p{
    background: #090;
    text-align: center;
    line-height: 2rem;
    border-radius: 5px 5px 0 0px ;
}
.titulo_p a{
    color: #fff;
    text-decoration: none;
}
.img_p{
    overflow: hidden;
    flex-grow: 1;
    width: 100%;
    height: 220px;
}
.img_p img{
    width: 100%;
    height: 100%;
    display: block;
}
.cont_publicacion{
    width: 20%;
    background: #ddd;
     border-radius: 5px 5px 0 0px;
}
@media screen and (max-width: 400px) {
    .publicaciones{
        flex-direction: column;
    }
    .cont_publicacion{
        width: 90%;
        margin: 2vh auto;
    }
}
/*****************************************FOOTER*******************************************/
.pie-pagina{
    width: 100%;
    background-color: #0a141d;
}
.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}
.pie-pagina .grupo-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pie-pagina .grupo-1 .box figure img{
    width: 250px;
}
.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}
.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}
.pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: #0d2033;
    text-align: center;
    transition: all 300ms ease;
    font-size: 2rem;
}
.pie-pagina .grupo-1 .red-social a:hover{
    color: aqua;
}
.pie-pagina .grupo-2{
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small{
    font-size: 15px;
}
@media screen and (max-width: 640px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
    }
}
/*******************************************ANIMACIONES*******************************************/
[data-animation="fade"]{
    opacity: 0;
    transform: translate(100%);
    transition: .6s ease-in .3s;
    --opacity:  1;
    --trasform:  translate(0);
}
.unset{
    opacity: var(--opacity);
    transform: var(--transform);
}
[data-animation="show"]{
    opacity: 0;
    transform: scale(0);
    transition: .6s ease-in .3s;

    --opacity:  1;
    --trasform:  scale(1);
}
.unset{
    opacity: var(--opacity);
    transform: var(--transform);
}
[data-animation="up"]{
    opacity: 0;
    transform: translateY(100%);
    transition: .6s ease-in .3s;

    --opacity:  1;
    --trasform:  translateY(0);
}
.unset{
    opacity: var(--opacity);
    transform: var(--transform);
}
[data-animation="donw"]{
    opacity: 0;
    transform: rotate(-180deg) scale(2) translate(250px, 10px);
    transition: .6s ease-in .3s;

    --opacity:  1;
    --trasform:  scale(0);
}
.unset{
    opacity: var(--opacity);
    transform: var(--transform);
}


.typewriter h1 {
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
    overflow: hidden; /* Esconde el texto que no se muestra aún */
    font-size: 2em;
    height: 1em;
    color: #fff;
    text-align: center;
}

.galeria{
    width: 100%;
    max-width: 1000px;
    margin: auto;
    list-style: none;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}
.item_galeria{
    margin: 1em;
    overflow: hidden;
    position: relative;
    width: calc(50% - 2em);
    border: solid 2px rgba(255, 255, 255, .7);
    cursor: pointer;
}
@media screen and (min-width: 1000px) {
    .item_galeria{
        width: calc(25% - 2em);
    }
    
}

@media screen and (min-width: 600px) {
    .galeria{
        padding: 0;
    }
    .item_galeria{
        width: calc(33.33% - 2em);
    }
    
}
@media screen and (max-width: 280px) {
    .galeria{
        padding: 0;
    }
    .item_galeria{
        width: 100%;
    } 
}
.item_galeria img{
    width: 100%;
    display: block;
    transition: all .2s;
}
.item_galeria img:hover{
    transform: scale(1.2);
}

.modal {
    display: block;
}
.modal:target{
    display: block;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal h3{
    color: #fff;
    text-align: center;
    margin: 15px 0;
}
.imagen{
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.imagen a{
    color: #fff;
    font-size: 40px;
    text-decoration: none;
    margin: 0 10px;
}
.imagen a:nth-child(2){
    margin: 0;
    height: 100%;
    flex-shrink: 2;
}
.cerrar{
    padding: 5px;
    display: block;
    background: red;
    width: 30px;
    height: 30px;
    margin: auto;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    box-sizing: border-box;

}
.imagen img{
    width: 800px;
    height: 100%;
    max-width: 100%;
    border: 7px solid #fff;
    box-sizing: border-box;
}
.tabla{
    width: 90%;
    font-size: 1em;
    margin-top: 1rem;
    margin: 5vh auto;
    font-family: sans-serif;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.tabla thead tr{
    color: #ffffff;
    text-align: middle;
    background-color: #4FD851;
}
.tabla th, .tabla td {
    padding: 10px 15px; 
}
.tabla tbody tr {
    border-bottom: 1px solid #dddddd;
 }
 .tabla tbody tr:nth-of-type(1n) {
    background-color: #ddd;
}
.tabla tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
.tabla tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
} 
.tabla td{
    border: 1px solid #ccc;
}
td a{
    padding: 0;
    text-align: center;
    border-bottom: none;
}

.certificado{
    width: 22%;
    margin: 5vh auto;
}
.certificado img{
    max-width: 100%;
    display: block;
}
/****************************Ver Modal*********************************/
.modal_cap{
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
    height: 100vh;
    position: fixed;
    background: rgba(0,0,0,.5);
}
.cerrar-f{
    top: .5em;
    right: 2%;
    cursor: pointer;
    position: absolute;
}
.cerrar-f i{
    color: #fff;
    padding: 1em;
    background: red;
    font-size: 10px;
    border-radius: 50%;
    font-weight: bold;
}
.img_c{
    width: 50%;
    padding: 1rem;
    margin: auto;
}
.img_c img{
    max-width: 80%;
}
.frm_modal{
    width: 40%;
    height: auto;
    padding: 1rem;
    border: 0 none;
    background: #fff;
    border-radius: 5px;
    margin: 1vh calc(50% - 20%);
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
}
.datos_modal{
    background: #4FD851;
}
.inf_cap{
    margin: .5rem 1rem;
}
.frm_capacitacion{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.input-text{
    width: 65%;
    overflow: hidden;
    align-items: center;
    position: relative;
}
.input-text input{
    width: 100%;
    border-radius: 5px;
    height: 2.5rem;
    padding: 0 15px 0 30px;
}
.input-text i{
    color:  #04bd7d;
    margin-left: 10px;
    margin-top: 10px;
    position: absolute;
}
.cont_btn{
    width: 30%;
    align-items: center;
}
.cont_btn button{
    width: 90%;
    margin: auto;
    background: #090;
    color: #fff;
    height: 2.5rem;
    border-radius: 4px;
}
.desc_certf{
    position: relative;
    background: #090;
    color: #fff;
    padding: .3rem;
    text-decoration: none;
    top: .5rem;
    bottom: .2rem;
    border-radius: 3px;
}
@media screen and (max-width: 700px) {
    .frm_modal{
        width: 70%;
        margin: 1vh auto;
    }
    
}
@media screen and (max-width: 500px) {
    .frm_modal{
        width: 90%;
        margin: 1vh auto;
    }
    
}
