.office-address-map {
  background: #fff;
  text-align: center;
}

.office-address-map .wrap {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Map */
.office-address-map .office-map {
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
    .office-address-map .office-map {
        display: none;
    }
    .office-address-map {
        padding-top: 48px;
    }
}
.office-address-map .map-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Offices */
.office-address-map .office-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .office-address-map .office-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.office-address-map .office-item h3 {
  color: #1E3851;
text-align: center;
font-size: 20px;
font-weight: 600;
line-height: 32px;
}
@media (max-width: 768px) {
  .office-address-map .office-list {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
  }
}

.office-address-map .office-item p {
  color: #525252;
text-align: center;
font-size: 16px;
font-weight: 400;
line-height: 24px;
margin-bottom: 4px;
}
@media (max-width: 768px) {
  .office-address-map .office-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }
}
