:root{
    --verde:#00A149;
    --rosado:#FFC0CB;
    --blanco:#fff;
    --rojo:#881014;
    --oscuro:#000;
    --celeste:#006691;
    --titulos:'Arima Madurai',cursive;
    --parrafos:'Mulish', sans-serif;
}
html{
    box-sizing: border-box;
    /*1rem = 10px*/
    font-size: 62.5%;
}
body{
    font-size: 1.6rem;
    overflow-x: hidden;
}

*,*::after, *::before{
    box-sizing: inherit;
}
/*globales*/
.contenedor{
    max-width: 120rem;
    margin: 0 auto;
    width: 95%;
}
h1,h2{
    font-family: var(--titulos);
}
@media(min-width: 768px) {
    h1,h2{
        font-family: var(--titulos);
        font-size: 1rem;
    }
}
h3, p, a{
    font-family: var(--parrafos);
}
@media(min-width: 768px) {
    h3, p, a{
        font-family: var(--parrafos);
        font-size: 1rem;
    }
}
img{
    max-width: 100%;
    max-height: 100%; 
    
}
/*@media(min-width: 768px) {
    img{
       
        max-height: 11rem;         
        max-width: 12rem;
    }
}*/
.rosado{
    color: var(--rosado);
}
.negro{
    color: var(--oscuro);
}
.verde{
    color: var(--verde);
}
.rojo{
    color: var(--rojo);
}
.celeste{
    color: var(--celeste);
}
.ocultar{
    display: none;
}

.btn-cerrar{
    font-size: 3rem;
    font-weight: bold;
    color: var(--blanco);
    position: absolute;
    top: 0;
    right: 50px;
    user-select: none;

}
.pantalla-completa{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 4;
}

@keyframes desplazamiento {
    0%{
        transform: translateX(100%);
    }

    100%{
        transform:translateX(0);
    }
}

.btn-cerrar:hover{
    cursor: pointer;
}

.btn{
    text-decoration: none;
    color: var(--blanco);
    font-size: 2rem;
    text-transform: capitalize;
    padding: 1rem 5rem;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}
.btn2{
    text-decoration: none;
    color: var(--blanco);
    font-size: 1.1rem;
    text-transform: capitalize;
    padding: 1rem 2rem;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
@media(min-width: 768px) {
    .btn{
        font-size: 2.2rem;
    }
}
@media(min-width: 768px) {
    .btn2{
        font-size: 1rem;
    }
}
.bordes{
    border: 3px solid var(--blanco);
}
@media(min-width: 768px) {
    .bordes{
        border: 4px solid var(--blanco);
    }
}

.bordes:hover{
    color: var(--verde);
    background-color: var(--blanco);
}
.btn-rojo{
    background-color: var(--rojo);
    font-weight: bold;
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.btn-rojo2{
    background-color: var(--rojo);
    border: none;
    display: inline-block;
}
.btn-verde{
    background-color: var(--verde);
    border: none;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: var(--parrafos);
}
.btn-verde2{
    background-color: var(--verde);
    border: none;
    display: inline-block;
}
.btn-verde:hover{
    background-color: var(--rojo);
}
/*encabezado*/
.encabezado{
     
}
.contenedor-navegacion{
    background-color: var(--blanco);
    position: relative;
    z-index: 5;
  
}
.contenido-navegacion{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
   
}
.logo h2, .navegacion a {
  color: var(--blanco);  
}
.logo h2{
    font-size: 1rem;
}
@media(min-width: 768px) {
    .logo h2{
        font-size: 3rem;
    }
}
.navegacion a{
    text-decoration: none;
    font-size: 2.2rem;
    padding: 1.5rem;
    padding-left: 4rem;
    display: block;
    transition: color .3s ease-in-out;
    text-align: center;
}

@media(min-width: 768px) {
    .navegacion a{
        text-align: left;
    }
}


.navegacion a:nth-child(even):hover{
    color: var(--rojo);
}
.navegacion a:nth-child(odd):hover{
    color: var(--celeste);
}
.navegacion a:first-of-type{
    margin-top: 5rem;
}
.navegacion{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 40rem;
    padding: 3rem 4rem;
    background-color: var(--oscuro);
    animation: desplazamiento .5s ease-in-out;
}

.hamburguesa:hover{
    cursor: pointer;
}

.hamburguesa span{
    background-color: var(--oscuro);
    display: block;
    width: 5rem;
    height: .5rem;
    margin-bottom: .5rem;
}

/*video*/
.contenido-header{
    position: relative;
}

.contenido-header::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
}

.texto-encabezado{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.texto-encabezado h2{
    color: var(--blanco);
    font-size: 6rem;
}

@media(min-width: 768px) {
    .texto-encabezado h2{
        font-size: 8rem;
    }
}

video{
    width: 100%;
    height: 100%;
}

/*sobre nosotros*/
.contenedor-nosotros{
    
    padding-top: 5rem;
}
@media(min-width: 768px) {
    .contenedor-nosotros{
        display: flex;
         justify-content: space-between;
    }   
}
.texto-nosotros, .imagenes-nosotros{
   
    flex: 0 0 calc(50% - 1rem) ;
}
.texto-nosotros .bienvenida{
    font-size: 4rem;
    color: var(--verde);
    text-align: center;
}
@media(min-width: 768px) {
    .texto-nosotros .bienvenida{
        text-align: left;
    }
}
.texto-nosotros h1{
    font-size: 5rem;
    text-align: center;
}
@media(min-width: 768px) {
    .texto-nosotros h1{
        text-align: left;
    }
}
.texto-nosotros p{
    font-size: 2rem;
    text-align: center;
}
@media(min-width: 768px) {
    .texto-nosotros p{
        text-align: left;
    }
}
.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;
}
.menu{
    padding-top: 4rem;
}
/*platillos*/
.texto-platillos{
    text-align: center;
    font-size: 3.5rem;
}
@media(min-width: 768px) {
    .texto-platillos{
        font-size: 5rem;
        text-align: left;
    }
}

.botones-platillos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.botones-platillos button{
    flex: 0 0 calc(25% - 1rem);
    padding: 0.5rem 1rem;
}
@media(min-width: 768px) {
    .botones-platillos{
        display: inline-block;
    }
    .botones-platillos button{
        flex: unset;
    }
}
@media(min-width: 768px) {
    .platillos{
        display: flex;
        justify-content: space-between;
        flex-wrap:wrap;
    }
}
@media(min-width: 200px) {
    .platillos{
        display: flex;
        justify-content: space-between;
        flex-wrap:wrap;
    }
}
.platillo{
    flex: 0 0 calc(25% - 1rem);    
    border: 1px solid #e1e1e1;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
}
/**inicio formulario sapos**/
@media(min-width: 768px) {
    .sapos{
        display: flex;
        justify-content: space-between;
        flex-wrap:wrap;
    }
}
@media(min-width: 180px) {
    .sapos{
        display: flex;
        justify-content: space-between;
        flex-wrap:wrap;
    }
}
.sapo{
    flex: 0 0 calc(25% - 1rem);    
    border: 1px solid #e1e1e1;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
}
/**fin formulario sapods**/
/*@media(min-width: 768px) {
    .platillo{
        flex: 0 0 calc(25% - 1rem);
        border: 1px solid #e1e1e1;
        padding: 2rem;
        border-radius: 5px;
        text-align: center;
    }
}-*/@media(min-width: 200px) {
    .platillo{
        flex: 0 0 calc(25% - 1rem);
        border: 1px solid #e1e1e1;
        padding: 2rem;
        border-radius: 5px;
        text-align: center;
    }
}
.platillo h2{
    text-align: center;
}
.platillo p{
    font-size: 1.8rem;
}
.precio{
    display: flex;
    justify-content: space-between;
}
.precio p{
    font-weight: bold;
    font-size: 2rem;
}
.precio button{
    padding:1rem;
    border-radius: 5px;
    border: none;
    background-color: var(--rojo);
    color: var(--blanco);
    height: 3.8rem;
}
.separador{
    background-image: url('../assets/img/ensalada.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}
.separador::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: -1;
}

.contenido-separador{
    padding: 5rem;
}

.contenido-separador h2{
    font-size: 4rem;
    color: var(--blanco);
    text-align: center;
}
@media(min-width: 768px) {
    .contenido-separador h2{
        text-align: left;
        font-size: 5rem;
        color: var(--blanco);
    }
}
.contenido-separador p{
    color: var(--blanco);
    font-size: 3rem;
    text-align: center;
}
@media(min-width: 768px) {
    .contenido-separador p{
        text-align: left;
    }
}

/*seccion del chef*/
.chef h2{
    background-color: var(--rojo);
    display: inline-block;
    padding: 1rem 3rem;
    color: var(--blanco);
    font-size: 4rem;
}
@media(min-width: 768px) {
    .contenido-chef{
        display: flex;
        justify-content: space-between;
    }
}
.texto-chef, .imagen-chef{
    flex: 0 0 calc(50% - 1rem);
}
.texto-chef h3{
    font-size: 3rem;

}
.texto-chef p{
    font-size: 2rem;
    
}
.formulario-contacto{
    padding-top: 5rem;
}
/*formulario contacto*/
@media(min-width: 768px) {
    .formulario-contacto{
        display: flex;
    }
}
.informacion-contacto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.informacion-contacto, .formulario{
    flex: 0 0 calc(50% - 1rem);
}
.informacion-contacto{
    background-color: var(--oscuro);
    padding: 2rem;
}

.informacion-contacto h3, .informacion-contacto p, .redes-sociales i{
    color: var(--blanco);
}
.informacion-contacto h3{
    font-size: 4rem;
    font-family: var(--titulos);
}

.informacion-contacto p{
    font-size: 2.2rem;
  
}
.informacion-contacto i{
    margin-right: 1rem;
}

.redes-sociales{
    font-size: 3rem;
}

.formulario{
    padding: 5rem;
}

.input-formulario label{
    display: block;
    font-size: 2rem;
    font-family: var(--parrafos);
    margin-bottom: 1.5rem;
}

.input-formulario input, .input-formulario textarea, .input-formulario select{
    width: 100%;
}
.input-formulario input, .input-formulario textarea, .input-formulario select{
    padding: 1rem 1.6rem;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    outline: none;
    font-family: var(--parrafos);
}
.input-formulario textarea{
    height: 6rem;
    resize:none;
}

.pie-pagina{
    margin-top: 1rem;
    background-color: rgb(20,20,20);
    padding: 1rem;
}
@media(min-width:768px){
    .pie-pagina{
        margin-top: 5rem;
        background-color: rgb(20,20,20);
        padding: 5rem;
    }

}
@media(min-width:768px){
    .contenedor-piepagina{
        display: flex;
        justify-content: space-between;
    }

}
.info{
    flex: 0 0 calc(25% - 0.5rem);
    margin-bottom: 1rem;
}
@media(min-width:768px){
    .info{
        flex: 0 0 calc(25% - 1rem);
        margin-bottom: 2rem;
    }

}
.info h3, .info p{
    color: var(--blanco);
    text-align: center;
}
.info h3{
    font-size: 1rem;
}
@media(min-width:768px){
    .info h3{
        font-size: 2.2rem;
    }

}
.info p{
    font-size: 1rem;
}
@media(min-width:768px){
    .info p{
        font-size: 2.2rem;
    }

}
.redes-pie{
    text-align: center;
}
.info input[type="email"]{
    font-family: var(--parrafos);
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    outline: none;
    width: 100%;
}
@media(min-width:768px){
    .info input[type="email"]{
        font-family: var(--parrafos);
        display: inline-block;
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 5px;
        outline: none;
        width: 100%;
    }
}

.info input[type="submit"]{
    padding: .5rem 2rem;
    font-size: 1.8rem;
    border-radius: 0;
}
.footer{
    text-align: center;
    background-color: var(--oscuro);
    color: var(--blanco);
    padding: 1rem;
    font-size: 1rem;
}
@media(min-width:768px){
    .footer{
        text-align: center;
        background-color: var(--oscuro);
        color: var(--blanco);
        padding: 2rem;
        font-size: 2rem;
    }
}
/*inicio formulario nuevo*/
/* Style inputs, select elements and textareas */
input[type=text], select, textarea{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    font-family: var(--parrafos);
  }
  
  /* Style the label to display next to the inputs */
  label {
    padding: 12px 12px 12px 0;
    display: inline-block;
    font-family: var(--titulos);
  }
  
 
  
  /* Style the container */
  .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }
  
  /* Floating column for labels: 25% width */
  .col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
  }
/* Floating column for labels: 50% width */
    .col-45 {
        float: left;
        width: 45%;
        margin-top: 6px;
      }
  /* Floating column for inputs: 75% width */
  .col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
  }
  /* Floating column for inputs: 100% width */
  .col-100 {
    text-align: center;
    font-size: 5rem;
    width: 100%;
    margin-top: 6px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 768px) {
    .col-25, .col-75, input[type=submit] {
      width: 100%;
      margin-top: 0;
    }
  }
  /*fin formulario nuevo*/
  /*inicio formulario informacion productos*/
/* Style the container */
.container1 {
    border-radius: 2px;
    background-color: #f2f2f2;
    padding: 20px;
  }
  
  /* Floating column for labels: 25% width */
  .col-20 {
    float: left;
    width: 20%;
    margin-top: 6px;    
  }
  
  /* Floating column for inputs: 75% width */
  .col-50 {
    float: left;
    width: 75%;
    margin-top: 6px;
  }
  /* Floating column for inputs: 100% width */
  .col-100 {
    text-align: center;
    font-size: 2rem;
    width: 100%;
    margin-top: 6px;
    
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;    
  }

  .container1 tr:nth-child(even):hover{
    color: var(--rojo);
}
.container1 tr:nth-child(odd):hover{
    color: var(--celeste);
}
.container1 tr:first-of-type{
    margin-top: 5rem;
}
  /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 768px) {
    .col-25, .col-75, input[type=submit] {
      width: 100%;
      margin-top: 0;
    }
  }

/**clases para formulario de login*/
  .container .form-box{
    width: 50%;
    padding: 40px;
    display:block;
    margin:auto;
  }
 
  @media screen and (max-width: 768px) {
    .container .form-box{
        width: 100%;
        padding: 40px;
      }
  } 
 
  .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**/
  .editar-eliminar{
    font-size: .9em;
    color: #162938;
    font-weight: 500;    
    display: flex;
    justify-content: center;
   }
   @media screen and (max-width: 768px) {
    .editar-eliminar{
        font-size: .9em;
        color: #162938;
        font-weight: 500;    
       
       }
  } 
  .my-fixed-item {
    position: fixed;
    min-height: 9px;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
    background-color: aquamarine;
}
/* DivTable.com */
.divTable{
	display: table;
	width: 100%;
    padding: 35px;
}
.divTableRow {
	display: table-row;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border: 1px solid #999999;
	display: table-cell;
	padding: 3px 10px;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}
/**posicionar un div al lado del otro*/
.div-contenedor{
    display: flex;
}
.div-1{
    padding: 10px;
}
.div-2{
    padding: 10px;
}
/**mensajes error y correcto*/
.error{
    background-color: #ff9185;
    font-size: 12px;
    padding: 10px;
}
.correcto{
    background-color: #a0dea7;
    font-size: 12px;
    padding: 10px;
}
/**modales**/
/*Efecto*/
.modalmask {
    position: fixed;
    font-family: Arial, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalmask:target {
    opacity:1;
    pointer-events: auto;
}

/*Formato de la ventana*/
.modalbox{
    width: 400px;
    position: relative;
    padding: 5px 20px 13px 20px;
    background: #fff;
    border-radius:3px;
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
     
}

/*Movimientos*/
/*.movedown {
    margin: 0 auto;
}
.rotate {
    margin: 10% auto;
    -webkit-transform: scale(-5,-5);
    transform: scale(-5,-5);
}*/
.resize {
    margin: 10% auto;
    width:0;
    height:0;
 
}
/**.modalmask:target .movedown{       
    margin:10% auto;
}
.modalmask:target .rotate{     
    transform: rotate(360deg) scale(1,1);
        -webkit-transform: rotate(360deg) scale(1,1);
}*/
 
.modalmask:target .resize{
    width:350px;
    height:350px;
}

/*Boton de cerrar*/
.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: 1px;
    text-align: center;
    top: 1px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius:3px;
 
}
 
.close:hover {
    background: #FAAC58;
    color:#222;
}

/*ocultar lista ordenada*/
.caja {
    height:100px;
    display: inline-block;   
    width:100px;
  }
  
  #azul{
    background:blue;
  }
  #rojo{
    background:red;
  }
  #verde{
    background:green;
  }
  #naranja{
    background:orange;
  }