.FooterPane {
  padding-block: 54px 24px;
  background: var(--Gray-99);
}

.footer_Top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--Gray-90);
}

.footer_Top_Links {
  display: flex;
  gap: 48px;
}

.footer_Top_Link {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.footer_Top_Link:hover {
  color: var(--primary-50) !important;
}

.footer_Top_Link .ezIcon {
  --icon: 20px;
  background: var(--primary-30);
}

body:not(.rtl) .footer_Top_Link .ezIcon {
  transform: rotate(180deg) !important;
}

.footer_Top_Link:hover .ezIcon {
  background: var(--primary-50);
  transform: translateX(-2px) !important;
}

.footer_Top_Socials {
  display: flex;
  gap: 1rem;
}

.footer_Bottom_CopyRight {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fz-b4);
  font-weight: 400;
  gap: 2px;
}

.footer_Bottom_CopyRight span {
  color: var(--Gray-30) !important;
  opacity: 0.5 !important;
}

@media (max-width: 992px) {
  .footer_Top_Links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer_Top {
    align-items: end;
    padding-bottom: 24px;
  }

  .footer_Bottom_CopyRight {
    flex-direction: column;
  }

  .FooterPane{
    padding-top: 32px;
    margin-top: 30px;
  }
}
