/* Reset */
*{
   margin: 0;
   padding: 0; 
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   text-decoration: none;
   list-style: none;
   box-sizing: border-box;
}

/* Seccion */

/*
.mi_actividad{
    background-image: url(./Material_Procesado/Fondos/circui11.gif);
}
*/

/* Header */

header{
    width: 100%;
    height: 100px;
    background: #4d405c;
    padding: 0 30px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Logo{
    text-transform: uppercase;
    color: #6cc091;
    font-weight: 200;
}

.menu a{
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 20px;
    transition: 0.4s;
}

.mostrar_menu,
.esconder_menu{
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0.4s;
}

.mostrar_menu{
    order: 1;
}

.menu a:hover,
.mostrar_menu:hover,
.esconder_menu:hover{
    color: #6cc091;
}

#check{
    display: none;
} 

/* Banner */
#banner{
    padding: 0 30px;
    background-image: url(./Material_Procesado/Fotos/Reparaciones/Otros/Rep4.jpg);
    height: 20vh;
    background-size: cover;
    background-position: center;
}    

#banner::before{
    content: '';
    background: rgba(77, 77, 92, 0.6);
    position: absolute;
    width: 100%;
    height: 20h;
    left: 0;
}

.contenido_banner{
    position: relative;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contenido_banner h3{
    font-size: 30px;
    font-weight: 400;
    padding: 10px 0px;
}

.boton_comenzar:hover{
    background: #6cc09070;
}

/* Mi Actividad */
.presentacion{
    padding: 30px 30px;
    background-image: url(/Material_Procesado/Fondos/circui55.gif);
    font-family:Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-style: italic;
    text-align: center; 
  }

  .presentacion1{
    padding: 30px 30px;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-style: italic;
    text-align: center; 
  }

/* Pie de pagina */
.banner_pie{
    height: 10vh;
    background-size: cover;
    background-position: center;
}    

.contenido_banner_pie{
    position: relative;
    background-image: url(/Material_Procesado/Fondos/circui55.gif);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.letra_roja{
    font-family:  "Lucida Handwriting";
	font-size: 24px;
	color: #FF0000;
	line-height: normal;
	letter-spacing: normal;
	font-weight: bolder;
	font-style: italic;
    text-align: center;
}

.letra_chica{
    font-family:Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #0f0f0f;
    font-style: italic;
    text-align: center;
}

.letra_muy_chica{
    font-family:Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #2f0fe4;
    font-style: italic;
    text-align: center;
}

/* Reparaciones */
.p11 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: italic;
	color: #000000;
	background-repeat: no-repeat;
	font-weight: normal;
    width: 100%;
}

.p22 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: italic;
	font-weight: normal;
    
} 

.p32 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
    color: #000000;
    text-align: center;
} 

.linea_roja {
    border-top: 5px solid rgb(238, 7, 7);
    height: 1px;
    padding: 0;
    margin: 5px auto 0 auto;
  }
  
  .p_azul
  {
      font-family:  "Lucida Handwriting";
      font-size: 24px;
      color: #0400ff;
      line-height: normal;
      padding: 10px;
      letter-spacing: normal;
      font-weight: bolder;
      font-style: italic;
  }
  



/* Responsive */
@media(max-width: 800px){
    /* Header*/
    .mostrar_menu,
    .esconder_menu{
        display: block;
    }
   
    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #4d4d5c;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
    }
    
    .menu a{
        display: block;
        padding: 40px;
    }

    .esconder_menu{
        position: absolute;
        top: 40px;
        right: 40px;
    }

    #check:checked ~ .menu {
        right: 0;
    }
    
    #Contacto{
        width: 100%;
    }
     
}

form{
    width: 768px;
    margin: auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 7px;
}

h2{
    color:#fff;
    text-align: center;
    margin: 0;
    font-size: 30px;
    margin-bottom: 20px;
}

input, textarea{
    width: 100%;
    margin-bottom: 10px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 17px;
    border: none;
}

textarea{
    min-height: 100px;
    max-height: 200px;
    max-width: 100%;
}

.Btn{
    background: #31384A;
    color: #fff;
    padding: 20;
}

.Btn:hover{
    cursor: pointer;
}