.contactSection .headText {
    font-size: 3rem !important;
}

.contactSection .form-group {
    background: #e6e7e8;
    padding: 0.3rem 1.5rem 0.3rem 7rem;
    margin: 0.4rem 0;
    border-radius: 0.7rem;
    width: 100%;
}

.contactSection .form-group::before {
    position: absolute;
    z-index: 2;
    content: attr(data-placeholder);
    top: 0;
    left: 0;
    bottom: 0;
    padding: 1rem 0rem 1rem 1.5rem;
}

.contactSection .form-control {
    height: 2.8rem;
    padding: 1rem;
    border: none;
    box-shadow: none;
    outline: none;
    background: #fff;
    border-radius: 0;
    width: 100%;
}

.contactSection textarea.form-control {
    height: 180px;
    resize: none;
}

.contactSection .form-control:hover,
.contactSection .form-control:focus,
.contactSection .form-control:active {
    border: none;
    box-shadow: none;
    outline: none;
}

.contactSection .form-control.error {
    background: #fff4f0;
}

.btnSubmit {
    margin: 1.5rem auto 1rem;
    width: 100%;
    max-width: 250px;
    background: #e6e7e8;
    height: 2.8rem;
    text-transform: uppercase;
    border: 1px solid  #e6e7e8;
}

.btnSubmit:hover,
.btnSubmit:focus,
.btnSubmit:active {
    border: 1px solid  #e6e7e8;
    background: #fff4f0;
}

.cf_response {
    display: none;
    position: absolute;
    z-index: 4;
    background: #fffa;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

form label.error {
    color: #f00;
    position: absolute;
    z-index: 5;
    padding: 0 0.3em 0.3em 0;
    bottom: 0;
    right: 25px;
    font-size: 12px;
    font-weight: 600;
}

@media( max-width: 575px ) {
    .contactSection .form-group {
        padding: 0.2rem 0.8rem 0.2rem 5.4rem;;
        border-radius: 0.5rem;
        font-size: 0.9rem;
    }
    
    .contactSection .form-group::before {
        padding: 1rem 0rem 1rem 0.8rem;
        font-size: 0.9rem;
    }
}