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

/* Search journal */
#searchJournal {
    padding: 20px 0;
    background-color: var(--primary);
}

.search-form {
    border-radius: 25px;
    border: 0;
    height: 40px;
    padding: 0 20px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    width: 100% !important;
    transition: all 300ms ease;
    font-weight: 300;
}

.search-form::placeholder {
    color: var(--white);
}

.search-gutter.row {
    margin-left: -6px !important;
    margin-right: -6px !important;
}

.search-gutter > [class*="col-"],
.search-gutter > [class*=" col-"] {
    padding-left: 6px !important;
    padding-right: 6px !important;
}
/* Search Journal End */

/* Lastest Journal */
#lastestJournal {
    margin: 50px 0;
}

.lastest-table {
    border-radius: 12px;
}

.lastest-table thead {
    background-color: #033A71;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.lastest-table th {
    text-transform: uppercase;
}

.lastest-table td,
.lastest-table th {
    padding: 20px;
    font-size: 12px;
}

.lastest-table thead tr th {
    color: #fff;
    font-weight: 500;
    border: none;
}

.lastest-table tbody tr td {
    background-color: #fff;
}

.lastest-table tbody td a {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition);
}

.lastest-table tbody td a:hover {
    color: var(--secondary);
}

.lastest-table thead tr th:first-child {
    border-top-left-radius: 12px;
}

.lastest-table thead tr th:last-child {
    border-top-right-radius: 12px;
}

.lastest-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.lastest-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}
/* End Lastest Journal */
