/* Header */
header {
    background: url(../../../images/common/pattern-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.header-title {
    font-size: 36px;
    color: var(--white);
    text-transform: uppercase;
    margin: 15px 0;
}

.header-title::before {
    content: ' ';
    position: absolute;
    border-bottom: 4px solid var(--accent);
    width: 10%;
    text-align: center;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}
/* End Header */

/* Section */
.section-spacing {
    padding: 30px 0;
}
/* End Section */

/* Information */
.info-table {
    margin-bottom: 32px;
}

.info-table tr th,
.info-table tr td {
    border: 0;
}

.info-table tr th {
    padding-left: 0;
    font-weight: 500;
}
/* End Information */

/* Contact */
.contact-card {
    border-radius: 12px;
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 15%);
}

.contact-card .card-body {
    padding: 48px;
}

.contact-title {
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 50px;
    color: var(--black);
}

.contact-title::before {
    content: ' ';
    position: absolute;
    border-bottom: 4px solid var(--accent);
    width: 50%;
    text-align: center;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-form label {
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 0.7rem 1.5rem;
    border: 1px solid #ced4da;
    border-radius: 20px;
    height: auto;
}
/* End Contact */

@media (max-width: 997.98px) {

    .section-card .card-body {
        padding: 12px;
    }

}
