.PagingTable {
  margin-bottom: 64px !important;
}

.news_Cards_Wrapper {
  display: grid;
  grid-template-columns: repeat(var(--col, 3), 1fr);
  column-gap: 24px;
  row-gap: 48px;
  margin-bottom: 80px;
  margin-inline-start: 1.5rem;
}

.news_Cards_Wrapper .news_Card_Img img {
  object-fit: cover;
  width: 100%;
  height: 202px;
}

.news_Cards_Wrapper .news_Card .news_Card_Img {
  overflow: hidden;
}

.news_Cards_Wrapper .news_Card .news_Card_Img img {
  transition: 3s;
}

.news_Cards_Wrapper .news_Card:hover .news_Card_Img img {
  transform: scale(1.1);
}


.news_Cards_Wrapper .news_Card_Content {
  margin-top: 0.5rem;
  padding-inline: 1rem;
}

 

.news_Cards_Wrapper .news_Card_Footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}


.news_Cards_Wrapper .news_Card_More {
  display: flex;
  align-items: center;
  color: var(--primary-40);
  --icon-color: var(--primary-40);
}

body.rtl .news_Cards_Wrapper .news_Card_More .ezIcon {
  transform: rotate(180deg);
}

.news_Cards_Wrapper .news_Card_Title img {
  width: fit-content;
}

.news_Cards_Wrapper .news_Card_Title {
  transition: var(--transition);
}

.news_Cards_Wrapper .news_Card:hover .news_Card_Title {
  color: var(--primary-40) !important;
}

.news_Cards_Wrapper .news_Card .news_Card_Img {
  transition: var(--transition);
  display: block;
}

.news_Cards_Wrapper .news_Card:hover .news_Card_Img {
  box-shadow: 0px 8px 16px 0px rgba(0, 29, 47, 0.2);
}

.news_Category {
  padding: 1.5rem 1rem 0;
  background: var(--primary-100);
  position: relative;
  margin-bottom: 80px;
}

.news_Category::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.125rem;
  background: linear-gradient(180deg, rgba(242, 247, 250, 0) 0%, #f2f7fa 100%);
  z-index: 1;
}

body.rtl .news_Category::before {
  left: auto;
  right: 0;
}

.news_Category_Head {
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-40);
  margin-bottom: 20px;
  padding-inline-start: 1rem;
  display: block;
}

.news_Category_Head p {
  color: var(--primary-20);
}

.news_Category_List {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-inline-start: 1rem;
  padding-bottom: 34px;
  max-height: 308px;
  overflow-y: auto;
}

/* width */
.news_Category_List::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.news_Category_List::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */

.news_Category_List::-webkit-scrollbar-thumb {
  transition: var(--transition);
  background: var(--primary-70);
}

.news_Category_Itm {
  position: relative;
  padding-inline-start: 1rem;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.news_Category_Itm::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  --icon-url: url(../assets/icons/arrowUp.svg);
  --icon-color: var(--primary-40);
  background: var(--icon-color);
  mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  -webkit-mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

body.rtl .news_Category_Itm::before {
  left: auto;
  right: 0;
}

.news_Category_Itm:hover::before {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
}

.news_Category_Itm.active::before {
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
}

body.rtl .news_Category_Itm.active::before {
  transform: rotate(-45deg);
}

body.rtl .news_Category_Itm:hover::before {
  transform: rotate(-90deg);
}

.news_Category_Itm:hover,
.news_Category_Itm.active {
  padding-inline-start: 2.125rem;
}

.news_Category_Itm:hover a,
.news_Category_Itm.active a {
  color: var(--primary-40) !important;
}

.news_Detail {
  margin-bottom: 108px;
  margin-top: calc(var(--header-height) + 2.5rem);
}

.news_Detail_Ttl {
  display: flex;
  flex-direction: column;
  padding-inline-start: 1rem;
  border-inline-start: 4px solid var(--primary-20);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.news_Detail_Date {
  display: flex;
  align-items: center;
  gap: 8px;
  --icon: 20px;
  --icon-color: var(--Gray-60);
}

.news_Detail_Content {
  min-height: 350px;
  margin-bottom: 48px;
}

.news_Detail_Thumb {
  margin-bottom: 2rem;
  float: inline-end;
  width: 50%;
  padding-inline-start: 1.5rem;
  overflow: hidden;
  height: fit-content;
}

.news_Detail_Desc {
  text-align: justify;
}

.news_Detail_Thumb img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

.news_Detail_Gallery {
  display: flex;
  gap: 24px;
}

.news_Big_Slider {
  max-width: calc(80% - 12px);
  display: block;
}

.news_List_Slider {
  max-width: calc(20% - 12px);
  display: block;
}

.thumbnail__Wrapper .slick-list {
  margin-block: -0.5rem;
}

.thumbItem {
  border: none !important;
  transition: var(--transition);
  margin-block: 0.5rem;
  z-index: 1;
  position: relative;
}

.thumbItem:not(.slick-center) {
  opacity: 0.6;
}

.thumbItem::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 12px;
  background: var(--primary-40);
  transition: 0.5s;
}

.thumbItem.slick-center::before {
  width: calc(100% - 1rem);
}

.display__Wrapper .img__Display_Item {
  height: fit-content;
}

.display__Wrapper .img__Display_Item img {
  height: 488px;
  object-fit: cover;
}

.thumbItem img {
  max-height: 110px;
  object-fit: cover;
}

.news_Detail_Gallery_Ttl {
  margin-bottom: 1rem;
  padding-inline-start: 1rem;
  color: var(--primary-20);
}

.news_Detail_Gallery_Arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 104px;
}

.news_Detail_Gallery_Arrows .slick-arrow {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  background: #fff !important;
  transform: translateY(50%) !important;
}

.news_Detail_Gallery_Arrows .slick-arrow::before {
  --slick-arrow-icon: 2.5rem;
  --slick-arrow-accent: var(--primary-40);
}

.news_Detail_Gallery_Arrows .slick-next::before {
  transform: rotate(0) !important;
}

body.rtl .news_Detail_Gallery_Arrows .slick-next::before {
  transform: rotate(180deg) !important;
}

.news_Detail_Gallery_Arrows .slick-prev:before {
  transform: rotate(180deg) !important;
}

body.rtl .news_Detail_Gallery_Arrows .slick-prev:before {
  transform: rotate(0deg) !important;
}

.news_Detail_Gallery_Arrows .slick-arrow:hover {
  background: var(--primary-99) !important;
}

.related__Wrapper_Header p {
  color: var(--primary-20);
  background: #fff;
  padding-inline-end: 24px;
}

.related__Wrapper .news_Card_Img img {
  object-fit: cover;
  height: 280px;
  width: 100%;
}

.news_related_Wrapper .slick-list {
  margin-inline: -0.75rem;
}

.related__Wrapper_Header {
  position: relative;
  z-index: 1;
}

.related__Wrapper_Header::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-95);
  z-index: -1;
}

body.rtl .related__Wrapper_Header::before {
  left: auto;
  right: 0;
}

.related__Wrapper_Header .append_Blog_Arrows {
  background: #fff;
  padding-inline-start: 24px;
}

.related__Wrapper {
  height: fit-content;
  margin-bottom: 80px;
}

.related__Wrapper .news_Card {
  margin-inline: 0.75rem;
  height: fit-content;
}

.related__Wrapper .news_Card .news_Card_Img {
  overflow: hidden;
}

.related__Wrapper .news_Card .news_Card_Img img {
  transition: 3s;
}

.related__Wrapper .news_Card:hover .news_Card_Img img {
  transform: scale(1.1);
}

.related__Wrapper .news_Card_Content {
  margin-top: 0.5rem;
  padding-inline: 1rem;
}

.related__Wrapper .news_Card_Footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.related__Wrapper .news_Card_More {
  display: flex;
  align-items: center;
  color: var(--primary-40);
  --icon-color: var(--primary-40);
}

body.rtl .related__Wrapper .news_Card_More .ezIcon {
  transform: rotate(-180deg);
}

.related__Wrapper .news_Card_Title img {
  width: fit-content;
}

.related__Wrapper .news_Card_Title {
  transition: var(--transition);
}

.related__Wrapper .news_Card:hover .news_Card_Title {
  color: var(--primary-40) !important;
}

.related__Wrapper .news_Card .news_Card_Img {
  transition: var(--transition);
  display: block;
}

.related__Wrapper .news_Card:hover .news_Card_Img {
  box-shadow: 0px 8px 16px 0px rgba(0, 29, 47, 0.2);
}

.event_Detail {
  margin-bottom: 54;
  margin-top: calc(var(--header-height) + 2.5rem);
}

.event_Detail_Ttl {
  display: flex;
  flex-direction: column;
  padding-inline-start: 1rem;
  border-inline-start: 4px solid var(--primary-20);
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.event_Detail_Ttl h1 {
  color: var(--primary-20);
}

.event_Detail_Date {
  display: flex;
  align-items: center;
  gap: 8px;
  --icon: 20px;
  --icon-color: var(--Gray-60);
}

.event_Detail_Footer {
  text-align: justify;
}

.event_Detail_Content {
  margin-bottom: 2.625rem;
}

.event_Detail_Thumb {
  margin-bottom: 2.5rem;
}

.event_Detail_Thumb img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

.event_Detail_Gallery {
  display: flex;
  gap: 24px;
}

.event_Detail_Gallery_Ttl,
.event_Detail_Video_Ttl {
  color: var(--primary-20);
}

.event_Detail_Gallery_Arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 104px;
}

.event_Detail_Gallery_Arrows .slick-arrow {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  background: #fff !important;
  border: 1px solid var(--primary-80) !important;
}

.event_Detail_Gallery_Arrows .slick-arrow::before {
  --slick-arrow-icon: 2.5rem;
  --slick-arrow-accent: var(--primary-40);
}

.event_Detail_Gallery_Arrows .slick-next::before {
  transform: rotate(0) !important;
}

.event_Detail_Gallery_Arrows .slick-prev:before {
  transform: rotate(180deg) !important;
}

.event_Detail_Gallery_Arrows .slick-arrow:hover {
  background: var(--primary-99) !important;
}

.event_Detail_Content_Wrapper {
  padding-inline-end: 3.5rem;
}

.event_Detail_Img_Itm img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.event_List_Slider {
  width: 100%;
}

.event_Detail_Video_Wrapper {
  margin-top: 56px;
}

.event_Detail_Gallery_Header,
.event_Detail_Video_Header {
  margin-bottom: 1rem !important;
}

#appendArrowsRelated,
#appendArrowsVideos {
  gap: 3rem !important;
}

.event_Detail_Socials {
  margin-top: 64px;
}

.event_Detail_Socials_Header,
.event_Detail_Form_Header,
.event_Detail_Related_Header {
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--primary-40);
}

.event_Detail_Form_Header {
  margin-bottom: 24px;
}

.event_Detail_Form_Txt {
  margin-bottom: 2rem;
}

.event_Detail_Socials_Header p,
.event_Detail_Form_Header p,
.event_Detail_Related_Header p {
  padding-inline-start: 1rem;
  color: var(--primary-20);
}

.event_Detail_Social_List {
  display: grid;
  grid-template-columns: repeat(var(--col, 2), 1fr);
}

.event_Detail_Social_Itm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 20px 48px;
}

.event_Detail_Social_Itm:not(:last-child, :nth-child(3)) {
  border-bottom: 1px solid var(--Gray-95);
}

.event_Detail_Social_Itm:nth-child(1),
.event_Detail_Social_Itm:nth-child(3),
.event_Detail_Social_Itm:nth-child(5) {
  border-inline-end: 1px solid var(--Gray-95);
}

.event_Detail_Social_Itm .ezIcon {
  --icon: 2rem;
  --icon-color: var(--primary-40);
}

.event_Detail_Social_Itm_Name {
  color: var(--primary-40);
}

.event_List_Slider_Video_Itm {
  height: fit-content;
}

.event_Detail_Form {
  margin-top: 40px;
  padding: 40px 3rem;
  box-shadow: 0px 12px 40px 0px rgba(0, 29, 47, 0.06);
  background: #fff;
}

.event_Detail_Related_List {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.event_Card_Related {
  display: flex;
  gap: 1rem;
}

.event_Card_Related_Img img {
  min-width: 112px;
  min-height: 112px;
}

.event_Card_Related_Content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.event_Card_Related_Bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event_Card_Related_Date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event_Card_Related_Date .ezIcon {
  --icon: 20px;
  --icon-color: var(--Gray-60);
}

.event_Card_Related_More {
  color: var(--primary-40);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  --icon-color: var(--primary-40);
}

.event_Card_Related_More .ezIcon {
  transform: rotate(90deg);
}

body.rtl .event_Card_Related_More .ezIcon {
  transform: rotate(-90deg);
}

.newsletter_Form_Event .page-break-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

body:not(.personabar-visible)
  .newsletter_Form_Event
  .LiveForm.Default
  .Field
  > label {
  display: none;
}

body:not(.personabar-visible)
  .newsletter_Form_Event
  .LiveForm.Default
  .Field
  input {
  height: 48px !important;
  padding: 14px 8px !important;
  border: 1px solid var(--primary-95) !important;
}

body#Body:not(.personabar-visible)
  .newsletter_Form_Event
  .LiveForm.Default
  .Field.mobile-under
  .Field-Container-Wide {
  height: 48px !important;
}

body#Body:not(.personabar-visible)
  .newsletter_Form_Event
  .LiveForm.Default
  input[type="submit"] {
  height: 48px !important;
  padding-inline-start: 5.5rem !important;
}

body.rtl:not(.personabar-visible)
  #wrap
  main
  .newsletter_Form_Event
  .LiveForm.Default
  input[type="submit"] {
  padding-inline-end: 1.5rem !important;
  padding-inline-start: 0 !important;
}

body:not(.personabar-visible)
  .newsletter_Form_Event
  .LiveForm.Default
  .page-break-section
  li.Submitbutton {
  position: relative;
}

body:not(.personabar-visible)
  .newsletter_Form_Event
  .LiveForm.Default
  .page-break-section
  li.Submitbutton::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 2rem);
  top: 50%;
  transform: translate(-50%, -55%);
  mask: url(../assets/icons/mail.svg) no-repeat center;
  mask-size: cover;
  -webkit-mask: url(../assets/icons/mail.svg) no-repeat center;
  -webkit-mask-size: cover;
  background-color: #fff !important;
  width: 1.5rem;
  height: 1.5rem;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .news_Category {
    margin-bottom: 1.5rem;
  }

  .news_Cards_Wrapper {
    --col: 1;
    gap: 1rem;
    margin-inline-start: 0 !important;
  }

  .event_Detail_Social_Itm {
    padding: 1rem 1.5rem;
    justify-content: center;
  }

  .event_Detail_Social_Itm_Name {
    white-space: nowrap;
  }

  .event_Detail_Content_Wrapper {
    padding-inline-end: 0;
  }

  .event_Detail_Ttl,
  .event_Detail_Thumb {
    margin-bottom: 24px;
  }

  .event_Detail_Content {
    margin-bottom: 2rem;
  }

  .event_Detail_Img_Itm img {
    height: auto !important;
    max-height: 246px !important;
    object-fit: cover;
  }

  .event_Detail_Video_Wrapper {
    margin-top: 2rem;
  }

  .event_Detail_Content_Wrapper .append_Blog_Arrows {
    display: flex !important;
    gap: 40px;
  }

  .event_Detail_Content_Wrapper .home_Blog_Header .slick-arrow {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }

  .event_Detail_Related {
    margin-top: 4rem;
  }

  .event_Detail_Socials_Header,
  .event_Detail_Form_Header,
  .event_Detail_Related_Header {
    margin-bottom: 1.5rem;
  }

  .event_Detail_Related_List {
    gap: 1rem;
  }

  .event_Detail_Socials {
    margin-top: 56px;
  }

  .event_Detail_Form {
    margin-top: 48px;
    padding: 2.5rem 1rem;
  }

  .event_Detail_Form_Header p {
    padding-inline-start: 0;
  }

  .event_Detail_Form_Header {
    padding-bottom: 2rem;
  }
}

.news_Detail_Footer h1,
.news_Detail_Footer h2,
.news_Detail_Footer h3,
.news_Detail_Footer h4,
.news_Detail_Footer h5,
.news_Detail_Footer h6 {
  margin-block: 2rem 0.5rem;
  color: var(--Gray-30);
  font-size: var(--fz-t4);
  line-height: var(--lh-t4);
  font-weight: 500;
}

.event_Detail_Footer {
  line-height: var(--lh-b1) !important;
}

.news_Detail_Footer p {
  margin-bottom: 12px;
  color: var(--Gray-30);
  font-size: var(--fz-b2);
  font-weight: 400;
  line-height: var(--lh-b1);
}

body.rtl .news_Detail_Footer p {
  text-align: justify;
}

.news_Detail_Footer img {
  margin-block: 2rem;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
}

.news_Detail_Footer_Btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.news_Detail_Footer ul,
.news_Detail_Footer ol {
  margin-block: 1rem;
  padding-inline-start: 1rem;
}

.news_Detail_Footer ul li {
  list-style: disc;
  color: var(--Gray-30);
  font-size: var(--fz-b3);
  font-weight: 400;
  line-height: var(--lh-b2);
  margin-bottom: 8px;
}

.news_Detail_Footer ol li {
  color: var(--Gray-30);
  font-size: var(--fz-b3);
  font-weight: 400;
  line-height: var(--lh-b2);
  list-style: decimal;
  margin-bottom: 8px;
}

/*--------------------------- Mapna Basic Start ----------------------------*/

@media (max-width: 992px) {
  .banner__Content_Wrapper,
  .inner_Banner.active__Dark_Effect > img {
    height: 500px !important;
  }

  .main_title {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* padding-right: 108px; */
    margin-block: auto;
  }

  .main_title h1 {
    font-size: 32px !important;
  }

  .main_title p {
    font-size: 16px;
    font-weight: 400;
  }

  /* .inner_Banner.active__Dark_Effect img {
    height: 150px !important;
  } */
}

.inner_Banner.active__Dark_Effect {
  position: relative;
  z-index: 0;
}

.inner_Banner.active__Dark_Effect > img {
  width: 100%;
  height: 468px;
  object-fit: cover;
}

body.rtl .inner_Banner.active__Dark_Effect > img {
  filter: brightness(50%) saturate(120%);
}

.banner__Content_Wrapper {
  color: var(--white);
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  padding: 0 !important;
  z-index: 0;
}

.logo__Title {
  position: relative;
  /* padding-top: 56px; */
}

.logo__Title .title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}

body.rtl .logo__Title .title {
  font-weight: 700;
}

.logo__Title .title::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-70);
  position: absolute;
  top: -16px;
}

.wrap100 {
  background-color: #f8f8f8;
}

.mapna_btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff !important;
  text-transform: uppercase;
  background-color: var(--secondar-50);
  padding: 10px 0px;
  text-align: center;
  width: 168px;
  border-radius: 24px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.mapna_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  --icon-url: url(../assets/icons/download.svg);
  --icon-color: #fff;
  --icon: 18px;
  height: var(--icon);
  width: 0px;
  min-width: var(--icon);
  min-height: var(--icon);
  display: inline-flex;
  vertical-align: middle;
  margin-inline-start: var(--icon-ms, 0);
  margin-inline-end: var(--icon-me, 0);
  rotate: calc(var(--icon-rotate, 0deg) * var(--direction-num, 1));
  transform: translate(-100%, -50%) !important;
  background: var(--icon-color);
  mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  margin-block: var(--icon-mt, 0) var(--icon-mb, 0);
  transition: all var(--transition);
  opacity: 0;
}

.mapna_btn:hover {
  color: var(--secondar-50) !important;
  background: var(--secondar-50) !important;
  border-color: var(--secondar-50) !important;
  z-index: 0;
}

.mapna_btn:hover::before {
  width: 1.5rem;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 1;
}

.mapna_btn:hover .ezIcon {
  opacity: 0;
}

.mapna_btn .ezIcon {
  --icon-url: url(../assets/icons/download.svg);
  --icon: 18px;
  background: #fff;
  z-index: -1;
}

/*--------------------------- Mapna Basic End ----------------------------*/

/*--------------------------- Inner Banner Start ----------------------------*/

.main_title {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logo__Title .title {
  color: var(--Gray-30);
}

.main_title h1 {
  font-size: 42px;
  font-weight: 700;
}

.inner_Banner {
  margin-bottom: 56px;
}

/*--------------------------- Inner Banner End ----------------------------*/

/*--------------------------- Contact Start ----------------------------*/

.main_title_Contact h1 {
  font-size: 60px;
  font-weight: 700;
}

body.rtl .main_title_Contact h1 {
  font-size: 42px;
}

.main_title_Contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.main_title_Contact p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2rem;
  width: 50%;
}

@media (max-width: 992px) {
  .main_title_Contact h1 {
    font-size: 38px !important;
    line-height: normal !important;
  }
  .main_title_Contact p {
    width: 100%;
  }
}

.contact_Info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 46px;
  padding-inline-end: 24px;
}

.contact_Info_box {
  display: flex;
  gap: 8px;
  position: relative;
  align-items: start;
}

.contact_Info_header {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-20);
}

.conact_Info_detail {
  font-size: 16px;
  font-weight: 500;
  color: var(--Gray-50);
}

body.rtl .conact_Info_detail {
  line-height: 30px;
}

.contact_Info_box .ezIcon {
  background-color: var(--secondar-30);
  /* --icon-url: url(/portals/_default/skins/ez-skin/assets/icons/location.svg); */
  width: 32px;
  height: 32px;
}

.contact_Info_text a {
  transition: var(--transition);
  direction: ltr;
}

@media (max-width: 992px) {
  .contact_us_form {
    margin-top: -100px !important;
    margin-bottom: 80px;
    padding: 80px 24px !important;
    margin-inline: -24px;
  }

  body:not(.personabar-visible) .LiveForm.Default ul.page-break-section,
  body:not(.personabar-visible) .LiveForm.Default .thank-you {
    gap: 28px;
  }

  .contact_Info {
    padding: 12px !important;
  }

  .conact_Info_detail {
    font-size: 14px;
  }

  .contact_social a:first-child::before {
    width: 40px !important;
    right: 54px !important;
    top: 20px;
  }

  body.rtl .contact_social a:first-child::before {
    right: unset !important;
    left: 54px !important;
  }

  .contact_social a:last-child::before {
    width: 40px !important;
    left: 54px !important;
    top: 20px;
  }

  body.rtl .contact_social a:last-child::before {
    left: unset !important;
    right: 54px !important;
  }

  .contact_Info_text {
    gap: 6px !important;
  }
}

.contact_Info_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact_Info_box::before {
  content: "";
  width: 32px;
  height: 32px;
  background-color: var(--secondar-99);
  position: absolute;
  left: -6px;
  top: -10px;
  z-index: -1;
}

body.rtl .contact_Info_box::before {
  left: unset;
  right: -6px;
}

.contact_Info_box img {
  vertical-align: middle;
  position: relative;
}

.contact_us_form {
  background-color: var(--Gray-99);
  padding: 56px 48px 56px;
  margin-top: -196px;
  z-index: 1;
  position: relative;
}

.contact_us_form .title {
  font-size: 36px;
  font-weight: 600;
  color: var(--Gray-30);
  margin-bottom: 42px;
  position: relative;
  line-height: 40px;
}

body.rtl .contact_us_form .title {
  font-weight: 700;
}

.contact_us_form .title::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-50);
  position: absolute;
  top: -16px;
}

.contact_social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-block: 104px;
}

.contact_social_item {
  border-radius: 50%;
  border: 1px solid var(--secondar-20);
  padding: 10px;
  transition: 0.3s;
}

.contact_social_item img {
  width: 20px;
  height: 20px;
  mix-blend-mode: darken;
}

.contact_social_item:hover {
  background-color: var(--secondar-99);
}

.contact_social a {
  position: relative;
}

.contact_social a:first-child::before {
  content: "";
  height: 1px;
  background: linear-gradient(-90deg, #7a7a7a 0%, rgba(0, 70, 63, 0) 100%);
  position: absolute;
  width: 450px;
  right: 80px;
  top: 20px;
}

body.rtl .contact_social a:first-child::before {
  right: unset;
  left: 80px;
  background: linear-gradient(90deg, #7a7a7a 0%, rgba(0, 70, 63, 0) 100%);
}

.contact_social a:last-child::before {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, #7a7a7a 0%, rgba(0, 70, 63, 0) 100%);
  position: absolute;
  width: 450px;
  left: 80px;
  top: 20px;
}

body.rtl .contact_social a:last-child::before {
  left: unset;
  right: 80px;
  background: linear-gradient(-90deg, #7a7a7a 0%, rgba(0, 70, 63, 0) 100%);
}

.contact_map {
  background-image: url(../assets/images/contactbg.png);
  height: 450px;
  display: flex;
  flex-direction: column;
  gap: 74px;
  justify-content: center;
  align-items: center;
  margin-bottom: 358px;
}

.contact_map iframe {
  width: 1000px;
  height: 548px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  margin-bottom: -200px;
}

@media (max-width: 992px) {
  .contact_map iframe {
    width: 360px !important;
    margin-inline: 16px !important;
    height: 240px !important;
  }

  .contact_map_main {
    width: 100% !important;
    margin-inline: 16px !important;
  }

  .contact_map {
    justify-content: start;
    height: 340px;
    margin-bottom: 160px !important;
  }
}

.contact_map_title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--Gray-30);
  position: relative;
  margin-top: 74px;
}

body.rtl .contact_map_title {
  font-weight: 700;
}

.contact_map_title::before {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  top: -12px;
  background-color: var(--secondar-20);
  left: calc(50% - 20px);
}

.contact_map_main {
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  ul.page-break-section,
body:not(.personabar-visible) .LiveForm.Default .thank-you {
  grid-template-columns: repeat(var(--form-grid-col, 1), 1fr) !important;
  display: flex;
  flex-direction: column;
}

.contact_us_form
  body:not(.personabar-visible)
  .LiveForm.Default
  .Field
  > label {
  position: static !important;
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field
  label[class*="Field-Label-"],
body:not(.personabar-visible) .contact_us_form .LiveForm.Default .Field > label,
body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field
  .MatrixWrapper
  > label {
  position: relative !important;
  transform: unset !important;
  color: var(--Gray-20) !important;
  font-size: 14px !important;
  transform: translateX(-8px) !important;
}

body:not(.personabar-visible) .contact_us_form .LiveForm.Default .Field input,
body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field
  .nice-select {
  height: 40px !important;
  margin-top: 10px;
  background-color: transparent !important;
  border-bottom: 1px solid var(--Gray-50) !important;
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field.Required
  > label::before {
  position: absolute;
  right: -16px;
  color: var(--secondar-50) !important;
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field:is(.active, :has(.plupload_filelist li))
  > label {
  top: 0 !important;
  color: var(--Gray-20) !important;
  box-shadow: none !important;
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field
  input:hover,
body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field
  .nice-select:hover,
body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  ul.page-break-section
  .Fileupload
  .Field-Container-Wide:hover {
  box-shadow: none !important;
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  :is(input:not([type="submit"], [type="file"]), textarea) {
  margin-top: 10px;
  background-color: transparent !important;
  border: none;
}

body#Body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  input[type="submit"],
body#Body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  input[type="button"] {
  border-radius: 24px !important;
  background-color: var(--secondar-50) !important;
  width: unset !important;
  font-size: 12px;
}

body:not(.personabar-visible) .contact_us_form .LiveForm.Default .Field input,
body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field
  .nice-select {
  margin-inline: unset !important;
}

body:not(.personabar-visible) .LiveForm.Default input:focus,
body:not(.personabar-visible) .LiveForm.Default textarea:focus {
  box-shadow: none !important;
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field.active
  input,
body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  .Field.active
  .nice-select {
  border-color: var(--secondar-50) !important;
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  :is(input:not([type="submit"], [type="file"]), textarea) {
    border: none !important;
    resize: none !important;
  border-bottom: 1px solid var(--Gray-30) !important;
  max-height: 48px;
}

body:not(.personabar-visible)
  .LiveForm.Default
  :is(input:not([type="submit"], [type="file"]), textarea)::placeholder {
  color: var(--Gray-60) !important;
  transform: translateX(-6px) !important;
  transition: 0.3s;
}

body:not(.personabar-visible)
  .LiveForm.Default
  :is(input:not([type="submit"], [type="file"]), textarea):focus::placeholder {
  opacity: 0;
}

body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  :is(input:not([type="submit"], [type="file"]), textarea) {
  padding-block: 20px 10px !important;
}

/* body:not(.personabar-visible) .contact_us_form .LiveForm.Default textarea::placeholder{
  transform: translateY(-60px) !important;
} */

body:not(.personabar-visible) .contact_us_form .LiveForm.Default input:focus,
body:not(.personabar-visible)
  .contact_us_form
  .LiveForm.Default
  textarea:focus {
  border-color: var(--secondar-40) !important;
}

body:not(.personabar-visible) .contact_us_form img.captcha-simple {
  top: 24%;
}

@media (max-width: 992px) {
  body#Body:not(.personabar-visible)
    .contact_us_form
    .LiveForm.Default
    input[type="submit"],
  body#Body:not(.personabar-visible)
    .contact_us_form
    .LiveForm.Default
    input[type="button"] {
    padding: 10px 30px !important;
    width: unset !important;
    font-size: 12px !important;
  }
}

/*--------------------------- Contact End ----------------------------*/

/*--------------------------- Careers Start ----------------------------*/

.careers_top_text p {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.careers_top_text {
  margin-bottom: 72px;
}

.job__List_title {
  margin-top: 48px;
  color: var(--primary-40);
}

.job__List {
  display: grid;
  grid-template-columns: repeat(var(--col, 2), 1fr);
  gap: 1.5rem;

}

.job__Item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.job__Item_Content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: auto;
}

.job__Item_Title {
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  color: var(--Gray-30);
}

body.rtl .job__Item_Title {
  font-weight: 700;
}

.job__Item_Sex {
  font-size: 14px;
  font-weight: 500;
  color: var(--Gray-30);
}

.job__Item_Wrapper {
  border-left: 4px solid var(--secondar-30);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 16px 16px 16px 32px;
  transition: 0.3s;
  background-color: #fff;
}

.job__Item_Wrapper.job__Expired {
  opacity: 0.6;
  filter: saturate(0);
}

.job__Item_Wrapper:not(.job__Expired):hover {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px,
    rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
    rgba(0, 0, 0, 0.07) 0px 16px 16px;
  border-top: 1px solid var(--secondar-20);
  border-right: 1px solid var(--secondar-20);
  border-bottom: 1px solid var(--secondar-20);
}

.job__Item_Link {
  padding: 8px 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--secondar-50);
  color: #fff;
  transition: var(--transition);
}

.job__Item:not(.job__Expired):hover .job__Item_Link {
  background: var(--secondar-30) !important;
  color: #fff !important;
}

.job__Item:not(.job__Expired):hover .job__Item_Link .ezIcon {
  --icon-color: #fff;
}

.job__Item_Sex,
.job__Item_Cat {
  display: flex;
  align-items: center;
}

.job__Item_Sex p {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.job__Item_Cat p {
  display: flex;
  align-items: center;
  gap: 28px;
}

.careers_top_text {
  position: relative;
}

.careers_list_header .title {
  font-size: 30px;
  font-weight: 700;
  color: var(--Gray-30);
  margin-bottom: 42px;
  position: relative;
  line-height: 40px;
}

.careers_list_header .title::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-50);
  position: absolute;
  top: -16px;
}

@media (max-width: 992px) {
  .job__List_title {
    text-align: start !important;
    margin-top: 40px;
    margin-bottom: 2rem;
  }

  .job_Cat_List {
    display: block !important;
    margin-bottom: 2rem;
  }

  .job_Cat_List .slick-list {
    padding-inline-end: 12rem;
    margin-inline: -1rem;
  }

  .job_Cat_Item {
    margin-inline: 1rem;
  }

  .job__List {
    --col: 1;
    gap: 1rem;
  }

  .job__Item {
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 24px;
  }

  .job__Item_Link {
    align-self: start;
  }


  .job__Item_Title {
    margin-bottom: 8px;
  }

  .job__List {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  body:not(.personabar-visible)
    .job__Form_Wrapper
    .LiveForm.Default
    ul.page-break-section,
  body:not(.personabar-visible)
    .job__Form_Wrapper
    .LiveForm.Default
    .thank-you {
    margin-top: 40px !important;
    padding: 40px 20px !important;
  }
}

.careers_form_wrapper {
  background-color: #fff;
  padding: 30px 56px 48px;
  margin-bottom: 104px;
}

.form__Header {
  display: flex;
  gap: 8px;
  margin-bottom: 46px;
}

.form__Header p {
  font-size: 14px;
  font-weight: 500;
  color: var(--Gray-40);
}

.form__Header span {
  font-size: 14px;
  font-weight: 500;
  color: var(--Gray-60);
}

/* body:not(.personabar-visible) .careers_form_wrapper .LiveForm.Default ul.page-break-section,
body:not(.personabar-visible) .careers_form_wrapper .LiveForm.Default .thank-you {
  grid-template-columns: repeat(var(--form-grid-col, 1), 1fr) !important;
} */

.careers_form_wrapper
  body:not(.personabar-visible)
  .LiveForm.Default
  .Field
  > label {
  position: static !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  label[class*="Field-Label-"],
body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  > label,
body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  .MatrixWrapper
  > label {
  position: relative !important;
  transform: translateX(-8px) !important;
  color: var(--Gray-20) !important;
  font-size: 14px !important;
  top: 0 !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  input,
body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  .nice-select {
  height: 40px !important;
  margin-top: 10px;
  background-color: transparent !important;
  border-bottom: 1px solid var(--Gray-50) !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field.Required
  > label::before {
  position: absolute;
  right: -16px;
  color: var(--secondar-50) !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field:is(.active, :has(.plupload_filelist li))
  > label {
  top: 0 !important;
  color: var(--Gray-20) !important;
  box-shadow: none !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  input:hover,
body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  .nice-select:hover,
body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  ul.page-break-section
  .Fileupload
  .Field-Container-Wide:hover {
  box-shadow: none !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  :is(input:not([type="submit"], [type="file"]), textarea) {
  margin-top: 10px;
  background-color: transparent !important;
  border: none;
}

body#Body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  input[type="submit"],
body#Body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  input[type="button"] {
  border-radius: 24px !important;
  background-color: var(--secondar-50) !important;
  width: 36% !important;
  padding: 12px 0 !important;
  width: 100% !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  input,
body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field
  .nice-select {
  margin-inline: unset !important;
}

@media (max-width: 992px) {
  body#Body:not(.personabar-visible)
    .careers_form_wrapper
    .LiveForm.Default
    input[type="submit"],
  body#Body:not(.personabar-visible)
    .careers_form_wrapper
    .LiveForm.Default
    input[type="button"] {
    padding: 12px 24px !important;
    width: unset !important;
  }

  body#Body.rtl:not(.personabar-visible)
    .careers_form_wrapper
    .LiveForm.Default
    input[type="submit"],
  body#Body.rtl:not(.personabar-visible)
    .careers_form_wrapper
    .LiveForm.Default
    input[type="button"] {
    padding: 16px 24px !important;
    font-size: 16px !important;
  }

  .form__Header {
    padding-block: 24px 42px;
    padding-inline: 24px 24px;
    margin-bottom: 0 !important;
  }

  .careers_form_wrapper {
    padding: 0 !important;
  }

  body:not(.personabar-visible)
    .careers_form_wrapper
    .LiveForm.Default
    ul.page-break-section,
  body:not(.personabar-visible)
    .careers_form_wrapper
    .LiveForm.Default
    .thank-you {
    margin-top: 0 !important;
    display: flex;
  }

  body#Body:not(.personabar-visible)
    .careers_form_wrapper
    .LiveForm.Default
    input[type="submit"],
  body#Body:not(.personabar-visible)
    .careers_form_wrapper
    .LiveForm.Default
    input[type="button"] {
    width: 100% !important;
  }
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .plupload_button {
  display: none !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  ul.page-break-section
  .Fileupload
  .Field-Container-Wide
  .moxie-shim.moxie-shim-html5 {
  background-color: var(--secondar-40) !important;
}

.pDatePicker::before {
  content: "";
  display: block;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(calc(-50% + 0.25rem));
  z-index: 1;
  --icon: 20px;
  --icon-url: url(/Portals/_default/skins/ez-skin/assets/icons/calendarg.svg);
  height: var(--icon);
  width: var(--icon);
  min-width: var(--icon);
  min-height: var(--icon);
  display: inline-flex;
  vertical-align: middle;
  background: var(--secondar-60);
  mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  -webkit-mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  margin-inline-start: var(--icon-ms, 0);
  margin-inline-end: var(--icon-me, 0);
  margin-block: var(--icon-mt, 0) var(--icon-mb, 0);
  transition: all var(--transition);
  -webkit-transition: all var(--transition);
  rotate: calc(var(--icon-rotate, 0deg) * var(--direction-num, 1));
  pointer-events: none;
}

body.rtl .pDatePicker::before {
  right: unset;
  left: 0.5rem;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  ul.page-break-section
  .Fileupload
  .Field-Container-Wide {
  border-bottom: 1px solid var(--Gray-50) !important;
  height: 40px !important;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  ul.page-break-section
  .Field {
  justify-content: center !important;
}
body:not(.personabar-visible) .careers_form_wrapper .LiveForm.Default ul.page-break-section .dropdown{
  z-index: 1;
}

body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field.active
  input,
body:not(.personabar-visible)
  .careers_form_wrapper
  .LiveForm.Default
  .Field.active
  .nice-select {
  border-color: var(--secondar-50) !important;
}

/*--------------------------- Careers End ----------------------------*/

/*--------------------------- Projects Start ----------------------------*/

.sample_top_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 140px;
  padding-bottom: 52px;
}

.sample_top_text .title {
  font-size: 60px;
  font-weight: 600;
  color: var(--Gray-30);
  position: relative;
  line-height: normal;
}

.sample_top_text .title::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-50);
  position: absolute;
  top: -6px;
}

.sample_top_text p {
  font-size: 16px;
  line-height: 28px;
  color: var(--Gray-50);
  text-align: justify;
}

body.rtl .sample_top_text p {
  line-height: 32px;
}

.projects_list {
  display: grid;
  grid-template-columns: repeat(var(--col, 2), 1fr);
  column-gap: 70px;
  row-gap: 56px;
  margin-top: 56px;
  border-top: 1px solid #d1d1d1;
  padding-top: 56px;
  align-items: center;
  margin-bottom: 70px;
}

.projects_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.projects_location {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondar-00);
  position: relative;
  padding-inline-start: 56px;
}

body.rtl .projects_location {
  letter-spacing: 0;
}

.projects_location::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--secondar-50);
  left: 0;
  top: 50%;
}

body.rtl .projects_location::before {
  left: unset;
  right: 0;
}

.projects_title h2 {
  font-size: 27px;
  font-weight: 600;
  color: var(--Gray-30);
}

body.rtl .projects_title h2 {
  font-weight: 700;
}

.projects_summary {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--Gray-60);
}

.projects_btn {
  color: var(--secondar-40) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 24px;
  border: 1px solid var(--secondar-40);
  width: 146px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  padding-block: 12px;
  position: relative;
}

body.rtl .projects_btn {
  letter-spacing: 0;
}

.projects_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  --icon-url: url(../assets/icons/chevUp.svg);
  --icon-color: #fff;
  --icon: 18px;
  height: var(--icon);
  width: 0px;
  min-width: var(--icon);
  min-height: var(--icon);
  display: inline-flex;
  vertical-align: middle;
  margin-inline-start: var(--icon-ms, 0);
  margin-inline-end: var(--icon-me, 0);
  rotate: calc(var(--icon-rotate, 0deg) * var(--direction-num, 1));
  transform: translate(-100%, -50%) !important;
  background: var(--icon-color);
  mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  margin-block: var(--icon-mt, 0) var(--icon-mb, 0);
  transition: all var(--transition);
  opacity: 0;
}

body.rtl .projects_btn::before {
  rotate: 180deg;
  left: unset;
  right: 0;
  transform: translate(100%, 50%) !important;
}

.projects_btn:hover {
  color: var(--secondar-50) !important;
  background: var(--secondar-50) !important;
  border-color: var(--secondar-50) !important;
  z-index: 0;
}

.projects_btn:hover::before {
  width: 1.5rem;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 1;
}

body.rtl .projects_btn:hover::before {
  left: unset;
  right: 50%;
  transform: translate(-50%, 50%) !important;
}

.projects_image {
  object-fit: cover;
  overflow: hidden;
}

.projects_image img {
  width: 100%;
  height: 369px;
  object-fit: cover;
  transition: 3s !important;
  transform: unset !important;
}

.projects_image img:hover {
  transform: scale(1.1) !important;
}

@media (max-width: 992px) {
  .sample_top_text .title {
    font-size: 42px;
    padding-bottom: 0;
  }

  .sample_top_text .title::before {
    top: -12px;
  }

  .sample_top_text {
  }

  .projects_list {
    grid-template-columns: repeat(var(--col, 1), 1fr);
    margin-top: 0;
  }

  .projects_image img {
    height: 218px;
  }
}

/*--------------------------- Projects End ----------------------------*/

/*--------------------------- Projects Inner Start ----------------------------*/

.projects_top_text {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  padding-bottom: 24px;
}

.projects_top_text .title {
  font-size: 42px;
  font-weight: 600;
  color: var(--gray-30);
  position: relative;
  line-height: normal;
}

body.rtl .projects_top_text .title {
  font-weight: 700;
}

.projects_top_text .title::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-50);
  position: absolute;
  top: -32px;
}

.projects_top_text p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: var(--Gray-50);
}

.projects_date_share {
  display: flex;
  gap: 50px;
  align-items: center;
}

.projects_datepane {
  font-size: 14px;
  font-weight: 500;
  color: var(--Gray-40);
}

.projects_socialpane {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.projects_social_item {
  border-radius: 50%;
  border: 1px solid var(--secondar-30);
  padding: 10px;
  transition: 0.3s;
}

.projects_social_item img {
  width: 12px;
  height: 12px;
}

.projects_social_item:hover {
  background-color: var(--secondar-99);
}

.projects_inner_body {
  padding: 44px 0;
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-inline: auto;
}

.projects_inner_body h2,
.projects_inner_body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--Gray-30);
  line-height: 36px;
}

.projects_inner_body p {
  font-size: 16px;
  line-height: 2rem;
  font-weight: 400;
  color: var(--Gray-40);
}

.projects_inner_body ul {
  font-size: 16px;
  line-height: 2rem;
  font-weight: 400;
  color: var(--Gray-40);
}

.projects_inner_body li {
  position: relative;
  padding-inline-start: 16px;
}

.projects_inner_body li::before {
  content: "*";
  color: var(--Gray-30);
  left: 0;
  position: absolute;
  transform: translateY(5px);
}

body.rtl .projects_inner_body li::before {
  left: unset;
  right: 0;
}

.projects_inner_body p:has(img) {
  margin-inline: auto;
}

.projects_inner_body img {
  margin-inline: auto;
}

.projects_inner_related {
  border-top: 1px solid #d1d1d1;
  padding: 48px 0 88px;
}

.projects_inner_related_header {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondar-00);
  margin-bottom: 32px;
}

.projects_inner_related_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s;
}

.projects_inner_related_card .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--Gray-30);
}

.relateditemlist {
  display: flex;
  gap: 40px;
}

@media (max-width: 992px) {
  .projects_top_text {
    gap: 0;
    padding-bottom: 1.25rem;
  }

  .projects_top_text .title {
    font-size: 30px;
    padding-bottom: 0;
  }

  .projects_top_text p {
    font-size: 18px;
  }

  .projects_date_share {
    justify-content: space-between;
    gap: 32px;
    align-items: center;
  }

  .projects_Img img {
    margin-top: 2rem !important;
  }

  .relateditemlist {
    display: block;
  }

  .relateditemlist .slick-list {
    padding-inline-end: 3rem;
    margin-inline: -0.75rem;
  }

  .projects_inner_related_card {
    margin-inline: 0.75rem;
  }

  .projects_inner_related_card img {
    margin-bottom: 10px;
  }

  .projects_inner_body img {
    height: auto !important;
  }
}

/*--------------------------- Leadership Start ----------------------------*/

.sample_border {
  padding-block: 76px;
  border-bottom: 1px solid #d1d1d1;
  border-top: 1px solid #d1d1d1;
}

.leaders_cat {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.leaders_cat_item {
  font-size: 14px;
  font-weight: 400;
  color: var(--Gray-60);
  transition: 0.3s;
}

.leaders_cat_item:hover {
  color: var(--Gray-40);
}

.leaders_cat_item.active {
  color: var(--secondar-50);
  position: relative;
}

.leaders_cat_item.active::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--secondar-50);
  position: absolute;
  right: 50%;
  top: calc(50% + 18px);
  border-radius: 50%;
}

/* .leaders_wrapper {
  display: grid;
  grid-template-columns: repeat(var(--col, 4), 1fr);
  column-gap: 62px;
  row-gap: 56px;
  padding-top: 90px;
  padding-bottom: 104px;
} */

.leaders_wrapper .slick-slide{
	margin-inline: 10px;	
}

.leaders_card {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.leaders_card_Img img {
  border-radius: 50%;
}

.leaders_card_Content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.leaders_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondar-70);
  transition: 0.3s;
}

.leaders_title:hover {
  color: var(--secondar-50);
}

.leaders_summary {
  font-size: 14px;
  font-weight: 400;
  color: var(--Gray-60);
  text-align: center !important;
  height: 50px;
}

@media (max-width: 992px) {
  .leaders_wrapper {
    grid-template-columns: repeat(var(--col, 1), 1fr);
    justify-items: center;
  }

  .leaders_summary {
    padding-inline: 42px;
  }
}

/*--------------------------- Leadership End ----------------------------*/

/*--------------------------- Reports Start ----------------------------*/

.reports_top {
  display: flex;
  justify-content: space-between;
}

.reports_top_left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 80px;
}

.reports_top_mini {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondar-00);
  position: relative;
}

.reports_top_mini::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-50);
  position: absolute;
  top: -8px;
}

.reports_top_left h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--Gray-30);
  margin-top: 8px;
}

body.rtl .reports_top_left h2 {
  font-weight: 700;
}

.reports_top_date {
  font-size: 14px;
  font-weight: 500;
  color: var(--Gray-60);
  margin-bottom: 8px;
}

.reports_datepick {
  border-bottom: 1px solid #d1d1d1;
  border-top: 1px solid #d1d1d1;
  padding-block: 32px;
  margin-top: 40px;
  margin-bottom: 72px;
}

.reports_list {
  display: grid;
  grid-template-columns: repeat(var(--col, 2), 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.reports_container {
  padding: 24px 40px 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: var(--Gray-99);
}

.reports_container h2 {
  font-size: 20px;
  line-height: 2rem;
  font-weight: 600;
  color: var(--Gray-20);
}

body.rtl .reports_container h2 {
  font-weight: 600;
}

.reports_summary {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: var(--Gray-50);
}

.reports_files {
  display: inline;
  align-self: end;
}

.reports_files a {
  padding: 12px 36px;
  justify-self: end;
}

/* 
.report_Cat_List{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  height: 0;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
}

.report_Cat_List a{
  color: var(--Gray-40);
  font-size: 12px;
  transition: 0.3s;
}

.report_Cat_List a:hover{
  color: var(--secondar-40);
}

.report_Cats.active .report_Cat_List{
  height: 100px;
  opacity: 1;
}

.report_Cats.active .report_Cat_Ttl::before{
  transform: rotate(-90deg);
}

.report_Cats.active{
  height: 170px;
}

.report_Cats{
  padding: 15px 24px;
  border: 1px solid var(--Gray-80);
  border-radius: 24px;
  width: 144px;
  position: relative;
  background-color: #FFF;
  transition: 0.3s;
  height: 54px;
}

.report_Cat_Ttl{
  font-size: 12px;
  color: var(--secondar-40);
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

.report_Cat_Ttl::before{
  content: "";
  position: absolute;
  background-image: url(../assets/icons/chevUp.svg);
  width: 20px;
  height: 20px;
  right: 0;
  transform: rotate(90deg);
  transition: 0.3s;
} */

@media (max-width: 992px) {
  .reports_top {
    flex-direction: column-reverse;
    margin-bottom: 80px;
  }

  .report_Cats {
    width: 100% !important;
  }

  .reports_list {
    grid-template-columns: repeat(var(--col, 1), 1fr);
  }
}

.report_Cats {
  padding: 15px 24px;
  border: 1px solid var(--Gray-80);
  border-radius: 24px;
  width: 200px;
  position: relative;
  cursor: pointer;
}

.report_Cat_Ttl {
  font-size: 12px;
  color: var(--secondar-40);
  font-weight: 500;
  position: relative;
}

.report_Cat_Ttl::before {
  content: "";
  position: absolute;
  background-image: url(../assets/icons/chevUp.svg);
  width: 20px;
  height: 20px;
  right: 0;
  transform: rotate(90deg);
  transition: 0.3s;
}

body.rtl .report_Cat_Ttl::before {
  right: unset;
  left: 0;
}

.report_cats.active .report_Cat_Ttl::before {
  transform: rotate(-90deg);
  top: 2px;
  right: 2px;
}

body.rtl .report_cats.active .report_Cat_Ttl::before {
  right: unset;
  left: 2px;
}

.report_Cat_List a {
  color: var(--Gray-40);
  font-size: 12px;
  transition: 0.3s;
}

.report_Cat_List a:hover {
  color: var(--secondar-40);
}

.report_Cat_List {
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
  padding-top: 0;
  margin-top: 8px;
  position: absolute;
  left: 0;
  top: 100%;
  /* box-shadow: 0px 4px 10px 0px #2b2b2b26; */
  border: 1px solid var(--Gray-80);
  background: #fff;
  border-radius: 1rem;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
  opacity: 0;
}

.report_Cats.active .report_Cat_List {
  opacity: 1;
  z-index: 1;
}

a.report_Cat_Item {
  padding: 0.75rem 1rem;
  /* border-bottom: 1px solid gray; */
  /* height: 0; */
}

a.report_Cat_Item:not(:last-child) {
  border-bottom: 1px solid var(--Gray-90);
}

/* .repors_download_btn {
  max-height: 48px;
  width: fit-content;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 18px !important;
  overflow: hidden;
  transition: var(--transition);
  padding: 18px 2rem !important;
  border-radius: 24px !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: rgb(255, 255, 255) !important;
  border-image: initial !important;
}

.repors_download_btn:hover {
  color: var(--secondar-40) !important;
  background: var(--secondar-40) !important;
  border-color: var(--secondar-40) !important;
}
.repors_download_btn::before {
  width: 1.5rem;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.repors_download_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  --icon-url: url(../assets/icons/chevUp.svg);
  --icon-color: #fff;
  --icon: 1.5rem;
  height: var(--icon);
  width: 0px;
  min-width: var(--icon);
  min-height: var(--icon);
  display: inline-flex;
  vertical-align: middle;
  margin-inline-start: var(--icon-ms, 0);
  margin-inline-end: var(--icon-me, 0);
  rotate: calc(var(--icon-rotate, 0deg) * var(--direction-num, 1));
  transform: translate(-100%, -50%) !important;
  background: var(--icon-color);
  mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  margin-block: var(--icon-mt, 0) var(--icon-mb, 0);
  transition: all var(--transition);
} */

.repors_download_btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff !important;
  text-transform: uppercase;
  background-color: var(--secondar-50);
  padding: 10px 0px;
  text-align: center;
  width: 168px;
  border-radius: 24px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.repors_download_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  --icon-url: url(../assets/icons/download.svg);
  --icon-color: #fff;
  --icon: 1.5rem;
  height: var(--icon);
  width: 0px;
  min-width: var(--icon);
  min-height: var(--icon);
  display: inline-flex;
  vertical-align: middle;
  margin-inline-start: var(--icon-ms, 0);
  margin-inline-end: var(--icon-me, 0);
  rotate: calc(var(--icon-rotate, 0deg) * var(--direction-num, 1));
  transform: translate(-100%, -50%) !important;
  background: var(--icon-color);
  mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  margin-block: var(--icon-mt, 0) var(--icon-mb, 0);
  transition: all var(--transition);
  opacity: 0;
}

body.rtl .repors_download_btn::before {
  left: unset;
  right: 0;
  transform: translate(100%, -50%) !important;
}

.repors_download_btn:hover {
  color: var(--secondar-50) !important;
  background: var(--secondar-50) !important;
  border-color: var(--secondar-50) !important;
  z-index: 0;
}

.repors_download_btn:hover::before {
  width: 1.5rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 1;
}

body.rtl .repors_download_btn:hover::before {
  left: unset;
  right: 50%;
  transform: translate(50%, -50%) !important;
}

.repors_download_btn:hover .ezIcon {
  opacity: 0 !important;
}

.repors_download_btn .ezIcon {
  --icon-url: url(../assets/icons/download.svg);
  --icon: 24px;
  background: #fff;
  z-index: -1;
}

/* .reports_news_module .PagingTable{
  display: flex;
  justify-content: center;
}

.reports_news_module .PagingTable td:first-child{
  display: none;
}

.reports_news_module .PagingTable a,.reports_news_module .PagingTable span{
  box-shadow: none;
  border-radius: 25px;
  padding-inline: 12px;
  transition: 0.3s;
}

.reports_news_module .PagingTable a:hover{
  background-color: var(--secondar-95);
  color: unset !important;
}

.reports_news_module .PagingTable a:nth-last-child(-n+2):hover,
.reports_news_module .PagingTable a:nth-child(-n+2):hover
{
  background-color: #FFF;
}

.reports_news_module .PagingTable span.active{
  background-color: var(--secondar-50);
  color: #FFF;
}
 */

/*--------------------------- Reports End ----------------------------*/

/*--------------------------- Awards Start ----------------------------*/

@media (max-width: 992px) {
  .awards_godspot h1 {
    font-size: 32px !important;
  }

  .awards_godspot > p {
    font-size: 14px !important;
  }

  .awards_big_header {
    font-size: 18px !important;
    padding-inline: 0 !important;
  }

  .awards_main_header {
    gap: 24px !important;
  }

  .award_slider_item {
    margin-right: 12px !important;
  }

  .awards_slider_header_right {
    width: 48px !important;
  }

  .awards_slider_header .slick-arrow.slick-prev {
    translate: calc(+50% * var(--direction-num));
  }

  .awards_slider_header .slick-arrow.slick-next {
    translate: calc(-50% * var(--direction-num));
  }

  .awards_slider_header .slick-arrow {
    box-shadow: none !important;
  }
}

.awards_godspot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.awards_godspot h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  color: #fff;
}

body.rtl .awards_godspot h1 {
  font-weight: 700;
}

.awards_godspot > p {
  color: #fff;
  font-size: 16px;
  text-align: center !important;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

.explore_btn {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.explore_btn p {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.explore_btn img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  transition: 0.3s;
}

.explore_btn img:hover {
  transform: scale(1.1);
}

.awards_toptext {
  color: var(--Gray-40);
  font-weight: 400;
  line-height: 32px;
  font-size: 16px;
  margin-bottom: 72px;

}

.awards_main_header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.awards_mini_header {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondar-00);
  position: relative;
}

.awards_mini_header::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-50);
  position: absolute;
  top: -8px;
  right: 50%;
  transform: translateX(50%);
}

.awards_big_header {
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  color: var(--Gray-30);
  padding-inline: 200px;
  text-align: center;
  text-transform: uppercase;
}

body.rtl .awards_big_header {
  font-weight: 700;
}

.award_slider_item {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  margin-right: 24px;
}

/* .awards_slider_wrapper .slick-track{
  margin-left: 108px;
} */
.award_slider_title {
  font-size: 14px;
  font-weight: 400;
  color: var(--Gray-40);
}

.award_slider_btn {
  color: var(--secondar-40) !important;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  /* padding: 13px; */
  display: flex;
  gap: 4px;
  align-items: center;
}

.award_slider_btn .ezIcon {
  --icon-url: url(../assets/icons/chevUp.svg);
  background: var(--secondar-40);
  --icon: 16px;
}

body.rtl .award_slider_btn .ezIcon {
  rotate: 180deg;
}

.awards_slider_header {
  display: flex;
  justify-content: space-between;
  padding-block: 36px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e4e4e4;
}

@media (max-width: 992px) {
  .awards_slider .slick-list {
    padding-right: 4rem;
  }
}

.awards_slider_header_right {
  position: relative;
  display: flex;
  gap: 16px;
  width: 70px;
  margin-right: 25px;
}

.awards_slider_header_right .slick-arrow {
  border: 1px solid var(--Gray-80) !important;
  border-radius: 50% !important;
}

.awards_slider_header_right .slick-arrow:hover {
  background-color: var(--secondar-40) !important;
}

.awards_slider_header_left {
  font-size: 14px;
  font-weight: 600;
  color: var(--Gray-40);
}

.awards_bottom_btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--secondar-40) !important;
  text-transform: uppercase;
  border: 1px solid var(--Gray-80);
  padding: 10px 0px;
  text-align: center;
  width: 168px;
  border-radius: 24px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

body.rtl .awards_bottom_btn {
  letter-spacing: 0;
}

.awards_bottom_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  --icon-url: url(../assets/icons/chevUp.svg);
  --icon-color: #fff;
  --icon: 18px;
  height: var(--icon);
  width: 0px;
  min-width: var(--icon);
  min-height: var(--icon);
  display: inline-flex;
  vertical-align: middle;
  margin-inline-start: var(--icon-ms, 0);
  margin-inline-end: var(--icon-me, 0);
  rotate: calc(var(--icon-rotate, 0deg) * var(--direction-num, 1));
  transform: translate(-100%, -50%) !important;
  background: var(--icon-color);
  mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  margin-block: var(--icon-mt, 0) var(--icon-mb, 0);
  transition: all var(--transition);
  opacity: 0;
}

body.rtl .awards_bottom_btn::before {
  left: unset;
  right: 0;
  transform: translate(100%, 50%) !important;
  rotate: 180deg;
}

.awards_bottom_btn:hover {
  color: var(--secondar-50) !important;
  background: var(--secondar-50) !important;
  border-color: var(--secondar-50) !important;
  z-index: 0;
}

.awards_bottom_btn:hover::before {
  width: 1.5rem;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 1;
}

body.rtl .awards_bottom_btn:hover::before {
  left: unset;
  right: 50%;
  transform: translate(-50%, 50%) !important;
}

.awards_bottom_btn:hover .ezIcon {
  opacity: 0;
}

@media (max-width: 992px) {
  .awards_bottom_Desc {
    text-align: start;
  }

  .news_LearnMore {
    border-top: none !important;
  }
}

.awards_bottom_btn .ezIcon {
  --icon-url: url(../assets/icons/chevUp.svg);
  --icon: 18px;
  background: var(--secondar-40);
  z-index: -1;
}

body.rtl .awards_bottom_btn .ezIcon {
  rotate: 180deg;
}

.awards_bottom_Desc {
  color: var(--Gray-40);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 12px;
 
}

body.rtl .awards_bottom_Desc {
  line-height: 2em;
}

/*--------------------------- Awards End ----------------------------*/

/*--------------------------- Solutions Start ----------------------------*/

.solutions_top {
  display: flex;
  gap: 130px;
  align-items: center;
  border-top: 1px solid #d1d1d1;
  padding-top: 20px;
  margin-bottom: 56px;
}

.solutions_top_left p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--Gray-50);
  text-align: justify;
}

.solutions_middle {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.solutions_middle_top p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--Gray-50);
  text-align: justify;
}

@media (max-width: 992px) {
  .solutions_top {
    flex-direction: column-reverse;
    gap: 40px;
    padding-top: 56px;
  }

  /* .solutions_middle_top p, .solutions_top_left p{
    text-align: justify;
  } */
}

/*--------------------------- Solutions End ----------------------------*/

/*--------------------------- People and Planet Start ----------------------------*/

.people_Sec_1 {
  display: flex;
  gap: 104px;
  align-items: center;
}

.people_Sec_1_Content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.people_Sec_1_Img {
  flex: 0 0 50%;
}

.people_Sec_1_Content_Ttl {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  color: var(--Gray-40);
}

body.rtl .people_Sec_1_Content_Ttl {
  font-weight: 700;
}

.people_Sec_1_Content_Ttl::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-50);
  top: -16px;
  left: 0;
  position: absolute;
}

body.rtl .people_Sec_1_Content_Ttl::before {
  left: unset;
  right: 0;
}

.people_Sec_1_Content_Txt {
  font-size: 16px;
  font-weight: 400;
  color: var(--Gray-50);
  line-height: 32px;
}

body.rtl .people_Sec_1_Content_Txt {
  line-height: 32px;
}
.people_Sec_2 {
  display: flex;
  flex-direction: column;
  gap: 76px;
  margin-top: 56px;
}

.people_Sec_2_Upper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.people_Sec_2_Upper_Ttl {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: var(--Gray-30);
}

body.rtl .people_Sec_2_Upper_Ttl {
  font-weight: 700;
}

.people_Sec_2_Upper_Txt {
  font-size: 16px;
  font-weight: 400;
  color: var(--Gray-50);
  line-height: 32px;
}

.people_Sec_2_Lower {
  display: flex;
  gap: 138px;
  align-items: center;
}

.people_Sec_2_Lower1 {
  display: flex;
  gap: 138px;
  align-items: center;
}

.people_Sec_2_Lower_Content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 50%;
}

.people_Sec_2_Lower_Ttl {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  color: var(--Gray-30);
}

body.rtl .people_Sec_2_Lower_Ttl {
  font-weight: 700;
}

.people_Sec_2_Lower_List {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.people_Sec_2_Lower_ListItem {
  display: flex;
  gap: 8px;
}

.people_Sec_2_Lower_ListItem .ezIcon {
  --icon-url: url(../assets/icons/nav.svg);
  --icon: 24px;
  background: var(--secondar-50);
}

body.rtl .people_Sec_2_Lower_ListItem .ezIcon {
  rotate: 180deg;
}

.people_Sec_2_Lower_Img img {
  width: 370px;
}

.people_Sec_2_Lower_Content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--Gray-30);
  text-align: left !important;
}

body.rtl .people_Sec_2_Lower_Content p {
  text-align: right !important;
}

.people_Sec_3 {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-block: 108px;
}

.people_Sec_3_Lower_Img {
  display: flex;
  justify-content: center;
}

.people_Sec_3_Lower_Img img {
  width: 100%;
  max-height: 100%;
height: 818px;
  object-fit: cover;
}

.people_Sec_3_Lower {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
}

.people_Sec_3_Lower_List {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.people_Sec_3_Lower_List:nth-child(2) {
  padding-right: 32px;
}

.people_Sec_3_Bottom_Txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--Gray-30);
}

.people_Sec_3_Bottom_Txt a {
  color: var(--secondar-40);
}

@media (max-width: 992px) {
  .people_Sec_3_Lower_Img img{
    height: 100%;
  }
  .people_Sec_1 {
    flex-direction: column;
    gap: 40px;
  }

  .people_Sec_1_Content_Ttl {
    font-size: 24px;
  }

  .people_Sec_2 {
    gap: 24px;
  }

  .people_Sec_2_Upper_Ttl {
    font-size: 18px;
  }

  .people_Sec_2_Lower {
    flex-direction: column;
    gap: 32px;
  }

  .people_Sec_2_Lower1 {
    flex-direction: column-reverse !important;
    gap: 32px;
  }

  .people_Sec_3_Lower {
    flex-direction: column;
    gap: 40px;
  }

  .people_Sec_3_Bottom_Txt {
    font-size: 16px;
  }

  .people_Sec_3 {
    margin-block: 82px;
  }

  .people_Sec_3_Bottom_Txt {
    line-height: 32px;
  }
}

/*--------------------------- People and Planet End ----------------------------*/

/*--------------------------- Sustainability Start ----------------------------*/

.sustain_Sec_2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 56px;
  margin-bottom: 104px;
}

.sustain_Sec_2_Upper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

.sustain_Sec_2_Upper_Ttl {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: var(--Gray-30);
}

.sustain_Sec_2_Upper_Txt {
  font-size: 16px;
  font-weight: 400;
  color: var(--Gray-50);
  line-height: 32px;
}

body.rtl .sustain_Sec_2_Upper_Txt {
  line-height: 32px;
  font-size: 16px;
}

.sustain_Sec_2_Lower {
  display: flex;
  gap: 138px;
  align-items: center;
}

.sustain_Sec_2_Lower1 {
  display: flex;
  gap: 24px;
  align-items: center;
}

.sustain_Sec_2_Lower_Content {
  display: flex;
  flex-direction: column;
  gap: 72px;
  flex: 0 0 40%;
}

.sustain_Sec_2_Lower_Img {
  flex: 0 0 60%;
}

.sustain_Sec_2_Lower_Ttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: var(--secondar-10);
}

.sustain_Sec_2_Lower_List {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* margin-top: 40px;
  margin-bottom: 32px; */
}

@media (min-width: 992px) {
  .sustain_Sec_2_Lower_List {
    margin-top: 40px;
  }
}

.sustain_Sec_2_Lower_ListItem {
  display: flex;
  gap: 8px;
}

.sustain_Sec_2_Lower_ListItem p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--Gray-30);
  text-align: left !important;
}

body.rtl .sustain_Sec_2_Lower_ListItem p {
  font-size: 16px;
}

.sustain_Sec_2_Lower_ListItem .ezIcon {
  --icon-url: url(../assets/icons/nav.svg);
  --icon: 24px;
  background: var(--secondar-50);
}

body.rtl .sustain_Sec_2_Lower_ListItem .ezIcon {
  rotate: 180deg;
}

.sustain_Sec_2_Lower_Content_Txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--Gray-50);
}

body.rtl .sustain_Sec_2_Lower_Content_Txt {
  line-height: 32px;
  font-size: 16px;
}

.sustain_Bottom .news_LearnMore_Content {
  gap: 16px;
}

.sustain_Bottom .news_LearnMore_Content {
  width: 40%;
}

.sustain_Sec_3_Upper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 56px;
}

.sustain_Sec_3_Upper_Txt {
  color: var(--Gray-50);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

body.rtl .sustain_Sec_3_Upper_Txt {
  font-size: 16px;
  line-height: 32px;
}

@media (max-width: 992px) {
  .sustain_Sec_2_Lower1 {
    flex-direction: column;
    gap: 16px;
  }

  .people_Sec_1_Content {
    gap: 24px;
  }

  .sustain_Sec_2_Upper_Ttl {
    font-size: 18px;
  }

  .sustain_Sec_2_Upper {
    gap: 24px;
    margin-top: 40px;
  }

  .sustain_Sec_2_Lower_List {
    margin-top: 8px;
    margin-bottom: 0;
    gap: 16px;
  }

  .sustain_Sec_2_Lower_Content {
    gap: 24px;
  }

  .sustain_Sec_3_Upper {
    gap: 16px;
    margin-top: 40px;
  }

  .sustain_Bottom .news_LearnMore_Content {
    width: 100%;
    gap: 24px;
  }

  .sustain_Sec_2 {
    margin-top: 14px;
    margin-bottom: 0;
  }
}

/*--------------------------- News Inner Start ----------------------------*/

.news_top_text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 80px;
  padding-bottom: 36px;
}

.news_Img {
  display: flex;
  justify-content: center;
  position: relative;
}

.news_Img img {
  width: 750px;
  height: 100%;
  object-fit: cover;
  margin-top: 60px;
}

.news_top_text .title {
  font-size: 42px;
  font-weight: 600;
  color: var(--Gray-30);
  position: relative;
  line-height: normal;
}

.news_top_text .title::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--secondar-60);
  position: absolute;
  top: -32px;
}

.news_top_text p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: var(--Gray-50);
}

.news_date_share {
  display: flex;
  gap: 52px;
  align-items: center;
}

.news_datepane {
  font-size: 14px;
  font-weight: 500;
  color: var(--Gray-40);
}

.news_socialpane {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.news_social_item {
  border-radius: 50%;
  border: 1px solid var(--secondar-30);
  padding: 10px;
  transition: 0.3s;
}

.news_social_item img {
  width: 12px;
  height: 12px;
}

.news_social_item:hover {
  background-color: var(--secondar-99);
}

.news_inner_body {
  padding: 44px 0;
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin-inline: auto;
}

.news_inner_body h2,
.news_inner_body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--Gray-30);
  line-height: 36px;
}

.news_inner_body p {
  font-size: 16px;
  line-height: 2rem;
  font-weight: 400;
  color: var(--Gray-40);
}

.news_inner_body p:has(img) {
  margin-inline: auto;
}

.news_inner_body img {
  margin-inline: auto;
}

.news_inner_related {
  border-top: 1px solid #d1d1d1;
  padding: 48px 0 88px;
}

.news_inner_related_header {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondar-00);
  margin-bottom: 32px;
}

.news_inner_related_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s;
}

.news_inner_related_card .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--Gray-30);
}

.relateditemlist {
  display: flex;
  gap: 40px;
}

.news_Inner_Image_Gallery .ImagesItem img {
  width: 100%;
}

@media (max-width: 992px) {
  .news_top_text .title {
    font-size: 30px;
    padding-bottom: 0;
  }

  .news_top_text p {
    font-size: 18px;
  }

  .news_date_share {
    flex-direction: column;
    gap: 32px;
    align-items: start;
  }

  .relateditemlist {
    display: block;
  }

  .relateditemlist .slick-list {
    padding-right: 3rem;
    margin-inline: -0.75rem;
  }

  .news_inner_related_card {
    margin-inline: 0.75rem;
  }

  .news_inner_related_card img {
    margin-bottom: 10px;
  }

  .news_inner_body img {
    height: auto !important;
  }
  .careers_top_text p{
    font-size: 16px;
    line-height: 36px;
	text-align: justify;
  }
}

.job__Info_Wrapper {
  margin-bottom: 3rem;
}
.careers_list_header .nice-select{
  border-radius: 12px !important;
  border-color: var(--Gray-60) !important;
  display: flex;
  align-items: center;
}








/* !------------------------------- 404 End --------------------------------- */

.p404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p404__Img {
  margin-bottom: 2rem;
}

.p404__Img img {
  width: 100%;
  height: 100%;

}

.p404__Text {
  margin-bottom: 40px;
  color: var(--Gray-30);
}

.p404__Btn {
  gap: 24px;
  display: flex;
  align-items: center;
  /* width: 100%; */
  max-width: 552px;
}

.p404__Btn a{
  font-size: 12px;
  font-weight: 600;
}

.p404__Btn .ez_Btn:hover{
  background-color: var(--Gray-30) !important;
  --btn-bak: var(--secondar-40);
}

.p404__Btn a,
.p404__Btn button {
  flex: 1;
  border-radius: 24px;
  background-color: var(--secondar-50) !important;
}


.p404__Btn .ez_Btn::before{
  border: none !important;
}

/* !------------------------------- 404 End --------------------------------- */

