.office {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 10rem;
  overflow: hidden;
  container-type: inline-size;
}
.office .breadcrumb {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto 1.5rem;
}
.office .page-banner {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto;
}
.office_region {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto 8rem;
}
.office_region .section-heading {
  margin-bottom: 3rem;
}
.office_item {
  margin-bottom: 6rem;
}
.office_item:last-child {
  margin-bottom: 0;
}
.office_item_main {
  display: grid;
  grid-template-columns: 54rem 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2rem;
}
@container (max-width: 80rem) {
  .office_item_main {
    grid-template-columns: 1fr;
  }
}
.office_item_info .section-body p {
  line-height: 1.625;
}
.office_item_map {
  width: 100%;
  min-height: 30rem;
  background: #d9d9d9;
  border-radius: 0.7rem;
  overflow: hidden;
}
.office_item_map iframe {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border: 0;
  display: block;
}
@container (max-width: 80rem) {
  .office_item_map {
    min-height: 25rem;
  }
  .office_item_map iframe {
    min-height: 25rem;
  }
}
.office_item_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.office_item_gallery_photo {
  aspect-ratio: 320/209;
  border-radius: 2rem 0 2rem 0;
  overflow: hidden;
  box-shadow: -5px 5px 10px rgba(76, 172, 226, 0.2);
}
.office_item_gallery_photo_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@container (max-width: 80rem) {
  .office_item_gallery {
    grid-template-columns: 1fr;
  }
  .office_item_gallery .office_item_gallery_photo {
    grid-area: 1/1;
    opacity: 0;
    transition: opacity 0.6s ease;
    height: 25rem;
    width: 90%;
    margin: 0 auto;
  }
  .office_item_gallery .office_item_gallery_photo.is-active {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .office_item_gallery .office_item_gallery_photo {
    transition: none;
  }
}/*# sourceMappingURL=office.css.map */