﻿

/*-------------------------/*-------------------------*/
/*  contact
/*-------------------------/*-------------------------*/
#contact {
    margin-bottom: 60px;
}

#contact .inner {
    width: 800px;
}

#formWrap {
    width: 50%;
    color: #555;
    margin: 0 auto;
}

#formWrap h3 {
    width: 330px;
    text-align: center;
}

table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 12px;
}

table.formTable td,
table.formTable th {
    width: 330px;
    display: block;
}

table.formTable textarea,
table.formTable input {
    width: 330px;
    padding: 5px;
}

table.formTable th {
    margin-top: 20px;
    width: 100%;
    font-weight: normal;
    text-align: left;
}

@media (max-width: 767px) {

#contact .inner {
    width: 100%;
}

#formWrap {
    width: 90%;
    color: #555;
    margin: 0 auto;
}

    table.formTable td,
    table.formTable th {
        width: 100%;
        display: block;
    }

    
table.formTable textarea, table.formTable input {
    width: calc(100% - 10px);
    padding: 5px;
}
    }