.in-footer__link-wrap ul {
  list-style: none;
  margin: 0;
}

.in-footer__link-wrap ul li {
  margin-bottom: 0;
  padding: 0px 0px 0px 0px !important; /**** taking off padding for itemes in the footer nav ****/
}

.in-footer__link .menu__link  {
  font-family: 'Montserrat', sans-serif !important;
  padding: 0px 0px 0px 0px !important;
}

 /************** Centring Navigation for Mobile *************/
@media (max-width: 768px) {
.in-footer__link {
   text-align: center;
}

.in-footer__link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.in-footer__link-wrap ul li{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px; /* spacing between items */
}
  
.menu__link {
  display: block; /* Ensure the link spans the full width */
  margin: 0; /* Reset margin */
  padding: 0px 0; /* Adjust padding for a more compact look */
  line-height: 0; /* Adjust line-height to reduce vertical spacing */
}
  
.in-footer__menu-heading {
  text-align: center;
}


