@import url("https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap");
#main-footer {
  flex-shrink: 0;
  background-color: black;
}

#main-footer-content {
  width: 1240px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  gap: 65px;
}
@media all and (max-width: 1000px) {
  .footer-container {
    flex-direction: column;
  }
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  flex: 0.8;
  gap: 10px;
}
.footer-logo-section .footer-logo {
  max-width: 320px;
}
@media all and (max-width: 1000px) {
  .footer-logo-section {
    width: 80%;
  }
}

.footer-divider {
  width: 1px;
  background-color: white;
}
@media all and (max-width: 1000px) {
  .footer-divider {
    width: 100%;
    height: 1px;
  }
}

.footer-link-section {
  display: flex;
  flex: 1.2;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-link-section .footer-link-item {
  display: flex;
  flex-direction: column;
  flex: 0 1 200px;
  gap: 3px;
}
.footer-link-section .footer-link-item a {
  color: white;
  transition: filter 0.3s ease-in-out;
}
.footer-link-section .footer-link-item a:hover {
  filter: brightness(0.8);
  transition: filter 0.3s ease-in-out;
}
.footer-link-section .footer-link-item .footer-link-title {
  font-weight: 600;
}/*# sourceMappingURL=footer.css.map */