/*Estilos pagina*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-image: url('/IMG/Fondo.jpg');
    color:white;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*Estilos footer*/
footer{
    height: auto;
    width: 100%;
    color: gray;
    background-color: rgba(1, 1, 1, 0.7);
    position: absolute;
    padding: 1rem 2rem;
    text-align: center;
    bottom: 0;
}

/*Estilos pagina (empuja el footer abajo)*/
.all {
    position: relative;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding-bottom: 60px;
}

/*Estilo Header-barra navegacion*/ 
.header {
    position: fixed;
    top: 0%;
    left: 0%;
    right: 0%;
    background-color: rgba(1, 1, 1, 0.7);
    padding: 0px 10%;
    display: 	flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

#logo {
    width: 40px;
    height: 40px;
}

.navigation {
    display: 	flex;
    align-items: left;
    justify-content: space-between;
}
.navigation ul {
    list-style: none;
}

.header .navigation ul li {
    float: left;
    position: relative;
}

.header .navigation ul li a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    display: block;
    transition: all .2s ease;
}

.header .navigation ul li a:hover {
    background-color: #0e246d;
}

.header .navigation ul li ul {
    position: absolute;
    right: 0%;
    width: 150px;
    background-color: rgba(1, 1, 1, 0.7);
    display: none;
}

.header .navigation ul li ul li a {
    font-size: 12px;
    text-transform: capitalize;
}

.header .navigation ul li ul li ul {
    position: absolute;
    top: 0%;
    right: 100px;
}

.header .navigation ul li ul li {
    width: 100%;
}

.header .navigation ul li:hover {
    display: initial;
}

.header .navigation ul li:hover > ul {
    display: block;
}

#toggle,
.header label {
    display: none;
    cursor: pointer;
}

.menu{
    width: 45px;
    height: 50px;
}

/*Barra navegaion resonsiva*/
@media(max-width:50px) {
    .header label {
        display: initial;
    }

    .header {
        padding: 20px 10%;
    }

    .header .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(1, 1, 1, 0.7);
        display: none;
    }

    .header .navigation ul li {
        width: 100%;
    }

    .header .navigation ul li a{
        padding: 8px 30px 8px 10%;
    } 

    .header .navigation ul li ul {
        position: relative;
        width: 100%;
        left: 0;
    }

    .header .navigation ul li ul li {
        background-color: rgba(1, 1, 1, 0.7);
    }

    .header .navigation ul li ul li ul {
        position: relative;
        width: 80%;
        left: 0;
    }

    #toggle:checked ~ .navigation {
        display: block;
    }
}


.container {
    padding: 50px 0;
    text-align: center;
}

.wrapper {
    padding: 10px 15%;
}

#res {
    padding: 20px 0 0;
}

#paricipantes {
    display: flex;
    flex: start;
    margin-top: 2%;
    padding: 0 20px;
}

/*Estilo tajetas*/
.card_area {
    display: grid;
    margin-top: 30px;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.card img {
    height: 100%;
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.5;
}

.overlay {
    height: 0;
    width: 100%;
    position: absolute;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(transparent,#1b1b1b9f 70%);
    padding: 0 50px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}

.overlay h3 {
    margin-top: 55%;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
}

.card:hover img {
    transform: scale(1.1);
}

.card:hover .overlay {
    height: 100%;
}

.card:hover #andrea {
    border: 1px solid #ff0202;
}

.card:hover #gabriel {
    border: 1px solid #00ff0d;
}

.card:hover #mariana {
    border: 1px solid #0092f3;
}

/*Estilos Semestre1*/
/*Estilos Speech*/

#tamaño {
    max-height: 600px;
    max-width: 1000px;
    margin: auto;
}

.contenedor-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 30px;
}

.contenedor-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/*Estilos Objetivos*/
#Objetivos {
    margin-top: 50px;
}

#Obj {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.219);
    padding-bottom: 10px;
    border-radius: 30px;
    text-align: center;
    color: black;
}

.section {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon {
    width: 80px;
    height: 80px;
    margin: 10px;
}

/*Estilos Semestre2*/
/*Estilos Diagrama de Gantt*/
#Diagrama {
    margin-top: 50px;
}

#imgDia {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 30px;
}

img {
    width: 100%;
    height: auto;
    display: block;
}


/*Estilos Planos Electricos*/

#imgPlano {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 30px;
}

#imgPlano2 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 30px;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/*Estilos construyendo*/
.const{
    display: flex;
    justify-content: center;
    margin-top: 10%;
    color: #47f5ecea;
    font-size: 50PX;
}

.construyendo {
    width: 20ch;
    text-wrap: nowrap;
    overflow: hidden;
    animation: typing 6s steps(25) infinite alternate-reverse;
}

@keyframes typing {
    from {
        width: 0ch;    
    }
}

