/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #222222;
}

/* Prevent content jump */
body.has-sticky-nav {
  padding-top: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  color: #003488;
}

a {
  color: #0356b5;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: rgb(2.1684782609, 62.1630434783, 130.8315217391);
}

.section-title,
.archive-header {
  border-bottom: 2px solid #003488;
}
.section-title h3,
.section-title .archive-title,
.archive-header h3,
.archive-header .archive-title {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Merriweather", serif;
  color: #ffffff;
  background-color: #003488;
  padding: 5px 8px;
  margin-bottom: 0;
}

header {
  background-color: #ffffff;
  /* Navmenu - Desktop */
  /* Navmenu - Mobile */
}
header .top-header {
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}
header .top-header .float-left {
  margin: 0;
  padding: 0;
}
header .top-header .float-left li {
  list-style: none;
  display: inline-block;
  position: relative;
}
header .top-header .float-left li span {
  display: inline-block;
  padding: 10px;
}
header .top-header .float-left li:first-child span {
  padding-left: 0;
}
header .top-header .float-left li:after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  right: 0;
  width: 1px;
  background: #ccc;
}
header .top-header .float-left li:last-child:after {
  display: none;
}
header .top-header .float-right {
  margin: 0;
  padding: 0;
}
header .top-header .float-right li {
  list-style: none;
  display: inline-block;
}
header .top-header .float-right li a {
  color: #222222;
  padding: 10px;
}
header .top-header .float-right li:first-child a {
  padding-left: 0;
}
header .middle-header {
  transition: all 0.3s ease;
}
header .middle-header .logo img {
  width: auto;
  height: 120px;
}
header .middle-header .logo .sitename {
  font-size: 20px;
}
header .middle-header .logo .sitename a {
  text-decoration: none;
  color: #222222;
}
header .nav-wrap {
  position: relative;
  width: 100%;
  z-index: 999;
  background: #003488;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  header .navmenu {
    padding: 0;
  }
  header .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  header .navmenu li {
    position: relative;
  }
  header .navmenu a,
  header .navmenu a:focus {
    color: #ffffff;
    padding: 18px 15px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  header .navmenu a i,
  header .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  header .navmenu li:hover > a,
  header .navmenu .active,
  header .navmenu .active:focus {
    color: #ffffff;
    background: rgb(0, 32.5, 85);
  }
  header .navmenu .dropdown ul {
    margin: 0;
    background: #003488;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  header .navmenu .dropdown ul li {
    min-width: 200px;
  }
  header .navmenu .dropdown ul a {
    padding: 13px 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
  }
  header .navmenu .dropdown ul a i {
    font-size: 14px;
  }
  header .navmenu .dropdown ul a:hover,
  header .navmenu .dropdown ul .active:hover,
  header .navmenu .dropdown ul li:hover > a {
    color: #ffffff;
    background: rgb(0, 32.5, 85);
  }
  header .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  header .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  header .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  header .mobile-nav-toggle {
    background-color: rgb(0, 42.25, 110.5);
    color: #ffffff;
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.2s;
  }
  header .mobile-nav-toggle:hover {
    background-color: rgb(0, 32.5, 85);
    color: #ffffff;
  }
  header .navmenu {
    padding: 0;
    z-index: 9997;
  }
  header .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    margin: 0;
    padding: 20px;
    border-radius: 6px;
    background-color: #003488;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  header .navmenu a,
  header .navmenu a:focus {
    color: #ffffff;
    padding: 10px 20px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  header .navmenu a i,
  header .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgb(0, 42.25, 110.5);
  }
  header .navmenu a i:hover,
  header .navmenu a:focus i:hover {
    background-color: rgb(0, 32.5, 85);
    color: #ffffff;
  }
  header .navmenu a:hover,
  header .navmenu .active:focus i,
  header .navmenu .active:focus {
    color: #ffffff;
  }
  header .navmenu .active i,
  header .navmenu .active:focus i {
    background-color: rgb(0, 32.5, 85);
    color: #ffffff;
    transform: rotate(180deg);
  }
  header .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    margin: 0 20px;
    padding: 0;
    background-color: rgb(0, 42.25, 110.5);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  header .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  header .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}
header .search-form {
  position: relative;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
header .search-form .form-control {
  border: 1px solid #ffffff;
  padding: 7px 40px 7px 15px;
  background: #ffffff;
  transition: 0.3s;
  color: #222222;
  font-size: 14px;
  border-radius: 50px;
}
header .search-form .form-control:placeholder {
  color: #222222;
}
header .search-form .form-control:focus {
  border-color: #ffffff;
  box-shadow: none;
}
header .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: 0;
  color: #444444;
  transition: 0.3s;
}
header .search-form button:hover {
  color: #333333;
}

.header.scrolled .top-header,
.header.scrolled .middle-header {
  display: none;
}
.header.scrolled .nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  position: absolute;
  font-size: 32px;
  top: 15px;
  right: 15px;
  margin-right: 0;
  z-index: 9999;
}
.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: rgba(33, 37, 41, 0.8);
  transition: 0.3s;
}
.mobile-nav-active .navmenu > ul {
  display: block;
}

.breaking-news .breaking-title {
  font-size: 14px;
  color: #ffffff;
  background: #e61b0c;
  padding: 5px 8px;
  text-transform: uppercase;
  margin-right: 15px;
  white-space: nowrap;
}
.breaking-news .breaking-swiper {
  flex: 1;
}
.breaking-news .breaking-swiper a {
  color: #003488;
  text-decoration: none;
}

/* Breaking News Navigation buttons */
.breaking-nav {
  display: flex;
  gap: 5px;
  margin-left: 15px;
  margin-top: 22px;
}

.breaking-prev,
.breaking-next {
  position: static;
  width: 25px;
  height: 25px;
  background: #003488;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
.breaking-prev svg,
.breaking-next svg {
  color: #ffffff;
  width: 6px;
  height: auto;
}

.featured-post .blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.featured-post .blog-grid .blog-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, #222222, transparent 90%);
  background-color: #ccc;
}
.featured-post .blog-grid .blog-item:hover img {
  transform: scale(1.05);
}
.featured-post .blog-grid .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, #222222, transparent 10%) 0%, transparent 100%);
}
.featured-post .blog-grid .blog-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}
.featured-post .blog-grid .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, color-mix(in srgb, #222222, transparent 20%) 0%, transparent 100%);
  transition: background 0.3s ease-in-out;
}
.featured-post .blog-grid .blog-item .blog-content .post-category {
  font-size: 14px;
  padding: 3px 8px;
  color: #ffffff;
  background-color: #e61b0c;
  border-radius: 4px;
}
.featured-post .blog-grid .blog-item .blog-content .post-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}
.featured-post .blog-grid .blog-item .blog-content .post-title a {
  color: #ffffff;
}
.featured-post .blog-grid .blog-item .blog-content .post-title a:hover {
  color: color-mix(in srgb, #ffffff, transparent 20%);
}
.featured-post .blog-grid .blog-item .blog-content .post-date {
  color: #ffffff;
  font-size: 14px;
}
.featured-post .blog-grid .blog-item .blog-content .post-date i {
  margin-right: 5px;
}
.featured-post .blog-grid .blog-item.featured {
  grid-column: span 8;
}
.featured-post .blog-grid .blog-item.featured .post-title {
  font-size: 2rem;
}
.featured-post .blog-grid .blog-item:not(.featured) {
  grid-column: span 4;
}

@media (max-width: 991px) {
  .featured-post .blog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .featured-post .blog-grid .blog-item.featured {
    grid-column: span 6;
  }
  .featured-post .blog-grid .blog-item:not(.featured) {
    grid-column: span 3;
  }
}
@media (max-width: 768px) {
  .featured-post .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .featured-post .blog-grid .blog-item.featured {
    grid-column: span 1;
  }
  .featured-post .blog-grid .blog-item.featured .post-title {
    font-size: 1.5rem;
  }
  .featured-post .blog-grid .blog-item:not(.featured) {
    grid-column: span 1;
  }
}
.latest-trending .news-large .news-thumb {
  overflow: hidden;
}
.latest-trending .news-large .news-thumb:hover img {
  transform: scale(1.05);
}
.latest-trending .news-large .news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.latest-trending .news-large .post-title {
  font-size: 2rem;
}
.latest-trending .news-large p {
  margin-bottom: 8px;
}
.latest-trending .news-large .post-date {
  font-size: 13px;
  color: #777;
}
.latest-trending .news-item .news-thumb {
  width: 120px;
  height: 80px;
  overflow: hidden;
}
.latest-trending .news-item .news-thumb:hover img {
  transform: scale(1.05);
}
.latest-trending .news-item .news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.latest-trending .news-item .news-content {
  flex: 1;
}
.latest-trending .news-item .news-content .post-title {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
.latest-trending .news-item .news-content .post-date {
  font-size: 13px;
  color: #777;
}

.news_layout-1 .news-thumb {
  overflow: hidden;
}
.news_layout-1 .news-thumb:hover img {
  transform: scale(1.05);
}
.news_layout-1 .news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}
.news_layout-1 .news-content .post-title {
  font-size: 1.2rem;
}
.news_layout-1 .news-content .post-date {
  font-size: 13px;
  color: #777;
}

.news_layout-2 .news-item .post-thumb,
.related-posts .news-item .post-thumb,
.archive-page .news-item .post-thumb,
.index-page .news-item .post-thumb,
.search-results .news-item .post-thumb {
  overflow: hidden;
}
.news_layout-2 .news-item .post-thumb:hover img,
.related-posts .news-item .post-thumb:hover img,
.archive-page .news-item .post-thumb:hover img,
.index-page .news-item .post-thumb:hover img,
.search-results .news-item .post-thumb:hover img {
  transform: scale(1.05);
}
.news_layout-2 .news-item .post-thumb img,
.related-posts .news-item .post-thumb img,
.archive-page .news-item .post-thumb img,
.index-page .news-item .post-thumb img,
.search-results .news-item .post-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}
.news_layout-2 .news-item .news-content,
.related-posts .news-item .news-content,
.archive-page .news-item .news-content,
.index-page .news-item .news-content,
.search-results .news-item .news-content {
  padding-top: 10px;
}
.news_layout-2 .news-item .news-content .post-title,
.related-posts .news-item .news-content .post-title,
.archive-page .news-item .news-content .post-title,
.index-page .news-item .news-content .post-title,
.search-results .news-item .news-content .post-title {
  font-size: 1.2rem;
}
.news_layout-2 .news-item .news-content .post-date,
.related-posts .news-item .news-content .post-date,
.archive-page .news-item .news-content .post-date,
.index-page .news-item .news-content .post-date,
.search-results .news-item .news-content .post-date {
  font-size: 13px;
  color: #777;
}

.news_layout-3 .news-large .news-thumb {
  overflow: hidden;
}
.news_layout-3 .news-large .news-thumb:hover img {
  transform: scale(1.05);
}
.news_layout-3 .news-large .news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.news_layout-3 .news-large .post-title {
  font-size: 2rem;
}
.news_layout-3 .news-large p {
  margin-bottom: 8px;
}
.news_layout-3 .news-large .post-date {
  font-size: 13px;
  color: #777;
}
.news_layout-3 .news-item .news-thumb {
  width: 120px;
  height: 80px;
  overflow: hidden;
}
.news_layout-3 .news-item .news-thumb:hover img {
  transform: scale(1.05);
}
.news_layout-3 .news-item .news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.news_layout-3 .news-item .news-content {
  flex: 1;
}
.news_layout-3 .news-item .news-content .post-title {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
.news_layout-3 .news-item .news-content .post-date {
  font-size: 13px;
  color: #777;
}

.featured-videos .video-card {
  background: #fff;
}
.featured-videos .video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}
.featured-videos .video-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-videos .video-thumb .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}
.featured-videos .video-thumb:hover img {
  transform: scale(1.05);
}
.featured-videos .video-thumb:hover .play-icon {
  background: rgba(0, 0, 0, 0.35);
}
.featured-videos .video-content {
  padding-top: 10px;
}
.featured-videos .video-content .video-title {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
}
.featured-videos .video-content .video-date {
  font-size: 13px;
  color: #777;
}

.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-404 h1 {
  font-size: 120px;
}
.error-404 .error-search input {
  max-width: 420px;
}
.error-404 .error-search button {
  background: #003488;
  border: none;
}
.error-404 .error-search button:hover {
  background: rgb(0, 32.5, 85);
}
.error-404 .error-actions .btn {
  color: #ffffff;
  background: #003488;
}
.error-404 .error-actions .btn:hover {
  background: rgb(0, 32.5, 85);
}

.post-meta {
  font-size: 14px;
  color: #777;
}

.post-body p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.author-box {
  background: #f8f9fa;
  border-radius: 6px;
}

.related-item h6 a {
  color: #000;
  text-decoration: none;
}
.related-item h6 a:hover {
  color: #d60000;
}

.archive-pagination {
  display: flex;
  justify-content: center;
}
.archive-pagination .nav-links .page-numbers {
  color: #ffffff;
  background: #0356b5;
  padding: 5px 8px;
}
.archive-pagination .nav-links .page-numbers:hover {
  background: rgb(0, 32.5, 85);
}
.archive-pagination .nav-links .current {
  background: rgb(0, 32.5, 85);
}

.trending .news-item .news-thumb,
.latest-news .news-item .news-thumb {
  width: 120px;
  height: 80px;
  overflow: hidden;
}
.trending .news-item .news-thumb:hover img,
.latest-news .news-item .news-thumb:hover img {
  transform: scale(1.05);
}
.trending .news-item .news-thumb img,
.latest-news .news-item .news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.trending .news-item .news-content,
.latest-news .news-item .news-content {
  flex: 1;
}
.trending .news-item .news-content .post-title,
.latest-news .news-item .news-content .post-title {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
.trending .news-item .news-content .post-date,
.latest-news .news-item .news-content .post-date {
  font-size: 13px;
  color: #777;
}

.gallery {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

/* 2 Columns */
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* 3 Columns */
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* 4 Columns */
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Gallery Images */
.gallery img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr !important;
  }
}
footer {
  text-align: center;
  color: #222222;
  background-color: #f8f8f8;
}
footer .footer-top {
  padding: 20px 0;
}
footer .footer-top .footer-logo .sitename {
  font-size: 1.5rem;
  color: #222222;
}
footer .footer-top .footer-logo img {
  width: 80%;
}
footer .footer-top .footer-contact h1,
footer .footer-top .footer-contact h2,
footer .footer-top .footer-contact h3,
footer .footer-top .footer-contact h4,
footer .footer-top .footer-contact h5,
footer .footer-top .footer-contact h6 {
  color: #003488;
  font-family: "Inter", sans-serif;
}
footer .footer-top .footer-contact p {
  margin-bottom: 5px;
}
footer .footer-top .footer-info p {
  margin-bottom: 5px;
}
footer .copyright {
  font-size: 14px;
  background: #003488;
  padding: 15px 0;
}
footer .copyright .copyright-text {
  color: #ffffff;
}
footer .copyright .copyright-text p {
  margin: 0;
}
footer .copyright .footer-nav ul {
  margin: 0;
  padding: 0;
}
footer .copyright .footer-nav ul li {
  list-style: none;
  display: inline-block;
}
footer .copyright .footer-nav ul li a {
  color: #eee;
  padding: 5px;
}
footer .copyright .footer-nav ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 767px) {
  footer .footer-top .footer-logo img {
    width: 50%;
  }
}/*# sourceMappingURL=main.css.map */