@import "variables.css";
*{
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
#content{
        width: 100%;
        height: auto;
        padding: 40px;
        
}
#contacto{
    display: flex;
    flex-wrap: wrap;
}
.info-contacto {
    width: 47%;
    margin-left: 2%;
    position: relative;
    border-top: 4px solid var(--main-color);
    background-color: white;
    padding: 20px;
    box-shadow: 5px 5px 5px rgba(0,0,0,.5);
}
.info-contacto a{
    display: block;
    color: #0e0e0e;
    text-decoration: none;
}
.info-contacto a:hover{
    text-decoration: underline;
}

.subtitle {
    font-size: 18px;
    font-weight: 700;
}
.info-contacto hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #06478e, rgba(0, 0, 0, 0));
}
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/*-- zona de contacto --*/
.contact_form{
    width: 47%; 
    height: auto;
    margin-left: 2%;
    position: relative;
    border-top: 4px solid var(--main-color);
    padding: 20px; 
    background-color: #fbfbfb; 
    box-shadow: 5px 5px 5px rgba(0,0,0,.5);
    }

    .contact_form input{
    background-color: #fbfbfb; 
    width: 100%; 
    height: 40px; 
    border-radius: 5px;  
    border-style: solid; 
    border-width: 1px; 
    border-color: #06478e; 
    margin-top: 10px;  
    padding-left: 10px;
    margin-bottom: 20px; 
    }
    
    
    .contact_form textarea{
    background-color: #fbfbfb; 
    width: 100%; 
    height: 150px; 
    border-radius: 5px;  
    border-style: solid; 
    border-width: 1px; 
    border-color: #06478e; 
    margin-top: 10px;  
    padding-left: 10px;
    margin-bottom: 20px; 
    padding-top: 15px; 
    }
    
    
    .contact_form label{
    display: block; 
    float: center; 
    }
    
    
    .contact_form button{
    height: 45px; 
    padding-left: 5px;
    padding-right: 5px; 
    margin-bottom: 20px; 
    margin-top: 10px; 
    text-transform: uppercase;
    background-color: #06478e; 
    border-color: #06478e; 
    border-style: solid; 
    border-radius: 10px;
    width: 100%;   
    cursor: pointer;
    }
    
    
    .contact_form button {
    color: #fff; 
    }
    
    
    .contact_form span{
    color: #06478e; 
    }
    
    
    .contact_form .aviso{
    font-size: 13px;  
    color: #0e0e0e;  
    }
    
    
    .contact_form h1{
    font-size: 39px;  
    text-align: letf; 
    padding-bottom: 20px; 
    color: #06478e;
    }
    
    
    .contact_form h2{
    font-size: 20px; 
    padding-bottom: 30px;
    color: #0e0e0e;   
    }
    
    
    .contact_form p{
    font-size: 14px; 
    color: #0e0e0e; 
    }
    
    
    ::-webkit-input-placeholder {
     color: #a8a8a8;
    }
    
    
    ::-webkit-textarea-placeholder {
     color: #a8a8a8;
    }
    
    
    .formulario input:focus{
    outline:0;
    border: 1px solid var(--main-color);
    }
    
    
    .formulario textarea:focus{
    outline:0;
    border: 1px solid var(--main-color);
    }
    
    @media screen and (max-width: 768px) {
        .info-contacto {
            width: 90%;
            margin-left: 5%;
            margin-bottom: 20px;
        }
        .contact_form{
            width: 90%; 
            margin-left: 5%;
            position: relative;
            margin-bottom: 20px; 
            }
        
    
    }