/*------------------------------------------------------------------------------ contact form */
#contact-form {
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: #fbfbfb;
    position: relative;
}

#contact-form #contact-form-section-form {
    position: absolute;
    background: #fbfbfb;
    width: 40%;
    top: 75px;
    padding: 40px;
    border: 1px solid #cecece;
    border-radius: 3px;
    right: 75px;
}

#contact-form h2 {
    text-align: center;
    margin-bottom: 0;
}

#contact-form #contact-form-fields {
    margin-top: 20px;
}

#contact-form .textarea {
    padding: 12px;
    display: block;
    margin-bottom: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #cdcdcd;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#contact-form .textarea textarea {
    height: 100px;
    resize: none;
    font-size: 13px;
    outline: none;
    color: #858585;
    width: 99%;
    border: none;
}

#contact-form .input.error,
#contact-form .textarea.error {
    border: 1px solid #e74c3c;
}

#contact-form .input {
    position: relative;
    padding: 5px 12px 5px 45px;
    height: 25px;
    margin-bottom: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #cdcdcd;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #858585;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#contact-form .input .input-helper {
    width: 35px;
    height: 34px;
    float: left;
    -webkit-border-top-left-radius: 3px;
    -moz-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    position: absolute;
    top: 0;
    left: -1px;
}

#contact-form .input .input-helper i {
    font-size: 17px;
    position: absolute;
    top: 7px;
    width: 100%;
    text-align: center;
}

#contact-form .input input[type=text] {
    border: none;
    padding-top: 5px;
    outline: none;
    width: 100%;
    color: #858585;
}

#contact-form button[name=send] {
    float: right;
    outline: none;
}

#contact-form .map-box {
    width: 100%;
    height: 650px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

#contact-form .contact-form-thanks {
    text-align: center;
    color: #3b9f3b;
    font-weight: 600;
    font-size: 15px;
    padding: 70px 0;
    display: none;
}

@media (min-width: 600px) and (max-width: 849px) {

    #contact-form .map-box {
        height: 1000px;
    }
    
    #contact-form #contact-form-section-form {
        position: absolute;
        background: #fbfbfb;
        width: 70%;
        padding: 40px;
        border: 1px solid #cecece;
        border-radius: 3px;
        top: 450px;
    }
}

@media (max-width: 599px) {

    #contact-form .map-box {
        height: 1000px;
        position: relative;
    }
    
    #contact-form #contact-form-section-form {
        position: absolute;
        background: #fbfbfb;
        padding: 40px;
        border: 1px solid #cecece;
        border-radius: 3px;
        left: 10px;
        top: 460px;
    }
}