/* Contact Section
--------------------------------*/
#contact {
    background: #e8dfd0;
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: 100vh;
}


#contact .serviceH2 {
    font-weight: 400;
    letter-spacing: -1px;
    margin: 0 0 15px 0;
    text-align: center;
    text-transform: uppercase;
    color: rgb(81, 72, 66);
}

@media (max-width: 576px) {
    #contact .serviceH2 {
        font-size: 22px;
    }
}

#contact .serviceH3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    font-weight: 400;
    color: rgb(81, 72, 66);
}

#contact .serviceH6 {
    font-size: 16px;
    color: #888888;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    margin: 0 0 60px 0;
}

@media (max-width: 576px) {
    #contact .serviceH6 {
        padding-left: 5%;
        padding-right: 5%;
        font-size: 14px;
    }
}

#contact .serviceRow {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}


#contact #google-map {
    height: 300px;
    margin-bottom: 20px;
}

#contact .info {
    color: #333333;
}

#contact .info i {
    font-size: 32px;
    color: rgb(81, 72, 66);
    float: left;
}

#contact .info p {
    padding: 0 0 10px 50px;
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 14px;
}

#contact .info .email p {
    padding-top: 5px;
}


#contact .form #sendmessage {
    color: rgb(81, 72, 66);
    border: 1px solid rgb(81, 72, 66);
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form-group {
    margin-bottom: 20px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input, #contact .form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

#contact .form button[type="submit"] {
    background: rgb(81, 72, 66);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    margin-top: 50px;
    width: 100%;
}

#contact .form button[type="submit"]:hover {
    background: rgb(81, 72, 66);
    width: 100%;
}

#contact .container {
    width: 50%;
}


@media (max-width: 1024px) {
    #contact .container {
        width: 80%;
    }
}

@media (max-width: 576px) {
    #contact .container {
        width: 90%;
    }
}