/* *------------------------------- Banner Start ------------------------------- */

:root {
  --banner-height: 380px;
  --banner-mb: 3.5rem;
}

.Inner__Banner,
.news__Banner {
  height: calc(var(--header-height) + var(--banner-height));
  overflow: hidden;
  margin-bottom: var(--banner-mb);
}

.Inner__Banner img,
.news__Banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* .Inner__Banner {
  position: relative;
}

.Inner__Banner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 11, 43, 0.5) 0%,
    rgba(0, 11, 43, 0.5) 100%
  );
}
 */

.inner__Info_Title {
  color: var(--primary-20);
  margin-bottom: 2rem;
}
.inner__Info_noBanner {
  padding-block: 2rem;
  background: url(/portals/0/images/inner-ttl-back.jpg) no-repeat center;
  background-size: 100% 100%;
  margin-bottom: 2rem;
}

.inner__Info_Title.no_Banner {
  color: var(--secondar-20) !important;
  margin-bottom: 0 !important;
}

@media (max-width: 992px) {
  .inner__Info_noBanner {
    background-size: cover;
  }

  .inner__Info_Title {
    margin-bottom: 24px;
  }
}

/* *------------------------------- Banner End ------------------------------- */

/* *------------------------------- Home Main Slider Start ------------------------------- */

.slider__Item {
  position: relative;
}

.main__Slider_Wrapper {
  margin-bottom: 56px;
}

.slider__Image_Wrapper {
  position: relative;
}

.slider__Image_Wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(0, 11, 43, 0.1) 0%,
      rgba(0, 11, 43, 0) 100%
    ),
    linear-gradient(0deg, rgba(0, 11, 43, 0.3) 0%, rgba(0, 11, 43, 0.3) 100%);
}

.main__Slider_Wrapper .slider__Image_Wrapper img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.main__Slider_Parents .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.main__Slider_Wrapper .main__Slider_Title {
  margin-bottom: 1.5rem;
}

.main__Slider_Wrapper .main__Slider_Desc {
  margin-bottom: 3.25rem;
}

.main__Slider_Title {
  color: #fff;
}

.main__Slider_Wrapper .slick-dots li button {
  opacity: 0.5;
  background: var(--Gray-100) !important;
  height: 2px !important;
  border-radius: 0;
}

.main__Slider_Wrapper .slick-dots li.slick-active button {
  width: 80px !important;
  background: var(--mc2) !important;
  opacity: 1;
}

.main__Slider_Wrapper .slick-dots {
  gap: 1rem;
  position: static !important;
}

.main__Slider_Wrapper .dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
}

.main__Slider_Wrapper .slick-arrow {
  position: static !important;
  transform: unset !important;
  translate: unset !important;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(3.5px);
  padding: 8px;
  display: flex;
  width: 48px;
  height: 48px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 0 !important;
}

.main__Slider_Wrapper .arrow_Wrapper {
  display: flex;
  width: 100%;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.main__Slider_Wrapper .slick-next {
  order: 2;
}

.main__Slider_Wrapper .slick-dots li {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .main__Slider_Wrapper .main__Slider_Desc {
    margin-bottom: 40px;
  }
}

/* !------------------------------- Home Main Slider End --------------------------------- */

/* !------------------------------- Services Start --------------------------------- */

.home_Services {
  position: relative;
}

.home_Services::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 248px;
  height: 198px;
  background: url(../assets/images/vector-1.png) no-repeat center;
  background-size: 100%;
}

.home_Services::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(50%);
  width: 248px;
  height: 198px;
  background: url(../assets/images/vector-1.png) no-repeat center;
  background-size: 100%;
}

.home_Services_Cards {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.home_Services_Card {
  flex: 1;
  position: relative;
  transition: var(--transition);
}

.home_Services_Card:hover {
  box-shadow: 0px 8px 16px 0px rgba(0, 11, 43, 0.4);
}

.home_Services_Card .home_Services_Card_Img img {
  width: 100%;
  height: 316px;
  object-fit: cover;
}

.home_Services_Card_Icon {
  position: absolute;
  padding: 4px;
  top: 0;
  left: 0;
  z-index: 1;
}

.home_Services_Card_Icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  --icon-url: url(../assets/icons/vector-service.svg);
  width: 40px;
  min-width: 62px;
  min-height: 40px;
  display: inline-flex;
  vertical-align: middle;
  background: #fff;
  mask: var(--icon-url) no-repeat center / 100% auto;
  -webkit-mask: var(--icon-url) no-repeat center / 100% auto;
  transition: var(--transition);
}

.home_Services_Card:hover .home_Services_Card_Icon::before {
  background: var(--secondar-30);
}

.home_Services_Card_Icon .ezIcon {
  --icon: 2rem;
  background: var(--primary-60);
}

.home_Services_Card:hover .home_Services_Card_Icon .ezIcon {
  background: var(--primary-50);
}

.home_Services_Card_Img {
  position: relative;
}

.home_Services_Card_Img::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 2px solid #fff;
  opacity: 0.5;
  background: transparent;
  transition: var(--transition);
}

.home_Services_Card:hover .home_Services_Card_Img::before {
  border-color: var(--secondar-30) !important;
}

.home_Services_Card_Img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: var(--primary-00);
  transition: var(--transition);
}

.home_services_card:hover .home_Services_Card_Img::after {
  opacity: 0;
}

.home_Services_Card_Name {
  position: absolute;
  bottom: 1.5rem;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

@media (max-width: 992px) {
  .home_Services_Cards {
    display: block;
  }

  .home_Services_Cards .slick-list {
    margin: 0 -0.5rem;
    padding-inline-end: 4rem !important;
  }

  .home_Services_Cards .slick-dots {
    bottom: -1rem;
    left: 50%;
    transform: translate(-50%, 100%);
  }

  .home_Services_Card {
    margin: 0 0.5rem;
  }

  .home_services_card.slick-active .home_Services_Card_Img::after {
    opacity: 0;
  }

  .home_Services_Card.slick-active .home_Services_Card_Img::before {
    border-color: var(--secondar-30) !important;
  }

  .home_Services_Card.slick-active .home_Services_Card_Icon .ezIcon {
    background: var(--primary-50);
  }

  .home_Services_Card.slick-active .home_Services_Card_Icon::before {
    background: var(--secondar-30);
  }

  .home_Services_Card.slick-active {
    box-shadow: 0px 8px 16px 0px rgba(0, 11, 43, 0.4);
  }

  .container_Title {
    font-size: 1.25rem;
  }

  .home_Services::after {
    top: auto;
    bottom: 0;
    transform: translate(50%, 50%);
  }
}

/* !------------------------------- Services End --------------------------------- */

/* !------------------------------- Gallery Start --------------------------------- */

.home__Gallery {
  background: url(/portals/0/images/gallery-pattern.jpg) no-repeat center;
  background-size: 100% 100%;
  padding-block: 2.5rem;
  margin-top: 116px;
}

.home__Gallery_Desc_Item a.home__Gallery_Desc_Name {
  color: var(--Gray-90);
  margin-bottom: 2rem;
  border-right: 2px solid var(--mc2);
  padding-inline-start: 1rem;
}

.home__Gallery_Desc_Item a {
  color: var(--primary-100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home__Gallery_Desc_Item a .ezIcon {
  --icon: 1.25rem;
  background: var(--white) !important;
}

.home__Gallery_Desc {
  padding-inline-end: 2rem;
  margin-top: 3.375rem;
}

.slick-slide.home__Gallery_Img {
  position: relative;
  transition: 0.5s;
}

.slick-slide.home__Gallery_Img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  height: 240px;
  opacity: 0.4;
  background: var(--primary-00);
  transition: 0.5s;
}

.slick-current.home__Gallery_Img::before {
  opacity: 0;
}

.home__Gallery_Img .home__Gallery_Img_Card {
  transition: 0.5s;
  display: block;
  width: 360px;
}

.slick-slide.home__Gallery_Img img {
  transition: 0.5s;
  height: 240px;
  object-fit: cover;
}

.home__Gallery_ImgBox_Arrows {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.home__Gallery_ImgBox_Arrows .slick-arrow {
  position: static !important;
  transform: none !important;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  display: flex;
  width: 48px;
  height: 48px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 0 !important;
}

.home__Gallery_ImgBox .slick-track {
  transition: 0.3s;
}

.home__Gallery_ImgBox_Arrows .slick-arrow::before {
  background: #fff !important;
}

@media (min-width: 993px) {
  .home__Gallery_Img > a:not(.home__Gallery_Img_Card) {
    display: none;
  }

  .home__Gallery_ImgBox_Arrows {
    padding-bottom: 50px;
  }

  .home__Gallery_ImgBox_Wrapper {
    position: absolute;
  }

  .home__Gallery_Img:not(.slick-current) .home__Gallery_Img_Card {
    width: 168px;
  }

  .home__Gallery_ImgBox .slick-list,
  .home__Gallery_Desc_Item .slick-list {
    margin: 0 -0.75rem;
  }

  .home__Gallery_Img {
    margin: 0 0.75rem;
  }
}

@media (min-width: 993px) and (max-width: 1199px) {
  .home__Gallery_Desc_Item {
    margin: 0 0.75rem;
    width: 196px;
  }
}

@media (min-width: 1199px) and (max-width: 1280px) {
  .home__Gallery_Desc_Item {
    margin: 0 0.75rem;
    width: 250px;
  }
}

@media (min-width: 1280px) {
  .home__Gallery_Desc_Item {
    margin: 0 0.75rem;
    width: 280px;
  }
}

@media (max-width: 992px) {
  .home__Gallery_ImgBox .slick-list {
    padding-inline-end: 4rem;
    margin-inline: -0.5rem;
  }

  .home__Gallery_Img {
    margin-inline: 0.5rem;
  }

  .home__Gallery_Img .home__Gallery_Img_Card,
  .home__Gallery_Img .home__Gallery_Img_Card img {
    width: 100%;
  }

  .home__Gallery_Desc_Item a.home__Gallery_Desc_Name {
    text-align: start;
  }

  .home__Gallery {
    position: relative;
    background-size: cover !important;
  }

  .home__Gallery_ImgBox_Arrows {
    position: absolute;
    top: 36px;
    left: 1rem;
  }

  .home__Gallery_Desc_Item a:not(.home__Gallery_Desc_Name) {
    display: none;
  }

  .home__Gallery_Desc_Item {
    height: fit-content;
    width: 5%;
  }

  .home__Gallery_Desc {
    padding-inline-end: 0;
  }

  .home__Gallery_Img a:not(:first-child) {
    color: var(--primary-100);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 40px;
    opacity: 0;
    transition: var(--transition);
  }

  .home__Gallery_Img.slick-current a:not(:first-child) {
    opacity: 1;
  }

  .home__Gallery_Img a .ezIcon {
    --icon: 1.25rem;
    background: var(--white) !important;
  }
}

@media (max-width: 500px) {
  .home__Gallery_Desc_Item {
    height: fit-content;
    width: 1% !important;
  }
}

/* !------------------------------- Gallery End --------------------------------- */

/* !------------------------------- Counter Start --------------------------------- */

.home__Counter_Wrapper {
  padding-top: 8.5rem;
  background: url(/portals/0/images/counter-pattern.png) no-repeat center;
  background-size: 100% auto;
  padding-bottom: 94px;
}

.home__Counter_Inner {
  display: flex;
  align-items: center;
}

.counter__Item {
  flex: 1;
}

.div__Counter_Content_Box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.counter__Info_Top {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.home__Counter_Ttl {
  margin-bottom: 66px;
}

@media (max-width: 992px) {
  .home__Counter_Ttl {
    flex-direction: column;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .home__Counter_Inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 48px;
  }

  .counter__Info_Top * {
    font-size: 2.25rem;
    line-height: normal;
  }

  .counter__Item {
    flex: 0 0 50%;
  }

  .div__Counter_Content_Box {
    gap: 0.25rem;
  }

  .home__Counter_Wrapper {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }
}

/* !------------------------------- Counter End --------------------------------- */

/* !------------------------------- Video Start --------------------------------- */

.home_Video_Img {
  position: relative;
}

#videoModal .modal-body {
  padding: 0;
}

.modal-content {
  border-radius: 0 !important;
}

.home_Video_Img::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(8px);
}

@supports (-webkit-touch-callout: none) {
  .home_Video_Img::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 104px;
    background: linear-gradient(
      360deg,
      rgba(34, 34, 34, 0.9) 1.37%,
      rgba(22, 22, 22, 0.8) 54.92%,
      rgba(64, 64, 64, 0.4) 77.8%,
      rgba(102, 102, 102, 0.01) 98.73%
    );
  }
}

.home_Video_Img > video {
  width: 100% !important;
  height: 75vh !important;
  object-fit: cover;
}

.home_Video_Icon {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 56px;
  transform: translate(-50%, -50%);
  transition: var(--transition);
  opacity: 1;
  visibility: visible;
}

.home_Video_Icon.active {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.home_Video_Icon img {
  fill: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6.25px);
  border-radius: 50%;
}

.home_Video_Ttl {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.home_Video_Icon::before,
.home_Video_Icon::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 100px;
  background-color: transparent;
  border: solid 2px var(--white);
  animation: pulse calc(var(--transition) * 10) infinite ease;
  transform-origin: center;
}

.home_Video_Icon::after {
  animation-delay: 2s;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
    border-radius: 50%;
  }

  to {
    opacity: 0;
    transform: scale(1.2);
    border-radius: 50%;
  }
}

@media (max-width: 992px) {
  .home_Video_Img > img {
    height: 434px !important;
    object-fit: cover;
  }

  .home_Video_Icon img {
    width: 3rem;
    height: 3rem;
  }

  .home_Video_Ttl {
    width: 100%;
    text-align: center;
  }
}
/* !------------------------------- Video End --------------------------------- */

/* !------------------------------- Companies Start --------------------------------- */

.home__Companies {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--main-space) * 0.5);
  background: url("/Portals/0/images/rails.jpg") no-repeat center;
  background-size: cover;
  transition: var(--transition);
  height: calc(100vh - 3.75rem);
  overflow: hidden;
}

.home__Companies::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  background: var(--primary-00);
  transition: var(--transition) ease;
}

.home__Companies::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url(/portals/0/images/companies-vector.png) no-repeat center;
  background-size: 100% 100%;
  width: 453px;
  height: 146px;
}

.home__Companies_Bg {
  z-index: 1;
  transition: var(--transition) ease;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
}

.home__Companies_Bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  background: var(--primary-00);
  transition: var(--transition) ease;
}

.home__Companies_Bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url(/portals/0/images/companies-vector.png) no-repeat center;
  background-size: 100% 100%;
  width: 453px;
  height: 146px;
}

.home__Companies_Bg.active {
  opacity: 1;
}

.home__Companies_Wrapper {
  position: relative;
  z-index: 1;
}

.home__Companies_Cards {
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.home__Companies_Card {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
  height: 100%;
  justify-content: flex-end;
  text-align: center;
}

.home__Companies_Card::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
  opacity: 0.5;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.home__Companies_Card:last-child:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
  opacity: 0.5;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.home__Companies_Card_Content {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(2.5px);
  padding-inline: 12px;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.home__Companies_Card_Ttl {
  transition: var(--transition) linear;
  height: 84px;
}

.home__Companies_Card:hover .home__Companies_Card_Content {
  padding-bottom: 2.5rem;
}

.home__Companies_Wrapper h3 {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .home__Companies_Card_Ttl {
    height: fit-content;
  }

  .home__Companies_Card_Content {
    position: relative;
    min-height: unset;
    transform: none;
    transition: all 0.3s ease;
  }

  @supports (-webkit-touch-callout: none) {
    .home__Companies_Card_Content {
      background: linear-gradient(
        360deg,
        rgba(34, 34, 34, 0.9) 1.37%,
        rgba(22, 22, 22, 0.8) 54.92%,
        rgba(64, 64, 64, 0.4) 77.8%,
        rgba(102, 102, 102, 0.01) 98.73%
      );
    }
  }

  .home__Companies_Card_Desc {
    min-height: 90px;
  }

  .slick-active .home__Companies_Card_Content {
    transform: translateY(0);
  }

  .home__Companies {
    background: none;
    height: 80vh;
    margin-top: 6rem;
    overflow: visible !important;
  }

  .home__Companies_Bg {
    display: none;
  }

  .home__Companies_Wrapper .container {
    padding: 0 !important;
  }

  .home__Companies_Cards {
    display: block;
  }

  .home__Companies_Card {
    background: var(--img-url) no-repeat center;
  }

  .home__Companies_Wrapper h3 {
    position: absolute;
    z-index: 1;
    top: -1rem;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 100%;
    color: var(--mc1) !important;
    margin-top: 0 !important;
  }

  .home__Companies_Cards .slick-list {
    padding-inline-end: 4rem !important;
  }
}

/* !------------------------------- Companies End --------------------------------- */

/* !------------------------------- Clients Start --------------------------------- */

.our_Client_Parent {
  margin-bottom: 64px;
}

.our_Client_Title {
  color: var(--primary-20);
  margin-top: 32px;
  margin-bottom: 58px;
}

.our_Client__List {
  --ani-dur: 30s;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-width: 100%;
  animation: slide var(--ani-dur) linear infinite;
}

.our_Client__List__Wrapper {
  position: relative;
}

.our_Client__List:nth-child(2) {
  animation-delay: calc(var(--ani-dur) * -1);
}

.our_Client__Item {
  flex: 1;
  margin-inline: 1.75rem;
}

.our_Client__Item img {
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  transition: var(--transition);
}

.our_Client__Item:hover img {
  opacity: 1;
}

@keyframes slide {
  0% {
    transform: translateX(calc(-100% * -1));
  }
  100% {
    transform: translateX(0);
  }
}

.our_Client__Wrapper {
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 992px) {
  .our_Client__List {
    min-width: unset;
    --ani-dur: 20s;
  }

  .our_Client__Item {
    gap: 1rem;
    flex: unset !important;
  }

  .our_Client__Item img {
    min-width: 5rem;
    height: fit-content;
  }

  .our_Client_Title {
    margin-bottom: 2rem;
  }
}

/* !------------------------------- Clients End --------------------------------- */

/* -------------------------------------------------------------------------- */
/*                                   Job Ops                                  */
/* -------------------------------------------------------------------------- */

.careers_Txt {
  padding-bottom: 88px;
  position: relative;
}

.careers_Txt::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-100%);
  width: 325px;
  height: 283.001px;
  background: url(../assets/images/vector-1.png) no-repeat center;
  background-size: 100%;
}

.job__List_title {
  margin-bottom: 56px;
  padding-top: 56px;
  border-top: 1px solid;
  border-image: linear-gradient(
      270deg,
      rgba(213, 184, 116, 0) 0%,
      #d5b874 50%,
      rgba(213, 184, 116, 0) 100%
    )
    1;
}

.job__List {
  display: flex;
  flex-direction: column;
  margin-bottom: 4.5rem;
}

.job__Item {
  padding: 1rem;
  transition: var(--transition);
  background-color: var(--white);
  --icon-url: url(../assets/icons/arrow.svg);
  --icon-rotate: 90deg;
  border-bottom: 1px solid;
  border-image: linear-gradient(
      270deg,
      rgba(213, 184, 116, 0) 0%,
      #d5b874 50%,
      rgba(213, 184, 116, 0) 100%
    )
    1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.job__Item:not(.job__Expired):hover {
  box-shadow: 0px 10px 24px 0px rgba(85, 74, 46, 0.08);
  --icon-transform: translateY(-0.5rem);
  border-color: var(--primary-50);
}

.job__Item_Wrapper:has(.job__Item.job__Expired) {
  order: 2;
  opacity: 0.5;
}

.job__Item_Header {
  flex: 1;
}

.job__Item_Link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.job__Item .job__Item_Content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: space-between;
}

.job__Item_Content .ez_Btn {
  margin-inline-start: auto;
}

.job__Item_City,
.job__Item_Sex {
  min-width: 25%;
  color: var(--Gray-70);
}

:is(.job__Item_City, .job__Item_Sex) > span {
  color: var(--Gray-50);
}

.datepicker-plot-area {
  border-radius: var(--border-radius-sm) !important;
  border: none !important;
}

.form__Header {
  color: var(--Gray-50);
  margin-bottom: 24px;
}

.form__Header .note {
  color: var(--Gray-40);
}

.job__Info_Paragraph ul,
.jobOps__info_Desc ul {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.job__Info_Paragraph li,
.jobOps__info_Desc li {
  list-style: disc;
  list-style-position: inside;
}

.thank-you {
  display: block !important;
}

.thank-you h2 {
  color: var(--success-00);
}

.thank-you hr {
  display: none;
}

.job__Form_Wrapper {
  padding: 2rem 72px 72px;
  background-color: var(--white);
  border: 1px solid var(--Gray-99);
  box-shadow: 0px 10px 24px 0px rgba(85, 74, 46, 0.08);
  margin-bottom: 88px;
}

.job__Info_Wrapper {
  color: var(--Gray-50);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid;
  border-image: linear-gradient(
      270deg,
      rgba(213, 184, 116, 0) 0%,
      #d5b874 50%,
      rgba(213, 184, 116, 0) 100%
    )
    1;
}

.job__Info_Wrapper :is(h1, h2, h3, h4, h5, h6) {
  color: var(--Gray-40);
}

.job__Attr_Wrapper {
  display: flex;
  gap: 1rem;
}

.job__Attr_Wrapper .job__Attr_item {
  min-width: 25%;
  color: var(--Gray-70);
}

.job__Attr_Wrapper .job__Attr_item > span {
  color: var(--Gray-50);
}

body:not(.personabar-visible)
  .job__Form_Wrapper
  .LiveForm.Default
  ul.page-break-section {
  --form-block-gap: 1rem;
  --form-inline-gap: 1rem;
  max-width: 100%;
}

.pDatePicker::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(calc(-50% + 0.5rem));
  z-index: 1;
  width: 24px;
  height: 24px;
  background: url(/Portals/_default/skins/ez-skin/assets/icons/calendar-2.svg)
    no-repeat center;
  background-size: contain;
  pointer-events: none;
}

body:not(.personabar-visible)
  .job__Form_Wrapper
  .LiveForm.Default
  .page-break-section
  li.Submitbutton
  .Submit-Align-Right {
  position: relative;
}

body:not(.personabar-visible)
  .job__Form_Wrapper
  .LiveForm.Default
  ul.page-break-section
  .Field.Submitbutton
  .Submit-Align-Right::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 50px);
  top: 50%;
  transform: translate(-50%, -50%);
  mask: url(../assets/icons/sms.svg) no-repeat center;
  mask-size: cover;
  -webkit-mask: url(../assets/icons/sms.svg) no-repeat center;
  -webkit-mask-size: cover;
  background-color: #fff !important;
  width: 1.25rem;
  height: 1.25rem;
  z-index: 1;
  pointer-events: none;
}

.job__Ops_Title {
  padding-block: 2rem;
  background: url(/portals/0/images/inner-ttl-back.jpg) no-repeat center;
  background-size: 100% 100%;
  margin-bottom: 2rem;
}

.job__Ops_Title h1 {
  color: var(--secondar-20);
}

.job__Summary {
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .job__Item {
    flex-wrap: wrap;
    align-items: flex-end;
  }

  .job__Item .job__Item_Content {
    flex-direction: column;
    align-items: start;
    margin-top: 1rem;
  }

  .job__Item_Header {
    flex: 0 0 100%;
  }

  .job__Form_Wrapper {
    padding: 1rem !important;
  }

  .job__Ops_Title {
    background-size: cover !important;
  }
}

/* !------------------------------- jobOps Form End --------------------------------- */

/* !------------------------------- Managers Start --------------------------------- */

.managers_List {
  display: grid;
  grid-template-columns: repeat(var(--col, 3), 1fr);
  column-gap: 24px;
  row-gap: 40px;
  margin-block: 3rem;
}

.managers_Card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.managers_Card_Img,
.managers_Card_Img img {
  width: 100%;
}

.managers_Card_Img {
  position: relative;
  overflow: hidden;
}

.managers_Card_Pos {
  color: var(--primary-20);
}

.managers_Card_Img img {
  filter: grayscale(1);
  transition: var(--transition);
  height: 460px;
  width: 100% !important;
}

.managers_Card:hover .managers_Card_Img img {
  filter: grayscale(0);
}

.managers_Card_Img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(9, 14, 26, 0) 42.5%, #090e1a 100%);
}

.managers_Card_Name {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  transform: translateY(100%);
  transition: var(--transition);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.01) 0%,
    rgba(255, 255, 255, 0) 81.76%
  );
  backdrop-filter: blur(4px);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.managers_Card:hover .managers_Card_Name {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .managers_List {
    --col: 1;
  }

  .managers_Card_Name {
    transform: translateY(0);
  }

  .managers_Card_Img img {
    filter: grayscale(0);
  }
}

@media (min-width: 992px) {
  .inner__Info_noBanner:not(:first-child) {
    position: relative;
  }

  .inner__Info_noBanner:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-20%, -100%);
    width: 324px;
    height: 408px;
    background: url(../assets/images/vector-2.png) no-repeat center;
    background-size: contain;
  }
}

/* !------------------------------- Managers End --------------------------------- */

/* !------------------------------- Contact Us Start --------------------------------- */

.contact_Us_Map {
  display: flex;
}

.contactUs__List_Wrapper {
  padding-block: 72px;
  padding-inline: 1.5rem;
  background: url(/portals/0/images/contact-pattern.jpg) no-repeat center;
  background-size: cover;
  flex: 1;
  transform: translateY(56px);
  margin-bottom: 56px;
  z-index: 2;
}

.contact__Map img {
  height: auto;
  width: calc(100% + 56px);
  max-width: calc(100% + 56px);
  transform: translateX(56px);
}

.contactUs__List {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contactUs__List__Item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contactUs__List__Item:nth-child(2) a {
  direction: ltr;
  unicode-bidi: isolate;
}

.contactUs__List__Item .ezIcon {
  --icon: 48px;
  --icon-color: var(--mc2);
}

.contact_Us_Socials {
  margin-top: 56px;
  margin-bottom: 72px;
}

.contact_Us_Social_Ttl {
  color: var(--primary-20);
  margin-bottom: 2rem;
}

.contact_Us_Social_List {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  position: relative;
}

.contact_Us_Social_List::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateX(25%);
  right: 0;
  width: 50%;
  border-bottom: 1px solid;
  border-image: linear-gradient(
      -270deg,
      #d5b874 0%,
      rgba(213, 184, 116, 0) 100%
    )
    1;
}

.contact_Us_Social_List::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateX(-25%);
  left: 0;
  width: 50%;
  border-bottom: 1px solid;
  border-image: linear-gradient(270deg, #d5b874 0%, rgba(213, 184, 116, 0) 100%)
    1;
}

.contact__Form_Outer {
  padding-bottom: 72px;
  background: var(--secondar-100);
  position: relative;
}

.contact__Form_Outer::before,
.contact__Form_Outer::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 1;

  --icon-color: var(--secondar-30);
  opacity: 0.03;
}

.contact__Form_Outer::before {
  --icon-url: url(/portals/0/images/towerSplash.svg);
  left: 0;
  width: 340px;
  height: 309px;
}

.contact__Form_Outer::after {
  --icon-url: url(/Portals/0/Images/footerVector.svg);
  right: 0;
  width: 500px;
  height: 500px;
}

@media (max-width: 991px) {
  .contact__Form_Outer::before {
    display: none;
  }
}

.contact__Form_Wrapper {
  background-color: var(--white);
  box-shadow: 0px 10px 24px 0px rgba(0, 11, 43, 0.08);
  position: relative;
  z-index: 2;
}

.contact__Form_Wrapper ul.page-break-section {
  --form-inline-gap: 24px !important;
  --form-block-gap: 24px !important;
  --form-grid-col: 2 !important;
}

#Body .contact__Form_Wrapper .Field.Heading h2 {
  padding-bottom: calc(1.5 * var(--title-space) - var(--form-block-gap));
  margin-bottom: 0;
  color: var(--primary-20) !important;
  font-size: var(--fz-t2);
  line-height: var(--lh-t2);
  font-weight: var(--fw-600);
  border: none;
  text-align: center;
}

body:not(.personabar-visible)
  .contact__Form_Wrapper
  .LiveForm.Default
  .page-break-section
  li.Submitbutton {
  width: fit-content !important;
  margin-inline: auto;
}

body:not(.personabar-visible)
  .job__Form_Wrapper
  .LiveForm.Default
  .page-break-section
  li.Submitbutton
  .Submit-Align-Right {
  position: relative;
}

body:not(.personabar-visible)
  .job__Form_Wrapper
  .LiveForm.Default
  ul.page-break-section
  .Field.Submitbutton
  .Submit-Align-Right::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 50px);
  top: 50%;
  transform: translate(-50%, -50%);
  mask: url(../assets/icons/mail-2.svg) no-repeat center;
  mask-size: cover;
  -webkit-mask: url(../assets/icons/mail-2.svg) no-repeat center;
  -webkit-mask-size: cover;
  background-color: #fff !important;
  width: 1.25rem;
  height: 1.25rem;
  z-index: 1;
  pointer-events: none;
}

body:not(.personabar-visible)
  .contact__Form_Wrapper
  .LiveForm.Default
  ul.page-break-section
  .Field.Submitbutton::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 2rem);
  top: 50%;
  transform: translate(-50%, -50%);
  mask: url(../assets/icons/mail-2.svg) no-repeat center;
  mask-size: cover;
  -webkit-mask: url(../assets/icons/mail-2.svg) no-repeat center;
  -webkit-mask-size: cover;
  background-color: #fff !important;
  width: 1.25rem;
  height: 1.25rem;
  z-index: 1;
  pointer-events: none;
}

body:not(.personabar-visible, .rtl)
  .contact__Form_Wrapper
  .LiveForm.Default
  ul.page-break-section
  .Field.Submitbutton::before {
  left: unset;
  right: calc(50% - 60px);
}

body#Body:not(.personabar-visible)
  .contact__Form_Wrapper
  .LiveForm.Default
  input[type="submit"] {
  background: var(--mc1) !important;
  padding: 0.5rem 48px 0.5rem 76px !important;
}

body#Body:not(.personabar-visible, .rtl)
  .contact__Form_Wrapper
  .LiveForm.Default
  input[type="submit"] {
  padding: 0.5rem 76px 0.5rem 48px !important;
}

body:not(.personabar-visible)
  .contact__Form_Wrapper
  .LiveForm.Default
  input.error,
body:not(.personabar-visible)
  .contact__Form_Wrapper
  .LiveForm.Default
  textarea.error,
body:not(.personabar-visible)
  .contact__Form_Wrapper
  .LiveForm.Default
  select.error {
  border-bottom: 1px solid var(--mc1) !important;
}

body:not(.personabar-visible)
  .contact__Form_Wrapper
  .LiveForm.Default
  .Field
  > label {
  font-weight: var(--fw-400);
  color: var(--Gray-50);
}

body#Body:not(.personabar-visible)
  .contact__Form_Wrapper
  .LiveForm.Default
  input[type="submit"]:hover {
  background: var(--primary-70) !important;
}

.pDatePicker::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(calc(-50% + 0.5rem));
  z-index: 1;
  width: 24px;
  height: 24px;
  background: url(/Portals/_default/skins/ez-skin/assets/icons/calendar-2.svg)
    no-repeat center;
  background-size: contain;
  pointer-events: none;
}

body:not(.rtl) .pDatePicker::before {
  left: unset;
  right: 0.5rem;
}

.gallery__Content_Banner {
  position: relative;
}

.gallery__Content_Banner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 11, 43, 0.4) 0%,
    rgba(0, 11, 43, 0.4) 100%
  );
}

@media (min-width: 992px) {
  .contact__Form_Wrapper {
    padding: 1rem 1.5rem;
  }

  .LiveForm.Default .gridSpan-2 {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 991px) {
  .contactUs__List__Item .ezIcon {
    --icon: 2rem;
  }

  .contact_Us_Map {
    flex-direction: column-reverse;
    margin-inline: -12px;
  }

  .contactUs__List_Wrapper {
    padding-block: 40px;
    padding-inline: 1rem;
    transform: translateY(-56px);
    width: calc(100% - 2rem);
    margin-bottom: -56px;
  }

  .contactUs__Map_Wrapper {
    padding-inline-start: 2rem;
  }

  .contact__Map img {
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .contact_Us_Social_List::before,
  .contact_Us_Social_List::after {
    display: none;
  }

  .contact_Us_Socials {
    margin: 40px 0 !important;
    padding-block: 2rem;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(
        270deg,
        rgba(213, 184, 116, 0) 0%,
        #d5b874 50%,
        rgba(213, 184, 116, 0) 100%
      )
      1;
  }

  /*  */
  body:not(.personabar-visible)
    .contact__Form_Wrapper
    .LiveForm.Default
    ul.page-break-section,
  body:not(.personabar-visible)
    .contact__Form_Wrapper
    .LiveForm.Default
    .thank-you {
    --form-grid-col: 1 !important;
  }

  body:not(.personabar-visible)
    .contact__Form_Wrapper
    .LiveForm.Default
    .page-break-section
    li.Submitbutton {
    width: 100% !important;
  }

  .contact__Form_Wrapper ul.page-break-section {
    --form-block-gap: 1rem !important;
    --form-grid-col: 1 !important;
  }

  .contact__Form_Wrapper {
    padding: 1.5rem 1rem !important;
  }

  .contact__Map_Inner {
    padding-inline: 0 !important;
  }

  #Body .contact__Form_Wrapper .Field.Heading h2 {
    font-size: 20px;
  }
}

/* !------------------------------- Contact Us End --------------------------------- */

/* !------------------------------- Services Start --------------------------------- */

.services_Wrapper .inner__Info_noBanner {
  position: relative;
}

.services_Wrapper .inner__Info_noBanner::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../assets/icons/card-vector.svg) no-repeat center;
  background-size: 100% 100%;
  width: 408px;
  height: 168px;
  transform: translate(0, 100%);
}

.services_Content_Img {
  margin-bottom: 2rem;
}

.services_Content_Img img {
  width: 100%;
  height: auto;
}

.services_Content_Ttl {
  color: var(--primary-20);
  margin-bottom: 1rem;
}

.services_Content_Txt {
  padding-inline-start: 1rem;
  border-inline-start: 2px solid var(--mc2);
}

.services_Content {
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.services_Content:not(:last-child) {
  border-bottom: 1px solid;
  border-image: linear-gradient(
      270deg,
      rgba(213, 184, 116, 0) 0%,
      #d5b874 50%,
      rgba(213, 184, 116, 0) 100%
    )
    1;
}

/* !------------------------------- Services End --------------------------------- */

/* !------------------------------- Startegy Start --------------------------------- */

.strategy_Card {
  background: var(--Gray-G100, #fff);
  box-shadow: 0px 8px 32px 0px rgba(0, 11, 43, 0.1);
  padding: 2rem 2.5rem;
}

.strategy_Wrapper {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.strategy_Wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../assets/icons/card-vector.svg) no-repeat center;
  background-size: 100% 100%;
  width: 408px;
  height: 168px;
  transform: translate(76%, -34%);
  z-index: -1;
}

.strategy_Ttl {
  color: var(--primary-20);
  margin-bottom: 1rem;
}

.paya_Group_Video video {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .strategy_Card {
    padding: 1.5rem 1rem;
  }
}

/* !------------------------------- Startegy End --------------------------------- */

/* !------------------------------- Paya Group Start --------------------------------- */

.paya_Group_Ttl {
  margin-bottom: 1rem;
  color: var(--primary-20);
}

.strategy_Card h3 {
  color: var(--primary-20);
}

.paya_Group_List {
  margin-inline-start: 18px;
}

ul.paya_Group_List li {
  list-style: disc !important;
}

ol.paya_Group_List li {
  list-style: decimal !important;
}

.paya_Group_Contacts {
  background: var(--primary-20);
  padding: 2.5rem 2rem;
  margin-bottom: 40px;
}

.paya_Group_Contacts_List {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.paya_Group_List_Item_Contact:first-child {
  flex: 0 0 100%;
}

.paya_Group_List_Item_Contact {
  flex: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  --icon: 24px;
  --icon-color: var(--mc2);
}

.paya_Group_List_Item_Contact:nth-child(2) a,
.paya_Group_List_Item_Contact:nth-child(3) a {
  direction: ltr;
  unicode-bidi: isolate;
}

.paya_Group_Img_Logo {
  margin-bottom: 40px;
}

.paya_Group_Img_Logo img {
  width: 200px;
  height: auto;
}

@media (max-width: 992px) {
  .paya_Group_Img_Logo img {
    width: 120px;
    height: auto;
  }
}

/* !------------------------------- Paya Group End --------------------------------- */

.p404 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 40px;
  margin-block: 72px;
}

.p404__Text {
  color: var(--primary-40);
}

.p404__Btn button {
  border-radius: var(--border-radius-sm);
  background: var(--primary-50);
  padding: 0 120px;
  display: flex;
  height: 48px;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: 1px solid var(--primary-50);
}

.p404__Btn button:active,
.p404__Btn button:focus,
.p404__Btn button:hover {
  background: var(--primary-60) !important;
}

.p404__Btn button .ezIcon {
  transform: rotate(180deg);
}

@media (max-width: 992px) {
  .p404 {
    margin-block: 2rem;
  }
  .p404__Btn button {
    padding: 0 3rem;
    height: 40px;
  }
}
