/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Classes Styles _____________ ====================================== */
.leftContainer {
  margin-left: auto;
  padding: 0 15px;
  padding-right: 0;
  overflow: hidden;
}
@media (max-width: 576px) {
  .leftContainer {
    width: 100%;
    padding-right: 15px;
    margin-left: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .leftContainer {
    width: calc(540px + (100vw - 540px) / 2);
    margin: auto;
    padding: unset;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .leftContainer {
    width: calc(720px + (100vw - 720px) / 2);
    margin: auto;
    padding: unset;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .leftContainer {
    width: calc(960px + (100vw - 960px) / 2);
    margin: auto;
    padding: unset;
  }
}
@media (min-width: 1200px) {
  .leftContainer {
    width: calc(1140px + (100vw - 1140px) / 2);
    margin: auto;
    padding: unset;
  }
}

.rightContainer {
  margin-right: auto;
  padding: 0 15px;
  padding-left: 0;
  overflow: hidden;
}
@media (max-width: 576px) {
  .rightContainer {
    width: 100%;
    padding-left: 15px;
    margin-right: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .rightContainer {
    width: calc(540px + (100vw - 540px) / 2);
    padding-left: 15px;
    margin-right: 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);
  }
}

.blueBg {
  background: linear-gradient(0deg, rgba(40, 42, 107, 0.98) 0%, rgba(40, 42, 107, 0.98) 100%);
  backdrop-filter: blur(1.4883719683px);
}

.greyBg {
  background: linear-gradient(0deg, #A1A6A9 0%, #A1A6A9 100%);
}

.mainTitle {
  color: #FFF;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.secondTitle {
  color: black;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-weight: bold;
}

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

.whtColor {
  color: #fff !important;
}

.blkColor {
  color: #000 !important;
}

.whtBgColor {
  background-color: #fff !important;
}

.blkBgColor {
  background-color: #000 !important;
}

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

/* ====================================== _____________ 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%;
  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: "Nexa";
  overflow-x: hidden;
  background-color: #F7F7F7;
}
body.ar {
  font-family: "Nexa";
  direction: rtl;
  text-align: right;
}

.navbar {
  padding: 1.25rem 1rem;
}

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

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

.navbar-light .navbar-nav .nav-link {
  color: #282A6B;
  padding-top: 0;
  transition: all 0.3s ease-in-out;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #D5C29C;
}
@media (min-width: 991px) {
  .navbar-light .navbar-nav .nav-link {
    padding-bottom: 0;
    margin-bottom: 0;
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
}

.navbar-nav .dropdown-menu {
  background: rgba(161, 166, 169, 0.85);
  min-width: 15rem;
  backdrop-filter: blur(5px);
  border: none;
  padding: 0;
  border-radius: 0 0 10px 10px;
  padding: 0 1.5rem;
  top: 210%;
}
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    margin-bottom: 1rem;
  }
}
.navbar-nav .dropdown-menu .dropdown-item {
  color: #282A6B;
  font-size: 1.05rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(40, 42, 107, 0.0941176471);
  margin-bottom: 0;
}
.navbar-nav .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

header .dropdown-item:hover {
  color: #D5C29C !important;
  background-color: transparent;
}

header .nav-item svg {
  transition: all 0.3s ease-in-out;
}
header .nav-item:hover svg {
  fill: #D5C29C !important;
  stroke: #D5C29C !important;
}
header .nav-item:hover svg path {
  fill: #D5C29C !important;
  stroke: #D5C29C !important;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: #D5C29C !important;
}
.navbar-light .navbar-nav .active > .nav-link svg, .navbar-light .navbar-nav .nav-link.active svg, .navbar-light .navbar-nav .nav-link.show svg, .navbar-light .navbar-nav .show > .nav-link svg {
  fill: #D5C29C !important;
  stroke: #D5C29C !important;
}
.navbar-light .navbar-nav .active > .nav-link svg path, .navbar-light .navbar-nav .nav-link.active svg path, .navbar-light .navbar-nav .nav-link.show svg path, .navbar-light .navbar-nav .show > .nav-link svg path {
  fill: #D5C29C !important;
  stroke: #D5C29C !important;
}

.navbar-light .navbar-nav .active svg path > .nav-link svg path, .navbar-light .navbar-nav .nav-link.active svg path, .navbar-light .navbar-nav .nav-link.show svg path, .navbar-light .navbar-nav .show svg path > .nav-link svg path {
  fill: #D5C29C !important;
  stroke: #D5C29C !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 1rem;
  }
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=checkbox]:checked {
  accent-color: #D5C29C; /* Color when checked */
}

/* ====================================== _____________ Reset Styles _____________ ====================================== */
@font-face {
  font-family: "Nexa";
  src: url("fonts/Nexa-Bold.eot");
  src: url("fonts/Nexa-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Nexa-Bold.woff2") format("woff2"), url("fonts/Nexa-Bold.woff") format("woff"), url("fonts/Nexa-Bold.ttf") format("truetype"), url("fonts/Nexa-Bold.svg#Nexa-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa";
  src: url("fonts/NexaRegular.eot");
  src: url("fonts/NexaRegular.eot?#iefix") format("embedded-opentype"), url("fonts/NexaRegular.woff2") format("woff2"), url("fonts/NexaRegular.woff") format("woff"), url("fonts/NexaRegular.ttf") format("truetype"), url("fonts/NexaRegular.svg#NexaRegular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa";
  src: url("fonts/Nexa-Light.eot");
  src: url("fonts/Nexa-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Nexa-Light.woff2") format("woff2"), url("fonts/Nexa-Light.woff") format("woff"), url("fonts/Nexa-Light.ttf") format("truetype"), url("fonts/Nexa-Light.svg#Nexa-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* ====================================== _____________ Global Styles _____________ ====================================== */
.banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 30%);
  left: 14%;
}

.banner .swiper-pagination {
  text-align: start;
}

.banner .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}

.banner .swiper-pagination-bullet-active {
  width: 20px;
  height: 5px;
  border-radius: 2px;
  background-color: white;
  transition: 0.8s;
}

.homepage {
  height: 100%;
}

.banner_imgWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.homepage .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(40, 42, 107, 0.3) 0%, rgba(40, 42, 107, 0.3) 100%);
}

/* ====================================== _____________ Global Styles _____________ ====================================== */
/* ====================================== _____________ Header Styles _____________ ====================================== */
.header {
  background: rgba(161, 166, 169, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  z-index: 9999;
}
.header_nav_item_link {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.header_nav_item_link:hover {
  color: #D5C29C;
}
.header_nav_item_link:hover svg {
  fill: #D5C29C;
  stroke: #D5C29C;
}
.header_nav_item_link:hover svg path {
  fill: #D5C29C;
  stroke: #D5C29C;
}
.header_nav_item.active .header_nav_item_link {
  color: #D5C29C !important;
}

/* ====================================== _____________ Header Styles _____________ ====================================== */
/* ====================================== _____________ Footer Styles _____________ ====================================== */
.footer .form-group {
  width: 60%;
  position: relative;
  margin: 1.5rem 0 0.3rem;
}
@media (max-width: 768px) {
  .footer .form-group {
    width: 80%;
  }
}
.footer .form-group button {
  position: absolute;
  right: 10px;
  border-radius: 2px;
  background: #D5C29C;
  border: none;
  top: 50%;
  transform: translateY(-53%);
  padding: 0 7px;
}
.footer_input {
  display: inline-flex;
  padding: 13px 10px;
  align-items: center;
  gap: 8px;
  border-radius: 3px;
  opacity: 0.8;
  color: #282A6B;
  font-size: 0.75rem;
  height: 100%;
  border: none;
}
.footer_input::placeholder {
  color: #282A6B;
  font-size: 0.75rem;
}
.footer_desc {
  color: #141414;
  font-size: 0.75rem;
  opacity: 0.5;
  margin-bottom: 0;
  width: 60%;
}
@media (max-width: 768px) {
  .footer_desc {
    width: 80%;
  }
}
.footer_title {
  color: #282A6B;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.375px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer_list_item {
  margin-bottom: 0.75rem;
}
.footer_list_item:last-child {
  margin-bottom: 0;
}
.footer_list_item_link {
  color: #141414;
  font-size: 1rem;
  margin-bottom: 0;
}
.footer_socialMedia .footer_list_item_link {
  font-size: 0.8rem;
  margin-inline-start: 5px;
}
.footer_copyright {
  padding: 0.75rem 0;
}
.footer_copyright_text {
  color: #FFF;
  font-size: 0.75rem;
  text-transform: capitalize;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 100;
}
.footer_copyright_text_icon {
  margin-inline-start: 0.25rem;
}

/* ====================================== _____________ Footer Styles _____________ ====================================== */
/* ====================================== _____________ Sidebar Styles _____________ ====================================== */
/* ====================================== _____________ Sidebar Styles _____________ ====================================== */
/* ====================================== _____________ Forms Styles _____________ ====================================== */
/* ====================================== _____________ Forms Styles _____________ ====================================== */
/* ====================================== _____________ Buttons Styles _____________ ====================================== */
.whiteButton {
  padding: 13px 43px;
  border-radius: 6px;
  font-weight: bold;
  background: linear-gradient(126deg, #FFF -138.72%, #D5C29C 74.17%);
  margin-bottom: 0;
}
.whiteButton:hover {
  background: linear-gradient(126deg, #D5C29C -138.72%, #D5C29C 74.17%);
}

.blueButton {
  color: white;
  padding: 13px 43px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: linear-gradient(115deg, #A1A6A9 -242.26%, #282A6B) 69.58%;
}
.blueButton:hover {
  background: #A1A6A9;
  color: #282A6B;
}

/* ====================================== _____________ Buttons Styles _____________ ====================================== */
/* ====================================== _____________ Slider Styles _____________ ====================================== */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: auto;
}

.mediaGallery .swiper {
  height: 450px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .mediaGallery .swiper {
    height: 350px;
  }
}
.mediaGallery .swiper-wrapper {
  margin: auto;
  width: 85%;
}
@media (max-width: 568px) {
  .mediaGallery .swiper-wrapper {
    width: 75%;
  }
}
.mediaGallery .swiper-pagination-vertical.swiper-pagination-bullets,
.mediaGallery .swiper-vertical > .swiper-pagination-bullets {
  left: 0;
  right: auto;
  height: 100%;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.ar .mediaGallery .swiper-pagination-vertical.swiper-pagination-bullets,
body.ar .mediaGallery .swiper-vertical > .swiper-pagination-bullets {
  left: auto;
  right: 0;
}
.mediaGallery .arrows {
  position: absolute;
  width: 10%;
  height: 100%;
  top: 0;
  right: 0;
}
body.ar .mediaGallery .arrows {
  right: auto;
  left: 0;
}
.mediaGallery .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: rgb(217, 217, 217);
  opacity: 1;
  margin: 0;
}
.mediaGallery .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #282A6B;
  width: 15px;
  height: 15px;
}
.mediaGallery .swiper-button-next,
.mediaGallery .swiper-button-prev {
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  left: auto;
}
.mediaGallery .swiper-button-next::after,
.mediaGallery .swiper-button-prev::after {
  display: none;
}
body.ar .mediaGallery .swiper-button-next,
body.ar .mediaGallery .swiper-button-prev {
  left: 0;
  right: auto;
}
.mediaGallery .swiper-button-next {
  background-image: url("../img/global/arrowUp.png") !important;
  top: 25%;
}
.mediaGallery .swiper-button-prev {
  background-image: url("../img/global/arrowDown.png") !important;
  top: 75%;
}
.mediaGallery .swiper-button-next.swiper-button-disabled,
.mediaGallery .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.mediaGallery .swiper-slide-next .mediaGallery_imgs_img {
  display: none;
}
.mediaGallery .swiper-slide-next .mediaGallery_imgs_logo {
  top: 0;
  bottom: auto;
  opacity: 0.25;
}

.WhatWeDo .swiper-pagination {
  bottom: 77%;
  text-align: end;
}
@media (max-width: 991px) {
  .WhatWeDo .swiper-pagination {
    bottom: 95%;
  }
}
@media (max-width: 568px) {
  .WhatWeDo .swiper-pagination {
    bottom: 92%;
    text-align: right;
  }
}
@media (max-width: 400px) {
  .WhatWeDo .swiper-pagination {
    bottom: 91%;
    text-align: right;
  }
}
.WhatWeDo .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #D9D9D9;
}
.WhatWeDo .swiper-pagination-bullet-active {
  background: #C59972;
}
.WhatWeDo .swiper-button-next,
.WhatWeDo .swiper-button-prev {
  background-repeat: no-repeat;
  background-position: center;
}
.WhatWeDo .swiper-button-next::after,
.WhatWeDo .swiper-button-prev::after {
  display: none;
}
.WhatWeDo .swiper-wrapper {
  width: 90%;
}
@media (max-width: 568px) {
  .WhatWeDo .swiper-wrapper {
    width: 75%;
  }
}
.WhatWeDo .swiper-wrapper .swiper-slide {
  width: 100%;
}
@media (max-width: 991px) {
  .WhatWeDo .swiper-wrapper .swiper-slide {
    height: 400px;
  }
}
.WhatWeDo .swiper-button-next {
  background-image: url("../img/global/arrow-left.png") !important;
  top: 65%;
}
.WhatWeDo .swiper-button-prev {
  background-image: url("../img/global/arrow-right.png") !important;
  top: 65%;
}
body.ar .WhatWeDo .swiper-button-prev {
  transform: rotate(180deg);
}

/* ====================================== _____________ Slider Styles _____________ ====================================== */
/* ====================================== _____________ Buttons Styles _____________ ====================================== */
.custCard {
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 991px) {
  .custCard {
    height: 400px;
  }
}
.custCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.custCard.custCard {
  height: 263px;
}
@media (max-width: 991px) {
  .custCard.custCard {
    height: 100%;
  }
}
.custCard .custCard_top {
  height: 100%;
}
@media (max-width: 991px) {
  .custCard .custCard_top {
    height: 100%;
  }
}
.custCard_top {
  transition: all 0.3s ease-in-out;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}
.custCard_bottom {
  position: absolute;
  top: 76%;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}
.custCard_bottom_text {
  padding: 20px;
  text-align: start;
}
.custCard_bottom_text_title {
  color: #FFF;
  font-size: 1rem;
  text-transform: uppercase;
}
.custCard_bottom_text_hoverText {
  font-size: 0.6rem;
  color: white;
  font-weight: 100;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .custCard_bottom {
    top: 89%;
  }
}
.custCard:hover::before,
.custCard:hover .custCard_bottom_text_hoverText {
  opacity: 1;
}
.custCard:hover .custCard_bottom {
  top: 60%;
}
@media (max-width: 991px) {
  .custCard:hover .custCard_bottom {
    top: 80%;
  }
}

.smallCard {
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0;
  display: block;
  height: 100%;
}
.smallCard.hover {
  color: white;
}
.smallCard.hover .smallCard_text {
  display: block;
}
.smallCard, .smallCard_image, .smallCard_image::after, .smallCard_body {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.51, 0.92, 0.24, 1);
}
.smallCard_head {
  position: relative;
  padding-top: 70%;
}
@media (max-width: 991px) {
  .smallCard_head {
    height: 100%;
  }
}
.smallCard_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transform-origin: top center;
  border-radius: 8px;
}
.smallCard_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  background-color: rgba(0, 0, 0, 0.4);
  transition-property: opacity;
  transition-delay: 0.15s;
}
@media (max-width: 991px) {
  .smallCard_image.image {
    height: 100%;
  }
}
.smallCard.hover .smallCard_image {
  transition-delay: 0;
}
.smallCard.hover .smallCard_image::after {
  opacity: 1;
  transition-delay: 0;
}
.smallCard_body {
  position: relative;
  padding: 1rem;
  transition-property: transform;
  transition-delay: 0.15s;
  text-align: start;
}
@media (max-width: 991px) {
  .smallCard_body {
    top: 89%;
    position: absolute;
  }
}
.smallCard.hover .smallCard_body {
  transition-delay: 0;
}
.smallCard_headline {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
}
.smallCard_text {
  color: white;
  font-size: 0.6rem;
  font-weight: 100;
  margin-bottom: 0;
  display: none;
}

/* ====================================== _____________ cards Styles _____________ ====================================== */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
/* _____________ start banner Styles _____________ */
@font-face {
  font-family: "Nexa-Bold";
  src: url(/public/frontend/css/fonts/Nexa-Bold.ttf);
}
@font-face {
  font-family: "Nexa-Light";
  src: url(/public/frontend/css/fonts/Nexa-Light.ttf);
}
.banner {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, rgba(40, 42, 107, 0.3) 0%, rgba(40, 42, 107, 0.3) 100%);
}
.banner_imgBg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.banner_content {
  position: absolute;
  left: 0;
  width: 100%;
}
.banner_content_desc {
  width: 50%;
  font-family: "Nexa-Light";
}
@media (max-width: 768px) {
  .banner_content_desc {
    width: 100%;
  }
}
.banner_content_desc_title {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: "Nexa-Bold";
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.banner_content_desc_desc {
  color: white;
  font-size: 1.1rem;
  font-weight: 100;
  margin-bottom: 1.2rem;
}
.banner_content_logos {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 73%;
}
@media (max-width: 991px) {
  .banner_content_logos {
    width: 80%;
  }
}
.banner_logo-slide {
  position: absolute;
  bottom: 5%;
  left: 14%;
  width: 75%;
}
.banner_logo-slide .swiper-slide {
  width: 75px;
  height: 80px;
}
.banner_logo-slide .swiper-slide img {
  filter: brightness(0) invert(1);
  background-color: transparent !important;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* _____________ end banner Styles _____________ */
/* _____________ start ourGroup Styles _____________ */
.ourGroup {
  padding: 4rem 0;
  text-align: center;
}
.ourGroup_content {
  padding: 24px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  height: 100%;
  align-items: center;
  padding-bottom: 6rem;
}
.ourGroup_content svg {
  margin-bottom: 0.5rem;
}
.ourGroup_content_title {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
}
.ourGroup_content_title.blue {
  color: #0374E0;
}
.ourGroup_content_title.orange {
  color: #D7554B;
}
.ourGroup_content_title.grey {
  color: #A1A6A9;
}
.ourGroup_content_desc {
  opacity: 0.7;
  color: #0A0A0A;
}
.ourGroup_content_btn {
  margin-bottom: 0;
  position: absolute;
  bottom: 24px;
}

/* _____________ end ourGroup Styles _____________ */
/* _____________ start ourValues Styles _____________ */
.ourValues {
  padding: 4rem 0;
}
.ourValues_box {
  transition: all 0.5s ease-in-out;
}
.ourValues_box_logo {
  border-radius: 8px 8px 0px 0px;
  background: #A1A6A9;
  text-align: center;
  padding: 2.25rem 25px;
  transition: all 0.5s ease-in-out;
}
.ourValues_box_logo_img {
  transition: all 0.5s ease-in-out;
}
.ourValues_box_content {
  padding: 2rem 24px 0;
  text-align: center;
  color: #FEFEFE;
  border-radius: 0px 0px 8px 8px;
  background: #282A6B;
}
.ourValues_box_content_title {
  font-size: 1rem;
  text-transform: capitalize;
}
.ourValues_box_content_desc {
  opacity: 0.7;
  font-size: 0.8rem;
  line-height: 20px;
  font-weight: 100;
}
.ourValues_box_content_link {
  padding-top: 24px;
  opacity: 0.7;
  font-size: 0.8rem;
  line-height: 20px;
}
.ourValues_box:hover .ourValues_box_logo {
  background-color: rgba(161, 166, 169, 0.2);
  transform: translateY(-13px);
}
.ourValues_box:hover .ourValues_box_logo .ourValues_box_logo_img {
  transform: translateY(-13px);
}

/* _____________ end ourValues Styles _____________ */
/* _____________ start mediaGallery Styles _____________ */
.mediaGallery {
  padding: 4rem 0;
  background: linear-gradient(0deg, #A1A6A9 0%, #A1A6A9 100%);
}
.mediaGallery_imgs {
  position: relative;
  height: 100%;
  width: 100%;
}
.mediaGallery_imgs_img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mediaGallery_imgs_logo {
  position: absolute;
  filter: grayscale(100%) brightness(0%);
  width: 160px;
  height: 100px;
  object-fit: contain;
  right: 35px;
  bottom: 15px;
}
body.ar .mediaGallery_imgs_logo {
  right: auto;
  left: 40px;
}
@media (max-width: 768px) {
  body.ar .mediaGallery_imgs_logo {
    right: auto;
    left: 20px;
  }
}
@media (max-width: 768px) {
  .mediaGallery_imgs_logo {
    width: 100px;
    height: 70px;
    right: 20px;
    bottom: 10px;
  }
}

/* _____________ end mediaGallery Styles _____________ */
/* _____________ start WhatWeDo Styles _____________ */
.WhatWeDo {
  padding: 4rem 0;
}
.WhatWeDo_slide {
  text-align: start;
}
.WhatWeDo_slide_img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}
.WhatWeDo_slide_content {
  padding: 1rem;
}
.WhatWeDo_slide_content_title {
  color: #FFF;
  font-size: 1rem;
  font-weight: 100;
  text-transform: uppercase;
}
.WhatWeDo_slide_content_desc {
  font-size: 0.7rem;
  font-weight: 100;
  color: white;
}
@media (max-width: 1200px) {
  .WhatWeDo_slide_content_desc {
    width: 60%;
  }
}
.WhatWeDo_content {
  padding: 1rem;
}
@media (max-width: 991px) {
  .WhatWeDo_content {
    padding: 1rem 0;
  }
}
@media (max-width: 1200px) {
  .WhatWeDo_content_desc {
    width: 80%;
  }
}
.WhatWeDo_parent {
  text-align: end;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .WhatWeDo_parent {
    margin-top: 2rem;
  }
}
.WhatWeDo_parent_link {
  color: #FFF;
  font-size: 1rem;
  text-decoration: underline;
  opacity: 0.7;
  margin-bottom: 0;
  display: inline-block;
}
.WhatWeDo_parent_link:hover {
  color: white;
  text-decoration: underline;
}
body.ar .WhatWeDo_parent_link svg {
  transform: rotate(180deg);
}

/* _____________ end WhatWeDo Styles _____________ */
/* _____________ start whoWeAre Styles _____________ */
.whoWeAre {
  padding: 4rem 0;
}
.whoWeAre .zoomIn {
  border-radius: 8px;
  position: relative;
}
.whoWeAre .zoomIn::before {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 9;
}
.whoWeAre .zoomIn:hover::before {
  opacity: 1;
}
.whoWeAre .zoomIn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.whoWeAre p {
  opacity: 0.7;
}

/* _____________ end whoWeAre Styles _____________ */
/* _____________ start news Styles _____________ */
.news {
  padding: 4rem 0;
}
.news_slide, .news_contentSlide {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.news_slide::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(40, 42, 107, 0.7);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: 9;
}
.news_slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_slide_desc {
  color: #FEFEFE;
  font-size: 0.9rem;
  font-weight: 100;
  position: absolute;
  margin-bottom: 0;
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  z-index: 9;
  line-height: 24px;
  transition: all 0.5s ease-in-out;
  width: 100%;
  padding: 0 5rem;
}
.news_slide:hover::before {
  opacity: 1;
}
.news_slide:hover .news_slide_desc {
  left: 0;
}
.news_contentSlide_content {
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: absolute;
  background-color: #282A6B;
}
.news_contentSlide_content_title {
  color: #FFF;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 100;
  margin-bottom: 0.75rem;
}
.news_contentSlide_content_desc {
  color: #F7F7F7;
  font-weight: 100;
  margin-bottom: 1.5rem;
  font-size: 0.6rem;
  font-weight: 100;
}

/* _____________ end news Styles _____________ */
/* _____________ start get in touch Styles _____________ */
.getInTouch {
  padding: 4rem 0;
  background-image: url("../img/homepage/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.getInTouch_content {
  margin-bottom: 1.5rem;
}
.getInTouch_img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.getInTouch_form {
  margin-top: 1rem;
}
@media (min-width: 1200px) {
  .getInTouch_form {
    padding-inline-start: 1rem;
  }
}
.getInTouch_form label {
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 100;
}
.getInTouch_form input,
.getInTouch_form textarea {
  background-color: transparent;
  border: 1px solid white;
  font-size: 0.8rem;
  font-weight: 100;
  opacity: 0.5;
  color: white;
  padding: 0.65rem;
  height: auto;
}
.getInTouch_form input::placeholder,
.getInTouch_form textarea::placeholder {
  color: white;
  font-size: 0.8rem;
  font-weight: 100;
  opacity: 0.6;
}
.getInTouch_form input:focus,
.getInTouch_form textarea:focus {
  color: white;
  background-color: transparent;
  border-color: #D5C29C;
  outline: 0;
  box-shadow: none;
  opacity: 1;
}
.getInTouch_form input:focus::placeholder,
.getInTouch_form textarea:focus::placeholder {
  opacity: 1;
}
.getInTouch_form input textarea,
.getInTouch_form textarea textarea {
  resize: none;
}
.getInTouch_form button {
  padding: 13px 55px;
}
.getInTouch_form_title {
  color: #FFF;
  font-size: 2.25rem;
}
.getInTouch_form_desc {
  color: #FFF;
  font-size: 0.85rem;
  font-weight: 100;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

/* _____________ end get in touch Styles _____________ */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
.brandbanner_content {
  background-color: #282A6B;
  padding: 2rem;
  height: 300px;
  margin-top: 5rem;
  text-align: center;
  color: #fff;
}
.brandbanner_content_desc {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
}
.brandbanner_content_desc_title {
  color: #D5C29C;
}

.dublicate-image .row {
  background-color: #282A6B;
}
.dublicate-image_content {
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.dublicate-image_content img {
  width: max-content;
}
.dublicate-image_content_desc {
  color: #fff;
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 100;
  margin-bottom: 0;
}
.dublicate-image_content_desc:last-of-type {
  font-weight: bold;
}
.dublicate-image_content a {
  color: #D5C29C;
  text-decoration: underline;
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 100;
  margin-bottom: 0;
}

.news_box_title {
  font-size: 1.5rem;
  font-weight: bold;
}
.news_box_desc {
  font-size: 0.9rem;
}
.news_box_number {
  color: #282A6B;
  font-size: 4rem;
  font-weight: bold;
}
.news_box_month {
  color: #282A6B;
  font-size: 2rem;
  text-decoration: underline;
}

.information {
  background-color: #F7F7F7;
}
.information img {
  width: 100%;
}
@media (max-width: 768px) {
  .information img {
    height: 100%;
  }
}
.information_box_title {
  font-weight: bold;
  margin-bottom: 2rem;
}
.information_box_smallbox {
  margin-left: 2rem;
  position: relative;
  margin-bottom: 1.2rem;
}
.information_box_smallbox h3 {
  font-size: 1rem;
  color: #666468;
}
.information_box_smallbox p {
  font-size: 1.1rem;
  font-weight: 600;
}
.information_box_smallbox::before {
  position: absolute;
  content: "";
  height: 60px;
  width: 1px;
  background: #D5C29C;
  display: flex;
  left: -2rem;
}
@media (max-width: 768px) {
  .information_box {
    margin-top: 1rem;
    margin-left: 0 !important;
  }
}

.visit_box_title {
  font-weight: bold;
  margin-bottom: 2rem;
}
.visit_box_desc {
  font-weight: 400;
  font-size: 18px;
}
.visit_box_smallbox {
  margin-left: 2rem;
  position: relative;
  margin-bottom: 1.2rem;
}
.visit_box_smallbox h3 {
  font-size: 1rem;
  color: #666468;
}
.visit_box_smallbox p {
  font-size: 1rem;
  font-weight: 600;
}
.visit_box_smallbox::before {
  position: absolute;
  content: "";
  height: 70px;
  width: 1px;
  background: #D5C29C;
  display: flex;
  left: -2rem;
}
.visit iframe {
  border-radius: 5px;
}

.History_title {
  font-weight: bold;
  margin-bottom: 2rem;
}
.History_imgbox {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1300px) {
  .History_imgbox img {
    width: 100%;
  }
}
.History_top-content_title {
  background: rgba(213, 194, 156, 0.1019607843);
  color: #282A6B;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 8px;
}
.History_top-content_desc {
  color: #141414;
  font-size: 14px;
}
.History_bottom-content_title {
  background: rgba(213, 194, 156, 0.1019607843);
  color: #282A6B;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 8px;
}
.History_bottom-content_desc {
  color: #141414;
  font-size: 14px;
}

.our-group {
  background-color: #282A6B;
  padding: 4rem;
}
@media (max-width: 600px) {
  .our-group {
    padding: 4rem 0;
  }
}
.our-group_vision {
  background-color: white;
  padding: 4rem;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .our-group_vision {
    padding: 2rem 1rem;
  }
}
@media (max-width: 425px) {
  .our-group_vision {
    padding: 1rem 0;
  }
}
.our-group_vision_title {
  font-weight: bold;
  margin-bottom: 2rem;
}
.our-group_vision_desc {
  color: #3C3B3D;
  font-size: 14px;
}
.our-group_vision_img {
  position: relative;
}
.our-group_vision_img img {
  position: absolute;
  left: 5%;
  top: -57%;
}
@media (max-width: 1300px) {
  .our-group_vision_img img {
    left: unset;
    top: unset;
    position: unset;
    width: 100%;
  }
}
.our-group_mission {
  background-color: white;
  padding: 4rem;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .our-group_mission {
    padding: 2rem 1rem;
  }
}
@media (max-width: 425px) {
  .our-group_mission {
    padding: 1rem 0;
  }
}
.our-group_mission_title {
  font-weight: bold;
  margin-bottom: 2rem;
}
.our-group_mission_desc {
  color: #3C3B3D;
  font-size: 14px;
}
.our-group_mission_img {
  position: relative;
}
.our-group_mission_img img {
  position: absolute;
  right: 5%;
  bottom: -57%;
}
@media (max-width: 1300px) {
  .our-group_mission_img img {
    left: unset;
    top: unset;
    position: unset;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.our-group .group-box {
  gap: 7rem;
  display: flex;
  flex-direction: column;
}

.Chairman_title {
  font-weight: bold;
}
.Chairman_list {
  row-gap: 1rem;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.brand {
  background: rgba(0, 0, 0, 0.1607843137);
  padding: 4rem 0;
}
.brand_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand_title a {
  color: #282A6B;
  text-decoration: underline;
}
.brand_title_content {
  font-weight: bold;
}
.brand_logos {
  margin: 2rem 0;
  gap: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 3rem;
}

/*# sourceMappingURL=style.css.map */
