footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  font-family: "Public Sans", serif;
  background: rgb(0, 0, 0);
  gap: 150px;
  color: white;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 250px;
  width: fit-content;
  margin-top: 75px;
}

.footer-section span {
  font-weight: 700;
  font-size: 19px;
  align-self: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.footer-section a {
  font-weight: 300;
  font-size: 17px;
  position: relative;
  align-self: flex-start;
  justify-content: flex-start;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.footer-icon {
  max-width: 20px;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}
.footer-icon2 {
  max-width: 40px;
  height: auto;
  margin-right: 12px;
  vertical-align: middle;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 250px;
  width: fit-content;
}

.footer-logo {
  transform: translateY(-10px);
  display: flex;
  width: 280px;
  height: auto;
  border-bottom: 1px solid white;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.footer-text {
  align-self: center;
  text-align: center;
  max-width: 300px;
}
.footer-logo img {
  max-width: 200px;
}

@media (max-width: 1500px) {
  footer {
    gap: 90px;
  }
}

@media (max-width: 1350px) {
  footer {
    gap: 75px;
  }
}

@media (max-width: 900px) {
  footer {
    flex-direction: column;
    gap: 10px;
  }
  .footer-section-logo {
    margin: 20px;
  }
  .footer-section {
    position: relative;
    margin: 0;
    align-self: flex-start;
    left: 40%;
  }
}

@media (max-width: 700px) {
  .footer-section {
    left: 7%;
  }
  .footer-section {
    height: fit-content;
    padding-bottom: 35px;
  }
  .footer-section a {
    font-size: 16px;
  }
  footer {
    gap: 50px;
    padding-bottom: 75px;
  }
}
