.FooterPane {
  background: url(../assets/images/Footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 222px;
  margin-top: 80px;
  position: relative;
}

.footer_Socials_Wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 24px;
  margin-block: 16px;
}

.footer_Links_Wrapper {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.footer_Par {
  margin-top: 16px;
}

@media (max-width: 992px) {
  .footer_Par {
    display: none;
  }
  
  .footer_Socials_Wrapper {
    display: none;
  }

  .footer_Links_Wrapper {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .footer_Contact_Wrapper .footer_Socials_Wrapper {
    /* position: absolute;
    flex-direction: column; */
    display: flex;
    left: 0;
    bottom: 0;
  }

  .FooterPane {
    background: url(../assets/images/Footer-bg-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
  }
}

.footer_Link_Item {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  padding-inline-start: 34px;
  position: relative;
}

.footer_Link_Item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  mask: url(../assets/icons/chevron.svg) no-repeat center / cover;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}

.footer_Link_Item:hover::before {
  right: 6px;
}

.footer_Contact_Wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

/* .footer_Contact_Wrapper .footer_Socials_Wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
} */

.footer_Contact_Item {
  display: flex;
  flex-direction: column;
}

.footer_Contact_Top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer_Contact_Top .ezIcon {
  transform: translateY(-1px);
}

.footer_Contact_Data {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer_Contact_Data a,
.footer_Contact_Data p {
  opacity: 0.8;
}

.footer_Contact_Data a {
  white-space: nowrap;
}

.footer_Bottom_CopyRight {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  padding-block: 32px;
  border-top: 1px solid #ffffff5b;
  margin-top: 36px;
}

@media (max-width: 992px) {
  .footer_Bottom_CopyRight {
    flex-direction: column;
  }

  .FooterPane {
    padding-top: 120px;
    margin-top: 80px;
  }
}
