:root{
    --verde:#00A149;
    --amarillo:#fcf81f;
    --azul:#050f9b;
    --blanco:#fff;
    --rojo:#881014;
    --oscuro:#000;
    --crema:#EAEDED;
    --insignia:#3da3f1;
    --titulos:'Arima Madurai',cursive;
    --parrafos:'Mulish', sans-serif;
    --temas:'Josefin Sans',cursive;
}
/*encabezado*/
.contenedor-titulo{
    background-color: var(--insignia);
    padding: 0.5rem;
    color: var(--oscuro);    
    font-size: 0.5rem;
    display: flex;
    justify-content:space-between;
    text-align: center;
    
    /*background: url("http://localhost/edatam/public/storage/anuncios/imagenfondo.png");*/
    
}
/*imagen de fondo*/
.contenedor-imagenf{ 
  /*background: url("http://localhost/edatam/public/storage/anuncios/imagenfondo.png");*/
  /*background: url("http://localhost/edatam/public/storage/anuncios/taekwondo.jpg");*/
  /*background: url("http://localhost/edatam/public/storage/anuncios/tkd.jpg");*/
  /*background: url("/storage/anuncios/taekwondo.jpg");*/
  background-repeat: no-repeat;
  background-size: 40vw 50vh;
  background-position: center;
  z-index: -3;
  background-attachment: fixed;
 
}
/*globales*/
.contenedor{
    max-width: 12rem;
    margin: 0 auto;
    width: 95%;
}
.contenedor-nosotros{
    
    padding-top: 5rem;
}
@media(min-width: 768px) {
    .contenedor-nosotros{
        display: flex;
         justify-content: space-between;
    }   
}
@media(min-width: 768px) {
    .contenedor-titulo{
        background-color: var(--insignia);
        color: var(--oscuro);
        padding: 1rem;
        font-size: 1rem;
        display: flex;
        justify-content: space-evenly;
        text-align: center;
        
    }
}

.logo{
    flex: 0 0 calc(20% - 1rem);
}
.nombreescuela{
    flex: 0 0 calc(80% - 1rem);
    font-weight: bold;
    font-size: 0.5rem;
    font-family: var(--titulos);
    
}
@media(min-width: 768px) {
    .nombreescuela{
        flex: 0 0 calc(80% - 1rem);
        font-weight: bold;
        font-size: 1.5rem;
        font-family: var(--titulos);
        
    }
}
/**clase para ocultar textos por tamaño de pantalla*/
.nehide{
  flex: 0 0 calc(80% - 1rem);
  font-weight: bold;
  font-size: 0.5rem;
  font-family: var(--titulos);
  display:none;
}

@media(min-width: 768px) {
  .nehide{
      flex: 0 0 calc(80% - 1rem);
      font-weight: bold;
      font-size: 1.5rem;
      font-family: var(--titulos);
      display:block;
  }
}
.nehide2{
  flex: 0 0 calc(80% - 1rem);
  font-weight: bold;
  font-size: 1.5rem;
  font-family: var(--titulos);
  display:block;
}

@media(min-width: 768px) {
  .nehide2{
      flex: 0 0 calc(80% - 1rem);
      font-weight: bold;
      font-size: 1.5rem;
      font-family: var(--titulos);
      display:none;
  }
}

.amarillo{
    color: var(--amarillo);
}
.verde{
    color: var(--verde);
}
.azul{
    color: var(--azul);
}
.rojo{
    color: var(--rojo);
}
/*footer*/
.footer{
    text-align: center;
    background-color: var(--insignia);
    color: var(--oscuro);
    padding: 0.5rem;
    font-size: 0.5rem;
}
@media(min-width: 768px) {
    .footer div{
        text-align: center;
        background-color: var(--crema);
        color: var(--oscuro);
        padding: 1rem;
        font-size: 1rem;
    }   
}
@media(min-width: 768px) {
    .footer p{       
        padding: 1rem;
        font-size: 1rem;
    }   
}
h1,h2{
    font-family: var(--titulos);
}
h4{
  font-family: var(--temas);
}
h5{
    font-family: var(--parrafos);
}
li, a{
    font-family: var(--parrafos);
    text-decoration: none;
}
p{
    font-family: var(--parrafos);    
    font-size: 1rem;
}
img{
    border-radius: 5px;
}
.btn-verde:hover{
    background-color: var(--verde);
    border-radius: 7px;
}
#grad1 {
    background-image: linear-gradient(to right, rgba(238, 241, 241, 0.952), rgba(238, 241, 241, 0.966));
    
  }

  #grad2 {
    background-image: linear-gradient(to right, rgba(224, 226, 228, 0.664), rgba(184, 203, 238, 0.966));
    
  }
  .horariofooter{
    display: flex;    
    font-family: var(--titulos);
    justify-content:space-between;
    align-items: center;
  }
  .horario{
    font-family: var(--titulos);
  }
  /**clases para formulario de login*/
  .wrapper{
    position: relative;
    width: 400px;
    height: 440px;
    background: transparent;
    border: 2px solid rgb(255, 255, 255,.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: scale(0);
    transition: transform .5s ease, height .2s ease;
  }
  .wrapper.active-popup{
   transform: scale(1);
  }
 
  .wrapper.active{
   height: 520px;
  }
 
  .wrapper .form-box{
    width: 100%;
    padding: 40px;
  }
 
  .wrapper .form-box.login{
   transition: transform .18s ease;
   transform: translateX(0);
  }
 
  .wrapper.active .form-box.login{
   transition: none;
   transform: translateX(-400px);
  }
 
  .wrapper .form-box.register{
   position: absolute;
   transition: none;
   transform: translateX(400px);
 
  }
 
  .wrapper.active .form-box.register{
   transition: transform .18s ease;  
   transform: translateX(0);  
  }
 
  .wrapper .icon-close{
   position: absolute;
   top: 0;
   right: 0;
   width: 45px;
   height: 45px;
   background: #162938;
   font-size: 2em;
   color: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
   border-bottom-left-radius: 20px;
   cursor: pointer;
   z-index: 1;
  }
 
  .form-box h2{
    font-size: 2em;
    color: #162938;
    text-align: center;
  }
  .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #162938;
    margin: 30px 0;
  }
  .input-box label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #162938;
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
  }
 
  .input-box input:focus~label,
  .input-box input:valid~label{
   top: -5px;
  }
  .input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #162938;
    font-weight: 600;
    padding: 0 35px 0 5px;
  }
  .input-box .icon{
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: #162938;
    line-height: 57px;
  }
 
  .remember-forgot{
   font-size: .9em;
   color: #162938;
   font-weight: 500;
   margin: -15px 0 15px;
   display: flex;
   justify-content: space-between;
  }
 
  .remember-forgot label input{
   accent-color:#162938;
   margin-right: 3px;
  }
 
  .remember-forgot a{
   color: #162938;
   text-decoration: none;
  }
 
  .remember-forgot a:hover{
   text-decoration: underline;
  }
 
  .btnlog{
   width: 100%;
   height: 45px;
   background: #162938;
   border: none;
   outline: none;
   border-radius: 6px;
   cursor: pointer;
   font-size: 1em;
   color: #fff;
   font-weight: 500;
  }
 
  .login-register{
   font-size: .9em;
   color: #162938;
   text-align: center;
   font-weight: 500;
   margin: 25px 0 10px;
  }
  .login-register p a{
   color: #162938;
   text-decoration: none;
   font-weight: 600;
  }
  .login-register p a:hover{
   text-decoration: underline;
  }
  /**fin clases para login**/

  .imagenes-nosotros{
   
    flex: 0 0 calc(50% - 1rem) ;
}
.imagenes-nosotros{
    display: flex;
    justify-content: space-between;
}
.imagenes-nosotros img{
    border-radius: 5px;
}
.imagen1, .imagenes2{
    flex: 0 0 calc(50% - 1rem);
}
.imagenes2 img{
    margin-bottom: 1rem;
}
/***div al aldo**/
.box01{
    width: 100%;
    height: 100%;
    /*background: rgb(235, 232, 232);   
        background-image: url("http://localhost/edatam/public/storage/anuncios/lineasmovimiento.webp");
*/
    background-image: url("/storage/anuncios/lineasmovimiento.webp");
    background-repeat: no-repeat;
    color: black;
    border-radius: 5%;
    display: flex;
    align-items: flex-end;
  }
  
  .box02{
    width: 60%;
    height: 100%;
    padding: 10px 10px 10px 10px;
  }
  
  .box03{
    width: 40%;
    height: 100%;
    padding: 10px 10px 10px 10px;
    text-align: justify;
  }
  
  .box04{
    width: 100%;
    height: 10%; 
    
    display: flex;
    align-items: flex-end;
   
  }
  .box05{
    width: 40%;
    height: 100%;    
    margin-left: 5px;
  }
  
  .box06{
    width: 50%;
    height: 100%;
    
    
    
  }
  .box07{    
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    text-align: center;
    
  }
 .centrar{
  display: flex;
  justify-content: center;
  
 }

 .imagen{
  width: 15rem;
  height: 10rem; 
  display:block;
  margin:auto;
}
@media(min-width: 768px) {
  .imagen{
    width: 25rem;
    height: 20rem; 
    display:block;
    margin:auto;
  }
}
/**estilo para mostrar el detalle de un registro*/
.box08{
  width: 100%;
  height: 100%;
  background: rgb(154, 230, 211);   
  /*background-image: url("http://localhost/edatam/public/storage/anuncios/lineasmovimiento.webp");*/
  color: black;
  border-radius: 50%;
  align-items: center;
}
@media(min-width: 768px) {
  .box08{
  width: 100%;
  height: 100%;
  background: rgb(154, 230, 211);   
  /*background-image: url("http://localhost/edatam/public/storage/anuncios/lineasmovimiento.webp");*/

  color: black;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
}
}

.box09{
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 10px;
}
@media(min-width: 768px) {
  .box09{
    width: 60%;
    height: 100%;
    padding: 10px 10px 10px 10px;
  }
}
.box010{
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 10px;
  text-align: center;
}
@media(min-width: 768px) {
  .box010{
    width: 40%;
    height: 100%;
    padding: 10px 10px 10px 10px;
    text-align: center;
  }
}
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
 }
.short { width: 50px; }