/* 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 {
    margin: 30px 0;
}

.section-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%);
}

.section-card .card-body {
    padding: 48px;
}
/* End Section */


@media (max-width: 997.98px) {

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

}
