.footer-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-block .contact-us {
  text-align: left;
  min-width: 200px;
}
.footer-block .contact-us div {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}
.footer-block .contact-us i {
  font-size: 30px;
}

@media screen and (max-width: 750px) {
  .footer-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .footer-block .contact-us {
    text-align: left;
    min-width: auto !important;
  }

  .footer-block .contact-us > div {
    justify-content: center;
  }
}
