
/*--------------FUENTES-----------*/
/*Aquí creamos un enlace a las nuevas fuentes que integramos desde nuestro directorio de fonts*/
@font-face{
	font-family: flama;
  	src: url(../fuentes/flamabook.otf);
}
@font-face{
	font-family: flamablack;
  	src: url(../fuentes/flamablack.otf);
}
/*--------------COLORES-----------*/

.verde{
	color: rgb(176, 197, 23);		
}
.gris{
	color: rgb(243, 241, 240);
}
.marron{
	color: rgb(63, 48, 33);	
}



/*--------------BODY-----------*/
/*aquí damos los estilos y parámetros generales*/
html{
    width: 1050px;
	height: 1550px; 
    zoom: 1;  
    
   }
/*::-webkit-scrollbar { 
    display: none;
}*/ /*se modifico 24/04/2024*/

*:focus{
    background-color: rgb(243, 241, 240, 0);
}
body{
    width: 1050px;
    height: 1550px;
    margin: 0;
    padding: 0;
}
.cabecera{
	width: 1045px; /*25/04/23 1080px*/
	height:680px;
	position: absolute;
	z-index: 1;
	margin: 1rem 0 0 0;
}
.contenido{
	width:  1045px; /*25/04/23 1080px*/
	height: 1100px;  
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-image: url("../img/fondo_edusi_main.svg");
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	z-index: 3;
	margin: 29rem 0 0 0;
    
}
.pie{
	width:  1045px; /*25/04/23 1080px*/
	height: 420px; /* antes 540*/
	background-image: url("../img/fondo_edusi_footer.svg");
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	z-index: 4;
	margin: 86rem 0 0 0;
}
.texto{
	text-align: justify;
	padding: 5rem;	
	margin-top: -15rem;
	font-family: "flama";
	font-size: 20px;
    line-height:1.3;
}  
.cierre span {
    display: flex;
    z-index: 6;
    align-items: right; 
    justify-content: right; 
    text-align: center;
    position: absolute; 
    right: 2.5rem;
    top: 1.25rem; 
    font-size:1rem; color:rgb(243, 241, 240);
    padding: .25rem;
    border-radius: .5rem;
    border: .15rem solid rgb(243, 241, 240);
} 
.cierre span:hover{
    color: rgb(243, 241, 240, .5);
    border: .15rem solid rgb(243, 241, 240,.5);
    transform: scale(1.3);
}
.logo{
    width: 17rem;
    padding: 0 0 1rem 0;
}
.barra{
    background-color: rgb(63, 48, 33);
    width: 1049px;
    height: 2rem;
    margin: -1.4rem 0 0 -.2rem;
    padding: .9rem 0 .7rem 0;
    display: flex;
    z-index: 6;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    position: absolute; 
    top: -27.5rem;
    text-align: center;
    
}

.idiomas1 a{
    
    color: rgb(243, 241, 240);
    font: 1rem flama;
    text-decoration: none;
    margin: 0;
    display: flex;
    z-index: 6;
    align-items: right; 
    justify-content: right; 
    text-align: center;
    position: absolute; 
    right: 5rem;
    top: 1.5rem;
}
.idiomas2 a{
    color: rgb(243, 241, 240);
    font: 1rem flama;
    text-decoration: none;
    margin: 0;
    display: flex;
    z-index: 6;
    align-items: right; 
    justify-content: right; 
    text-align: center;
    position: absolute; 
    right: 2rem;
    top: 1.5rem;
}
.guion{
   color: rgb(243, 241, 240);
    font: 1rem flama;
    text-decoration: none;
    margin: 0;
    display: flex;
    z-index: 6;
    align-items: right; 
    justify-content: right; 
    text-align: center;
    position: absolute; 
    right: 4.2rem;
    top: 1.5rem;
}
.idiomas1 a:hover{ /* expande las letras de idiomas*/
   transform: scale(1.3);
   color: rgb(243, 241, 240, .5);              
}

.idiomas2 a:hover{
    color: rgb(243, 241, 240, .5);
    transform: scale(1.3);  
}


h1{
    text-align: center;
    padding-bottom: 3rem;
    padding-top: 2rem;
}
/*LISTA DE TEXTO*/
.lista{
    padding-left: 4rem;
    list-style-type: square;
}
::marker{
    color: rgb(176, 197, 23);
    font-size: 2rem;  
}
/*--------------ÍNDICE-----------*/
/*con esto le doy las características al menú desplegable*/

nav{
    z-index: 5;
    display: flex;
    justify-content: left; 
    text-align: left;
    position: absolute; 
    font-family: "flama";
}
nav ul{
    list-style: none;
    margin: 2.5rem 3.5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
nav ul li ul{
    display: block;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 150ms all ease-out;
    font-size: 1rem;
    width: 16.9rem;
    height: 50rem;
    background: rgb(176, 197, 23);
    border-radius: .5rem;
}
nav ul .hamburguesa{
    display: block;
    padding: .5rem ;
    background: rgb(243, 241, 240);
    color: rgb(63, 48, 33);
    text-decoration: none;
    transition: 150ms all ease-out;
    border-radius:.75rem;
    text-align: center;
    box-shadow: rgb(176, 197, 23, .6) 0.15rem 0.15rem 0.15rem 0.15rem;   
    border: .4rem solid;
}
nav ul li:hover ul{
    opacity: 1;
    visibility: visible;
    transform: translateX(5px);
    transition-duration: 1s;
}
nav ul li a{
    display: inline-flex;
    text-decoration: none;
    text-align: left;
    padding: .1rem .1rem .1rem .5rem;
    color: rgb(63, 48, 33);
    font-weight: bold;
    bottom: 2.5rem;
    align-items: center;
    justify-content: space-around;
    margin: 0 0 .5rem .5rem;
}
nav ul li a:hover{
    background: rgb(176, 197, 23, 0);
    color: rgb(63, 48, 33, .5);
    box-shadow: rgb(176, 197, 23, 0) 0.15rem 0.15rem 0.15rem 0.15rem;
    transform: scale(1.1);
}
nav ul li a .iconos-indice{
    color: rgb(63, 48, 33);
    background-color: white;
    border: solid rgb(63, 48, 33) .25rem;
    border-radius: .5rem;
    padding: .5rem;
    font-size: 2.5rem;
}

.indice-img{
    background-color: white;
    border: solid rgb(63, 48, 33) .25rem;
    border-radius: .5rem;
    padding: .5rem;
    width: 1.5rem;
}

.navegador{  /*menú verde del script*//*este es el que choca*/
    list-style: none;
    width: 964px;
    margin: -57rem 0 0 3rem;
}

.nombres{  /*Cada uno de los textos*/
    padding: 0 0 0 1rem;
    font-size: .7rem;
}
/*------------------------------SLIDER --------------------------------*/

@keyframes slide {
    0% { transform: translateX(0%); }
    9% { transform: translateX(0%); }

    18% { transform: translateX(-100%); }
    27% { transform: translateX(-100%); }

    36% { transform: translateX(-200%); }
    45% { transform: translateX(-200%); }

    54% { transform: translateX(-300%); }
    63% { transform: translateX(-300%); }

    72% { transform: translateX(-400%); }
    81% { transform: translateX(-400%); }

    90% { transform: translateX(-500%); }
    99.9% { transform: translateX(-500%); }

    100% { transform: translateX(0%); }    
}

.slider {
    width:  1050px; /*25/04/23 1080px*/
    height: 600px;
    margin: 0 0 0 -.4rem; /*Desplaza el cuadro de las imagenes*/
    text-decoration: none;
    scroll-behavior: smooth; 
    position: relative;
    overflow: hidden; 
}
.slider .carrousel {
    width:  1050px;
    list-style: none;
    margin:  0 0 -1.25rem -2.1rem; /*Desplaza  las imagenes*/
    position: relative;
    display: flex;
    overflow: hidden;
}
.slider .carrousel .imagen {
    width:  1050px; /*25/04/23 1080px*/
    height: 600px;
    flex-shrink: 0; /*Los flex items se encogerán para llenar el contenedor de acuerdo a su número flex-shrink , cuando el tamaño por defecto de los flex items sea mayor al de su contenedor flex container.*/
    animation-name: slide;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function:  ease-in-out;}

.carrousel:hover .imagen {
    animation-play-state: paused;
}
    
/*-------------------IMÁGENES slider----------------------------*/
.imagen{
    background-size: cover;
    background-repeat: no-repeat;

}
.material-symbols-outlined > a{
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 12
}
/*BOTONES cámara y derecha e izquierda*/
.botones{
    display: flex;
    z-index: 4;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    position: absolute; 
    top: 54rem;
    right: 2.5rem;
}
.boton{
    border-radius: .75rem;
    background-color: white;
    border: .4rem solid rgb(63, 48, 33);
    text-align: center;
    margin:.5rem;
    box-shadow: rgb(176, 197, 23, .6) 0.15rem 0.15rem 0.15rem 0.15rem; 
}
.boton:hover{
    box-shadow: rgb(176, 197, 23, 1) 0.15rem 0.15rem 0.15rem 0.15rem;
    transform: scale(1.3); 
}
.boton > a > span{
    color: rgb(63, 48, 33);
    padding: .5rem;
    text-align: center;  

}
.botones1{
    display: flex;
    z-index: 4;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    position: absolute; 
    top: 54rem;
    left: 3rem;
}
/* ESTILOS PARA BOTONES JAVASCRIPT */
.play-button,
.close {   
    background-color: white;
    color: rgb(63, 48, 33);
    border: .4rem solid rgb(63, 48, 33); 
    border-radius: .75rem; 
    padding: .5rem; 
    cursor: pointer;
    margin: .5rem; 
    box-shadow: rgb(176, 197, 23, .6) 0.15rem 0.15rem 0.15rem 0.15rem;
}

.close { 
position: absolute; 
margin: 6rem 4rem 0 0; 
}

.play-button:hover{ 
 transform: scale(1.3);             
}

.close:hover { 
    background-color: rgb(63, 48, 33, 1.0);
    color: white;
    border: .4rem solid rgb(176, 197, 23, .6); 
  }

  /* Estilos para el botón de reproducción al pasar el cursor */
 .play-button:hover {
    background-color: rgb(243, 242, 240); 
    color: rgb(63, 48, 33, 1.0);
  }
  /* Estilos para el video */
  #video {
    width: 95%;
    height:30rem;
    margin-left: -.5rem;
  }

  /* Estilos para la capa modal es la transparecia de vídeo */
.modal {
    display: none; 
    position: fixed; 
    z-index: 4; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(63,48,33,0.96); 
  }

  /* Estilos para el contenido del modal */
  .modal-content {
    margin: 35rem 0 0 -2.60rem;
    padding: 2rem;
    width: 95%;
    background-color: rgb(255, 255, 255, 0);
    position: relative;
    list-style: none;
    & span{
        padding: .1rem;
        right: 0 ;
    }
  }

 /* ICONOS PRESENTACIÓN*/

.caja-presentacion{
    display: flex;  
    justify-content: space-around;
}
.icono-edusi-1 {
    width: calc(25% - 20px); 
    margin-bottom: 10px;
    text-align: center;
}
.icono-edusi-2 {
    width: calc(33% - 20px); 
    margin-bottom: 10px;
    text-align: center;
}
.icono-edusi-3 {
    width: calc(55% - 20px); 
    margin-bottom: 10px;
    text-align: center;
}

.caldas{
    margin: 0 0 0 4rem;
}
.casa{
    margin: 0 1rem 0 0;
}
.calzada{
    margin: 0 5rem 0 0;
}
.social{
    margin: 0 0 0 10rem;
}
.plan{
    margin: 0 12rem 0 0;
}
.icono-edusi a {
    text-decoration: none;
    text-align: center;
}
.icon {
    color: rgb(63, 48, 33); 
}
.p-presentacion {
    display: block;
    font-size: .8rem;
    color: rgb(63, 48, 33);
}

.icono-edusi-1:hover {
  transform: scale(1.2);
  filter: drop-shadow(4px 4px 5px rgb(176, 197, 23));
}

.icono-edusi-2:hover {
  transform: scale(1.2);
  filter: drop-shadow(4px 4px 5px rgb(176, 197, 23));
}
.icono-edusi-3:hover {
  transform: scale(1.2);
  filter: drop-shadow(4px 4px 5px rgb(176, 197, 23));
}
