.color-blue-darkest {
  color: #001323;
}

.color-blue-darker {
  color: #081b2a;
}

.color-blue-dark {
  color: #0f2130;
}

.color-blue-light {
  color: #91cafd;
}

.color-white {
  color: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: #001323;
  color: #ffffff;
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: clamp(2rem, 7vw, 80px);
}

h2,
.h2 {
  font-size: clamp(1.75rem, 6vw, 60px);
}

h3,
.h3 {
  font-size: clamp(1.5rem, 5vw, 40px);
}

h4,
.h4 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.display {
  font-size: clamp(2.5rem, 9vw, 100px);
  line-height: 1.1;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

a {
  color: #91cafd;
  text-decoration: underline;
}
a:hover, a:focus-visible {
  color: #91cafd;
}

ul,
ol {
  padding-left: 1rem;
}
ul li,
ol li {
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

blockquote {
  border-left: 4px solid #0f2130;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  padding-left: 1rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}

code,
pre {
  font-family: monospace;
  font-size: 0.875rem;
}

code {
  background-color: #081b2a;
  border-radius: 3px;
  padding: 0.1em 0.4em;
}

pre {
  background-color: #081b2a;
  overflow-x: auto;
  padding: 1rem;
}
pre code {
  background-color: transparent;
  padding: 0;
}

hr {
  border: none;
  border-top: 1px solid #0f2130;
}

.anim-fade-in {
  opacity: 0;
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}
.anim-fade-in.is-visible {
  opacity: 1;
}

.anim-fade-from-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms, transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}
.anim-fade-from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-fade-from-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms, transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}
.anim-fade-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-fade-from-top {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms, transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}
.anim-fade-from-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-from-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms, transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}
.anim-fade-from-bottom.is-visible {
  opacity: 1;
  transform: translateY(0);
}

h1.anim-line-reveal,
h2.anim-line-reveal,
h3.anim-line-reveal,
h4.anim-line-reveal,
h5.anim-line-reveal,
h6.anim-line-reveal {
  visibility: hidden;
}
h1.anim-line-reveal .word,
h2.anim-line-reveal .word,
h3.anim-line-reveal .word,
h4.anim-line-reveal .word,
h5.anim-line-reveal .word,
h6.anim-line-reveal .word {
  display: inline-block;
  margin-right: 0.25em;
  white-space: nowrap;
}
h1.anim-line-reveal .char,
h2.anim-line-reveal .char,
h3.anim-line-reveal .char,
h4.anim-line-reveal .char,
h5.anim-line-reveal .char,
h6.anim-line-reveal .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1ch);
  transition: opacity 700ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 700ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
h1.anim-line-reveal .ws,
h2.anim-line-reveal .ws,
h3.anim-line-reveal .ws,
h4.anim-line-reveal .ws,
h5.anim-line-reveal .ws,
h6.anim-line-reveal .ws {
  display: none;
}
h1.anim-line-reveal.is-visible,
h2.anim-line-reveal.is-visible,
h3.anim-line-reveal.is-visible,
h4.anim-line-reveal.is-visible,
h5.anim-line-reveal.is-visible,
h6.anim-line-reveal.is-visible {
  visibility: visible;
}
h1.anim-line-reveal.is-visible .char,
h2.anim-line-reveal.is-visible .char,
h3.anim-line-reveal.is-visible .char,
h4.anim-line-reveal.is-visible .char,
h5.anim-line-reveal.is-visible .char,
h6.anim-line-reveal.is-visible .char {
  opacity: 1;
  transform: translateY(0);
}

.anim-draw-line {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}
.anim-draw-line.is-visible {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade-in,
  .anim-fade-from-left,
  .anim-fade-from-right,
  .anim-fade-from-top,
  .anim-fade-from-bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .anim-draw-line {
    transform: scaleX(1);
    transition: none;
  }
  h1.anim-line-reveal,
  h2.anim-line-reveal,
  h3.anim-line-reveal,
  h4.anim-line-reveal,
  h5.anim-line-reveal,
  h6.anim-line-reveal {
    visibility: visible;
  }
  h1.anim-line-reveal .char,
  h2.anim-line-reveal .char,
  h3.anim-line-reveal .char,
  h4.anim-line-reveal .char,
  h5.anim-line-reveal .char,
  h6.anim-line-reveal .char {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  max-width: 1600px;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 992px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

* {
  scroll-margin-top: 150px;
}

.intro-overlay {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    display: none;
  }
}

.intro-overlay__white {
  background-color: #ffffff;
  inset: 0;
  position: absolute;
  z-index: 0;
}

.intro-overlay__blue {
  background-color: #001323;
  bottom: -100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
  transition: bottom 1400ms cubic-bezier(0.4, 0, 0.2, 1), top 1400ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.intro-overlay.is-sliding .intro-overlay__blue {
  bottom: 0;
  top: 0;
}

.intro-overlay__logo-wrap {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.intro-overlay__logo-wrap--dark {
  opacity: 0;
  z-index: 2;
}

.intro-overlay__logo-wrap--white {
  clip-path: inset(100vh 0 0 0);
  opacity: 0;
  z-index: 3;
}

.intro-overlay__logo {
  display: block;
  max-height: var(--img-max-h, 50px);
  width: auto;
}
@media (min-width: 768px) {
  .intro-overlay__logo {
    min-height: var(--img-min-h, 50px);
  }
}

.intro-overlay.is-fading {
  opacity: 0;
  transition: opacity 800ms ease-in-out;
}

.intro-overlay.is-done {
  display: none;
}

button {
  font-size: 0.75rem;
}

.button {
  border: 2px solid transparent;
  border-radius: 0.1rem;
  cursor: pointer;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.6;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
.button.button-wide {
  min-width: 200px;
}
.button.button-darkest-blue {
  background-color: #001323;
  border-color: #001323;
  color: #ffffff;
}
.button.button-darkest-blue:hover, .button.button-darkest-blue:focus-visible {
  background-color: #081b2a;
  border-color: #081b2a;
  color: #ffffff;
}
.button.button-darker-blue {
  background-color: #081b2a;
  border-color: #081b2a;
  color: #ffffff;
}
.button.button-darker-blue:hover, .button.button-darker-blue:focus-visible {
  background-color: #0f2130;
  border-color: #0f2130;
  color: #ffffff;
}
.button.button-dark-blue {
  background-color: #0f2130;
  border-color: #0f2130;
  color: #ffffff;
}
.button.button-dark-blue:hover, .button.button-dark-blue:focus-visible {
  background-color: #081b2a;
  border-color: #081b2a;
  color: #ffffff;
}
.button.button-light-blue {
  background-color: #91cafd;
  border-color: #91cafd;
  color: #001323;
}
.button.button-light-blue:hover, .button.button-light-blue:focus-visible {
  background-color: rgb(94.9107142857, 177.8660714286, 252.0892857143);
  border-color: rgb(94.9107142857, 177.8660714286, 252.0892857143);
  color: #001323;
}
.button.button-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #001323;
}
.button.button-white:hover, .button.button-white:focus-visible {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.85);
  color: #001323;
}
.button.button-gray {
  background-color: #e8e8e8;
  border-color: #e8e8e8;
  color: #001323;
}
.button.button-gray:hover, .button.button-gray:focus-visible {
  background-color: #d4d4d4;
  border-color: #d4d4d4;
  color: #001323;
}

.site-header {
  background-color: transparent;
  left: 0;
  padding-bottom: 2rem;
  padding-top: 2rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 250ms ease-out;
  z-index: 100;
}
@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.scrolled .site-header,
.nav-dropdown-open .site-header,
.nav-open .site-header {
  background-color: var(--site-header-bg, #001323);
}

.site-logo {
  display: block;
  max-height: 20px;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .site-logo {
    max-height: 28px;
  }
}

.site-title {
  color: #ffffff;
  font-size: 60px;
}

.site-description {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

.site-header__phone {
  align-self: center;
  white-space: nowrap;
}

.main-navigation {
  height: 100%;
}

.main-navigation > div > ul {
  align-items: center;
  display: flex;
  gap: 2rem;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation > div > ul > li {
  height: 100%;
  margin: 0;
  position: relative;
}

.main-navigation > div > ul > li > a {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 0.875rem;
  gap: 0.35em;
  height: 100%;
  position: relative;
  text-decoration: none;
  transition: color 150ms ease-out;
  white-space: nowrap;
}
.main-navigation > div > ul > li > a:hover {
  color: #ffffff;
}
@media (prefers-reduced-motion: reduce) {
  .main-navigation > div > ul > li > a {
    transition: none;
  }
}

.main-navigation > div > ul > li.menu-item-has-children > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 8px;
  transition: transform 200ms ease-out;
  width: 12px;
}

.main-navigation > div > ul > li.menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
}

.main-navigation .sub-menu {
  background-color: var(--site-header-bg, #081b2a);
  display: block;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 200px;
  opacity: 0;
  padding: 2rem 0 1rem;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(-6px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}
.main-navigation .sub-menu li {
  margin: 0;
}
.main-navigation .sub-menu a {
  color: #ffffff;
  display: block;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: color 150ms ease-out;
  white-space: nowrap;
}
.main-navigation .sub-menu a:hover {
  color: #91cafd;
}
@media (prefers-reduced-motion: reduce) {
  .main-navigation .sub-menu {
    transition: none;
  }
}

.main-navigation > div > ul > li.is-open > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header__hamburger {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  padding: 0.25rem;
}

.site-header__hamburger-bar {
  background-color: #ffffff;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: opacity 200ms ease-out, transform 200ms ease-out;
  width: 24px;
}
@media (prefers-reduced-motion: reduce) {
  .site-header__hamburger-bar {
    transition: none;
  }
}

.nav-open .site-header__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .site-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.nav-open .site-header__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

html.nav-open {
  overflow-y: hidden;
}

.mobile-menu {
  background-color: var(--site-header-bg, #001323);
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-8px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
  z-index: 99;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
}
.mobile-menu[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  padding-top: var(--header-h, 60px);
}

.mobile-menu__nav {
  flex: 1;
}
.mobile-menu__nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__nav li {
  margin: 0;
}
.mobile-menu__nav a {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 1.35rem;
  font-weight: 600;
  justify-content: space-between;
  padding: 1rem 0;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-menu__nav a:hover {
  color: #91cafd;
}
.mobile-menu__nav .menu-item-has-children > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.591' height='11.061' viewBox='0 0 6.591 11.061'%3E%3Cpath d='M-1414.961-52.451l5%2C5%2C5-5' transform='translate(52.981 -1404.431) rotate(-90)' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 11px;
  width: 7px;
}
.mobile-menu__nav .sub-menu {
  display: none;
}

.mobile-submenu {
  background-color: var(--site-header-bg, #001323);
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  overflow-y: auto;
  padding: 0 2rem 2rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: var(--header-h, 60px);
  transform: translateX(100%);
  transition: transform 300ms ease-out;
  z-index: 99;
}
.mobile-submenu.is-open {
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-submenu__back {
  align-items: center;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 1.35rem;
  font-weight: 600;
  gap: 1rem;
  margin-bottom: 0;
  padding: 1rem 0;
  text-transform: uppercase;
}
.mobile-submenu__back::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.591' height='11.061' viewBox='0 0 6.591 11.061'%3E%3Cpath d='M-1414.961-52.451l5%2C5%2C5-5' transform='translate(52.981 -1404.431) rotate(-90)' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 11px;
  transform: rotate(180deg);
  width: 7px;
}
.mobile-submenu__back:hover {
  color: #91cafd;
}

.mobile-submenu__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-submenu__list a {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 0;
  text-decoration: none;
  text-transform: none;
}
.mobile-submenu__list a:hover {
  color: #91cafd;
}

.mobile-menu__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 2rem;
}

.mobile-menu__utility {
  margin-bottom: 2rem;
}
.mobile-menu__utility ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__utility li {
  margin: 0;
}
.mobile-menu__utility a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
}
.mobile-menu__utility a:hover {
  color: #ffffff;
}

.mobile-menu__phone {
  display: block;
  font-size: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.scrolled.nav-dropdown-open .main-navigation > div > ul > li.current-menu-item > a::before,
.scrolled.nav-dropdown-open .main-navigation > div > ul > li.current-menu-ancestor > a::before {
  opacity: 0;
}

.scrolled .main-navigation > div > ul > li.current-menu-item > a::before,
.scrolled .main-navigation > div > ul > li.current-menu-ancestor > a::before {
  background-color: #91cafd;
  bottom: 0;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 2rem);
  width: 24px;
  z-index: 1;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.main-navigation a {
  text-decoration: none;
}

.site-footer {
  background-color: #001323;
  color: #ffffff;
  font-size: 0.875rem;
  overflow: hidden;
  position: relative;
}

.site-footer__bg-icon {
  bottom: calc(-10% - 64px);
  left: calc(-2% - 64px);
  pointer-events: none;
  position: absolute;
  width: 420px;
  z-index: 0;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.site-footer__logo-link {
  display: inline-block;
}

.site-footer__logo {
  height: auto;
  max-height: 60px;
  width: auto;
}

.site-footer__address {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.6;
}
.site-footer__address a {
  color: inherit;
  text-decoration: none;
}
.site-footer__address a:hover {
  color: inherit;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .site-footer__menu {
    flex-direction: row;
    gap: 2rem;
  }
}
.site-footer__menu a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease-out;
}
.site-footer__menu a:hover {
  color: #91cafd;
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__menu a {
    transition: none;
  }
}

.site-footer__phone {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer__phone {
    display: inline-flex;
    width: auto;
  }
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.site-footer__utility-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__utility-menu a {
  color: #ffffff;
  font-size: 0.875rem;
  opacity: 0.75;
  text-decoration: underline;
  transition: opacity 150ms ease-out;
}
.site-footer__utility-menu a:hover {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__utility-menu a {
    transition: none;
  }
}

.site-footer__copyright {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.site-footer__contact-cta {
  color: #ffffff;
  font-size: 0.875rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .site-footer__contact-cta {
    margin-top: 8rem;
  }
}
.site-footer__contact-cta {
  margin-bottom: 0;
}
.site-footer__contact-cta a {
  color: inherit;
  text-decoration: underline;
}
.site-footer__contact-cta a:hover {
  opacity: 0.75;
}

.entry-title {
  margin-bottom: 0.5rem;
}

.entry-meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.entry-content {
  margin-top: 1rem;
}
.entry-content p {
  margin-bottom: 1rem;
}

.pagination {
  margin-top: 2rem;
}

.error-404 {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--header-h, 80px));
  padding: 3rem 0;
  text-align: center;
}

.error-404__number {
  color: #ffffff;
  font-size: min(20vw, 200px);
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 3rem;
}

.error-404__message {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.error-404__back {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 150ms ease-out;
}
.error-404__back:hover {
  color: #91cafd;
}
@media (prefers-reduced-motion: reduce) {
  .error-404__back {
    transition: none;
  }
}

.mt-6 {
  margin-top: 4.5rem !important;
}

.mt-7 {
  margin-top: 6rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mt-9 {
  margin-top: 10rem !important;
}

.mb-6 {
  margin-bottom: 4.5rem !important;
}

.mb-7 {
  margin-bottom: 6rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mb-9 {
  margin-bottom: 10rem !important;
}

.my-6 {
  margin-bottom: 4.5rem !important;
  margin-top: 4.5rem !important;
}

.my-7 {
  margin-bottom: 6rem !important;
  margin-top: 6rem !important;
}

.my-8 {
  margin-bottom: 8rem !important;
  margin-top: 8rem !important;
}

.my-9 {
  margin-bottom: 10rem !important;
  margin-top: 10rem !important;
}

.pt-6 {
  padding-top: 4.5rem !important;
}

.pt-7 {
  padding-top: 6rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.pt-9 {
  padding-top: 10rem !important;
}

.pb-6 {
  padding-bottom: 4.5rem !important;
}

.pb-7 {
  padding-bottom: 6rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pb-9 {
  padding-bottom: 10rem !important;
}

.py-6 {
  padding-bottom: 4.5rem !important;
  padding-top: 4.5rem !important;
}

.py-7 {
  padding-bottom: 6rem !important;
  padding-top: 6rem !important;
}

.py-8 {
  padding-bottom: 8rem !important;
  padding-top: 8rem !important;
}

.py-9 {
  padding-bottom: 10rem !important;
  padding-top: 10rem !important;
}

@media (min-width: 576px) {
  .mt-sm-6 {
    margin-top: 4.5rem !important;
  }
  .mt-sm-7 {
    margin-top: 6rem !important;
  }
  .mt-sm-8 {
    margin-top: 8rem !important;
  }
  .mt-sm-9 {
    margin-top: 10rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 10rem !important;
  }
  .my-sm-6 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important;
  }
  .my-sm-7 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
  }
  .my-sm-8 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }
  .my-sm-9 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }
  .pt-sm-6 {
    padding-top: 4.5rem !important;
  }
  .pt-sm-7 {
    padding-top: 6rem !important;
  }
  .pt-sm-8 {
    padding-top: 8rem !important;
  }
  .pt-sm-9 {
    padding-top: 10rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 10rem !important;
  }
  .py-sm-6 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }
  .py-sm-7 {
    padding-bottom: 6rem !important;
    padding-top: 6rem !important;
  }
  .py-sm-8 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }
  .py-sm-9 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }
}
@media (min-width: 768px) {
  .mt-md-6 {
    margin-top: 4.5rem !important;
  }
  .mt-md-7 {
    margin-top: 6rem !important;
  }
  .mt-md-8 {
    margin-top: 8rem !important;
  }
  .mt-md-9 {
    margin-top: 10rem !important;
  }
  .mb-md-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-md-7 {
    margin-bottom: 6rem !important;
  }
  .mb-md-8 {
    margin-bottom: 8rem !important;
  }
  .mb-md-9 {
    margin-bottom: 10rem !important;
  }
  .my-md-6 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important;
  }
  .my-md-7 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
  }
  .my-md-8 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }
  .my-md-9 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }
  .pt-md-6 {
    padding-top: 4.5rem !important;
  }
  .pt-md-7 {
    padding-top: 6rem !important;
  }
  .pt-md-8 {
    padding-top: 8rem !important;
  }
  .pt-md-9 {
    padding-top: 10rem !important;
  }
  .pb-md-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-md-7 {
    padding-bottom: 6rem !important;
  }
  .pb-md-8 {
    padding-bottom: 8rem !important;
  }
  .pb-md-9 {
    padding-bottom: 10rem !important;
  }
  .py-md-6 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }
  .py-md-7 {
    padding-bottom: 6rem !important;
    padding-top: 6rem !important;
  }
  .py-md-8 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }
  .py-md-9 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }
}
@media (min-width: 992px) {
  .mt-lg-6 {
    margin-top: 4.5rem !important;
  }
  .mt-lg-7 {
    margin-top: 6rem !important;
  }
  .mt-lg-8 {
    margin-top: 8rem !important;
  }
  .mt-lg-9 {
    margin-top: 10rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 4.5rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 10rem !important;
  }
  .my-lg-6 {
    margin-bottom: 4.5rem !important;
    margin-top: 4.5rem !important;
  }
  .my-lg-7 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
  }
  .my-lg-8 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }
  .my-lg-9 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }
  .pt-lg-6 {
    padding-top: 4.5rem !important;
  }
  .pt-lg-7 {
    padding-top: 6rem !important;
  }
  .pt-lg-8 {
    padding-top: 8rem !important;
  }
  .pt-lg-9 {
    padding-top: 10rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 4.5rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 10rem !important;
  }
  .py-lg-6 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }
  .py-lg-7 {
    padding-bottom: 6rem !important;
    padding-top: 6rem !important;
  }
  .py-lg-8 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }
  .py-lg-9 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }
}
.c-page-builder__row:not(.c-page-builder__row--full-width) .container > .row {
  --bs-gutter-x: 48px;
}

@media (min-width: 992px) {
  .c-page-builder__row:not(.c-page-builder__row--full-width) .container > .row {
    --bs-gutter-x: 80px;
  }
}
.c-page-builder__row--full-width .container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.c-page-builder__row--full-width .container > .row {
  --bs-gutter-x: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.c-page-builder__row--full-width .container > .row > [class*=col] {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .px-md-gutter {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }
}
@media (min-width: 992px) {
  .px-lg-gutter {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }
}
.c-page-builder__corner {
  height: 120px;
  pointer-events: none;
  position: absolute;
  width: auto;
  z-index: 0;
}
.c-page-builder__corner--top {
  top: 0;
  bottom: auto;
}
.c-page-builder__corner--bottom {
  top: auto;
  bottom: 0;
}
.c-page-builder__corner--left {
  left: 0;
  right: auto;
  transform: none;
}
.c-page-builder__corner--right {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}
.c-page-builder__corner--top.c-page-builder__corner--left {
  transform: none;
}
.c-page-builder__corner--top.c-page-builder__corner--right {
  transform: scaleX(-1);
}
.c-page-builder__corner--bottom.c-page-builder__corner--left {
  transform: scaleY(-1);
}
.c-page-builder__corner--bottom.c-page-builder__corner--right {
  transform: scale(-1, -1);
}
.c-page-builder__corner--none {
  display: none;
}
@media (min-width: 768px) {
  .c-page-builder__corner.c-page-builder__corner-md--left {
    display: block;
    left: 0;
    right: auto;
  }
  .c-page-builder__corner.c-page-builder__corner-md--right {
    display: block;
    left: auto;
    right: 0;
  }
  .c-page-builder__corner.c-page-builder__corner-md--none {
    display: none;
  }
}
@media (min-width: 992px) {
  .c-page-builder__corner.c-page-builder__corner-lg--left {
    display: block;
    left: 0;
    right: auto;
  }
  .c-page-builder__corner.c-page-builder__corner-lg--right {
    display: block;
    left: auto;
    right: 0;
  }
  .c-page-builder__corner.c-page-builder__corner-lg--none {
    display: none;
  }
}

.c-page-builder__row {
  position: relative;
  width: 100%;
}
.c-page-builder__row--has-bg {
  overflow: hidden;
}
.c-page-builder__row--has-bg > .container {
  position: relative;
  z-index: 2;
}
.c-page-builder__row--full-height {
  display: flex;
  flex-direction: column;
}
.c-page-builder__row--full-height > .container {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.c-page-builder__row--full-height > .container > .row {
  flex: 1;
}

.c-page-builder__overlay {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.c-page-builder__bg-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.c-page-builder__slideshow {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.c-page-builder__slideshow-img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 1000ms ease-in-out;
  width: 100%;
}
.c-page-builder__slideshow-img.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .c-page-builder__slideshow-img {
    transition: none;
  }
}

.c-page-builder__video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .c-page-builder__video {
    display: none;
  }
}

.c-block-text__content > *:last-child {
  margin-bottom: 0;
}

.c-block-image {
  overflow: hidden;
}
.c-block-image img.is-cover {
  min-height: var(--img-min-h);
}
@media (min-width: 768px) {
  .c-block-image img:not(.is-cover) {
    min-height: var(--img-min-h);
  }
}

.rounded-start-pill {
  border-bottom-left-radius: 12rem !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 12rem !important;
  border-top-right-radius: 0 !important;
}

.rounded-end-pill {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 12rem !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 12rem !important;
}

.rounded-top-pill {
  border-top-left-radius: 12rem !important;
  border-top-right-radius: 12rem !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-tl-pill {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 12rem !important;
  border-top-right-radius: 0 !important;
}

.rounded-tr-pill {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 12rem !important;
}

.rounded-bl-pill {
  border-bottom-left-radius: 12rem !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-br-pill {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 12rem !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

@media (min-width: 768px) {
  .rounded-md-0 {
    border-radius: 0 !important;
  }
  .rounded-md-1 {
    border-radius: var(--bs-border-radius-sm) !important;
  }
  .rounded-md-2 {
    border-radius: var(--bs-border-radius) !important;
  }
  .rounded-md-3 {
    border-radius: var(--bs-border-radius-lg) !important;
  }
  .rounded-md-pill {
    border-radius: 12rem !important;
  }
  .rounded-md-start-pill {
    border-bottom-left-radius: 12rem !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 12rem !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-md-end-pill {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 12rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 12rem !important;
  }
  .rounded-md-top-pill {
    border-top-left-radius: 12rem !important;
    border-top-right-radius: 12rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-md-tl-pill {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 12rem !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-md-tr-pill {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 12rem !important;
  }
  .rounded-md-bl-pill {
    border-bottom-left-radius: 12rem !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-md-br-pill {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 12rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
@media (min-width: 992px) {
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
  .rounded-lg-1 {
    border-radius: var(--bs-border-radius-sm) !important;
  }
  .rounded-lg-2 {
    border-radius: var(--bs-border-radius) !important;
  }
  .rounded-lg-3 {
    border-radius: var(--bs-border-radius-lg) !important;
  }
  .rounded-lg-pill {
    border-radius: 12rem !important;
  }
  .rounded-lg-start-pill {
    border-bottom-left-radius: 12rem !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 12rem !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-lg-end-pill {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 12rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 12rem !important;
  }
  .rounded-lg-top-pill {
    border-top-left-radius: 12rem !important;
    border-top-right-radius: 12rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-lg-tl-pill {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 12rem !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-lg-tr-pill {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 12rem !important;
  }
  .rounded-lg-bl-pill {
    border-bottom-left-radius: 12rem !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-lg-br-pill {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 12rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.c-block-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .c-block-stats {
    align-items: stretch;
    flex-direction: row;
  }
}

.c-block-stats__item {
  flex: 1;
  padding: 2rem 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .c-block-stats__item + .c-block-stats__item {
    border-left: 1px solid var(--stats-divider-color, #0f2130);
  }
}

.c-block-stats__value {
  color: var(--stats-text-color, #ffffff);
  font-family: "eurostile", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  position: relative;
}
.c-block-stats__value::after {
  background-color: var(--stats-divider-color, #0f2130);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  width: 50vw;
}
@media (min-width: 768px) {
  .c-block-stats__value::after {
    display: none;
  }
}
.c-block-stats__item:nth-child(odd) .c-block-stats__value::after {
  left: 0;
  transform: translateX(calc(-100% - 1rem));
}
.c-block-stats__item:nth-child(even) .c-block-stats__value::after {
  left: auto;
  right: 0;
  transform: translateX(calc(100% + 1rem));
}

.c-block-stats__prefix {
  font-size: 0.6em;
  vertical-align: middle;
}

.c-block-stats__descriptor {
  color: var(--stats-text-color, rgba(255, 255, 255, 0.55));
  font-size: 0.875rem;
  opacity: 0.75;
}

.c-block-contact-form--tabbed .c-block-contact-form__tabs {
  display: flex;
  border-bottom: 1px solid #0f2130;
  margin-bottom: 2rem;
}
.c-block-contact-form--tabbed .c-block-contact-form__tab {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  flex: 1;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: -1px;
  padding: 0.5rem 1rem;
  text-align: center;
  transition: color 150ms ease-out, border-color 150ms ease-out;
}
.c-block-contact-form--tabbed .c-block-contact-form__tab:hover {
  color: #ffffff;
}
.c-block-contact-form--tabbed .c-block-contact-form__tab.is-active {
  border-bottom-color: #91cafd;
  color: #ffffff;
}
@media (prefers-reduced-motion: reduce) {
  .c-block-contact-form--tabbed .c-block-contact-form__tab {
    transition: none;
  }
}
.c-block-contact-form--tabbed.c-block-contact-form--light .c-block-contact-form__tabs {
  border-bottom-color: rgba(26, 26, 26, 0.15);
}
.c-block-contact-form--tabbed.c-block-contact-form--light .c-block-contact-form__tab {
  color: rgba(26, 26, 26, 0.45);
}
.c-block-contact-form--tabbed.c-block-contact-form--light .c-block-contact-form__tab:hover {
  color: #1a1a1a;
}
.c-block-contact-form--tabbed.c-block-contact-form--light .c-block-contact-form__tab.is-active {
  border-bottom-color: #004b8d;
  color: #0f2130;
}
.c-block-contact-form--tabbed .c-block-contact-form__panel[hidden] {
  display: none;
}

.c-block-contact-form {
  container-type: inline-size;
}
.c-block-contact-form .wpcf7-form-control-wrap {
  display: block;
}
.c-block-contact-form br {
  display: none;
}
.c-block-contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.c-block-contact-form form > * {
  width: 100%;
}
.c-block-contact-form .width-half {
  flex-grow: 1;
  width: 100%;
}
@container (min-width: 500px) {
  .c-block-contact-form .width-half {
    width: calc(50% - 2rem / 2);
  }
}
.c-block-contact-form .width-full {
  width: 100%;
}
.c-block-contact-form .row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@container (max-width: 499px) {
  .c-block-contact-form .row {
    flex: 1;
  }
}
.c-block-contact-form .row > * {
  width: 100%;
}
.c-block-contact-form .half {
  flex-grow: 1;
  width: 100%;
}
@container (min-width: 500px) {
  .c-block-contact-form .half {
    width: calc(50% - 2rem / 2);
  }
}
.c-block-contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  gap: 0.5rem;
  padding-bottom: 2rem;
  width: 100%;
}
.c-block-contact-form input:not([type=submit]),
.c-block-contact-form textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  padding: 0.5rem 0;
  transition: border-color 150ms ease-out;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .c-block-contact-form input:not([type=submit]),
  .c-block-contact-form textarea {
    transition: none;
  }
}
.c-block-contact-form textarea {
  height: 8rem;
  min-height: unset;
  resize: vertical;
}
.c-block-contact-form input[type=submit] {
  appearance: none;
  background-color: #91cafd;
  border: 2px solid #91cafd;
  border-radius: 0;
  color: #001323;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  transition: background-color 150ms ease-out, border-color 150ms ease-out;
}
.c-block-contact-form input[type=submit]:hover, .c-block-contact-form input[type=submit]:focus-visible {
  background-color: rgb(94.9107142857, 177.8660714286, 252.0892857143);
  border-color: rgb(94.9107142857, 177.8660714286, 252.0892857143);
  color: #001323;
}
@media (prefers-reduced-motion: reduce) {
  .c-block-contact-form input[type=submit] {
    transition: none;
  }
}
.c-block-contact-form--dark {
  color: #ffffff;
}
.c-block-contact-form--dark input:not([type=submit]),
.c-block-contact-form--dark textarea {
  border-bottom-color: #ffffff;
  color: #ffffff;
}
.c-block-contact-form--dark input:not([type=submit]):focus,
.c-block-contact-form--dark textarea:focus {
  border-bottom-color: #91cafd;
}
.c-block-contact-form--dark label {
  color: #ffffff;
}
.c-block-contact-form--light {
  color: #1a1a1a;
}
.c-block-contact-form--light input:not([type=submit]),
.c-block-contact-form--light textarea {
  border-bottom-color: rgba(26, 26, 26, 0.3);
  color: #1a1a1a;
}
.c-block-contact-form--light input:not([type=submit]):focus,
.c-block-contact-form--light textarea:focus {
  border-bottom-color: #91cafd;
}
.c-block-contact-form--light label {
  color: #1a1a1a;
}

.c-block-divider {
  display: block;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom: 0;
}

.c-block-divider-v {
  display: flex;
  justify-content: var(--divider-v-align, flex-start);
}

.c-block-divider-v__line {
  background-color: currentColor;
  height: 80px;
  width: 1px;
}

.c-block-interactive-map {
  height: calc(100vh - var(--header-h, 0px));
  overflow: hidden;
  position: relative;
  width: 100vw;
}
.c-block-interactive-map--static {
  height: auto;
  overflow: visible;
}

@keyframes im-hint-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.c-block-interactive-map__hint {
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity 400ms ease;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
.c-block-interactive-map__hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.c-block-interactive-map__hint-icon {
  animation: im-hint-bob 1.2s ease-in-out 0.5s infinite;
  color: #ffffff;
  height: 52px;
  width: 52px;
}

.c-block-interactive-map__hint-label {
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c-block-interactive-map__stage {
  cursor: grab;
  position: absolute;
  transform-origin: top left;
  transition: transform 400ms ease-in-out;
  touch-action: none;
}
.c-block-interactive-map__stage.is-dragging {
  cursor: grabbing;
  transition: none;
}
.c-block-interactive-map--poi-open .c-block-interactive-map__stage {
  cursor: default;
}
.c-block-interactive-map--static .c-block-interactive-map__stage {
  cursor: default;
  position: relative;
  touch-action: auto;
  transform: none !important;
  transition: none;
  width: 100% !important;
}

.c-block-interactive-map__map {
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
  width: 100%;
}

@keyframes im-pin-pulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.5);
  }
}
.c-block-interactive-map__pin {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  height: 14px;
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 150ms ease-out;
  width: 14px;
}
.c-block-interactive-map__pin::before {
  animation: im-pin-pulse 1.8s ease-out infinite;
  background: #ffffff;
  border-radius: 50%;
  content: "";
  height: 160%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 160%;
}
.c-block-interactive-map__pin::after {
  background: #91cafd;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.c-block-interactive-map__pin:hover, .c-block-interactive-map__pin.is-active {
  transform: translate(-50%, -50%) scale(1.3);
}
@media (prefers-reduced-motion: reduce) {
  .c-block-interactive-map__pin {
    transition: none;
  }
  .c-block-interactive-map__pin::before {
    animation: none;
  }
}

.c-block-interactive-map__sidebar {
  background-color: #ffffff;
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 200ms ease-out;
  width: 380px;
  z-index: 10;
}
.c-block-interactive-map__sidebar.is-open {
  pointer-events: auto;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .c-block-interactive-map__sidebar {
    transition: none;
  }
}
.c-block-interactive-map--static .c-block-interactive-map__sidebar {
  bottom: auto;
  height: calc(100vh - var(--header-h, 0px));
  position: fixed;
  top: var(--header-h, 0px);
}
.c-block-interactive-map--static .c-block-interactive-map__sidebar.is-open {
  transform: translateX(0);
}

.c-block-interactive-map__close {
  appearance: none;
  background-color: #91cafd;
  border: none;
  color: #001323;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0.5rem 0.65rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.c-block-interactive-map__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
.c-block-interactive-map__panel[hidden] {
  display: none;
}

.c-block-interactive-map__panel-image {
  display: block;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.c-block-interactive-map__panel-body {
  align-items: flex-start;
  color: #001323;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.c-block-interactive-map__panel-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.c-block-interactive-map__panel-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.c-block-interactive-map__panel-download {
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.c-block-interactive-map__panel-close-link {
  appearance: none;
  background: none;
  border: none;
  color: #001323;
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  margin-top: 1rem;
  padding: 0;
  text-decoration: underline;
}

.c-property-slider__track {
  cursor: grab;
  display: flex;
  gap: 1rem;
  -ms-overflow-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.c-property-slider__track--dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.c-property-slider__track::-webkit-scrollbar {
  display: none;
}
.c-property-slider__track::after {
  content: "";
  flex-shrink: 0;
  width: calc(15% - 1rem);
}
@media (min-width: 768px) {
  .c-property-slider__track::after {
    width: calc(50% - 1rem * 0.5);
  }
}
@media (min-width: 1024px) {
  .c-property-slider__track::after {
    width: calc(66.667% - 1rem / 3);
  }
}
.c-property-slider__slide {
  flex: 0 0 85%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .c-property-slider__slide {
    flex: 0 0 calc(50% - 1rem * 0.5);
  }
}
@media (min-width: 1024px) {
  .c-property-slider__slide {
    flex: 0 0 calc(33.333% - 1rem * 0.6666666667);
  }
}
.c-property-slider__card {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.c-property-slider__card:hover, .c-property-slider__card:focus-visible {
  color: #ffffff;
  text-decoration: none;
}
.c-property-slider__card:hover .c-property-slider__cta, .c-property-slider__card:focus-visible .c-property-slider__cta {
  text-decoration: underline;
}
.c-property-slider__image {
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  width: 100%;
}
.c-property-slider__body {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 0;
}
.c-property-slider__title {
  margin-bottom: 0.5rem;
}
.c-property-slider__text {
  flex: 1;
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.c-property-slider__cta {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.875rem;
  gap: 0.6rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.c-property-slider__cta svg {
  flex-shrink: 0;
}
.c-property-slider__cta svg path {
  stroke: currentColor;
}
.c-property-slider__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.c-property-slider__dots {
  display: flex;
  gap: 0.25rem;
}

.c-property-slider__dot {
  background: rgba(145, 202, 253, 0.3);
  border: none;
  border-radius: 0;
  cursor: pointer;
  height: 4px;
  padding: 0;
  transition: background 150ms ease-out;
  width: 24px;
}
.c-property-slider__dot--active {
  background: #91cafd;
}
@media (prefers-reduced-motion: reduce) {
  .c-property-slider__dot {
    transition: none;
  }
}

.c-block-sic {
  display: flex;
  flex-direction: column;
}

.c-block-sic__viewport {
  overflow: hidden;
  width: 100%;
}

.c-block-sic__track {
  display: flex;
  transition: transform 400ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .c-block-sic__track {
    transition: none;
  }
}

.c-block-sic__slide {
  flex-shrink: 0;
}

.c-block-sic__img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.c-block-sic__controls {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
}

.c-block-sic__btn {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 2px solid var(--sic-control-color, #ffffff);
  border-radius: 50%;
  color: var(--sic-control-color, #ffffff);
  cursor: pointer;
  display: flex;
  height: 2.5rem;
  justify-content: center;
  padding: 0;
  width: 2.5rem;
}
.c-block-sic__btn svg {
  height: 1rem;
  width: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .c-block-sic__btn {
    transition: none;
  }
}

.c-block-fg {
  container-type: inline-size;
}

.c-block-fg__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@container (min-width: 480px) {
  .c-block-fg__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 720px) {
  .c-block-fg__grid {
    grid-template-columns: repeat(min(3, var(--fg-columns, 3)), 1fr);
  }
}
@container (min-width: 960px) {
  .c-block-fg__grid {
    grid-template-columns: repeat(var(--fg-columns, 3), 1fr);
  }
}

.c-block-fg__card {
  display: flex;
  flex-direction: column;
}

.c-block-fg__img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.c-block-fg__heading {
  color: var(--fg-heading-color, inherit);
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.c-block-fg__text {
  color: var(--fg-text-color, inherit);
  font-size: 1rem;
  margin-bottom: 0;
}

.c-block-fgal__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.c-block-fgal__filter {
  appearance: none;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.35em 0.9em;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.c-block-fgal--light .c-block-fgal__filter {
  border: 1px solid #666666;
  color: #666666;
}
.c-block-fgal--light .c-block-fgal__filter.is-active {
  background: #91cafd;
  border-color: #91cafd;
  color: #303030;
}
.c-block-fgal--dark .c-block-fgal__filter {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.c-block-fgal--dark .c-block-fgal__filter.is-active {
  background: #91cafd;
  border-color: #91cafd;
  color: #303030;
}

.c-block-fgal__wrap {
  container-type: inline-size;
}

.c-block-fgal__grid {
  column-count: 2;
  column-gap: 1rem;
}

@container (min-width: 600px) {
  .c-block-fgal:not([data-fgal-cols="2"]) .c-block-fgal__grid {
    column-count: 3;
  }
}

@container (min-width: 900px) {
  .c-block-fgal[data-fgal-cols="2"] .c-block-fgal__grid {
    column-count: 2;
  }
}

@container (min-width: 900px) {
  .c-block-fgal[data-fgal-cols="3"] .c-block-fgal__grid {
    column-count: 3;
  }
}

@container (min-width: 900px) {
  .c-block-fgal[data-fgal-cols="4"] .c-block-fgal__grid {
    column-count: 4;
  }
}

@container (min-width: 900px) {
  .c-block-fgal[data-fgal-cols="5"] .c-block-fgal__grid {
    column-count: 5;
  }
}

.c-block-fgal__item {
  break-inside: avoid;
  margin-bottom: 1rem;
}
.c-block-fgal__item.is-hidden {
  display: none;
}

.c-block-fgal__img {
  display: block;
  height: auto;
  width: 100%;
}

.c-block-video {
  position: relative;
}

.c-block-video__video {
  display: block;
  height: auto;
  width: 100%;
}

.c-block-video__poster {
  display: block;
  height: auto;
  width: 100%;
}

.c-block-video__youtube-wrap {
  aspect-ratio: 16/9;
  width: 100%;
}
.c-block-video__youtube-wrap[hidden] {
  display: none;
}

.c-block-video__iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.c-block-video__play {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 200ms ease-out;
}
.c-block-video__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.c-block-video__play.is-hidden {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .c-block-video__play {
    transition: none;
  }
}

.c-block-video__play-icon {
  display: block;
  height: 96px;
  width: 96px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-scroll-dist, -50%));
  }
}
.c-block-marquee {
  overflow: hidden;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .c-block-marquee {
    overflow-x: auto;
  }
}

.c-block-marquee__track {
  align-items: center;
  animation: marquee-scroll var(--marquee-speed, 20s) linear infinite;
  display: flex;
  width: max-content;
}
@media (prefers-reduced-motion: reduce) {
  .c-block-marquee__track {
    animation: none;
  }
}

.c-block-marquee__img {
  display: block;
  flex-shrink: 0;
  height: var(--marquee-height, 60px);
  padding-right: var(--marquee-gap, 80px);
  width: auto;
}

.c-block-ps {
  display: flex;
  gap: 1rem;
  max-height: var(--ps-max-height, none);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .c-block-ps {
    height: var(--ps-max-height, auto);
  }
}

.c-block-ps__item {
  appearance: none;
  background: none;
  border: 0;
  cursor: zoom-in;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.c-block-ps__img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.c-block-ps-modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.92);
  bottom: 0;
  display: flex;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.c-block-ps-modal[hidden] {
  display: none;
}

.c-block-ps-modal__close {
  appearance: none;
  background: none;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.c-block-ps-modal__close svg {
  display: block;
  height: 1.75rem;
  width: 1.75rem;
}

.c-block-ps-modal__nav {
  appearance: none;
  background: none;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  padding: 1rem;
  z-index: 1;
}
.c-block-ps-modal__nav svg {
  display: block;
  height: 2rem;
  width: 2rem;
}

.c-block-ps-modal__stage {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.c-block-ps-modal__slide[hidden] {
  display: none;
}

.c-block-ps-modal__img {
  display: inline-block;
  max-height: 90vh;
  max-width: 100%;
  object-fit: contain;
}

.c-block-bf__date {
  color: #666666;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.c-block-bf__title {
  color: #001323;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.c-block-bf__text {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.c-block-bf__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.c-block-bf__author {
  color: #666666;
  font-size: 0.875rem;
  font-weight: 600;
}

.c-block-bf__org {
  color: #666666;
  font-size: 0.875rem;
}

.c-block-bf__link {
  align-items: center;
  color: #001323;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 0.5rem;
  text-decoration: none;
}
.c-block-bf__link:hover .c-block-bf__link-arrow {
  transform: translateX(3px);
}

.c-block-bf__link-arrow {
  display: inline-block;
  transition: transform 150ms ease-out;
}

.c-block-bf__featured-wrap {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .c-block-bf__featured-wrap {
    grid-template-columns: 5fr 7fr;
  }
}

.c-block-bf__featured {
  display: flex;
  flex-direction: column;
}

.c-block-bf__featured-img {
  display: block;
  height: auto;
  margin-bottom: 2rem;
  max-height: 500px;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

.c-block-bf__rest {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.c-block-bf__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.c-block-bf__card {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .c-block-bf__card {
    grid-template-columns: 2fr 3fr;
  }
}

.c-block-bf__card-img {
  display: block;
  height: 140px;
  max-height: 400px;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .c-block-bf__card-img {
    height: 100%;
  }
}

.c-block-bf__body {
  display: flex;
  flex-direction: column;
}

.c-block-ll {
  container-type: inline-size;
}

.c-block-ll__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@container (min-width: 500px) {
  .c-block-ll__inner {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.c-block-ll--divider .c-block-ll__inner .c-block-ll__item:not(:last-child)::after {
  content: none;
}
@container (min-width: 500px) {
  .c-block-ll--divider .c-block-ll__inner .c-block-ll__item:not(:last-child)::after {
    background-color: var(--ll-divider-color, #cccccc);
    content: "";
    display: block;
    height: 100%;
    margin-left: 1rem;
    min-height: 40px;
    width: 2px;
  }
}

.c-block-ll__item {
  align-items: center;
  display: flex;
  flex-shrink: 1;
  min-width: 0;
}

.c-block-ll__link {
  display: block;
  line-height: 0;
}
.c-block-ll__link:hover {
  opacity: 0.8;
}

.c-block-ll__img {
  display: block;
  height: auto;
  max-width: 100%;
  min-width: 0;
  object-fit: contain;
  width: auto;
}

.c-properties__search-wrap {
  align-items: center;
  display: flex;
  position: relative;
}
.d-md-none .c-properties__search-wrap {
  width: 100%;
}

.c-properties__search-icon {
  color: rgba(255, 255, 255, 0.55);
  left: 0.75rem;
  pointer-events: none;
  position: absolute;
}

.c-properties__search {
  background: #0f2130;
  border: none;
  color: #ffffff;
  font-size: 0.875rem;
  min-width: 360px;
  outline: none;
  padding: 0.4rem 0.75rem 0.4rem 2.5rem;
  width: 100%;
}
.c-properties__search::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.c-properties__search::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.c-properties__filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}
.c-properties__filter-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.c-properties__filter-btn.is-active {
  background-color: #91cafd;
  border-color: #91cafd;
  color: #001323;
}
@media (prefers-reduced-motion: reduce) {
  .c-properties__filter-btn {
    transition: none;
  }
}

@media (min-width: 768px) {
  .c-properties__body {
    display: flex;
  }
}

.c-properties__list {
  background-color: #001323;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .c-properties__list {
    align-content: start;
    display: grid;
    flex: 0 0 50%;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    overflow-y: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.c-properties__map {
  background-color: #081b2a;
}
@media (min-width: 768px) {
  .c-properties__map {
    flex: 0 0 50%;
    height: 100vh;
    position: sticky;
    top: 0;
  }
}

.c-properties__item {
  color: #ffffff;
  cursor: pointer;
  transition: background-color 150ms ease-out;
}
.c-properties__item:hover, .c-properties__item.is-active {
  background-color: #081b2a;
}
.c-properties__item[hidden] {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .c-properties__item {
    transition: none;
  }
}

.c-properties__item-title {
  font-weight: normal;
}
@media only screen and (min-width: 768px) {
  .c-properties__item-title {
    font-size: 1rem;
    font-weight: bold;
  }
}

.c-properties__item-address {
  color: #ffffff;
  flex: 1;
  line-height: 1.2;
}

.c-properties__item-link {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  gap: 0.6rem;
  transition: color 150ms ease-out;
}
.c-properties__item-link:hover {
  color: #ffffff !important;
}
.c-properties__item-link svg path {
  stroke: currentColor;
}
@media (prefers-reduced-motion: reduce) {
  .c-properties__item-link {
    transition: none;
  }
}

.c-properties__no-results[hidden] {
  display: none;
}

.gm-ui-hover-effect,
.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-d {
  outline: none !important;
}

.gm-ui-hover-effect {
  display: none !important;
}

.c-map-info {
  color: #000000;
  font-family: inherit;
  max-width: 220px;
  padding: 0.5rem 0.25rem 0.25rem;
  text-align: center;
}
.c-map-info__title {
  color: #000000 !important;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.c-map-info__address {
  color: #000000 !important;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.c-map-info__link {
  align-items: center;
  color: #000000;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.6rem;
  text-decoration: none;
}
.c-map-info__link:hover {
  text-decoration: underline;
}
.c-map-info__link svg path {
  stroke: currentColor;
}

.c-property-single {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .c-property-single {
    flex-direction: row;
  }
}

.c-property-single__info {
  background-color: #001323;
  overflow-y: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .c-property-single__info {
    flex: 0 0 50%;
    height: 100vh;
    padding-left: 40px;
    padding-right: 40px;
    position: sticky;
    top: 0;
  }
}

.c-property-single__back {
  color: #ffffff;
  font-size: 0.875rem;
  transition: color 150ms ease-out;
}
.c-property-single__back:hover {
  color: #91cafd;
}
@media (prefers-reduced-motion: reduce) {
  .c-property-single__back {
    transition: none;
  }
}

.c-property-single__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.c-property-single__term {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12rem;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.85rem;
}

.c-property-single__section-heading {
  font-size: 1.25rem;
}

.c-property-single__address-heading {
  font-size: 1rem;
}

.c-property-single__description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}
.c-property-single__description p {
  margin-bottom: 1em;
}
.c-property-single__description p:last-child {
  margin-bottom: 0;
}

.c-property-single__address {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 150ms ease-out;
}
.c-property-single__address:hover {
  color: #91cafd;
}
@media (prefers-reduced-motion: reduce) {
  .c-property-single__address {
    transition: none;
  }
}

.c-property-single__map {
  background-color: #081b2a;
  height: 50vh;
}
@media (min-width: 768px) {
  .c-property-single__map {
    flex: 0 0 50%;
    height: 100vh;
    position: sticky;
    top: 0;
  }
}

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