.offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767.98px) {
  .offices {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .offices_item {
    border-bottom: 1px solid #E2E2E2;
    border-right: 1px solid #E2E2E2;
  }
  .offices_item:nth-child(1), .offices_item:nth-child(2) {
    border-top: 1px solid #E2E2E2;
  }
  .offices_item:nth-child(odd) {
    border-left: 1px solid #E2E2E2;
  }
}
@media (max-width: 767.98px) {
  .offices_item {
    border-bottom: 1px solid #E2E2E2;
    border-right: 1px solid #E2E2E2;
    border-left: 1px solid #E2E2E2;
  }
  .offices_item:nth-child(1) {
    border-top: 1px solid #E2E2E2;
  }
}
.offices_map {
  display: flex;
  align-items: center;
  width: fit-content;
}
.offices_map svg {
  transition: all 0.2s;
}
.offices_map:hover {
  color: #F28700;
}
.offices_map:hover svg {
  transform: translateX(5px);
}

/*# sourceMappingURL=offices.css.map */
