body {
    margin: 0;  
}
.wrapper {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
	margin: 0;
  }
.wrapper > * {
    padding: 0px;
  	}
.page-header {
	display: flex;
    justify-content: space-between;
    top: 0; 
	left: 0;
	flex-direction: row;
	height: 38px;
	align-items: center;
	margin-left: 0;
	margin-right: 0;
	width: 98%;
	padding-left: 1%;
	padding-right: 1%;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.page-header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
   
.page-header ul {
    display: flex;
    order: 1;
    width: 100%;
    margin-top: 15px;
  }
#imenu {
	float: right;
	display: inline;
	margin-top: 0px;
	width: 40px;
}
#menu {
	display: none;
	right: 0;
	margin-top: 340px;
	width: 180px;
	height: 300px;
	background:#1A1A1A;
	transition: height 1s;
	font-size: 16px;
	text-align: right;
	position: fixed;
	border-top-left-radius: 0.5em;
	border-bottom-left-radius: 0.5em;
	opacity: 0.9;
	line-height: 30px;
}
#menu ul {
    color: aliceblue;
    padding-right: 10px;
    text-align: right;
}
#player {
    display: flex;
    font-size: 40px;
    color: rgb(201, 30, 30);
    overflow: auto;
    bottom: 0;
	width: 100%;   
}
   
@media screen and (min-width: 550px) {
.page-header ul {
      width: auto;
      margin-top: 0;
    }
   
.page-header .cta-contact {
      order: 1;
    }
  }
  /* variables */
.page-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
	margin-left: 0%;
	width: 100%;
	height: 50vh;
	}
.page-mid {
	display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 30vh;
    width: 100%;
	margin: 0;
	background: url("../media/welcome.webp") no-repeat center / cover;
    flex-grow: 1;
	margin-top: 5%
}
.page-proposito {
	display: flex;
    justify-content: space-between; /* Distribuye los elementos de manera equilibrada */
    align-items: center;
	flex-direction: column;
	margin-top: 0;
	width: 100%;
	height: 15%;
}
.page-proposito h1 {
	font-size: 100%;
}
.page-proposito h2 {
	font-size: 60%;
	word-spacing: 30px;
}
.page-trabajo {
	display: flex;
    flex-direction: column; /* Alinea los elementos en una columna vertical */
    justify-content: center; /* Centra los elementos verticalmente dentro del contenedor */
    align-items: center; /* Centra los elementos horizontalmente dentro del contenedor */
    margin-top: 5%;
    margin-left: 0%;
	width: 100%;
    background: #FFFFFF;
}
.cuadro {
    display: flex; /* Activa flexbox en el cuadro */
    flex-direction: column; /* Alinea el contenido en una columna vertical */
    justify-content: center; /* Centra el contenido verticalmente dentro del cuadro */
    align-items: center; /* Centra el contenido horizontalmente dentro del cuadro */
    width: 60%; /* Ajusta el tamaño según tus necesidades */
    aspect-ratio: 1; /* Hace que los cuadros sean cuadrados */
    background-color: antiquewhite; /* Color de fondo de los cuadros */
    border-radius: 1em; /* Bordes redondeados */
    margin-bottom: 20px; /* Espacio entre los cuadros */
}
.cuadro span {
	font-size: 40px;
	}
.page-footer {
    display: flex;
    flex-direction: column;
	align-items: center;
  }
.page-footer ul {
    display: flex;
	flex-direction: row;  
    font-size: 1.5rem;
	margin-bottom: 5px;
  }
.page-footer a {
    display: flex;
	margin-right: 20%;
  } 
.slider {
    line-height: 0;
    margin:0;
    overflow: hidden;
    width: 100%;
}

.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.2);
}

.slider ul {
    animation: cambio 50s infinite alternate linear; /* Ajustado a 50s para 10 imágenes */
    display: flex;
    line-height: 0;
    padding: 0;
    width: 1000%; /* 10 imágenes, 100% cada una */
}

.slider li {
    line-height: 0;
    list-style: none;
    width: 10%; /* Cada imagen ocupa el 10% del ancho total del ul */
}

.slider img {
    line-height: 0;
    width: 100%;
}

@keyframes cambio {
    0% {
        margin-left: 0;
    }
    
    10% {
        margin-left: 0;
    }
    
    15% {
        margin-left: -100%;
    }
    
    25% {
        margin-left: -100%;
    }
    
    30% {
        margin-left: -200%;
    }
    
    40% {
        margin-left: -200%;
    }
    
    45% {
        margin-left: -300%;
    }
    
    55% {
        margin-left: -300%;
    }
    
    60% {
        margin-left: -400%;
    }
    
    70% {
        margin-left: -400%;
    }
    
    75% {
        margin-left: -500%;
    }
    
    85% {
        margin-left: -500%;
    }
    
    90% {
        margin-left: -600%;
    }
    
    100% {
        margin-left: -600%;
    }
}