html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    align-items: center;
}

#office-map{
    border: 1px solid black;
    border-radius: 10%;
}


.container-contact p{
    font-size: 25px;
}

#contact{   
    padding-bottom: 100px;

}

#contact h2{
    display: flex;
    justify-content: center;

    font-family: "Bebas Neue", sans-serif;   /* MODIFICACION DE LA LETRA */
    font-size: 40px;
    font-weight: 100;
    letter-spacing: 0.02in;

    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0%;

}


#contact-form {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}


#contact-form input, select, textarea {
    font-size: 15px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border: none;
    padding: 16px;
    border-radius: 1rem;
    background: #e8e8e8;
    transition: 0.3s;
}

#profile-data{
    display: flex;
    gap: 20px;
}

.form-group{
    display: flex;
    flex-direction: column;

}

.contact-details:hover{
    text-decoration: underline;
    text-decoration-color: #3B7EA1;
    text-underline-offset: 10px;
}

#send-button  {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

#send-button:hover {
    background-color: #245283;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    color: #fff;
    transform: translateY(-7px);
    
    }

#send-button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px){
    #office-map {
        box-sizing: border-box;
        max-width: 700px;
        height: auto;
        width: 100%;
        aspect-ratio: 7 / 5; /* 700x500 = 7:5 */
        border: 1px solid black;
        border-radius: 10%;
    }   
}



.contact-label{
    font-size: 20px;
    font-weight: 400;
    text-align: justify;
    font-family: "Yanone Kaffeesatz", sans-serif;
    line-height: 1.5;

}

h2{
    font-size: 32px;
    text-align: center;

}

body{
    margin: 0%;
}

a{
    text-decoration: none;
    color: black;
}


h1{
    display: flex;
    text-align: center;
    justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
}

