.FooterPane {
  background: var(--Gray-G99, #F2F2F2);
  padding-top: 48px;
  overflow: hidden;
}

.footer_Links_Wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
}

.footer_Links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  max-height: 272px;
  flex-wrap: wrap;
}

.footer_Links a {
  position: relative;
  transition: 0.3s;
  /* width: 300px; */
}

.footer_Links a:hover {
  color: var(--Primary-P30) !important;
  padding-inline-start: 16px;
}

.footer_Links a::before {
  content: "";
  mask: url(../assets/icons/chevron.svg) no-repeat center / cover;
  background: var(--Primary-P30);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  opacity: 0;
  transition: 0.3s;
  width: 24px;
  height: 24px;
  rotate: 0deg;
}

.footer_Links a:hover::before {
  opacity: 1;
  right: -8px;
}

.footer_socials_Wrppaer {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 24px;
  height: 48px;
  margin-top: 24px;
}

.footer_socials_Wrppaer .ezIcon {
  transition: 0.3s;
  --icon: 32px
}

.footer_socials_Wrppaer a:hover .ezIcon {
  --icon-color: var(--Primary-P10);
}

.footer_Middle_Line {
  height: 1px;
  background-color: var(--Primary-P90);
  display: flex;
  align-items: center;
  justify-content: center;
}

.address_Wrapper {
  margin-bottom: 24px;
}


.address_Wrapper .ezIcon {
  --icon-color: var(--Primary-P40);
  rotate: 180deg;
}

.address_Wrapper p,
.address_Wrapper a {
  display: flex;
  gap: 8px;
}

.address_Wrapper p:first-child {
  flex: 0 0 70%;
  text-align: start;
}

.copyright {
  width: 100%;
  height: 56px;
  border: 1px solid var(--Gray-G95, #E4E4E4);
  background: var(--Gray-G100, #FFF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright span {
  color: var(--Gray-G60, #959595);
  text-align: center;
  font-family: "BMWType V2 Light";
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.footer_Enamad_Wrapper img {
  height: 88px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .footer_Links_Wrapper {
    margin-bottom: 16px;
  }

  .footer_Links_Wrapper.contact {
    margin-top: 40px;
  }

  .footer_Links a {
    width: 168px;
  }

  .footer_Middle_Row .footer_Logo {
    justify-content: start !important;
    padding-inline-start: 10px;
    margin-top: 24px;
  }

  .address_Wrapper {
    margin-bottom: 0;
  }

  .footer_Top_Row {
    margin-inline: 12px
  }

  .footer_Top_Row::before {
    right: -80px;
    bottom: -400px;
    width: 630px;
    height: 314px;
  }

  .footer_socials_Wrppaer {
    margin-bottom: 40px;
  }
}