.contact {
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}

.contact .c1 h1 {
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--main-branding);
}

.contact .c1 .info h1 {
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 15px;
}

.contact .c1 .info h2 {
  font-size: 16px;
  color: #747474;
  font-weight: 600;
  text-transform: none;

  display: flex;
  align-items: center;
}

.contact .c1 .info svg {
  margin-right: 5px;
}


/* Form */
.orcamento_form {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.form_title {
    display: none; /* remover se quiser exibir */
}

.form_input {
    margin-bottom: 12px;
}

.form_input_title {
    color: #005b9f;
    font-size: 18px;
    font-weight: 700;
}

.orcamento_form input[type="text"],
.orcamento_form input[type="email"],
.orcamento_form input[type="tel"],
.orcamento_form textarea {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    padding: 10px 24px;
    font-size: 18px;
    color: #333;
    background: #fff;
    transition: .2s;
}

.orcamento_form input[type="text"]:focus,
.orcamento_form input[type="email"]:focus,
.orcamento_form input[type="tel"]:focus,
.orcamento_form textarea:focus {
    outline: none;
    border-color: #005b9f;
}

.orcamento_form textarea {
    min-height: 220px;
    resize: vertical;
}

.orcamento_form ::placeholder {
    color: #9ea3b0;
    opacity: 1;
}

.form_checkbox {
    margin: 15px 0 35px;
    color: #9ea3b0;
    font-size: 18px;
    line-height: 1.6;
}

.form_checkbox .wpcf7-list-item {
    margin: 0;
}

.form_checkbox input[type="checkbox"] {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    vertical-align: middle;
}

.form_btns {
    margin-top: 20px;
}

.form_btns .wpcf7-submit {
    width: 100%;
    background: #005b9f;
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.form_btns .wpcf7-submit:hover {
    opacity: .9;
}

.wpcf7-spinner {
    display: none;
}

@media (max-width: 991px) {
    .orcamento_form {
        padding: 30px 20px;
    }

    .form_input_title {
        font-size: 16px;
    }

    .orcamento_form input[type="text"],
    .orcamento_form input[type="email"],
    .orcamento_form input[type="tel"],
    .orcamento_form textarea {
        font-size: 16px;
        padding: 16px;
    }

    .form_checkbox {
        font-size: 15px;
    }
}