.contact_box{
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    align-items: top;
    padding: 24px 3% 15px 3%;
    justify-content: center;
     font-family: "Open Sans", sans-serif;
}



.location{
    display: flex;
    flex-direction: column;
    margin: 20px;
    width: 50%;
    border-radius: 10px;
}

.location p{
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
}

.location i{
    background-color:#124979;
    color: white;
    border-radius: 100px;
    padding: 12px;

}

frame{
    width: 100%;
}

form {
    width: 50%;
    margin: 0 auto;
    background-color: white;
     display: flex;
    flex-direction: column;
    border-radius: 8px;
}
    
        
label {
    display: block;
    margin-bottom: 12px;
    font-weight: bold;
    color: #124979;
    font-size: 18px;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.row {
    display: flex;
    width: 100%;
    justify-content: center;
}

.pack {
margin: 0 5px 0 0;
width: 60%;
}

textarea {
    height: 150px;
    resize: vertical;
}

form button {
    background-color:#124979;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 110px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

button:hover {
    background-color: #1a252f;
}

/* Estilo para simular os checkboxes da imagem */
.section-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 25px 0 15px 0;
    color: #124979;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

@media(max-width:970px){
    .contact_box{
        flex-direction: column;
        align-items: center;
    }

    .location{
        width: 100%;
    }

    form {
        width: 100%;
        
    }

    
}