#footer-section {
  position: relative;
  z-index: 5;
  clear: both;
}

#footer-section-inner {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  position: relative;
  z-index: 10;
  isolation: isolate;
}
#footer-logo {
  position: relative;
  display: block;
  z-index: 3;
  text-decoration: none;
  color: #ffffff;
  max-width: 140px;
  align-content: center;
}
#footer-logo img {
  width: 100%;
}
#footer-links {
  display: flex;
  font-family: Arial, sans-serif;
  gap: 60px;
}
#footer-links h2 {
  margin: 0;
  color: #32d399;
  font-size: 13px;
}
#footer-links ul {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
#footer-links ul li a {
  color: #fff;
  font-size: 11px;
  transition: all 0.3s;
  position: relative;
  z-index: 11;
  display: block;
}
#footer-links ul li a:hover {
  color: #32d399;
}

/* RESPONSIVE CSS */
@media screen and (max-width: 810px) {
  #footer-logo {
    max-width: 100px;
  }
  #footer-section-inner {
    justify-content: space-around;
  }
}
@media screen and (max-width: 450px) {
  #footer-section-inner {
    flex-direction: column;
    align-items: center;
  }
  #footer-logo {
    margin: 0 0 30px 0;
  }
  #footer-links {
    gap: 20px;
  }
}
