/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.offices .offices-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.7rem;
}
.offices .heading {
  text-align: center;
  margin: 0 0 4.2rem;
}
.offices .office-image {
  overflow: hidden;
  border-radius: 0.9rem;
  margin: 0 0 2.2rem;
}
.offices .office-image img {
  display: block;
}
.offices .city {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 3rem;
  font-family: "Khand", sans-serif;
}
.offices .text {
  margin: 0.9rem 0 0;
}
.offices .text a {
  color: #000;
  text-decoration: none;
}
.offices .text a:hover {
  color: #E5007D;
}
.offices .link {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  display: block;
  margin: 0.9rem 0 0;
}
.offices .link:hover {
  color: #E5007D;
}

@media (max-width: 1280px) {
  .offices .heading {
    margin: 0 0 4rem;
  }
}
@media (max-width: 768px) {
  .offices .offices-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.7rem;
  }
  .offices .heading {
    margin: 0 0 3rem;
  }
}
@media (max-width: 450px) {
  .offices .heading {
    margin: 0 0 2.7rem;
  }
}