@import url(https://fonts.googleapis.com/css2?family=Open+Sans&display=swap);

@import url(form.css);

*{
box-sizing: border-box;
}

img{
    display: block;
    max-width: 100%;
    
}

body{
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #FAF7F7;
    
}

/*Estilos del header*/

.header{
    height: 60px;
    z-index: 1000;
    
}


.header{
    position: fixed;
    margin-top: -10px ;
    width: 100%;
    background: rgb(22, 163, 74);
    
    
}


 .contenedor{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    
}


/*--------------------------Estilos menu--------------------------*/


.icon-menu{
    
    display: block;
    height: 40px;
    width: 42px;
    font-size: 30px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    margin-left: auto;
    cursor: pointer;
    text-align: center;
    border-radius: 7px;
    line-height: 37px;
    
    
    
    
    
}

.logo{
    margin: 8px ;
    color: #fff;
     
    
}


.icon-menu{
    margin: 8px;
    color: #fff;
}


.nav{
    position: absolute;
    top: 60px;
    left: -100%;
    width: 100%;
    transition: all 0.4s;
     5
}

.menu{
    list-style: none;
    padding: 0px;
    margin: 0px;
    
}

.menu__link{
    display: block;
    padding: 15px;
    background: #16a34a;
    text-decoration: none;
    color: #fff;
    border-top: 1px solid #000;
    
}

.menu__link:hover{
    background: #fff;
    color: #000;
    border-top: 1px solid #000;
    
}
.mostrar{
    left: 0px;
}

.select{
    background: #fff;
    color: #000;
    border-top: 1px solid #000;
    
  }  

/*-----------------------Estilos de articulos-----------------------*/

.main1{
    display: none
}

.hacheuno{
    background: #FFF;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
    display: flex;
    flex-wrap: wrap;
    margin: 10px auto 0; 
    padding: 40px 0 10px 0; 
    width: 96%; 
    text-align: center; 
    }


.footer{
    
    background: #333;
    color: #fff;
    padding: 10px;
    
}

.footer p{
    text-align: center;
    
}


.footer a{
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 14px;
    
}

.footer a:hover{
    color: #fba919;
}

.footera{
    width: 99%;
    margin: auto;
    display: flex;
    justify-content: space-between;

}



/*----------------Estilos responsive--------------*/

@media(min-width:480px){
 
    .logo{
        font-size: 40px;
    }
    
    
    
   .
    
}


@media(min-width:768px){
    
   
  .contenedor{
        width: 1000px;
        margin: auto;
    }
    

    
}

@media(min-width:1024px){
    
    .banner img{
    
    margin-top: -250px;
}
    
    
    .banner .contenedor{
        margin-top: 250px ;
    }
    
    
    .contenedor{
        width: 1000px;
        margin: auto;
    }
    .nav{
        position: static;
        width: auto;
    }
    .menu{
        display: flex;
        background: #16a34a;
        margin: 5px;
        
    }
    .icon-menu{
        display: none;
    }
    .menu__link{
        background: none;
        font-size: 14px;
    }
    .select{
        color: #fff;
        background: rgba(255,255,255,0.2);
    }
    
  
}

@media(min-width:1280px){
    
    .contenedor{
        
        width: 1200px;
    }
    .menu{
        display: flex;
        
    }
    
    
}







