﻿@charset "UTF-8";

html, body, form, .site-wrapper { min-height: 100%; }
body {
    font-family: var(--font-family);
    line-height: var(--line-height);
}
.site-wrapper.sticky-active { 
    padding-top: 66px;
}
a {
    text-decoration: none;
    transition: all linear 0.5s;
    color: var(--theme-color-accent);
}
a:hover { color: var(--theme-color-accent-2); }
.btn-aliwaa, .btn-aliwaa-alt {
    font-size: 0.8rem;
    background: var(--theme-color-white);
    border: 2px solid var(--theme-color-accent);
    color: var(--theme-color-accent);
}
.btn-aliwaa:hover, .btn-aliwaa-alt {
    background-color: var(--theme-color-accent);
    color: var(--theme-color-white);
}
.btn-aliwaa-alt:hover {
    background: var(--theme-color-white);
    color: var(--theme-color-accent);
    border: 2px solid var(--theme-color-accent);
}
.lazy {
    transition: all 0.5s;
}
.lazy.loading {
    animation: flashing;
    animation-iteration-count: infinite;
    animation-duration: 2s;
}
.lazy.loaded {
    animation: fade-in;
    animation-iteration-count: 1;
    animation-duration: 0.5s;
}

@keyframes flashing {
    0% { opacity: 1; }
    50% {opacity: 0.2;}
    100% {opacity: 1;}
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.site-body { overflow: hidden; }
.mfp-counter { direction: ltr; }
.content-section-body {
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
}
.dir-fix {
    display: inline-block;
    direction: ltr;
}
.theme-color { color: var(--theme-color-accent); }

/* scrollable area */
.scrollbar { 
    height: calc(100% - 2 * var(--bs-gutter-x));
    overflow-y: auto;
}
.scrollbar::-webkit-scrollbar {
  width: 0.5rem;
}
.scrollbar::-webkit-scrollbar-track {
  background: rgba(140, 140, 140, 0);
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #1e4484;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #1e4484;
}

/*notifier*/
#egvNotifier {
    position: fixed;
    width: calc(100% - 30px);
    bottom: 15px;
    left: 15px;
    padding: 1rem;
    opacity: 0.8;
    z-index: 1000000;
}
#egvNotifier button {
    float: left;
    background: transparent;
    border: none;
}
#egvNotifier > h4 { font-size: 1rem; }
#egvNotifier > p { font-size: 0.8rem; }

/*breaking news*/
.breaking-news {
    background-color: var(--color-danger-red);
    color: var(--color-white);
    padding: 5px;
}
.breaking-news a {
    color: var(--color-white);
}
.breaking-news .inner {
    display: flex;
    align-items: center;
}
.breaking-news h4 {
    font-size: var(--size-1);
    font-weight: bold;
    margin-left: var(--size-1);
    margin-bottom: 0px;
    flex: 0 0 auto;
    width: 7%;
}
.breaking-news .inner .item {
    flex: 0 0 auto;
    width: 93%;
    text-overflow: ellipsis;
    height: var(--line-height);
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--size-1);
}
@media (max-width: 1200px) {
    .breaking-news h4 { width: 10%; }
    .breaking-news .inner .item { width: 90%; }
}
@media (max-width: 768px) {
    .breaking-news .inner {
        flex-direction: column;
        justify-content: center;
    }
    .breaking-news h4 {
        width: 100%;
        text-align: center;
        padding-bottom: var(--size-05);
    }
    .breaking-news .inner .item {
        width: 100%;
        text-align: center;
    }
}

/*top header*/
.top-header {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: var(--size-02) 0px;
}

/*weather*/
.weather-main-container {
    font-size: var(--size-08);
}
.weather-container {
    display: inline-block;
    margin-right: var(--size-05);
}
.weather-container img { 
    height: var(--size-2);
    position: relative;
    top: var(--size-02);
    margin-right: var(--size-05);
}

/*latest news*/
.header-latest-news { overflow: hidden; }
.header-latest-news .inner {
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .header-latest-news .inner { 
        flex-direction: column;
        justify-content: center;
    }
    .header-latest-news .inner h3 { display: none; }
}
.header-latest-news h3 {
    margin-bottom: 0px;
    margin-left: var(--size-1);
    font-size: var(--size-08);
    white-space: nowrap;
}
.latest-news-slider {
    visibility: hidden;
    position: absolute;
}
.bx-wrapper .latest-news-slider {
    visibility: visible;
    position: static;
}
.header-latest-news .bx-wrapper {
    margin: 0px;
    box-shadow: none;
    border: none;
    background: transparent;
}
.latest-news-slider .item {
    width: 93% !important;
    text-overflow: ellipsis;
    height: var(--line-height);
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--size-1);
    padding-right: var(--size-02);
}
.latest-news-slider .item a { 
    color: var(--color-white);
    font-size: var(--size-08);
}
.latest-news-slider .item .icon {
    margin-left: var(--size-05);
    font-weight: bold;
}

/*header app download*/
header .app-link {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: self-end;
}
header .app-link img { height: var(--size-2); }
header .main-header.sticky .app-link { display: none; }

/*main header*/
.main-header {
    background-color: var(--theme-color-white);
    border-bottom: var(--size-02) solid var(--theme-color-accent);
    position: relative;
}
.main-header.sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    animation: slide-down;
    animation-duration: 1s;
    animation-iteration-count: 1;
}
@keyframes slide-down {
    0% { top: -100%; }
    100% { top: 0%; }
}

/*logo container*/
.logo-section { padding: var(--size-1) 0px; }
.logo img {height: var(--size-3);}
.main-header.sticky .logo-section { padding: var(--size-05) 0px; }
.main-header.sticky .logo img { height: var(--size-2); }
@media (max-width: 425px) {
    .logo img {
        height: auto;
        max-height: var(--size-3);
        max-width: 100%;
        padding: 0px var(--size-05);
    }
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-menu-toggle {
    font-size: var(--size-2);
    color: var(--theme-color-accent);
}
.mobile-menu-toggle {
    margin-left: auto;
}
.mobile-search-toggle {
    margin-right: auto;
    width: var(--size-25);
    height: var(--size-25);
    color: var(--theme-color-white);
    font-size: var(--size-1);
    background-color: var(--theme-color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

/* header social widget*/
header .social-widget {
    display: flex;
    justify-content: end;
}
header .social-widget a {
    margin: 0px var(--size-02);
    width: var(--size-25);
    height: var(--size-25);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: var(--theme-color-white);
    font-size: var(--size-1);
}
.social-widget a:hover {
    background-color: var(--theme-color-neutral-gray);
    color: var(--color-white);
}
.social-widget a.facebook:hover, .share-widget a.facebook:hover {
    background-color: #4267B2 !important;
}
.social-widget a.twitter:hover, .share-widget a.twitter:hover {
    background-color: #1DA1F2 !important;
}
.social-widget a.youtube:hover {
    background-color: #FF0000 !important;
}
.social-widget a.instagram:hover {
    background-color: #C13584 !important;
}
.social-widget a.whatsapp:hover, .share-widget a.whatsapp:hover {
    background-color: #128C7E !important;
}
.social-widget a.linkedin:hover, .share-widget a.linkedin:hover {
    background-color: #0a66c2 !important;
}
.social-widget a.tiktok:hover {
    background-color: #010101 !important;
}
.social-widget a.telegram:hover {
    background-color: #0088cc !important;
}

/* hard copy download */
.hard-copy-download-button { text-align: left; }

/* nav section */
.nav-section { 
    padding: var(--size-05) 0px;
    background-color: var(--theme-color-very-light-gray);
    border-top: 1px solid var(--theme-color-neutral-gray);
}
.nav-section-inner {
    display: flex;
    justify-content: space-between;
}
.date-container { 
    font-size: var(--size-09); 
    line-height: 1.2;
}
.main-nav { width: 100%; }
.main-nav ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    list-style-type: none;
    justify-content: center;
    align-items: center;
}
.main-nav > ul > li > ul, .main-nav > ul .mega-menu-items { visibility: hidden; opacity: 0; z-index: -1; }
.main-nav > ul > li { margin: 0px var(--size-05); }
.main-nav > ul > li > a { 
    display: block;
    color: var(--theme-color-black);
    padding: var(--size-05);
}
.main-nav > ul > li.current-menu-item > a {
    font-weight: bold;
    color: var(--theme-color-accent-2);
}
.main-nav > ul > li > a .caret {
    font-size: var(--size-08);
    margin-right: var(--size-08);
}
.main-nav a:hover { color: var(--theme-color-accent-2); }
.sub-menu-container, .mega-menu-container { position: relative; }
.sub-menu-container > ul, .mega-menu-container .mega-menu-items {
    opacity: 0;
    position: absolute;
    background: var(--theme-color-very-light-gray);
    padding: 1rem;
    /*box-shadow: -5px 5px 10px var(--theme-color-neutral-gray);*/
    top: calc(100% - 2px);
    white-space: nowrap;
    transition: opacity linear 0.2s;
}
.sub-menu-container ul, .mega-menu-container ul {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.sub-menu-container:hover ul, .mega-menu-container:hover .mega-menu-items {
    visibility: visible;
    opacity: 1;
    z-index: 100;
}
.sub-menu-container ul li, .mega-menu-container ul li { margin-bottom: var(--size-02); }
.sub-menu-container ul li a, .mega-menu-container ul li a {
    color: var(--theme-color-black);
    font-size: var(--size-1);
}
.mega-menu-container .mega-menu-items {
    display: flex;
    width: 900px;
}
.mega-menu-container .mega-menu-items .mega-menu-item {
    flex: 0 0 auto;
    width: 25%;
    padding: var(--size-1);
}
.mega-menu-item h5 {
    font-size: var(--size-1);
    padding-bottom: var(--size-05);
    border-bottom: 1px solid var(--theme-color-neutral-gray);
}
.mega-menu-item h5 a { color: var(--theme-color-accent-2); }

/* search toggle */
.search-toggle-container { 
    justify-content: end;
    display: flex;
    margin-left: var(--size-1);
}
.search-toggle-container a {
    width: var(--size-25);
    height: var(--size-25);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: var(--theme-color-white);
    font-size: var(--size-1);
    background-color: var(--theme-color-accent);
}
.search-toggle-container a:hover {
    background-color: var(--theme-color-accent-2);
    color: var(--theme-color-white);
}

/* search popup */
.search-popup {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background: var(--theme-color-light-gray);
    padding: var(--size-1) 0px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: opacity ease-in-out 0.5s;
}
@media (max-width: 1199px) {
    .search-popup { padding: var(--size-2) 0px; }
}
.search-popup.in {
    visibility: visible;
    opacity: 1;
    z-index: 1000;
}
.search-popup-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-popup-inner .btn { 
    margin: 0px var(--size-1);
    padding-left: var(--size-2);
    padding-right: var(--size-2);
}
.search-popup-inner .close-search-toggler {
    width: 34.25px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: var(--theme-color-neutral-gray);
    border: 1px solid var(--theme-color-neutral-gray);
    box-sizing: content-box;
}

/*mobile-menu*/
.mobile-menu {
    display: none;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: var(--theme-color-accent);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
.site-wrapper { transition: margin-right .5s, filter .5s; }
.site-wrapper.open { 
    filter: grayscale(1);
    position: relative;
}
.mobile-menu-overlay-close { display: none; }
.site-wrapper.open .mobile-menu-overlay-close {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
@media (max-width: 1199px) {
    .mobile-menu { display: block; }
    .mobile-menu.in { width: 35%; }
    .site-wrapper.open { margin-right: 35%; }
}
@media (max-width: 1024px) {
    .mobile-menu.in { width: 35%; }
    .site-wrapper.open { margin-right: 35%; }
}
@media (max-width: 550px) {
    .mobile-menu.in { width: 90%; }
    .site-wrapper.open { margin-right: 0px; }
}
.mobile-menu .header {
    display: flex;
    color: var(--theme-color-white);
    padding: 0px var(--size-1);
    justify-content: space-between;
    align-items: center;
}
.mobile-menu .header h3 { margin: 0px; }
.mobile-menu .header .mobile-menu-close {
    color: var(--theme-color-white);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid var(--theme-color-white);
}
.mobile-menu .body {
    padding: var(--size-2) var(--size-05);
    margin: var(--size-2) 0px;
    border-top: 1px solid var(--theme-color-white);
    border-bottom: 1px solid var(--theme-color-white);
}
.mobile-menu .main-nav ul {
    flex-direction: column;
    justify-content: unset;
    align-items: start;
}
.mobile-menu .main-nav > ul > li {
    width: 100%;
    margin: 0px;
}
.mobile-menu .main-nav > ul > li > a,
.mobile-menu .mega-menu-container ul li a,
.mobile-menu .sub-menu-container ul li a {
    color: var(--theme-color-white);
    display: block;
}
.mobile-menu .main-nav > ul .mega-menu-items {
    width: 100%;
    flex-direction: column;
    position: static;
    height: 0px;
    display: none;
    box-shadow: none;
    background-color: unset;
    padding: 0px;
    padding-right: var(--size-1);
}
.mobile-menu .mega-menu-container.in .mega-menu-items {
    display: flex;
    height: auto;
    visibility: visible;
    opacity: 1;
}
.mobile-menu .mega-menu-container .mega-menu-items .mega-menu-item {
    width: 100%;
    padding: 0px;
    margin-bottom: var(--size-1);
    margin-top: var(--size-1);
}
.mobile-menu .mega-menu-container ul li, .mobile-menu .main-nav > ul > li > ul > li { width: 100%; }
.mobile-menu .main-nav > ul > li > ul {
    position: static;
    padding: 0px;
    display: none;
    box-shadow: none;
    background-color: unset;
    padding-right: var(--size-1);
}
.mobile-menu .sub-menu-container.in ul {
    display: flex;
    visibility: visible;
    opacity: 1;
}
.mobile-menu .social-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px var(--size-1);
    margin-bottom: var(--size-2);
}
.mobile-menu .social-widget a {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin: 0px var(--size-05);
    border-radius: 100%;
    border: 1px solid var(--theme-color-white);
    color: var(--theme-color-white);
}
.mobile-menu .hard-copy-download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--size-2) 0px;
}
.mobile-menu hr {
    border-color: var(--theme-color-white);
    opacity: 1;
}
.mobile-menu .weather-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-color-white);
    margin-bottom: var(--size-1);
}
.mobile-menu .date-container {
    text-align: center;
    color: var(--theme-color-white);
    font-size: var(--size-08);
}
.mobile-menu .app-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--size-2);
}
.mobile-menu .app-link img { height: var(--size-25); }

/* Video Center */
.video-center {
    padding-top: var(--bs-gutter-x);
    position:relative;
}
.video-center iframe {
    height: 130% !important;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    max-width: 130% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-center iframe.in { opacity: 1; }
.video-center-loader {
    display: block;
    height: 100%;
    background-color: var(--theme-color-white);
    color: var(--theme-color-accent);
    position: absolute;
    width: calc(100% + 1px);
    z-index: 10;
    top: 0px;
    left: 0px;
    font-size: var(--size-2);
}
.video-center-loader span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-center-loader.out { display: none; }
.video-center .video-center-item {
    display: block;
    height: 251px;
    background-size: cover;
    color: var(--theme-color-white);
    overflow: hidden;
    margin-bottom: var(--bs-gutter-x);
    position: relative;
    transition: none !important;
}
.video-center .video-center-item .icon {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.5s;
    font-size: var(--size-2);
}
.video-center .video-center-item:hover .icon {
    color: var(--theme-color-white);
}
.video-center .title {
    width: 100%;
    overflow: hidden;
    height: 100%;
    background: var(--theme-color-accent-2-transparent);
    display: flex;
    align-items: end;
    padding: var(--size-1);
    position: absolute;
    z-index: 1;
    top: 100%;
}
.video-center .title span {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    font-size: var(--size-08);
}
.video-center .hoverdir-item {
    height: calc(100% - var(--size-1));
    overflow: hidden;
    margin: var(--size-05);
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100% - var(--size-1));
}

/* news carousel */
.news-carousel-container {
    padding-top: var(--bs-gutter-x);
    padding-bottom: var(--bs-gutter-x);
}
.news-carousel-item a {
    display: block;
    position: relative;
    padding-bottom: 20px;
}
.news-carousel-item a .img-container {
    display: block;
    overflow: hidden;
}
.news-carousel-item img {
    max-width: 100%;
    transition: all 0.5s;
}
.news-carousel-item .title {
    position: absolute;
    bottom: 0px;
    right: 10px;
    padding: var(--size-1);
    background-color: var(--theme-color-accent-2);
    color: var(--theme-color-white);
    transition: all 0.5s;
}
.news-carousel-item .title span { display: block; }
.news-carousel-item .title span.meta {
    line-height: 1.2;
    margin-bottom: var(--size-02);
    font-size: var(--size-05);
}
.news-carousel-item a:hover .title { background-color: var(--theme-color-accent); }
.news-carousel-item a:hover img { transform: scale(1.1); }
.news-carousel-container .owl-dots, .content-album-carousel .owl-dots {
    margin-top: var(--size-1);
    display: flex;
    justify-content: center;
}
.news-carousel-container .owl-dots .owl-dot, .content-album-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid var(--theme-color-accent);
    margin: 0px var(--size-05);
}
.news-carousel-container .owl-dots .owl-dot.active, .content-album-carousel .owl-dots .owl-dot.active {
    background-color: var(--theme-color-accent);
}
.news-carousel-container .owl-dots .owl-dot:hover, .content-album-carousel .owl-dots .owl-dot:hover {
    background-color: var(--theme-color-accent-2);
}
.news-carousel-mini .news-carousel-item a {
    display: flex;
    align-items: center;
    background-color: var(--theme-color-gray);
    padding-bottom: 0px;
}
.news-carousel-mini .news-carousel-item .img-container { width: 70%; }
.news-carousel-mini .news-carousel-item .title {
    width: 30%;
    position: static;
    background-color: transparent;
    color: var(--theme-color-accent);
    font-weight: bold;
}
.news-carousel-mini .news-carousel-item a:hover .title { 
    background-color: transparent; 
    color: var(--theme-color-accent-2);
}
@media (max-width: 768px) {
    .news-carousel-mini .news-carousel-item a { flex-direction: column; }
    .news-carousel-mini .news-carousel-item .img-container,
    .news-carousel-mini .news-carousel-item .title { width: 100%; }
}

/* widgets */
.widget {
    margin-bottom: var(--bs-gutter-x);
    max-height: 100%;
}
.widget .section-title {
    margin-bottom: var(--size-1);
}
.widget .section-title h5 {
    margin: 0px;
    background-color: var(--theme-color-gray);
    padding: var(--size-05);
    line-height: 1;
    position: relative;
    border-bottom: var(--widget-border-width) solid var(--theme-color-accent);
    font-size: var(--size-1);
    font-weight: bold;
    color: var(--theme-color-accent);
}
.widget .section-title h5 a {
    color: var(--theme-color-accent);
}
.widget .section-title h5 a:hover {
    color: var(--theme-color-accent-2);
}
.widget .section-title h5:after {
    right: 20px;
    border-top: 7px solid var(--theme-color-accent);
    width: 0;
    height: 0;
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    display: block;
    bottom: -10px;
    left: 20px;
}
.widget .img-container {
    display: block;
    overflow: hidden;
    margin-bottom: var(--size-05);
}
.widget img { 
    width: 100%;
    transition: all 0.5s;
}
.widget .body .item:hover img {
    transform: scale(1.1);
}
.widget .body {
    padding-bottom: var(--size-05);
}
.widget .body h6 {
    font-size: var(--size-08);
    color: var(--theme-color-accent);
    padding: var(--size-05);
    margin-bottom: 0px;
    padding-left: 0px;
    border-right: var(--widget-side-border-width) solid var(--theme-color-accent);
    font-weight: bold;
    transition: all 0.5s;
    line-height: 1.4;
    color: var(--theme-color-accent);
}
.widget .body h6 a {
    color: var(--theme-color-accent);
}
.widget .item .meta {
    display: block;
    font-size: var(--size-05);
    margin-bottom: var(--size-05);
    transition: all 0.5s;
}
.widget .body .item:hover h6 { border-color: var(--theme-color-accent-2); }
.widget .body .item:hover h6 a { color: var(--theme-color-accent-2); }
.widget .body .item:hover h6 .meta { color: var(--theme-color-accent-2); }
@media (max-width: 768px) {    
    .widget .body h6 { font-size: 110%; }
    .widget .body h6 .meta { font-size: var(--size-065) !important; }
}

/* news wall */
.news-wall .grid-section {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 5px;
    row-gap: 5px;
}
.news-wall .grid-section .item {
    grid-column: span 2 / auto;
}
.news-wall .grid-section .item:nth-child(1),
.news-wall .grid-section .item:nth-child(2) {
    grid-column: span 3 / auto;
}
.news-wall .item {
    position: relative;
}
.news-wall .item:after {
    position: absolute;
    bottom: 0px;
    content: "";
    background: var(--theme-color-accent);
    background: linear-gradient(0deg, var(--theme-color-accent) 0%, var(--theme-color-accent-full-transparent) 85%);
    width: 100%;
    height: 40%;
    z-index: 0;
}
.news-wall .item .img-container { margin: 0px; }
.news-wall .item .title {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: calc(100% - 10px);
    color: var(--color-white);
    border-color: var(--color-white);
    z-index: 1;
}
.news-wall .body .item:hover h6 .meta { color: var(--color-white); }
@media (max-width: 768px) {
    .news-wall .grid-section .item { grid-column: span 6 / auto !important; }
}

/* tabbed news */
.tabbed-news .tab-titles {
    margin-bottom: var(--size-1);
    border-bottom: 2px solid var(--theme-color-accent);
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.tabbed-news .tab-titles .tab {
    display: block;
    padding: var(--size-02) var(--size-05);
    border: 1px solid var(--theme-color-neutral-gray);
    border-top-left-radius: 20px;
    color: var(--theme-color-black);
    font-weight: bold;
}
.tabbed-news .tab-titles.red { border-color: var(--color-danger-red); }
.tabbed-news .tab-titles .tab.active {
    color: var(--theme-color-white);
    background-color: var(--theme-color-accent);
    border-color: var(--theme-color-accent);
}
.tabbed-news .tab-titles .tab.active.red {
    background-color: var(--color-danger-red);
    border-color: var(--color-danger-red);
}
.tabbed-news .item a {
    padding: var(--size-1) var(--size-05);
    display: flex;
    font-size: var(--size-09);
    align-items: center;
    font-weight: bold;
    color: var(--theme-color-accent);
}
.tabbed-news .item a:hover {
    color: var(--theme-color-accent-2);
}
.tabbed-news .item:nth-child(even) a {
    background-color: var(--theme-color-light-gray);
}
.tabbed-news .item a .icon {
    margin-left: var(--size-065);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tabbed-news .item a .icon span:last-child {
    font-size: var(--size-065);
    white-space: nowrap;
}
.tabbed-news .item a .title { font-size: var(--size-07); }

/* news section highlight */
.news-section-highlight .item > a {
    display: block;
    overflow: hidden;
}
.news-section-highlight .item:first-child {
    position: relative;
    margin-bottom: var(--size-05);
}
.news-section-highlight .item:first-child .title {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: calc(100% - 10px);
    color: var(--color-white);
    border-color: var(--color-white);
    z-index: 1;
}
.news-section-highlight .item:first-child .title a { color: var(--color-white); }
.news-section-highlight .item:first-child:hover .title,
.news-section-highlight .item:first-child:hover .title a,
.news-section-highlight .item:first-child:hover .title .meta { color: var(--color-white); }
.news-section-highlight .item:first-child::after {
    position: absolute;
    bottom: 0px;
    content: "";
    background: var(--theme-color-accent);
    background: linear-gradient(0deg, var(--theme-color-accent) 0%, var(--theme-color-accent-full-transparent) 85%);
    width: 100%;
    height: 30%;
    z-index: 0;
}
.news-section-highlight .item:not(:first-child) {
    display: flex;
    margin-bottom: var(--size-05);
    background-color: var(--theme-color-light-gray);
}
.news-section-highlight .item:not(:first-child) > a {
    width: 30%;
    display: block;
    overflow: hidden;
}
.news-section-highlight .item:not(:first-child) .title {
    border: none;
    padding-left: var(--size-05);
    width: 70%;
}

/* author articles list */
.author-articles-list .body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--size-1);
    row-gap: var(--size-1);
}
.author-articles-list .item { position: relative; }
.author-articles-list .item > a:first-child {
    display: block;
    overflow: hidden;
}
.author-articles-list .item .title {
    margin-top: var(--size-02);
    width: 70%;
}
.author-articles-list .item .author-icon {
    display: block;
    position: absolute;
    bottom: var(--size-1);
    left: var(--size-1);
    border: 4px solid var(--theme-color-white);
    border-radius: 100%;
    width: var(--size-4);
    overflow: hidden;
}
.author-articles-list .item .author-icon img {
    transition: all 0.5s;
}
.author-articles-list .item:hover .author-icon img {
    transform: scale(1);
}
.author-articles-list .item .author-icon:hover img {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .author-articles-list .body {
        grid-template-columns: 1fr;
    }
}

/* whatsapp group link */
.whatsapp-group-link {
    margin-bottom: var(--size-1);
}
.whatsapp-group-link > section {
    padding: 30px 20px 0px;
}
.whatsapp-group-link img {
    width: 100%; 
    display: block;
}

/* latest news item with author */
.latest-news-with-author .item { position: relative; }
.latest-news-with-author .item .title { width: 70%; }
.latest-news-with-author .item .author-icon img { transition: all 0.5s; }
.latest-news-with-author .item:hover .author-icon img { transform: scale(1); }
.latest-news-with-author .item .author-icon:hover img { transform: scale(1.1); }
.latest-news-with-author .item .author-icon {
    display: block;
    position: absolute;
    bottom: var(--size-1);
    left: var(--size-1);
    border: 4px solid var(--theme-color-white);
    border-radius: 100%;
    width: var(--size-4);
    overflow: hidden;
}

/* news list */
.news-list .item {
    display: flex;
    margin-bottom: var(--size-05);
}
.news-list .item > a {
    display: block;
    overflow: hidden;
    width: 30%;
}
.news-list .item .title {
    width: 70%;
    border: none;
}

/* wide news list */
.news-list-wide .body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    column-gap: var(--size-1);
    row-gap: var(--size-05);
    justify-content: start;
    align-items: start;
}
.news-list-wide .item .img-container { margin-bottom: 0px; }
.news-list-wide .body .item:first-child {
    grid-row: span 3 / auto;
    position: relative;
}
.news-list-wide .body .item:first-child .title {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: calc(100% - 10px);
    color: var(--color-white);
    border-color: var(--color-white);
    z-index: 1;
}
.news-list-wide .body .item:first-child::after {
    position: absolute;
    bottom: 0px;
    content: "";
    background: var(--theme-color-accent);
    background: linear-gradient(0deg, var(--theme-color-accent) 0%, var(--theme-color-accent-full-transparent) 85%);
    width: 100%;
    height: 30%;
    z-index: 0;
}
.news-list-wide .item:first-child .title a,
.news-list-wide .item:first-child:hover .title,
.news-list-wide .item:first-child:hover .title a,
.news-list-wide .item:first-child:hover .title .meta { color: var(--color-white); }
.news-list-wide .item:not(:first-child) {
    display: flex;
}
.news-list-wide .item:not(:first-child) .img-container {
    width: 30%;
}
.news-list-wide .item:not(:first-child) .title {
    width: 70%;
    border: none;
}
@media (max-width: 768px) {
    .news-list-wide .body {
        grid-template-columns: 1fr;
        row-gap: var(--size-1);
        column-gap: 0px;
    }
    .news-list-wide .body .item:first-child {
        grid-row: auto;
    }
    .news-list-wide .body .item:first-child .title {
        position: static;
        width: 70%;
        color: var(--theme-color-accent);
        border-color: var(--theme-color-accent);
    }
    .news-list-wide .body .item:first-child::after { display: none; }
    .news-list-wide .item:first-child .title a { color: var(--theme-color-accent); }
    .news-list-wide .item:first-child:hover .title,
    .news-list-wide .item:first-child:hover .title a,
    .news-list-wide .item:first-child:hover .title .meta {
        color: var(--theme-color-accent-2); }
    .news-list-wide .item {
        display: flex;
    }
    .news-list-wide .item .img-container {
        width: 30%;
    }
    .news-list-wide .item .title {
        width: 70%;
        border: none;
    }
}
@media (max-width: 390px) {
    .news-list-wide .item { flex-direction: column; }
    .news-list-wide .item .img-container { width: 100% !important; margin-bottom: var(--size-08); }
    .news-list-wide .item .title { width: 100% !important; }
}

/* news columns */
.news-columns .body {
    display: grid;
    column-gap: var(--size-1);
    row-gap: var(--size-1);
    grid-template-columns: repeat(3, 1fr);
}
.news-columns.news-columns-2 .body {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
    .news-columns .body, .news-columns.news-columns-2 .body { grid-template-columns: 1fr; }
}
.news-columns .item { position: relative; }
.news-columns .item:after {
    position: absolute;
    bottom: 0px;
    content: "";
    background: var(--theme-color-accent);
    background: linear-gradient(0deg, var(--theme-color-accent) 0%, var(--theme-color-accent-full-transparent) 85%);
    width: 100%;
    height: 30%;
    z-index: 0;
}
.news-columns .item .title {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: calc(100% - 10px);
    color: var(--color-white);
    border-color: var(--color-white);
    z-index: 1;
}
.news-columns .item .title a,
.news-columns .item:hover .title,
.news-columns .item:hover .title a,
.news-columns .item:hover .title .meta { color: var(--color-white) !important; }

/* text carousel */
.text-carousel .section-title h5 { position: relative; }
.text-carousel .section-title h5 .arrows {
    position: absolute;
    left: var(--size-02);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}
.text-carousel .section-title h5 .arrows .arrow-button {
    width: var(--size-12);
    display: flex;
    height: var(--size-12);
    justify-content: center;
    align-items: center;
    margin: 0px var(--size-02);
    background-color: var(--theme-color-white);
    border-radius: 100%;
    cursor: pointer;
}
.text-carousel .section-title h5 .arrows .arrow-button:hover {
    background-color: var(--theme-color-accent);
    color: var(--theme-color-white);
}

/* quote */
.quote h3 {
    margin: var(--size-2) 0px;
    text-align: center;
    position: relative;
    font-weight: bold;
}
.quote h3 .quote-left {
    margin-right: var(--size-2);
    margin-left: var(--size-1);
    position: absolute;
    left: 0px;
    top: -10px;
}
.quote h3 .quote-right {
    margin-right: var(--size-1);
    margin-left: var(--size-2);
    position: absolute;
    right: 0px;
    bottom: -10px;
}
.quote h3 a { color: var(--theme-color-accent) !important; }
.quote p {    
    padding: var(--size-2);
    text-align: center;
    font-size: var(--size-1);
}
.quote .link {
    text-align: left;
    font-size: var(--size-08);
    padding: 0px var(--size-2);
}
.quote .link a { color: var(--theme-color-accent) !important; }

/* footer */
footer {
    background-color: var(--theme-footer-color);
    padding-top: var(--size-2);
    padding-bottom: var(--size-2);
}
footer .footer-section-title {
    background-color: var(--theme-footer-medium-color);
    color: var(--theme-footer-light-color);
    padding: var(--size-065);
    font-size: var(--size-1);
    font-weight: bold;
    position: relative;
}
footer .footer-section-title:after {
    right: 20px;
    border-top: 7px solid var(--theme-footer-medium-color);
    width: 0;
    height: 0;
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    display: block;
    bottom: -7px;
    left: 20px;
}
footer .body { margin-top: var(--size-2); }
footer ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    padding-right: var(--size-1);
}
footer .top-footer a { 
    color: var(--theme-color-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--size-08);
    font-weight: bold;
    font-size: var(--size-08);
    line-height: 1.2;
}
footer .top-footer a:hover { text-decoration: underline; }
footer .top-footer .social-list ul, footer .top-footer .social-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
footer .top-footer .social-list a {
    display: flex;
    margin: 0px var(--size-02);
    width: var(--size-2);
    height: var(--size-2);
    justify-content: center;
    align-items: center;
    font-size: var(--size-1);
    background-color: var(--theme-color-white);
    border-radius: 100%;
    color: var(--theme-footer-dark-color);
}
footer .top-footer .social-list a:hover {
    background-color: var(--theme-footer-medium-color);
    color: var(--theme-color-white);
    text-decoration: none;
}
footer .middle-footer {
    background-color: var(--theme-footer-dark-color);
    padding-top: var(--size-02);
    padding-bottom: var(--size-02);
}
footer .middle-footer ul { 
    display: flex;
    flex-wrap: wrap;
}
footer .middle-footer ul a {
    display: block;
    margin-left: var(--size-1);
    padding: 9px 15px;
    border-radius: 3px;
    color: var(--theme-color-white);
    font-size: var(--size-08);
    line-height: 1;
}
footer .middle-footer ul a:hover, footer .middle-footer ul a.active {
    background-color: var(--theme-footer-medium-color);
    text-decoration: none;
}
footer .bottom-footer { padding-top: var(--size-2); }
footer .bottom-footer p {
    color: var(--theme-color-white);
    font-size: var(--size-08);
    line-height: 1.2;
    margin: 0px;
}
footer .bottom-footer p a {
    color: var(--theme-color-white);
    text-decoration: underline;
}
#back-to-top {
    position: fixed;
    bottom: 0px;
    right: 40px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-color-white);
    text-decoration: none;
    background-color: var(--theme-color-accent);
    border: 1px solid var(--theme-color-dark-gray);
    border-radius: 5px;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
}
#back-to-top.show {
    bottom: 100px;
    opacity: 1;
    visibility: visible;
}
#back-to-top:hover {
    background-color: var(--theme-color-accent-2);
}

/* page bar */
.page-bar {
    background-color: var(--theme-color-gray);
    padding: var(--size-05) 0px;
    margin-bottom: var(--size-1);
}
.page-bar h1 { 
    margin: 0px;
    font-size: var(--size-12);
    font-weight: bold;
}
.page-bar ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: end;
}
.page-bar ul li { margin: 0px var(--size-05); }
.page-bar ul li.sep { margin: 0px var(--size-02); }
.page-bar ul li a {
    color: var(--theme-color-black);
    font-size: var(--size-08);
}
.page-bar ul li .icon { font-size: var(--size-08); }
.page-bar ul li a:hover { color: var(--theme-color-accent); }

/* article listing paging */
.articles-list-paging {
    margin-top: var(--bs-gutter-x);
}
.articles-list-paging .body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--size-1);
    row-gap: var(--size-1);
}
@media (max-width: 768px) {
    .articles-list-paging .body {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 530px) {
    .articles-list-paging .body {
        grid-template-columns: repeat(1, 1fr);
    }
}
.articles-list-paging .footer, .video-list-paging .footer {
    text-align: center;
    padding: var(--size-2) 0px;
}
.articles-list-paging .footer .btn, .video-list-paging .footer .btn {
    font-size: var(--size-1);
    padding: var(--size-05) var(--size-1);
}

/* content side bar */
.content-sidebar {
    height: calc(100% - 2 * var(--bs-gutter-x));
    margin-top: var(--bs-gutter-x);
    background-color: var(--theme-color-gray);
    margin-bottom: var(--bs-gutter-x);
    padding: var(--bs-gutter-x);
}

/* content page */
.content-section {
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
}
.content-title {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: var(--bs-gutter-x);
}
.content-subtitle {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: var(--bs-gutter-x);
}
.content-title .meta {
    display: block;
    font-size: var(--size-08);
    margin-bottom: var(--size-08);
    color: var(--theme-color-accent);
}

/* share widget */
.share-widget {
    margin-top: var(--size-05);
    margin-bottom: var(--size-05);
}
.share-widget ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: end;
    align-items: center;
}
.share-widget ul li {
    margin: 0px var(--size-065);
}
.share-widget ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-color-accent);
    width: 32px;
    height: 32px;
    border-radius: 100%;
}
.share-widget ul li a:hover {
    background-color: var(--theme-color-accent-2);
    color: var(--color-white);
    text-decoration: none;
}

/* content image */
.content-img-container {
    margin-top: var(--size-05);
    margin-bottom: var(--size-05);
}
.content-img-container a,
a.popup-gallery {
    display: block;
    overflow: hidden;
    position: relative;
}
.content-img-container a img {
    max-width: 100%;
    transition: all 0.5s;
}
.content-img-container a:hover img {
    transform: scale(1.1);
}
.content-img-container a .icon,
a.popup-gallery .icon {
    position: absolute;
    opacity: 0.4;
    top: calc(100% - var(--size-2));
    left: calc(100% - var(--size-2));
    transform: translate(-50%, -50%);
    font-size: var(--size-1);
    transition: all 0.5s;
    z-index: 1;
    color: var(--color-white);
}
.content-img-container a:hover .icon,
a.popup-gallery:hover .icon {
    opacity: 1;
    font-size: var(--size-2);
    top: 50%;
    left: 50%;
}
.content-img-container a:after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.5s;
    z-index: 0;
}
.content-img-container a:hover:after {
    opacity: 1;
}
.content-img-container .content-img-caption {
    font-size: var(--size-08);
}

/* content author */
.content-author {
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
    display: flex;
    justify-content: start;
    align-items: center;
}
.content-author .author-image {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin-left: var(--size-05);
    border-radius: 100%;
    border: 3px solid var(--theme-color-accent);
}
.content-author .author-image img { 
    max-width: 100%;
    transition: all 0.5s;
}
.content-author .author-link { 
    font-weight: bold;
    color: var(--theme-color-accent);
}
.content-author .author-image:hover img {
    transform: scale(1.1);
}

/* articles tools */
.article-tools {
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
    display: flex;
    justify-content: end;
    align-items: center;
}
.article-tools a {
    display: block;
    margin: 0px var(--size-065);
    font-size: var(--size-12);
    color: var(--theme-color-accent);
}
.article-tools > span {
    font-size: var(--size-08);
    font-weight: bold;
}
.article-tools a:hover { color: var(--theme-color-accent-2); }

/* content separator */
.content-separator {
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
    border-bottom: 1px solid var(--theme-color-gray);
}

/* content intro */
blockquote.content-intro {
    margin-top: var(--size-3);
    margin-bottom: var(--size-3);
    font-weight: bold;
    font-style: italic;
    position: relative;
    padding: var(--size-1) var(--size-2);
}
blockquote.content-intro:before {
    content: "\f10d";
    font-family: FontAwesome;
    font-size: 30px;
    color: var(--theme-color-accent);
    position: absolute;
    left: 0px;
    top: -30px;
    font-style: normal;
}
blockquote.content-intro:after {
    content: "\f10e";
    font-family: FontAwesome;
    font-size: 30px;
    color: var(--theme-color-accent);
    position: absolute;
    right: 0px;
    bottom: -30px;
    font-style: normal;
}

/* content container */
.content-container {
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
    line-height: 1.8;
    font-size: var(--size-1);
    text-align: justify;
    font-family: var(--alt-font-family);
}
.content-container br {
    margin-bottom: var(--size-1);
    display: block;
    width: 100%;
    content: "";
}

/* content gallery */
.content-album {
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
}
.popup-gallery {
    display: block;
    overflow: hidden;
    position: relative;
}
.popup-gallery:after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color-black);
    opacity: 0;
    transition: opacity 0.5s;
}
.popup-gallery img {
    transition: all 0.5s;
    max-width: 100%;
}
.popup-gallery:hover img {
    transform: scale(1.1);
}
.popup-gallery:hover:after { opacity: 0.7; }

/* tag cloud */
.tag-cloud {
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
}
.tag-cloud ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
}
.tag-cloud ul li {
    margin: var(--size-05) var(--size-05);
}
.tag-cloud ul li a {
    display: block;
    color: var(--theme-color-accent);
    background-color: var(--theme-color-gray);
    padding: var(--size-02) var(--size-05);
    border-radius: 10px;
}
.tag-cloud ul li a:hover {
    background-color: var(--theme-color-accent-2);
    color: var(--theme-color-white);
    text-decoration: none;
}

/* contact page */
.contact-page h4 {
    color: var(--theme-color-accent);
    font-weight: bold;
    margin-bottom: var(--bs-gutter-x);
}
.map {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: var(--bs-gutter-x);
}
.contact-item {
    margin-bottom: var(--bs-gutter-x);
    display: flex;
    justify-content: start;
    align-items: start;
}
.contact-item .icon {
    margin-left: var(--bs-gutter-x);
    font-size: var(--size-12);
    color: var(--theme-color-accent);
}
.contact-item h6 {
    margin-bottom: var(--bs-gutter-x);
    font-weight: bold;
    color: var(--theme-color-accent);
    font-size: var(--size-12);
}
.contact-item p strong {
    display: inline-block;
    margin-left: var(--size-05);
}
.contact-item .contact-social {
    display: flex;
    justify-content: start;
    align-items: center;
}
.contact-item .contact-social a {
    margin: 0px var(--size-05);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: var(--size-12);
    border-radius: 100%;
    background-color: var(--theme-color-accent);
    color: var(--color-white);
}
.contact-item .contact-social a:hover { background-color: var(--theme-color-accent-2); }

/* input form */
.input-form .input-group {
    margin-bottom: var(--size-1);
    position: relative;
    display: flex;
}
.input-form .input-group .input-group-label {
    width: 40px;
    height: 40px;
    background-color: var(--theme-color-light-gray);
    border: 1px solid var(--theme-color-gray);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-color-dark-gray);
}
.input-form .input-group .input-group-field {
    height: 40px;
    border: 1px solid var(--theme-color-gray);
    font-size: var(--size-1);
    color: var(--theme-color-dark-gray);
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    width: calc(100% - 40px);
    padding: 0px var(--size-1);
}
.input-form .input-group textarea {
    border: 1px solid var(--theme-color-gray);
    font-size: var(--size-1);
    color: var(--theme-color-dark-gray);
    border-radius: 4px;
    padding: var(--size-1);
    width: 100%;
    min-height: 200px;
}
.input-group .err {
    position: absolute;
    font-size: var(--size-065);
    color: var(--color-danger-red);
    font-weight: bold;
    top: 6px;
    left: 15px;
}
.input-group {
    position: relative;
    margin-bottom: var(--size-1);
}
.input-form label, .control-label { font-weight: bold; }

/* author page */
.authror-page .header {
    display: flex;
    margin-bottom: var(--bs-gutter-x);
    justify-content: start;
    align-items: start;
}
.authror-page .header .author-img-container {
    width: 150px;
    height: 150px;
    margin-left: var(--bs-gutter-x);
    padding: var(--size-05);
    border: 1px solid var(--theme-color-dark-gray);
    background-color: var(--theme-color-gray);
}
.authror-page .header .author-img-container img {
    max-width: 100%;
    height: unset !important;
}
.authror-page .header .author-content {
    width: calc(100% - 150px - var(--size-05));
}
.authror-page .header .author-content h2 {
    color: var(--theme-color-accent);
    font-weight: bold;
    margin-bottom: var(--bs-gutter-x);
    padding-bottom: var(--size-1);
    border-bottom: 2px solid var(--theme-color-accent);
}
.authror-page .header .author-content h2 small {
    display: block;
    font-weight: normal;
    font-size: var(--size-12);
    color: var(--theme-color-dark-gray);
}
.author-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--size-1);
    row-gap: var(--size-1);
    margin-top: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-x);
}
.author-articles .item {
    padding: var(--size-1);
}
.author-articles .item .title {
    font-weight: bold;
    color: var(--theme-color-accent);
}
.author-articles .item .title .meta {
    display: block;
    font-size: var(--size-065);
    margin-bottom: var(--size-02);
    font-weight: normal;
    color: var(--theme-color-dark-gray);
}
.author-articles .item:nth-child(4n+1), .author-articles .item:nth-child(4n+4) {
    background-color: var(--theme-color-light-gray);
}
@media (max-width: 768px) {
    .author-articles { grid-template-columns: repeat(1, 1fr); }
    .author-articles .item:nth-child(4n+1), .author-articles .item:nth-child(4n+4) { background-color: unset; }
    .author-articles .item:nth-child(odd) { background-color: var(--theme-color-light-gray); }
}
@media (max-width: 550px) {
    .authror-page .header { flex-direction: column; }
    .authror-page .header .author-img-container { margin-bottom: var(--bs-gutter-x); }
    .authror-page .header .author-content { width: 100%; }
}

/* video center page */
.video-list-paging .body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--size-05);
    row-gap: var(--size-05);
}

/* most read */
.most-read .body .item a {
    display: flex;
    margin-bottom: var(--size-05);
    padding: var(--size-05);
}
.most-read .body .item:nth-child(odd) a { background-color: var(--theme-color-white); }
.most-read .body .item a .icon {
    margin-left: var(--size-05);
    font-weight: bold;
}

.articles-list-paging.authror-list-page .body {
    grid-template-columns: repeat(4,1fr);
}
@media (max-width: 768px) {
    .articles-list-paging.authror-list-page .body {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 530px) {
    .articles-list-paging.authror-list-page .body {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 320px) {
    .articles-list-paging.authror-list-page .body {
        grid-template-columns: repeat(1, 1fr);
    }
}

.aliwaa-pager {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
}
.aliwaa-pager a {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background-color: #ebebeb;
    border: 1px solid #ccc;
}
.aliwaa-pager li:first-child a {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.aliwaa-pager li:last-child a {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.aliwaa-pager li.active a, .aliwaa-pager a:hover {
    background-color: #1e4484;
    color: #fff;
}
.authror-list-page .search-popup-inner .btn {
    margin-left: 0px;
}