/* 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 */

/* Career List */
#careerList {
    margin: 50px 0;
}

.career-gutter {
    margin-left: -16px;
    margin-right: -16px;
}

.career-gutter > [class^="col"] {
    padding-left: 16px;
    padding-right: 16px;
}

.career-card {
    background: #fff;
    margin-bottom: 32px;
    -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%);
    border-radius: 10px;
}

.career-card .card-body {
    padding: 16px;
}

.career-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    margin-bottom: 16px;
}

.career-card img:hover {
    opacity: .8;
}

.career-link-title {
    transition: var(--transition);
}

.career-link-title:hover {
    color: var(--secondary);
}

.career-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* End career News */

/* Pagination */
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0;
    margin-top: 15px;
}

.pagination li {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-left: 3px;
    margin-right: 3px;
    line-height: 1.25;
    color: #4A4A4A;
    background-color: #E7E7E7 !important;
    border: none;
    border-radius: 25px;
    transition: all 300ms ease;
}

.pagination li a {
    color: #4A4A4A !important;
}

.pagination li.active {
    z-index: 4;
    background-color: var(--accent) !important;
    border-color: #007bff !important;
}
/* End Pagination */
