/*--------------------------------------------------------------
# Font Family
--------------------------------------------------------------*/
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Gilroy-Medium";
  src: local("Gilroy Medium"), local("Gilroy-Medium"),
    url("../fonts/gilroy/Gilroy-Medium.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Medium.woff") format("woff"),
    url("../fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: local("Gilroy Bold"), local("Gilroy-Bold"),
    url("../fonts/gilroy/Gilroy-Bold.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Bold.woff") format("woff"),
    url("../fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy-Heavy";
  src: local("Gilroy Heavy"), local("Gilroy-Heavy"),
    url("../fonts/gilroy/Gilroy-Heavy.woff2") format("woff2"),
    url("../fonts/gilroy/Gilroy-Heavy.woff") format("woff"),
    url("../fonts/gilroy/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Inter", sans-serif; */
  font-family: "Gilroy", sans-serif;
  position: relative;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

li {
  list-style: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Common CSS
--------------------------------------------------------------*/
/* section {
  margin-bottom: 100px;
} */

@media (min-width: 1200px) {
  .container {
    max-width: 1200px !important;
    /* or whatever value you prefer */
  }

  .container-header {
    margin: 0 auto;
    padding: 0px 15px;
    max-width: 1400px !important;
    /* or whatever value you prefer */
  }
}

.section-head {
  border-bottom: 5px solid #0084ff;
  padding-bottom: 14px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.section-head h2 {
  color: #0084ff;
  font-family: Gilroy-Bold;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.arrow-container {
  width: 100px;
}

.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  z-index: 999 !important;
}

.swiper-button-next {
  width: 40px !important;
  height: 40px !important;
  right: 0px !important;
  z-index: 999 !important;
}

.article-card {
  background-color: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.article-card .img-block {
  /* height: 216px; */
  aspect-ratio: 16 / 9;
  height: 100%;
}

.article-card .text-block {
  padding: 23px 13px 23px 23px;
}

.btn {
  border-radius: 7px;
  padding: 8px 12px 6px;
  border: 1px solid #0084ff;
  color: #0084ff;
  text-align: center;
  font-family: Gilroy-Bold;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0px;
  width: max-content;
  text-transform: uppercase;
}

.btn.active {
  background-color: #0084ff;
  color: #fff;
}

.article-page .btn.active {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.article-card .text-block .category-btn {
  border-radius: 7px;
  background: #0084ff;
  color: #fff;
  padding: 10px 20px 8px;
  border: none;
  color: #fff;
  text-align: center;
  font-family: Gilroy-Medium;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-card .text-block p {
  margin: 0;
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 75px;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .article-card .text-block p {
    min-height: auto;
  }

  /* section {
    margin-bottom: 20px;
  } */
  .hero-section {
    margin-bottom: 20px !important;
  }

  .section-head h2 {
    font-size: 20px !important;
  }

  .arrow-container {
    display: none;
  }

  .section-head {
    padding-bottom: 8px;
    margin-bottom: 14px;
    align-items: center;
  }

  .event-section .section-head {
    margin-bottom: 5px;
  }

  .featured-list .section-head {
    margin-bottom: 0px;
  }

  .section-head p {
    display: block;
    color: #555;
    text-align: right;
    font-family: Gilroy-Medium;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
  }

  .article-card .img-block {
    /* height: 124px; */
    aspect-ratio: 16 / 9;
    height: 100%;
  }

  .article-card .text-block {
    padding: 7px 20px 11px 11px;
  }

  .article-card .text-block .category-btn {
    border-radius: 4px;
    padding: 8px 6px;
    font-size: 12px;
    margin-bottom: 7px;
  }

  .article-card .text-block p {
    font-size: 14px;
    min-height: 51px;
  }

  .category-btn-solid {
    height: 39px;
  }

  .category-btn-outline {
    height: 39px;
  }
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
  background-color: #0084ff;
  height: 60px;
}

#searchInput {
  width: 280px;
  border-radius: 6px !important;
}

.navbar .search-icon {
  position: absolute;
  top: 1px;
  right: 0px;
}

.navbar .search-icon button {
  background: #ffffffd6;
  border: none;
  height: 36px;
  width: 38px;
  border-radius: 6px;
}

.navbar .nav-link {
  color: #fff;
}

.navbar .navbar-nav {
  gap: 20px;
}

.navbar .nav-item .dropdown-menu .dropdown-menu-container {
  padding: 30px;
  display: flex;
  gap: 50px;
}

.navbar .nav-item .dropdown-menu .drop-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.navbar .nav-item .dropdown-menu a {
  padding: 0px;
}

.navbar .nav-item .dropdown-menu a img {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #fff;
}

.navbar .nav-item .dropdown-menu a p {
  color: #000;
  font-family: Gilroy-Medium;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 169.5%;
  /* 30.51px */
  text-transform: capitalize;
  margin: 0;
}

.dropdown-toggle::after {
  display: none !important;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0px 10px;
    height: 60px;
  }

  .navbar .navbar-brand {
    margin: 0px;
  }

  .navbar .navbar-brand img {
    height: 40px;
  }

  .navbar .navbar-toggler {
    padding: 0px;
  }
}

/*--------------------------------------------------------------
# Mobile Navbar Sidebar
--------------------------------------------------------------*/
.mobile-sidebar {
  background-color: #0084ff !important;
}

.mobile-sidebar .sidebar-category {
  background-color: #fff;
  border-radius: 0px 15px 15px 0px;
  padding: 14px 0px;
}

.mobile-sidebar .sidebar-category .accordion-item {
  border: none;
}

.accordion-button {
  background-color: #fff !important;
  box-shadow: none !important;
  padding: 8px 36px 8px 16px;
}

.accordion-button:focus {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #fff;
}

.accordion-body {
  padding-left: 40px !important;
}

.accordion-collapse {
  background-color: #f5f5f5;
}

.mobile-sidebar .sidebar-category ul {
  padding: 0;
  margin: 0;
}

.mobile-sidebar .sidebar-category ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: #555;
}

.accordion-button img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 17px;
}

.accordion-button.btn-hide:not(.collapsed)::after,
.accordion-button.btn-hide::after {
  background-image: unset !important;
}

.mobile-sidebar .sidebar-category .accordion-button {
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 169.5%;
  text-transform: capitalize;
  margin: 0%;
}

.mobile-sidebar .sidebar-links {
  margin-top: 25px;
  margin-bottom: 40px;
  /* padding-left: 8px; */
}

.mobile-sidebar .sidebar-links p {
  color: #fff;
  font-family: Gilroy-Medium;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.mobile-sidebar .copyright {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: Gilroy-Medium;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.14px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.mobile-sidebar .copyright a {
  color: rgba(255, 255, 255, 0.8);
}

.accordion-body ul a img {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  object-fit: cover;
  margin-right: 5px;
}

.accordion-body ul a li {
}

/*--------------------------------------------------------------
# Category Bar
--------------------------------------------------------------*/
.category-bar {
  padding: 14px 0 10px 0px;
}

.category-bar .hide-scrollbar::-webkit-scrollbar {
  /*Chrome, Safari, Edge*/
  display: none;
}

.category-container {
  overflow-x: scroll;
  white-space: nowrap;
}

.category-bar ul {
  display: inline-flex;
  margin: 0px;
  /* gap: 21px; */
}

.category-bar li {
  padding: 0 10px;
}

.category-bar li img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 4px;
}

.category-bar li p {
  color: #000;
  font-family: "Gilroy-Bold";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  margin-bottom: 30px !important;
}

.hero-section .row > .col {
  padding: 0px 17px !important;
}

.heroMainSwiper {
  position: relative;
}

.heroMainSwiper .swiper {
  border-radius: 10px;
}

.heroMainSwiper .hero-main-prev {
  position: absolute;
  /* bottom: 40px;
  right: 94px; */
  top: calc(50% - 75px);
  left: 20px;
  transform: translateY(-50%);
  z-index: 999;
}

.heroMainSwiper .hero-main-next {
  position: absolute;
  /* bottom: 40px;
  right: 40px; */
  top: calc(50% - 75px);
  transform: translateY(-50%);
  right: 20px;
  z-index: 999;
}

.hero-carousel-card {
  border-radius: 10px;
  position: relative;
  /* height: 441px !important; */
  overflow-y: visible;
  aspect-ratio: 16 / 9;
}

/* .hero-carousel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46.77%, #000000 100%);
  z-index: 1;
} */

.hero-carousel-description {
  /* position: absolute;
  bottom: -120px; */
  left: 0;
  padding-top: 14px;
  padding-bottom: 20px;
  width: 100%;
  z-index: 1;
}

.category-head {
  font-weight: 600;
}

.hero-carousel-description p {
  color: #000000;
  font-family: Gilroy-Bold;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-carousel-card .category-btn {
  color: #fff;
  text-align: center;
  font-family: Gilroy-Medium;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 7px;
  background: rgba(0, 132, 255, 0.7);
  padding: 12px 20px 8px;
  margin-bottom: 14px;
  border: none;
}

.heroSmallSwiper {
  position: relative;
  margin-top: 14px;
}

.heroSmallSwiper .swiper {
  border-radius: 10px;
}

.hero-small-prev {
  position: absolute;
  top: 22%;
  z-index: 999;
  left: -22px;
}

.hero-small-next {
  position: absolute;
  top: 22%;
  z-index: 999;
  right: -22px;
}

.hero-small-card {
  /* max-width: 256px; */
  width: 100%;
}

.hero-small-img {
  width: 100%;
  /* height: 144px; */
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.hero-small-text p {
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-right: 10px;
  margin-top: 10px;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ad-block {
  /* width: 300px; */
  /* height: 250px; */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* .side-category-btn {
  margin-top: 20px;
} */
.side-category-btn .btn.active,
.side-category-btn .btn:hover {
  background-color: #0084ff;
  border-color: #0084ff;
  color: #fff;
}

.side-category-btn .btn {
  font-family: Gilroy-Bold;
  font-size: 18px;
  margin-right: 8px;
  margin-bottom: 0px;
}

.side-card {
  /* max-width: 330px; */
  width: 100%;
  gap: 10px;
  /* align-items: center; */
  padding: 20px 0 18px 0;
  border-bottom: 1px dashed #8c8c8c;
}

.side-card:last-child {
  border-bottom: none;
}

.side-card .side-card-img {
  /* max-width: 144px; */
  width: 40%;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  height: 100%;
}

.side-card .side-card-img a {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.side-card .side-card-text {
  width: 60%;
}

.side-card .side-card-text h5 {
  color: #000;
  margin: 0px;
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-card h6 {
  color: #0084ff;
  font-family: Gilroy-Bold;
  font-size: 14px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .heroSmallSwiper {
    margin-top: 20px;
  }

  .hero-carousel-card {
    /* height: 210px !important; */
  }

  .hero-section .row > .col {
    padding: 0px !important;
  }

  .hero-carousel-card {
    border-radius: 0px;
  }

  .hero-carousel-card .category-btn {
    font-size: 14px;
    padding: 8px 16px 6px 16px;
    margin-bottom: 10px;
  }

  .hero-carousel-description p {
    font-size: 18px;
  }

  .hero-carousel-description {
    /* bottom: 20px; */
    left: 20px;
    width: 280px;
  }

  .heroMainSwiper .hero-main-prev {
    /* bottom: 20px;
    right: 54px; */
    top: calc(50% - 75px);
    left: 20px;
    width: 24px;
    height: 24px;
  }

  .heroMainSwiper .hero-main-next {
    /* bottom: 20px;
    right: 20px; */
    top: calc(50% - 75px);
    right: 20px;
    width: 24px;
    height: 24px;
  }

  .heroSmallSwiper {
    padding: 0px 20px;
  }

  .heroSmallSwiper .swiper {
    border-radius: 5px;
  }

  .hero-small-img {
    /* height: 90px; */
    border-radius: 5px;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
  }

  .hero-small-next {
    width: 24px;
    height: 24px;
    right: 8px;
    top: 26%;
  }

  .hero-small-prev {
    width: 24px;
    height: 24px;
    left: 8px;
    top: 26%;
  }

  .hero-small-text p {
    font-size: 12px;
    margin-top: 5px;
  }

  .heroMainSwiper .swiper {
    border-radius: 0px;
  }

  .side-card-container {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Trending Now Section
--------------------------------------------------------------*/
.trending-section {
  margin-bottom: 100px;
}

.trendnow__container .carousel {
  display: flex;
  overflow: hidden;
  width: 1250px;
  height: 480px;
  scroll-behavior: smooth;
  align-items: end;
  position: relative;
  z-index: 9;
  margin: auto;
}

.trendnow__container .carousel__slide {
  flex: 0 0 326px;
  /* height: 354px; */
  /* height: 100%; */
  background-color: #fff;
  border-radius: 12px;
  transition: flex 0.5s, height 0.5s;
  margin-right: 15px;
  overflow: hidden;
}

.trendnow__container .carousel__slide:last-child {
  margin-right: 30px;
}

.trendnow__container .carousel__slide--big {
  flex: 0 0 450px;
  height: 480px;
  overflow: hidden;
}

.trendnow__container .carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.trendnow__container .carousel__button--prev {
  left: 20px;
}

.trendnow__container .carousel__button--next {
  right: 20px;
}

.trendnow__container .carousel__content {
  height: 100%;
}

.trendnow__container .carousel__pagination {
  display: flex;
  justify-content: center;
  margin-top: 27px;
}

.trendnow__container .carousel__pagination-dot {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 5px;
}

.trendnow__container .carousel__pagination-dot--active {
  background: #fff;
  opacity: 1;
}

.trendnow__container .content-text {
  position: relative;
  padding: 0 18px;
  /* min-height: 146px; */
  min-height: 150px;
}

.trendnow__container .content-text p {
  font-size: 20px;
  transition: all 0.5s ease;
  color: #000;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trendnow__container .content-text .category-tag {
  background: #0084ff;
  display: inline-block;
  font-family: Gilroy-Medium;
  color: #ffffff;
  border: 0;
  border-style: solid;
  margin: 14px 0;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 10px 20px 8px 20px;
  transition: all 0.4s ease;
}

.trendnow__container .content-image {
  /* height: 198px; */
  width: 100%;
  aspect-ratio: 16 / 9;
  transition: all 0.4s ease;
}

.trendnow__container .content-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.trendnow__container .carousel__slide--big img {
  height: 100%;
}

.trendnow__container .carousel__slide--big .content-image {
  height: 270px;
}

.trendnow__container .carousel__slide--big .content-image img {
  height: 100%;
}

.trendnow__container .carousel__slide--big .content-text {
  padding: 0 24px;
}

.trendnow__container .carousel__slide--big .content-text p {
  /* line-height: 32.81px; */
  font-size: 28px;
  transition: all 0.4s ease;
  color: #000;
}

.trendnow__container .carousel__slide--big .content-text .category-tag {
  background: #0084ff;
  display: inline-block;
  transition: all 0.5s ease;
  color: #ffffff;
  border: 0;
  border-style: solid;
  margin: 20px 0;
  font-size: 18px;
}

.trendnow__container .next-prev {
  position: absolute;
  display: inline-flex;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  top: 135px;
  z-index: 99;
  right: 70px;
}

@media (max-width: 768px) {
  .trending-section {
    margin-bottom: 20px;
  }

  .trendnow__container .carousel__slide {
    height: 100%;
  }

  .trendnow__container .content-text .category-tag {
    padding: 8px 16px 6px 16px;
  }

  .trendnow__container .content-text p {
    font-size: 18px;
    position: relative;
  }

  .trendnow__container .next-prev {
    top: unset;
    bottom: -16px;
    right: 0px;
    width: 100%;
    left: 0px;
  }
}

.trendnow__container .next-prev .next-button,
.trendnow__container .next-prev .prev-button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 99999;
}

.trendnow__container .next-prev .disabled {
  cursor: default;
  filter: opacity(0.5);
}

.trendnow__container .trending-block {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  translate: 100%;
  top: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 1800px) and (min-width: 1441px) {
  .trendnow__container .trending-block {
    translate: 100%;
    left: 8%;
  }
}

@media only screen and (max-width: 1440px) and (min-width: 1024px) {
  .trendnow__container .trending-block {
    translate: 80%;
  }
}

@media (max-width: 768px) {
  .trendnow__container .trending-block {
    translate: 0%;
    top: -100px;
  }
}

.trendnow__container .carousel__pagination {
  display: none;
}

@media (max-width: 768px) {
  .trendnow__container .carousel {
    width: 100%;
    /* height: 350px; */
    height: auto;
  }

  .trendnow__container .carousel__slide {
    flex: 0 0 100%;
  }

  .trendnow__container .carousel__pagination {
    display: flex;
  }
}

.trending-section-main-container {
  background: linear-gradient(
    101.91deg,
    #0084ff 4.9%,
    rgba(94, 162, 225, 0.92) 97.64%
  );
  padding: 90px 0px 30px 12px;
  border-radius: 12px;
  margin-left: 44px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .trending-section-main-container {
    padding: 120px 20px 40px 20px;
    border-radius: 0;
    margin-left: 0;
  }
}

.trending-now-with-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* padding: 40px 0; */
  align-items: end;
}

.trending-block h2 {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 46px;
  font-family: Gilroy-Bold;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .trending-block h2 {
    font-size: 36px;
  }
}

.trending-block .back-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .trending-block .back-content {
    padding-right: 10px;
    flex-direction: row-reverse;
  }
}

@media (max-width: 1024px) {
  .trending-block {
    translate: 50%;
  }
}

@media (max-width: 768px) {
  .trending-block {
    position: relative;
    flex-direction: row-reverse;
    translate: 0%;
    top: 10px;
  }
}

@media (max-width: 768px) {
  .trending-block img {
    overflow: hidden;
    top: 10px;
    position: relative;
    max-width: 154px;
    width: 100%;
    height: 98px;
  }
}

.swiper-container {
  width: 100%;
  margin: 40px 0px 40px 20px;
  padding: 45px 0px;
}

.internationalSwiper .swiper {
  border-radius: 10px;
}

.internationalSwiper.swiper-slide {
  overflow: hidden;
  transition: 0.7s;
  width: 352px !important;
}

.internationalSwiper.swiper-slide img {
  width: 100%;
}

.internationalSwiper.swiper-slide-active {
  opacity: 1;
  z-index: 1;
  width: 480px !important;
}

.trending-now-with-slider .slick-track {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  flex-direction: row-reverse;
}

.slick-slider-trending {
  width: 100%;
  height: 100%;
}

.slick-slider-trending .slick-current {
  height: 480px;
  width: 480px;
  padding-top: 0px;
}

.slick-slider-trending .slick-track {
  display: flex;
  align-items: end;
  flex-wrap: nowrap;
  height: 500px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .slick-slider-trending .slick-track {
    height: auto !important;
    margin-top: 22px;
  }
}

.slick-slider-trending .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: baseline;
  background-color: white;
  transition: all 0.3s ease;
  background: white;
  margin-right: 17px;
  border-radius: 12px;
  max-width: 352px !important;
  width: 100% !important;
  height: 352px !important;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .slick-slider-trending .slick-slide {
    margin-right: 0px;
    max-width: 100% !important;
    height: auto !important;
  }
}

.slick-slider-trending .slick-slide.slick-current,
.slick-slider-trending .slick-slide.slick-center {
  max-width: 480px !important;
  width: 100% !important;
  height: 480px !important;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .slick-slider-trending .slick-slide.slick-current,
  .slick-slider-trending .slick-slide.slick-center {
    height: auto !important;
    max-width: 100% !important;
  }
}

.trending-now-with-slider-content.slick-current
  .trending-now-with-slider-content-text
  p {
  font-size: 28px;
  line-height: 33px;
}

@media (max-width: 768px) {
  .trending-now-with-slider-content.slick-current
    .trending-now-with-slider-content-text
    p {
    font-size: 20px;
    line-height: 23px;
  }
}

.trending-now-with-slider-content.slick-current
  .trending-now-with-slider-content-text
  button {
  font-size: 18px;
}

@media (max-width: 768px) {
  .trending-now-with-slider-content.slick-current
    .trending-now-with-slider-content-text
    button {
    font-size: 14px;
  }
}

.trending-now-with-slider-content-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.next-prev {
  position: relative;
  display: inline-flex;
  z-index: 999;
}

.trending-now-with-slider-content-text button {
  padding: 13px 20px;
  font-size: 16px;
}

.trending-now-with-slider-content-text {
  padding: 18px;
  padding-top: 0;
}

.trending-now-with-slider-content-text p {
  font-weight: bold;
  line-height: 24px;
  font-size: 20px;
}

.trending-now-with-slider-content-text button {
  margin: 10px 0;
  text-transform: uppercase;
}

.trending-section-main-container .slick-slider {
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .trending-section-main-container .slick-slider {
    margin-bottom: 50px;
  }
}

.slick-slider-trending .slick-next:before,
.slick-slider-trending .slick-prev:before {
  font-size: 40px !important;
}

.slick-slider-trending .slick-prev {
  left: 90%;
  top: 70px;
}

@media (max-width: 768px) {
  .slick-slider-trending .slick-prev {
    left: 0%;
    top: 108%;
  }
}

.slick-slider-trending .slick-next {
  right: 3%;
  top: 70px;
}

@media (max-width: 768px) {
  .slick-slider-trending .slick-next {
    right: 5%;
    top: 108%;
  }
}

/*--------------------------------------------------------------
# Recent on Tech Moves Section
--------------------------------------------------------------*/
.recent-tech-moves {
  padding: 0 0px;
  overflow: visible;
}

.recent-tech-moves .recent-tech-header {
  /* border-bottom: 5px solid #0084ff; */
  padding-bottom: 14px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.recent-tech-moves .recent-tech-header h2 {
  /* color: #0084ff; */
  font-family: Gilroy-Bold;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

.recent-tech-moves .tech-nav {
  display: flex;
  gap: 27px;
  border: none;
  margin: 0;
  justify-content: center;
}

.recent-tech-moves .tech-nav button {
  color: #000000;
  font-weight: normal;
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  border: none;
  background: none;
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease;
}

.recent-tech-moves .tech-nav .active {
  color: #0084ff;
  font-family: Gilroy-Bold;
}

/* .recent-tech-moves .tech-nav .active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: #FF6B35;
  border-radius: 2px;
} */

.recent-tech-carousel {
  position: relative;
  overflow: visible;
}

.recent-tech-carousel .swiper {
  overflow: hidden;
  /* padding-bottom: 20px; */
  margin: 0;
}

.recent-tech-carousel .swiper-wrapper {
  /* padding-bottom: 10px; */
}

.recent-tech-carousel .arrow-container {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  height: 40px;
}

.recent-tech-carousel .swiper-button-prev {
  position: absolute;
  left: 20px !important;
  transform: translateX(-50%);
}

.recent-tech-carousel .swiper-button-next {
  position: absolute;
  right: 20px !important;
  transform: translateX(50%);
}

.recent-tech-carousel .swiper-button-prev,
.recent-tech-carousel .swiper-button-next {
  pointer-events: all;
  cursor: pointer;
  position: relative;
  left: auto;
  right: auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .recent-tech-carousel .swiper-button-prev:hover,
.recent-tech-carousel .swiper-button-next:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
} */

.recent-tech-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 10px;
}

.recent-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.recent-tech-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.recent-tech-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-tech-card:hover .recent-tech-img img {
  transform: scale(1.05);
}

.recent-tech-content {
  padding: 16px;
}

.recent-tech-content h3 {
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 42px;
}

.recent-tech-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  flex-wrap: nowrap;
}

.recent-tech-meta .author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent-tech-meta .author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.recent-tech-meta .author-name {
  color: #666;
  font-family: Gilroy-Medium;
  font-size: 13px;
  font-weight: 400;
}

.recent-tech-meta .post-time {
  color: #999;
  font-family: Gilroy-Medium;
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .recent-tech-moves {
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .recent-tech-moves .recent-tech-header {
    padding-bottom: 8px;
    margin-bottom: 14px;
    gap: 15px;
  }

  .recent-tech-moves .recent-tech-header h2 {
    font-size: 20px;
  }

  .recent-tech-moves .tech-nav {
    gap: 15px;
  }

  .recent-tech-moves .tech-nav button {
    font-size: 16px;
    padding: 6px 12px;
  }

  .recent-tech-carousel {
    margin: 0;
    padding: 20px 20px 30px 20px;
    overflow: visible;
  }

  .recent-tech-carousel .swiper {
    margin: 0;
  }

  .recent-tech-carousel .arrow-container {
    display: none;
  }

  .recent-tech-img {
    aspect-ratio: 16/9;
  }

  .recent-tech-content {
    padding: 12px;
  }

  .recent-tech-content h3 {
    font-size: 14px;
    min-height: 36px;
    margin-bottom: 8px;
  }

  .recent-tech-meta .author-avatar {
    width: 20px;
    height: 20px;
  }

  .recent-tech-meta .author-name {
    font-size: 11px;
  }

  .recent-tech-meta .post-time {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Campaign Coverage Section
--------------------------------------------------------------*/
.campaign-coverage {
  margin-bottom: 100px;
}

.campaign-coverage .swiper {
  border-radius: 10px;
}

/* Event Section */
.event-section {
  border-radius: 12px;
  background: linear-gradient(
    133deg,
    #0084ff 0%,
    rgba(94, 162, 225, 0.92) 100%
  );
  padding: 50px 0px 60px 0px;
  margin-bottom: 100px;
}

.event-section .swiper {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .campaign-coverage {
    margin: 36px 0px;
  }

  .latest-news {
    margin-top: 36px;
  }

  .event-section {
    border-radius: 0px;
    padding-bottom: 24px;
    padding-top: 24px;
    margin-bottom: 20px;
  }

  .event-section .section-head h2 {
    font-size: 36px !important;
  }

  .event-section .article-card .img-block {
    /* height: 189px; */
  }

  .event-section .article-card .text-block {
    padding: 24px 18px;
  }

  .event-section .article-card .text-block .category-btn {
    border-radius: 7px;
    padding: 13px 20px;
    font-size: 14px;
    margin-bottom: 11px;
  }

  .event-section .article-card .text-block p {
    font-size: 18px;
  }

  .event-section .swiper-slide {
    height: 335px;
  }

  .event-section .swiper-pagination {
    bottom: 8px !important;
  }

  .event-section .swiper-pagination .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    background-color: #fff;
    opacity: 1 !important;
  }

  .event-section .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #fff;
    opacity: 0.5;
  }

  .event-section-prev {
    left: 0 !important;
  }
}

/* Latest News */
.latest-news {
  margin-bottom: 100px;
}

.latest-news .latest-header {
  border-bottom: 5px solid #0084ff;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.latest-news .latest-header h2 {
  background-color: #0084ff;
  padding: 16px 24px 8px;
  color: #fff;
  font-family: Gilroy-Bold;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  position: relative;
  border-radius: 8px 8px 0px 0px;
}

.latest-news .latest-header ul {
  display: flex;
  /* gap: 27px; */
  border: none;
  margin: 0;
}

.latest-news .latest-header ul button {
  color: #000;
  font-weight: normal;
  font-family: "Gilroy", sans-serif;
  /* padding: 0 12px; */
}

.latest-news .latest-header ul .active {
  color: #0084ff;
  font-family: Gilroy-Bold;
}

.latest-news .content .left-section .image-box {
  width: 100%;
  /* height: 333px; */
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.latest-news .content .left-section .content-box {
  padding-top: 16px;
}

.latest-news .content .left-section .content-box h4 {
  font-family: Gilroy-Bold;
  margin: 0px;
  color: #0084ff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.latest-news .content .left-section .content-box h3 {
  font-family: Gilroy-Bold;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest-news .content .right-section .box {
  margin-bottom: 24px;
}

.latest-news .content .right-section .image-box {
  max-width: 224px;
  width: 38%;
  /* height: 126px; */
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.latest-news .content .right-section .content-box {
  /* width: auto; */
  padding-left: 14px;
  width: 62%;
  /* padding-right: 80px; */
}

.latest-news .content .right-section .content-box h4 {
  color: #0084ff;
  margin: 0px;
  font-family: Gilroy-Bold;
  font-size: 14px;
  font-style: normal;
  padding-bottom: 10px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.latest-news .content .right-section .content-box h3 {
  font-family: Gilroy-Bold;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .latest-news {
    margin-bottom: 20px;
  }

  .latest-news .content .left-section .image-box {
    /* height: 188px; */
    border-radius: 5px;
  }

  .latest-news .content .left-section .content-box {
    padding: 11px 0px;
  }

  .latest-news .content .left-section .content-box h4 {
    font-size: 14px;
    margin: 0;
  }

  .latest-news .content .right-section .content-box h4 {
    padding-bottom: 4px;
    font-size: 12px;
  }

  .latest-news .content .left-section .content-box h3 {
    margin-top: 4px;
    -webkit-line-clamp: 2;
    font-size: 18px;
  }

  .latest-news .content .right-section .content-box h3 {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .latest-news .content .right-section .image-box {
    max-width: 135px;
    width: 100%;
    height: 76px;
    aspect-ratio: 16 / 9;
    height: 100%;
  }

  .latest-news .content .right-section .content-box {
    width: 100%;
    padding-right: 10px;
  }

  .latest-news .content .right-section .box {
    margin-bottom: 17px;
  }

  .latest-news .latest-header {
    padding-bottom: 8px;
  }

  .latest-news .latest-header h2 {
    background-color: #fff;
    color: #0084ff;
    font-family: Gilroy-Bold;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    bottom: 0;
    padding: 0;
  }

  .latest-news .latest-header p {
    display: block;
    color: #555;
    text-align: right;
    font-family: Gilroy-Medium;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Fresh Section
--------------------------------------------------------------*/
.fresh-section {
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 100px;
}

.fresh-section h3 {
  color: #0084ff;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

.fresh-section .logo-list li a > div {
  width: 150px;
  height: 150px;
  overflow: hidden;
  /* padding: 12px; */
  border-radius: 10px;
}

.fresh-section .logo-list li a > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(0deg) !important;
}

.fresh-section .logo-list li a > p {
  margin-top: 14px;
  color: #000;
  text-align: center;
  width: 180px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.fresh-section .newsletter-form {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 24px;
  padding-bottom: 36px;
}

.fresh-section .newsletter-form h4 {
  color: var(--main-blue, #0084ff);
  text-align: center;
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.fresh-section .newsletter-form h5 {
  color: #000;
  text-align: center;
  font-family: Gilroy-Bold;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.fresh-section .newsletter-form form {
  padding: 8px 10px;
  border-radius: 7px;
}

.fresh-section .newsletter-form input {
  padding: 0;
  border: none;
  padding-right: 15px;
  font-size: 16px;
}

.fresh-section .newsletter-form .form-control:focus {
  box-shadow: none;
}

.fresh-section .newsletter-form button {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: "Bebas Neue", sans-serif;
  background-color: #0084ff;
  border: none;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 5px;
}

.fresh-section .social-icons {
  position: relative;
  border: 1px solid #e2e2e2;
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.social-wrapper {
  position: relative;
}

.social-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #1778f2;
  top: 50%;
}

.fresh-section .social-icons h4 {
  color: #1778f2;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

.fresh-section .social-icons ul > li {
  padding: 8px;
}

.fresh-section .social-icons ul > li > a > svg {
  border-radius: 10px;
}

.fresh-section .social-icons .youtube a {
  background-color: #f00;
  padding: 3px;
}

.newsletter-container form {
  display: flex;
}

@media (max-width: 768px) {
  .social-wrapper::before {
    display: none;
  }

  .fresh-section {
    margin-bottom: 20px;
  }

  .fresh-section h3 {
    font-size: 20px;
  }

  .fresh-section .logo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 40px !important;
  }

  .fresh-section .logo-list li {
    width: 50%;
    padding: 10px;
  }

  .fresh-section .logo-list li a > div {
    width: 90px;
    height: 90px;
    border-radius: 5px;
  }

  .fresh-section .logo-list li a > p {
    font-size: 14px;
    width: auto;
  }

  .fresh-section .newsletter-form {
    border-radius: 10px;
    padding: 15px 18px 18px 18px;
  }

  .fresh-section .social-icons {
    border-radius: 10px;
  }

  .fresh-section .social-icons .list-unstyled a {
    border-radius: 10px;
    overflow: hidden;
    width: 37.5px;
    height: 37.5px;
  }

  .fresh-section .social-icons .list-unstyled a > svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fresh-section .newsletter-form h4 {
    font-size: 16px;
  }

  .fresh-section .newsletter-form form {
    border-radius: 8px;
    padding: 6px 8px;
  }

  .fresh-section .newsletter-form input {
    font-size: 12px;
  }

  .fresh-section .newsletter-form button {
    border-radius: 4px;
    font-size: 12px;
  }

  .fresh-section .social-icons h4 {
    font-size: 16px;
    font-weight: 400;
  }
}

/*--------------------------------------------------------------
# International
--------------------------------------------------------------*/
.international {
  margin-top: 50px;
  margin-bottom: -180px;
}

.international-carousel-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%),
    lightgray 50% / cover no-repeat;
  border-radius: 10px;
  position: relative;
  /* height: 347px !important; */
  aspect-ratio: 16 / 9;
  height: 100%;
  overflow: hidden;
}

.international-carousel-description {
  bottom: 40px;
  left: 40px;
  width: 420px;
  z-index: 4;
}

.international-carousel-description p {
  color: #fff;
  font-family: Gilroy-Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.international-carousel-card .category-btn {
  color: #fff;
  text-align: center;
  font-family: Gilroy-Medium;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 7px;
  background: rgba(0, 132, 255, 0.6);
  padding: 13px 20px;
  margin-bottom: 23px;
  border: none;
}

.international .link-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.27%, #000000 100%);
  z-index: 1;
}

@media (max-width: 768px) {
  .international {
    margin-top: 0;
    margin-bottom: -110px;
  }

  .international-carousel-card {
    /* height: 197px !important; */
    aspect-ratio: 16 / 9;
    height: 100%;
  }

  .international-carousel-card .category-btn {
    font-size: 10px;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 12px;
  }

  .international-carousel-description p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .international-carousel-description {
    bottom: 18px;
    left: 18px;
    width: 250px;
  }

  .international-main-prev {
    position: absolute;
    right: 52px;
    bottom: 22px;
    width: 24px;
    height: 24px;
    z-index: 1;
  }

  .international-main-next {
    position: absolute;
    right: 20px;
    bottom: 22px;
    width: 24px;
    height: 24px;
    z-index: 1;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding-top: 210px !important;
  background-color: #0084ff;
}
.gutter-ads-wrapper.remove-top-padding ~ .footer.pt-4 {
  padding-top: 24px !important;
}

.footer .main {
  border-bottom: 1px solid #ffffff;
}

.footer .logo-wrapper .logo {
  /* height: 60px;
  width: 140px;
  object-fit: cover; */
  top: 10px;
  position: relative;
  height: 56px;
  width: 120px;
  /* object-fit: cover; */
  margin-top: -6px;
}

.footer .logo-wrapper span {
  color: #ffffffb2;
  font-size: 18px;
  font-family: Gilroy-Medium;
  text-transform: capitalize;
}

.footer .explore-wrapper ul > li {
  display: flex;
  align-items: center;
}

.footer .explore-wrapper ul > li a {
  color: #eee;
  font-size: 16px;
  font-family: Gilroy-Medium;
  text-transform: capitalize;
}

.footer .explore-wrapper ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  margin: 0 20px;
  width: 8px;
  height: 8px;
  background: #ffffff96;
  border-radius: 50%;
  vertical-align: middle;
}

.footer .form .input-group {
  position: relative;
  display: flex;
  background-color: #0576cb;
  padding: 2px;
  border-radius: 4px;
}

.footer .form .form-control {
  border-radius: 4px;
  background: #0576cb;
  flex-grow: 1;
  border: none;
  color: #fff;
}

.footer .form-control:focus {
  box-shadow: none !important;
}

.input-group input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.input-group input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.input-group input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

.footer .form .input-group-append {
  display: flex;
}

.footer .form .input-group button {
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
  background: #fff;
  height: 100%;
  padding: 0 12px;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.footer .links ul {
  gap: 34px;
  margin: 0;
}

.footer .links {
  color: #fff;
  font-size: 16px;
  font-family: Gilroy-Medium;
  letter-spacing: 0.16px;
  text-transform: capitalize;
}

.footer .logo-block {
  width: auto;
}

.footer .copyright {
  font-size: 14px;
}

/* .errInput {
  background: #ff1f35bd !important;
} */
.afterNotificationAdd p {
  color: #fff;
  font-size: 14px;
}

.afterNotificationAdd .welcome {
  display: flex;
  align-items: center;
}

.afterNotificationAdd .welcome h2 {
  font-size: 20px;
  color: #fff;
  margin: 0px 10px 0px 0px;
}

.newsletter-input-message {
  display: block;
  text-align: left;
  color: red;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 85px !important;
  }

  .footer .container-sm-fluid {
    padding-bottom: 20px !important;
  }

  .footer .links ul {
    gap: 10px;
    margin-bottom: 20px !important;
  }

  .footer .logo-block {
    width: 100%;
  }

  .footer .copyright {
    font-size: 12px;
  }

  .newsletter-input-message {
    font-size: 12px;
    margin-top: 5px !important;
  }
}

/*--------------------------------------------------------------
# Category Page
--------------------------------------------------------------*/
.category-page .cate-details .article-card {
  display: inline-block;
}

.category-page .cate-details-banner {
  height: 300px;
  /* background: linear-gradient(
    89.99deg,
    #1b0044 26.57%,
    rgba(27, 0, 68, 0) 99.99%
  ); */
  background-size: cover;
  background-repeat: no-repeat;
}

.category-page .cate-details-banner .heading {
  color: #fff;
  text-align: start;
  font-family: Gilroy-Bold;
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.5%;
  /* 20.56px */
  text-transform: uppercase;
}

.category-page .menu-item-cate-details {
  /* color: red;
  background-color: blue; */
}

.category-page li.dark-tab {
  color: #000;
  font-size: 18px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.category-page li.dark-tab.active {
  color: #8218ea;
  font-size: 18px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.category-page .top-card-cate-details {
  max-width: 387px;
  color: #1b0044;
}

.category-page .cate-card-content > h6 {
  font-family: Gilroy-Bold;
  font-size: 24px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  -webkit-line-clamp: 2;
}

.category-page .cate-meta {
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: #555555;
  margin-top: 14px;
}

.category-page .card-meta .left span {
  margin-left: 0px;
  opacity: 0.5;
}

.category-page .cate-details .cate-bar {
  margin: 40px 0px 46px 0px;
}

.category-page .cate-card {
  /* padding: 24px 24px; */
  margin-bottom: 20px;
}

.category-page .cate-btn {
  padding: 14px 0 14px 0;
  color: #7a2cf4;
  font-family: Gilroy-Bold;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.35px;
}

.category-page .cate-latest-banner {
  width: 250px;
  height: 250px;
  padding: 0px;
}

.category-page .cate-latest-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0px;
}

.category-page .aside-cate {
  padding: 30px 0px 26px 0px;
}

.category-page .line-3-cate {
  color: #000;
  font-size: 16px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* padding: 10px 0; */

  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.category-page .cate-meta-aside {
  padding: 10px 0 0 0;
}

.category-page .top-btn-cate-aside {
  color: #7a2cf4;
  font-size: 16px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
}

.category-page .aside-head-cate {
}

.category-page .aside-cate-list-wrapper {
  border-radius: 20px;
  background: linear-gradient(
    133deg,
    #0084ff 0%,
    rgba(94, 162, 225, 0.92) 100%
  );
  padding: 35px;
}

.category-page .cate-list {
  gap: 29px;
  padding: 0%;
}

.category-page .aside-cate-list.d-flex {
  gap: 21px;
}

.category-page .aside-head-cate {
  color: #fff;
  font-family: Gilroy-Bold;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.category-page .cate-name {
  color: #fff;
  font-family: Gilroy-Bold;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 169.5%;
  /* 42.375px */
  text-transform: capitalize;
}

.category-page .cate-img > img {
  border-radius: 50%;
  object-fit: cover;
}

.category-page .cate-list-row {
  gap: 28px;
}

.category-page .cate-card-img {
  width: 387px;
  height: 217px;
  flex-shrink: 0;
  border-radius: 12px;
}

.category-page span.top-btn-cate-aside {
  padding: 0 0 10px 0;
}

.category-page .cate-list-item {
  color: #7a2cf4;
  font-size: 24px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.category-page .wrap-cate {
  padding: 4px 0px;
}

.category-page .aside-card {
  margin-bottom: 26px;
}

.category-page .aside-card .image-block {
  max-width: 177px;
  height: 98px;
}

.category-page .aside-card .text-block .card-meta span {
  color: #555;
  font-family: Gilroy-Bold;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.category-page .top-category-btn {
  display: flex;
  gap: 14px;
  margin-bottom: 50px;
}

.category-page .top-category-btn {
  overflow-x: scroll;
}

.category-page .category-bar {
  display: flex;
  gap: 14px;
  padding: 0px;
  margin: 0px 0px 14px 0px;
  overflow-x: scroll;
}

.category-page section {
  /* margin-bottom: 30px; */
}

@media (max-width: 768px) {
  .category-page .cate-card {
    margin-bottom: 16px;
  }

  .category-page .aside-head-cate {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .category-page .cate-list-row {
    gap: 10px;
  }

  .category-page .cate-name {
    font-size: 18px;
  }

  .category-page section {
    margin-bottom: 24px;
  }

  .category-page .international {
    margin-bottom: -110px;
  }

  .category-page .cate-details-banner {
    height: 115px;
  }

  .category-page .cate-details-banner .heading {
    font-size: 20px;
  }

  .category-page .cate-card .article-card .img-block {
    /* height: 188px; */
    height: 100%;
    aspect-ratio: 16 / 9;
  }

  .category-page .cate-card .article-card .text-block {
    padding: 20px;
  }

  .category-page .cate-card .article-card .text-block p {
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .category-page .cate-latest-banner {
    width: 100%;
    height: auto;
  }
}

/*--------------------------------------------------------------
# Article Page
--------------------------------------------------------------*/
/*detail.html page css*/
.article-page figure {
  margin-bottom: 5px;
}

.article-page .detail-section {
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-page .game-section-header-text {
  margin-top: 30px;
  color: #7a2cf4;
  font-size: 24px;
  font-family: Bebas Neue;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
}

.article-page .banner-img {
  width: 100%;
  /* aspect-ratio: 16 / 9; */
  margin-bottom: 14px;
}

.article-page .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.article-page .game-section-header h1 {
  color: #000;
  font-size: 40px;
  font-family: Gilroy-Bold;
  font-style: normal;
  line-height: 1.2;
  /* text-transform: uppercase; */
}

.article-page .short-desc {
  font-size: 18px;
  font-style: italic;
  color: #333333;
  padding-bottom: 20px;
  font-weight: 500;
  line-height: 26px;
}

.article-page .description {
  font-size: 18px;
  font-family: Gilroy;
  line-height: 28px;
  color: #555555;
  font-weight: 500;
  margin-bottom: 24px;
}

.article-page .video-container {
  position: relative;
  margin-bottom: 30px;
  aspect-ratio: 16 / 9;
  /* padding-bottom: 56.25%; */
  /* height: 0; */
}

.article-page .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* .article-page .description:first-of-type::first-letter {
  font-size: 96px;
  color: #0084ff;
  opacity: 0.75;
  float: left;
  margin-top: 36px;
  margin-right: 7px;
  margin-bottom: 10px;
  font-weight: bold;
} */
/* .first-letter-big:first-of-type::first-letter {
  font-size: 96px;
  color: #0084ff;
  opacity: 0.75;
  float: left;
  margin-top: 36px;
  margin-right: 7px;
  margin-bottom: 10px;
  font-weight: bold;
} */
/* .game-component-right img {
  margin-bottom: 27px;
} */
/* .article-page .readmore-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 154px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 87.69%);
} */
.article-page .readmore-container {
  display: none;
  text-transform: uppercase;
}

.article-page .game-component-right span {
  color: #000;
  font-size: 24px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 700;
  /* line-height: 151.3%; */
  margin-top: 64px;
  margin-bottom: 27px;
}

.article-page .game-component-left-s1 {
  position: sticky;
  top: 40px;
  height: 100%;
}

.article-page .game-component-left-s2 {
  flex-shrink: 0;
  align-items: center;
  margin-top: 30px;
}

.article-page .game-component-left-s2 img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 64px;
  object-fit: cover;
}

.article-page .only-border {
  border-bottom: 2px solid #e0e0e0;
  margin-top: 20px;
  margin-bottom: 3px;
}

.article-page .game-component-left-s2 span {
  color: #000;
  font-size: 24px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 17px;
}

.article-page .user-img {
  display: flex;
  align-items: center;
  padding: 0px !important;
}

.article-page .game-component-left-s2 a {
  color: #fff;
  font-size: 18px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  border-radius: 10px;
  padding: 12px 0;
  border: none;
  margin: 8px 0;
}

.article-page .game-component-left-s2 a svg {
  margin-right: 5px;
}

.article-page .game-component-left-s2 i {
  width: 11px;
  height: 20.878px;
  flex-shrink: 0;
  color: #fff;
  margin-right: 10px;
}

.article-page .game-component-left-s2-style {
  border-radius: 15px;
  border: none;
  /* background: #f3f3f3; */
  /* box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1); */
}

.article-page .btn-instagram {
  background: linear-gradient(90deg, #586be7 0%, #bb4b9b 50%, #f93745 100%);
}

.article-page .btn-twitter {
  background: #00acee;
}

.article-page .btn-linkedin {
  background: #0077b5;
}

.article-page .game-component-left-s1-style {
  border: none;
}

.article-page .game-section-header-text-mobile-view {
  margin-bottom: 14px;
  margin-top: 14px;
}

.article-page .GSHTMV-left {
  float: left;
  width: 50%;
}

.article-page .GSHTMV-left img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 64px;
  object-fit: cover;
}

.article-page .GSHTMV-left span {
  color: #000;
  font-size: 14px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 6px;
}

.article-page .GSHTMV-right {
  float: right;
  width: 50%;
  text-align: right;
}

.article-page .GSHTMV-right span {
  color: #7a2cf4;
  font-size: 14px;
  font-family: Bebas Neue;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.05px;
}

.article-page .facebook-btn a {
  padding: 14px 34px;
  color: #fff;
  font-size: 14px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 10px;
}

.article-page .long-ad {
  max-width: 728px;
  width: 100%;
  height: 90px;
  margin: 30px auto;
}

.article-page .article-heading {
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.article-page .article-desc {
  color: #555;
  font-family: Gilroy-Medium;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 0px;
  line-height: 26px;
}

.article-page .article-desc,
.article-page .article-desc h1,
.article-page .article-desc h2,
.article-page .article-desc h3,
.article-page .article-desc h4,
.article-page .article-desc h5,
.article-page .article-desc h6 {
  color: #000;
  font-family: Gilroy-bold;
}

.article-page .article-desc p {
  font-family: Gilroy;
}

.article-page .article-desc img {
  width: 100%;
  height: 100%;
}

.article-page .footer-slider-detail {
  margin-bottom: -180px;
}

.article-page .side-card-text span {
  color: #0084ff;
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.article-page .side-card-container .section-head {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.article-page .side-card-container .section-head h2 {
  color: #0084ff;
  font-family: Gilroy-Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.article-page .side-card-text h3 {
  margin-top: 3px;
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page .article-card {
  border: none;
}

.article-page .side-card-container a {
  display: flex;
  align-items: center;
}

#initial-content {
  display: none;
}

#full-content {
  display: block;
}

.article-page .readmore {
  display: none;
}

@media (min-width: 768px) {
  /* .article-page .post-content p:first-of-type::first-letter {
    font-size: 96px;
    color: #0084ff;
    opacity: 0.75;
    float: left;
    margin-top: 34px;
    margin-right: 5px;
    margin-bottom: 10px;
    font-weight: bold;
  } */
  /* .first-letter-big:first-of-type::first-letter {
    font-size: 96px;
    color: #0084ff;
    opacity: 0.75;
    float: left;
    margin-top: 34px;
    margin-right: 5px;
    margin-bottom: 10px;
    font-weight: bold;
  } */
}

@media (max-width: 768px) {
  #initial-content {
    display: block;
    overflow: hidden;
  }

  #full-content {
    display: none;
  }

  .article-page .readmore-container {
    display: block;
    position: absolute;
    max-width: 100%;
    width: 100%;
    height: 120px;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    bottom: 10px;
    padding-right: 20px;
  }

  .article-page .side-card-text span {
    font-size: 14px;
  }

  .article-page .side-card-text h3 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .article-page .user-img {
    width: 100% !important;
    display: block;
    border-bottom: 1px solid #00000030 !important;
    border-radius: 0 !important;
    padding-left: 20px !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .article-page .game-section-header h1 {
    font-size: 24px;
  }

  .article-page .detail-section {
    margin-top: 0px;
  }

  .article-page .banner-img {
    width: 100%;
    /* height: 210px; */
    margin-top: 0px;
    padding: 0px;
  }

  .article-page .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
  }

  .article-page .readmore {
    display: block;
    bottom: 0;
    position: absolute;
    background: linear-gradient(
      transparent,
      rgb(255, 255, 255) 75%,
      rgb(255, 255, 255) 100%
    );
    width: 100%;
    height: 100px;
    padding: 0 20px 0 0;
  }

  .article-page .read-more-button {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    background: #0084ff;
    color: #fff;
    top: 15px;
    padding: 8px 22px;
    position: relative;
  }

  .article-page .game-section-header p {
    font-size: 24px;
  }

  .article-page .game-component-right p {
    font-size: 14px;
  }

  .article-page .game-component-right span {
    margin-top: 30px;
    margin-bottom: 14px;
  }

  .article-page .GSHTMV-right .btn.active {
    font-size: 12px;
    padding: 10px;
    font-family: Gilroy-Medium;
  }

  .article-page .article-desc {
    font-size: 17px;
    /* height: 400px; */
    overflow: hidden;
    position: relative;
  }

  .article-page .description:first-of-type::first-letter {
    font-size: 54px;
    margin-right: 7px;
    margin-bottom: 3px;
    margin-top: 18px;
  }

  .article-page .short-desc {
    font-size: 16px;
    padding-bottom: 14px;
  }

  .article-page .footer-slider-detail {
    margin-bottom: -110px;
    margin-top: 0;
  }
}

.trending-section-main-container .container {
  position: relative;
}

@media (max-width: 768px) {
  .trending-section-main-container .container {
    padding-left: 0px;
  }
}

@media (max-width: 1367px) {
  .trending-section-main-container {
    overflow: hidden;
  }

  .trending-section-main-container .container {
    margin-right: 0;
    padding-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 1250px) {
  .trendnow__container .trending-block {
    left: -20px;
    top: -50px;
  }

  .trendnow__container .next-prev {
    right: 25px;
    top: 50px;
  }
}

@media (min-width: 1365px) {
  .trendnow__container .carousel {
    width: 1320px;
  }

  .trendnow__container .trending-block {
    left: -20px;
    top: -50px;
  }

  .trendnow__container .next-prev {
    right: 65px;
    top: 50px;
  }
}

@media (min-width: 1441px) {
  .trendnow__container .trending-block {
    left: -130px;
    top: -50px;
  }

  .trendnow__container .next-prev {
    right: 70px;
  }
}

@media (min-width: 2500px) {
  .trendnow__container .carousel {
    width: 1590px;
    margin-left: -180px;
  }

  .trendnow__container .trending-block {
    left: -300px;
    top: -50px;
  }

  .trendnow__container .next-prev {
    right: 70px;
    top: 50px;
  }
}

/* @media (min-width: 1600px) {
  .trendnow__container .carousel{
    margin-left: 145px;
  }
}
@media (min-width: 2500px) {
  .trendnow__container .carousel{
    margin-left: 525px;
  }
} */

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
  justify-content: center;
  align-items: center;
}

.pagination .page-item .page-link {
  border: none !important;
  color: #555;
}

.pagination .page-item.active .page-link {
  color: #0084ff;
  font-family: Gilroy-Bold;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  background: none;
}

.pagination .page-link:focus {
  box-shadow: none !important;
  background-color: transparent !important;
}

.pagination .page-link:hover {
  background-color: transparent !important;
  font-weight: 700;
  color: #0084ff;
}

/*--------------------------------------------------------------
# Search Bar CSS
--------------------------------------------------------------*/
.search-toggle,
.search-cancel {
  display: none;
}

.search-block {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 60px;
  z-index: 10;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.35s ease-in-out;
}

.search-block.is-active {
  top: 0;
  right: 0;
  height: 60px;
  background-color: #1778f2;
}

.search-form {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  padding: 0.75rem 1rem;
}

.search-input {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
  height: 38px;
  border-radius: 6px;
  border: none;
  outline: none;
  padding: 0px 10px;
}

.input-search-icon {
  position: absolute;
  right: 6px;
  background: none;
  border: none;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

@media (max-width: 768px) {
  .search-toggle,
  .search-cancel {
    display: block;
    cursor: pointer;
    font-size: 1.45rem;
    line-height: inherit;
    color: #000;
  }
}

.blur-image-container {
  position: relative;
  width: 100%;
  /* Adjust as necessary */
  height: 446px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.blur-image-container .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  filter: blur(10px);
  z-index: -1;
}

.blur-image-container .foreground-image {
  position: relative;
  z-index: 1;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Gutter Ads Layout
--------------------------------------------------------------*/
.gutter-ads-wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
}

.gutter-ad {
  position: sticky;
  top: 20px;
  /* Stick position after header */
  width: 160px;
  height: calc(100vh - 20px);
  /* Adjust height to account for header */
  z-index: 100;
  background-color: #f8f9fa;
  overflow: hidden;
  align-self: flex-start;
  /* Important for sticky positioning */
  flex-shrink: 0;
  /* Prevent shrinking */
}

.left-gutter-ad {
  /* margin-left: 20px;
  margin-right: 20px; */
}

.right-gutter-ad {
  /* margin-left: 20px;
  margin-right: 20px; */
}

.gutter-ad-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  background-color: #fff;
}

.gutter-ad-content img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.main-content-area {
  flex: 1;
  background-color: #fff;
  min-height: 100vh;
  position: relative;
  z-index: 50;
  max-width: calc(100% - 340px);
  /* Subtract space for both ads */
  margin: 0px 0px;
  /* Equal margin on both sides */
  display: flex;
  flex-direction: column;
}

/* Hide gutter ads on mobile and tablet */
@media (max-width: 1200px) {
  .gutter-ad {
    display: none;
  }

  .main-content-area {
    max-width: 100%;
    margin: 0;
  }
}

/* Additional spacing for very large screens */
@media (min-width: 1600px) {
  .gutter-ad {
    width: 200px;
  }

  .left-gutter-ad {
    margin-left: 30px;
    margin-right: 30px;
  }

  .right-gutter-ad {
    margin-left: 30px;
    margin-right: 30px;
  }

  .main-content-area {
    max-width: calc(100% - 520px);
    /* Subtract space for both larger ads */
    margin: 0 30px;
  }
}

/* -----------------------------------
tenth-section (Popular)
----------------------------------- */

.tenth-sec h2 {
  font-size: 45px;
}

.tenth-sec-img {
  position: relative;
  margin-right: 0%;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.tenth-sec-img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tenth-sect-img-content h6 {
  font-size: 20px;
  min-height: 48px;
  line-height: 1.2;
}

.tenth-sect-img-content .text-ellipsis {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tenth-sec button {
  background-color: rgb(214, 212, 212);
  margin: 0 auto;
  width: 25%;
}

@media only screen and (max-width: 768px) {
  .tenth-sec {
    margin-top: 20px;
  }

  .tenth-sec h2 {
    font-size: 25px;
  }

  .tenth-sect-img-content .text-ellipsis {
    margin-bottom: 6px !important;
  }

  .tenth-sect-img-content h6 {
    font-size: 14px;
    -webkit-line-clamp: 2;
    min-height: auto;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media only screen and (max-width: 992px) {
  .tenth-sec button {
    background-color: rgb(214, 212, 212);
    margin: 0 auto;
    width: 50%;
  }
}

/* Additional utility classes for Popular section */
.color-orange {
  color: #0084ff !important;
}

.fs-12 {
  font-size: 12px !important;
}

.cat-small {
  font-family: Gilroy-Bold;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.text-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-section-h6 {
  color: #000;
  font-family: Gilroy-Bold;
  font-weight: 400;
  line-height: 1.2;
}

/* -----------------------------------
eighth-section (Newly Launched)
----------------------------------- */

.eighth-sec h2 {
  font-size: 45px;
}

/* Featured Cards (Top Row) - Large Cards */
.newly-launched-featured-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #f0f0f0;
}

.newly-launched-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.newly-launched-featured-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.newly-launched-featured-img img {
  border-radius: 20px 20px 0 0;
  transition: transform 0.4s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newly-launched-featured-card:hover .newly-launched-featured-img img {
  transform: scale(1.08);
}

.newly-launched-featured-content {
  padding: 25px;
  background: #fff;
}

.newly-launched-featured-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.newly-launched-featured-title:hover {
  color: #0084ff;
}

/* Grid Cards (Bottom Rows) - Compact Horizontal Cards */
.newly-launched-grid-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  /* border: 1px solid #f5f5f5; */
  height: 130px;
}

.newly-launched-grid-card:hover {
  transform: translateY(-4px);
}

.newly-launched-grid-img {
  width: 40%;
  height: 130px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.newly-launched-grid-img img {
  border-radius: 10px;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newly-launched-grid-card:hover .newly-launched-grid-img img {
  transform: scale(1.06);
}

.newly-launched-grid-content {
  padding: 18px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newly-launched-grid-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.4;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.newly-launched-grid-title:hover {
  color: #0084ff;
}

.newly-launched-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newly-launched-meta .author-info {
  display: flex;
  align-items: center;
}

.newly-launched-meta .author-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.newly-launched-meta .author-name {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.newly-launched-meta .post-date {
  font-size: 12px;
  color: #999;
}

/* Responsive Design */
@media only screen and (max-width: 992px) {
  .eighth-sec h2 {
    font-size: 35px;
  }

  .newly-launched-featured-title {
    font-size: 20px;
  }

  .newly-launched-grid-title {
    font-size: 15px;
  }

  .newly-launched-featured-img {
    height: 200px;
  }
}

@media only screen and (max-width: 768px) {
  .eighth-sec h2 {
    font-size: 28px;
  }

  .newly-launched-featured-title {
    font-size: 18px;
  }

  .newly-launched-grid-title {
    font-size: 16px;
    -webkit-line-clamp: 3;
    line-height: 1.3;
  }

  .newly-launched-featured-img {
    height: 180px;
  }

  .newly-launched-grid-card {
    height: 130px;
    margin-bottom: 15px;
  }

  .newly-launched-grid-img {
    width: 40%;
    height: 130px;
  }

  .newly-launched-grid-img img {
    border-radius: 8px;
  }

  .newly-launched-grid-content {
    padding: 15px;
    width: 60%;
  }

  .newly-launched-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }

  .newly-launched-meta .author-info {
    margin-bottom: 0;
  }

  .newly-launched-meta .author-name {
    font-size: 12px;
  }

  .newly-launched-meta .post-date {
    font-size: 11px;
  }
}

@media only screen and (max-width: 596px) {
  .eighth-sec h2 {
    font-size: 24px;
  }

  .newly-launched-featured-title {
    font-size: 16px;
  }

  .newly-launched-grid-title {
    font-size: 14px;
    -webkit-line-clamp: 3;
    line-height: 1.3;
  }

  .newly-launched-featured-img {
    height: 160px;
  }

  .newly-launched-grid-card {
    height: 130px;
    margin-bottom: 12px;
  }

  .newly-launched-grid-img {
    width: 40%;
    height: 130px;
  }

  .newly-launched-grid-img img {
    border-radius: 6px;
  }

  .newly-launched-grid-content {
    padding: 12px;
    width: 60%;
  }

  .newly-launched-meta {
    margin-top: 6px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .newly-launched-meta .author-name {
    font-size: 11px;
  }

  .newly-launched-meta .post-date {
    font-size: 10px;
  }
}

/* Top of the week Section Styles */
.top-of-week-section {
  padding: 60px 0;
  background: transparent;
}

.top-of-week-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: none;
  padding-bottom: 0;
}

.top-of-week-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.top-week-nav {
  gap: 0;
  border: none;
}

.top-week-nav .nav-item {
  margin: 0;
}

.top-week-nav button {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.top-week-nav button:hover {
  color: #0084ff;
}

.top-week-nav .active {
  color: #0084ff !important;
  border-bottom-color: #0084ff !important;
}

.top-week-carousel {
  position: relative;
}

.top-week-carousel .swiper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0px;
}

.top-week-carousel .arrow-container {
  position: absolute !important;
  top: 0;
  bottom: 0;
  width: calc(100% + 50px);
  left: -30px;
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-week-carousel .swiper-button-prev,
.top-week-carousel .swiper-button-next {
  cursor: pointer;
  pointer-events: all;
  z-index: 10;
  transition: all 0.3s ease;
}

.top-week-carousel .swiper-button-prev:hover,
.top-week-carousel .swiper-button-next:hover {
  transform: scale(1.1);
}

.top-week-carousel .swiper-button-prev,
.top-week-carousel .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-week-carousel .swiper-button-prev svg,
.top-week-carousel .swiper-button-next svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.top-week-carousel .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.top-week-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.top-week-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.top-week-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.top-week-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.top-week-card:hover .top-week-image img {
  transform: scale(1.05);
}

.top-week-content {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top-week-category {
  margin-bottom: 12px;
}

.top-week-category .category-tag {
  background-color: #0084ff;
  color: white;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-week-category .category-tag:hover {
  background-color: #0066cc;
  color: white;
}

.top-week-title {
  margin-bottom: 16px;
  line-height: 1.4;
  flex: 1;
}

.top-week-title a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.top-week-title a:hover {
  color: #0084ff;
}

.top-week-meta {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
  gap: 6px;
  margin-top: auto;
}

.top-week-meta .author {
  font-weight: 500;
  color: #333;
}

.top-week-meta .separator {
  color: #ccc;
}

.top-week-meta .date {
  color: #666;
}

/* Mobile Styles for Top of the week */
@media (max-width: 768px) {
  .top-of-week-section {
    padding: 40px 0;
  }

  .top-of-week-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .top-of-week-header h2 {
    font-size: 32px;
  }

  .top-week-nav {
    display: flex !important;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .top-week-nav::-webkit-scrollbar {
    display: none;
  }

  .top-week-nav .nav-item {
    flex-shrink: 0;
  }

  .top-week-nav button {
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .top-week-carousel {
    margin: 0 30px;
  }

  .top-week-carousel .swiper {
    width: 100%;
  }

  .top-week-carousel .arrow-container {
    width: calc(100% + 60px);
    left: -30px;
    top: 0;
    bottom: 0;
  }

  .top-week-card {
    margin-bottom: 20px;
  }

  .top-week-image {
    aspect-ratio: 16/9;
  }

  .top-week-content {
    padding: 16px;
  }

  .top-week-title a {
    font-size: 16px;
  }

  .top-week-meta {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .top-week-carousel {
    margin: 0 20px;
  }

  .top-week-carousel .swiper {
    width: 100%;
  }

  .top-week-carousel .arrow-container {
    width: calc(100% + 40px);
    left: -20px;
    top: 0;
    bottom: 0;
  }

  .top-week-card {
    margin-bottom: 16px;
  }

  .top-week-image {
    aspect-ratio: 16/9;
  }

  .top-week-content {
    padding: 14px;
  }

  .top-week-title a {
    font-size: 15px;
  }
}

/* Our Other IP's Section Styles */
.our-other-ips-section {
  background: white;
  padding: 40px 0 0 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.our-other-ips-title {
  font-size: 36px;
  font-weight: bold;
  color: #0084ff;
  margin-bottom: 30px;
}

.brand-logos-grid {
  margin-bottom: 20px;
}

.brand-logo-card {
  text-align: center;
  padding: 15px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.brand-logo-card:hover {
  transform: translateY(-3px);
}

.brand-logo-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.brand-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

/* Stay Connected Section */
.stay-connected-section {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  height: fit-content;
}

.stay-connected-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  text-align: left;
}

.social-stats {
  margin-bottom: 30px;
}

.social-stat-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.social-stat-item:hover {
  transform: translateY(-2px);
}

.social-stat-item.facebook {
  background: #1877f2;
}

.social-stat-item.instagram {
  background: linear-gradient(45deg, #e4405f, #c13584, #833ab4);
}

.social-stat-item.youtube {
  background: #ff0000;
}

.social-stat-item.linkedin {
  background: #0a66c2;
}

.social-stat-item.twitter {
  background: #000000;
}

.social-stat-item.facebook-like {
  background: #42b883;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.social-info {
  display: flex;
  flex-direction: column;
}

.social-count {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.social-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2px;
}

/* Newsletter Signup - Bottom Section */
.newsletter-signup-bottom {
  background: #0084ff;
  border-radius: 0;
  padding: 35px 30px;
}

.newsletter-content-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-text {
  flex: 1;
  text-align: left;
}

.newsletter-signup-bottom h4 {
  color: white;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.newsletter-signup-bottom .newsletter-form-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
  max-width: 400px;
  width: 100%;
}

.newsletter-signup-bottom .newsletter-input {
  padding: 16px 24px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 50px;
}

.newsletter-signup-bottom .newsletter-input::placeholder {
  color: #999;
}

.newsletter-signup-bottom .newsletter-form-wrapper .email-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.newsletter-signup-bottom .newsletter-btn {
  background: #3395f0;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-signup-bottom .newsletter-btn:hover {
  background: #2980d8;
  transform: translateY(-1px);
}

.margin-bottom-20 {
  margin-bottom: 150px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .our-other-ips-section {
    padding: 30px 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .our-other-ips-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .brand-logo-card {
    margin-bottom: 20px;
  }

  .brand-logo-img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  .brand-name {
    font-size: 12px;
  }

  .stay-connected-section {
    margin-top: 30px;
    padding: 25px 20px;
  }

  .stay-connected-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .social-stat-item {
    padding: 10px 14px;
    margin-bottom: 8px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }

  .social-count {
    font-size: 15px;
  }

  .social-label {
    font-size: 10px;
  }

  .newsletter-signup-bottom {
    padding: 25px 20px;
    margin-top: 30px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
  }

  .newsletter-content-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .newsletter-text {
    text-align: center;
  }

  .newsletter-signup-bottom h4 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
  }

  .newsletter-signup-bottom .newsletter-form-wrapper {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: none;
  }

  .newsletter-signup-bottom .newsletter-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 25px;
    height: 50px;
  }

  .newsletter-signup-bottom .newsletter-form-wrapper .email-icon {
    display: none;
  }

  .newsletter-signup-bottom .newsletter-btn {
    width: 100%;
    padding: 14px;
    border-radius: 25px;
    font-weight: 700;
    position: static !important;
    height: auto !important;
    background: #3395f0 !important;
    color: white !important;
  }

  .our-other-ips-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
  }

  .brand-logo-card {
    padding: 15px 10px;
  }

  .brand-logo-img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  .brand-name {
    font-size: 12px;
  }

  .stay-connected-section {
    padding: 25px 20px;
    margin-top: 30px;
  }

  .stay-connected-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .social-stat-item {
    padding: 10px 14px;
    margin-bottom: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .social-count {
    font-size: 16px;
  }

  .social-label {
    font-size: 11px;
  }

  .newsletter-signup {
    padding: 20px 15px;
  }

  .newsletter-signup h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .newsletter-form-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
  }

  .newsletter-btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Recommendation Section Styles */
.recommendation-section {
  padding: 60px 0;
}

.recommendation-header h2 {
  color: #333;
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
}

.recommendation-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.recommendation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.recommendation-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.recommendation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recommendation-card:hover .recommendation-img img {
  transform: scale(1.05);
}

/* Advertisement Banners */
.recommendation-ads {
  position: sticky;
  top: 20px;
}

.recommendation-ad-banner {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-ad-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.recommendation-ad-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .recommendation-ads {
    position: static;
    margin-top: 40px;
  }

  .recommendation-ad-banner {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .recommendation-section {
    padding: 40px 0;
  }

  .recommendation-header h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .recommendation-img {
    aspect-ratio: 4/5;
  }

  .recommendation-ads {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .recommendation-ad-banner {
    flex: 0 0 280px;
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .recommendation-section {
    padding: 30px 0;
  }

  .recommendation-header h2 {
    font-size: 24px;
  }

  .recommendation-img {
    aspect-ratio: 4/5;
  }

  .recommendation-ads {
    gap: 10px;
  }

  .recommendation-ad-banner {
    flex: 0 0 250px;
  }
}

:root {
  /* Font Families */
  --font-primary: "Gilroy", sans-serif;
  --font-primary-medium: "Gilroy-Medium", sans-serif;
  --font-primary-bold: "Gilroy-Bold", sans-serif;
  --font-primary-heavy: "Gilroy-Heavy", sans-serif;

  /* DESKTOP Font Sizes */
  --font-size-hero-main: 40px; /* Article page main title */
  --font-size-hero-carousel: 24px; /* Hero carousel titles */
  --font-size-section-title: 34px; /* Section headings */
  --font-size-article-title: 20px; /* Article card titles */
  --font-size-article-small: 18px; /* Hero small cards, descriptions */
  --font-size-side-card: 16px; /* Sidebar card titles */
  --font-size-category: 14px; /* Category buttons, meta */
  --font-size-nav: 18px; /* Navigation, tech nav */
  --size-trending-title: 20px;
  /* Special Sizes */
  --font-size-category-banner: 65px; /* Category page banners */
  --font-size-category-card: 24px; /* Category card titles */
  --font-size-drop-cap: 96px; /* Article drop cap */

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
}

/* MOBILE Responsive (Based on your existing mobile styles) */
@media (max-width: 768px) {
  :root {
    --font-size-hero-main: 32px; /* Reduced from 40px */
    --font-size-hero-carousel: 20px; /* Reduced from 24px */
    --font-size-section-title: 20px; /* Your current mobile size */
    --font-size-article-title: 14px; /* Your current mobile size */
    --font-size-article-small: 16px; /* Slightly reduced */
    --font-size-side-card: 14px; /* Reduced from 16px */
    --font-size-category: 12px; /* Your current mobile size */
    --font-size-category-banner: 45px; /* Reduced from 65px */
    --font-size-category-card: 20px; /* Reduced from 24px */
  }
}
.title-hero {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-hero-main) !important;
  font-weight: 400 !important;
  line-height: var(--line-height-tight) !important;
  color: #000 !important;
  text-transform: uppercase !important;
}

/* Hero Carousel Titles */
.title-hero-carousel {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-hero-carousel) !important;
  font-weight: 400 !important;
  line-height: var(--line-height-normal) !important;
  color: #000 !important;
  text-transform: capitalize !important;
}

/* Section Headings */
.title-section {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-section-title) !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #0084ff;
  text-transform: uppercase !important;
}

/* Article Card Titles */
.title-article {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-article-title) !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #000 !important;
}

/* Category Labels */
.label-category {
  font-family: Gilroy-Bold;
  margin: 0px;
  color: #0084ff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
/* Trending Titles */
.title-trending {
  font-family: var(--font-primary-bold);
  font-size: var(--size-trending-title);
  font-weight: bold;
  line-height: 24px;
}
/*Side Card Category Labels */
.Side-Card-label-category {
  font-family: var(--font-primary-bold) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  color: #fff;
}

/* Descriptions */
.text-description {
  font-family: var(--font-primary) !important;
  font-size: var(--font-size-article-small) !important;
  font-weight: normal !important;
  line-height: var(--line-height-relaxed) !important;
  color: #555 !important;
}

/* Side Card Titles */
.title-side-card {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-side-card) !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #000 !important;
}

/* =============================================================
   HOME PAGE TYPOGRAPHY CLASSES - Using Existing Variables
   ============================================================= */

/* Hero Small Cards - for smaller carousel items */
.title-hero-small {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-article-small) !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #000 !important;
}

/* Latest News Titles - Main featured article */
.title-latest-main {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-article-title) !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #000;
}

/* Latest News Titles - Side articles */
.title-latest-side {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-side-card) !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #000 !important;
}

/* Popular News Titles - for popular section */
.title-popular {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-side-card) !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #000 !important;
}

/* Event Calendar Titles */
.title-event {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-side-card) !important;
  font-weight: 600 !important;
  line-height: normal !important;
  color: #000 !important;
}

/* Top of Week Card Titles */
.title-top-week {
  font-family: var(--font-primary-bold) !important;
  font-size: var(--font-size-side-card) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: #000 !important;
}

/* Category Tags - for small category chips */
.category-tag {
  font-family: var(--font-primary-bold) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Author Info Text */
.author-text {
  font-family: var(--font-primary) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #666 !important;
}

/* Navigation Tab Links */
.nav-tab-text {
  font-family: var(--font-primary-medium) !important;
  font-size: var(--font-size-category) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
  .title-hero-small {
    font-size: var(--font-size-side-card) !important;
  }

  .title-latest-main {
    font-size: var(--font-size-article-title) !important;
  }

  .title-latest-side {
    font-size: var(--font-size-category) !important;
  }

  .title-popular {
    font-size: var(--font-size-category) !important;
  }

  .title-event {
    font-size: var(--font-size-category) !important;
  }

  .title-top-week {
    font-size: 12px !important;
  }
}

.news-featured-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.news-featured-nav {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #8c8c8c;
  overflow-x: auto;
}

.news-featured-tab {
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: #aaa;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.news-featured-tab:hover,
.news-featured-tab.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

.news-featured-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Featured Main Article */
.news-featured-main {
  flex: 2;
  border-radius: 8px;
  overflow: hidden;
}

.news-featured-main a {
  color: inherit;
  text-decoration: none;
}

.news-featured-main-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-featured-main-meta {
  padding: 1rem 0;
}

.news-featured-main-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0.5rem 0;
  color: #1f1f1f;
}

.news-featured-main-desc {
  font-size: 1rem;
  color: #5e5e5e;
  line-height: 1.4;
}

/* Side Articles */
.news-featured-side-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-featured-side-article {
  border-radius: 6px;
  transition: background 0.3s;
}

.news-featured-side-article a {
  display: flex;
  text-decoration: none;
  color: inherit;
  padding: 0.5rem;
  gap: 0.75rem;
}

.news-featured-side-thumb {
  width: 100px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  min-width: 130px;
}

.news-featured-side-info {
  flex: 1;
}

.news-featured-side-title {
  font-size: 0.9rem;
  color: #353535;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tag */
.news-featured-tag {
  font-size: 0.75rem;
  background-color: #2563eb;
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.author.news-author img {
  max-width: 30px;
  border-radius: 50%;
  margin-right: 5px;
}

.author.news-author {
  font-size: 12px;
  color: #555555;
}

.popular-news .news-featured-side-title {
  margin-bottom: 5px;
}

.text-grad-overlay {
  background: #0f0f0f;
  background: linear-gradient(
    360deg,
    rgba(15, 15, 15, 1) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.active.top-week-nav-link {
  color: #3b82f6 !important;
  border: 0;
  border-bottom: 2px solid #3b82f6;
  border-bottom-color: #3b82f6 !important;
  font-weight: 600;
}

.card-body .author-avatar,
.author-card .author-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.card-body .author-name,
.author-card .author-name {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.top-week-nav-link {
  color: #000000;
  background-color: transparent;
}

.active.top-week-nav-link {
  background-color: transparent !important;
}

.vertical-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 10px;
}

.top-of-the-week-new-back {
  border-radius: 12px;
  background: #e3edff;
}

.icon-bg {
  background: #0084ff1a;
}

button.btn.mb-0.article-switch {
  margin-bottom: 0 !important;
  font-size: 14px;
}

.border-dashed {
  border-bottom: 1px dashed #ccc !important;
}

.article-page img.category-post-image {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.375rem;
}

.category-post-title {
  font-size: 14px;
}

.recaptcha-ui {
  max-width: 310px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.recaptcha-check input {
  width: 20px;
  height: 20px;
}

.recaptcha-info a {
  text-decoration: none;
  color: #555;
  font-size: 10px;
}

.recaptcha-info {
  font-size: 10px;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.horozonticalCards {
  width: 100%;
  object-fit: cover;
  max-width: 150px;
  aspect-ratio: 16/9;
}

.verticalcardimage {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 5px;
}
.aspect-ratio {
  aspect-ratio: 16/9;
}
.text-shadow-3-2 {
  text-shadow: 3px 2px 5px #000;
}
.w-150 {
  width: 100%;
  max-width: 150px;
}
.title-latest-side {
  margin-bottom: 5px !important;
}
/* Responsive */
@media (max-width: 768px) {
  .inactive {
    overflow: auto;
  }

  .hide-scrollbar,
  .inactive {
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox, Safari 18.2+, Chromium 121+ */
  }

  .inactive::-webkit-scrollbar {
    display: none;
    /* Older Safari and Chromium */
  }

  .news-featured-nav {
    gap: 0;
    flex-direction: column;
  }

  .news-featured-side-thumb {
    max-height: 80px;
  }

  .news-featured-main-title {
    font-size: 1.2rem;
  }

  .news-featured-side-title {
    font-size: 12px;
  }

  .title-of-cards,
  .top-week-new h6 {
    font-size: 12px;
  }

  .top-week-new-chip {
    font-size: 12px;
  }

  .top-week-new .timestamp {
    font-size: 12px;
  }

  .top-week-nav-link {
    font-size: 14px;
  }

  .news-featured-content {
    flex-direction: column;
  }

  .vertical-card-body {
    padding: 10px;
  }

  .vertical-card-body p {
    font-size: 12px;
  }

  .news-featured-tag {
    font-size: 10px;
  }
}
