.office-description, #other-office-locations {
  padding: 0 1em;
  max-width: 1024px;
}
@media screen and (max-width: 767px), screen and (max-height: 500px) {
  .office-description, #other-office-locations {
    max-width: 100%;
  }
}

section#office-page {
  padding: 0 1em;
  max-width: 760px;
}
@media screen and (max-width: 767px), screen and (max-height: 500px) {
  section#office-page {
    max-width: 100%;
  }
}

section#office-page, .office-description, #other-office-locations {
  padding: 0 1em;
  margin: 0 auto;
}

.office-description {
  display: grid;
  gap: 1em;
}

.slick-prev:before, .slick-next:before {
  color: black;
}

.slick-dots li {
  width: 0.725rem;
  height: 0.725rem;
}

.slick-dots li.slick-active button:before {
  color: #318185;
}

.slick-dots li button:before {
  font-size: 10px;
  width: 0.725rem;
  height: 0.725rem;
}

.close-button, .modal-close, .close-button-dark, .modal-close-dark,
.close-button-mobile,
.modal-close-mobile {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%3E%3Cline%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%2232%22%20y2%3D%2232%22%2F%3E%3Cline%20x1%3D%220%22%20y1%3D%2232%22%20x2%3D%2232%22%20y2%3D%220%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: var(--close-button-size, 18px) var(--close-button-size, 18px);
  cursor: pointer;
}

.modal-close, .modal-close-dark {
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-close-mobile {
  position: fixed;
  top: 74px;
  right: 10px;
}

.close-button-mobile, .modal-close-mobile {
  width: calc(var(--close-button-size, 18px) * 2);
  aspect-ratio: 1;
  border: 2px solid white;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px black;
}

.close-button, .modal-close, .close-button-dark, .modal-close-dark {
  width: var(--close-button-size, 18px);
  aspect-ratio: 1;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
.close-button:hover, .modal-close:hover, .close-button-dark:hover, .modal-close-dark:hover {
  opacity: 1;
}

.close-button-dark, .modal-close-dark {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%20stroke-width%3D%222%22%3E%3Cline%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%2232%22%20y2%3D%2232%22%2F%3E%3Cline%20x1%3D%220%22%20y1%3D%2232%22%20x2%3D%2232%22%20y2%3D%220%22%2F%3E%3C%2Fsvg%3E");
}

.close-button-o, .modal-close-circle {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.9);
  background-size: calc(var(--close-button-size, 18px) * 0.75) calc(var(--close-button-size, 18px) * 0.75);
  border-radius: 100%;
  opacity: 0.75;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.modal-container {
  display: flex;
  position: fixed;
  top: var(--nav-size, 64px);
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000001;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  outline: 0;
  padding: 1vh 0;
  contain: strict;
}
@media screen and (max-width: 767px), screen and (max-height: 500px) {
  .modal-container {
    padding: 0.5vh !important;
  }
}

.modal-container--hidden-nav {
  top: 0 !important;
}

.modal-dialog {
  position: relative;
  width: auto;
  pointer-events: auto;
  margin: auto;
  contain: content;
}

.modal-pop-in {
  animation-name: modal-pop-in;
  animation-duration: 500ms;
  animation-delay: 300ms;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.modal-backdrop {
  z-index: 1050;
}

.modal-backdrop--hidden-nav {
  z-index: 1000000 !important;
}

.modal-close {
  z-index: 9;
}
@media screen and (max-width: 767px), screen and (max-height: 500px) {
  .modal-close {
    display: none;
  }
}

@media screen and (max-width: 767px), screen and (max-height: 500px) {
  .modal-close-dark {
    display: none;
  }
}

.modal-close-mobile {
  z-index: 1000002;
}
@media screen and (min-width: 768px) and (min-height: 501px) {
  .modal-close-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px), screen and (max-height: 500px) {
  .modal-close-mobile {
    display: block;
  }
}
.modal-container--hidden-nav .modal-close-mobile {
  top: 10px !important;
}

.modal-dialog-light {
  background-color: white;
  padding: 1rem;
  border-radius: 3px;
}

@keyframes modal-pop-in {
  0% {
    opacity: 0;
    transform: scale(0);
    filter: blur(30px);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
body.controller-offices.action-show.no-header-image {
  padding-top: 0;
}

.header-image {
  display: none;
}

.map-wrapper {
  height: 350px;
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
}

section#office-page h1 {
  font-size: 1.5rem;
}
section#office-page .address-bar {
  display: inline-flex;
  align-items: center;
}
section#office-page .address-bar .address {
  color: #7d7d7d;
  font-size: 1.2rem;
}
section#office-page .address-bar .address .fa-stack {
  color: #ffd939;
}
section#office-page .address-bar .button {
  font-size: 0.6rem;
  font-weight: normal;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  margin-left: 1rem;
}
section#office-page .address-bar .button:hover {
  color: #fefefe;
}
section#office-page .find-us-photo {
  position: relative;
}
section#office-page .find-us-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(254, 254, 254, 0.8);
  padding: 1rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
section#office-page .slick-slider {
  margin-bottom: 5rem;
}

.office-birdview-container {
  display: flex;
  margin: 1rem 0;
}

.office-birdview-modal-link {
  margin-right: 1rem;
}
.office-birdview-modal-link:focus .office-birdview-thumb {
  filter: grayscale(0);
}

.office-birdview-thumb {
  width: 230px;
  height: 280px;
  border-radius: 3px;
  border: 1px solid #c6c9cc;
  background-position: center;
  filter: grayscale(1);
  transition: filter 0.3s ease-in-out;
}
.office-birdview-thumb:hover {
  filter: grayscale(0);
}

.office-birdview-thumb-cupertino {
  background-position: 485px -370px;
  background-size: 108% 119%;
}

.office-birdview-thumb-brooklyn {
  background-position: 741px -680px;
  background-size: 110% 119%;
}

.office-birdview-thumb-atlanta {
  background-position: -104px -30px;
  background-size: 250% 139%;
}

.office-birdview-modal-container img {
  max-height: 80vh;
}

.office-find-us {
  flex-grow: 1;
}
.office-find-us p {
  margin: 0 0 1rem;
}

.office-description {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px), screen and (max-height: 500px) {
  .office-description {
    grid-template-columns: 1fr;
  }
}
.office-description .find-us-google-maps-link .button {
  background-color: #14679e;
  padding: 1rem 2rem;
}
.office-description .office-description-info .button {
  background-color: #48A136;
}
.office-description .office-description-info .button:hover {
  background-color: rgb(54.9209302326, 122.8093023256, 41.1906976744);
}

#other-office-locations hr {
  margin-bottom: 1rem;
}
