.banner-fluid {
    width: 100%;
    height: 300px;
    position: relative;
    padding: 0;
}
.banner-img {
    width: 100%;
    height: 100%;
    background: url("../img/pressroom/pressroom_banner.png") no-repeat center
        center / cover;
    animation: zoomOutBg 2s ease forwards;
}
@keyframes zoomOutBg {
    0% {
        background-size: 380%;
    }
    100% {
        background-size: 320%;
    }
}
@keyframes zoomOutBg2 {
    0% {
        background-size: 300%;
    }
    100% {
        background-size: 200%;
    }
}
@keyframes zoomOutBg3 {
    0% {
        background-size: 170%;
    }
    100% {
        background-size: 120%;
    }
}
.inner-content {
    position: absolute;
    top: 51%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 0);
    text-align: center;
}
.banner-company {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: white;
}
.banner-title {
    font-size: 35px;
    text-transform: capitalize;
    color: white;
    font-weight: bold;
}
/* ==========================
    Press room list
   ========================== */
.pressroom-container {
    padding-top: 50px;
    padding-bottom: 50px;
}
.nav-heading {
    font-size: 23px;
    text-transform: capitalize;
    margin-bottom: 0;
    text-align: center;
    margin-bottom: 20px;
}
.nav-latest {
    font-size: 12px;
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    color: #030f20;
    text-transform: uppercase;
}
.year-list {
    margin: 10px 0;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.year-item {
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    font-size: 18px;
    color: #133957;
    line-height: 2rem;
    list-style: none;
    cursor: pointer;
}
.year-item.active {
    font-weight: 700;
    position: relative;
}
.year-item.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #a5312d;
    bottom: 0;
    left: 0;
}
.form-select {
    width: 100%;
    height: 50px;
    appearance: none;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    color: #808f9a;
    font-size: 16px;
    background-image: url("../img/pressroom/loadmore.png");
    background-size: 15px;
    font-family: Karla, Arial, Helvetica, sans-serif;
    margin: 10px 0 20px;
}
.form-select:focus {
    outline: none;
    box-shadow: none;
}
.pressroom-wrapper {
    border-top: 4px solid #1c3955;
    padding: 20px 10px;
    overflow: hidden;
}
.pressroom-grid {
    display: grid;
    grid-template-columns: 1fr;
}
.content-grid {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: 1fr 0.5fr;
    grid-gap: 20px;
    border-bottom: 1px solid #d8dee3;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
.released-date .date {
    font-size: 40px;
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    margin-bottom: 0;
    color: #133957;
}
.released-date .month-year {
    font-size: 12px;
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    color: #133957;
    margin: 0;
    text-transform: uppercase;
}
.download-sec {
    grid-row: 2;
    grid-column: 2;
}
.news-downloadbtn {
    width: 140px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #b32225;
    text-decoration: none;
    font-size: 14px;
    font-family: Karla, Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #b32225;
}
.news-downloadbtn::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/pressroom/download-active.png") no-repeat center
        center/cover;
    margin: 0 5px 0 8px;
}
.news-downloadbtn:hover {
    color: #b32225;
    border-color: #b32225;
}
.news-downloadbtn:hover::after {
    background-image: url("../img/pressroom/download-active.png");
}
.news-type {
    font-size: 12px;
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    color: #133957;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.news-type::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: url("../img/pressroom/red-circle.png") no-repeat center
        center/100%;
    margin: 0 10px -1px 0;
}
.news-detail {
    font-size: 18px;
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    color: #333;
    font-weight: 400;
    line-height: 1.8rem;
}
.loadmore-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 40px;
    background-color: #ddd;
    text-transform: uppercase;
    font-family: Karla;
    font-size: 13px;
    text-decoration: none;
    color: #133957;
    font-weight: bold;
    margin: 0 auto;
}
.loadmore-btn:hover {
    color: #133957;
}
.loadmore-btn::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/pressroom/loadmore.png") no-repeat center
        center/100%;
    margin: 0 8px;
}
.pressroom-wrapper-d,
.container-d {
    display: none;
}
.container-m,
.pressroom-wrapper {
    opacity: 0;
    animation: fadeup 1s ease forwards;
}

@keyframes fadeup {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes faderight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ====================
    style datatable
   ==================== */

#table_length,
#table_filter,
thead {
    display: none;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border: none;
}
.dataTables_scrollBody::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
/* Track */
.dataTables_scrollBody::-webkit-scrollbar-track {
    background: #d8dee3;
    border-radius: 15pt;
}
/* Handle */
.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #b32225;
    border-radius: 15pt;
}
/* Handle on hover */
.dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: #555;
    border-radius: 15pt;
}
.filter-table {
    padding: 10px 30px 30px;
}

/* =============== Select2 =================== */
.select2 {
    width: 100% !important;
}
.select2-container {
    display: block;
}
.select2-selection--single {
    height: 40px !important;
    border: none !important;
    border-radius: 5px !important;
    background-color: transparent !important;
    border: 1px solid #ddd !important;
    padding: 0 10px !important;
}
.select2-selection__rendered {
    height: 100%;
    display: flex !important;
    align-items: center;
    padding-left: 0 !important;
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    font-size: 16px !important;
}
.select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}
.select2-selection__placeholder {
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    text-transform: capitalize;
    color: #bbb !important;
}
.select2-dropdown {
    border-radius: 5px !important;
    margin: 5px auto !important;
    border: none !important;
}
.select2-results__options {
    padding: 15px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
    border-radius: 5px !important;
}
.select2-results__option--highlighted {
    color: #133957 !important;
    font-weight: bold;
    background-color: white !important;
}
.select2-results__option {
    font-family: "Kaisei Opti", "Times New Roman", Times, serif;
    color: #133957 !important;
    text-transform: uppercase !important;
}
.select2-selection__arrow b {
    width: 15px !important;
    height: 15px !important;
    border: none !important;
    margin-left: -10px !important;
    margin-top: -8px !important;
    background: url("../img/pressroom/loadmore.png") no-repeat center center /
        100%;
    transition: transform 0.3s ease;
}
.select2-container--open .select2-selection__arrow b {
    transform: rotate(180deg);
    margin-top: -8px !important;
}
.select2-selection__clear {
    display: none !important;
}
@media screen and (min-width: 500px) {
    .banner-img {
        animation: zoomOutBg2 2s ease forwards;
    }
}
@media screen and (min-width: 768px) {
    .banner-fluid {
        margin-top: 80px;
        height: 250px;
    }
    .banner-title {
        font-size: 42px;
    }
    .inner-content {
        transform: translate(-50%, -50%);
    }
    .content-grid {
        grid-template-columns: 100px 1fr 0.2fr;
        grid-template-rows: 1fr;
        align-items: start;
        padding-top: 10px;
    }
    .content-detail {
        grid-row: auto;
        grid-column: auto;
    }
    .year-list {
        max-width: 500px;
        margin: 20px auto;
    }
    .form-select {
        max-width: 500px;
        margin: 10px auto 20px;
    }
    .download-sec {
        grid-row: unset;
        grid-column: unset;
    }
    .news-downloadbtn {
        margin: 0 auto;
    }
    .released-date .date {
        margin-top: -10px;
    }
    .download-sec {
        margin-top: 20px;
    }
    .loadmore-btn {
        margin: 50px auto;
    }
}
@media screen and (min-width: 1024px) {
    .banner-fluid {
        margin-top: 100px;
        height: 270px;
    }
    .banner-img {
        animation: zoomOutBg3 2s ease forwards;
    }
    .banner-title {
        font-size: 50px;
    }
    .nav-heading {
        font-size: 30px;
    }
    .field {
        width: 250px;
    }
    .pressroom-container {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .pressroom-grid {
        overflow: hidden;
        grid-template-columns: 200px 1fr;
    }
    .container-m {
        display: none;
    }
    .container-d {
        display: block;
    }
    .pressroom-wrapper {
        padding: 0;
        border-top: 0;
    }
    .pressroom-wrapper-d {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .form-select {
        margin: 0;
        width: 250px;
        height: 40px;
    }
    .nav-latest {
        margin-bottom: 38px;
    }
    .table-wrapper {
        border-top: 2px solid #1c3955;
    }
    .year-list-desk {
        line-height: 2rem;
        padding-left: 1.5rem;
    }
    .year-item-desk {
        font-size: 20px;
        font-family: "Kaisei Opti", "Times New Roman", Times, serif;
        color: #133957;
        list-style: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .year-item-desk:hover {
        font-weight: bold;
        position: relative;
        padding-left: 15px;
    }
    .year-item-desk:hover::before {
        content: "\2022";
        font-size: 30px;
        color: #a5312d;
        position: absolute;
        left: -20px;
        top: -2px;
    }
    .year-item-desk.active {
        font-weight: bold;
        position: relative;
        padding-left: 15px;
    }
    .year-item-desk.active::before {
        content: "\2022";
        font-size: 30px;
        color: #a5312d;
        position: absolute;
        left: -20px;
        top: -2px;
    }
    .year-item-desk.active .month-list {
        display: block;
    }
    .year-item-desk .month-list {
        display: none;
    }
    .month-list {
        padding-left: 1rem;
        margin: 0;
        line-height: 2rem;
    }
    .month-list > li {
        cursor: pointer;
        list-style: none;
        font-family: "Kaisei Opti", "Times New Roman", Times, serif;
        font-size: 16px;
        font-weight: 400;
        color: #333;
    }
    .month-list li:hover {
        font-weight: bold;
    }
    .month-list li.active {
        font-weight: bold;
    }
    .loadmore-btn {
        margin: 50px auto 50px 220px;
    }
    .container-d {
        opacity: 0;
        animation: faderight 1s ease forwards;
    }
}
@media screen and (min-width: 1200px) {
    .banner-fluid {
        height: 290px;
    }
    .banner-title {
        font-size: 40px;
    }
    .content-grid {
        grid-template-columns: 0.3fr 2fr 1fr;
    }
    .pressroom-grid {
        grid-template-columns: 250px 1fr;
    }
    .loadmore-btn {
        margin-left: 265px;
    }
}
@media screen and (min-width: 1400px) {
    .banner-fluid {
        height: 420px;
    }
    .inner-content {
        top: 50%;
    }
    .banner-title {
        font-size: 48px;
    }
    .pressroom-grid {
        grid-template-columns: 300px 1fr;
    }
    .loadmore-btn {
        margin-left: 305px;
    }
}
