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

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

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

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

.lastest-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;
}

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

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

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

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

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

.lastest-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* End Lastest 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 */
