/* WEB FOOTER GRID - DESKTOP & TABLET */
.footer-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 767px) {
  .footer-grid-container > div {
    width: 25%;
  }
}
/* END WEB FOOTER GRID - DESKTOP & TABLET */
/* ------------------------ */
/* WEB FOOTER - MOBILE */
@media (max-width: 576px) {
  .footer-grid-container {
    display: flex;
    flex-direction: column;
  }
  .footer-menu .list-item {
    white-space: normal;
  }
}
/* END WEB FOOTER - MOBILE */
/* ------------------------ */

#footer-social-container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #footer-social-container {
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
.footer-social-icon {
  align-items: center;
  border: 1px solid #222;
  border-radius: 50px;
  display: flex;
  height: 40px;
  justify-content: center;
  margin: 0 4px;
  width: 40px;
}
.footer-social-icon i {
  color: black;
  font-size: 1.3rem;
}
