/* ------------------------ Hero Slider Start------------------------ */
.hero_Slider_Wrapper {
  background-image: url(/portals/0/Images/hero-bg.png);
  background-size: 100%;
  background-position: 0px -100px;
  background-repeat: no-repeat;
  height: 960px;
  margin-bottom: 68px;
}

.hero_Slider_Wrapper .slick-dots {
  position: absolute !important;
  right: 14%;
  bottom: 130px;
  width: 400px;
  padding: 0 !important;
}

.hero_Slider_Wrapper .slick-dots li {
  flex: 1;
  transition: 0.3s;
}

.hero_Slider_Wrapper .slick-dots li.slick-active {
  flex: 3;
}

.hero_Slider_Wrapper .slick-dots li button {
  width: 100% !important;
  height: 6px !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  opacity: 0.5;
}

.hero_Slider_Wrapper .slick-dots li.slick-active button {
  opacity: 1;
}

.hero_Slider_Inner .slick-list {
  overflow: visible;
}

.hero_Slider_Content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14%;
  gap: 16px;
  width: 30%;
}

.hero_Slider_Images {
  position: absolute;
  top: 0;
  left: 0;
}

.hero_Slider_Title {
  height: 172px;
}

@media (max-width: 992px){
.hero_Slider_Title {
  height: 104px;
}
}

.hero_Slider_Main_Image {
  mask: url(../assets/icons/ellipse-hero1.svg) no-repeat center / cover;
  /* overflow: hidden; */
  height: 852px;
  width: 622px;
  position: relative;
  z-index: 2;
}

.hero_Slider_Images::before {
  content: "";
  mask: url(../assets/icons/ellipse-hero1.svg) no-repeat center / cover;
  background: #fff;
  width: calc(100% + 16px);
  height: calc(100% + 22px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero_Slider_Main_Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_Slider_Product_Image {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
}

.hero_Slider_Product_Image::before {
  content: "";
  background-color: var(--Gray-G00, #121212);
  opacity: 0.3;
  filter: blur(18px);
  width: 237px;
  height: 78px;
  position: absolute;
  bottom: -20px;
  left: 22%;
  border-radius: 50%;
  z-index: -1;
}

.hero_Slider_Link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 226px;
  background-color: #fff;
  padding: 12px 24px 12px 14px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
  white-space: nowrap;
}

.hero_Slider_Link:hover {
  color: #fff !important;
}

.hero_Slider_Link::before {
  content: "";
  border-radius: 16px;
  background: var(--Primary-P50, #fc7b35);
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  transition: 0.3s ease;
  overflow: hidden;
  z-index: -1;
}

.hero_Slider_Link:hover::before {
  width: 100%;
  height: 100%;
  left: 0;
}

.hero_Slider_Link .ezIcon {
  --icon-color: #fff;
  z-index: 2;
  --icon: 24px;
}

.hero_Slider_Sub {
  opacity: 0.8;
  height: 80px;
}

@media (max-width: 992px) {
  .hero_Slider_Sub {
    height: 72px;
  }

  .hero_Slider_Images {
    top: 48px;
  }

  .hero_Slider_Wrapper {
    background-image: url(/Portals/0/Images/hero-mobile-bg.png);
    background-size: cover;
    background-position: center;
    height: 800px;
  }

  .hero_Slider_Main_Image {
    height: 370px;
    width: 269px;
  }

  .hero_Slider_Images::before {
    width: calc(100% + 17px);
  }

  .hero_Slider_Inner {
    /* padding-top: 512px; */
  }

  .hero_Slider_Content {
    width: 80%;
    bottom: -40px;
    top: unset;
    right: 4%;
    gap: 8px;
  }

  .hero_Slider_Product_Image {
    left: unset;
    bottom: 20px;
    right: -40px;
    height: 150px;
    width: 150px;
  }

  .hero_Slider_Wrapper .slick-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 64px;
    width: 90%;
    padding: 0 !important;
  }
}

.support_Icon {
    border-radius: 14.545px;
border: 1.818px solid var(--Green-Green50, #7AA643);
background: var(--Primary-P50, #FC7B35);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

@media (max-width: 992px) {
  .support_Icon {
    bottom: 20px;
    right: 20px;
  }
}

.support_Icon .ezIcon {
    --icon: 26px;
    --icon-color: #FFF;
}

.support_Icon {
  position: relative;
}

/* tooltip box */
.support_Icon::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #222;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

/* arrow */
.support_Icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) translateY(6px) rotate(180deg);
  border: 6px solid transparent;
  border-bottom-color: #222;
  opacity: 0;
  transition: 0.2s ease;
}

/* show */
.support_Icon:hover::after,
.support_Icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.support_Icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0) rotate(180deg);
}

.support_Modal .modal-header button {
  margin: 0 !important;
}

.support_Modal .modal-body .form-pages-main {
  box-shadow: none;
}

.support_Modal .modal-title {
  font-size: 16px;
  font-weight: 700;
}

.support_Modal .form-buttons-group {
  margin-bottom: 0 !important;
}

@media (min-width: 576px) {
    .support_Modal .modal-dialog {
        max-width: 900;
    }
}

/* ------------------------ Hero Slider End------------------------ */

.main_Page_Introduction_Wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 196px;
}

.main_Page_Introduction_Image {
  flex: 0 0 calc(50% - 12px);
}

.main_page_Introduction_Content {
  flex: 0 0 calc(50% - 12px);
  display: flex;
  flex-direction: column;
}

.main_page_Introduction_Content img {
  height: 64px;
  width: 64px;
  margin-bottom: 18px;
}

.main_Page_Introduction_Sub {
  padding-inline-start: 68px;
  position: relative;
  margin-bottom: 8px;
}

.main_Page_Introduction_Sub::before {
  content: "";
  border-radius: 2px;
  background: var(--Secondary-S50, #fa4c4b);
  width: 60px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.main_page_Introduction_Content h2 {
  margin-bottom: 16px !important;
}

.main_Page_Introduction_Par {
  margin-bottom: 32px;
}

.main_Page_Why_Wrapper {
  /* background-color: #F9F9F9; */
  position: relative;
  z-index: 2;
  margin-bottom: 218px;
}

.main_Page_Why_Wrapper::before {
  content: "";
  mask: url(../assets/icons/wave.svg) no-repeat center / cover;
  mask-position: center top;
  background: linear-gradient(
    180deg,
    #f9f9f9 0.12%,
    rgba(249, 249, 249, 0.1) 100%
  );
  width: 100%;
  height: 400px;
  position: absolute;
  top: -70px;
  left: 0;
  z-index: -1;
}

.main_Page_Why_Wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.main_Page_Why_Text {
  text-align: center;
}

.main_Page_Why_Text h3 {
  margin-bottom: 8px;
}

.main_Page_Why_Sub {
  margin-bottom: 16px;
}

.main_Page_Why_Cards_Wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.main_Page_Why_Card {
  flex: 0 0 calc(25% - 20px);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 48px 0 rgba(18, 18, 18, 0.08);
  padding: 16px 16px 32px 16px;
  height: 242px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main_Page_Why_Card::before {
  content: "";
  border-radius: 0 0 0 40px;
  background: var(--Green-G40);
  position: absolute;
  top: 0;
  right: 0;
  height: 80px;
  width: 80px;
  z-index: -1;
  transition: all ease-in 300ms;
}

.main_Page_Why_Card:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.main_Page_Why_Card_Top {
  display: flex;
  /* align-items: center; */
  justify-content: start;
  gap: 32px;
}

.main_Page_Why_Card_Top .ezIcon {
  --icon: 48px;
}

.main_Page_Why_Card_Top h5 {
  /* padding-top: 16px !important; */
}

.main_Page_Why_Card > p {
  height: 96px;
}

.main_Page_Why_Card * {
  transition: all ease-in 300ms;
}

.main_Page_Why_Card:hover * {
  color: #fff !important;
}

.main_Page_Products {
  margin-bottom: 144px;
  position: relative;
  z-index: 2;
}

.main_Page_Products::before {
  content: "";
  background: url(/Portals/_default/Skins/ez-skin/assets/icons/home-products-before.svg)
    no-repeat;
    background-size: contain;
  width: 650px;
  height: 800px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-80%);
  z-index: -1;
}

.products_Cards_Wrapper.home_Ver {
  grid-template-columns: repeat(3, 1fr);
}

.main_page_Introduction_Content.home_Ver .btn_Main  {
  margin-top: 28px;
}

.main_page_Introduction_Content.home_Ver h2 {
  width: 80%;
}

@media (max-width: 992px) {
  .main_page_Introduction_Content.home_Ver h2 {
    width: 50%;
  }

  .main_page_Introduction_Content.home_Ver .btn_Main {
    margin-bottom: 40px;
    margin-top: 0;
  }
  .main_Page_Products::before {
    transform: translateX(-26%);
    top: 250px;
  }
}

.main_Page_News_Wrapper {
  position: relative;
  margin-bottom: 128px;
}

.main_Page_News_Wrapper::before {
  content: "";
  mask: url(../assets/icons/wave.svg) no-repeat center / cover;
  mask-position: center top;
  background: linear-gradient(180deg, #ebf2e3 0%, rgba(235, 242, 227, 0) 100%);
  opacity: 0.7;
  width: 100%;
  height: 400px;
  position: absolute;
  top: -70px;
  left: 0;
  z-index: -1;
}

.main_Page_News_Wrapper .btn_Main {
  margin-inline: auto;
  margin-top: 32px;
}

.main_Page_News_Top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.main_Page_News_Top h3 {
  width: 60%;
  text-align: center;
}

.main_Page_News_Section {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.main_Page_News_Item {
  border-radius: 16px;
  border: 1px solid var(--Gray-G95, #e4e4e4);
  background: var(--Gray-G100, #fff);
  box-shadow: 0 6px 48px 0 rgba(55, 75, 30, 0.1);
  overflow: hidden;
  flex: 1;
}

.main_Page_News_Item_Image {
  overflow: hidden;
  height: 260px;
}

.main_Page_News_Item_Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.main_Page_News_Item:hover .main_Page_News_Item_Image img {
  transform: scale(1.1);
}

.main_Page_News_Content {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 16px;
}

.main_Page_News_Content > p {
  height: 56px;
  transition: 0.3s;
}

.main_Page_News_Item:hover .main_Page_News_Content > p {
  color: var(--Primary-P50) !important;
}

.main_Page_News_Date_Row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main_Page_News_Date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--Gray-G60, #959595);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.main_Page_News_Date .ezIcon {
  --icon: 20px;
  --icon-color: var(--Gray-G90);
  transform: translateY(-2px);
}

.main_Page_News_Link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--Green-G40, #6e953c);
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  transition: 0.3s;
}

.main_Page_News_Link .ezIcon {
  --icon: 24px;
  --icon-color: var(--Green-G40);
}

.main_Page_News_Item:hover .main_Page_News_Link {
  color: var(--Primary-P50);
}

.main_Page_News_Item:hover .main_Page_News_Link .ezIcon {
  --icon-color: var(--Primary-P50);
}

.main_Page_News_Image {
  position: absolute;
  height: 44vw;
  object-fit: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.main_Page_Blog_Wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  padding-top: 40px;
  background: linear-gradient(180deg, #F9F9F9 0%, rgba(249, 249, 249, 0.00) 100%);
}

.main_Page_Blog_Top {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}

.main_Page_Blog_Section {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.main_Page_Blog_Item {
  border-radius: 16px;
  background: var(--Gray-G100, #fff);
  box-shadow: 0 4px 32px 0 rgba(18, 18, 18, 0.08);
  overflow: hidden;
  transition: 0.3s;
  flex: 0 0 calc(33% - 28px);
}

.main_Page_Blog_Item:hover {
  box-shadow: 0 4px 32px 0 rgba(18, 18, 18, 0.16);
}

.main_Page_Blog_Item_Image {
  overflow: hidden;
  height: 238px;
}

.main_Page_Blog_Item_Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.main_Page_Blog_Item:hover .main_Page_Blog_Item_Image img {
  transform: scale(1.1);
}

.main_Page_Blog_Content {
  padding: 16px 16px 44px;
}

.main_Page_Blog_Content > p:first-child {
  transition: 0.3s;
  margin-bottom: 8px;
  height: 64px;
}

.main_Page_Blog_Item:hover .main_Page_Blog_Content > p:first-child {
  color: var(--Primary-P50) !important;
}

.main_Page_Blog_Content p.sum {
  margin-bottom: 36px;
}

.main_Page_Blog_Bottom_Row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main_Page_Blog_ReadTime {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: var(--Background, #f9f9f9);
  padding: 4px 4px 4px 14px;
  color: var(--Gray-G60, #959595);
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
}

.main_Page_Blog_ReadTime .ezIcon {
  --icon: 20px;
  --icon-color: var(--Green-G40);
  transform: translateY(-1px);
}

.main_Page_Blog_Link {
  color: var(--Gray-G100, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  border-radius: 16px;
  background: var(--Green-G50, #7aa643);
  padding: 4px 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main_Page_Blog_Item:hover .main_Page_Blog_Link {
  background: var(--Primary-P50);
}

.main_Page_Blog_Link .ezIcon {
  --icon: 24px;
  --icon-color: #fff;
}

@media (max-width: 992px) {
  .main_Page_Introduction_Wrapper {
    flex-direction: column-reverse;
    gap: 40px;
    margin-bottom: 104px;
  }

  .main_Page_Why_Cards_Wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .main_Page_Why_Card {
    gap: 36px;
    padding: 24px 16px;
  }

  .main_Page_News_Wrapper .col-lg-4 {
    display: none;
  }

  .main_Page_News_Section {
    flex-direction: column;
  }

  .main_Page_News_Wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 104px;
  }

  .main_Page_News_Top h3 {
    width: 100%;
  }

  .main_Page_News_Content {
    padding: 22px 22px 26px;
  }

  .main_Page_News_Item {
    border-radius: 16px;
  }

  .main_Page_Blog_Section {
    flex-direction: column;
  }

  .main_Page_Why_Wrapper {
    margin-bottom: 170px;
  }
}

/* ---------------- Contact ---------------- */

.contact_top_Wrapper {
  position: relative;
  margin-bottom: 80px;
  padding-block: 40px 52px;
  z-index: 2;
}

.contact_top_Wrapper::before {
  content: "";
  background-image: url(../assets/icons/wave4.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 993px;
  height: 582px;
  position: absolute;
  top: -70px;
  left: 0px;
  z-index: -1;
}

.contact_top_Wrapper .col-lg-10 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_Top_Data {
  display: flex;
  flex-direction: column;
  flex: 0 0 46%;
}

.contact_Top_Data h1 {
  margin-bottom: 24px !important;
}

.contact_Top_Item {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.contact_Top_Header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.contact_Top_Item > p,
.contact_Top_Item a {
  opacity: 0.8;
}

.contact_Top_Header .ezIcon {
  --icon: 24px;
}

.contact_Top_Socials {
  display: flex;
  align-items: center;
  gap: 34px;
}

.contacts_Top_Map {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts_Top_Map iframe {
  border-radius: 24px;
  height: 352px;
  margin-top: 70px;
}

@media (max-width: 992px) {
  .contact_top_Wrapper .col-lg-10 {
    flex-direction: column;
  }

  .contacts_Top_Map {
    width: 100%;
  }

  .contacts_Top_Map iframe {
    height: 198px;
    margin-top: 70px;
    width: 100%;
  }

  .contact_top_Wrapper::before {
    content: "";
    background-image: url(../assets/icons/wave4-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 264px;
    position: absolute;
    bottom: 32px;
    top: unset;
    left: 0px;
    z-index: -1;
  }

  .form-pages-main {
    width: 100% !important;
    padding: 32px 16px !important;
  }
}

/* ------------------- Careers ----------------------- */

.careers_top_Wrapper {
  position: relative;
  z-index: 2;
  padding-top: 35px;
}

.careers_top_Wrapper h1 {
  margin-bottom: 40px !important;
}

.careers_top_Wrapper .col-lg-10 > p {
  margin-bottom: 56px !important;
}

.nan_Afza_Container::before {
  content: "";
  background: url(/Portals/_default/Skins/ez-skin/assets/icons/wave3.svg)
    no-repeat;
  width: 100%;
  height: 218px;
  position: absolute;
  top: -40px;
  background-size: 87%;
  background-position: center;
  left: 0;
  z-index: -1;
}

@media (max-width: 992px) {
  .nan_Afza_Container::before {
    height: 60px;
    top: -8px;
  }

  #row_2_17 .form-col {
    height: 130px;
  }

  .careers_top_Wrapper .col-lg-10 > p,
  .careers_top_Wrapper .col-lg-10 > h1 {
    text-align: center;
    margin-bottom: 24px !important;
  }
}

@media (min-width: 992px) {
  .careers_top_Wrapper #row_2_17 .form-col:first-child {
    width: 33.33% !important;
    /* flex: 0 0 33.33% !important; */
  }

  .careers_top_Wrapper #row_2_17 .form-col:last-child {
    width: 66.33% !important;
    /* flex: 0 0 67.33% !important; */
  }
}

/* ------------------ Branches -------------------- */

/* SVG Styling */
.branches_Wrapper {
  svg {
    width: 520px;
    /* Adjust size as needed */
    height: 468px;
    /* filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.1)); */
  }

  /* Default style for Province Paths */
  path {
    fill: #e2eed4;
    /* The light green color */
    stroke: #888888;
    /* Grey border */
    stroke-width: 0.5;
    transition: fill 0.3s ease;
    cursor: pointer;
    position: relative;
  }

  path.p-Muted {
    fill: var(--Gray-G95) !important;
  }

  /* Hover Effect for Provinces */
  path:hover {
    fill: #c4d6a8;
    /* Darker green on hover */
  }

  /* Style for Lakes (Urmia, Caspian, Persian Gulf) */
  /* You add class="lake" to the water paths in the SVG */
  path.lake {
    fill: #4f6fa3 !important;
    cursor: default;
  }

  path.lake:hover {
    fill: #4f6fa3 !important;
  }

  /* Black Text Paths inside SVG (Keep them visible but non-interactive) */
  path[fill="black"] {
    fill: #555555 !important;
    pointer-events: none;
    /* Let clicks pass through text to the province */
  }

  /* THE PIN ICON STYLING */
  .pin {
    position: absolute;
    width: 24px;
    height: 32px;
    transform: translate(-50%, -100%);
    /* Center the tip on the coordinate */
    pointer-events: none;
    /* Click through pin to map */
    z-index: 10;
  }

  /* Create the pin shape using CSS to match your image */
  .pin::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #4a7729;
    /* Dark Green */
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  /* The white hole in the center */
  .pin::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
  }

}

.branches_Wrapper {
  margin-top: 48px;
  margin-bottom: 74px;
}

.branches_Wrapper .col-lg-10 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.branches_Data {
  flex: 0 0 50%;
}

.branches_Data h1 {
  margin-bottom: 8px !important;
}

.branches_Sub {
  margin-bottom: 24px !important;
}

.branches_Par {
  margin-bottom: 40px !important;
}

.branches_Link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--Green-Green50, #7aa643);
  gap: 8px;
  color: var(--Gray-G100, #fff) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  padding: 10px 30px;
  transition: 0.3s;
  width: max-content;
}

.branches_Link:hover {
  background: var(--Green-G60);
  color: var(--Gray-G100, #fff) !important;
}

.branches_Link .ezIcon {
  --icon: 24px;
  --icon-color: #fff;
  rotate: -90deg;
}

@media (max-width: 992px) {
  .branches_Wrapper .col-lg-10 {
    flex-direction: column;
    gap: 40px;
  }

  .branches_Wrapper {
    svg {
      width: 328px;
      /* Adjust size as needed */
      height: 294px;
      /* filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.1)); */
    }
  }
}

/* ------------------- About Start -------------------- */

.about_Top_Wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 66px;
  margin-block: 76px 180px;
}

.about_Top_Wrapper {
  position: relative;
}

/* .about_Top_Wrapper::before {
  content: "";
  background-image: url(../assets/icons/wave4.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50vw;
  height: 80vh;
  position: absolute;
  top: -240px;
  left: 0px;
  z-index: -1;
} */
/* 
.about_Top_Wrapper::after {
  content: "";
  background-image: url(../assets/icons/wave5.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 35vw;
  height: 46vh;
  position: absolute;
  bottom: -100px;
  right: -90px;
  z-index: -1;
} */

.about_Top_Item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.about_Top_Data {
  flex: 0 0 calc(50% - 50px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about_Top_Datas {
  margin-bottom: 40px;
  /* text-shadow: 0px 0px 16px #FFF; */
}

.about_Top_Image {
  flex: 0 0 calc(50% - 50px);
}

.about_Top_Image img {
  border-radius: 16px;
}

.about_Counter_Wrapper {
  background: linear-gradient(90deg, #496428 0%, #5c7c32 50%, #496428 100%);
  padding-block: 52px;
  position: relative;
  margin-bottom: 96px;
}

.about_Counter_Wrapper::before {
  content: "";
  background-image: url(../assets/images/about-counter-before.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 230px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.about_Counter_Wrapper::after {
  content: "";
  background-image: url(../assets/images/about-counter-after.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 304px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -70px;
  z-index: 0;
}

.about_Counter_Wrapper .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter_Item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
}

.counter_Item_Sub {
  opacity: 0.4;
}

.counter_Item .ezIcon {
  --icon: 64px;
  margin-bottom: 16px;
}

.about_Counter_Num_Wrapper {
  color: var(--Gray-G100, #fff);
  font-size: 36px;
  font-weight: 800;
  line-height: 72px;
  position: relative;
}

.about_Counter_Num_Wrapper::before {
  content: "+";
  color: var(--Gray-G100, #fff);
  font-size: 36px;
  font-weight: 800;
  line-height: 72px;
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
}

.about_Why_Wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-bottom: 104px;
}

.about_Why_Cards_Wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.about_Why_Card {
  flex: 0 0 calc(25% - 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  border-radius: 16px;
  background: var(--Gray-G99, #f2f2f2);
  padding: 32px 24px;
}

.about_Awards_Wrapper {
  margin-top: 64px;
  background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
  padding-top: 88px;
  position: relative;
}

.about_Awards_Wrapper .slick-track {
  padding-right: 20px;
  align-items: center;
    display: flex;
}

.about_Awards_Item {
  border-radius: 16px;
  /* background: var(--Gray-G100, #fff); */
  box-shadow: 0 6px 64px 0 rgba(18, 18, 18, 0.06);
  margin-left: 36px;
  /* margin-block: 50px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_Awards_Item img {
      height: 307px;
    object-fit: cover;
}

.about_Awards_Arrows {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about_Awards_Arrows .slick-arrow {
  border-radius: 8px !important;
  background: var(--Gray-G99, #f2f2f2) !important;
}

.about_Awards_Arrows .slick-prev {
  order: 1;
}

.about_Awards_Arrows .slick-next {
  order: 3;
}

.about_Awards_Arrows .slick-dots {
  order: 2;
}

@media (max-width: 992px) {
  .about_Top_Item {
    flex-direction: column;
  }

  .about_Top_Item.second {
    flex-direction: column-reverse;
  }
  .about_Top_Wrapper::before {
    background-image: url(../assets/icons/wave6.png);
    width: 100%;
    height: 33vh;
    top: 29%;
  }
  .about_Top_Wrapper::after {
    width: 100%;
    bottom: -160px;
  }
  .about_Top_Data {
    gap: 16px;
  }
  .about_Top_Wrapper .container {
    gap: 114px;
    margin-block: 40px 100px;
  }

  .about_Counter_Wrapper .container {
    flex-direction: column;
  }
  .about_Counter_Wrapper::before {
    background-image: url(../assets/images/about-counter-before-mobile.svg);
    background-size: cover;
    width: 100%;
    height: 94px;
  }
  .about_Counter_Wrapper::after {
    background-image: url(../assets/images/about-counter-after-mobile.svg);
    background-size: cover;
    width: 100%;
    height: 94px;
    bottom: 0;
    top: unset;
    left: 0;
  }
  .about_Counter_Wrapper {
    padding-block: 96px;
  }
  .about_Counter_Wrapper .container {
    gap: 26px;
  }
  .about_Why_Cards_Wrapper {
    flex-direction: column;
  }
  .about_Why_Card {
    width: 100%;
  }
}

/* ------------------- Products Start -------------------- */

.products_Top_Wrapper {
  margin-top: 72px;
  margin-bottom: 98px;
  z-index: 2;
}

@media (max-width: 992px) {
  .products_Top_Wrapper {
    margin-bottom: 24px;
  }
}

.products_Top_Wrapper::before {
  content: "";
  background: url(/Portals/_default/Skins/ez-skin/assets/icons/wave3.svg)
    no-repeat;
  width: 100%;
  height: 218px;
  position: absolute;
  top: -114px;
  background-size: 87%;
  background-position: center;
  left: 0;
  z-index: 1;
}

.products_Cards_Wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.products_Card {
  border-radius: 12px;
  background: var(--Gray-G100, #fff);
  box-shadow: 0 4px 24px 0 rgba(18, 18, 18, 0.08);
  padding: 16px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.products_Card:hover {
  box-shadow: 0 4px 24px 0 rgba(18, 18, 18, 0.12);
}

.products_Card_Image {
  display: flex;
  align-items: center;
  height: 256px;
  width: 100%;
  border-radius: 6px;
  /* background: var(--Background, #f9f9f9); */
  overflow: hidden;
}

.products_Card_Image img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  transition: 1s;
}

.products_Card:hover .products_Card_Image img {
  transform: scale(1.07);
}

.products_Card_Content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.products_Card_Content > a {
  height: 64px;
}

.product_Card_Link {
  color: var(--Green-Green40, #6e953c) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  padding: 8px;
  transition: 0.3s;
  border-radius: 8px;
}

.products_Card:hover .product_Card_Link {
  color: #fff !important;
  background: var(--Green-Green50, #7aa643);
}

.product_Card_Link .ezIcon {
  --icon-color: #fff !important;
}

.ui-widget-header {
  border: none;
  background: transparent;
}

.livetabsdefault .ui-tabs {
  border: none;
  background: transparent;
}

.livetabsdefault .ui-tabs .ui-tabs-nav {
  border: none;
  background: transparent;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.livetabsdefault .ui-state-default,
.livetabsdefault .ui-widget-content .ui-state-default {
  border: none;
  background: transparent;
  color: var(--Gray-G50, #7a7a7a) !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  padding: 8px 16px !important;
  transition: 0.3s;
  border-radius: 8px !important;
  position: relative;
}

.livetabsdefault .ui-state-default::before,
.livetabsdefault .ui-widget-content .ui-state-default::before {
  content: "";
  border-radius: 0 0 8px 8px;
  background: var(--Primary-P50, #fc7b35);
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  position: absolute;
  bottom: -4px;
  transition: 0.3s ease;
}

.livetabsdefault .ui-tabs-active::before,
.livetabsdefault .ui-widget-content .ui-tabs-active::before{
  width: 60%;
}

.livetabsdefault .ui-tabs .ui-tabs-nav li.ui-tabs-selected,
.livetabsdefault .ui-tabs .ui-tabs-nav li.ui-tabs-active,
.livetabsdefault .ui-tabs .ui-tabs-nav li.ui-tabs-active {
  
  background: var(--Gray-G100, #fff) !important;
  box-shadow: 0 4px 16px 0 rgba(18, 18, 18, 0.12);
}

.livetabsdefault .ui-tabs .ui-tabs-nav li a {
  padding: 0 !important;
  transition: 0.3s;
}

.noArticles_Wrapper  {
  height: 300px;
}


@media (max-width: 992px) {
  .products_Cards_Wrapper {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .livetabsdefault .ui-tabs .ui-tabs-nav {
    display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
  scroll-behavior: smooth;
    overflow-y: hidden;
    gap: 16px;
    padding-bottom: 32px;
    margin-bottom: 16px !important;
    scrollbar-width: none;
  }

  .livetabsdefault .ui-tabs .ui-tabs-nav::-webkit-scrollbar {
  display: none;
}
  .livetabsdefault .ui-tabs .ui-tabs-nav li {
    scroll-snap-align: start;
  flex: 0 0 60%;
    border: 1px solid var(--Gray-G95, #E4E4E4);
    width: 60%;
  }
  .livetabsdefault .ui-tabs .ui-tabs-nav li a {
    text-align: center;
  }
  .products_Top_Wrapper::before {
    top: -154px;
    background-size: 132%;
}
}










.main__Blog {
  margin-top: 3rem;
}
a:active,
a:link,
a:visited {
  text-decoration: none;
}

.main__Blog .listItem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
.main__Blog .listItem {
  margin-bottom: 60px;
}
.blog_Card_Home {
  flex: 1;
  position: relative;
  z-index: 1;
}
.blog_Card_Home_Img {
  overflow: hidden;
  display: block;
  border-radius: 0.5rem;
}
.blog_Card_Home_Img img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  max-height: 288px;
  object-fit: cover;
  transition: 2s;
}
.blog_Card_Home_Content {
  border-radius: 16px;
  background: var(--Gray-100);
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 1rem;
  width: calc(100% - 3rem);
  margin: 0 auto;
  transform: translateY(-2rem);
  transition: 0.3s;
}
.blog_Card_Home_Content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #fff;
  z-index: -1;
  transition: var(--transition);
}
.blog__Detail__Title h1 {
  font-size: 22px !important;
  text-shadow: none !important;
}

@media (max-width: 992px) {
  .blog__Detail__Title h1 {
    font-size: 18px !important;
  }
}

.blog_Card_Home_Content_Props {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.blog_Card_Home_Content_Props h2 {
  font-size: 14px !important;
}
.blog_Card_Home_Content_Props a {
  font-size: 14px !important;
}
.blog_Card_Home_Content_Props a:hover {
  color: inherit !important;
  text-decoration: none !important;
}
.blog_Card_Home_Content_Props span {
  font-size: 14px !important;
}

.blog_Card_Home:hover .blog_Card_Home_Content_Props span {
  color: #FFF !important;
}

.blog_Card_Home_Content_Ttl,
.blog_Card_Home_Content_Footer_Date {
  transition: var(--transition);
}
.blog_Card_Home_Content_Ttl {
  text-align: start !important;
}
.blog_Card_Home {
  flex: 1;
  position: relative;
  z-index: 1;
}

.blog_Card_Home_Img {
  overflow: hidden;
  display: block;
  border-radius: 0.5rem;
}

.blog_Card_Home_Img img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  max-height: 288px;
  object-fit: cover;
  transition: 2s;
}

.blog_Card_Home:hover .blog_Card_Home_Img img {
  transform: scale(1.1);
}

.blog_Card_Home_Content {
  border-radius: 16px;
  background: var(--Gray-100);
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 1rem;
  width: calc(100% - 3rem);
  margin: 0 auto;
  transform: translateY(-2rem);
  transition: 0.3s;
}

.blog_Card_Home_Content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #fff;
  z-index: -1;
  transition: var(--transition);
}

.blog_Card_Home_Content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(90deg, #AFCA8E 0%, #496428 100%);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

.blog_Card_Home_Content_Ttl,
.blog_Card_Home_Content_Footer_Date {
  transition: var(--transition);
}

.blog_Card_Home:hover .blog_Card_Home_Content::before {
  opacity: 0;
}

.blog_Card_Home:hover .blog_Card_Home_Content::after {
  opacity: 1;
}

.blog_Card_Home:hover .blog_Card_Home_Content {
  transform: translateY(-2.5rem);
  /* background: var(--mc1); */
}

.blog_Card_Home:hover .blog_Card_Home_Content_Ttl {
  color: #fff !important;
}

.blog_Card_Home:hover .blog_Card_Home_Content_Footer_Date {
  color: var(--Gray-99) !important;
}

.blog_Card_Home_Content_Props {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.blog_Card_Home_Content_Footer_More {
  width: 32px !important;
  height: 32px !important;
  border-radius: 12px;
  background: var(--Gray-99);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog_Card_Home_Content_Footer_More .ezIcon {
  --icon: 24px !important;
}
body:not(.rtl) .blog_Card_Home_Content_Footer_More .ezIcon {
  transform: rotate(180deg);
}

.main__Blog {
  margin-top: 3rem;
}

.main__Blog .listItem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  padding: 0 !important;
}

@media (max-width: 992px) {
  .main__Blog .listItem {
  grid-template-columns: repeat(1, 1fr);
  row-gap: 70px;
  }
}

.paging_Wrapper {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-block: 60px 40px !important;

  /* margin-block: 32px; */
}

.paging_Wrapper > a {
  display: none;
}



.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(--Green-G30)
}

.p404__Btn {
    gap: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px !important;
  height: 56px !important;
}

.p404__Btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .p404__Btn a,.p404__Btn button {
    flex: 1;
    height: 56px
} */
