	.form_contact .right_form h5 {
    font-size: 30px;
    color: var(--pink);
    font-weight: 600;
    margin-top: 40px;
}

.form_contact .right_form .box_right_form {
    background-color: #f7f7f7;
    border: 1px solid #eee;
    padding: 10px 30px 30px;
    height: 100%;
}

.left_form h2 {
    font-size: 42px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 30px;
}

.left_form #contact_company {
    display: none;
}

.left_form form > div {
    margin-bottom: 15px;
}

.left_form form input,
.left_form form textarea {
    border-radius: 0;
    border: 1px solid #e7e2dc;
    padding: 14px 5px;
}

.left_form form  #contact_button button {
    font-weight: 500;
    font-size: 16px;
    padding: 18px;
    border: none;
    background-color: var(--pink);
    border-radius: 30px;
    width: 195px;
    color: var(--white);
    margin-top: 30px;
}

.left_form form  #contact_button button:hover {
    background-color: var(--dark);
}

.left_form form  #contact_button #contact_reset {
    background-color: var(--dark);
}

.left_form form  #contact_button #contact_reset:hover {
    background-color: var(--pink);
}


/* Responsive */

@media (max-width: 1199px) {
    .left_form h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .form_contact #contact_button {
        display: flex; 
    }
    
    .left_form form #contact_button button {
        margin-top: 10px;
        margin-bottom: 25px;
    }

}













