.page-content {
    padding: 0px;
}

#contact-page .container {
    padding: 0px !important;
}

.contact-content {
    display: table;
    position: relative;
    height: 50vh;
}

.contact-column {
    display: table-cell;
    width: 33%;
    vertical-align: top;
}

.contact-title {
    font-size: 16px;
    border-left: 3px solid var(--blue);
    padding: 5px;
    padding-left: 10px;
    margin-bottom: 15px;
    font-family: 'LINESeedSansTH_Bold';
}

.contact-address {
    background-color: #fff;
    padding: 30px 20px;
}

.contact-detail {
    padding-left: 13px;
    margin-bottom: 20px;
}

.contact-tel {
    font-size: 16px;
    color: var(--blue);
    margin: 10px 0px 3px;
    font-family: 'LINESeedSansTH_Bold';
}

.contact-mail,
.contact-time {
    font-size: 14px;
}

.contact-form {
    color: #fff;
    background-color: rgb(56, 74, 76);
    padding: 30px 20px;
}

.contact-form input {
    background-color: transparent;
    border: 1px solid rgb(255 255 255 / 54%);
}

@media only screen and (max-width: 767px) {
    .contact-content {
        display: block;
        height: 100%;
    }

    .contact-column {
        display: block;
        width: 100%;
        text-align: center;
    }

    .contact-title {
        border: none;
    }

    .contact-tel {
        font-size: 18px;
        margin: 27px 0px 3px;
    }

    .contact-form .contact-title {
        color: var(--blue);
    }

    .contact-form .form-group {
        text-align: left;
    }
}