.fas {
  font-size: 25px;
  color: black;
  margin-bottom: 10px;
}

.contact-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.contact-us .text {
  width: 90%;
}

.contact-us h2,
.contact-us h4 {
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: black;
  margin: 4px 0;
}

.contact-details {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.detail-title {
  color: black;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.detail {
  flex: 1;
}

.detail a,
.detail .description {
  color: gray;
  font-size: 16px;
  font-weight: 400;
}

.detail a:focus {
  color: gray;
  text-decoration: none;
}

.detail a:hover {
  color: gray;
  opacity: 0.5;
}

.map {
  width: 100%;
}

@media (max-width: 820px) {
  .contact-details {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    max-width: none;
    gap: 40px;
  }

  .detail {
    flex: 1 1 40%;
  }
}

@media (max-width: 480px) {
  .contact-details {
    width: 90%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}