.FooterPane {
  background: linear-gradient(180deg, #00273E 0%, #001A2A 100%);
  padding-top: 48px;
  overflow: hidden;
}

.footer_Top_Row {
  position: relative;
}

.footer_Top_Row::before {
  content: "";
  position: absolute;
  bottom: -136px;
  right: -150px;
  width: 900px;
  height: 440px;
  background: url(../assets/images/footer-before.png) no-repeat center / 100% 100%;
  opacity: 0.8;
}

.footer_Links_Wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: start;
}

.footer_Links_Header {
  position: relative;
  padding-inline-start: 9px;
}

.footer_Links_Header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #A6C8DC;
}

body.rtl .footer_Links_Header::before {
  left: unset;
  right: 0;
}

.footer_Links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: start;
  max-height: 272px;
  flex-wrap: wrap;
}

.footer_Links a {
  position: relative;
  transition: 0.3s;
  width: 300px;
  opacity: 0.7;
}

.footer_Links a:hover {
  color: var(--Primary-P80) !important;
  padding-inline-start: 16px;
}

.footer_Links a::before {
  content: "";
  mask: url(../assets/icons/chevron.svg) no-repeat center / cover;
  background: var(--Primary-P80);
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  left: -16px;
  opacity: 0;
  transition: 0.3s;
  width: 24px;
  height: 24px;
  rotate: 180deg;
}

.footer_Links a:hover::before {
  opacity: 1;
  left: -8px;
}

body.rtl .footer_Links a::before {
  left: unset;
  right: -16px;
  rotate: 0deg;
  transform: translateY(-50%);
}

body.rtl .footer_Links a:hover::before {
  left: unset;
  right: -8px;
}

.footer_socials_Wrppaer {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 24px;
  height: 48px;
}

.footer-Socials {
  padding: 0 !important;
}

.footer_socials_Wrppaer img {
  transition: 0.3s;
}

.footer_socials_Wrppaer a:hover img {
  filter: brightness(1.3);
}

.footer_Middle_Line {
  height: 1px;
  background-color: var(--Primary-P90);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_Address {
  padding: 0 !important;
}

.address_Wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.address_Wrapper .ezIcon {
  --icon-color: var(--Primary-P70);
}

.address_Wrapper p,
.address_Wrapper a {
  opacity: 0.7;
  display: flex;
  gap: 8px;
  align-items: center;
}

.address_Wrapper p:first-child {
  flex: 0 0 70%;
  text-align: start;
}

.copyright {
  width: 100%;
  height: 64px;
  background: #00131E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright span {
  color: var(--Gray-G100);
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  opacity: 0.4;
}

@media (max-width: 991px) {
  .footer_Links_Wrapper {
    margin-bottom: 40px;
    padding-left: 12px;
  }

  .footer_Links a {
    width: 168px;
  }

  .footer_Middle_Row .footer_Logo {
    justify-content: start !important;
    padding-inline-start: 10px;
    margin-top: 24px;
  }

  .address_Wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: start;
    margin-inline-start: 12px;
  }
  .footer_Top_Row::before{
    right: -80px;
    bottom: -400px;
    width: 630px;
    height: 314px;
  }
  .footer_socials_Wrppaer {
    justify-content: center;
  }
}