@font-face {
  font-family: 'NotoKufiArabic-Regular';
  src: url('../fonts/NotoKufiArabic-Regular.ttf');
  font-display: swap;
}

@font-face {
  font-family: 'NotoKufiArabic-Bold';
  src: url('../fonts/NotoKufiArabic-Bold.ttf');
  font-display: swap;
}

:root {
  font-size: 14px;
  --main: #9B3342;
  --main2: #184F8D;
  --z-level1: 9;
  --z-level2: 99;
  --z-level3: 999;
  --z-level4: 9999;
  --z-level5: 99999;
  --z-level6: 999999;
  --z-level7: 9999999;
}

:root[data-theme="dark"] {
  --main2: #6B8AFD;
}

@media (min-width: 576px) {
  :root {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  :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;
  }
}

* {
  font-family: 'NotoKufiArabic-Regular';
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
}

.content-contact .text,
.content-contact .text * {
  margin: revert;
}

body {
  background-color: #fff;
}

.w-100 {
  width: 100%;
}

/* === Header === */
/* === Header === */

header {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-level5);
  transition: 0.3s;
}

header .logo {
  display: inline-flex;
}

header .logo img {
  height: auto;
  max-height: 3.875rem;
  width: auto;
  max-width: 13.5rem;
  transition: 0.3s;
}

.header-links,
header .tools {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
}

.header-links a,
header .tools a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  gap: 0.325rem;
}

.header-links a:not(.active)>svg:first-child {
  display: none;
  height: auto;
}

header .header-links a svg:first-child,
.header-links a>svg:first-child {
  width: 1.25rem;
  flex: 0 0 1.25rem;
  height: auto;
}

header .header-links a svg [fill] {
  fill: #fff;
}

header .tools {
  justify-content: flex-end;
}

header .tools a svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  transition: 0.3s;
}

header .tools a svg [fill],
header .tools a svg [stroke] {
  transition: 0.3s;
}

header .tools a:hover svg [fill] {
  fill: #ffe352;
}

header .tools a:hover svg [stroke] {
  stroke: #ffe352;
}

header .tools a.light-dark {
  position: relative;
}

header .tools a.light-dark>svg:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--z-level1);
}

header .tools a.light-dark:not(.light)>svg:nth-child(1) {
  opacity: 0;
}

header .tools a.light-dark.light>svg:nth-child(2) {
  opacity: 0;
}

.bg-close {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  right: 0;
  z-index: var(--z-level5);
  backdrop-filter: blur(5px);
  display: none;
}

header.down {
  padding: 0.5rem 0;
  background-color: rgb(20 20 20 / 95%);
}

.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  padding: 0;
  padding-top: 1rem;
  list-style: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: var(--z-level3);
  display: flex;
  flex-direction: column;
}

.dropdown li {
  background-color: #fff;
  overflow: hidden;
}

.dropdown li:first-child {
  border-radius: 10px 10px 0 0;
}

.dropdown li:last-child {
  border-radius: 0 0 10px 10px;
}

.dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #464646;
  transition: 0.2s;
  font-size: 0.85rem;
}

.dropdown li:not(:last-child) a {
  border-bottom: 1px solid #ececec;
}

.dropdown li a:hover {
  background: #9b3342;
}

@media (hover: hover) {
  .has-dropdown .dropdown {
    display: none;
  }

  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
    animation: showOpacity 0.3s linear both;
  }
}

@media (hover: none) {
  .has-dropdown .dropdown {
    position: static;
    min-width: unset;
    display: none;
    margin-top: 0.5rem;
  }

  .has-dropdown.open .dropdown {
    display: flex;
    animation: showOpacity 0.3s linear both;
  }
}

.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header.down .logo img {
  max-height: 3.5rem;
}

body.open-modal .bg-close {
  display: block;
  animation: showOpacity 0.2s linear both;
  z-index: var(--z-level6);
}

.has-dropdown {
  position: relative;
  list-style: none;
}

@media (max-width: 399.9px) {
  header .logo img {
    max-width: 10.5rem;
  }
}

@media (min-width: 992px) {
  .header-links a.active {
    background-color: var(--main);
    border-radius: 0.25rem;
    padding: 0.475rem 0.625rem;
  }

  .has-dropdown .dropdown {
    position: absolute;
    min-width: 150px;
    white-space: nowrap;
    z-index: var(--z-level2);
  }

  .has-dropdown .dropdown::before {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    z-index: -1;
  }

  html[data-theme="dark"] .has-dropdown .dropdown::before {
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.16);
  }

  .header-links a:not(.active):hover,
  .tools a:not(.active):hover {
    color: #ffe352;
  }
}

@media (max-width: 991.9px) {
  body>.header-links {
    position: fixed;
    top: 0;
    height: 100vh;
  }

  body>.header-links {
    right: -50%;
    width: 50%;
    background: #fff;
    z-index: var(--z-level6);
    padding: 2rem;
    transition: 0.3s;
  }

  html[dir="ltr"] body>.header-links {
    right: unset;
    left: -50%;
  }

  body>.header-links a:not(.active) {
    color: #222;
  }

  body>.header-links a:not(.active) [fill] {
    fill: #222;
  }

  body.header-links-show>.header-links {
    right: 0;
  }

  html[dir="ltr"] body.header-links-show>.header-links {
    right: unset;
    left: 0;
  }

  body.header-links-show .bg-close {
    display: block;
    animation: showOpacity 0.2s linear both;
  }

  body>.header-links {
    flex-direction: column;
    align-items: flex-start;
  }

  body>.header-links a:not(.active) {
    color: #757575;
  }

  body>.header-links a:not(.active) svg [fill] {
    fill: #757575;
  }

  .header-links a.active,
  .header-links li.active a {
    color: #000;
  }

  .header-links a.active svg [fill],
  .header-links li.active a svg [fill] {
    fill: #000;
  }

  .header-links .link-logo {
    width: 90%;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F6F6F6;
  }

  .header-links {
    gap: 1.5rem;
    font-size: 1.1rem;
  }

  .header-links a {
    gap: 0.5rem;
  }

  .header-links img {
    width: 100%;
  }

  .dropdown {
    padding-top: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
  }

  .has-dropdown {
    width: 100%;
  }

  .header-links a:not(.active)>svg:first-child {
    display: unset;
  }
}

.header-links a:not(.active) {
  transition: 0.3s;
}

@media (max-width: 767.9px) {
  body>.header-links {
    right: -75%;
    width: 75%;
  }
}

@keyframes showOpacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .header-links {
    gap: 1.5rem;
  }
}

/* === Hero === */

.hero:has(+:not(.numbers)) {
  margin-bottom: 3rem;
}

.hero .swiper,
.hero .bg-video {
  width: 100%;
  height: 70vh;
  min-height: 440px;
  max-height: 600px;
}

.hero .bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .swiper-slide,
.hero .bg-video {
  position: relative;
  z-index: var(--z-level1);
}

.hero .swiper-slide::before,
.hero .bg-video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000, #000, #0000001a);
  opacity: 0.7;
  z-index: var(--z-level1);
}

.hero .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .text {
  position: absolute;
  z-index: var(--z-level2);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #fff !important;
  width: 100%;
}

.hero .text span {
  font-size: 1.5rem;
  color: #FFCEB4;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero .text .title {
  font-size: 1.875rem;
  display: block;
  line-height: 1.5;
  font-family: 'NotoKufiArabic-Bold';
  margin-bottom: 1.5rem;
}

.hero .text .actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .text .actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #fff;
  font-size: 0.875rem;
}

.hero .text .actions a svg {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
}

.hero .text .actions a svg [stroke] {
  transition: 0.3s;
}

.hero .text .actions a:hover svg [stroke] {
  stroke: #fff;
}

html[dir="ltr"] .hero .text .actions a svg {
  transform: rotate(180deg);
}

.hero .navigation-swiper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-level1);
  display: inline-flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero .navigation-swiper>*[class*="disabled"] {
  filter: blur(1px);
}

.hero .navigation-swiper>*:not([class*="disabled"]) {
  cursor: pointer;
}

.hero .navigation-swiper>*,
.hero .navigation-swiper [fill],
.hero .navigation-swiper [stroke] {
  transition: 0.3s;
}

.hero .navigation-swiper>*:not([class*="disabled"]):hover {
  transform: scale(1.05);
}

.hero .navigation-swiper>*:not([class*="disabled"]):hover [fill] {
  fill: var(--main);
}

.hero .navigation-swiper>*:not([class*="disabled"]):hover [stroke] {
  stroke: #fff;
}

html[dir='ltr'] .hero .navigation-swiper {
  left: unset !important;
}

@media (max-width: 767.9px) {
  .hero .navigation-swiper {
    left: 0.75rem;
  }

  html[dir='ltr'] .hero .navigation-swiper {
    right: 0.75rem;
  }

  .hero .swiper,
  .hero .bg-video {
    height: 90vh;
  }
}

@media (min-width: 768px) {
  .hero .navigation-swiper {
    left: calc((100% - 720px) / 2);
  }

  html[dir='ltr'] .hero .navigation-swiper {
    right: calc((100% - 720px) / 2);
  }
}

@media (min-width: 992px) {
  .hero .navigation-swiper {
    left: calc((100% - 960px) / 2);
  }

  html[dir='ltr'] .hero .navigation-swiper {
    right: calc((100% - 960px) / 2);
  }
}

@media (min-width: 1200px) {
  .hero .navigation-swiper {
    left: calc((100% - 1140px) / 2);
  }

  html[dir='ltr'] .hero .navigation-swiper {
    right: calc((100% - 1140px) / 2);
  }
}

@media (min-width: 1400px) {
  .hero .navigation-swiper {
    left: calc((100% - 1320px) / 2);
  }

  html[dir='ltr'] .hero .navigation-swiper {
    right: calc((100% - 1320px) / 2);
  }
}

/* === Numbers === */

.numbers {
  position: relative;
  z-index: var(--z-level2);
  margin-bottom: 3rem;
}

.hero+.numbers,
.hero-pages+.numbers {
  margin-top: -6.5rem;
}

.hero-pages:has(+:not(.numbers)) {
  margin-bottom: 3rem;
}

.hero-pages:has(+.opportunities-details),
.hero-pages:has(+.google-map),
.hero-pages:has(+.intro),
.hero-pages:has(+.form-cart) {
  margin-bottom: unset;
}

.numbers .box {
  background-color: #DBEAFE;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.925rem;
  color: var(--main2);
  transition: 0.3s;
}

.numbers .box [fill] {
  fill: var(--main2);
}

.numbers .box [stroke] {
  stroke: var(--main2);
}

.numbers .box [fill],
.numbers .box [stroke] {
  transition: 0.3s;
}

.numbers .box i {
  display: inline-flex;
}

.numbers .box i svg {
  flex: 0 0 3.5rem;
  height: 3.5rem;
  width: 3.5rem;
}

.numbers .box:hover {
  background-color: #6590CA;
  color: #fff;
}

.numbers .box:hover [fill] {
  fill: #fff;
}

.numbers .box:hover [stroke] {
  stroke: #fff;
}

.numbers .box p {
  font-size: 2.5rem;
  direction: ltr;
  display: flex;
  justify-content: flex-end;
  font-weight: 900;
  align-items: center;
  font-family: 'NotoKufiArabic-Bold';
  margin-bottom: 0.625rem;
  gap: 0.25rem;
  line-height: 1;
}

html[dir='ltr'] .numbers .box p {
  direction: rtl;
}

.numbers .box b {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  line-height: 1.5;
}

@media (min-width: 300px) and (max-width: 439.9px) {
  .numbers .row>div {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 440px) and (max-width: 575.9px) {
  .numbers .box i {
    width: calc((100% / 3) * 1);
  }

  .numbers .box .text {
    width: calc((100% / 3) * 2);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 575.9px) {
  .numbers .row>div:nth-child(1) .box {
    border-radius: 1rem 1rem 0 0;
  }

  .numbers .row>div:nth-child(4) .box {
    border-radius: 0 0 1rem 1rem;
  }
}

@media (min-width: 576px) {
  .numbers .box .text {
    flex: 1 0 auto;
    max-width: calc(100% - 3rem - 0.75rem);
  }
}

@media (min-width: 576px) and (max-width: 991.9px) {
  html[dir='rtl'] .numbers .row>div:nth-child(1) .box {
    border-top-right-radius: 0.75rem;
  }

  html[dir='rtl'] .numbers .row>div:nth-child(2) .box {
    border-top-left-radius: 0.75rem;
  }

  html[dir='rtl'] .numbers .row>div:nth-child(3) .box {
    border-bottom-right-radius: 0.75rem;
  }

  html[dir='rtl'] .numbers .row>div:nth-child(4) .box {
    border-bottom-left-radius: 0.75rem;
  }


  html[dir='ltr'] .numbers .row>div:nth-child(1) .box {
    border-top-left-radius: 0.75rem;
  }

  html[dir='ltr'] .numbers .row>div:nth-child(2) .box {
    border-top-right-radius: 0.75rem;
  }

  html[dir='ltr'] .numbers .row>div:nth-child(3) .box {
    border-bottom-left-radius: 0.75rem;
  }

  html[dir='ltr'] .numbers .row>div:nth-child(4) .box {
    border-bottom-right-radius: 0.75rem;
  }

  .numbers .box .text {
    text-align: center;
  }

  .numbers .box p {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .numbers .row>div:first-child .box {
    border-top-right-radius: 0.75rem;
  }

  .numbers .row>div:last-child .box {
    border-top-left-radius: 0.75rem;
  }

  html[dir="ltr"] .numbers .row>div:first-child .box {
    border-top-right-radius: 0;
    border-top-left-radius: 0.75rem;
  }

  html[dir="ltr"] .numbers .row>div:last-child .box {
    border-top-left-radius: 0;
    border-top-right-radius: 0.75rem;
  }
}

/* === News === */

.news {
  margin-bottom: 3rem;
}

.news .box-first {
  background-color: #F5F5F5;
  overflow: hidden;
}

html[dir="rtl"] .news .box-first {
  border-radius: 0 0 6.25rem 0;
}

html[dir="ltr"] .news .box-first {
  border-radius: 0 0 0 6.25rem;
}

.news .box-first .img,
.news .box-first img {
  width: 100%;
  height: 100%;
}

html[dir='rtl'] .news .box-first .img,
html[dir='rtl'] .news .box-first img {
  border-radius: 6.25rem 0;
}

html[dir='ltr'] .news .box-first .img,
html[dir='ltr'] .news .box-first img {
  border-radius: 0 6.25rem;
}

.news .box-first img {
  object-fit: cover;
}

.news .box-first .content .title-section,
.news .box-first .content .title-section span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.125rem;
  color: #DC2626;
  font-size: 1.25rem;
  font-family: 'NotoKufiArabic-Bold';
}

.news .box-first .content .title-section span svg {
  width: 2rem;
  height: auto;
  flex: 0 0 2rem;
}

.news .box-first .content .title-section span [fill] {
  fill: #DC2626;
}

.link-category svg {
  width: 1rem;
  height: auto;
}

.link-category svg [stroke] {
  stroke: var(--main2);
}

.link-category {
  transition: 0.3s;
}

.link-category:hover {
  transform: translateX(-6px);
}

html[dir="ltr"] .link-category {
  transform: rotate(180deg);
}

html[dir="ltr"] .link-category:hover {
  transform: rotate(180deg) translateX(-6px);
}

.success-story .link-category svg [stroke] {
  stroke: #0891B2;
}

html[data-theme="dark"] .success-story .link-category svg [stroke] {
  stroke: #fff;
}

.news .box-first .content h3 {
  font-size: 1.375rem;
  color: #496196;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-family: 'NotoKufiArabic-Bold';
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.3s;
}

.news .box-first .content a:hover h4 {
  color: #233355;
}

.news .box-first .content p {
  font-size: 1rem;
  color: #636363;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news .box-first .content .details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.news .box-first .content .details span,
.news .row-news .img+div span {
  color: #8F8F8F;
  font-size: 0.625rem;
  display: inline-flex;
  align-items: center;
}

.news .box-first .content .details span i,
.news .row-news .img+div span i {
  display: inline-flex;
  margin-inline-end: 0.5rem;
}

.news .row-news a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s;
}

.news .row-news .img {
  display: inline-flex;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.news .row-news .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.news .row-news .img::before,
.news .row-news .img svg {
  position: absolute;
  opacity: 0;
  transition: 0.3s;
}

.news .row-news .img::before {
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: var(--z-level1);
}

.news .row-news .img svg {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(2px);
  width: 2.5rem;
  flex: 0 0 2.5rem;
  height: auto;
  z-index: var(--z-level2);
}

.news .row-news .img+div {
  padding: 0.75rem;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.news .row-news h4 {
  color: var(--main2);
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  transition: 0.3s;
}

.news .row-news a:hover {
  background-color: #F3F8FF;
}

.news .row-news a:hover h4 {
  color: #000;
}

.news .row-news a:hover .img::before,
.news .row-news a:hover .img svg {
  opacity: 1;
}

.news .row-news a:hover .img img {
  transform: scale(1.25);
}

@media (max-width: 991.9px) {
  html[dir="rtl"] .news .box-first {
    border-radius: 6.25rem 0 0 0;
  }

  html[dir="ltr"] .news .box-first {
    border-radius: 0 6.25rem 0 0;
  }

  .news .box-first .img {
    max-height: 370px;
  }

  .news .row-news h4 {
    font-size: 1rem;
  }
}

/* === Box Promo === */

.box-promo {
  margin-bottom: 3rem;
}

.box-promo .img {
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.box-promo .img::before,
.box-promo .img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.box-promo .img::before {
  background-color: rgba(0, 0, 0, 0.2);
  z-index: var(--z-level1);
}

.box-promo .img::after {
  background: linear-gradient(to right, #D83C3E, #ffffff00, #334B7A);
  z-index: var(--z-level2);
}

.box-promo .img>img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-promo .over {
  margin: 2rem auto;
  width: calc(100% - 4rem);
  z-index: var(--z-level3);
}

.box-promo .over .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.box-promo .over .text>div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.box-promo .over .text h6 {
  color: #184F8D;
  text-align: center;
  font-size: 1.625rem;
  position: relative;
  padding: 0.625rem 2rem;
  line-height: 1.7;
  font-weight: normal;
}

.box-promo .over .text h6::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.84);
  border-radius: 0 50px;
  z-index: -1;
  filter: blur(15px);
}

.box-promo .over .text b {
  font-size: 2.625rem;
  line-height: 1.25;
  color: #fff;
  font-family: 'NotoKufiArabic-Bold';
}

.box-promo .over .text b span {
  font-size: 2rem;
}

.box-promo .over .text a {
  display: inline-block;
  text-align: center;
  padding: 0.5rem 1.5rem;
  min-width: 10rem;
  font-size: 1.125rem;
  font-family: 'NotoKufiArabic-Bold';
  font-weight: 700;
  border-radius: 5px;
  color: #4A4A4A;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}

.box-promo .over .text a.cta {
  background-color: #9E3644;
  color: #fff;
}

.box-promo .over .text a:hover {
  transform: scale(1.05);
}

@media (max-width: 767.9px) {
  .box-promo .over {
    margin: 1rem auto;
    width: calc(100% - 2rem);
  }

  .box-promo .over .text {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .box-promo .over .text>.btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* === Offers === */

.offers,
.media {
  padding: 3rem 0;
}

.offers {
  background-color: #EEF5FF;
}

.offers .title-section,
.media .title-section {
  display: block;
  font-size: 1.25rem;
}

.offers .title-section {
  color: #9E3644;
}

.media .title-section {
  color: var(--main2);
}

.offers .tabs,
.media .tabs {
  display: inline-flex;
  gap: 0.625rem;
  white-space: nowrap;
  overflow: auto;
}

.offers .tabs a,
.media .tabs a {
  display: inline-block;
  color: #000;
  font-size: 1rem;
  padding: 0.625rem 1rem;
  border-radius: 10px;
  background-color: #fff;
  transition: 0.3s;
}

.offers .tabs a.active,
.media .tabs a.active {
  background-color: var(--main2);
  color: #fff;
}

.offers .tabs a:not(.active):hover,
.media .tabs a:not(.active):hover {
  background-color: #DBEAFE;
}

.offers table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.625rem;
}

.offers table tr:not(.empty) {
  background-color: #fff;
  transition: 0.3s;
  box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.05);
}

.offers table tr:not(.empty) td {
  padding: 0.75rem;
  color: #000;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.offers table tr:not(.empty) td:first-child {
  padding-inline-start: 2rem;
  border-start-start-radius: 0.625rem;
  border-end-start-radius: 0.625rem;
  border-inline-start: 1px solid transparent;
}

.offers table tr:not(.empty) td:last-child {
  padding-inline-end: 2rem;
  border-start-end-radius: 0.625rem;
  border-end-end-radius: 0.625rem;
  border-inline-end: 1px solid transparent;
}

.offers table tr>td:first-child div {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.offers table tr>td:first-child div p {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offers table tr>td:first-child i {
  display: inline-flex;
}

.offers table tr>td:first-child i svg {
  width: auto;
  height: 1.5rem;
}

.offers table tr>td:first-child b {
  color: #000;
}

.offers table tr>td:first-child i svg [fill] {
  fill: currentColor;
}

.offers table tr>td:first-child i svg [stroke] {
  stroke: currentColor;
}

.offers table tr>td:first-child span {
  color: currentColor !important;
}

.offers table tr>td:first-child b {
  font-size: 0.9375rem;
  font-weight: normal;
}

.offers table tr>td:first-child span {
  font-size: 0.75rem;
}

.offers table tr>td:nth-child(2) {
  font-size: 0.875rem;
}

.offers table tr>td:nth-child(3) {
  font-size: 0.75rem;
}

.offers table tr>td a {
  display: inline-block;
  width: 100%;
  color: #fff;
  background-color: #496196;
  border-radius: 5px;
  padding: 0.5rem 2rem;
  text-align: center;
  transition: 0.3s;
}

.offers table tr:not(.closed):not(.empty):hover {
  background-color: #DBEAFE;
}

.offers table tr:not(.closed):not(.empty):hover td {
  border-color: #184F8D;
}

.offers table tr:not(.closed):not(.empty):hover td a {
  background-color: #184F8D;
}

.offers table tr.closed>td:first-child i svg [fill] {
  fill: #808080;
}

.offers table tr.closed>td {
  color: #808080 !important;
  position: relative;
  border: none;
}

.offers table tr.closed>td:first-child span {
  color: #808080 !important;
}

.offers table tr.closed>td a {
  background-color: #808080;
}

.offers table tr.closed td::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(143, 143, 143, 0.37);
}


.offers table tr.closed td:first-child::before {
  border-start-start-radius: 0.625rem;
  border-end-start-radius: 0.625rem;
}

.offers table tr.closed td:last-child::before {
  border-start-end-radius: 0.625rem;
  border-end-end-radius: 0.625rem;
}

.offers .btn-more,
.media .btn-more {
  margin-top: 2rem;
  text-align: center;
}

.offers .btn-more a,
.media .btn-more a {
  display: inline-block;
  color: #000;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #DBEAFE;
  border-radius: 0.625rem;
  background-color: #fff;
  transition: 0.3s;
}

.offers .btn-more a:hover,
.media .btn-more a:hover {
  transform: scale(1.05);
  background-color: var(--main2);
  border: 1px solid var(--main2);
  color: #fff;
}

.offers table tr.empty div {
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}

.offers table tr.empty div i svg {
  height: 2.25rem;
  width: auto;
}

.offers table tr.empty div p {
  font-size: 1rem;
  color: #000;
}

.offers table tr.empty>td {
  display: block;
}

@media (max-width: 767.9px) {
  .offers .table {
    white-space: nowrap;
    overflow: auto;
  }
}

@media (min-width: 768px) {
  .offers table tr:not(.closed):not(.empty):hover {
    transform: scale(1.025);
  }

  .offers table tr td {
    line-height: 1.5;
  }
}

/* === Media === */

.media .swiper .swiper-slide {
  height: 250px;
}

@media (min-width: 1440px) {
  .media .swiper .swiper-slide {
    height: 300px;
  }
}

.media .img {
  display: inline-flex;
  height: 100%;
  width: 100%;
  position: relative;
}

.media .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0%);
  transition: 0.3s;
}

.media .img .over {
  position: absolute;
  z-index: var(--z-level1);
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: transparent;
  transition: 0.3s;
}

.media .img .over svg [fill] {
  fill: #fff;
}

.media .img .over h4,
.media .img .over p {
  font-size: 0.875rem;
  color: #fff;
  max-height: 0;
  overflow: hidden;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: 0.3s;
  margin-top: 0;
  font-weight: normal;
}

.media a:hover .img img {
  filter: saturate(100%);
}

.media a:hover .img .over {
  background-color: rgba(0, 0, 0, 0.5);
}

.media a:hover .img .over h4,
.media a:hover .img .over p {
  margin-top: 1rem;
  max-height: 100px;
}

/* === Another Numbers === */

.another-numbers {
  padding: 3rem 0;
}

.another-numbers .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.another-numbers .box i svg {
  width: auto;
  height: 4rem;
}

.another-numbers .box p {
  display: flex;
  direction: ltr;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 2rem;
  color: #464646;
  font-family: 'NotoKufiArabic-Bold';
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

.another-numbers .box p svg {
  width: 1rem;
  height: auto;
}

.another-numbers .box p svg [stroke] {
  stroke: #464646;
}

.another-numbers .box b {
  font-weight: normal;
  color: #464646;
  font-size: 0.9375rem;
}

@media (max-width: 991.9px) {
  .another-numbers .box p {
    line-height: 1;
    margin: 1rem 0 0.5rem
  }

  .another-numbers .box {
    margin: 1rem 0;
  }
}

/* === Success Story === */

.success-story {
  padding: 3rem 0;
  margin-bottom: 3rem;
  background-color: #F5F5F5;
}

.success-story .title-section,
.success-story .title-section span,
.title-general {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.125rem;
  color: #0891B2;
  font-size: 1.25rem;
  font-family: 'NotoKufiArabic-Bold';
}

.title-general {
  color: #464646;
}

.title-general b {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.title-general b svg {
  width: 2.25rem;
  flex: 0 0 2.25rem;
  height: auto;
}

.title-general b svg [fill] {
  fill: #464646;
}

html[data-theme="dark"] .title-general b svg [fill] {
  fill: #fff;
}

.title-general b svg [fill],
html[data-theme="dark"] .title-general b svg [fill] {
  fill: currentColor !important;
}

.success-story .title-section span svg {
  width: 2rem;
  height: auto;
  flex: 0 0 2rem;
}

.success-story .title-section span [fill] {
  fill: #0891B2;
}

.success-story .title-section a svg {
  width: 1rem;
  height: auto;
}

.success-story .swiper {
  padding: 1.25rem 0 4.5rem;
}

.success-story .swiper-slide {
  height: auto;
}

.success-story .box {
  display: flex;
  background-color: #fff;
  gap: 1.5rem;
  padding: 0 1rem;
  height: 100%;
}

.success-story .box .img {
  flex: 0 0 35%;
  display: inline-flex;
  position: relative;
}

.success-story .box .img img {
  position: absolute;
  top: -1.125rem;
  height: calc(100% + 2.25rem);
  width: 100%;
  object-fit: cover;
  border-end-start-radius: 50px;
}

.success-story .box .text {
  padding: 1.5rem 0;
  position: relative;
  width: calc(65% - 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.success-story .box .text svg {
  height: 2rem;
  width: auto;
  position: absolute;
  left: 3.5rem;
  top: -1rem;
}

html[dir="ltr"] .success-story .box .text svg {
  left: unset;
  right: 3.5rem;
}

.success-story .box .text h5 {
  line-height: 1.5;
  margin-bottom: 0.25rem;
  display: inline-block;
  font-size: 1.5rem;
  color: #9E3644;
  font-family: 'NotoKufiArabic-Bold';
}

.success-story .box .text b {
  font-size: 1rem;
  color: #000;
  font-weight: normal;
  display: block;
  margin-bottom: 0.5rem;
}

/* .success-story .box .text h5,
.success-story .box .text b {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
} */

.success-story .box .text p {
  color: #496196;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  overflow: hidden;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.success-story .box .text div.link {
  display: flex;
  justify-content: flex-end;
}

.success-story .box .text div a {
  display: inline-block;
  font-size: 0.75rem;
  color: #000;
  transition: 0.2s;
}

.success-story .box .text div a:hover {
  transform: scale(1.1);
  color: var(--main2);
}

.success-story .swiper-pagination,
.partners .swiper-pagination {
  bottom: 0;
}

.success-story .swiper-pagination-bullet,
.partners .swiper-pagination-bullet {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #D9D9D9;
  opacity: 1;
}

.success-story .swiper-pagination-bullet-active {
  background-color: #0891B2;
}

/* === images-only === */

.images-only {
  /* padding: 3rem 0; */
  margin-bottom: 3rem;
}

.images-only a {
  display: flex;
}

.images-only a img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* === Partners === */

.partners {
  padding: 3rem 0;
}

.partners .title-section,
.partners .title-section span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.125rem;
  color: #184F8D;
  font-size: 1.25rem;
  font-family: 'NotoKufiArabic-Bold';
}

.partners .title-section span svg {
  width: 2rem;
  height: auto;
  flex: 0 0 2rem;
}

.partners .title-section span [fill] {
  fill: #184F8D;
}

.partners .swiper-pagination-bullet-active {
  background-color: #184F8D;
}

.partners .swiper-slide {
  height: 5rem;
}

.partners a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.partners a img {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: saturate(0);
  transition: 0.3s;
}

.partners a:hover img {
  filter: saturate(100%);
  transform: scale(1.1);
}

/* === Box Support === */

.box-support {
  position: relative;
  padding: 8.5rem 0 2rem;
}

.box-support img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: var(--z-level1);
}

.box-support .container {
  position: relative;
  z-index: var(--z-level2);
}

.box-support h6 {
  font-size: 1.5rem;
  color: #496196;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-inline-start: 6px solid var(--main2);
  margin-bottom: 0.825rem;
}

.box-support .links {
  display: inline-flex;
  gap: 1rem;
}

.box-support .links a {
  color: #fff;
  font-size: 1.25rem;
  display: inline-block;
  padding: 0.75rem 2rem;
  border-inline-start: 6px solid #fff;
  line-height: 1.5;
  transition: 0.3s;
}

.box-support .links a.btn-warning {
  background-color: #D8A635;
  border-color: #E5CE58;
}

.box-support .links a.btn-warning:hover {
  background-color: #E5CE58;
}

.box-support .links a.btn-danger {
  background-color: #D83C3E;
  border-color: #9E3644;
}

.box-support .links a.btn-primary {
  background-color: #496196;
  border-color: #184F8D;
}

.box-support .links a.btn-danger:hover {
  background-color: #9E3644;
}

.box-support .links a.btn-primary:hover {
  background-color: #184F8D;
}

/* === Footer === */

footer {
  background-color: #464646;
  padding: 1.25rem 0 0;
}

footer .social-media {
  background-color: #4C4C4C;
  padding: 1.5rem 2rem;
}

footer .social-media .row>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .social-media a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  color: #808080;
  transition: 0.3s;
}

footer .social-media a svg {
  width: 1.5rem;
  height: 1.5rem;
}

footer .social-media a [fill] {
  fill: #8F8F8F;
  transition: 0.3s;
}

footer .social-media a:hover {
  color: #fff;
  transform: scale(1.1);
}

footer .social-media a:hover [fill] {
  fill: #fff;
}

footer .copy-right {
  background-color: #403F3F;
  padding: 1.5rem 0;
}

footer .copy-right p {
  font-size: 0.75rem;
  color: #B1B0B0;
}

footer .copy-right a img {
  width: auto;
  max-width: 100%;
  height: 2rem;
  filter: saturate(0);
  transition: 0.3s;
}

footer .copy-right a:hover img {
  filter: saturate(100%);
}

footer .col-info a img {
  height: 4rem;
  width: auto;
  max-width: 100%;
}

footer .col-info p {
  color: #D4D4D4;
  font-size: 0.75rem;
  line-height: 1.75;
}

footer .col-info .more {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

footer .col-info .more a {
  display: inline-block;
  border: 1px solid #5E5E5E;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  color: #FFFFFF;
  font-size: 0.75rem;
  transition: 0.3s;
}

footer .col-info .more a:hover {
  transform: scale(1.05);
  background-color: #fff;
  color: #5E5E5E;
}

footer .col-links .row [class*="col-"]>div,
footer .col-contact>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 0.825rem;
}

footer .col-links b {
  color: #fff;
}

footer .col-links a {
  color: #A4A4A4;
  transition: 0.3s;
}

footer .col-links a:hover {
  color: #fff;
  transform: translateX(-10px);
}

html[dir="ltr"] footer .col-links a:hover {
  transform: translateX(10px);
}

footer .col-contact * {
  color: #FFFFFF;
  font-size: 0.825rem;
  line-height: 1.5;
}


footer .col-links b,
footer .col-contact b {
  font-size: 0.875rem;
  font-family: 'NotoKufiArabic-Bold';
}

@media (min-width: 992px) {
  footer .col-links {
    border-inline-start: 1px solid #4C4C4C;
    border-inline-end: 1px solid #4C4C4C;
  }
}

@media (max-width: 991.9px) {
  footer .social-media .row>div {
    justify-content: flex-start;
  }

  footer .col-links {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid #4C4C4C;
    border-bottom: 1px solid #4C4C4C;
  }
}

/* === Modal === */
body.mode-read,
body.open-modal {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: var(--z-level7);
  display: none;
}

.modal .content-modal {
  max-height: 90vh;
  overflow: auto;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
}

.modal.show {
  display: flex;
  animation: showOpacity 0.2s linear both;
}

.modal .content-modal {
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

.modal .content-modal::-webkit-scrollbar {
  width: 8px;
}

.modal .content-modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal .content-modal::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: background 0.3s;
}

.modal .content-modal::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.modal-search button {
  padding: 0.75rem 2rem;
  height: 100%;
  background-color: var(--main2);
  color: #fff;
  font-size: 1rem;
  border: 1px solid var(--main2);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}

.modal-search button:hover {
  color: var(--main2);
  background-color: #fff;
}

.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;
}

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"] .modal .content-modal {
  scrollbar-color: #666 transparent;
}

html[data-theme="dark"] .modal .content-modal::-webkit-scrollbar-thumb {
  background: #666;
}

html[data-theme="dark"] .modal .content-modal::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* === Dark Home Page === */

html[data-theme="dark"] body {
  background-color: #1C1D2B;
}

html[data-theme="dark"] .numbers .box {
  background-color: #2B2D42;
  color: #fff;
}

html[data-theme="dark"] .numbers .box [fill] {
  fill: #fff;
}

html[data-theme="dark"] .numbers .box [stroke] {
  stroke: #fff;
}

html[data-theme="dark"] .numbers .box:hover {
  background-color: #454869;
}

html[data-theme="dark"] .news .box-first {
  background-color: #2B2D42;
}

html[data-theme="dark"] .news .box-first .content .title-section,
html[data-theme="dark"] .news .box-first .content .title-section span,
html[data-theme="dark"] .offers .title-section {
  color: #fff;
}

html[data-theme="dark"] .media .title-section svg [fill] {
  fill: #fff;
}

html[data-theme="dark"] .news .box-first .content .title-section span [fill],
html[data-theme="dark"] .offers .title-section [fill] {
  fill: #fff;
}

html[data-theme="dark"] .partners .title-section span [fill],
html[data-theme="dark"] .news .box-first .content .title-section a svg [fill] {
  fill: #fff;
}

html[data-theme="dark"] .partners .title-section,
html[data-theme="dark"] .partners .title-section span,
html[data-theme="dark"] .news .box-first .content h3 {
  color: #fff;
}

html[data-theme="dark"] .partners .swiper-pagination-bullet-active {
  background-color: #6B8AFD;
}

html[data-theme="dark"] .success-story .title-section span [fill],
html[data-theme="dark"] .success-story .title-section a svg [fill] {
  fill: #fff;
}

html[data-theme="dark"] .success-story .title-section,
html[data-theme="dark"] .success-story .title-section span {
  color: #fff;
}

html[data-theme="dark"] .success-story .swiper-pagination-bullet-active {
  background-color: #1fa5c5;
}

html[data-theme="dark"] .news .box-first .content p {
  color: #A1A1AA;
}

html[data-theme="dark"] .news .box-first .content .details span,
html[data-theme="dark"] .news .row-news .img+div span {
  color: #CFCFD4;
}

html[data-theme="dark"] .news .box-first .content .details span i [stroke],
html[data-theme="dark"] .news .row-news .img+div span i [stroke] {
  stroke: #CFCFD4;
}

html[data-theme="dark"] .news .row-news a:hover {
  background-color: #2B2D42;
}

html[data-theme="dark"] .news .row-news a:hover h5 {
  color: #fff;
}

html[data-theme="dark"] .offers {
  background-color: #0E0F16;
}

html[data-theme="dark"] .offers .tabs a.active,
html[data-theme="dark"] .media .tabs a.active {
  background-color: #263866;
}

html[data-theme="dark"] .offers .tabs a,
html[data-theme="dark"] .media .tabs a {
  color: #ffffff;
  background-color: #20293b;
}

html[data-theme="dark"] .offers table tr:not(.empty) {
  background-color: #20293b;
}

html[data-theme="dark"] .offers table tr:not(.empty) td {
  color: #f9f9f9;
}

html[data-theme="dark"] .offers table tr:not(.closed):not(.empty):hover {
  background-color: #191f2b;
}

html[data-theme="dark"] .offers .tabs a:not(.active):hover,
html[data-theme="dark"] .media .tabs a:not(.active):hover {
  background-color: #353f51;
}

html[data-theme="dark"] .offers table tr:not(.closed):not(.empty):hover td {
  border-color: #fff;
}

html[data-theme="dark"] .another-numbers .box p,
html[data-theme="dark"] .another-numbers .box b {
  color: #fff;
}

html[data-theme="dark"] .another-numbers .box p svg [stroke] {
  stroke: #fff;
}

html[data-theme="dark"] .success-story {
  background-color: #2B2D42;
}

html[data-theme="dark"] .success-story .box {
  background-color: #1C1D2B;
}

html[data-theme="dark"] .success-story .box .text svg [fill] {
  fill: #fff;
}

html[data-theme="dark"] .success-story .box .text h5 {
  color: #fff;
}

html[data-theme="dark"] .success-story .box .text b,
html[data-theme="dark"] .success-story .box .text div a {
  color: #fff;
}

html[data-theme="dark"] .success-story .box .text p {
  color: #bfbfbf;
}

html[data-theme="dark"] footer {
  background-color: #1C1D2B;
}

html[data-theme="dark"] footer .social-media,
html[data-theme="dark"] footer .copy-right {
  background-color: #232536;
}

html[data-theme="dark"] .another-numbers .row>div:nth-child(1) .box [fill] {
  fill: #E35D6A;
}

html[data-theme="dark"] .another-numbers .row>div:nth-child(2) .box [fill] {
  fill: #22D3EE;
}

html[data-theme="dark"] .another-numbers .row>div:nth-child(3) .box [fill] {
  fill: #6B8AFD;
}

html[data-theme="dark"] .another-numbers .row>div:nth-child(4) .box [fill] {
  fill: #FB923C;
}

html[data-theme="dark"] .another-numbers .row>div:nth-child(5) .box [fill] {
  fill: #3B82F6;
}

/* === Details Page === */

.hero-pages {
  padding: 8.5rem 0 7.5rem;
  position: relative;
  background-color: #9b3342;
}

.hero-pages:not(:has(+ .form-cart, + .google-map, + .numbers, + .details, +.intro)) {
  margin-bottom: 3rem;
}

.hero-pages::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
  z-index: var(--z-level2);
  opacity: 0.7;
}

.hero-pages>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: var(--z-level1);
}

.hero-pages .text {
  position: relative;
  z-index: var(--z-level3);
  text-align: center;
}

.hero-pages .text p {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 0.5rem;
  color: #fff;
}

.hero-pages .text h1 {
  font-size: 1.75rem;
  color: #E5CE58;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-pages .text h1:has(+p) {
  margin-bottom: 1rem;
}

.hero-pages .text h1+p {
  margin-bottom: 2rem;
}

.hero-pages .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-pages .breadcrumb a {
  color: #C0C0C0;
  font-size: 0.875rem;
  transition: 0.3s;
}

.hero-pages .breadcrumb a:hover {
  color: #fff;
}

.hero-pages .breadcrumb svg {
  width: 0.4rem;
  height: auto;
}

.details .content .img {
  position: relative;
}

.details .content .img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.details .content .img span {
  display: inline-block;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  max-width: calc(100% - 2rem);
  min-width: 70%;
  z-index: var(--z-level1);
  bottom: 1.5rem;
  padding: 0.5rem;
  text-align: center;
}

.details .content .general-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background-color: #F2F2F2;
}

.details .content .general-info .user {
  display: inline-flex;
  align-items: center;
}

.details .content .general-info .user img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0);
}

.details .content .general-info .user svg {
  width: 1.25rem;
  height: 1.25rem;
}

.details .content .general-info .user+span {
  margin-inline-start: 0.5rem;
}

.details .content .general-info .user+span,
.details .content .general-info .time>span {
  color: #888888;
  font-size: 0.8325rem;
  display: inline-flex;
  align-items: center;
}

.details .content .general-info .time>span {
  display: inline-flex;
  gap: 0.5rem;
}

.details .content .general-info .time>span svg {
  width: 1.125rem;
  height: 1.125rem;
}

.details .content .text-tools {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.details .content .text-tools .text p {
  color: #464646;
  font-size: 1.25em;
  line-height: 1.7;
}

.mode-read .details .content .text-tools .text p {
  color: #464646 !important;
}

.details .content .text-tools .tools {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.details .content .text-tools .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;
}

.details .content .text-tools .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;
  font-family: 'NotoKufiArabic-Bold';
  color: #888888;
}

.details .content .text-tools .tools>div span {
  cursor: pointer;
  transition: 0.15s;
  display: inline-flex;
}

.details .content .text-tools .tools .share {
  gap: 0;
}

.details .content .text-tools .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;
}

.details .content .text-tools .tools .share.open {
  background-color: #ddf1ff;
}

.details .content .text-tools .tools .share.open .share-social {
  margin-top: 0.75rem;
  max-height: 220px;
}

.details .content .text-tools .tools .share .share-social svg {
  width: 1.125rem;
  height: 1.125rem;
}

.details .content .text-tools .tools>a:hover {
  transform: scale(1.05);
  background: #eceaea;
}

.details .content .text-tools .tools>div span:hover {
  transform: scale(1.05);
  color: #504d4d;
}

.details .content .text-tools .tools>a svg {
  width: 1.25rem;
  height: 1.25rem;
}

.print-only {
  display: none;
}

.print-only img {
  width: auto;
  height: auto;
  max-height: 4rem;
  max-width: 100%;
}

.print-only p {
  font-family: 'NotoKufiArabic-Bold';
  text-align: center;
}

.print-only .title1 {
  font-size: 1.25rem;
}

.print-only .title2 {
  font-size: 2rem;
}

.print-only .title3 {
  font-size: 1.25rem;
}

body:not(.mode-read) .details .content .text-tools .text .close-mode-read,
body:not(.mode-read) .details .content .text-tools .text .control-fsz,
body:not(.mode-read) .details .content .text-tools .text .title-mode-read {
  display: none;
}

body.mode-read .details .content .text-tools .text {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  z-index: 999999;
  background: rgb(255 241 211 / 100%);
  padding: 3rem 2rem 2rem;
}

body.mode-read .details .content .text-tools .text p {
  color: #000;
}

body.mode-read .details .content .text-tools .text .close-mode-read {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  cursor: pointer;
}

html[dir="ltr"] body.mode-read .details .content .text-tools .text .close-mode-read {
  left: unset;
  right: 1rem;
}

body.mode-read .details .content .text-tools .text .close-mode-read svg {
  width: 1.25rem;
  height: auto;
}

body.mode-read .details .content .text-tools .text .title1,
body.mode-read .details .content .text-tools .text .title3 {
  font-size: 1.5em;
  margin-bottom: 0.5rem;
  color: #000 !important;
}

body.mode-read .details .content .text-tools .text .title3 {
  margin-bottom: 1.25rem;
}

body.mode-read .details .content .text-tools .text .title2 {
  font-size: 2.25em;
  margin-bottom: 0.5rem;
  color: #000 !important;
  font-family: 'NotoKufiArabic-Bold';
}

body.mode-read .details .content .text-tools .text b {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.25em;
}

body.mode-read .details .content .text-tools .text .control-fsz {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.control-fsz>* {
  cursor: pointer;
}

.lightbox-autoplay {
  position: absolute;
  bottom: 25px;
  right: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-autoplay:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-autoplay.playing {
  background: rgba(255, 255, 255, 0.35);
}

.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;
}

.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;
  max-width: 90%;
  bottom: 1rem;
  right: 50%;
  transform: translateX(50%);
  z-index: var(--z-level2);
  color: #fff;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.75rem;
  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;
  }
}

@media print {

  header,
  .details .content .text-tools .tools,
  .hero-pages,
  .numbers,
  .images-only,
  .partners,
  .box-support,
  footer,
  .details .col-lg-4,
  .type-attachment,
  .gallery,
  .tags,
  .same-links {
    display: none;
  }

  .print-only {
    display: block;
  }

  .details .content .img span {
    color: #000;
  }

  .details .container {
    max-width: 100%;
  }

  body {
    background: #fff;
  }
}

.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);
}

.type-attachment {
  width: 100%;
}

.music:not(.active) svg.pause {
  display: none;
}

.music.active svg.play {
  display: none;
}

.title-attachment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1rem;
  width: 100%;
  color: #405189;
}

.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:first-child {
  max-width: calc(100% - 5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.title-attachment>div:first-child h5 {
  font-size: 0.875rem;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.title-attachment>div:first-child span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 50%;
  background-color: #f5f5f5;
  margin-inline-end: 0.75rem;
}

.title-attachment>div:first-child span svg {
  width: 1.125rem;
  height: 1.125rem;
}

.title-attachment>div:nth-child(2) {
  max-width: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}

.title-attachment>div:nth-child(2) a {
  display: inline-flex;
  transition: 0.3s;
}

.title-attachment>div:nth-child(2) a:hover {
  transform: scale(1.05);
}

.title-attachment>div:nth-child(2) a svg {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: auto;
}

.title-attachment>div:nth-child(2) a svg [fill] {
  fill: #464646;
  transition: 0.3s;
}

.title-attachment>div:nth-child(2) a:hover svg [fill] {
  fill: var(--main2);
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.iframe iframe {
  width: 100%;
}

@media (min-width: 992px) {
  .details:not(.opportunities-details) .row:has([class*="col-"]) .col {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

.iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal video {
  width: 100%;
  height: auto;
}

.same-links {
  background-color: #F5F5F5;
  padding: 1rem 1.5rem;
}

.same-links h6 {
  color: #464646;
  font-size: 1.125rem;
  font-family: 'NotoKufiArabic-Bold';
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.same-links .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  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.325rem;
}

.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: #184F8D;
  font-size: 0.875rem;
}

.tags a {
  display: block;
  height: 100%;
  color: #464646;
  font-size: 0.75rem;
  background-color: #F3F8FF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.5rem 1rem;
  text-align: center;
  transition: 0.2s;
}

.tags a:hover {
  transform: scale(1.05);
  background-color: #eaf1fc;
}

.details .box-image,
.details .box-image a {
  width: 100%;
  display: flex;
}

.details .box-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.details .news .row-news {
  margin-top: 0;
}

html[data-theme="dark"] .details .content .text-tools .text p {
  color: #fff;
}

@media (min-width: 992px) {
  .details .col-sticky {
    position: sticky;
    top: 5.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991.9px) {
  .details .box-image {
    height: 100%;
  }

  .details .box-image img {
    height: 100%;
  }
}

/* === Cart Page === */

.box-form {
  padding: 1.25rem 1.75rem;
  position: relative;
  z-index: var(--z-level2);
  margin-top: -3.5rem;
  margin-bottom: 2rem;
  background-color: #F8FBFF;
  border-radius: 0 0 10px 10px;
}

.box-form p {
  color: #8F8F8F;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.relative {
  position: relative;
}

.box-form input,
.box-form select,
.box-form button {
  padding: 0.75rem 0.875rem;
  border-radius: 5px;
  background-color: #F2F2F2;
  width: 100%;
  border: 1px solid transparent;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #464646;
  outline: none;
  transition: 0.2s;
}

.box-form input::placeholder {
  color: #464646;
}

.box-form select {
  padding-inline-end: 1.25rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.box-form select+svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: auto;
}

.box-form input:focus,
.box-form select:focus {
  border-color: var(--main2);
}

.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;
}

.flatpickr-calendar {
  direction: rtl;
}

.list-carts .row-head p {
  font-size: 0.875rem;
  color: #919191;
  line-height: 1.5;
}

.list-carts .row-head p span {
  color: #496196;
}

.list-carts a {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.list-carts a .img {
  display: flex;
  height: 200px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.list-carts a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.list-carts a .text {
  padding: 1.25rem 0.625rem;
  transition: 0.3s;
  flex: 1 0 auto;
}

.list-carts a .text p {
  line-height: 1.5;
  color: #464646;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.875rem;
  transition: 0.3s;
}

.list-carts a span.time {
  position: absolute;
  top: 200px;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: #9B3342;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.625rem;
  opacity: 0;
  transition: 0.3s;
  z-index: var(--z-level1);
}

.list-carts a:hover span.time {
  opacity: 1;
}

.list-carts a:hover .text {
  background-color: #F8FBFF;
}

.list-carts a:hover .text p {
  color: #496196;
}

.list-carts a:hover .img img {
  transform: scale(1.1);
}

.list-carts .btn-more,
.content-contact .btn-submit,
.list-albums .btn-more,
.reports .btn-more {
  border: 1px solid #EA580C;
  background-color: #fff;
  color: #EA580C;
  transition: 0.3s;
  font-size: 1rem;
  padding: 0.625rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.content-contact .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.content-contact .btn-submit svg {
  width: 1.5rem;
  height: auto;
}

.content-contact .btn-submit svg [fill] {
  fill: #EA580C;
  transition: 0.3s;
}

.list-carts .btn-more:hover,
.content-contact .btn-submit:hover,
.list-albums .btn-more:hover,
.reports .btn-more:hover {
  background-color: #EA580C;
  color: #fff;
}

.content-contact .btn-submit:hover svg [fill] {
  fill: #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-family: 'NotoKufiArabic-Bold';
}

.row-no-data p {
  font-size: 0.875rem;
  color: #454869;
}

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 {
  color: #dfdbdb;
}

html[data-theme="dark"] .list-carts a .text p {
  color: #dfdbdb;
}

html[data-theme="dark"] .list-carts a:hover .text,
html[data-theme="dark"] .box-form {
  background-color: #2B2D42;
}

html[data-theme="dark"] .box-form p,
html[data-theme="dark"] .list-carts .row-head p {
  color: #e7e1e1;
}

html[data-theme="dark"] .list-carts .row-head p span {
  color: var(--main2);
}

/* === Contact === */

.google-map {
  position: relative;
  z-index: var(--z-level2);
  margin-top: -3.5rem;
  margin-bottom: 3rem;
}

.google-map iframe {
  width: 100%;
  height: 330px;
  border-radius: 0 0 10px 10px;
}

.image-full {
  margin-bottom: 3rem;
}

.image-full img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 0 0 10px 10px;
}

.content-contact .logo {
  display: inline-flex;
}

.content-contact .logo img {
  width: auto;
  max-width: 100%;
  height: 5rem;
}

.content-contact .text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-contact .text img,
.content-contact .text video {
  max-width: 100%;
}

/* .content-contact .text>div {
  line-height: 2;
} */

.content-contact .text h2 {
  color: #464646;
  font-size: 1.375rem;
}

.content-contact .text p {
  line-height: 1.7;
  color: #464646;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.content-contact .text p b {
  font-family: 'NotoKufiArabic-Bold';
}

.content-contact .text p a {
  color: #464646;
  transition: 0.3s;
  text-decoration: underline;
}

.content-contact .text p a:hover {
  color: var(--main);
}

.content-contact .text .text-main {
  display: block;
  color: var(--main2);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-family: 'NotoKufiArabic-Bold';
  font-weight: 700;
}

.content-contact .text h3 {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #464646;
  margin-bottom: 0.325rem;
}

.content-contact .text .or {
  color: #0891B2;
  font-size: 1.125rem;
  font-family: 'NotoKufiArabic-Bold';
}

.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: #0E0F16;
}

.msg-contact>div b {
  font-size: 1.125rem;
}

html[data-theme="dark"] .content-contact .text h2,
html[data-theme="dark"] .content-contact .text h3,
html[data-theme="dark"] .upload-inner .title,
html[data-theme="dark"] .checkbox-input label {
  color: #f1f1f1;
}

html[data-theme="dark"] .content-contact .text p,
html[data-theme="dark"] .content-contact .text p a {
  color: #e3e0e0;
}

html[data-theme="dark"] .content-contact .text p a:hover {
  color: #f97373;
}

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: #1c1d2b;
  color: #fff;
}

html[data-theme="dark"] .custom-input label {
  background: #1c1d2b;
  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;
}

.opportunities-page .box-form {
  background-color: #9E3644;
}

.opportunities-page .box-form p {
  color: #fff;
}

.opportunities-page .box-form button {
  background-color: #E5CE58;
  color: #000;
}

.opportunities-page .box-form button svg [stroke] {
  stroke: #000;
}

.list-opportunities .offers {
  padding: 0 !important;
  background: unset !important;
}

html[data-theme="dark"] .offers table tr.empty div p {
  color: #fff;
}

.opportunities-details .opportunities-head {
  background-color: #F3F8FF;
  position: relative;
  z-index: var(--z-level2);
  margin-top: -3.5rem;
}

.opportunities-details .image {
  height: 100%;
}

.opportunities-details .image img {
  width: 100%;
  height: 100%;
}

.opportunities-details :not(.text-tools) .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.opportunities-details .text>div {
  padding: 1.25rem 2rem;
}

body:not(.mode-read) .opportunities-details .text>div:not(.status) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.opportunities-details .text>div:not(.status) .title {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}

.opportunities-details .text>div:not(.status) .title h1,
.opportunities-details .text>div:not(.status) .title p {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.opportunities-details .text>div:not(.status) .title h1 {
  font-size: 1rem;
  line-height: 1.5;
  color: #496196;
  font-family: 'NotoKufiArabic-Bold';
}

.opportunities-details .text>div:not(.status) .title p {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.5rem;
  color: #888888;
}

.opportunities-details .text>div:not(.status) .title>i svg {
  width: 4.375rem;
  height: auto;
}

.opportunities-details .text>div:not(.status) .title>i+div {
  width: calc(100% - 4.375rem - 1.25rem);
}

.opportunities-details .text>div:not(.status) .title p i svg {
  width: 1.125rem;
  height: auto;
}

.opportunities-details .text h2,
.opportunities-details .text h2+p {
  color: #000;
}

.opportunities-details .text h2 {
  font-size: 1rem;
  font-family: 'NotoKufiArabic-Bold';
  margin-bottom: 0.25rem;
}

.opportunities-details .text h2+p {
  font-size: 0.875rem;
}

.opportunities-details .text .status {
  background-color: #EEF5FF;
}

.opportunities-details .text .status>div {
  display: flex;
  gap: 0.325rem;
}

.opportunities-details .text .status>div b {
  font-size: 1rem;
}

.opportunities-details .text .status>div.open b {
  color: #0891B2;
}

.opportunities-details .text .status>div:not(.open) b {
  color: #464646;
}

.opportunities-details .register-now {
  margin-top: 0.5rem !important;
}

.opportunities-details .register-now h5 {
  margin-bottom: 0.5rem;
  color: #496196;
  font-size: 1.25rem;
  font-family: 'NotoKufiArabic-Bold';
}

.opportunities-details .register-now a {
  display: inline-block;
  border: 1px solid #EA580C;
  color: #000;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  transition: 0.3s;
}

.opportunities-details .register-now a:hover {
  background-color: #EA580C;
  color: #fff;
}

.opportunities-more {
  background: unset !important;
}

html[data-theme="dark"] .opportunities-details .register-now h5 {
  color: var(--main2);
}

html[data-theme="dark"] .opportunities-details .register-now a {
  color: #fff;
}

@media (min-width: 992px) {
  .opportunities-head:has([class*="col-lg"]) .col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}

.list-albums .row-head svg {
  width: auto;
  height: 1.25rem;
  margin-inline-end: 0.5rem;
}

.list-albums .row-head p {
  font-size: 1rem;
  gap: 0.325rem;
  color: #000;
}

.list-albums .row-head p b {
  font-family: 'NotoKufiArabic-Bold';
}

.list-albums .media a {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.list-albums .media .img img {
  filter: saturate(100%);
}

.list-albums .media a:hover .img img {
  filter: saturate(0%);
}

.list-albums .media .img .over {
  opacity: 0 !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)) !important;
}

.list-albums .media a:hover .img .over {
  opacity: 1 !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)) !important;
}

html[data-theme="dark"] body>.header-links {
  background-color: #1c1d2b;
}

html[data-theme="dark"] body>.header-links a:not(.active) {
  color: #d3cccc;
}

html[data-theme="dark"] .header-links a.active,
html[data-theme="dark"] .header-links li.active a {
  color: #fff;
}

html[data-theme="dark"] .header-links a.active svg [fill],
html[data-theme="dark"] .header-links li.active a svg [fill] {
  fill: #fff;
}

html[data-theme="dark"] body>.header-links a:not(.active) svg [fill] {
  fill: #d3cccc;
}

/* html[data-theme="dark"] .dropdown {
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
} */

html[data-theme="dark"] .dropdown li a {
  color: #fff;
}

html[data-theme="dark"] .dropdown li:not(:last-child) a {
  border-bottom: 1px solid #6d6d6d;
}

html[data-theme="dark"] .dropdown li {
  background-color: #303145;
}

html[data-theme="dark"] .dropdown li a:hover {
  background-color: #222333;
}

html[data-theme="dark"] .modal .content-modal {
  background-color: #1c1d2b;
}

.modal-pdf iframe {
  width: 100%;
  height: 80vh;
}

.head-reports {
  background-color: #F8FBFF;
  position: relative;
  z-index: var(--z-level2);
  margin-top: -3.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
}

.head-reports img {
  height: auto;
  object-fit: contain;
  max-height: 10rem;
  width: 100%;
}

.head-reports svg {
  width: 100%;
  height: auto;
  max-height: 10rem;
}

.head-reports p {
  line-height: 2;
  color: #496196;
  text-align: justify;
}

.reports .title svg {
  width: 2rem;
  flex: 0 0 2rem;
  height: auto;
}

.reports .title {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  color: #D83C3E;
  font-family: 'NotoKufiArabic-Bold';
  gap: 0.75rem;
  line-height: 1.5;
}

.is-hidden {
  display: none;
}

.reports .tabs {
  padding: 0.75rem 0.5rem;
  border-radius: 0.625rem;
  border: 1px solid #CFCFCF;
  display: flex;
  flex-direction: column;
}

.reports .tabs a {
  padding: 0.75rem 0.5rem;
  display: inline-block;
  color: #464646;
  font-size: 1rem;
  transition: 0.3s;
  border-bottom: 1px solid #F5F5F5;
}

.reports .tabs a svg {
  width: 0.35rem;
  height: auto;
  margin-inline-end: 0.5rem;
}

.reports .tabs a:last-child {
  border-bottom: unset;
}

.reports .tabs a:hover {
  padding-inline-start: 1rem;
}

.reports .tabs a.active {
  color: #496196;
  font-weight: 700;
  font-family: 'NotoKufiArabic-Bold';
}

.reports .content-report h2 {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #464646;
  margin-bottom: 1.25rem;
  font-family: 'NotoKufiArabic-Bold';
}

.reports .content-report a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

.reports .content-report a .img {
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: -2.25rem;
  position: relative;
  z-index: var(--z-level1);
  transition: 0.3s;
}

.reports .content-report a .img img {
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 4.5rem;
  object-fit: cover;
}

.reports .content-report a:hover .img {
  transform: scale(1.1);
}

.reports .content-report a .text {
  background-color: #F5FBFF;
  padding: 0.875rem 1.25rem;
  padding-top: calc(0.75rem + 2.25rem);
  border-radius: 10px;
  transition: 0.3s;
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}

.reports .content-report a:hover .text {
  background-color: #eef8ff;
}

.reports .content-report a .text h3 {
  font-weight: normal;
  color: #464646;
  font-size: 1rem;
  line-height: 1.5;
}

.reports .content-report a .text p {
  font-size: 0.75rem;
  color: #8f8f8f;
}


html[data-theme="dark"] .reports .tabs {
  background: #313347;
}

html[data-theme="dark"] .reports .tabs a {
  color: #dddddf;
}

html[data-theme="dark"] .reports .title {
  color: #fff;
}

html[data-theme="dark"] .reports .title svg [fill] {
  fill: #dddddf;
}

html[data-theme="dark"] .reports .tabs a.active,
html[data-theme="dark"] .reports .content-report h2 {
  color: #fff;
}

html[data-theme="dark"] .reports .content-report a .text {
  background-color: #313347;
}

html[data-theme="dark"] .reports .content-report a:hover .text {
  background-color: #2b2c3f;
}

html[data-theme="dark"] .reports .content-report a .text h3 {
  color: #dddddf;
}

html[data-theme="dark"] .reports .content-report a .text p {
  color: #d7cdcd;
}

html[data-theme="dark"] .head-reports {
  background-color: #313347;
}

html[data-theme="dark"] .head-reports p {
  color: #ffffff;
}

html[dir="ltr"] .reports .tabs a svg,
html[dir="ltr"] .same-links .list a svg {
  transform: rotate(180deg);
}

html[data-theme="dark"] .title-general,
html[data-theme="dark"] .title-general b {
  color: #ffffff !important;
}

.title-section a,
.title-general a {
  width: 22px;
}

html[data-theme="dark"] .title-section a svg [stroke],
html[data-theme="dark"] .title-general a svg [stroke] {
  stroke: #fff;
}

html[dir="rtl"] .numInputWrapper span {
  right: unset;
  left: 0;
}

.flatpickr-current-month {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.name-file {
  color: #0072ff !important;
  font-weight: 900;
}

.call-center {
  position: fixed;
  z-index: var(--z-level4);
  bottom: 4rem;
  right: 4rem;
  border: 1px solid #E3E3E3;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  transition: 0.3s;
  animation: pulse 1.5s infinite;
}

html[dir="ltr"] .call-center {
  right: unset;
  left: 4rem;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(235, 81, 83, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(235, 81, 83, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(235, 81, 83, 0);
  }
}

.call-center img {
  flex: 0 0 3.375rem;
  height: 3.375rem;
  width: 3.375rem;
}

html[data-theme="dark"] .news .row-news h4,
html[data-theme="dark"] .list-albums .row-head p,
html[data-theme="dark"] .offers table tr>td:first-child b {
  color: #fff;
}

html[data-theme="dark"] .offers table tr.empty div i svg [fill] {
  fill: #fff;
}