#main-footer {
  flex-shrink: 0;
  background-color: #F4F4F4;
}

#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;
  gap: 10px;
}
.footer-logo-section .footer-logo {
  max-width: 250px;
}
@media all and (max-width: 1000px) {
  .footer-logo-section {
    width: 80%;
  }
}

.footer-link-section {
  display: flex;
  flex: 1 1 auto;
  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: black;
  transition: color 0.2s ease;
  font-size: 14px;
  line-height: normal;
  padding-bottom: 5px;
}
.footer-link-section .footer-link-item a:hover {
  color: #e83573 !important;
  transition: color 0.2s ease;
}
.footer-link-section .footer-link-item p {
  padding-bottom: 0;
  color: black !important;
  font-size: 14px;
  line-height: normal;
}
.footer-link-section .footer-link-item .footer-link-title {
  font-weight: 500 !important;
  padding-bottom: 10px;
  font-size: 16px;
  color: black;
}
.footer-link-section .footer-link-item .footer-link-split {
  display: flex;
  flex-direction: column;
}
.footer-link-section .footer-link-item .footer-link-split p {
  font-size: 14px !important;
}
.footer-link-section .footer-link-item .footer-link-split:hover p {
  color: #e83573 !important;
  transition: color 0.2s ease;
}
.footer-link-section .footer-link-item .social-media-container {
  display: flex;
  gap: 10px;
}
.footer-link-section .footer-link-item .social-media-container .footer-icon {
  color: black;
  font-size: 18px;
  transition: color 0.2s ease;
}
.footer-link-section .footer-link-item .social-media-container .footer-icon:hover {
  color: #e83573 !important;
}
.footer-link-section .footer-link-item .footer-logo {
  max-height: 48px;
  max-width: 91px;
  transition: opacity 0.2s ease;
}
.footer-link-section .footer-link-item .footer-logo:hover {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}/*# sourceMappingURL=footer-main.css.map */