*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    scroll-behavior: smooth;
}

body{
    font-family: 'Open Sans', sans-serif;
}

.titulo{
    display: flex;
    width: 100%;
    height: 80px;
    align-items: center;
    justify-content: center;
}
.titulo h1{
    font-size: 35px;
    color: #fcfbed;
    margin: 5px;
}



.header{
    display: flex;
    background-image: linear-gradient(to top, rgba(174, 202, 125, 0.171) 0%,rgba(13, 34, 25, 0.4) 100%), url(imag/Fondo-contacto.jpg);
    background-repeat: no-repeat;
    /*background-position: center;*/
    background-size: cover;
    background-attachment: fixed;
    height: 160vh;
    flex-wrap: wrap;
    justify-content: center;
    /*align-items: center;*/
    width: 100vw;
}
.contenedor{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
}
.form-contacto{
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: rgba(39, 48, 31, 0.411);
    margin-top: 0%;
    padding: 5px;
    width: 60%;
    text-align: center;
    color: #fff;
    
}
.elem-group {
    margin: 20px 0;
    align-self: center;

}


label {
    display: block;
    font-family: 'Aleo';
    padding-bottom: 4px;
    font-size: 1.25em;
}


.form-contacto input, select, textarea {
    background-color: rgba(187, 198, 209, 0.856);
    border-radius: 2px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1.25em;
    font-family: 'Aleo';
    width: 450px;
    padding: 10px;
}

textarea {
    height: 150px;
}

/*.text-align: center;*/

.fa-redo{
    font-size: 60px;
}

button {
    
    height: 50px;
    background: green;
    color: white;
    border: 2px solid darkgreen;
    font-size: 1.25em;
    font-family: 'Aleo';
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 20px;
}
  
button:hover {
    border: 2px solid black;
}

.head{
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    color: #fff;
}



.hamburguer{
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .5);
    z-index: 100;
}

.menu-navegacion{
    position: fixed;
    top: 0;
    width: 20vw;
    height: 100%;
     background-image: linear-gradient(to top, #fbc2eb 0%, #a6c0ee 100%); 
    /* 02 */
    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
    /* 028 */
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    right: 0;
    transform: translateX(110%);
    transition:transform 0.5s ease-in-out;
    box-shadow: 0 0 6px rgba(0, 0, 0, .5);
    z-index: 100;
}

.spread{
    transform: translateX(0);
}

.menu-navegacion a{
    color: #fff;
    text-decoration: none;
}



/*/////////////////////////////////////////////////////////////////////////////////////////*/




/*/////////////////////////////////////////////////////////////////////////////////////////*/




@media screen and (max-width: 800px){
    .menu-navegacion{
        width: 50vw;
    }

    .titulo h1{
        font-size: 30px;
    }*/

    .contenedor .wrapper{
        
        width: 60%;
    }
    .contenedor >.subtitulo h2{
        font-size: 28;
    }

    .form-contacto{
        
        width: 80%;
       
    }

    .form-contacto input, select, textarea {
        
        width: 400px;
       
    }

   
    
   
    
}


@media screen and (max-width: 500px){
    .menu-navegacion{
        width: 65vw;
    }

    .hamburguer{
        top: 20px;
        right: 20px;
    }

   

    .header{
        /*height: 100vh;*/
        /* 02 */
        background-image: linear-gradient(to top, rgba(174, 202, 125, 0.171) 0%,rgba(13, 34, 25, 0.4) 100%), url(imag/Cocina3.jpg);
        
    }

    .titulo h1{
        font-size: 20px;
    }

    
  
    .contenedor >.subtitulo h2{
        font-size: 20px;
    }

    .form-contacto{
        
        width: 80%;
       
    }

    .form-contacto input, select, textarea {
     
        width: 300px;
        
    }

    
   

    .contact-us{
        text-align: center;
        width: 95%;
        margin-bottom: 40px;
    }
    
}