/* 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;
    position: relative;
}

.header-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}

.header-name {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
}

.header-name::before {
    content: ' ';
    position: absolute;
    border-bottom: 3px solid var(--accent);
    width: 30%;
    text-align: center;
    bottom: -10px;
    left: 0;
}

.header-table {
    color: #fff;
    margin-bottom: 0;
}

.header-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-table tr th {
    font-weight: 500;
}

.header-table tr th,
.header-table tr td {
    border-top: 0;
}
/* End Header */

/* Search News */
#searchNews {
    padding: 20px 0;
    background-color: #1470B8;
}

.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-btn {
    position: absolute;
    right: 0;
    border-radius: 25px;
    height: 40px;
    padding: 0 35px;
    background-color: #fff;
    transition: all 300ms ease;
    color: #1470B8;
    letter-spacing: 1px;
    font-weight: 500;
    top: 0;
    border: 1px solid white;
    font-size: 16px !important;
}
/* Search News End */

/* Lastest News */
#lastestNews {
    padding: 50px 0;
}

.lastest-pronvice-card {
    background: #fff;
    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%);
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
}

.lastest-pronvice-card .card-header {
    background: #033A71;
    color: #fff !important;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    padding: 15px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    letter-spacing: 1px;
    justify-content: center;
}

.lastest-pronvice-card .card-body {
    padding: 16px;
}

.lastest-pronvice-card li a {
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: var(--black);
    display: block;
    transition: var(--transition);
}

.lastest-pronvice-card li:last-child a {
    border-bottom: 0px;
}

.lastest-pronvice-card li a:hover {
    background: #1470B8;
    text-decoration: none;
    color: #fff;
}
/* End Lastest News */

@media (max-width: 997.98px) {

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

}
