
#footer {
  background-color: #000000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer h2 {
  margin-bottom: 40px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

#footer h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

#footer h2,
#footer h3 {
  color: #ffffff;
}

#footer .text-footer {
  overflow-wrap: normal;
  font-size: 16px;
}

#footer p {
  text-align: start;
}

#footer p,
#footer a {
  color: #f3f4f6;
}

#footer .footer_container {
  padding: 100px 15px;
  margin: auto;
  max-width: 1250px;
  width: 100%;
}

#footer .footer_container .footer_top {
  padding: 2em 0;
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: center;
}

#footer .footer_container .footer_top ul {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  padding-top: 10px;
  padding-left: 4px;
}

#footer .footer_container .footer_top ul li i {
  color: #f3f4f6;
  font-size: 30px;
}

  #footer .footer_container .footer_top .footer-box {
  padding: 0 0 3em 0;
}


@media screen and (max-width: 768px) {

  #footer .footer_container .footer_top ul.footer_links {
    flex-direction: column;
  }

  #footer .footer_container {
    padding: 60px 15px;
  }

  #footer .footer_container .footer_top {
    flex-direction: column;
    padding: 1em 0;
    gap: 0;
  }

  #footer .footer_container .footer_top ul li i {
    font-size: 25px;
  }
}

@media screen and (max-width: 575px) {
  #footer .footer_container .footer_top ul {
    gap: 35px;
  }

  #footer .footer_container .footer_top ul li i {
    font-size: 25px;
  }

  #footer .text-footer {
    font-size: 14px;
  }
}