body{
   background-color: #E8E9ED;
   font-family: Arial, Helvetica, sans-serif;
}

.contenedor{

    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3,auto);
    grid-template-areas: "header header header"
                         "contenido contenido contenido"
                         "footer footer footer" ; 
    /* place-items: center;                        */
} 


.contenedor header{
    grid-area: header;
    background-color: white; 
    width: 100%;
    box-shadow: 0 0 6px rgba(0,0,0,.5);
    padding: 3px 0px;    
    /*min-height: 280px; */
    /* height: 30vh; */    
	left: 0; 
	top: 0;
	position: fixed; 
} 

.contenedor nav{
    /* grid-area: nav;  */
    height: 70px;
    width: 90%;
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

nav #logo{
    height: 70px;
    vertical-align: top;
}

nav a{
    text-decoration: none;
    font-weight: 300;
    color: #2C4393;
    margin-right: 10px;
}

.hamburguesa{
    height: 100%;
    width: 70px;
    text-align: center;
    display: none; 
}

.hamburguesa img{
    vertical-align: 0px;
    padding: 23px 0;
}

.contenedor .contenido {
    grid-area: contenido;
    background-color: #E8E9ED;
}

.wrapper-contacto{
   
    padding-top: 7%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1,auto); 
    padding-bottom: 10px;
    text-align: center;
}


.wrapper-image-contacto{
    width: 100%;   
}  

.wrapper-image-contacto img{
    border: 5px white solid;
    margin-left: 10px;
}

.articleTelefonos{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 

}

.telefonos{
    /* width: 50%;
    height: 50%; */
    display: flex;
    justify-content: center; 
    align-items: center; 
    font-size: 15px;
    background-color: #fff;   
    margin-bottom: -250px; 
    position: absolute;  
    border-radius: 5px;
}

.telefonos p{
    margin: 14px; 
    padding: 0 30px;     
}

.fotoContacto {
   position: relative;
}

.contenedor main h2{
    text-align: center;
     margin-top: 120px; 
    color: #2C4393;
}

.imagenes{
    width: 100%;
    /* border: solid red 1px; */
    text-align: center;
}
.parrafo{
    margin-bottom: 70px;
}

form{
    text-align: center;
}

input{
    margin: 3px;
    width: 90%;
    height: 25px;
}

textarea{
    margin-top: 5px;
    width: 90%;
}

#btnEnviarTrabajaCN{
    color:  white; 
    background-color:#009ED8;  
    width: 20%; 
    border:none;
    text-align: center;  
}


footer{
    grid-area: footer;
    background-color: #181919 ;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    
    
}






/* footer div{
    width: 50%;
} */

@media screen and (max-width: 768px){

    .contenedor{

        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3,auto);
        grid-template-areas: "header header header"
                             "contenido contenido contenido"
                             "footer footer footer" ;    
    } 
    
    .contenedor header{
        grid-area: header;
        background-color: white; 
        width: 100%;
        box-shadow: 0 0 6px rgba(0,0,0,.5);
        padding: 3px 0px;    
        /*min-height: 280px; */
        /* height: 30vh; */    
        left: 0; 
        top: 0;
        position: fixed; 
    } 

    .contenedor nav{
        height: 70px; 
        width: 90%;
        margin: auto;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center; 
    
    }
    /* .hamburguesa{
        height: 100%;
        width: 70px;
        text-align: center;
        display: none; 
    
    } */
    
    .hamburguesa{
        display: block;
        height: 100%;
        width: auto;
    }

    .hamburguesa img{
        vertical-align: 0px;
        /* padding: 23px 0; */
    }

    .enlaces{
        position: fixed;
        background-color: #2C4393;
        left: 0;
        top: 70px;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
        transform: translateX(-100%);
        z-index: 1000;
        font-size: 20px;
    }

    .enlaces2{
        transform: translateX(0%);
    }

    .enlaces a{
        color:white;
    }

    nav #logo{
        height: 50px;
        vertical-align: top;
    }
    .contenedor contenido {
        grid-area: contenido;
        background-color: #E8E9ED;
    }

    .wrapper-contacto{
   
        padding-top: 3%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2,auto); 
        padding-bottom: 10px;
        width: 100%;       
    }
    
    form{
        width: 99%;
        margin-bottom: 7px;
    }

    .fotoContacto{
        width: 90%;
    }
    .telefonos{
        /* width: 50%;
        height: 50%;
        display: flex;
        justify-content: center; 
        align-items: center; 
        font-size: 15px;
        background-color: #fff;   
        margin-bottom: -250px; 
        position: absolute;  
        border-radius: 5px; */
        font-size: 11px;
        margin-bottom: 0px; 
    }

    form{
        width: 99%;
        margin-bottom: 7px;
    }

    .formu{
        width: 100%;
    }

    .contenedor contenido{
        padding-left: 1%;
        padding-right: 1%;
    }

    .wrapper-contacto{
        width: 100%;        
    }

    footer{
        grid-area: footer;   
        position: static;     
        padding: 10px;  
    }

    

}