#home-footer {
  margin-top: 5vh;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #f3f4f6;
}

@media (max-width: 1000px) {
  #home-footer {
    margin-top: 7vh;
  }
}

#home-footer-content {
  width: 100%;
  padding-top: 4vh;
  padding-bottom: 2vh;
}

#home-footer-content-links {
  width: min(1750px, 95%);
  display: flex;
  justify-content: center;
  gap: calc(30% / 4);
  margin: auto;
}

#home-footer-logo {
  width: min(150px, 100%);
  align-self: center;
}

.home-footer-divider {
  width: min(800px, 80%);
  border-top: 1px solid #d1d1d1;
  margin: auto;
}

.home-footer-row {
  width: calc(70% / 5);
  display: block;
  text-align: center;
}

.home-footer-row-headline {
  text-align: center;
  font-weight: bold;
}

.home-footer-row a {
  text-decoration: none;
  color: #323232;
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  width: 100%;
  transition-duration: 0.1s;
}

.home-footer-row a:hover {
  color: black;
}

.home-footer-row h4 {
  margin-bottom: 20px !important;
}

#home-footer-social-media {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  margin-top: 40px;
  text-align: center;
}

#home-footer-social-media li {
  font-size: 28px;
  border-radius: 50%;
  background-color: black;
  color: white;
  width: calc(100%);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition-duration: 0.1s;
}

#home-footer-social-media li:hover {
  background-color: #3c3c3c;
}

#home-footer-contact {
  width: 100%;
}

@media (max-width: 1400px) {
  #home-footer-social-media li {
    font-size: 24px;
  }

  .home-footer-row a {
    font-size: 16px;
  }
}

@media (max-width: 1300px) {
  #home-footer-logo {
    display: none;
  }

  #home-footer-content-links {
    gap: calc(30% / 3);
  }

  .home-footer-row {
    width: calc(70% / 4);
  }
}

@media (max-width: 1000px) {
  #home-footer-content-links {
    gap: calc(15% / 3);
  }

  .home-footer-row {
    width: calc(85% / 4);
  }

  .home-footer-row a {
    font-size: 15px;
  }

  #home-footer svg path {
    transform: scaleY(1.5);
  }

  #home-footer-content {
    padding-top: 6vh;
    padding-bottom: 3vh;
  }
}

@media (max-width: 800px) {
  #home-footer-content-links {
    display: block;
  }

  .home-footer-row {
    width: 100%;
    margin-bottom: 10%;
  }

  #home-footer-social-media {
    width: min(200px, 100%);
    margin: auto;
  }

  #home-footer-contact {
    width: fit-content;
    margin: auto;
  }
}

@media (max-width: 750px) {
  #home-footer svg path {
    transform: scaleY(2);
  }
}