.contact_form{
    width: 100%;
}
.contact_form .form {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 6rem;
    margin-bottom: 10rem;
    justify-content: space-between;
}
.contact_form .form input {
    width: 45%;
    border-bottom: 0.1rem solid #707070;
    padding: 1.3rem;
    margin: 0 2.5% 4.2rem 2.5%;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
    color: #4b4b4b;
    transition: all 0.3s linear;
}
.contact_form .form input:focus,
.contact_form .form input:hover{
    border-bottom: 0.1rem solid #D7B369;
}
.contact_form .form .file_input{
    border: 0.1rem solid #707070;
    width: 45%;
    height: 4.3rem;
    margin: 0 2.5% 4.2rem 2.5%;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.contact_form .form .file_input:hover label{
    background-color: #D7B369;
}
.contact_form .form .file_input.erro{
    border: 0.1rem solid red;
}
.contact_form .form .file_input p{
    padding-left: 1.3rem;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
    color: #4b4b4b;
}
.contact_form .form .file_input.erro p{
    color: red;
}
.contact_form .form .file_input .fd_resume{
    opacity: 0;
    width: 0.01rem;
    height: 0.01rem;
    position: absolute;
}
.contact_form .form .file_input label{
    display: block;
    position: relative;
    width: 40%;
    height: 100%;
    background: #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s linear;
}

.contact_form .form input.erro{
    border-bottom: 0.1rem solid red;
}
.contact_form .form input::placeholder{
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
    color: #4b4b4b;
}
.contact_form .form input.erro::placeholder{
    color: red;
}
.contact_form .form .departament {
    width: 45%;
    border-bottom: 0.1rem solid #707070;
    padding: 1.3rem;
    margin: 0 2.5% 4.2rem 2.5%;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
    color: #4b4b4b;
    padding: 1rem;
    cursor: pointer;
}
.contact_form .form .departament.erro{
    border-bottom: 0.1rem solid red;
    color: red;
}
.contact_form .form .fd_message {
    width: 100%;
    padding-bottom: 10.6rem;
}
.contact_form .form .view_more {
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding: 2.4rem 6.8rem;
    background-color: #D7B369;
    margin-left: auto;
    margin-right: 5%;
    transition: all 0.3s linear;
    cursor: pointer;
}
.contact_form .form .departament option {
    background-color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
    color: #4b4b4b;
    padding: 1rem;
}