/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Classes Styles _____________ ====================================== */
.leftContainer {
  margin-inline-start: auto;
  padding: 0 15px;
  padding-inline-end: 0;
}
@media (max-width: 576px) {
  .leftContainer {
    width: 100%;
    padding-inline-end: 15px;
    margin-inline-start: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .leftContainer {
    width: calc(668px + (100vw - 668px) / 2);
    padding-inline-end: 15px;
    margin-inline-start: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .leftContainer {
    width: calc(856px + (100vw - 856px) / 2);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .leftContainer {
    width: calc(1164px + (100vw - 1164px) / 2);
  }
}
@media (min-width: 1200px) {
  .leftContainer {
    width: calc(1400px + (100vw - 1400px) / 2);
  }
}

.rightContainer {
  margin-inline-end: auto;
  padding: 0 15px;
  padding-inline-start: 0;
  overflow: hidden;
}
@media (max-width: 576px) {
  .rightContainer {
    width: 100%;
    padding-inline-start: 15px;
    margin-inline-end: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .rightContainer {
    width: calc(540px + (100vw - 540px) / 2);
    padding-inline-start: 15px;
    margin-inline-end: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rightContainer {
    width: calc(720px + (100vw - 720px) / 2);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .rightContainer {
    width: calc(960px + (100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .rightContainer {
    width: calc(1140px + (100vw - 1140px) / 2);
  }
}

.wave {
  position: absolute;
  bottom: -2px;
  width: 100%;
  z-index: 8;
}

.waveTop {
  top: 0;
  bottom: auto;
}

.mainTitle {
  color: #FFF;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.secondTitle {
  color: #F8E8D0;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 7px;
  position: relative;
}
.secondTitle::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #FF0000;
  width: 100%;
  height: 1px;
}
body.ar .secondTitle::before {
  left: auto;
  right: 0;
}
@media (max-width: 568px) {
  .secondTitle {
    font-size: 2.5rem;
  }
}

.mainDesc {
  color: #FFF;
  font-size: 0.9rem;
  text-transform: capitalize;
  font-weight: 100;
  margin-bottom: 0;
}

.secondDesc {
  color: #000;
  font-size: 0.9;
  font-weight: 100;
}

.font_light {
  font-weight: 300;
}

.font_regular {
  font-weight: normal;
}

.font_bold {
  font-weight: bold;
}

p,
.p {
  font-size: 0.95rem;
  font-weight: normal;
  color: black;
  margin-bottom: 1rem;
}

a,
.a,
.link {
  font-size: 0.95rem;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zoomIn {
  overflow: hidden;
  margin: 0;
  height: 100%;
  width: 100%;
}
.zoomIn img {
  transition: all 0.5s ease-in-out;
}
.zoomIn:hover img {
  transform: scale(1.05);
}

.zoomOut {
  overflow: hidden;
  margin: 0;
}
.zoomOut img {
  transition: all 0.5s ease-in-out;
}
.zoomOut:hover img {
  transform: scale(0.925);
}

.bold {
  font-weight: bold;
}

.square {
  list-style-type: square;
}

/* ====================================== _____________ Classes Styles _____________ ====================================== */
/* ====================================== _____________ Reset Styles _____________ ====================================== */
* {
  outline: 0 !important;
  box-shadow: none !important;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 576px) {
  html {
    font-size: 85%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 88%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}

body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Cinzel";
  overflow-x: hidden;
}
body.ar {
  direction: rtl;
  text-align: start;
}
body.ar ul {
  padding: 0;
}
@media (max-width: 768px) {
  body.ar ul {
    padding: 0 15px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 700px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 900px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
.cd-timeline__content h2 {
  color: #654932;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.cd-timeline__content p {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 200;
}

.cd-timeline__container::before {
  opacity: 0.1;
  background: #1E1E1E;
  width: 1px;
}

/* ====================================== _____________ Reset Styles _____________ ====================================== */
@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel-Bold.eot");
  src: url("fonts/Cinzel-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Cinzel-Bold.woff2") format("woff2"), url("fonts/Cinzel-Bold.woff") format("woff"), url("fonts/Cinzel-Bold.ttf") format("truetype"), url("fonts/Cinzel-Bold.svg#Cinzel-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel-Black.eot");
  src: url("fonts/Cinzel-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Cinzel-Black.woff2") format("woff2"), url("fonts/Cinzel-Black.woff") format("woff"), url("fonts/Cinzel-Black.ttf") format("truetype"), url("fonts/Cinzel-Black.svg#Cinzel-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel Decorative";
  src: url("fonts/CinzelDecorative-Bold.eot");
  src: url("fonts/CinzelDecorative-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/CinzelDecorative-Bold.woff2") format("woff2"), url("fonts/CinzelDecorative-Bold.woff") format("woff"), url("fonts/CinzelDecorative-Bold.ttf") format("truetype"), url("fonts/CinzelDecorative-Bold.svg#CinzelDecorative-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel Decorative";
  src: url("fonts/CinzelDecorative-Black.eot");
  src: url("fonts/CinzelDecorative-Black.eot?#iefix") format("embedded-opentype"), url("fonts/CinzelDecorative-Black.woff2") format("woff2"), url("fonts/CinzelDecorative-Black.woff") format("woff"), url("fonts/CinzelDecorative-Black.ttf") format("truetype"), url("fonts/CinzelDecorative-Black.svg#CinzelDecorative-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel Decorative";
  src: url("fonts/CinzelDecorative-Regular.eot");
  src: url("fonts/CinzelDecorative-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/CinzelDecorative-Regular.woff2") format("woff2"), url("fonts/CinzelDecorative-Regular.woff") format("woff"), url("fonts/CinzelDecorative-Regular.ttf") format("truetype"), url("fonts/CinzelDecorative-Regular.svg#CinzelDecorative-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel-Regular.eot");
  src: url("fonts/Cinzel-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Cinzel-Regular.woff2") format("woff2"), url("fonts/Cinzel-Regular.woff") format("woff"), url("fonts/Cinzel-Regular.ttf") format("truetype"), url("fonts/Cinzel-Regular.svg#Cinzel-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-Bold.eot");
  src: url("fonts/Cairo-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Cairo-Bold.woff2") format("woff2"), url("fonts/Cairo-Bold.woff") format("woff"), url("fonts/Cairo-Bold.ttf") format("truetype"), url("fonts/Cairo-Bold.svg#Cairo-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-ExtraLight.eot");
  src: url("fonts/Cairo-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Cairo-ExtraLight.woff2") format("woff2"), url("fonts/Cairo-ExtraLight.woff") format("woff"), url("fonts/Cairo-ExtraLight.ttf") format("truetype"), url("fonts/Cairo-ExtraLight.svg#Cairo-ExtraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-Black.eot");
  src: url("fonts/Cairo-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Cairo-Black.woff2") format("woff2"), url("fonts/Cairo-Black.woff") format("woff"), url("fonts/Cairo-Black.ttf") format("truetype"), url("fonts/Cairo-Black.svg#Cairo-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-Light.eot");
  src: url("fonts/Cairo-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Cairo-Light.woff2") format("woff2"), url("fonts/Cairo-Light.woff") format("woff"), url("fonts/Cairo-Light.ttf") format("truetype"), url("fonts/Cairo-Light.svg#Cairo-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-Regular.eot");
  src: url("fonts/Cairo-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Cairo-Regular.woff2") format("woff2"), url("fonts/Cairo-Regular.woff") format("woff"), url("fonts/Cairo-Regular.ttf") format("truetype"), url("fonts/Cairo-Regular.svg#Cairo-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-SemiBold.eot");
  src: url("fonts/Cairo-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/Cairo-SemiBold.woff2") format("woff2"), url("fonts/Cairo-SemiBold.woff") format("woff"), url("fonts/Cairo-SemiBold.ttf") format("truetype"), url("fonts/Cairo-SemiBold.svg#Cairo-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* ====================================== _____________ Global Styles _____________ ====================================== */
.investorRelations {
  background: white;
  padding: 30px 0;
}
.investorRelations .nav-container {
  background-color: #f8f8f8;
  padding: 10px 0;
  border-bottom: 2px solid #333;
}
.investorRelations_tabs {
  display: flex;
  padding: 0 15px;
  flex-wrap: wrap;
  justify-content: end;
}
.investorRelations_tabs_tab {
  margin: 0 15px;
  color: #555;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.investorRelations_tabs_tab:hover, .investorRelations_tabs_tab.active {
  background: #654932;
  color: white;
  border-radius: 5px;
}

.custTitle {
  display: inline-block;
}
.custTitle::before {
  left: 0 !important;
  width: 100% !important;
}
body.ar .custTitle::before {
  left: auto !important;
  right: 0 !important;
}

.custTitle2::before {
  left: -27% !important;
  width: 100% !important;
}
body.ar .custTitle2::before {
  left: auto !important;
  right: -27% !important;
}

.custTitle3::before {
  left: -20% !important;
  width: 118% !important;
}
body.ar .custTitle3::before {
  left: auto !important;
  right: -20% !important;
}

.custTitle4::before {
  left: -20% !important;
  width: 108% !important;
}
body.ar .custTitle4::before {
  left: auto !important;
  right: -20% !important;
}

.custTitle5::before {
  left: -20% !important;
  width: 60% !important;
}
body.ar .custTitle5::before {
  left: auto !important;
  right: -20% !important;
}

.custTitle6::before {
  left: -20% !important;
  width: 110% !important;
}
body.ar .custTitle6::before {
  left: auto !important;
  right: -20% !important;
}

.custTitle7::before {
  left: -20% !important;
  width: 90% !important;
}
body.ar .custTitle7::before {
  left: auto !important;
  right: -20% !important;
}

.custTitle8::before {
  left: -20% !important;
  width: 110% !important;
}
body.ar .custTitle8::before {
  left: auto !important;
  right: -20% !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ====================================== _____________ Global Styles _____________ ====================================== */
/* ====================================== _____________ Header Styles _____________ ====================================== */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 9;
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(50px);
}
header nav {
  padding: 1rem !important;
  background-color: none !important;
}
header nav .navbar-brand {
  margin-bottom: 0;
  margin-inline-end: 0;
}
header nav .nav-item {
  padding-inline-end: 0.75rem !important;
  padding-inline-start: 0.75rem !important;
}
header nav .nav-item.active .nav-link, header nav .nav-item:hover .nav-link {
  font-weight: bold;
}
@media (min-width: 992px) and (max-width: 1400px) {
  header nav .nav-item {
    padding-inline-end: 0.5rem !important;
    padding-inline-start: 0.5rem !important;
  }
}
@media (max-width: 991px) {
  header nav .nav-item {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important;
    padding-bottom: 10px;
  }
}
header nav .nav-link {
  color: white !important;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 !important;
}
@media (min-width: 992px) and (max-width: 1400px) {
  header nav .nav-link {
    padding: 0 !important;
    font-size: 0.8rem;
    margin-bottom: 0 !important;
  }
  header nav .nav-link.mainButton {
    font-size: 0.8rem !important;
  }
}
header nav .dropdown-toggle::after {
  display: inline-block;
  margin-inline-start: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background-image: url("../img/global/arrow.svg");
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
header nav .dropdown-menu {
  padding: 1rem;
  background-color: #f8e8d0;
  padding: 16px;
  border-radius: 12px;
  background: rgba(248, 232, 208, 0.9);
  backdrop-filter: blur(42px);
  min-width: 20rem;
}
header nav .dropdown-menu .dropdown-item {
  color: #654932;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  padding-inline-start: 0;
  padding-inline-end: 0;
  border-bottom: 1px solid #B6B6B6;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
header nav .dropdown-menu .dropdown-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
header nav .dropdown-menu .dropdown-item span {
  transition: all 0.3s ease-in-out;
  display: block;
}
header nav .dropdown-menu .dropdown-item::before {
  content: "";
  background-image: url("../img/global/goldArrow.svg");
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
header nav .dropdown-menu .dropdown-item::marker {
  display: none;
}
header nav .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}
header nav .dropdown-menu .dropdown-item:hover span {
  transform: translateX(15px);
}
body.ar header nav .dropdown-menu .dropdown-item:hover span {
  transform: translateX(-15px);
}
header nav .dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
}
@media (max-width: 991px) {
  header nav .navbar-collapse {
    margin-top: 1rem;
  }
}
@media (max-width: 991px) {
  header nav .calls {
    gap: 15px;
  }
  header nav .calls .nav-item:first-of-type .nav-link {
    padding-inline-start: 0 !important;
  }
}

/* ====================================== _____________ Header Styles _____________ ====================================== */
/* ====================================== _____________ Footer Styles _____________ ====================================== */
.footer {
  padding: 100px 0;
  background-color: #1E1E1E;
}
@media (max-width: 991px) {
  .footer {
    padding: 60px 0;
  }
}
.footer_content_logo {
  margin-bottom: 2rem;
}
.footer_content_desc {
  font-weight: 400;
  font-size: 1rem;
  color: white;
}
.footer_links_title {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.85rem;
}
.footer_links_item_link {
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  opacity: 60%;
  transition: all 0.3s ease-in-out;
}
.footer_links_item_link:hover {
  opacity: 100%;
  font-weight: bold;
  color: white;
}
.footer_links_item_link img {
  width: 24px;
  max-width: 24px;
  object-fit: contain;
  height: 24px;
}
.footer_links_item_link span {
  padding-inline-start: 10px;
}
.footer_links_item_title {
  color: #F8E8D0;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 400;
}
.footer_contactUsList .footer_links_item {
  padding-inline-start: 1.5rem;
  border-inline-start: 1px solid white;
}
.footer_contactUsList .footer_links_item .footer_links_item_link {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 300;
  text-transform: capitalize;
}
body.ar .footer_contactUsList .footer_links_item .footer_links_item_link {
  direction: ltr;
}
.footer_contactUsList .footer_links_item .footer_links_item_link:hover {
  font-weight: 300;
}
.footer_contactUsList .footer_links_item .footer_links_item_link span {
  padding: 0;
}
.footer_contactUsList .footer_links_item:last-of-type .footer_links_item_link {
  margin-bottom: 0;
}

.email-container {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 50px;
  overflow: hidden;
  width: 100%;
  padding: 5px 0;
}

.email-container input {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 0.85rem;
  outline: none;
  color: black;
  font-family: "Cairo";
  background-color: transparent;
}

.email-container button {
  background: #1E1E1E;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 50px;
  margin-inline-end: 5px;
}

.email-container button button {
  width: 14px;
  height: 12px;
}

.copyright {
  background-color: #000000;
  padding: 1rem 0;
}
@media (max-width: 568px) {
  .copyright {
    text-align: center;
  }
}
.copyright p {
  font-family: "Cairo";
  font-weight: 300;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 0;
  opacity: 90%;
}
.copyright .icon {
  font-weight: 300;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 0;
  opacity: 90%;
}
.copyright a {
  margin-bottom: 0;
}
.copyright a img {
  width: 60px;
  padding-inline-start: 7px;
  margin-top: -5px;
}

/* ====================================== _____________ Footer Styles _____________ ====================================== */
/* ====================================== _____________ Forms Styles _____________ ====================================== */
/* ====================================== _____________ Forms Styles _____________ ====================================== */
/* ====================================== _____________ Buttons Styles _____________ ====================================== */
.mainButton {
  display: inline-flex;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  background: #F8E8D0;
  color: black !important;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.mainButton:hover {
  background-color: transparent;
  color: white !important;
  border: 1px solid white;
}

.darkButton {
  display: inline-flex;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  background: #1E1E1E;
  color: white !important;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.darkButton:hover {
  background-color: transparent;
  color: #1E1E1E !important;
  border: 1px solid #1E1E1E;
}

.goldButton {
  display: inline-flex;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  background: #654932;
  color: white !important;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.goldButton:hover {
  background-color: transparent;
  color: #654932 !important;
  border: 1px solid #654932;
}

@media (min-width: 992px) and (max-width: 1400px) {
  header .mainButton {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.75rem;
  }
}

/* ====================================== _____________ Buttons Styles _____________ ====================================== */
/* ====================================== _____________ Slider Styles _____________ ====================================== */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .swiper-slide {
    align-items: start;
  }
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 0.1;
  background: #FFF;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  margin: 0 5px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #F8E8D0;
  width: 16px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 22px;
  height: 22px;
  margin-top: 0;
  color: white;
  top: auto;
  bottom: 2%;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 5%;
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 5%;
  left: auto;
}

.history .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.history .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
  background: #F8E8D0;
  width: 20px !important;
  height: 7px;
  border-radius: 6px;
  margin: 0 5px;
}
.history .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.history .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #654932;
  width: 25px !important;
}

/* ====================================== _____________ Slider Styles _____________ ====================================== */
.faqs {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .faqs {
    padding: 60px 0;
  }
}
.faqs .focusArea_content_title {
  margin-bottom: 40px;
}
.faqs .accordion {
  background-image: url("../img/faqs/pattern.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.faqs .card {
  margin-bottom: 1rem;
  border-radius: 12px !important;
  border: 1px solid #654932 !important;
  background-color: transparent;
  padding: 25px;
}
.faqs .card button {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  background-color: transparent;
  padding: 0;
  text-align: start;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.faqs .card button:hover {
  text-decoration: none;
}
.faqs .card .card-header {
  border: none;
  background-color: transparent;
  padding: 0;
}
.faqs .card .card-body {
  padding: 0;
  padding-top: 32px;
  color: #A0A0A0;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
}
.faqs .card.active {
  background: #1C1A1A !important;
  box-shadow: 0 1px 12px 0 rgba(255, 215, 0, 0.1) !important;
}
.faqs .card.active button {
  color: #F8E8D0;
}

/* ====================================== _____________ cards Styles _____________ ====================================== */
/* ====================================== _____________ cards Styles _____________ ====================================== */
/* ====================================== _____________ inputfile Styles _____________ ====================================== */
.upload-wrapper {
  display: flex;
  padding: 8px 8px 8px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 4px;
  border: 1px dashed rgba(248, 232, 208, 0.5);
  background: #000;
}

.upload-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.upload-box img {
  width: 70px;
  height: 50px;
  margin-bottom: 8px;
}

.upload-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180.872px;
  height: 40.392px;
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #F8E8D0;
  background: rgba(248, 232, 208, 0.1);
  padding: 0 !important;
}

#fileName {
  font-size: 1rem;
  color: #fff;
  margin-top: 10px;
  display: none;
  margin-bottom: 10px;
}

/* ====================================== _____________ inputfile Styles _____________ ====================================== */
/* _____________ start banner Styles _____________ */
.banner {
  height: 100vh;
  color: #F8E8D0;
  display: flex;
  align-items: center;
  background-color: #1E1E1E;
}
.banner .swiper {
  height: 73%;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .banner {
    height: 60vh;
  }
  .banner .swiper {
    height: 60%;
  }
}
.banner_slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.banner_slide_img {
  position: relative;
  z-index: -1;
  object-position: bottom;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: fill !important;
}
@media (max-width: 768px) {
  .banner_slide_img {
    object-fit: cover !important;
  }
}
.banner_slide_content {
  padding: 0 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
body.ar .banner_slide_content {
  left: auto;
  right: 0 !important;
}
.banner_slide_content span {
  margin-bottom: 0.8rem;
  display: block;
}
.banner_slide_content_title {
  color: #F8E8D0;
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .banner_slide_content_title {
    font-size: 2rem;
  }
}
.banner_slide_content_desc {
  color: #F8E8D0;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.banner_slide_content .mainButton {
  padding: 0.85rem 3.4rem;
}
.banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
  bottom: 30%;
  text-align: start;
  padding: 0 2rem;
}
.banner .swiper-slide-active span {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.banner .swiper-slide-active .banner_slide_content_title {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}
.banner .swiper-slide-active p {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1s;
}
.banner .swiper-slide-active a {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1.5s;
}
.banner .swiper-slide-active a {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1.5s;
}
.banner_scroll {
  position: absolute;
  bottom: -50px;
  width: 100%;
  color: white;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .banner_scroll {
    bottom: -70px;
  }
}
.banner_scroll a {
  margin-bottom: 0;
}
.banner_scroll p {
  margin-bottom: 0;
  color: white;
  padding-inline-end: 2rem;
}
@media (max-width: 568px) {
  .banner_scroll p {
    padding-inline-end: 2.4rem;
  }
}

/* _____________ end banner Styles _____________ */
/* _____________ start internalBanner Styles _____________ */
.internalBanner {
  position: relative;
}
.internalBanner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.internalBanner_img {
  height: 742px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .internalBanner_img {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .internalBanner.newHeliopolisBanner .internalBanner_img {
    height: 900px;
  }
}
.internalBanner_title {
  color: #FFF;
  font-size: 8rem;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  padding-inline-start: 15px;
}
@media (max-width: 768px) {
  .internalBanner_title {
    font-size: 5rem;
  }
}
@media (max-width: 568px) {
  .internalBanner_title {
    font-size: 3rem;
  }
}
.internalBanner_title.aboutTitle, .internalBanner_title.largeTitle {
  font-size: 4.75rem;
}
@media (max-width: 768px) {
  .internalBanner_title.aboutTitle, .internalBanner_title.largeTitle {
    font-size: 3rem;
  }
}
.internalBanner_content {
  padding: 194px 0 78px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .internalBanner_content {
    padding: 174px 0 58px;
  }
}
@media (max-width: 768px) {
  .internalBanner_content {
    padding: 160px 0 40px;
  }
}
.internalBanner_content_logo {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .internalBanner_content_logo {
    width: 250px;
  }
}
.internalBanner_content_desc {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
}
.internalBanner_content .mainButton {
  width: 236px;
  height: 48px;
}
.internalBanner_content .bottom {
  display: flex;
  padding: 16px 32px 14px 32px;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(32px);
  width: 408px;
}
.internalBanner_content .bottom a {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.5;
}
.internalBanner_content .bottom a.active, .internalBanner_content .bottom a:hover {
  opacity: 1;
}
.internalBanner_content_details {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(32px);
  width: 400px;
  margin-inline-start: auto;
}
@media (max-width: 768px) {
  .internalBanner_content_details {
    margin-inline-end: auto;
    margin-inline-start: 0;
  }
}
@media (max-width: 768px) {
  .internalBanner_content_details {
    width: 100%;
  }
}
.internalBanner_content_details_title {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
}
.internalBanner_content_details ul {
  padding: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.internalBanner_content_details ul:last-of-type {
  border-bottom: none;
}
.internalBanner_content_details ul li {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.5);
  padding-inline-start: 12px;
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
  flex: 0 0 50%;
  width: 50%;
  color: white;
  font-family: "Cairo";
}
.internalBanner_content_details ul li:last-of-type {
  margin-bottom: 0;
}
.internalBanner_content_details ul li:nth-last-of-type(2) {
  margin-bottom: 0;
}
.internalBanner_content_details ul li span {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
}
.internalBanner_content_details ul.secontList {
  display: block;
  width: 100%;
}
.internalBanner_content_details ul.secontList li {
  font-weight: 300;
  display: block;
  width: 100%;
}
.internalBanner_content_details ul.secontList li span {
  font-weight: 300;
}
.internalBanner_content_details ul.secontList li span p {
  font-weight: 500;
  color: white;
  display: inline-block;
  margin-bottom: 0;
}

/* _____________ end internalBanner Styles _____________ */
/* _____________ start title Styles _____________ */
.mainTitle {
  color: #654932;
  font-size: 2.75rem;
  font-weight: 400;
}

/* _____________ end title Styles _____________ */
/*===== Vertical Timeline =====*/
#conference-timeline {
  position: relative;
}
@media (max-width: 992px) {
  #conference-timeline {
    max-width: 900px;
    padding: 0 15px;
    margin: auto;
  }
}
#conference-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  height: 100%;
  width: 1px;
  opacity: 0.1;
  background: #1E1E1E;
  top: 1%;
  transform: translateX(-50%);
}
body.ar #conference-timeline::before {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
@media (max-width: 768px) {
  #conference-timeline::before {
    display: none;
  }
}
#conference-timeline .small {
  width: 302px;
  height: 305px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  #conference-timeline .small {
    width: 270px;
    height: 270px;
    right: auto;
    left: 41px;
  }
  body.ar #conference-timeline .small {
    left: auto;
    right: 41px;
  }
}
@media (max-width: 768px) {
  #conference-timeline .small {
    width: 170px;
    height: 170px;
  }
}
#conference-timeline .large {
  width: 615px;
  height: 490px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  #conference-timeline .large {
    width: 450px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  #conference-timeline .large {
    width: 100%;
  }
}

#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
  display: table;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  background: #00b0bd;
  padding: 15px 23px;
  color: #fff;
  max-width: 5%;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

#conference-timeline .conference-timeline-content {
  padding-top: 67px;
  padding-bottom: 67px;
}
@media (max-width: 768px) {
  #conference-timeline .conference-timeline-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.timeline-article {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 100px;
}
.timeline-article:nth-of-type(even) .content-left-container {
  order: 2;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .timeline-article:nth-of-type(even) .content-left-container {
    margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  .timeline-article:nth-of-type(even) .content-left-container {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  .timeline-article:nth-of-type(even) .content-left-container {
    margin-inline-start: auto;
    padding: 0 15px;
    padding-inline-end: 0;
  }
}
@media (min-width: 992px) and (max-width: 576px) {
  .timeline-article:nth-of-type(even) .content-left-container {
    width: 100%;
    padding-inline-end: 15px;
    margin-inline-start: auto;
  }
}
@media (min-width: 992px) and (min-width: 576px) and (max-width: 767px) {
  .timeline-article:nth-of-type(even) .content-left-container {
    width: calc(668px + (100vw - 668px) / 2);
    padding-inline-end: 15px;
    margin-inline-start: auto;
  }
}
@media (min-width: 992px) and (min-width: 768px) and (max-width: 991px) {
  .timeline-article:nth-of-type(even) .content-left-container {
    width: calc(856px + (100vw - 856px) / 2);
  }
}
@media (min-width: 992px) and (min-width: 992px) and (max-width: 1199px) {
  .timeline-article:nth-of-type(even) .content-left-container {
    width: calc(1164px + (100vw - 1164px) / 2);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .timeline-article:nth-of-type(even) .content-left-container {
    width: calc(1400px + (100vw - 1400px) / 2);
  }
}
@media (min-width: 992px) {
  .timeline-article:nth-of-type(even) .content-left-container .content-left {
    width: 70%;
  }
}
.timeline-article:nth-of-type(even) .content-right-container {
  order: 1;
}
.timeline-article:nth-of-type(even) .content-right-container .content-right {
  text-align: start;
}
@media (max-width: 768px) {
  .timeline-article:nth-of-type(even) .content-right-container .content-right {
    margin-top: 7rem;
  }
}
.timeline-article:nth-of-type(even) .content-right-container .content-right .small {
  left: 41px;
  top: -110px;
}
body.ar .timeline-article:nth-of-type(even) .content-right-container .content-right .small {
  left: auto;
  right: 41px;
}
@media (max-width: 768px) {
  .timeline-article:nth-of-type(even) .content-right-container .content-right .small {
    top: -60px;
  }
}
.timeline-article:nth-of-type(odd) .content-left-container {
  order: 1;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .timeline-article:nth-of-type(odd) .content-left-container {
    margin-top: 10rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .timeline-article:nth-of-type(odd) .content-left-container {
    margin-inline-start: auto;
    padding-inline-end: 0;
  }
}
@media (min-width: 992px) and (max-width: 576px) {
  .timeline-article:nth-of-type(odd) .content-left-container {
    width: 100%;
    padding-inline-end: 15px;
    margin-inline-start: auto;
  }
}
@media (min-width: 992px) and (min-width: 576px) and (max-width: 767px) {
  .timeline-article:nth-of-type(odd) .content-left-container {
    width: calc(668px + (100vw - 668px) / 2);
    padding-inline-end: 15px;
    margin-inline-start: auto;
  }
}
@media (min-width: 992px) and (min-width: 768px) and (max-width: 991px) {
  .timeline-article:nth-of-type(odd) .content-left-container {
    width: calc(856px + (100vw - 856px) / 2);
  }
}
@media (min-width: 992px) and (min-width: 992px) and (max-width: 1199px) {
  .timeline-article:nth-of-type(odd) .content-left-container {
    width: calc(1164px + (100vw - 1164px) / 2);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .timeline-article:nth-of-type(odd) .content-left-container {
    width: calc(1400px + (100vw - 1400px) / 2);
  }
}
@media (min-width: 992px) {
  .timeline-article:nth-of-type(odd) .content-left-container .content-left {
    width: 70%;
  }
}
.timeline-article:nth-of-type(odd) .content-right-container {
  order: 2;
}
.timeline-article:nth-of-type(odd) .content-right-container .content-right {
  text-align: end;
}
@media (max-width: 768px) {
  .timeline-article:nth-of-type(odd) .content-right-container .content-right {
    margin-top: 3rem;
  }
}
.timeline-article:nth-of-type(odd) .content-right-container .content-right .small {
  right: 41px;
  bottom: -110px;
}
body.ar .timeline-article:nth-of-type(odd) .content-right-container .content-right .small {
  right: auto;
  left: 41px;
}
@media (max-width: 991px) {
  .timeline-article:nth-of-type(odd) .content-right-container .content-right {
    text-align: start;
  }
}
@media (max-width: 991px) {
  .timeline-article {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .timeline-article:last-of-type {
    margin-bottom: 0;
  }
  .timeline-article .content-left-container {
    order: 3 !important;
  }
  .timeline-article .content-right-container {
    order: 2 !important;
    width: 100%;
  }
}

@media (min-width: 991px) {
  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 44% !important;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .timeline-article .content-right {
    margin-top: 5rem;
  }
}

.timeline-article .content-right .small {
  position: absolute;
}

.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
}

.timeline-article p {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 200;
}

.timeline-article .article-number {
  color: #654932;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-size: 3rem;
  font-weight: 700;
}
body.ar .timeline-article .meta-date {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
@media (max-width: 768px) {
  .timeline-article .meta-date {
    position: relative;
    left: auto;
    transform: none;
    text-align: center;
    top: auto;
  }
  body.ar .timeline-article .meta-date {
    right: auto !important;
  }
}

.timeline-article .meta-date .date {
  display: block;
  text-align: center;
  font-weight: 900;
}

.timeline-article .meta-date .date {
  font-size: 30px;
  line-height: 40px;
}

/* _____________ start projectModal Styles _____________ */
.modal-dialog {
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .modal-dialog {
    max-width: 850px;
  }
}
@media (max-width: 991px) {
  .modal-dialog {
    max-width: 600px;
  }
}

.projectModal {
  padding: 60px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(50px);
}
@media (max-width: 1200px) {
  .projectModal {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .projectModal {
    padding: 20px;
  }
}
.projectModal_title {
  color: #F8E8D0;
  font-size: 2.75rem;
  font-weight: 400;
  margin-bottom: 24px;
}
.projectModal_title2 {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.projectModal_desc {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 300;
}
.projectModal_title3 {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
}
.projectModal_list_item {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 300;
}
.projectModal_desc2 {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0;
}

/* _____________ end projectModal Styles _____________ */
/* _____________ start fileSection Styles _____________ */
.downloadSection {
  padding: 80px 0;
  background: #654932;
}
@media (max-width: 991px) {
  .downloadSection {
    padding: 60px 0;
  }
}
.downloadSection .secondTitle {
  padding-inline-start: 2rem;
}
.downloadSection_box {
  display: flex;
  width: 962px;
  padding: 64px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(50px);
  margin: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .downloadSection_box {
    width: 70%;
    padding: 50px 30px;
  }
}
.downloadSection_box img {
  width: 248px;
  height: 141px;
  flex-shrink: 0;
  aspect-ratio: 248/141;
  object-fit: contain;
}
@media (max-width: 991px) {
  .downloadSection_box img {
    width: 200px;
    height: 100px;
  }
}
.downloadSection.downloadSection2 {
  background: #F8E8D0;
}
.downloadSection.downloadSection2 .secondTitle {
  color: #654932;
}
.downloadSection.downloadSection2 .goldButton:hover {
  background: #654932 !important;
  color: white !important;
}

/* _____________ start fileSection Styles _____________ */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
/* _____________ start partnerships Styles _____________ */
.partnerships {
  padding: 100px 0;
  background-color: white;
}
@media (max-width: 991px) {
  .partnerships {
    padding: 60px 0;
  }
}
.partnerships_content_title {
  margin-bottom: 3rem;
}
.partnerships_content_largeLogo {
  width: 520px;
}
@media (max-width: 991px) {
  .partnerships_content_largeLogo {
    width: 80%;
  }
}
.partnerships_content_logos {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}
.partnerships_content_logos_logo {
  width: 46%;
  flex: 0 0 46%;
  border-radius: 12px;
  border: 1px solid #AFACAC;
  display: flex;
  padding: 35px 30px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  height: 140px;
}
@media (max-width: 1200px) {
  .partnerships_content_logos_logo {
    width: 45%;
    flex: 0 0 45%;
  }
}
.partnerships_content_logos_logo img {
  width: 100%;
  object-fit: contain;
}

/* _____________ end partnerships Styles _____________ */
/* _____________ start whoWeAre Styles _____________ */
.whoWeAre {
  padding: 100px 0;
  background-color: white;
  background-image: url("../img/homepage/about-us/pattern.png");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
body.ar .whoWeAre {
  background-position: right;
}
@media (max-width: 991px) {
  .whoWeAre {
    padding: 60px 0;
    background-size: cover;
  }
}
.whoWeAre_content_title {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.whoWeAre_content_smallTtile {
  color: #1E1E1E;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Cairo";
}
.whoWeAre_content_desc {
  color: #1E1E1E;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Cairo";
}
.whoWeAre_content .darkButton {
  padding: 0.85rem 3.4rem;
  margin-top: 1rem;
}
.whoWeAre_content_count {
  text-align: center;
  display: block;
}
.whoWeAre_content_count_number {
  color: #1E1E1E;
  font-weight: 400;
  font-size: 3.125rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.whoWeAre_content_count_number.cairo {
  font-family: "Cairo";
  font-size: 20px;
}
.whoWeAre_content_count_number.cairo span {
  font-family: "Cinzel";
  font-size: 3.125rem;
}
.whoWeAre_content_count_number span {
  font-family: "Cinzel";
}
.whoWeAre_content_count_title {
  color: #787676;
  font-size: 1.25rem;
  font-weight: 400;
}

/* _____________ end whoWeAre Styles _____________ */
/* _____________ start mediaCenter Styles _____________ */
.mediaCenter {
  background: #654932;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .mediaCenter {
    padding: 60px 0;
  }
}
.mediaCenter .mySwiper {
  margin-top: 3rem;
}
.mediaCenter .mySwiper,
.mediaCenter .swiper-wrapper {
  height: auto;
}
.mediaCenter_slide_img {
  border-radius: 0 12px 12px 0;
  border: 3px solid rgba(248, 232, 208, 0.7);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  object-fit: cover;
  height: auto !important;
}
body.ar .mediaCenter_slide_img {
  border-radius: 12px 0 0 12px;
}
@media (min-width: 1200px) {
  .mediaCenter_slide_img {
    height: 430px !important;
  }
}
@media (max-width: 991px) {
  .mediaCenter_slide_img {
    border-radius: 12px 12px 0 0;
  }
}
.mediaCenter .swiper-slide-active .mediaCenter_slide_content_title {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.mediaCenter .swiper-slide-active .mediaCenter_slide_content_desc {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}
.mediaCenter .swiper-slide-active .darkButton {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1s;
}

.projects {
  padding: 80px 0;
  background-color: #1E1E1E;
}
@media (max-width: 991px) {
  .projects {
    padding: 60px 0;
  }
}
.projects_newHelipolis {
  margin-top: 4rem;
}
.projects_newHelipolis .mySwiper .swiper-pagination {
  bottom: 3% !important;
}
@media (max-width: 768px) {
  .projects_newHelipolis .mySwiper {
    height: 110%;
  }
}
@media (max-width: 568px) {
  .projects_newHelipolis .mySwiper {
    height: auto;
    padding-bottom: 5rem;
  }
  .projects_newHelipolis .mySwiper .swiper-wrapper {
    height: auto;
  }
}
.projects_slide {
  height: 100%;
  width: 100%;
}
.projects_slide_content {
  border: 3px solid rgba(248, 232, 208, 0.6980392157);
}
@media (min-width: 992px) {
  .projects_slide_img {
    height: 530px !important;
    border-radius: 12px;
  }
}
@media (max-width: 991px) {
  .projects_slide_img {
    height: 100% !important;
    border-radius: 12px 12px 0 0 !important;
  }
}

.mediaCenter .mainTitle,
.projects .mainTitle {
  color: #F8E8D0;
  margin-bottom: 0;
}
.mediaCenter_tab,
.projects_tab {
  color: #AFACAC;
  font-size: 1rem;
  font-weight: 400;
  opacity: 50%;
  position: relative;
}
.mediaCenter_tab:last-of-type,
.projects_tab:last-of-type {
  pointer-events: none;
}
.mediaCenter_tab::before,
.projects_tab::before {
  content: "";
  width: 13px;
  height: 3px;
  border-radius: 10px;
  position: absolute;
  background: #F8E8D0;
  bottom: -5;
  display: none;
}
.mediaCenter_tab.active,
.projects_tab.active {
  opacity: 100%;
  color: white;
  font-weight: bold;
}
.mediaCenter_tab.active::before,
.projects_tab.active::before {
  display: block;
}
.mediaCenter .events,
.projects .events {
  display: none;
}
@media (min-width: 1200px) {
  .mediaCenter_slide_img,
  .projects_slide_img {
    border-radius: 12px;
  }
}
.mediaCenter_slide_content,
.projects_slide_content {
  border-radius: 12px 0 0 12px;
  background: #FFF;
  box-shadow: 0 3.386px 21.163px 0 rgba(0, 0, 0, 0.1) !important;
  padding: 30px;
}
body.ar .mediaCenter_slide_content,
body.ar .projects_slide_content {
  border-radius: 0 12px 12px 0;
}
@media (min-width: 992px) {
  .mediaCenter_slide_content,
  .projects_slide_content {
    height: 80%;
  }
}
@media (max-width: 991px) {
  .mediaCenter_slide_content,
  .projects_slide_content {
    border-radius: 0 0 12px 12px;
  }
}
.mediaCenter_slide_content_img,
.projects_slide_content_img {
  width: 292px !important;
  height: 51px !important;
  margin-bottom: 2rem;
  object-fit: contain !important;
  object-position: left;
}
body.ar .mediaCenter_slide_content_img,
body.ar .projects_slide_content_img {
  object-position: right;
}
.mediaCenter_slide_content_title,
.projects_slide_content_title {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .mediaCenter_slide_content_title,
  .projects_slide_content_title {
    font-size: 1.2rem;
  }
}
.mediaCenter_slide_content_desc,
.projects_slide_content_desc {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .mediaCenter_slide_content_desc,
  .projects_slide_content_desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}
.mediaCenter_slide_content_date,
.projects_slide_content_date {
  color: #787676;
  font-size: 1rem;
  font-weight: 300;
  font-family: "Cairo";
}
.mediaCenter_slide_content .darkButton,
.mediaCenter_slide_content .goldButton,
.projects_slide_content .darkButton,
.projects_slide_content .goldButton {
  padding: 0.85rem 3.4rem;
}

/* _____________ end mediaCenter Styles _____________ */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
/* ====================================== _____________ Contact us Page Styles _____________ ====================================== */
/* _____________ start contactInfo Styles _____________ */
.contactInfo {
  background: #1E1E1E;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .contactInfo {
    padding: 60px 0;
  }
}
.contactInfo_img {
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.05);
  width: 816px;
  height: 615px !important;
}
@media (max-width: 991px) {
  .contactInfo_img {
    width: 100%;
    height: 400px !important;
  }
}
.contactInfo_content {
  width: 100%;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(50px);
}
@media (min-width: 991px) {
  .contactInfo_content {
    position: absolute;
    left: -20px;
  }
  body.ar .contactInfo_content {
    left: auto;
    right: -20px;
  }
}
.contactInfo_content_title {
  color: #F8E8D0;
  font-size: 2.75rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.contactInfo_content_desc {
  margin-bottom: 30px;
  font-family: "Cairo";
  color: white;
  font-size: 1.25rem;
}
.contactInfo_content_desc:last-child {
  margin-bottom: 0;
}
.contactInfo_content_desc2 {
  font-weight: 100;
  margin-bottom: 0.5rem;
}
.contactInfo_content ul {
  margin-bottom: 1.85rem;
}
.contactInfo_content ul .footer_links_item {
  margin-bottom: 1rem;
  display: flex;
  padding-inline-start: 1.75rem;
  gap: 30px;
  align-items: center;
}
@media (mix-width: 568px) {
  .contactInfo_content ul .footer_links_item {
    display: block;
  }
}
.contactInfo_content ul .footer_links_item .footer_links_item_title {
  min-width: 105px;
  margin-bottom: 0;
}
.contactInfo_content_introList {
  margin-bottom: 0 !important;
  font-family: "Cairo";
  color: white;
  font-size: 1.25rem;
  font-weight: 100;
  padding-inline-start: 27px;
}

/* _____________ end contactInfo Styles _____________ */
/* _____________ start letsConnect Styles _____________ */
.letsConnect {
  padding: 100px 0;
  background-color: black;
}
@media (max-width: 991px) {
  .letsConnect {
    padding: 60px 0;
  }
}
.letsConnect_title {
  margin-bottom: 50px;
}
.letsConnect_title::before {
  left: -85%;
  width: 150%;
}
body.ar .letsConnect_title::before {
  left: auto;
  right: -85%;
}
@media (max-width: 991px) {
  .letsConnect_title::before {
    width: 100%;
    left: -50%;
  }
  body.ar .letsConnect_title::before {
    left: auto;
    right: -50%;
  }
}
@media (max-width: 568px) {
  .letsConnect_title::before {
    left: -30%;
  }
  body.ar .letsConnect_title::before {
    left: auto;
    right: -30%;
  }
}
.letsConnect_form {
  width: 90%;
}
@media (max-width: 991px) {
  .letsConnect_form {
    width: 100%;
  }
}
.letsConnect_form_label {
  color: #FFF;
  font-family: "Cairo";
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.letsConnect_form .form-control {
  padding: 8px 8px 12px 10px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(248, 232, 208, 0.7);
  background: #000;
  resize: none;
  color: #979797;
  font-family: "Cairo";
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.2px;
}
.letsConnect_form .form-control::placeholder {
  color: #979797;
  font-family: "Cairo";
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.2px;
}
.letsConnect_form textarea {
  height: 130px;
  margin-bottom: 40px;
}
.letsConnect_form button {
  width: 180.872px;
  height: 40.392px;
  padding: 8px 48px;
}
.letsConnect_img {
  border-radius: 10px;
}
.letsConnect_img img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .letsConnect_img img {
    height: 400px;
  }
}
@media (max-width: 568px) {
  .letsConnect_img img {
    height: 250px;
  }
}

/* _____________ end letsConnect Styles _____________ */
/* ====================================== _____________ Contact us Page Styles _____________ ====================================== */
/* ====================================== _____________ Contact us Page Styles _____________ ====================================== */
/* _____________ start yourFuture Styles _____________ */
.yourFuture {
  padding: 80px 0;
  background-color: white;
}
@media (max-width: 991px) {
  .yourFuture {
    padding: 60px 0;
  }
}
.yourFuture_title {
  margin-bottom: 80px;
  text-align: center;
  color: white;
  position: relative;
  color: #1E1E1E;
  font-size: 4rem;
  font-weight: 400;
  line-height: 100px;
  letter-spacing: 10px;
}
@media (max-width: 991px) {
  .yourFuture_title {
    font-size: 3rem;
    line-height: 90px;
  }
}
@media (max-width: 768px) {
  .yourFuture_title {
    font-size: 2rem;
    line-height: 80px;
  }
}
@media (max-width: 568px) {
  .yourFuture_title {
    font-size: 1.5rem;
    letter-spacing: 5px;
    line-height: 50px;
  }
}
.yourFuture_title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -100%;
  background-color: #FF0000;
  width: 150%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}
body.ar .yourFuture_title::before {
  right: auto;
  left: -100%;
}
@media (max-width: 991px) {
  .yourFuture_title {
    margin-bottom: 60px;
  }
}
.yourFuture_img {
  width: 100%;
  object-fit: cover;
}

/* _____________ end yourFuture Styles _____________ */
/* _____________ start projects Styles _____________ */
.ourProjects {
  background-color: #1E1E1E;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .ourProjects {
    padding: 60px 0 40px;
  }
}
.ourProjects_title {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .ourProjects_title {
    margin-bottom: 60px;
  }
}
.ourProjects_title::before {
  left: -85%;
  width: 150%;
  bottom: -15px;
}
body.ar .ourProjects_title::before {
  left: auto;
  right: -85%;
}
@media (max-width: 991px) {
  .ourProjects_title::before {
    width: 100%;
    left: -50%;
  }
  body.ar .ourProjects_title::before {
    left: auto;
    right: -50%;
  }
}
@media (max-width: 568px) {
  .ourProjects_title::before {
    left: -30%;
  }
  body.ar .ourProjects_title::before {
    left: auto;
    right: -30%;
  }
}
.ourProjects .swiper,
.ourProjects .swiper-wrapper {
  height: 40%;
}
@media (max-width: 568px) {
  .ourProjects .swiper,
  .ourProjects .swiper-wrapper {
    height: 70%;
  }
}
.ourProjects_slide {
  height: 293px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background-image: url("../img/ourProjects/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center !important;
}
.ourProjects_slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.93) 100%);
}
.ourProjects_slide:nth-of-type(even) {
  bottom: -30%;
  position: relative;
}
.ourProjects_slide_title {
  color: #654932;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

/* _____________ end projects Styles _____________ */
/* ====================================== _____________ Contact us Page Styles _____________ ====================================== */
.historyJadinah .swiper {
  height: 100% !important;
}
.historyJadinah .slideTwo .small1 {
  width: 763px !important;
}
@media (min-width: 769px) {
  .historyJadinah .slideTwo .small2 {
    width: 1170px !important;
    height: 455px !important;
    right: -40% !important;
    bottom: -107px !important;
    position: absolute;
  }
  body.ar .historyJadinah .slideTwo .small2 {
    right: auto !important;
    left: -40% !important;
  }
}
@media (min-width: 1400px) {
  .historyJadinah .slideTwo .small2 {
    width: 1170px !important;
    height: 455px !important;
    right: -40% !important;
    bottom: -107px !important;
  }
  body.ar .historyJadinah .slideTwo .small2 {
    right: auto !important;
    left: -40% !important;
  }
}
@media (min-width: 770px) and (max-width: 1400px) {
  .historyJadinah .slideTwo .small2 {
    width: 700px !important;
    height: 400px !important;
    right: -33% !important;
    bottom: -107px !important;
  }
  body.ar .historyJadinah .slideTwo .small2 {
    right: auto !important;
    left: -33% !important;
  }
}
@media (max-width: 1200px) {
  .historyJadinah .slideTwo .small2 {
    display: none;
  }
}
@media (max-width: 768px) {
  .historyJadinah .slideTwo .small2 {
    display: block;
  }
}
.historyJadinah .slideThree .large {
  width: 400px !important;
  height: 300px !important;
  right: 100%;
  left: auto !important;
}
body.ar .historyJadinah .slideThree .large {
  right: auto !important;
  left: 100% !important;
}
.historyJadinah .slideThree .history_slide_content {
  width: 50% !important;
  margin-inline-start: 0 !important;
  height: 50% !important;
  margin-top: -20rem !important;
}
@media (min-width: 769px) {
  .historyJadinah .slideThree .small2 {
    bottom: -107px !important;
    top: auto !important;
    width: 283px !important;
    height: 475px !important;
  }
}
@media (max-width: 768px) {
  .historyJadinah .slideThree .history_slide_content {
    margin-top: 0 !important;
  }
}
.historyJadinah .slideThree .history_slide_content2 {
  margin-inline-start: auto !important;
  justify-content: end !important;
  padding-inline-start: 185px !important;
}
@media (max-width: 991px) {
  .historyJadinah .slideThree .history_slide_content2 {
    padding-inline-start: 0 !important;
  }
}
.historyJadinah .slideFour .history_slide_content {
  justify-content: end !important;
}
.historyJadinah .slideFour .history_slide_content,
.historyJadinah .slideTwo .history_slide_content {
  width: 50% !important;
}
.historyJadinah .slideThree .small3 {
  width: 931px;
  height: 257px;
  position: absolute;
  right: 20%;
  bottom: -18%;
  z-index: -1;
  object-fit: cover;
}
body.ar .historyJadinah .slideThree .small3 {
  right: auto;
  left: 20%;
}

.parts {
  background-image: url("../img/jadinah/bg.png") !important;
}
.parts::before {
  display: none;
}
.parts .custTitle3::before {
  width: 85% !important;
}
.parts .ourPartnership_content_desc {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.parts .ourPartnership_content_desc span {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  padding-top: 8px;
  line-height: normal;
}
.parts_note {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0;
}

.amenities {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.amenities_bg {
  width: 100%;
}
.amenities_content {
  position: absolute;
  padding: 220px 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .amenities_content {
    padding: 100px 0;
  }
}
body.ar .amenities_content {
  left: auto;
  right: 0;
}
.amenities_content_title {
  color: #F8E8D0;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.amenities_content_desc {
  color: #FFF;
  text-align: center;
  font-family: "Cairo";
  font-size: 1.5rem;
  font-weight: 300;
  width: 68%;
  margin: auto;
  margin-bottom: 64px;
}
.amenities_content svg,
.amenities_content .svg {
  width: 53.172px;
  height: 46.916px;
  margin-bottom: 1rem;
}
.amenities_content_subTitle {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.5rem;
  font-weight: 400;
}
.amenities_box {
  margin-bottom: 51px;
}
@media (max-width: 1200px) {
  .amenities_box {
    margin-bottom: 35px;
  }
}

/* ====================================== _____________ news Page Styles _____________ ====================================== */
/* _____________ start media Styles _____________ */
.media {
  padding: 80px 0;
  background-color: white;
  position: relative;
}
@media (max-width: 991px) {
  .media {
    padding: 60px 0;
  }
}
.media_title {
  color: black;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .media_title {
    padding-bottom: 20px;
  }
}
.media_title::before {
  display: none;
}
.media .swiper-wrapper {
  padding: 16px 20px;
}
@media (max-width: 768px) {
  .media .swiper-wrapper {
    padding: 16px 0;
  }
}
.media_slide_img {
  object-position: top;
}
.media_slide_newsCard_img {
  z-index: -1;
  position: relative;
}
.media_slide_newsCard_content {
  position: relative;
  position: absolute;
  bottom: 0;
  padding: 24px;
  pointer-events: none;
}
.media_slide_newsCard_content_title {
  color: #FFF;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
.media_slide_newsCard_content_desc {
  color: white;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 0;
}
.media_slide_newsCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}
.media .secondSlider .swiper, .media .secondSlider .swiper-wrapper {
  height: auto;
}
.media .secondSlider_slide {
  display: flex;
  width: 100%;
  padding: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 3px 9px 14px 0 rgba(0, 0, 0, 0.02) !important;
}
@media (max-width: 991px) {
  .media .secondSlider_slide {
    padding: 70px;
  }
}
@media (max-width: 768px) {
  .media .secondSlider_slide {
    padding: 60px;
  }
}
@media (max-width: 568px) {
  .media .secondSlider_slide {
    padding: 50px;
  }
}
.media .secondSlider_slide_content {
  width: 100%;
  text-align: end;
}
body.ar .media .secondSlider_slide_content {
  text-align: start;
}
.media .secondSlider_slide_content_title {
  color: #1E1E1E;
  font-size: 2.5rem;
  font-weight: 400;
}
.media .secondSlider_slide_content_desc {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 200;
  margin: 1rem 0;
}
.media .secondSlider_slide_content a {
  width: 198px;
  height: 48px;
}
.media .secondSlider .swiper-slide-active .secondSlider_slide_content_title {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.media .secondSlider .swiper-slide-active .secondSlider_slide_content_desc {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}
.media .secondSlider .swiper-slide-active .darkButton {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1s;
}

/* _____________ end media Styles _____________ */
/* _____________ start news Styles _____________ */
.latestNews {
  padding: 80px 0;
  background-color: white;
}
@media (max-width: 991px) {
  .latestNews {
    padding: 60px 0;
  }
}
.latestNews_title {
  color: black;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .latestNews_title {
    padding-bottom: 40px;
  }
}
.latestNews_title::before {
  display: none;
}
.latestNews .swiper,
.latestNews .swiper-wrapper {
  height: auto;
}
.latestNews_slide {
  height: 660px;
  border: 4px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .latestNews_slide {
    height: 560px;
  }
}
@media (max-width: 768px) {
  .latestNews_slide {
    height: 500px;
  }
}
@media (max-width: 568px) {
  .latestNews_slide {
    height: 460px;
  }
}
.latestNews_slide a {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.latestNews_slide_newsCard_img {
  z-index: -1;
  position: relative;
  object-position: top;
}
.latestNews_slide_newsCard_content {
  position: relative;
  position: absolute;
  bottom: 0;
  padding: 24px;
  pointer-events: none;
  width: 100%;
}
.latestNews_slide_newsCard_content_title {
  color: #FFF;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
body.ar .latestNews_slide_newsCard_content {
  text-align: start;
}
.latestNews_slide_newsCard_content_desc {
  color: white;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 0;
}
.latestNews_slide_newsCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}

/* _____________ end news Styles _____________ */
/* ====================================== _____________ news Page Styles _____________ ====================================== */
/* ====================================== _____________ Contact us Page Styles _____________ ====================================== */
/* _____________ start missionVision Styles _____________ */
.missionVision {
  background: #1E1E1E;
  padding: 180px 0;
}
@media (max-width: 991px) {
  .missionVision {
    padding: 60px 0;
  }
}
.missionVision_custRow {
  margin-bottom: 50px;
  position: relative;
}
.missionVision_custRow:last-of-type {
  margin-bottom: 0;
}
.missionVision_custRow:nth-of-type(even) .missionVision_custRow_content {
  order: 1;
}
@media (max-width: 991px) {
  .missionVision_custRow:nth-of-type(even) .missionVision_custRow_content {
    order: 2;
  }
}
@media (min-width: 991px) {
  .missionVision_custRow:nth-of-type(even) .missionVision_custRow_content .missionVision_content {
    left: 0%;
    bottom: -30%;
  }
  body.ar .missionVision_custRow:nth-of-type(even) .missionVision_custRow_content .missionVision_content {
    left: auto;
    right: 0%;
  }
}
.missionVision_custRow:nth-of-type(even) .missionVision_custRow_img {
  order: 2;
}
@media (max-width: 991px) {
  .missionVision_custRow:nth-of-type(even) .missionVision_custRow_img {
    order: 1;
  }
}
.missionVision_custRow:nth-of-type(odd) .missionVision_custRow_content {
  order: 2;
}
@media (min-width: 991px) {
  .missionVision_custRow:nth-of-type(odd) .missionVision_custRow_content .missionVision_content {
    right: 0;
    top: -20%;
  }
  body.ar .missionVision_custRow:nth-of-type(odd) .missionVision_custRow_content .missionVision_content {
    right: auto;
    left: 0;
  }
}
.missionVision_custRow:nth-of-type(odd) .missionVision_custRow_img {
  order: 1;
}
.missionVision_img {
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 383px;
}
@media (max-width: 991px) {
  .missionVision_img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
@media (max-width: 768px) {
  .missionVision_img {
    height: auto !important;
  }
}
.missionVision_content {
  width: 130%;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(50px);
}
@media (min-width: 991px) {
  .missionVision_content {
    position: absolute;
    z-index: 2;
  }
}
@media (max-width: 990px) {
  .missionVision_content {
    width: 100%;
    position: initial;
    border-radius: 0 0 10px 10px;
  }
}
.missionVision_content_title {
  color: #F8E8D0;
  font-size: 2.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.missionVision_content_desc {
  margin-bottom: 0;
  font-family: "Cairo";
  color: white;
  font-size: 1rem;
  font-weight: 200;
  line-height: 30px;
}

/* _____________ end missionVision Styles _____________ */
/* _____________ start brands Styles _____________ */
.brands {
  background: #1E1E1E;
  padding: 100px 0;
  background-image: url("../img/about/bg2.jpg");
  background-size: cover;
  position: relative;
}
.brands::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}
body.ar .brands::before {
  left: auto;
  right: 0;
}
.brands .container {
  z-index: 2;
  position: relative;
}
@media (max-width: 991px) {
  .brands {
    padding: 60px 0;
  }
}
.brands_title {
  color: #F8E8D0;
  font-size: 2.75rem;
  font-weight: 400;
}
.brands_content {
  text-align: center;
  width: 100%;
  padding: 40px;
  min-height: 252px;
  border-radius: 8px;
  border: 1px solid rgba(248, 232, 208, 0.7);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}
.brands_content_title {
  color: #F8E8D0;
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.brands_content_desc {
  margin-bottom: 0;
  font-family: "Cairo";
  color: white;
  font-size: 1rem;
  font-weight: 200;
}

/* _____________ end brands Styles _____________ */
/* _____________ start board Styles _____________ */
.board {
  padding: 80px 0;
  background-color: #1E1E1E;
}
@media (max-width: 991px) {
  .board {
    padding: 60px 0 40px;
  }
}
.board_title {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .board_title {
    margin-bottom: 60px;
  }
}
.board_title::before {
  left: -100%;
  width: 150%;
  bottom: -15px;
}
body.ar .board_title::before {
  left: auto;
  right: -100%;
}
@media (max-width: 991px) {
  .board_title::before {
    width: 100%;
    left: -50%;
  }
  body.ar .board_title::before {
    left: auto;
    right: -50%;
  }
}
@media (max-width: 568px) {
  .board_title::before {
    left: -30%;
  }
  body.ar .board_title::before {
    left: auto;
    right: -30%;
  }
}
.board_title.smallTitle {
  font-size: 3rem;
}
.board .swiper,
.board .swiper-wrapper {
  height: 70%;
}
@media (max-width: 568px) {
  .board .swiper,
  .board .swiper-wrapper {
    height: 70%;
  }
}
.board_slide {
  border-radius: 30px;
  background-color: #3C3C3C;
  padding: 25px;
  display: block;
  min-height: 480px;
  text-align: center;
}
@media (max-width: 1200px) {
  .board_slide {
    min-height: 410px;
  }
}
@media (max-width: 568px) {
  .board_slide {
    min-height: 410px;
  }
}
.board_slide:nth-of-type(even) {
  bottom: -15%;
  position: relative;
}
.board_slide_title {
  font-size: 1.25rem;
  color: #F8E8D0;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.board_slide_desc {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 300;
  width: 80%;
  margin: auto;
  text-align: center;
}
.board_slide_img {
  border-radius: 8px;
  height: auto !important;
  width: 100% !important;
  margin: auto;
  margin-bottom: 26px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .board_slide_img {
    width: 248px !important;
  }
}
@media (max-width: 568px) {
  .board_slide_img {
    width: 80% !important;
  }
}

/* _____________ end board Styles _____________ */
/* ====================================== _____________ Contact us Page Styles _____________ ====================================== */
/* ====================================== _____________ new heliopolis Page Styles _____________ ====================================== */
/* _____________ start overview Styles _____________ */
.overview {
  padding: 120px 0;
  background-image: url("../img/newHeliopolis/bg2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.overview::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}
@media (max-width: 991px) {
  .overview {
    padding: 80px 0;
  }
}
@media (min-width: 991px) {
  .overview_content {
    background-image: url("../img/newHeliopolis/pattern.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 65px;
  }
  body.ar .overview_content {
    background-image: url("../img/newHeliopolis/patternAr.png");
  }
}
@media (max-width: 990px) {
  .overview_content {
    display: flex;
    flex-direction: column;
    fill: rgba(0, 0, 0, 0.3);
    stroke-width: 2px;
    stroke: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border-radius: 0 0 20px 20px;
  }
}
.overview_content_title {
  color: #F8E8D0;
  font-size: 2.75rem;
  font-weight: 400;
}
@media (max-width: 990px) {
  .overview_content_title {
    margin-bottom: 1.5rem;
    padding: 60px 60px 0 60px;
  }
}
@media (max-width: 768px) {
  .overview_content_title {
    margin-bottom: 2rem;
    padding: 0 40px 0 40px;
  }
}
.overview_content_desc {
  padding: 0 80px 0 80px;
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 32px;
}
@media (max-width: 1400px) {
  .overview_content_desc {
    padding: 0 0 0 80px;
  }
}
@media (max-width: 991px) {
  .overview_content_desc {
    padding: 0 40px;
  }
}
.overview_slider {
  clip-path: polygon(0 20%, 93% 0, 100% 0, 100% 100%, 0 100%);
}
body.ar .overview_slider {
  transform: scaleX(-1);
}
body.ar .overview_slider .overview_slider_slide_img {
  transform: scaleX(-1);
}
@media (min-width: 991px) {
  .overview_slider {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  body.ar .overview_slider {
    left: auto;
    right: 0;
  }
  .overview_slider .swiper {
    width: 425px;
    height: 490px;
  }
  body.ar .overview_slider .swiper {
    height: 370px;
  }
}
@media (max-width: 1200px) {
  .overview_slider .swiper {
    width: 330px !important;
    height: 445px !important;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .overview_slider {
    width: 390px;
  }
}
@media (max-width: 990px) {
  .overview_slider {
    width: 100% !important;
    height: 425px;
    left: 15px;
  }
  body.ar .overview_slider {
    left: auto;
    right: 15px;
  }
}
.overview_slider_slide {
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .overview_slider_slide {
    border-radius: 20px 20px 0 0;
  }
}
.overview_slider_slide_img {
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .overview_slider_slide_img {
    border-radius: 20px 20px 0 0;
  }
}

/* _____________ start overview Styles _____________ */
/* _____________ start history Styles _____________ */
.history {
  padding: 60px 0;
  background-color: white;
}
@media (max-width: 769px) {
  .history .leftContainer {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .history .leftContainer .history_slide_imgs {
    order: 1;
    margin-bottom: 1rem;
  }
  .history .leftContainer .history_slide_content {
    order: 2;
  }
}
@media (max-width: 1200px) {
  .history_slide {
    height: 100%;
  }
}
.history_slide_imgs {
  position: relative;
}
.history_slide_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
@media (max-width: 768px) {
  .history_slide_content {
    display: block;
  }
}
.history_slide_content_title {
  color: #654932;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 1rem;
}
.history_slide_content_secondTitle {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  display: block;
}
.history_slide_content_desc {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 300;
  line-height: 24px;
}
.history .slideOne .large {
  width: 700px;
  height: 490px;
  position: relative;
  right: -10%;
}
body.ar .history .slideOne .large {
  right: auto;
  left: -10%;
}
@media (max-width: 1200px) {
  .history .slideOne .large {
    width: 894px;
    height: 490px;
    position: relative;
    right: 0;
    width: 100%;
  }
  body.ar .history .slideOne .large {
    right: auto;
    left: 0;
  }
}
@media (max-width: 991px) {
  .history .slideOne .large {
    height: 350px;
  }
}
.history .slideOne .small2 {
  width: 593px;
  height: 305px;
  position: absolute;
  bottom: -30%;
  right: -32%;
  object-fit: cover;
}
body.ar .history .slideOne .small2 {
  right: auto;
  left: -32%;
}
@media (max-width: 1200px) {
  .history .slideOne .small2 {
    display: none;
  }
}
.history .slideOne .small1 {
  width: 250px;
  height: 294px;
  position: absolute;
  left: -5%;
  bottom: -35%;
  object-fit: cover;
}
body.ar .history .slideOne .small1 {
  left: auto;
  right: -5%;
}
@media (max-width: 1200px) {
  .history .slideOne .small1 {
    bottom: -15%;
  }
}
@media (max-width: 991px) {
  .history .slideOne .small1 {
    display: none;
  }
}
@media (min-width: 769px) {
  .history .slideTwo .history_slide_imgs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.history .slideTwo .history_slide_content {
  display: flex;
  justify-content: center;
  width: 35%;
  margin: auto;
  margin-inline-start: 8rem;
  height: 100%;
  margin-top: 15rem;
}
@media (max-width: 1400px) {
  .history .slideTwo .history_slide_content {
    margin-inline-start: 15rem;
  }
}
@media (max-width: 1200px) {
  .history .slideTwo .history_slide_content {
    margin: 15rem 0 0 0;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .history .slideTwo .history_slide_content {
    width: 100% !important;
    display: block;
    margin: 0 !important;
  }
}
.history .slideTwo .large {
  width: 797px;
  height: 409px;
  position: absolute;
  right: 0;
  top: 0;
}
body.ar .history .slideTwo .large {
  right: auto;
  left: 0;
}
.history .slideTwo .large .small2 {
  object-fit: cover;
}
@media (min-width: 769px) {
  .history .slideTwo .large .small2 {
    width: 593px;
    height: 305px;
    position: absolute;
    right: -5%;
    bottom: 0;
    height: 50%;
    z-index: -1;
  }
  body.ar .history .slideTwo .large .small2 {
    right: auto;
    left: -5%;
  }
}
@media (max-width: 1200px) {
  .history .slideTwo .large {
    top: 0;
    right: 0;
  }
  body.ar .history .slideTwo .large {
    right: auto;
    left: 0;
  }
}
@media (max-width: 768px) {
  .history .slideTwo .large {
    width: 100%;
    height: 350px;
  }
}
.history .slideTwo .small1 {
  width: 508px;
  height: 318px;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 20%;
  object-fit: cover;
}
body.ar .history .slideTwo .small1 {
  left: auto;
  right: 20%;
}
@media (max-width: 1200px) {
  .history .slideTwo .small1 {
    left: 0;
  }
  body.ar .history .slideTwo .small1 {
    right: 0;
    left: auto;
  }
}
@media (max-width: 768px) {
  .history .slideTwo .small1 {
    display: none;
  }
}
@media (min-width: 769px) {
  .history .slideThree .history_slide_imgs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.history .slideThree .history_slide_content {
  display: flex;
  justify-content: start;
  width: 35%;
  margin: auto;
  margin-inline-start: 15rem;
  height: 100%;
}
.history .slideThree .history_slide_content_secondTitle {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
@media (max-width: 1450px) {
  .history .slideThree .history_slide_content {
    margin-inline-start: 18rem;
    width: 45%;
  }
}
@media (max-width: 991px) {
  .history .slideThree .history_slide_content {
    margin: 0;
    width: 100% !important;
  }
}
.history .slideThree .history_slide_content_list_item {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 1rem;
}
.history .slideThree .history_slide_content_list_item_date {
  font-weight: 400;
}
.history .slideThree .large {
  width: 597px;
  height: 464px;
  position: absolute;
  left: -25%;
  top: 0;
}
body.ar .history .slideThree .large {
  left: auto;
  right: -25%;
}
@media (max-width: 1600px) {
  .history .slideThree .large {
    left: -23%;
  }
  body.ar .history .slideThree .large {
    left: auto;
    right: -23%;
  }
}
@media (max-width: 1300px) {
  .history .slideThree .large {
    left: -26%;
    width: 550px;
  }
  body.ar .history .slideThree .large {
    left: auto;
    right: -26%;
  }
}
@media (max-width: 1200px) {
  .history .slideThree .large {
    bottom: 0;
    top: auto;
  }
}
@media (max-width: 991px) {
  .history .slideThree .large {
    width: 350px;
    height: 400px;
    display: none;
  }
}
@media (max-width: 768px) {
  .history .slideThree .large {
    display: none;
  }
}
.history .slideThree .small2 {
  object-fit: cover;
}
@media (min-width: 769px) {
  .history .slideThree .small2 {
    width: 250px;
    height: 294px;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
  }
  body.ar .history .slideThree .small2 {
    right: auto;
    left: 0;
  }
}
@media (max-width: 768px) {
  .history .slideThree .small2 {
    width: 100%;
    height: 350px;
  }
}
.history .slideThree .small3 {
  width: 931px;
  height: 257px;
  position: absolute;
  right: 30%;
  bottom: 20%;
  z-index: -1;
  object-fit: cover;
  object-position: top;
}
body.ar .history .slideThree .small3 {
  right: auto;
  left: 30%;
}
@media (max-width: 991px) {
  .history .slideThree .small3 {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .history .slideThree .small3 {
    display: none;
  }
}
.history .slideThree .small1 {
  width: 800px;
  height: 453px;
  position: absolute;
  top: 0;
  z-index: -1;
  right: -20%;
  object-fit: cover;
}
body.ar .history .slideThree .small1 {
  right: auto;
  left: -20%;
}
@media (max-width: 1450px) {
  .history .slideThree .small1 {
    width: 600px;
  }
}
@media (max-width: 991px) {
  .history .slideThree .small1 {
    width: 600px;
    height: 400px;
    display: none;
  }
}
@media (max-width: 768px) {
  .history .slideThree .small1 {
    display: none;
  }
}
@media (min-width: 769px) {
  .history .slideFour .history_slide_imgs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.history .slideFour .history_slide_content {
  display: flex;
  justify-content: start;
  width: 35%;
  margin: auto;
  margin-inline-start: 18rem;
  height: 100%;
}
@media (max-width: 991px) {
  .history .slideFour .history_slide_content {
    width: 50%;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .history .slideFour .history_slide_content {
    width: 100% !important;
    display: block;
  }
}
@media (min-width: 769px) {
  .history .slideFour .large {
    width: 250px;
    height: 723px;
    position: absolute;
    right: 0;
    top: 0;
  }
  body.ar .history .slideFour .large {
    right: auto;
    left: 0;
  }
}
@media (max-width: 1200px) {
  .history .slideFour .large {
    width: 350px;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .history .slideFour .large {
    height: 350px;
    width: 100%;
  }
}
.history .slideFour .small2 {
  width: 343px;
  height: 294px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 50%;
  height: 50%;
  z-index: -1;
  object-fit: cover;
}
body.ar .history .slideFour .small2 {
  left: auto;
  right: 50%;
  transform: translate(-50%, 50%);
}
@media (max-width: 768px) {
  .history .slideFour .small2 {
    display: none;
  }
}

/* _____________ start history Styles _____________ */
/* _____________ start partnership Styles _____________ */
.ourPartnership {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url("../img/newHeliopolis/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 123px 0;
}
@media (max-width: 991px) {
  .ourPartnership {
    padding: 80px 0;
  }
}
.ourPartnership.newPartnership {
  background-image: url("../img/partnerships/bg.jpg");
  padding: 80px 0;
  margin: 80px 0;
}
@media (max-width: 991px) {
  .ourPartnership.newPartnership {
    padding: 60px 0;
  }
}
.ourPartnership::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.ourPartnership_content {
  position: relative;
}
.ourPartnership_content .secondTitle {
  margin-bottom: 75px;
}
.ourPartnership_content .secondTitle::before {
  left: -75%;
}
body.ar .ourPartnership_content .secondTitle::before {
  left: auto;
  right: -75%;
}
.ourPartnership_content_desc {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 32px;
  font-family: "Cairo";
}
.ourPartnership_content_list {
  margin: 28px 0;
}
.ourPartnership_content_list_item {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 1rem;
}
.ourPartnership_content_list_item_date {
  font-weight: 400;
}
.ourPartnership_content_list_anotherList {
  margin-top: 16px;
  padding-inline-start: 3rem;
  opacity: 0.8;
}
.ourPartnership_content_list_anotherList li {
  padding-bottom: 1rem;
}
.ourPartnership_content_list_anotherList li:last-of-type {
  padding-bottom: 0;
}
.ourPartnership_content_desc2 {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 32px;
}

/* _____________ end partnership Styles _____________ */
/* ====================================== _____________ new heliopolis Page Styles _____________ ====================================== */
/* ====================================== _____________ mediaDetails Page Styles _____________ ====================================== */
/* _____________ start mediaDetails Styles _____________ */
.mediaDetails {
  background: white;
  padding-top: 195px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .mediaDetails {
    padding-bottom: 60px;
  }
}
.mediaDetails img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
}
.mediaDetails_content {
  padding-top: 40px;
}
.mediaDetails_content_title {
  color: #654932;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .mediaDetails_content_title {
    font-size: 2rem;
  }
}
.mediaDetails_content_desc {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 200;
  margin-bottom: 0;
}

/* _____________ end mediaDetails Styles _____________ */
/* ====================================== _____________ mediaDetails Page Styles _____________ ====================================== */
/* ====================================== _____________ governance-structure Page Styles _____________ ====================================== */
/* _____________ governanceStructure Section Styles _____________ */
.governanceStructure {
  padding: 95px 0 40px;
  background-color: white;
  position: relative;
  text-align: center;
}
@media (max-width: 991px) {
  .governanceStructure {
    padding: 60px 0;
  }
}
.governanceStructure_title {
  color: #654932;
  margin-top: 62px;
  width: 50%;
  margin: 62px auto 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.375px;
}
@media (max-width: 1400px) {
  .governanceStructure_title {
    width: 60%;
  }
}
@media (max-width: 1200px) {
  .governanceStructure_title {
    width: 65%;
  }
}
@media (max-width: 991px) {
  .governanceStructure_title {
    width: 75%;
  }
}
@media (max-width: 768px) {
  .governanceStructure_title {
    width: 100%;
  }
}

/* _____________ governanceStructure Section Styles _____________ */
/* _____________ structureImage Section Styles _____________ */
.structureImage {
  background-color: white;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .structureImage {
    padding: 0 0 60px;
  }
}
.structureImage_parent {
  padding: 40px;
  border-radius: 20px;
  background: rgba(248, 232, 208, 0.5);
  backdrop-filter: blur(50px);
}
.structureImage_parent img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* _____________ structureImage Section Styles _____________ */
/* ====================================== _____________ governance-structure Page Styles _____________ ====================================== */
/* ====================================== _____________ corporateGovernance Page Styles _____________ ====================================== */
/* _____________ Introduction Styles _____________ */
.Introduction {
  margin-top: 80px;
}

/* _____________ Introduction Styles _____________ */
/* _____________ directors Styles _____________ */
.directors {
  padding: 100px 0;
  background: #F8E8D0;
}
@media (max-width: 991px) {
  .directors {
    padding: 60px 0;
  }
}
.directors .contactInfo_content {
  z-index: 1;
}
@media (min-width: 991px) {
  .directors .contactInfo_content {
    left: auto;
    right: -20px;
  }
  body.ar .directors .contactInfo_content {
    right: auto;
    left: -20px;
  }
}
.directors .contactInfo_img {
  margin-inline-start: -130px;
}
@media (max-width: 1400px) {
  .directors .contactInfo_img {
    margin-inline-start: -215px;
  }
}
@media (max-width: 1200px) {
  .directors .contactInfo_img {
    margin-inline-start: -260px;
  }
}
@media (max-width: 1100px) {
  .directors .contactInfo_img {
    margin-inline-start: -300px;
  }
}
@media (max-width: 991px) {
  .directors .contactInfo_img {
    margin: 0;
    height: 350px !important;
  }
}

.responsibilities {
  background-image: url("../img/corporateGovernance/bg.jpg");
}
.responsibilities::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* _____________ directors Styles _____________ */
/* ====================================== _____________ corporateGovernance Page Styles _____________ ====================================== */
/* ====================================== _____________ boardCommittees Page Styles _____________ ====================================== */
/* _____________ committees Styles _____________ */
.committees {
  background: #F8E8D0;
  margin-top: 80px;
}

/* _____________ committees Styles _____________ */
/* _____________ auditCommittee Styles _____________ */
.auditCommittee {
  background-image: url("../img/boardCommittees/bg.jpg");
}
.auditCommittee::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* _____________ auditCommittee Styles _____________ */
/* _____________ duties Styles _____________ */
.duties {
  background-image: url("../img/boardCommittees/bg2.jpg");
}
.duties::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* _____________ duties Styles _____________ */
/* ====================================== _____________ boardCommittees Page Styles _____________ ====================================== */
/* ====================================== _____________ Contact us Page Styles _____________ ====================================== */
/* _____________ start yourFuture Styles _____________ */
.whistleblowing {
  background-color: #1E1E1E;
  margin-top: 80px;
}

/* _____________ end yourFuture Styles _____________ */
.Channels {
  background: #654932;
}
.Channels .contactInfo_content_desc {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 28px;
  font-family: "cairo";
  margin-bottom: 2rem;
}
.Channels .footer_links_item {
  color: #FFF;
  font-size: 1.25rem;
  margin-bottom: 2rem !important;
  font-weight: 200;
  line-height: 28px;
  font-family: "cairo";
}
.Channels .footer_links_item a {
  font-weight: 400;
  font-size: 1.25rem;
}

/* ====================================== _____________ Contact us Page Styles _____________ ====================================== */
/* ====================================== _____________ corporateGovernance Page Styles _____________ ====================================== */
/* _____________ aboutGhurnata Styles _____________ */
.aboutGhurnata {
  overflow: hidden;
}
.aboutGhurnata_imgs {
  position: relative;
  overflow: hidden;
}
@media (min-width: 568px) {
  .aboutGhurnata_imgs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8%;
  }
}
.aboutGhurnata_imgs_slide {
  width: 100% !important;
  height: 100% !important;
}
.aboutGhurnata_imgs_slide.swiper-slide-next, .aboutGhurnata_imgs_slide.swiper-slide-prev {
  overflow: hidden !important;
  opacity: 1;
}
@media (min-width: 768px) {
  .aboutGhurnata_imgs_slide.swiper-slide-next, .aboutGhurnata_imgs_slide.swiper-slide-prev {
    opacity: 0 !important;
  }
}
.aboutGhurnata_imgs_slide_img {
  border-radius: 8px;
  object-fit: cover;
  height: 520px !important;
}
@media (min-width: 769px) {
  .aboutGhurnata_imgs_slide_img:first-of-type {
    transform: rotate(15deg);
    right: 0;
    top: -300px;
    position: absolute;
  }
  body.ar .aboutGhurnata_imgs_slide_img:first-of-type {
    right: auto;
    left: 0;
    transform: rotate(-15deg);
  }
}
@media (max-width: 990px) {
  .aboutGhurnata_imgs_slide_img:first-of-type {
    top: -200px;
  }
}
@media (min-width: 769px) {
  .aboutGhurnata_imgs_slide_img:last-of-type {
    transform: rotate(-15deg);
    position: absolute;
    bottom: -290px;
    right: 0;
    width: 350px !important;
  }
  body.ar .aboutGhurnata_imgs_slide_img:last-of-type {
    right: auto;
    left: 0;
    transform: rotate(15deg);
  }
}
@media (min-width: 769px) {
  .aboutGhurnata_imgs_slide_img {
    width: 420px !important;
  }
}
@media (max-width: 768px) {
  .aboutGhurnata_imgs_slide_img {
    width: 100% !important;
    height: 100% !important;
  }
}
.aboutGhurnata_content {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .aboutGhurnata_content {
    padding: 40px 0 60px 0;
  }
}
.aboutGhurnata_content_title {
  color: #654932;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
.aboutGhurnata_content_desc {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
.aboutGhurnata_content_desc:last-of-type {
  margin-bottom: 0;
}
.aboutGhurnata_content_subTitle {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.5rem;
  font-weight: 500;
}
.aboutGhurnata .swiper-slide {
  height: 100% !important;
}

/* _____________ aboutGhurnata Styles _____________ */
/* _____________ culture Styles _____________ */
.culture {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .culture {
    padding: 60px 0 0 0;
  }
}
.culture_custRow {
  margin-bottom: 50px;
  position: relative;
}
.culture_custRow:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .culture_custRow {
    margin-bottom: 32px;
  }
}
.culture_custRow:nth-of-type(even) .culture_custRow_content {
  order: 1;
}
@media (max-width: 991px) {
  .culture_custRow:nth-of-type(even) .culture_custRow_content {
    order: 2;
  }
}
.culture_custRow:nth-of-type(even) .culture_custRow_img {
  order: 2;
}
@media (max-width: 991px) {
  .culture_custRow:nth-of-type(even) .culture_custRow_img {
    order: 1;
  }
}
.culture_custRow:nth-of-type(even) .culture_custRow_img img {
  border-radius: 0 20px 20px 0;
}
body.ar .culture_custRow:nth-of-type(even) .culture_custRow_img img {
  border-radius: 20px 0 0 20px;
}
.culture_custRow:nth-of-type(odd) .culture_custRow_content {
  order: 2;
}
.culture_custRow:nth-of-type(odd) .culture_custRow_img {
  order: 1;
}
.culture_custRow:nth-of-type(odd) .culture_custRow_img img {
  border-radius: 20px 0 0 20px;
}
body.ar .culture_custRow:nth-of-type(odd) .culture_custRow_img img {
  border-radius: 0 20px 20px 0;
}
.culture_img {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), url(<path-to-image>) lightgray 50%/cover no-repeat;
  width: 100%;
}
@media (max-width: 991px) {
  .culture_img {
    border-radius: 10px 10px 0 0 !important;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .culture_img {
    height: auto !important;
  }
}
.culture_content {
  flex-direction: column;
  justify-content: center;
  display: flex;
  height: 100%;
}
@media (max-width: 990px) {
  .culture_content {
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}
.culture_content_title {
  color: #654932;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .culture_content_title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.culture_content_desc {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
.culture_content_desc:last-of-type {
  margin-bottom: 0;
}

/* _____________ culture Styles _____________ */
/* _____________ ghurnataMissionVision Styles _____________ */
.ghurnataMissionVision {
  background: linear-gradient(180deg, #F8E8D0 0%, #654932 100%);
}
.ghurnataMissionVision .missionVision_content {
  border: 1px solid rgba(248, 232, 208, 0.1);
  background: rgba(255, 255, 255, 0.8);
}
.ghurnataMissionVision .missionVision_content .missionVision_content_title {
  color: #654932;
}
.ghurnataMissionVision .missionVision_content .missionVision_content_desc {
  color: #1E1E1E;
  line-height: 24px;
}
.ghurnataMissionVision .missionVision_content .missionVision_content_desc:first-of-type {
  margin-bottom: 10px;
}
.ghurnataMissionVision .missionVision_img {
  width: 800px;
  height: 423px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .ghurnataMissionVision .missionVision_img {
    width: 630px;
    height: 423px;
  }
}
@media (max-width: 991px) {
  .ghurnataMissionVision .missionVision_img {
    width: 100%;
    height: 423px;
  }
}
@media (min-width: 991px) {
  .ghurnataMissionVision .missionVision_custRow:nth-of-type(odd) .missionVision_custRow_content .missionVision_content {
    right: 15%;
    top: -15%;
  }
  body.ar .ghurnataMissionVision .missionVision_custRow:nth-of-type(odd) .missionVision_custRow_content .missionVision_content {
    right: auto;
    left: 15%;
  }
  .ghurnataMissionVision .missionVision_custRow:nth-of-type(even) .missionVision_custRow_content .missionVision_content {
    left: 0%;
    bottom: -25%;
  }
  body.ar .ghurnataMissionVision .missionVision_custRow:nth-of-type(even) .missionVision_custRow_content .missionVision_content {
    left: auto;
    right: 0%;
  }
}

/* _____________ ghurnataMissionVision Styles _____________ */
/* _____________ eventsPhotoGallery Styles _____________ */
.eventsPhotoGallery .latestNews_title {
  font-size: 2.75rem;
  letter-spacing: 0;
  padding-bottom: 0;
  margin-bottom: 28px;
}

/* _____________ eventsPhotoGallery Styles _____________ */
/* ====================================== _____________ corporateGovernance Page Styles _____________ ====================================== */
/* ====================================== _____________ corporateGovernance Page Styles _____________ ====================================== */
/* _____________ aboutMerryland Styles _____________ */
.aboutMerryland {
  padding: 50px 0;
}
.aboutMerryland_img {
  border-radius: 10px;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
  box-shadow: 3px 9px 20px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .aboutMerryland_img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .aboutMerryland_img {
    width: 45%;
    flex: 0 0 45%;
  }
}
.aboutMerryland_img:first-of-type {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .aboutMerryland_img:first-of-type {
    margin-bottom: 0;
    margin-inline-end: 2rem;
  }
}
.aboutMerryland_content {
  padding: 30px;
}
@media (max-width: 991px) {
  .aboutMerryland_content {
    padding: 40px 0;
  }
}
.aboutMerryland_content_title {
  color: #654932;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 400;
  text-align: center;
  position: relative;
}
.aboutMerryland_content_title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 40%;
  background: #F00;
}
body.ar .aboutMerryland_content_title::before {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
@media (max-width: 768px) {
  .aboutMerryland_content_title::before {
    width: 30%;
  }
}
.aboutMerryland_content_desc {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
.aboutMerryland_content_desc:last-of-type {
  margin-bottom: 0;
}
.aboutMerryland_content_subTitle {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 400;
}
.aboutMerryland_content_list_item {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.aboutMerryland_content_list_item:last-child {
  margin-bottom: 0;
}

/* _____________ aboutMerryland Styles _____________ */
/* _____________ MerrylandDetails Styles _____________ */
.MerrylandDetails {
  padding: 50px 0 250px;
  position: relative;
}
.MerrylandDetails_title {
  margin-bottom: 109px;
  color: #1E1E1E;
  font-size: 2rem;
  font-weight: 400;
}
.MerrylandDetails_title::before {
  bottom: -30px;
  left: -25%;
}
body.ar .MerrylandDetails_title::before {
  left: auto;
  right: -25%;
}
@media (max-width: 768px) {
  .MerrylandDetails {
    padding: 50px 0;
  }
}
.MerrylandDetails_img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .MerrylandDetails_img {
    border-radius: 20px 20px 0 0;
  }
}
.MerrylandDetails_content {
  width: 60%;
  padding: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(50px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
}
body.ar .MerrylandDetails_content {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
@media (max-width: 1200px) {
  .MerrylandDetails_content {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .MerrylandDetails_content {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .MerrylandDetails_content {
    width: 100%;
    position: relative;
    border-radius: 0 0 20px 20px;
  }
}
.MerrylandDetails_content_title {
  color: #F8E8D0;
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.MerrylandDetails_content_desc {
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  font-family: "Cairo";
}
.MerrylandDetails.partnershipDetails .partnershipDetails_cards {
  position: relative;
  margin-bottom: 18rem;
}
@media (max-width: 768px) {
  .MerrylandDetails.partnershipDetails .partnershipDetails_cards {
    margin-bottom: 3rem;
  }
}
.MerrylandDetails.partnershipDetails .partnershipDetails_cards:last-child {
  margin-bottom: 0;
}
.MerrylandDetails.partnershipDetails .partnershipDetails_cards .MerrylandDetails_content {
  width: 80%;
  bottom: -30%;
}
@media (max-width: 1200px) {
  .MerrylandDetails.partnershipDetails .partnershipDetails_cards .MerrylandDetails_content {
    width: 90%;
    bottom: -50%;
  }
}
@media (max-width: 768px) {
  .MerrylandDetails.partnershipDetails .partnershipDetails_cards .MerrylandDetails_content {
    width: 100%;
    position: relative;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 768px) {
  .MerrylandDetails.partnershipDetails .partnershipDetails_cards .MerrylandDetails_content .MerrylandDetails_content_title {
    font-size: 2rem;
  }
}

/* _____________ MerrylandDetails Styles _____________ */
/* ====================================== _____________ corporateGovernance Page Styles _____________ ====================================== */
/* ====================================== _____________ customer support Page Styles _____________ ====================================== */
/* _____________ start customerSupport Styles _____________ */
.customerSupport .contactInfo_content_title {
  margin-bottom: 20px;
}
.customerSupport .contactInfo_content_desc {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 12px;
}
.customerSupport .contactInfo_content_subTitle {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  font-family: "Cairo";
}
.customerSupport .contactInfo_content_subTitle a {
  font-weight: bold;
  font-size: 1.15rem;
  text-decoration: underline;
  margin-bottom: 0;
}
.customerSupport .contactInfo_content ul {
  margin-bottom: 1rem;
}
.customerSupport .contactInfo_content ul .footer_links_item {
  display: block;
}
.customerSupport .footer_links_item_title {
  margin-bottom: 10px;
}
.customerSupport .footer_links_item_link {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6) !important;
}
.customerSupport .footer_links_item_link span {
  color: white !important;
}
.customerSupport .contactInfo_content_subDesc {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 400;
}
.customerSupport .contactInfo_content_subDesc a {
  font-weight: bold;
  font-size: 1.1 rem;
  text-decoration: underline;
  margin-bottom: 0;
}

/* _____________ end customerSupport Styles _____________ */
/* ====================================== _____________ customer support Page Styles _____________ ====================================== */
/* ====================================== _____________ greenlifeSustainability Page Styles _____________ ====================================== */
.ourCommitment {
  background: linear-gradient(180deg, #21513A 0%, #0E3522 100%) !important;
}
.ourCommitment .contactInfo_content {
  border-radius: 8px;
  background: rgba(230, 230, 230, 0.75);
  backdrop-filter: blur(50px);
}
.ourCommitment .contactInfo_content .contactInfo_content_title {
  color: black;
  margin-bottom: 10px;
}
.ourCommitment .contactInfo_content .contactInfo_content_desc2 {
  color: black;
}
.ourCommitment .contactInfo_content .contactInfo_img {
  object-fit: cover;
}

.ourObjectives {
  background-color: #E6E6E6;
}
.ourObjectives .contactInfo_content {
  border-radius: 8px;
  background: rgba(34, 81, 59, 0.75);
  backdrop-filter: blur(50px);
}
.ourObjectives .contactInfo_content .contactInfo_content_title {
  color: #E6E6E6;
  margin-bottom: 10px;
}
.ourObjectives .contactInfo_content .contactInfo_content_desc {
  margin-bottom: 0;
}

.environmentalResponsibility {
  background-image: url("../img/greenlife-sustainability/bg.jpg");
}
.environmentalResponsibility .ourPartnership_content_desc {
  font-family: "Cinzel";
}
.environmentalResponsibility .ourPartnership_content .secondTitle::before {
  left: -20%;
}
body.ar .environmentalResponsibility .ourPartnership_content .secondTitle::before {
  left: auto;
  right: -20%;
}

/* ====================================== _____________ greenlifeSustainability Page Styles _____________ ====================================== */
/* ====================================== _____________ awards Page Styles _____________ ====================================== */
/* _____________ awards Styles _____________ */
.awards {
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .awards {
    padding: 50px 0;
  }
}
.awards_img {
  width: 299px;
  height: 127px;
  margin-bottom: 32px;
}
.awards_award {
  border-radius: 20px;
  border: 1px solid #F8E8D0;
  margin-bottom: 32px;
  padding: 40px;
  text-align: center;
  background: rgba(248, 232, 208, 0.2);
  backdrop-filter: blur(50px);
}
.awards_award_date {
  margin-bottom: 1rem;
  color: #654932;
  font-size: 2rem;
  font-weight: 400;
  display: block;
}
.awards_award_img {
  width: 641px;
  height: 341px;
  aspect-ratio: 641/341;
  border-radius: 20px;
  border: 1px solid #654932;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .awards_award_img {
    width: 100%;
    height: auto;
  }
}
.awards_award_title {
  color: #654932;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.awards_award_desc {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 400;
}

/* _____________ awards Styles _____________ */
/* _____________ awards details Styles _____________ */
.awardsDetails {
  background-color: transparent !important;
  padding-bottom: 80px !important;
  padding-top: 0 !important;
}
@media (max-width: 991px) {
  .awardsDetails {
    padding-bottom: 50px;
  }
}
.awardsDetails .missionVision_img {
  width: 100% !important;
  height: 710px !important;
  border-radius: 20px !important;
  border: 3px solid #1E1E1E !important;
}
@media (max-width: 768px) {
  .awardsDetails .missionVision_img {
    border-radius: 20px 20px 0 0 !important;
    border-bottom: none !important;
  }
}
.awardsDetails .missionVision_content {
  width: 100%;
  top: 50% !important;
  transform: translateY(-50%);
  border-radius: 20px !important;
  background: rgba(101, 73, 50, 0.8) !important;
  backdrop-filter: blur(50px) !important;
  height: min-content;
  position: absolute !important;
}
@media (max-width: 768px) {
  .awardsDetails .missionVision_content {
    transform: none;
    border-radius: 0 0 20px 20px !important;
    position: initial !important;
  }
}
.awardsDetails .missionVision_content_date {
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}
.awardsDetails .missionVision_content_title {
  color: #F8E8D0;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.awardsDetails .missionVision_content_desc {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 400;
}
@media (min-width: 991px) {
  .awardsDetails .missionVision_custRow:nth-of-type(odd) .missionVision_custRow_content .missionVision_content {
    right: 25px;
  }
  body.ar .awardsDetails .missionVision_custRow:nth-of-type(odd) .missionVision_custRow_content .missionVision_content {
    right: auto;
    left: 25px;
  }
}
@media (min-width: 991px) {
  .awardsDetails .missionVision_custRow:nth-of-type(even) .missionVision_custRow_content .missionVision_content {
    left: 25px;
  }
  body.ar .awardsDetails .missionVision_custRow:nth-of-type(even) .missionVision_custRow_content .missionVision_content {
    left: auto;
    right: 25px;
  }
}
.awardsDetails .missionVision_custRow_content_logo,
.awardsDetails .missionVision_custRow_content_logo1 {
  width: 240px;
  height: 160px;
  object-fit: contain;
}

/* _____________ awards details Styles _____________ */
/* _____________ certifications Styles _____________ */
.certifications .ourPartnership_content_list_item {
  font-weight: 400;
}
.certifications .ourPartnership_content_list_item_desc {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.1rem;
  font-weight: 100;
  opacity: 95%;
  padding-top: 5px;
}
.certifications .ourPartnership_content_title::before {
  left: -20% !important;
}
body.ar .certifications .ourPartnership_content_title::before {
  left: auto;
  right: -20% !important;
}
@media (max-width: 1200px) {
  .certifications .ourPartnership_content_title::before {
    left: -8% !important;
  }
  body.ar .certifications .ourPartnership_content_title::before {
    left: auto;
    right: -8% !important;
  }
}

/* _____________ certifications Styles _____________ */
/* ====================================== _____________ awards Page Styles _____________ ====================================== */
/* ====================================== _____________ scr Page Styles _____________ ====================================== */
/* _____________ start csr  Styles _____________ */
.csr .contactInfo_img {
  border: 1px solid #F8E8D0 !important;
}

/* _____________ end csr Styles _____________ */
/* _____________ start focusArea Styles _____________ */
.focusArea {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .focusArea {
    padding: 60px 0;
  }
}
.focusArea_content {
  margin-bottom: 40px;
}
.focusArea_content_title {
  color: #654932;
  font-size: 2.75rem;
  font-weight: 400;
}
.focusArea_content_desc {
  color: #1E1E1E;
  font-size: 1.5rem;
  font-weight: 400;
}
.focusArea_img {
  width: 100%;
}
body.ar .focusArea_img {
  transform: scaleX(-1);
}
.focusArea_list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 991px) {
  .focusArea_list {
    list-style: auto;
  }
}
.focusArea_list_item {
  color: #1E1E1E;
  font-family: "Cairo";
  font-size: 1.25rem;
  font-weight: 400;
}
.focusArea_list_item:first-of-type {
  transform: translate(-40%, -20%);
}
body.ar .focusArea_list_item:first-of-type {
  transform: translate(40%, -20%);
}
@media (max-width: 1400px) {
  .focusArea_list_item:first-of-type {
    transform: translate(-40%, -30%);
  }
  body.ar .focusArea_list_item:first-of-type {
    transform: translate(40%, -30%);
  }
}
.focusArea_list_item:nth-of-type(2) {
  transform: translate(-15%, -50%);
}
body.ar .focusArea_list_item:nth-of-type(2) {
  transform: translate(15%, -50%);
}
@media (max-width: 1400px) {
  .focusArea_list_item:nth-of-type(2) {
    transform: translate(-15%, -95%);
  }
  body.ar .focusArea_list_item:nth-of-type(2) {
    transform: translate(15%, -95%);
  }
}
.focusArea_list_item:nth-of-type(3) {
  transform: translate(-5%, -15%);
}
body.ar .focusArea_list_item:nth-of-type(3) {
  transform: translate(5%, -15%);
}
@media (max-width: 1400px) {
  .focusArea_list_item:nth-of-type(3) {
    transform: translate(-5%, -30%);
  }
  body.ar .focusArea_list_item:nth-of-type(3) {
    transform: translate(5%, -30%);
  }
}
.focusArea_list_item:nth-of-type(4) {
  transform: translate(-15%, 35%);
}
body.ar .focusArea_list_item:nth-of-type(4) {
  transform: translate(15%, 35%);
}
@media (max-width: 1400px) {
  .focusArea_list_item:nth-of-type(4) {
    transform: translate(-15%, 25%);
  }
  body.ar .focusArea_list_item:nth-of-type(4) {
    transform: translate(15%, 25%);
  }
}
.focusArea_list_item:last-of-type {
  transform: translateX(-40%);
}
body.ar .focusArea_list_item:last-of-type {
  transform: translateX(40%);
}
@media (max-width: 1400px) {
  .focusArea_list_item:last-of-type {
    transform: translate(-40%, 20%);
  }
  body.ar .focusArea_list_item:last-of-type {
    transform: translate(40%, 20%);
  }
}
@media (max-width: 991px) {
  .focusArea_list_item {
    transform: none !important;
    padding-bottom: 5px;
  }
  .focusArea_list_item:last-of-type {
    padding-bottom: 0;
  }
}

/* _____________ end focusArea Styles _____________ */
/* _____________ start csrPlan Styles _____________ */
.csrPlan {
  background-image: url("../img/csr/bg.png");
}
.csrPlan::before {
  display: none;
}
.csrPlan .overview_content_title {
  font-size: 2.25rem;
  width: 74%;
}
@media (max-width: 568px) {
  .csrPlan .overview_content_title {
    margin-top: 0 !important;
  }
}
.csrPlan .overview_content_desc {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .csrPlan .overview_content_desc {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .csrPlan .overview_content_desc {
    padding: 0 60px;
  }
}
@media (max-width: 568px) {
  .csrPlan .overview_content_desc {
    padding: 0 30px;
  }
}
.csrPlan .overview_content_desc:first-of-type {
  padding-inline-end: 10rem;
}
@media (max-width: 568px) {
  .csrPlan .overview_content_desc:first-of-type {
    padding-inline-end: 30px;
  }
}
.csrPlan .overview_content_desc_note {
  color: #FFF;
  font-size: 1rem;
  font-weight: 300;
}
.csrPlan .overview_content_subTitle {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .csrPlan .overview_content_subTitle {
    padding: 0 60px;
  }
}
@media (max-width: 568px) {
  .csrPlan .overview_content_subTitle {
    padding: 0 30px;
  }
}
.csrPlan .overview_content_list {
  margin-bottom: 0.75rem;
  padding-inline-start: 50px;
  padding-inline-end: 0;
}
@media (max-width: 991px) {
  .csrPlan .overview_content_list {
    padding: 0 20px 0 110px;
  }
}
@media (max-width: 568px) {
  .csrPlan .overview_content_list {
    padding: 0 20px 0 60px;
  }
}
@media (max-width: 991px) {
  .csrPlan .overview_content_list:last-of-type {
    padding-bottom: 40px;
    margin-bottom: 0;
  }
}
.csrPlan .overview_content_list_item {
  color: #FFF;
  font-family: "Cairo";
  font-size: 1rem;
  font-weight: 100;
}
@media (min-width: 991px) {
  .csrPlan .overview_content {
    background-image: url("../img/csr/pattern.png");
    background-size: contain;
    padding: 60px 64px 20px;
  }
  body.ar .csrPlan .overview_content {
    background-image: url("../img/csr/patternAr.png");
    padding: 60px 164px 20px 64px;
  }
}
.csrPlan .overview_slider {
  clip-path: none;
}
@media (min-width: 991px) {
  .csrPlan .overview_slider {
    left: 15px;
    height: 565px;
  }
  body.ar .csrPlan .overview_slider {
    left: auto;
    right: 85px;
    transform: none !important;
  }
}
@media (min-width: 991px) {
  .csrPlan .overview_slider .swiper {
    width: 388px !important;
    height: 590px !important;
  }
}
@media (max-width: 990px) {
  .csrPlan .overview_slider {
    width: 100% !important;
    height: 375px;
    left: 15px;
  }
}
@media (max-width: 1200px) {
  .csrPlan .overview_slider .swiper {
    width: 293px !important;
    height: 450px !important;
  }
}
@media (max-width: 991px) {
  .csrPlan .overview_slider .swiper {
    width: 100% !important;
    height: 390px !important;
  }
}
.csrPlan .swiper-slide img {
  height: 92%;
}
@media (max-width: 1400px) {
  .csrPlan .overview_slider {
    left: -5px;
    bottom: 40px;
  }
  body.ar .csrPlan .overview_slider {
    left: auto;
    right: -5px;
  }
}
@media (max-width: 568px) {
  .csrPlan .overview_slider {
    height: 385px;
  }
}

/* _____________ end csrPlan Styles _____________ */
/* ====================================== _____________ scr Page Styles _____________ ====================================== */

/*# sourceMappingURL=style.css.map */
