/* ==========================================================================
  Lead Form
============================================================================= */

#lead_form * {
    outline: none !important;
}
#lead_form {
    border-radius: 20px;
    padding: 15px;
    max-width: 740px;
    margin: 0 auto;
}

#lead_form h2 {
    line-height: normal;
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #222;
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

#lead_form .form-group {
    margin-bottom: 15px;
    position: relative;
}

#lead_form .form-row .form-group {
    width: 50%;
    padding: 0 3px;
    float: left;
    box-sizing: border-box;
}

#lead_form label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

#lead_form input, select {
    display: block;
    width: 100%;
    border: 1px solid #ebebeb;
    padding: 11px 8px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 12px;
}

#lead_form .submit input {
    width: 100%;
    height: 40px;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
  #lead_form .form-row .form-group {
    width: 100%;
    float: none;
  }
}