/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./blocks/grid/locations-grid/locations-grid.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************/
:root {
  --font-family-main: "area-normal", sans-serif;
  --font-family-display: "halyard-display", sans-serif;
  --font-family-body: "area-normal", sans-serif;
  --font-family-display-medium: var(--font-family-display);
  --font-family-body-regular: var(--font-family-body);
  --font-family-body-book: var(--font-family-body);
  --font-family-body-bold: var(--font-family-body);
  --font-weight-display-medium: 400;
  --font-weight-body-regular: 400;
  --font-weight-body-book: 400;
  --font-weight-body-bold: 700;
  --font-weight-body-black: 900;
  --color-primary: #00c6c2;
  --color-secondary: #052831;
  --color-teal: #00c6c2;
  --color-midnight-black: #052831;
  --color-putty: #fdf7ea;
  --color-white: #ffffff;
  --color-midnight-black-dark: #031d24;
  --color-black: #000000;
  --color-error: #dd0000;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  30% {
    stroke-dashoffset: 0;
  }
  45% {
    stroke-dashoffset: 0;
  }
  75% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
@keyframes svg-spin {
  0% {
    transform: scale(1) rotateY(0);
  }
  30% {
    transform: scale(1) rotateY(0);
  }
  35% {
    transform: scale(1.25) rotateY(0);
  }
  40% {
    transform: scale(1.25) rotateY(360deg);
  }
  45% {
    transform: scale(1) rotateY(360deg);
  }
  100% {
    transform: scale(1) rotateY(360deg);
  }
}
.locations-grid {
  background: var(--color-secondary);
  color: var(--color-white);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.locations-grid.block-theme-light {
  color: var(--color-midnight-black);
}
.locations-grid__heading, .locations-grid__description {
  width: 100%;
}
@media (max-width: 992px) {
  .locations-grid__heading, .locations-grid__description {
    width: 100%;
  }
}
.locations-grid__heading {
  margin-bottom: 0.5rem;
}
.locations-grid__description {
  margin-bottom: clamp(1.5rem, 3vw, 3.75rem);
}
.locations-grid__regions > .locations-grid__region:not(:last-child) {
  padding-bottom: 3.5rem;
}
.locations-grid__region {
  position: relative;
  padding-bottom: 0;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .locations-grid__region {
    padding-bottom: 3rem;
  }
}
.locations-grid__region__bg {
  position: absolute;
  top: -80px;
  z-index: 0;
}
@media only screen and (max-width: 840px) {
  .locations-grid__region__bg {
    width: calc(100vw - 20px);
    height: auto;
  }
}
.locations-grid__region__bg--l {
  left: -40px;
}
@media only screen and (max-width: 840px) {
  .locations-grid__region__bg--l {
    left: -20px;
  }
}
.locations-grid__region__bg--r {
  right: -40px;
}
@media only screen and (max-width: 840px) {
  .locations-grid__region__bg--r {
    right: -20px;
  }
}
.locations-grid__region__heading {
  position: relative;
  z-index: 5;
  margin-bottom: clamp(2rem, 3vw, 4.5rem);
}
.locations-grid__offices {
  position: relative;
  z-index: 6;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media only screen and (max-width: 1180px) {
  .locations-grid__offices {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .locations-grid__offices {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .locations-grid__offices {
    grid-template-columns: 1fr;
  }
}
.locations-grid__offices__office figure {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}
.locations-grid__offices__office figure:before {
  content: "";
  width: 100%;
  height: 65.1162790698%;
  background: linear-gradient(180deg, rgba(3, 29, 36, 0) 0%, rgb(3, 29, 36) 100%);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media only screen and (max-width: 940px) {
  .locations-grid__offices__office figure:before {
    height: 100%;
  }
}
.locations-grid__offices__office figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .locations-grid__offices__office figure img {
    aspect-ratio: 3/4;
    max-height: 430px;
  }
}
.locations-grid__offices__office__details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 1.75rem);
}
.locations-grid__offices__office__details p {
  margin-bottom: 0.5rem;
}
.locations-grid__offices__office__details address {
  font-style: normal;
  max-width: 65%;
}
.locations-grid__offices__office__details a {
  color: var(--color-white);
  text-decoration: none;
}
.locations-grid__offices__office__details a:hover {
  color: var(--color-white);
  text-decoration: underline;
}
.locations-grid__offices__office__directions {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 1.75rem);
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .locations-grid__offices__office__directions {
    font-size: 0;
  }
}

body.page-id-644 main {
  background: var(--color-secondary);
  padding-bottom: 5rem;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  body.page-id-644 main {
    padding-bottom: 3.5rem;
  }
}
