@font-face {
  font-family: 'Janna-Regular';
  src: url('../fonts/Janna-LT-Regular.ttf');
  font-display: swap;
}

@font-face {
  font-family: 'Janna-Bold';
  src: url('../fonts/Janna-LT-Bold.ttf');
  font-display: swap;
}

* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Janna-Regular';
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}

[fill],
[stroke] {
  transition: 0.3s;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

span,
a {
  display: inline-block;
}

.text-margin-default,
.text-margin-default * {
  margin: revert;
  margin-top: 0;
}

.text-margin-default * {
  font-family: 'Janna-Regular' !important;
}

:root {
  font-size: 14px;
  --color-primary: #DD2D4A;
  --color-dark: #1E2D40;
  --color-dark-2: #394556;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-gray-light: #C0C0C0;
  --color-gray: #616A76;
  --color-blue: #3476BF;
  --bg-yellow: #FFFBE5;
  --bg-dark: #111111;
  --z-level1: 9;
  --z-level2: 99;
  --z-level3: 999;
  --z-level4: 9999;
  --z-level5: 99999;
  --z-level6: 999999;
  --z-level7: 9999999;
}

@media (min-width: 576px) {
  :root {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  :root {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  :root {
    font-size: 17px;
  }
}

@media (min-width: 1400px) {
  :root {
    font-size: 18px;
  }
}

/* === Classes Font Size === */

/* 12px */
.fs-1 {
  font-size: 0.75rem;
}

/* 16px */
.fs-2 {
  font-size: 1rem;
}

/* 20px */
.fs-3 {
  font-size: 1.25rem;
}

/* 24px */
.fs-4 {
  font-size: 1.5rem;
}

/* 28px */
.fs-5 {
  font-size: 1.75rem;
}

/* 32px */
.fs-6 {
  font-size: 2rem;
}

/* === body === */

body {
  background-color: var(--color-white);
}

/* === Header === */

html[data-theme="dark"] .toggle-dark svg:not(.light) {
  display: none;
}

html[data-theme="light"] .toggle-dark svg.light {
  display: none;
}

header .top-bar {
  background-color: var(--color-dark);
  padding: 0.375rem 0;
}

header .top-bar span,
header .top-bar a {
  color: var(--color-gray-light);
  display: inline-block;
}

header .top-bar .weather {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

header .top-bar .weather .icon {
  display: none;
}

header .top-bar .weather .icon svg {
  flex: 1 0 auto;
  width: auto;
  max-width: 2rem;
  height: 1rem;
}

header .top-bar .weather.hot .hot,
header .top-bar .weather.rain .rain,
header .top-bar .weather.cloudy .cloudy,
header .top-bar .weather.clear .clear {
  display: inline-flex;
}

header .top-bar .tools,
header .top-bar .social {
  gap: 0.755rem;
}

header .top-bar .tools a,
header .top-bar .social a {
  display: inline-flex;
}

header .top-bar .tools a svg,
header .top-bar .social a svg {
  height: 0.925rem;
  width: auto;
  flex: 1 0 auto;
  max-width: 2rem;
}

header .top-bar .col-links svg [fill] {
  fill: var(--color-gray-light);
}

header .top-bar .col-links svg [stroke] {
  stroke: var(--color-gray-light);
}

header .top-bar .col-links a:hover svg [fill] {
  fill: var(--color-white);
}

header .top-bar .col-links a:hover svg [stroke] {
  stroke: var(--color-white);
}

header .top-bar .links a {
  margin: 0 0.75rem;
  position: relative;
}

header .top-bar .links a:hover {
  color: #FFC179;
}

header .top-bar .links a:hover::after {
  color: var(--color-gray-light);
}

header .top-bar .links a:first-child {
  margin-inline-start: 0;
}

header .top-bar .links a:last-child {
  margin-inline-end: 0;
}

header .top-bar .links a:not(:last-child)::after {
  content: "|";
  top: 0;
  left: calc(-0.75rem - 1px);
  position: absolute;
}

header .middle-bar {
  background-color: var(--bg-yellow);
}

header .middle-bar .img img {
  width: 100%;
  height: 6rem;
}

header .middle-bar .img-ad img {
  object-fit: cover;
}

/* === Nav Bar === */

.nav-bar {
  position: sticky;
  top: 0;
  z-index: var(--z-level4);
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(192, 192, 192, 0.4);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.nav-bar.active .logo {
  max-width: 5rem;
  margin-inline-end: 1rem;
}

.nav-bar .links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.nav-bar .links a {
  color: var(--color-dark-2);
  font-weight: 100;
}

.nav-bar .links a.active {
  font-family: 'Janna-Bold';
  font-weight: 900;
}

.nav-bar .links a:not(.active):hover {
  color: var(--color-primary);
}

.menu-mobile,
.bg-blur {
  display: flex;
  position: fixed;
  top: 0;
  height: 100vh;
  transition: 0.3s;
}

.menu-mobile {
  display: none;
}

.bg-blur {
  z-index: -1;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5.6px);
  -webkit-backdrop-filter: blur(5.6px);
  opacity: 0;
  transition: 0.3s;
}

.bg-blur.show {
  z-index: var(--z-level5);
  opacity: 1;
}

@media (max-width: 991.9px) {
  .nav-bar .col {
    justify-content: space-between;
  }

  .nav-bar .logo {
    margin-inline-end: 1rem;
  }

  .open-menu-mobile svg {
    width: 2.5rem;
    height: auto;
  }

  .open-menu-mobile svg [stroke] {
    stroke: var(--color-dark);
  }

  .menu-mobile {
    display: flex;
    width: 50%;
    right: -55%;
    z-index: var(--z-level6);
    background-color: var(--color-white);
    box-shadow: -4px 0px 4px 0 rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    overflow: auto;
  }

  html[dir="ltr"] .menu-mobile {
    right: unset;
    left: -55%;
  }

  .menu-mobile.show {
    right: 0;
  }

  html[dir="ltr"] .menu-mobile.show {
    right: unset;
    left: 0;
  }

  .menu-mobile .links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .menu-mobile .links a {
    color: var(--color-dark-2);
    font-weight: 100;
  }

  .menu-mobile .links a.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.325rem 1rem;
    border-radius: 0.5rem;
  }

  .menu-mobile .social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .menu-mobile .social a {
    display: inline-flex;
  }

  .menu-mobile .social a svg {
    width: auto;
    height: 1.5rem;
    max-width: 3rem;
    flex: 1 0 auto;
  }

  .menu-mobile .social a svg [fill] {
    fill: var(--color-dark);
  }

  .menu-mobile .social a svg [stroke] {
    stroke: var(--color-dark);
  }
}

@media (max-width: 767.9px) {
  .menu-mobile {
    width: 70%;
    right: -75%;
  }

  html[dir="ltr"] .menu-mobile {
    right: unset;
    left: -75%;
  }

  .menu-mobile .social {
    gap: 1rem;
  }
}

@media (max-width: 575.9px) {
  .menu-mobile {
    width: 80%;
    right: -85%;
  }

  html[dir="ltr"] .menu-mobile {
    right: unset;
    left: -85%;
  }
}

@media (min-width: 992px) {
  .nav-bar .logo img {
    height: 2.5rem;
    width: auto;
  }

  .nav-bar .logo {
    overflow: hidden;
    transition: 0.3s;
  }

  .nav-bar:not(.active) .logo {
    max-width: 0;
    margin-inline-end: 0;
  }
}

/* === Break News === */

.break-news {
  position: relative;
  z-index: var(--z-level1);
  background-color: var(--color-primary);
}

.break-news .title-break-news,
.break-news .text-news span {
  color: var(--color-white);
}

.break-news .title-break-news {
  font-family: 'Janna-Bold';
}

.break-news .swiper {
  height: calc(1.25rem * 1.5 * 2);
}

.break-news .text-news {
  display: flex;
  align-items: center;
  height: 100%;
}

.break-news .text-news span {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  line-height: 1.5;
}

.break-news .text-news span svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
}

.break-news .text-news a {
  color: var(--color-white);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 992px) {
  .break-news .text-news span {
    white-space: nowrap;
    position: relative;
    top: 2px;
  }
}

@media (max-width: 991.9px) {
  .break-news .text-news span {
    display: none;
  }
}

/* === Footer === */

footer {
  background-color: var(--bg-dark);
}

footer .col-info h6 {
  color: #C3A770;
}

footer .col-info p {
  color: var(--color-white);
  line-height: 2;
}

footer .social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

footer .social a {
  display: inline-flex;
}

footer .social a svg {
  height: 1.625rem;
  width: auto;
  flex: 1 0 auto;
  max-width: 4rem;
}

footer .social a svg [fill] {
  fill: var(--color-white);
}

footer .social a svg [stroke] {
  stroke: var(--color-white);
}

footer .social a:hover svg [fill] {
  fill: #C3A770;
}

footer .social a:hover svg [stroke] {
  stroke: #C3A770;
}

footer .links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
}

footer .links a {
  font-size: 1rem;
  color: var(--color-gray-light);
  transition: 0.3s;
}

footer .links a:hover {
  color: var(--color-white);
  margin-inline-start: 0.5rem;
}

.copy-right {
  background-color: #242424;
  margin-bottom: 3rem;
}

.copy-right p {
  color: var(--color-gray-light);
}

.copy-right a img {
  filter: saturate(0);
  transition: 0.3s;
}

.copy-right a:hover img {
  filter: saturate(1);
}

@media (max-width: 575.9px) {
  .copy-right {
    text-align: center;
  }
}

/* === Modal Custom === */

.modal-custom {
  position: fixed;
  inset: 0;
  z-index: var(--z-level6);
  padding: 2rem 0;
  display: none;
  transition: 0.3s;
}

.modal-custom.show {
  display: block;
  animation: showModal 0.3s linear both;
}

@keyframes showModal {
  from {
    opacity: 0.3;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-custom .content {
  max-height: calc(100vh - 4rem);
  overflow: auto;
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.16);
}

.modal-custom .row {
  width: 100%;
  margin: 0;
}

.input-search label {
  color: var(--color-dark);
}

.input-search div {
  position: relative;
}

.input-search div input {
  width: 100%;
  border: 1px solid var(--color-gray-light);
  padding: 0.5rem 1rem;
  padding-inline-end: 5rem;
  border-radius: 0.5rem;
  outline: none;
}

.input-search div button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  padding: 0 1rem;
  height: calc(100% - 0.75rem);
  border-radius: 0.325rem;
  border: 1px solid var(--color-dark-2);
  background-color: var(--color-dark-2);
  color: var(--color-white);
  cursor: pointer;
  transition: 0.3s;
}

html[dir="ltr"] .input-search div button {
  left: unset;
  right: 0.5rem;
}

.input-search div button:hover {
  color: var(--color-dark-2);
  background-color: var(--color-white);
}

@media (max-width: 399.9px) {
  .input-search {
    text-align: center;
  }

  .input-search div button {
    position: static;
    transform: unset;
    margin-top: 1rem;
  }
}

/* === bar Ifinte News === */

.bar-infinte-news {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: var(--color-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: var(--z-level4);
}

.bar-infinte-news span {
  color: #C3A770;
  font-family: 'Janna-Bold';
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 6rem;
}

.bar-infinte-news span svg {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
}

.bar-infinte-news>div {
  flex: 0 0 calc(100% - 6rem);
  overflow: hidden;
  white-space: nowrap;
}

.bar-infinte-news .text {
  display: flex;
  gap: 3rem;
  animation: scrollNews 25s linear infinite;
}

.bar-infinte-news:hover .text {
  animation-play-state: paused;
}

html[dir="ltr"] .bar-infinte-news .text {
  animation: scrollNewsLTR 25s linear infinite;
}

.bar-infinte-news .text a {
  color: var(--color-white);
  font-size: 1rem;
  position: relative;
}

.bar-infinte-news .text a:hover {
  color: #ffebc4;

}

.bar-infinte-news .text a::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #C3A770;
  position: absolute;
  top: 50%;
  left: calc(-1.5rem - 0.25rem);
  transform: translateY(-50%);
}

@keyframes scrollNews {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

@keyframes scrollNewsLTR {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* === Content Page === */

.content-page {
  display: flex;
  flex-direction: column;
  /* gap: 2rem; */
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content-page>div {
  margin-bottom: 2rem;
}

[class*="bg-light"]:has(+[class*="bg-"]),
[class*="bg-light"]:has(+.follow-us) {
  margin-bottom: 0rem;
}

/* === Notice AMAD === */

.notice-amad {
  margin-top: 2rem;
}

.notice-amad a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark-2);
  color: var(--color-white);
  font-family: 'Janna-Bold';
}

.notice-amad p {
  background-color: #FFF2F4;
  padding: 0.5rem 1rem;
  color: var(--color-black);
  min-height: 100%;
  display: flex;
  align-items: center;
}

/* === Hero > Swiper === */

.hero .swiper {
  height: 530px;
  border-radius: 0.625rem;
  display: flex;
  overflow: hidden;
}

.hero .swiper .title-section {
  position: absolute;
  right: 0;
  bottom: 1rem;
  z-index: var(--z-level2);
  background-color: var(--color-primary);
  color: var(--color-white) #FFFFFF;
  border-start-end-radius: 5px;
  border-end-end-radius: 5px;
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html[dir="ltr"] .hero .swiper .title-section {
  right: unset;
  left: 0;
}

.hero .swiper .swiper-slide,
.hero .swiper .swiper-slide a {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.hero .swiper .swiper-slide {
  border-radius: 0.625rem;
  overflow: hidden;
}

.hero .swiper .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 6s;
}

.hero .swiper .swiper-slide-active a img {
  transform: scale(1.125);
}

.hero .swiper .swiper-slide a::before,
.box-news-overly::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, #00000029);
  opacity: 0.85;
  z-index: var(--z-level1);
  transition: 0.5s;
}

.hero .swiper .swiper-slide a:hover::before {
  opacity: 0.95;
}

.hero .swiper .swiper-slide a .text,
.box-news-overly .text {
  position: absolute;
  z-index: var(--z-level2);
  inset: 0;
  padding: 2rem;
  padding-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero .swiper .swiper-slide a .text {
  padding-bottom: 5rem;
}

.hero .swiper .swiper-slide a .text p {
  color: #FFC179;
}

.hero .swiper .swiper-slide a .text h1,
.hero .swiper .swiper-slide a .text h2 {
  color: var(--color-white);
  font-family: 'Janna-Bold';
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.75;
  /* min-height: calc(1.75rem * 1.75 * 2); */
}

.hero .swiper .swiper-slide a .text span {
  color: var(--color-white);
}

.hero .swiper .swiper-pagination {
  width: 60%;
  bottom: 1.8rem;
  left: 1rem;
  display: flex;
  justify-content: flex-end;
}

html[dir="ltr"] .hero .swiper .swiper-pagination {
  left: unset;
  right: 1rem;
}

.hero .swiper .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  opacity: 1;
  background-color: #d9d9d9;
  transition: 0.3s;
  border-radius: 10rem;
}

.hero .swiper .swiper-pagination-bullet-active {
  background-color: #FFC179;
  width: 2rem;
  flex: 0 0 2rem;
}

.hero .swiper .timeline {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  overflow: hidden;
  z-index: 9;
}

.hero .swiper .timeline .line {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-primary);
}

.hero .swiper .timeline.animate .line {
  animation: fill 7s linear forwards;
}

@keyframes fill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 399.9px) {
  .hero .swiper .title-section {
    top: 1rem;
    bottom: unset;
  }

  .hero .swiper .swiper-slide a .text span {
    margin-inline-start: unset;
  }

  .hero .swiper .swiper-slide a .text {
    padding-bottom: 4rem;
  }

  .hero .swiper .swiper-pagination {
    width: calc(100% - 2rem);
    justify-content: center;
  }

  .hero .swiper .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    flex: 0 0 0.75rem;
  }
}

/* === Box News Overly === */

.box-news-overly {
  display: flex;
  position: relative;
  height: 250px;
  border-radius: 0.625rem;
  overflow: hidden;
}

.box-news-overly img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.box-news-overly:hover img {
  transform: scale(1.05);
}

.box-news-overly .text {
  padding: 1.25rem;
  color: var(--color-white);
}

.box-news-overly .text .title {
  font-family: 'Janna-Bold';
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === Corner === */

.corner {
  position: relative;
  height: 100%;
  border-radius: 0.625rem;
  background-color: #E9E9E9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .corner {
    height: 530px;
  }
}

.corner .title-section {
  display: inline-flex;
  position: absolute;
  top: 1.25rem;
  z-index: var(--z-level3);
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(195, 167, 112, 0.7);
  border-start-end-radius: 5px;
  border-end-end-radius: 5px;
  padding: 0.25rem 0.625rem;
  padding-inline-end: 1rem;
  color: var(--color-white);
  line-height: 1.5;
}

.corner .title-section svg {
  height: 1.375rem;
  width: auto;
  transition: 0.3s;
}

html[dir="ltr"] .title-section-normal svg,
html[dir="ltr"] .corner .title-section svg {
  transform: rotate(180deg);
}

.corner .title-section:hover svg {
  margin-inline-start: 0.5rem;
}

.corner a:not(.box-news-overly):not(.title-section) {
  display: flex;
  align-items: flex-start;
  margin: 1rem 1.5rem;
  gap: 1rem;
}

.corner a:not(.box-news-overly):not(.title-section) .icon {
  display: inline-flex;
  position: relative;
  top: 0.75rem;
}

.corner a:not(.box-news-overly):not(.title-section) .icon svg {
  width: 1rem;
  height: auto;
  flex: 0 0 1rem;
}

.corner a:not(.box-news-overly):not(.title-section):hover .icon svg [fill] {
  fill-opacity: 1;
}

.corner a:not(.box-news-overly):not(.title-section):hover .icon svg [fill] {
  fill: var(--color-primary);
}

.corner a:not(.box-news-overly):not(.title-section) .title {
  color: var(--color-black);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: normal;
}

.corner a:not(.box-news-overly):not(.title-section):hover .title {
  color: var(--color-primary);
}

.corner a:not(.box-news-overly):not(.title-section) span {
  color: var(--color-blue);
}

/* === Space Ad === */

.space-ad a {
  display: flex;
}

.space-ad a img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
}

/* === News === */

.title-section-normal {
  align-items: center;
  gap: 0.75rem;
  color: var(--color-dark);
  font-family: 'Janna-Bold';
  line-height: 1.5;
  transition: 0.3s;
}

.title-section-normal:hover {
  color: var(--color-primary);
}

.title-section-normal:hover svg {
  margin-inline-start: 0.5rem;
}

.news .box-first {
  display: block;
}

.news .box-first .img {
  border-radius: 0.625rem;
  overflow: hidden;
}

.news .box-first img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  max-height: 350px;
  object-fit: cover;
  transition: 0.3s;
}

.news .box-first:hover img {
  transform: scale(1.1);
}

.news .box-first .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.news .box-first b {
  color: var(--color-dark);
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news .box-first .title {
  color: var(--color-dark);
  font-family: 'Janna-Bold';
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.news .box-first p {
  color: #616A76;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news .box-first span {
  color: var(--color-blue);
}

.news .box-first:hover .title {
  color: var(--color-primary);
}

.list-news a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.list-news .img {
  display: flex;
  border-radius: 0.625rem;
  overflow: hidden;
  margin-bottom: 1rem;
  height: 250px;
  transition: 0.3s;
}

.list-news a:hover .img {
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.16);
}

.list-news .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.list-news a:hover .img img {
  transform: scale(1.1);
}

.list-news .text {
  height: calc(100% - 250px - 1rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list-news .title {
  color: var(--color-black);
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: normal;
}

.list-news a:hover .title {
  color: var(--color-primary);
}

.list-news span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-blue);
}

.list-news span [fill] {
  fill: var(--color-blue);
}

/* === News2 === */

.bg-light-gray {
  background-color: #F7F7F2;
  padding: 2.5rem 0;
}

.news2 .box-news-overly {
  min-height: 350px;
  height: 100%;
}

.list-news-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.list-news-column a {
  display: flex;
  gap: 1rem;
  height: calc((100% - 2rem) / 2);
}

.list-news-column a .img {
  height: 100%;
  width: 33%;
  border-radius: 0.625rem;
  overflow: hidden;
}

.list-news-column a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.list-news-column a:hover .img img {
  transform: scale(1.1);
}

.list-news-column a .text {
  width: calc(67% - 1rem);
}

.list-news-column a .text .title {
  color: var(--color-black);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: normal;
  line-height: 1.5;
}

.list-news-column a .text span {
  color: var(--color-blue);
}

.list-news-column a:hover .text .title {
  color: var(--color-primary);
}

/* === Blogger === */

/* [class*="bg-light"] {
  margin-bottom: -2rem;
}

[class*="bg-light"]+:not([class*="bg-light"]) {
  margin-top: 2rem;
} */

.bg-light-yellow {
  background-color: #FFFBE5;
}

.blogger {
  /* margin-top: -2rem;
  margin-bottom: -2rem; */
}

.col-blogger {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.blogger .list-blogger a {
  width: 100%;
}

.blogger .list-blogger .img {
  height: 150px;
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
  display: flex;
  margin-bottom: 0.5rem;
}

.blogger .list-blogger .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.blogger .list-blogger .title {
  color: var(--color-black);
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  font-size: 1.1rem;
}

.blogger .list-blogger a:hover .title {
  color: var(--color-blue);
}

.blogger .list-blogger a:hover .img img {
  transform: scale(1.05);
}

.blogger .list-blogger p {
  color: var(--color-primary);
}

.blogger .list-blogger span {
  color: var(--color-blue);
}

.blogger .list-titles {
  background-color: var(--color-dark);
  min-height: 100%;
}

.blogger .list-titles .title-section-normal {
  color: var(--color-white);
}

.blogger .list-titles .title-section-normal:hover {
  color: var(--color-primary);
}

.blogger .list-titles .title-section-normal svg [stroke] {
  stroke: var(--color-white);
}

.blogger .list-titles div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blogger .list-titles div a {
  color: var(--color-white);
  position: relative;
  padding-inline-start: 1.5rem;
  transition: 0.3s;
  font-size: 1.1rem;
  line-height: 1.5;
}

.blogger .list-titles div a:hover {
  color: #FFC179;
}

.blogger .list-titles div a::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 0;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-white);
  border-radius: 50%;
}

html[dir="ltr"] .most-read div a::before,
html[dir="ltr"] .blogger .list-titles div a::before {
  right: unset;
  left: 0;
}

.blogger+div {
  /* margin-top: 2rem; */
}

/* === News Border === */

.box-news-border {
  width: 100%;
  height: 100%;
  border: 1px solid #E9E9E9;
  border-radius: 0.625rem;
  overflow: hidden;
}

.box-news-border .img {
  width: 100%;
  display: flex;
  height: 250px;
  border-radius: 0.625rem;
  overflow: hidden;
}

.news-border .box-news-border .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-border .box-news-border .title {
  color: var(--color-black);
  line-height: 1.5;
}

.list-news-column .box-news-border .title {
  font-size: 1rem;
}

.news-border .box-news-border:hover .title {
  color: var(--color-primary) !important;
}

.news-border .box-news-border p {
  font-family: 'Janna-Bold';
  color: var(--color-blue);
}

.news-border .box-news-border span {
  color: var(--color-primary);
}

.news-border .list-news-column {
  gap: 1.5rem;
}

.news-border .list-news-column .img {
  min-height: 110px;
  max-height: 150px;
  height: 100%;
}

.news-border .list-news-column .text {
  padding: 0.5rem 0;
  padding-inline-end: 0.5rem;
}

.news-border .list-news-column a {
  height: calc((100% - 3rem) / 3);
}

.news-border .list-news-column a .title,
.news-border .list-news-column a p,
.news-border .list-news-column a span {
  margin: 0;
}

.news-border .list-news-column a .img {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}

.news-border .list-news-column a span {
  color: var(--color-primary);
}

.news-border2 .img {
  height: 180px;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
}

.news-border2 a .img img {
  transition: 0.3s;
}

.news-border2 a:hover .img img {
  transform: scale(1.05);
}

.news-border2 .title {
  font-weight: normal;
}

/* === Most Read === */

.most-read {
  border: 1px solid #E9E9E9;
  border-radius: 0.625rem;
  overflow: hidden;
  min-height: 100%;
}

.most-read .title-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: 'Janna-Bold';
  width: 100%;
  text-align: center;
}

.most-read div {
  counter-reset: item;
}

.most-read div a {
  counter-increment: item;
  position: relative;
  padding-inline-start: 2.25rem;
  color: var(--color-black);
  width: 100%;
  line-height: 1.5;
}

.most-read div a:hover {
  color: var(--color-primary);
}

.most-read div a:not(:first-child) {
  padding-top: 0.5rem;
}

.most-read div a:not(:last-child) {
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 0.5rem;
}

.most-read div a::before {
  position: absolute;
  content: counter(item, decimal-leading-zero);
  font-size: 1.25rem;
  color: var(--color-gray-light);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Janna-Bold';
  transition: 0.3s;
}

.most-read div a:hover::before {
  color: var(--color-primary);
}

/* === Multi News === */

.multi-news {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.multi-news .box-news-overly {
  height: 300px;
}

.multi-news .box-news-overly .title {
  font-weight: normal;
  font-family: 'Janna-Regular';
}

.multi-news .box-news-overly:hover .title {
  color: #ffd68d;
}

/* === Follow Us === */

.follow-us {
  background-color: #D03E30;
  padding: 3rem 0;
  /* margin-top: -2rem; */
}

.follow-us .title {
  color: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  line-height: 1.5;
}

.follow-us .title b {
  font-size: 2.5rem;
  font-family: 'Janna-Bold';
}

.follow-us .links-social a {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 1.5rem 1rem;
  border-radius: 0.625rem;
  gap: 1rem;
  transition: 0.3s;
  height: 100%;
  justify-content: space-between;
}

.follow-us .links-social a>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Janna-Bold';
}

.follow-us .links-social a span {
  font-size: 0.925rem;
  background-color: var(--color-white);
  padding: 0.25rem 0.5rem;
  text-align: center;
  border-radius: 0.25rem;
  color: var(--color-black);
  font-family: 'Janna-Bold';
}

.follow-us .links-social a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.follow-us .links-social a i {
  display: inline-flex;
}

.follow-us .links-social a i svg {
  width: auto;
  flex: 1 0 auto;
  height: 2.5rem;
  max-width: 3rem;
}

/* === Details Page === */

.bread-crumb .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.bread-crumb .links a {
  color: var(--color-gray-light);
}

.bread-crumb .links a:hover {
  color: var(--color-primary);
}

.bread-crumb .links svg {
  width: 0.325rem;
  height: auto;
}

html[dir="ltr"] .bread-crumb .links svg {
  transform: rotate(180deg);
}

.content-news .titles {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.content-news .title1 {
  color: #464646;
  font-family: 'Janna-Bold';
}

.content-news .title2 {
  color: var(--color-primary);
  font-family: 'Janna-Bold';
}

.content-news .title3 {
  color: #464646;
  font-weight: normal;
}

.content-news .date {
  color: #888888;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.content-news .date svg {
  height: 1.125rem;
  width: auto;
}

.content-news .main-image {
  display: flex;
  overflow: hidden;
  border-radius: 0.625rem;
  position: relative;
  justify-content: center;
}

.content-news .main-image>div {
  width: auto;
  min-width: 60%;
  max-width: 85%;
  display: flex;
  flex-direction: column;
}

.content-news .main-image img {
  width: auto;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 0.625rem;
}

.content-news .main-image p:not(.date) {
  position: absolute;
  bottom: 3rem;
  right: 50%;
  transform: translateX(50%);
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.75rem 1.5rem;
  color: var(--color-white);
  min-width: 60%;
  text-align: center;
  border-radius: 0.25rem;
}

.content-news .main-image:has(.date) p:not(.date) {
  bottom: 3.5rem;
}

.content-news .main-image:not(:has(.date)) p:not(.date) {
  bottom: 1.5rem;
}

.content-news .main-image .date {
  margin-top: 0.5rem;
}

@media (max-width: 767.9px) {
  .content-news .main-image img {
    max-width: 100%;
  }
}

.content-news .writer {
  gap: 0.85rem;
  color: #888888;
}

.content-news .writer div:not(.img) {
  display: flex;
  flex-direction: column;
}

.content-news .writer div:not(.img) i {
  font-style: normal;
  font-size: 0.75rem;
}

.content-news .writer:hover {
  color: var(--color-primary);
}

.content-news .writer:hover div:not(.img) i {
  color: var(--color-blue);
}

.content-news .writer img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0);
  transition: 0.3s;
}

.content-news .writer:hover img {
  filter: saturate(1);
}

.content-news .col-tools-text {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.content-news .col-tools {
  width: 3rem;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 6rem;
  z-index: var(--z-level1);
  transition: 0s;
  height: 350px;
  transition-delay: 1s;
}

.content-news .col-tools:has(.share.open) {
  height: 515px;
  transition-delay: 0s;
}

.content-news .col-text {
  width: calc(100% - 4.5rem);
}

.content-news .col-text * {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.content-news .tools {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.content-news .tools>a {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F5;
  border-radius: 50%;
  transition: 0.3s;
}

.content-news .tools>div {
  width: 2.25rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  background: #F5F5F5;
  padding: 0.5rem 0;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #888888;
}

.content-news .tools>div span,
.content-news .tools>div b {
  cursor: pointer;
  transition: 0.15s;
  display: inline-flex;
}

.content-news .tools .share {
  gap: 0;
}

.content-news .tools .share .share-social {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.content-news .tools .share.open {
  background-color: #ddf1ff;
}

.content-news .tools .share.open .share-social {
  margin-top: 0.75rem;
  max-height: 220px;
}

.content-news .tools .share .share-social svg {
  width: 1.125rem;
  height: 1.125rem;
}

.content-news .tools>a:hover {
  background: #eceaea;
}

.content-news .tools>div span:hover,
.content-news .tools>div b:hover {
  transform: scale(1.05);
  color: #504d4d;
}

.content-news .tools>a svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gallery {
  display: grid;
  gap: 3px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {

  .gallery[num="1"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 100px);
  }

  .gallery[num="2"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 100px);
  }

  .gallery[num="3"],
  .gallery[num="4"] {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 100px);
  }

  .gallery[num="5"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
  }

  .gallery:has(> :nth-child(6)) {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery[num="1"]>:nth-child(1) {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
  }

  .gallery[num="2"]>:nth-child(1) {
    grid-row: span 2 / span 2;
  }

  .gallery[num="2"]>:nth-child(2) {
    grid-row: span 2 / span 2;
  }

  .gallery[num="3"]>:nth-child(1) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
  }

  .gallery[num="3"]>:nth-child(2) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 3;
  }

  .gallery[num="3"]>:nth-child(3) {
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
    grid-column-start: 3;
    grid-row-start: 1;
  }

  .gallery[num="4"]>:nth-child(1) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
  }

  .gallery[num="4"]>:nth-child(2) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 3;
  }

  .gallery[num="4"]>:nth-child(3) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 1;
  }

  .gallery[num="4"]>:nth-child(4) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 3;
  }

  .gallery[num="5"]>:nth-child(2),
  .gallery:has(> :nth-child(6))>:nth-child(2) {
    grid-column-start: 1;
    grid-row-start: 2;
  }

  .gallery[num="5"]>:nth-child(3),
  .gallery:has(> :nth-child(6))>:nth-child(3) {
    grid-column: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
  }

  .gallery[num="5"]>:nth-child(4),
  .gallery:has(> :nth-child(6))>:nth-child(4) {
    grid-row-start: 2;
  }

  .gallery[num="5"]>:nth-child(5),
  .gallery:has(> :nth-child(6))>:nth-child(5) {
    grid-row-start: 2;
  }
}

.gallery>div {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery>div span {
  position: absolute;
  bottom: 1rem;
  right: 50%;
  transform: translateX(50%);
  z-index: var(--z-level2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  color: #fff !important;
  text-align: center;
  width: 90%;
  max-width: 90%;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0;
  transition: 0.3s;
}

.gallery>div svg {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: var(--z-level2);
  opacity: 0;
  transition: 0.3s;
}

.gallery>div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-level1);
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: 0.3s;
}

.gallery>div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.gallery>div:hover img {
  transform: scale(1.15);
}

.gallery>div:hover::before,
.gallery>div:hover span,
.gallery>div:hover svg {
  opacity: 1;
}

@media (max-width: 575.9px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 200px !important;
  }
}

@media (max-width: 399.9px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

/* === Light Box === */

.lightbox {
  display: none;
  position: fixed;
  z-index: var(--z-level6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  max-width: 700px;
  line-height: 1.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.lightbox-img.slide-next,
.lightbox-caption.slide-next {
  opacity: 0;
  transform: translateX(40px) scale(0.95);
}

.lightbox-img.slide-prev,
.lightbox-caption.slide-prev {
  opacity: 0;
  transform: translateX(-40px) scale(0.95);
}

.lightbox-caption.slide-next,
.lightbox-caption.slide-prev {
  transform: translateY(10px);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  padding: 10px 15px;
  user-select: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #ccc;
  transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* === Mode Read === */

.content-page:not(.mode-read) .close {
  display: none;
}

.mode-read .close {
  position: fixed;
  top: 1.5rem;
  left: 1.25rem;
  width: auto;
  display: inline-flex;
  z-index: var(--z-level5);
  font-size: 2.5rem;
  line-height: 1;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

html[dir="ltr"] .mode-read .close {
  left: unset;
  right: 1.25rem;
}

.mode-read .content-news {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  z-index: var(--z-level5);
  padding: 2rem;
  padding-inline-start: 3rem;
  background-color: #FFF1D3;
  transition: 0s;
}

.mode-read .content-news * {
  color: var(--color-black) !important;
}

.mode-read .content-news .date svg [fill] {
  fill: var(--color-black) !important;
}

.mode-read .col-image-writer,
.mode-read .col-tools .tools>*:not(.control-fsz),
.mode-read .gallery {
  display: none;
}

.mode-read .col-tools {
  position: fixed;
  top: 1.5rem;
  right: 0.5rem;
  width: auto;
  height: auto;
  z-index: var(--z-level5);
}

html[dir="ltr"] .mode-read .col-tools {
  right: unset;
  left: 0.5rem;
}

.mode-read .col-tools .control-fsz {
  background: unset;
  font-size: 1.3rem;
  padding: 0;
}

/* === Atachments === */

.title-attachment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  gap: 1rem;
  background-color: #E2E5ED;
  border-radius: 10px;
}

.title-attachment:has(+.body-attachment) {
  border-radius: 10px 10px 0 0;
}

.youtube .title-attachment {
  background-color: #E2E5ED;
}

.facebook .title-attachment {
  background-color: #DFF0FA;
  color: #299CDB;
}

.video .title-attachment {
  background-color: #E9EBEC;
  color: #464646;
}

.file .title-attachment {
  background-color: #E2E5ED;
}

.music .title-attachment {
  background-color: #FDE8E4;
  color: #F06548;
}

.iframe .title-attachment {
  background-color: #DBEAFE;
  color: #464646;
}

.title-attachment>div {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #405189;
}

.title-attachment i {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  border-radius: 50%;
}

.title-attachment i svg {
  width: auto;
  height: auto;
  max-height: 1.325rem;
  max-width: 1.325rem;
  flex: 1 0 auto;
}

.title-attachment a {
  display: inline-flex;
  width: 2rem;
}

.title-attachment a svg {
  width: 2rem;
  height: auto;
  max-height: 2rem;
}

.title-attachment a svg [fill] {
  fill: #3476BF;
  transition: 0.3s;
}

.title-attachment a:hover svg [fill] {
  fill: var(--color-primary);
}

.body-attachment {
  padding: 1rem;
  background-color: #f7f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 10px 10px;
}

.body-attachment iframe {
  max-width: 100%;
}

.map iframe {
  width: 100%;
}

.body-attachment video {
  width: 100%;
  height: auto;
}

/* === Music Player === */

.audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  color: var(--color-black);
  width: 100%;
}

.audio-player .play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f06548;
  color: var(--color-white);
  cursor: pointer;
}

.audio-player .info {
  flex: 1;
}

.audio-player .title {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.audio-player .time {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  color: var(--color-black);
}

.audio-player .progress {
  height: 5px;
  background: #ffd2c9;
  border-radius: 5px;
  margin-top: 5px;
  cursor: pointer;
}

.audio-player .progress-bar {
  height: 100%;
  width: 0%;
  background: #f06548;
  border-radius: 5px;
}

/* === Modal PDF === */

.modal-pdf [class*="container"] {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.modal-pdf .content {
  padding: 0;
  border-radius: 0;
  width: 100%;
}

.modal-pdf .content [class*="col"] {
  padding: 0;
  display: flex;
}

.modal-pdf iframe {
  height: calc(100vh - 4rem);
}

/* === Same Links === */

.same-links {
  background-color: #F5F5F5;
  padding: 1.5rem 1rem;
  border-radius: 0.625rem;
}

.same-links .title {
  color: #464646;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.625rem;
}

.same-links .title svg {
  width: 1.75rem;
  height: auto;
}

.same-links .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.same-links .list a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
  width: 100%;
  transition: 0.3s;
}

.same-links .list a:hover {
  margin-inline-start: 0.5rem;
}

.same-links .list a svg {
  width: 0.5rem;
  height: auto;
}

.same-links .list a p {
  max-width: calc(100% - 1.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #464646;
}

/* === Tags === */

.tags a {
  display: block;
  height: 100%;
  color: #464646;
  background-color: #F3F8FF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.5rem 1rem;
  text-align: center;
  transition: 0.2s;
  border-radius: 0.625rem;
}

.tags a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* === Short Links === */

.short-link {
  border: 1px solid #E9E9E9;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.625rem;
  justify-content: space-between;
}

.short-link b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #888888;
  font-family: 'Janna-Bold';
}

.short-link span,
.short-link i {
  background-color: #F5F5F5;
  font-style: normal;
  padding: 0.25rem 1rem;
  border-radius: 0.625rem;
}

.short-link i {
  cursor: pointer;
}

.short-link i:hover {
  background-color: #e2e2e2;
}

@media (max-width: 575.9px) {
  .content-news .col-tools-text {
    gap: 0.75rem;
  }

  .content-news .col-text {
    width: calc(100% - 3.75rem);
  }

  .short-link {
    flex-wrap: wrap;
    width: 100%;
  }

  .short-link b {
    order: 0;
  }

  .short-link i {
    order: 1;
  }

  .short-link span {
    order: 2;
    width: 100%;
    text-align: center;
  }
}

/* === More News === */

.content-page .more-news {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: -2rem;
}

.content-page .more-news .box-news-border {
  background-color: var(--color-white);
}

.more-news .box-news-border span {
  color: #c7c7c7;
}

/* === Toaster === */

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #22c55e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: var(--z-level6);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === Head Category === */

.head-category b {
  font-family: 'Janna-Bold';
  color: var(--color-dark);
  font-size: 2.5rem;
}

.head-category p {
  color: var(--color-black);
}

.main-news {
  height: 450px;
}

.main-news .text {
  padding: 2rem;
}

/* === More, Loader, No Data === */

.btn-more {
  display: inline-block;
  border: 1px solid #C43538;
  background-color: #fff;
  color: #C43538;
  transition: 0.3s;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-more:hover {
  background-color: #C43538;
  color: #fff;
}

.loader svg {
  animation: rotateInfinite 1s linear infinite;
}

@keyframes rotateInfinite {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.row-no-data h6 {
  color: #454869;
  font-size: 1rem;
  font-weight: normal;
}

.row-no-data p {
  font-size: 0.875rem;
  color: #454869;
}

/* === Box Form === */

.box-form {
  padding: 1.25rem 1.75rem;
  position: relative;
  z-index: var(--z-level2);
  border-radius: 0 0 10px 10px;
  background-color: #d5c4a4;
}

.relative {
  position: relative;
}

.box-form input,
.box-form select,
.box-form button {
  padding: 0.75rem 0.875rem;
  border-radius: 5px;
  background-color: var(--color-white);
  width: 100%;
  border: 1px solid transparent;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--bg-dark);
  outline: none;
  transition: 0.2s;
}

.box-form input::placeholder {
  color: #C0C0C0;
}

.box-form select {
  padding-inline-end: 1.25rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.box-form select.is-default {
  color: #C0C0C0;
}

.box-form select.is-selected {
  color: var(--bg-dark);
}

.box-form select+svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: auto;
}

html[dir="ltr"] .box-form select+svg {
  left: unset;
  right: 1rem;
}

.box-form input:focus,
.box-form select:focus {
  border-color: var(--color-blue);
}

.box-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #C43538;
  color: #fff;
  gap: 0.325rem;
  cursor: pointer;
}

.box-form button:hover {
  transform: scale(1.025);
  background-color: #af2d2f;
}

/* === Contact Page === */

.custom-input {
  position: relative;
  width: 100%;
}

.custom-input svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-level1);
  width: 1.125rem;
  height: 1.125rem;
}

.checkbox-input+small,
.custom-input+small,
.upload-area~small {
  display: inline-block;
  color: #5f6368;
  font-size: 0.7rem;
  margin-top: 0.5rem;
}

.checkbox-input.error+small,
.custom-input.error+small,
.upload-area.error~small {
  color: #EF4444;
}

.custom-input input,
.custom-input select,
.custom-input textarea {
  width: 100%;
  outline: none;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  line-height: 1.5;
  padding-inline-end: 2.5rem;
  border: 1px solid #dadce0;
  border-radius: 0.25rem;
  background: #fff;
  transition: all 0.2s ease;
}

.custom-input textarea {
  resize: none;
}

.custom-input.error input,
.custom-input.error select,
.custom-input.error textarea {
  border-color: #EF4444 !important;
}

.custom-input input:hover,
.custom-input select:hover,
.custom-input textarea:hover {
  border-color: #c6c6c6;
}

.custom-input input:focus,
.custom-input select:focus,
.custom-input textarea:focus {
  border-color: var(--main2);
}

.custom-input label {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 4px;
  color: #5f6368;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s ease;
}

.custom-input textarea+label {
  top: 1.5rem;
}

.custom-input label span,
.checkbox-input label span {
  color: #DC2626;
}

.custom-input input:focus+label,
.custom-input input:not(:placeholder-shown)+label,
.custom-input select:focus+label,
.custom-input select:valid+label,
.custom-input textarea:focus+label,
.custom-input textarea:not(:placeholder-shown)+label {
  top: -2px;
  font-size: 0.875rem;
  color: var(--main2);
}

.upload-area {
  border: 1px dashed #299CDB;
  background-color: #F9FBFD;
  border-radius: 5px;
  padding: 1.5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.upload-area.dragover {
  border-color: #2088c0;
  transform: scale(1.02);
}

.upload-inner .title {
  color: #464646;
  font-size: 1rem;
  line-height: 1.5;
}

.upload-inner .icon svg {
  width: 2rem;
  height: auto;
}

.upload-inner .subtitle {
  color: var(--main2);
  font-size: 1rem;
}

.upload-inner .formats {
  color: #8F8F8F;
  font-size: 0.875rem;
}

.files-preview {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file-card {
  background: #f1f5f9;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeIn 0.3s ease;
}

.file-card span {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-remove {
  cursor: pointer;
  color: #DC2626;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkbox-input input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--main2);
  position: relative;
  top: 0.25rem;
  margin-inline-end: 0.75rem;
}

.checkbox-input label {
  color: #464646;
  font-size: 1rem;
}

.msg-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.msg-contact i svg {
  width: 5rem;
  height: 5rem;
}

.msg-contact>div {
  line-height: 2;
  font-size: 1rem;
  color: var(--color-black);
}

.msg-contact>div b {
  font-size: 1.125rem;
  color: var(--color-black);
}

.btn-submit {
  border: 1px solid #C43538;
  background-color: #fff;
  color: #C43538;
  transition: 0.3s;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  gap: 0.5rem;
}

.btn-submit svg {
  width: 1.5rem;
  height: auto;
}

.btn-submit svg [fill] {
  fill: #C43538;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #C43538;
  color: #fff;
}

.btn-submit:hover [fill] {
  fill: var(--color-white);
}

html[dir="rtl"] .flatpickr-time {
  display: flex;
  direction: rtl;
  align-items: center;
}

html[dir="rtl"] .flatpickr-time .numInputWrapper:nth-child(1) {
  order: 2;
}

html[dir="rtl"] .flatpickr-time .flatpickr-time-separator {
  order: 1;
}

html[dir="rtl"] .flatpickr-time .numInputWrapper:nth-child(2) {
  order: 1;
}

html[dir="rtl"] .flatpickr-time .flatpickr-am-pm {
  order: 3;
}

html[data-theme="dark"] .custom-input input,
html[data-theme="dark"] .custom-input select,
html[data-theme="dark"] .custom-input textarea {
  border: 1px solid #f7f7f7;
  background: #172433;
  color: #fff;
}

html[data-theme="dark"] .custom-input label {
  background: #172433;
  color: #fff;
}

html[data-theme="dark"] .upload-area {
  border: 1px dashed #ffffff;
  background-color: #2b2c3c;
}

html[data-theme="dark"] .upload-inner svg [fill] {
  fill: #fff;
}

html[data-theme="dark"] .upload-inner .formats {
  color: #e5e3e3;
}

html[data-theme="dark"] .msg-contact>div {
  color: #fff;
}

html[dir="ltr"] .custom-input label {
  right: unset;
  left: 12px;
}

html[dir="ltr"] .custom-input svg {
  left: unset;
  right: 1rem;
}

/* === Print Page === */

@media print {
  .nav-bar {
    position: static;
    box-shadow: none;
    border-bottom: none;
  }

  .nav-bar .logo {
    position: static;
    max-width: unset !important;
  }

  .nav-bar .logo img {
    height: 3.5rem;
  }

  header,
  .nav-bar .links,
  .open-menu-mobile,
  .break-news,
  .notice-amad,
  .bread-crumb,
  .content-news .col-tools,
  .gallery,
  footer,
  .attachments,
  .space-ad,
  .more-news,
  .copy-right,
  .bar-infinte-news {
    display: none !important;
  }

  .content-news .col-text {
    width: 100%;
  }

  [class*="container"] {
    max-width: calc(100% - 2rem) !important;
  }
}

html[dir="ltr"] .same-links .list a svg {
  transform: rotate(180deg);
}

/* === Profile Writer === */

.profile-writer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.profile-writer .img {
  flex: 0 0 200px;
  height: 200px;
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
}

.profile-writer .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-writer .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: calc(100% - 200px - 1.5rem);
}

.profile-writer .text b {
  font-size: 1.75rem;
  display: block;
}

.profile-writer .text p {
  color: #888888;
  font-size: 1.125rem;
}

.profile-writer .text ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.profile-writer .text ul span {
  font-family: 'Janna-Bold';
  color: var(--color-dark);
  display: inline-block;
  margin-inline-end: 0.5rem;
}

.profile-writer .text ul a {
  color: #888888;
}

.profile-writer .text ul a:hover {
  color: var(--color-primary);
}

@media (max-width: 767.9px) {
  .profile-writer {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .profile-writer .text {
    flex: 0 0 100%;
  }

  .profile-writer .text b,
  .profile-writer .text ul,
  .profile-writer .text p {
    width: 100%;
  }
}

/* === List Break News === */

.list-break-news {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.list-break-news a {
  width: 100%;
  display: block;
  border: 1px solid #FFEDF0;
  padding: 0.5rem 1rem;
  transition: 0.3s;
}

.list-break-news a:hover {
  border-color: var(--color-primary);
}

.list-break-news a p {
  color: var(--color-black);
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.list-break-news a div {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: var(--color-blue);
}

.list-break-news a div i {
  display: inline-flex;
}

.list-break-news a div i svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.list-break-news a div i svg [fill] {
  fill: var(--color-blue);
}

/* === Dark === */

html[data-theme="dark"] {
  --color-dark: #ffffff;
  --color-blue: #6bb1ff;
}

html[data-theme="dark"] .nav-bar,
html[data-theme="dark"] body {
  background: #172433;
}

html[data-theme="dark"] .nav-bar .links a {
  color: #e7e7e7;
}

html[data-theme="dark"] .corner {
  background-color: #141F2C;
}

html[data-theme="dark"] .corner a:not(.box-news-overly):not(.title-section) .icon svg [fill] {
  fill: var(--color-white);
}

html[data-theme="dark"] .bar-infinte-news {
  background: #0f1823;
}

html[data-theme="dark"] .news .box-first p,
html[data-theme="dark"] .list-news .title,
html[data-theme="dark"] .list-news-column a .text .title,
html[data-theme="dark"] .blogger .list-blogger .title,
html[data-theme="dark"] .menu-mobile .links a {
  color: #E6EDF5;
}

html[data-theme="dark"] .nav-bar .links a.active,
html[data-theme="dark"] .corner a:not(.box-news-overly):not(.title-section) .title,
html[data-theme="dark"] .list-news a:hover .title,
html[data-theme="dark"] .list-news-column a:hover .text .title,
html[data-theme="dark"] .blogger .list-blogger a:hover .title,
html[data-theme="dark"] .most-read div a,
html[data-theme="dark"] .news-border .box-news-border .title,
html[data-theme="dark"] .list-news-column a .text .title {
  color: var(--color-white);
}

html[data-theme="dark"] .bg-light-gray {
  background-color: #16212f;
}

html[data-theme="dark"] .bg-light-yellow,
html[data-theme="dark"] header .middle-bar {
  background-color: #141e2b;
}

html[data-theme="dark"] .blogger .list-titles,
html[data-theme="dark"] header .top-bar {
  background: #101925;
}

html[data-theme="dark"] .box-news-border,
html[data-theme="dark"] .most-read {
  border: 1px solid #515151;
}

html[data-theme="dark"] .most-read div a:not(:last-child) {
  border-bottom: 1px solid #515151;
}

html[data-theme="dark"] .bg-blur {
  background: rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .input-search label {
  color: #101925;
}

html[data-theme="dark"] .content-news .title1,
html[data-theme="dark"] .content-news .title3 {
  color: #efefef;
}

html[data-theme="dark"] .content-news .date {
  color: #cdcdcd;
}

html[data-theme="dark"] .content-news .date svg [fill] {
  fill: #cdcdcd;
}

html[data-theme="dark"] .content-news .col-text *,
html[data-theme="dark"] .same-links .title {
  color: var(--color-white);
}

html[data-theme="dark"] .same-links .title svg [fill] {
  fill: var(--color-white);
}

html[data-theme="dark"] .same-links .list a p {
  color: #dfdfdf;
}

html[data-theme="dark"] .same-links .list a svg [fill] {
  fill: #dfdfdf;
}

html[data-theme="dark"] .content-page .more-news .box-news-border {
  background-color: #141e2b;
}

html[data-theme="dark"] .title-attachment {
  background-color: #101925 !important;
}

html[data-theme="dark"] .title-attachment>div {
  color: var(--color-white) !important;
}

html[data-theme="dark"] .title-attachment a svg [fill] {
  fill: var(--color-blue);
}

html[data-theme="dark"] .body-attachment {
  background-color: #141f2d;
}

html[data-theme="dark"] .same-links {
  background-color: #101925;
}

html[data-theme="dark"] .tags a {
  color: #ffffff;
  background-color: #101925;
}

html[data-theme="dark"] .short-link {
  border: 1px solid #818181;
}

html[data-theme="dark"] .short-link b {
  color: var(--color-white);
}

html[data-theme="dark"] .short-link b [fill] {
  fill: var(--color-white);
}

html[data-theme="dark"] .short-link span,
html[data-theme="dark"] .short-link i {
  background-color: #101925;
  color: #e3e3e3;
}

html[data-theme="dark"] .nav-bar.active {
  background: #101925;
}

html[data-theme="dark"] .btn-more,
html[data-theme="dark"] .btn-submit {
  background-color: #C43538;
  color: var(--color-white);
}

html[data-theme="dark"] .btn-submit [fill] {
  fill: var(--color-white);
}

html[data-theme="dark"] .checkbox-input label,
html[data-theme="dark"] .msg-contact>div b {
  color: var(--color-white);
}

html[data-theme="dark"] .btn-more:hover,
html[data-theme="dark"] .btn-submit:hover {
  background-color: #101925;
  color: var(--color-white);
}

html[data-theme="dark"] .row-no-data svg [fill] {
  fill: #dfdbdb;
}

html[data-theme="dark"] .row-no-data h6,
html[data-theme="dark"] .row-no-data p,
html[data-theme="dark"] .head-category p {
  color: #dfdbdb;
}

@media (max-width: 991.9px) {
  html[data-theme="dark"] .menu-mobile {
    background: #101925;
  }
}

html[data-theme="dark"] .profile-writer .text ul a {
  color: #dfdbdb;
}

html[data-theme="dark"] .list-break-news a p {
  color: var(--color-white);
}

#postContent>*:first-child::before {
  content: "أمد/ ";
  color: red;
}

#postContent span,
#postContent a {
  display: inline;
}