@import url(https://fonts.bunny.net/css?family=alexandria:300,400,600,700|bona-nova:400,700);
:root[data-theme="theme-light"] {
  --text-color: #0F172A;
  --text-color-10: rgba(15, 23, 42, 0.1);
  --text-color-50: rgba(15, 23, 42, 0.5);
  --text-color-75:rgba(15, 23, 42, 0.75);
  --text-color-light: #6e82a3;
  --text-color-light-10: rgba(110, 130, 163, 0.1);
  --text-color-light-50: rgba(110, 130, 163, 0.5);
  --text-color-light-75:rgba(110, 130, 163, 0.75);
  --text-color-invert: #fff;
  --text-color-invert-10: rgba(255, 255, 255, 0.1);
  --text-color-invert-50: rgba(255, 255, 255, 0.5);
  --text-color-invert-75: rgba(255, 255, 255, 0.75);
  --section-color-light: #FEFDFA;
  --section-color-light-dark: darken(#CDCAC3, 5%);
  --section-color-light-10: rgba(254, 253, 250, 0.1);
  --section-color-light-50: rgba(254, 253, 250, 0.5);
  --section-color-light-75: rgba(254, 253, 250, 0.75);
  --section-color: #F9F7F3;
  --section-color-dark: darken(#CDCAC3, 5%);
  --section-color-10: rgba(249, 247, 243, 0.1);
  --section-color-50: rgba(249, 247, 243, 0.5);
  --section-color-75: rgba(249, 247, 243, 0.75);
  --bg-color: #fff;
  --border-color: #EEEEEE;
  --border-color-10: #EEEEEE;
  --border-color-30: #BDBDBD;
  --grey-color-dark: #CDCAC3;
  --grey-color: #FDFAF3;
  --black-color: #202020;
  --green-color: #30B02E;
  --green-color-05: rgba(48, 176, 46, 0.05);
  --green-color-50: rgba(48, 176, 46, 0.5);
  --green-color-75:rgba(48, 176, 46, 0.75);
  --blue-color: #5396FF;
  --blue-color-light: #F2F7FE;
  --blue-color-05: rgba(83, 150, 255, 0.05);
  --blue-color-25: rgba(83, 150, 255, 0.25);
  --blue-color-50: rgba(83, 150, 255, 0.5);
  --blue-color-75:rgba(83, 150, 255, 0.75);
  --red-color: #D05E5E;
  --red-color-05: rgba(208, 94, 94, 0.05);
  --red-color-50: rgba(208, 94, 94, 0.5);
  --red-color-75:rgba(208, 94, 94, 0.75);
  --back-color-blue: #F2F7FE;
  --back-color-black: #202020;
  --back-color-white: #fff;
  --text-color-white: #fff;
  --text-color-white-10: rgba(255, 255, 255, 0.1);
  --text-color-white-30: rgba(255, 255, 255, 0.3);
  --text-color-white-50: rgba(255, 255, 255, 0.4);
  --backdrop-color: rgba(0, 0, 0, 0.5);
  --shadow-color: 0deg 0% 0%;
  --shadow-elevation-low:
        1px 0px 1.4px hsl(var(--shadow-color) / 0.02),
        1.6px 0px 2.2px -0.4px hsl(var(--shadow-color) / 0.05),
        3.2px 0px 4.4px -0.7px hsl(var(--shadow-color) / 0.08);
  --shadow-elevation-medium:
        1px 0px 1.4px hsl(var(--shadow-color) / 0.02),
        3px 0px 4.2px -0.2px hsl(var(--shadow-color) / 0.03),
        5.2px 0px 7.2px -0.4px hsl(var(--shadow-color) / 0.05),
        9px 0px 12.5px -0.6px hsl(var(--shadow-color) / 0.06),
        15.8px 0px 21.9px -0.7px hsl(var(--shadow-color) / 0.07);
  --shadow-elevation-high:
        1px 0px 1.4px hsl(var(--shadow-color) / 0.02),
        5.3px 0px 7.4px -0.1px hsl(var(--shadow-color) / 0.02),
        9px 0px 12.5px -0.2px hsl(var(--shadow-color) / 0.03),
        13px 0px 18px -0.3px hsl(var(--shadow-color) / 0.04),
        17.9px 0.1px 24.8px -0.4px hsl(var(--shadow-color) / 0.05),
        24.4px 0.1px 33.9px -0.5px hsl(var(--shadow-color) / 0.06),
        33.3px 0.1px 46.2px -0.6px hsl(var(--shadow-color) / 0.07),
        45.1px 0.1px 62.6px -0.7px hsl(var(--shadow-color) / 0.08),
        60.6px 0.2px 84.1px -0.7px hsl(var(--shadow-color) / 0.08);
}
.button {
  background-color: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  color: #475569;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Alexandria", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  position: relative;
  transition: color 150ms ease 150ms;
}
.button > * {
  position: relative;
  z-index: 2;
}
.button::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transition: box-shadow 150ms ease-in;
  box-shadow: inset 0px 0px 0px 0px var(--text-color);
  border-radius: 100px;
}
.button:hover {
  color: var(--text-color-invert);
}
.button:hover::after {
  box-shadow: inset 0px 0px 0px 30px var(--text-color);
}
.button--invert {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  color: var(--text-color-invert);
  border-radius: 100px;
  text-decoration: none;
  font-family: "Alexandria", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  position: relative;
  transition: color 150ms ease 150ms;
}
.button--invert > * {
  position: relative;
  z-index: 2;
}
.button--invert::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transition: box-shadow 150ms ease-in;
  box-shadow: inset 0px 0px 0px 0px var(--text-color-invert);
  border-radius: 100px;
}
.button--invert:hover {
  color: var(--text-color);
}
.button--invert:hover::after {
  box-shadow: inset 0px 0px 0px 30px var(--text-color-invert);
}
.button--arrow {
  background-color: transparent;
  padding: 1rem 0rem;
  font-size: 1rem;
  color: var(--blue-color);
  text-decoration: none;
  font-family: "Alexandria", sans-serif;
  display: flex;
  align-items: center;
}
.button--arrow .arrow_icon {
  display: flex;
  align-items: center;
  position: relative;
}
.button--arrow .arrow_icon::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--blue-color);
  position: relative;
  left: 12px;
  clip-path: inset(0 0 0 0);
  transition: width 200ms ease;
}
.button--arrow:hover .arrow_icon::before {
  width: 40px;
}
.button--main {
  background-color: var(--text-color);
  border-color: var(--text-color);
  color: var(--text-color-white);
}
.button--link {
  padding: 0.25rem 0;
  color: rgba(180, 83, 9, 0.4);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(180, 83, 9, 0.4);
}
.button--link:hover {
  color: #b45309;
  border-bottom: 1px solid #b45309;
}
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html, body {
  font-size: 13px;
  line-height: 1.4;
  font-family: "Bona Nova", serif;
  background-color: var(--bg-color);
  padding: 0;
  margin: 0;
  min-height: 100vh;
}
html {
  overflow-y: scroll;
}
.container {
  max-width: 1200px;
  width: calc(100% - 2rem);
  padding: 1rem;
  margin: auto;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
      * A better looking default horizontal rule
      */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
      * Remove the gap between audio, canvas, iframes,
      * images, videos and the bottom of their containers:
      * https://github.com/h5bp/html5-boilerplate/issues/440
      */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}
img {
  border-radius: 2px;
}
/*
      * Remove default fieldset styles.
      */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
      * Allow only vertical resizing of textareas.
      */
textarea {
  resize: vertical;
}
/* ==========================================================================
        Author's custom styles
        ========================================================================== */
/* ==========================================================================
        Helper classes
        ========================================================================== */
/*
      * Hide visually and from screen readers
      */
.hidden, [hidden] {
  display: none !important;
}
/*
      * Hide only visually, but have it available for screen readers:
      * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
      *
      * 1. For long content, line feeds are not interpreted as spaces and small width
      *    causes content to wrap 1 word per line:
      *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
      */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}
/*
      * Extends the .sr-only class to allow the element
      * to be focusable when navigated to via the keyboard:
      * https://www.drupal.org/node/897638
      */
.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
/*
      * Hide visually and from screen readers, but maintain layout
      */
.invisible {
  visibility: hidden;
}
/*
      * Clearfix: contain floats
      *
      * For modern browsers
      * 1. The space content is one way to avoid an Opera bug when the
      *    `contenteditable` attribute is included anywhere else in the document.
      *    Otherwise it causes space to appear at the top and bottom of elements
      *    that receive the `clearfix` class.
      * 2. The use of `table` rather than `block` is only necessary if using
      *    `:before` to contain the top-margins of child elements.
      */
.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
/* ==========================================================================
        EXAMPLE Media Queries for Responsive Design.
        These examples override the primary ('mobile first') styles.
        Modify as content requires.
        ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
        Print styles.
        Inlined to avoid the additional HTTP request:
        https://www.phpied.com/delay-loading-your-print-css/
        ========================================================================== */
@media print {
  /*
        * Don't show links that are fragment identifiers,
        * or use the `javascript:` pseudo protocol
        */
  /*
        * Printing Tables:
        * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
        */
  *, *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    /* Black prints faster */
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]::after, a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
@media only screen and (min-width: 768px) {
  html, body {
    font-size: 15px;
  }
}
.section_headline {
  position: relative;
  color: #64748B;
  font-family: "Alexandria", sans-serif;
  margin: 0 0 1rem 0;
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section_headline.scroll_anim {
  opacity: 0;
  transition: opacity 1000ms ease;
}
.section_headline.is-inview {
  opacity: 1;
}
:root {
  --easing: cubic-bezier(0.5, 0.7, 0.4, 1);
  --speed: 0.5s;
}
/* Transition with cover screen */
.with-cover-leave, .with-cover-enter {
  transition: all var(--speed) var(--easing);
}
.with-cover-leave .transition {
  height: 100%;
  clip-path: inset(100% 0 0 0);
}
.with-cover-leave-active .transition {
  height: 100%;
  transition: clip-path var(--speed) var(--easing);
}
.with-cover-leave-to .transition {
  height: 100%;
  clip-path: inset(0);
}
.with-cover-leave .content {
  clip-path: inset(0);
}
.with-cover-leave-active .content {
  transition: clip-path var(--speed) var(--easing);
}
/* Cover back to top */
.with-cover-enter .transition {
  height: 100%;
  clip-path: inset(0);
  z-index: 9999;
}
.with-cover-enter-active .transition {
  transition: clip-path var(--speed) var(--easing) var(--speed);
  height: 100%;
}
.with-cover-enter-to .transition {
  clip-path: inset(0 0 100% 0);
}
/* Cover down */
.with-cover-enter-to .content {
  clip-path: inset(0);
}
.transition {
  position: fixed;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: var(--text-color);
  display: grid;
  place-content: center;
  transform: translate3d(0px, 0px, 0px);
  clip-path: inset(0 0 100% 0);
  z-index: 9999;
}
.transition_content {
  text-align: center;
}
.transition img {
  margin: auto;
  margin-bottom: 2rem;
}
.transition h2 {
  flex-shrink: 0;
  text-align: center;
  font-size: 1.5rem;
  width: 100%;
  flex: 100%;
  margin: 0 0 0.5rem 0;
  padding: 0;
  color: var(--text-color-white);
}
.transition .next_page {
  font-size: 1rem;
  font-family: "Alexandria", sans-serif;
  opacity: 0.5;
  color: var(--text-color-white);
}
.content {
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  :root {
    --easing: cubic-bezier(0.5, 0.7, 0.4, 1);
    --speed: 0.3s;
  }
}
.welcome_banner {
  width: 100%;
  height: 100lvh;
  position: relative;
  z-index: 2;
}
.welcome_banner_overlay {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  display: block;
  mix-blend-mode: multiply;
  color: var(--text-color-white);
  background-color: rgba(66, 81, 87, 0.6);
}
.welcome_banner_scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  transform: translateX(-50%);
}
.welcome_banner_scroll svg {
  color: white;
  margin-top: -24px;
  height: 36px;
  width: 36px;
  opacity: 0;
}
.welcome_banner_scroll svg:first-of-type {
  animation: fade 1500ms ease infinite normal both;
}
.welcome_banner_scroll svg:nth-of-type(2) {
  animation: fade 1500ms ease 250ms infinite normal both;
}
.welcome_banner_scroll svg:nth-of-type(3) {
  animation: fade 1500ms ease 500ms infinite normal both;
}
.welcome_banner_content {
  display: flex;
  height: calc(100% - 4rem);
  width: calc(100% - 4rem);
  flex-direction: column;
  justify-content: center;
  color: var(--text-color-white);
  z-index: 3;
  position: relative;
  padding: 2rem;
  margin: auto;
  max-width: 1200px;
}
.welcome_banner_content img {
  width: 250px;
  margin: 2rem auto;
  transform: scale(0.9);
  opacity: 0;
  transition: all 250ms ease-in;
}
.welcome_banner_content h1 {
  font-family: "Bona Nova", serif;
  font-size: 2.5rem;
  margin: 0 auto 1rem auto;
  text-align: center;
  max-width: 640px;
  font-weight: normal;
  opacity: 0;
  transition: all 500ms ease-in 250ms;
}
.welcome_banner_content small {
  font-family: "Alexandria", sans-serif;
  font-weight: normal;
  font-size: 1.15rem;
  text-align: center;
  font-weight: 300;
  opacity: 0;
  transition: all 250ms ease-in 500ms;
}
.welcome_banner_content.is-inview h1 {
  opacity: 1;
}
.welcome_banner_content.is-inview img {
  transform: scale(1);
  opacity: 1;
}
.welcome_banner_content.is-inview small {
  opacity: 0.8;
}
.hero_image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100lvh;
  overflow: hidden;
}
.hero_image_item {
  position: absolute;
  top: 0;
  right: 0%;
  left: auto;
  width: 80%;
  height: 100%;
  transition: all 2s ease;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.hero_image_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero_image_item.active {
  transition: all 2s ease;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.hero_image_item.inactive {
  transition: all 2s ease 200ms;
  right: 20%;
  left: 0%;
  width: 80%;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.shp_content {
  position: relative;
  z-index: 2;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .welcome_banner_content img {
    max-width: 150px;
  }
}
@media screen and (max-width: 640px) {
  .welcome_banner_content .subtitle {
    font-size: 1.4rem;
  }
  .welcome_banner_content h1 {
    font-size: 2rem;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
dialog {
  border: none !important;
  border-radius: 8px;
  box-shadow: var(--shadow-elevation-high);
  background-color: var(--text-color-white);
  padding: 1rem;
}
dialog:focus {
  border: none !important;
  outline: none !important;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
dialog--image {
  padding: 0;
  background: transparent;
}
dialog--image img.dialog_content {
  width: 100%;
  height: auto;
  max-width: 80vw;
  max-height: 80vh;
}
.dialog_close {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  outline: none;
}
.dialog_close:focus {
  border: none !important;
  outline: none !important;
}
.dialog_close svg {
  color: var(--text-color-white);
}
.backdrop {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--backdrop-color);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 900;
}
.backdrop.open {
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 9997;
  transition: opacity 0.3s;
}
.sidenav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: var(--shadow-elevation-medium);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.2s;
  display: flex;
  flex-direction: column;
  background-color: var(--text-color-light);
}
.sidenav.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.3s;
}
.sidenav_logo {
  margin: 2rem auto;
}
.sidenav_header {
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(100% - 2rem);
  opacity: 0;
  transition: opacity 350ms ease 300ms;
}
.sidenav_header .close {
  background-color: transparent;
  border: 0;
  margin-left: auto;
  color: var(--text-color-white-50);
  border-radius: 2px;
  padding: 1rem 0;
  cursor: pointer;
}
.sidenav_header a {
  font-family: "Alexandria", sans-serif;
  text-decoration: none;
  color: var(--text-color-white-50);
}
.sidenav_header a span {
  display: block;
}
.sidenav_header span {
  text-transform: uppercase;
  color: var(--text-color-white-50);
  font-family: "Alexandria", sans-serif;
  padding: 1rem 0;
}
.sidenav_search {
  position: relative;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--text-color-invert-10);
}
.sidenav_search input {
  position: relative;
  z-index: 5;
  background-color: transparent;
  width: calc(100% - 2rem);
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 0;
}
.sidenav_search input::placeholder {
  color: var(--border-color-30);
}
.sidenav_search input:focus {
  border: 0;
  outline: 1px solid var(--secondary-color-25);
  box-shadow: 0px 4px 8px var(--secondary-color-10);
}
.sidenav_search input:focus ~ button {
  display: none;
}
.sidenav_search button {
  background-color: transparent;
  border: 0;
  color: var(--text-white-color);
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
}
.sidenav_body {
  flex: 1;
  padding-bottom: 2rem;
}
.sidenav_body ul {
  margin: 0;
  padding: 0;
}
.sidenav_body ul > li {
  list-style-type: none;
  transform: translateX(100px);
  opacity: 0;
  transition: all 500ms ease;
}
.sidenav_body ul > li a, .sidenav_body ul > li summary {
  display: block;
  width: calc(100% - 2rem);
  text-decoration: none;
  color: var(--text-color-white);
  padding: 1.5rem 1rem;
  border-bottom: 1px dashed var(--text-color-white-10);
  font-size: 2rem;
}
.sidenav_body ul > li summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
  list-style: none;
}
.sidenav_body ul > li summary::-webkit-details-marker {
  display: none;
}
.sidenav_body ul > li details {
  border-bottom: 1px dashed var(--text-color-white-10);
}
.sidenav_body ul > li details[open] summary svg {
  transition: transform 150ms ease;
  transform: rotate(180deg);
}
.sidenav_body ul > li ul {
  display: block;
  background-color: transparent;
  width: 100%;
  position: relative;
  box-shadow: none;
}
.sidenav_body ul > li ul li {
  border-bottom: 0;
  padding: 0;
}
.sidenav_body ul > li ul li a {
  display: block;
  width: calc(100% - 4rem);
  text-decoration: none;
  color: var(--text-color-invert-75);
  padding: 1rem 1rem;
  padding-left: 3rem;
  font-size: 1.3rem;
  font-family: "Alexandria", sans-serif;
  border-bottom: 0;
}
.sidenav_body ul > li:last-of-type a, .sidenav_body ul > li:last-of-type summary {
  border-bottom: 0;
}
.sidenav_body ul > li:nth-child(1) {
  transition: all 500ms ease calc(1 * 50ms);
}
.sidenav_body ul > li:nth-child(2) {
  transition: all 500ms ease calc(2 * 50ms);
}
.sidenav_body ul > li:nth-child(3) {
  transition: all 500ms ease calc(3 * 50ms);
}
.sidenav_body ul > li:nth-child(4) {
  transition: all 500ms ease calc(4 * 50ms);
}
.sidenav_body ul > li:nth-child(5) {
  transition: all 500ms ease calc(5 * 50ms);
}
.sidenav_body ul > li:nth-child(6) {
  transition: all 500ms ease calc(6 * 50ms);
}
.sidenav_footer {
  margin-top: auto;
}
.sidenav_footer ul {
  margin: 0;
  padding: 0;
}
.sidenav_footer ul li {
  list-style-type: none;
}
.sidenav_footer ul li a, .sidenav_footer ul li button {
  width: calc(100% - 2rem);
  text-decoration: none;
  color: var(--text-white-color);
  padding: 1rem;
  border: 0;
  box-sizing: border-box;
  background-color: transparent;
  border-top: 1px solid var(--border-color-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Alexandria", sans-serif;
}
.sidenav_footer ul li a svg, .sidenav_footer ul li button svg {
  stroke: var(--border-color-30);
}
.sidenav_footer ul li.icon a svg, .sidenav_footer ul li.icon button svg {
  stroke: var(--text-white-color);
}
.sidenav_footer_socials {
  display: grid;
  text-align: center;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--border-color-10);
}
.sidenav_footer_socials div {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
.sidenav_footer_socials div a {
  text-decoration: none;
  padding: 0.25rem;
}
.sidenav_footer_socials div a svg {
  color: var(--text-white-color);
}
.open .sidenav_header {
  opacity: 1;
}
.open .sidenav_body ul li {
  opacity: 1;
  transform: translateX(0);
}
@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}
#themeSwitch.theme_light .get_light {
  display: none;
}
#themeSwitch.theme_light .get_dark {
  display: flex;
}
#themeSwitch.theme_dark .get_light {
  display: flex;
}
#themeSwitch.theme_dark .get_dark {
  display: none;
}
header {
  --headerBack: white;
  --headerColor: var(--text-color);
  --headerShadow: 0 7px 15px rgba(0, 0, 0, 0.15);
  background: var(--headerBack);
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: calc(100% - 2rem);
  box-shadow: var(--headerShadow);
  padding: 0 1rem;
  transition: all 250ms ease;
}
header[data-page="home"].invert {
  --headerBack: rgba(0, 0, 0, 0.15);
  --headerColor: white;
  --headerShadow: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header_container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  height: 60px;
}
.header_menu--open {
  align-self: stretch;
  padding: 0 1rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.header_menu--open svg {
  color: var(--border-color-30);
}
.header_menu--open:hover {
  background-color: var(--secondary-color-10);
}
.header_menu--open:hover svg {
  color: var(--text-color-50);
}
.header_logo {
  margin-right: 2rem;
  text-decoration: none;
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Alexandria", sans-serif;
}
.header_logo_image {
  height: 100%;
  width: 4rem;
  position: relative;
}
.header_logo_image img {
  width: calc(100% - 16px);
  padding: 8px;
}
.header_logo_text {
  line-height: 1.1rem;
  color: var(--headerColor);
  transition: all 250ms ease;
}
.header_logo_text small {
  display: block;
  font-size: 1rem;
  font-family: "Alexandria", sans-serif;
}
.header_logo_text b {
  font-size: 1.15rem;
  font-weight: 600;
}
.header_actions {
  margin-left: auto;
  display: flex;
  align-self: stretch;
  gap: 1rem;
}
.header_phone {
  align-self: stretch;
  background-color: var(--green-color-05);
  color: var(--green-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none;
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
}
.header_search {
  align-self: stretch;
  background-color: transparent;
  border: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--border-color-30);
  cursor: pointer;
}
.header_search svg {
  color: var(--border-color-30);
}
.header_search:hover {
  background-color: var(--secondary-color-10);
}
.header_search:hover svg {
  color: var(--text-color-50);
}
header[data-page="home"].invert .header_menu--open svg, header[data-page="home"].invert .header_search svg {
  color: var(--text-color-white);
}
header[data-page="home"].invert .header_menu--open:hover, header[data-page="home"].invert .header_search:hover {
  background-color: transparent;
}
header[data-page="home"].invert .header_menu--open:hover svg, header[data-page="home"].invert .header_search:hover svg {
  color: var(--text-color-white);
}
nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex: 1;
}
nav .menu_link {
  text-decoration: none;
  display: flex;
  height: 100%;
  align-items: center;
  color: var(--headerColor);
  font-family: "Alexandria", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 0 1rem;
}
nav .menu_link:hover {
  background-color: var(--secondary-color-10);
}
nav > ul {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
nav > ul li {
  list-style-type: none;
  display: flex;
  height: 100%;
  place-content: center;
}
nav > ul li a {
  text-decoration: none;
  font-family: "Alexandria", sans-serif;
  color: var(--headerColor);
  font-size: 1rem;
  padding: 0 1rem;
  display: flex;
  align-self: stretch;
  align-items: center;
}
nav > ul li a:hover {
  background-color: var(--secondary-color-10);
}
nav .dropdown {
  height: 100%;
}
nav .dropbtn {
  font-size: 1rem;
  height: 100%;
  padding: 1rem;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  color: var(--headerColor);
  gap: 0.5rem;
  font-family: "Alexandria", sans-serif;
}
nav .dropbtn svg {
  color: var(--headerColor);
  opacity: 0.5;
}
nav .dropdown_content {
  border: 1px solid var(--border-color-10);
  font-family: "Alexandria", sans-serif;
}
nav .dropdown_content a {
  text-decoration: none;
  display: block;
  width: 100%;
  color: var(--text-color);
}
nav .dropdown_content a:hover {
  background-color: transparent;
}
@media only screen and (max-width: 900px) {
  nav {
    display: none;
  }
  .header_menu--open {
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .header_phone {
    display: none;
  }
  header {
    padding: 0;
    width: 100%;
  }
  .header_menu--open {
    margin-right: 0.5rem;
  }
  .header_logo {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .header_actions {
    gap: 0;
  }
  .header_search {
    padding-right: 0;
  }
}
.hp_ctas {
  padding: 5rem 0;
  background-color: #FFF7ED;
  position: relative;
  z-index: 2;
}
.hp_ctas .section_headline {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 3rem;
}
.hp_ctas_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
}
.hp_ctas_item {
  --speed: 650ms;
  --delayTitle: 0ms;
  --delay: 250ms;
  display: grid;
  place-content: center;
  font-family: "Alexandria", sans-serif;
}
.hp_ctas_item div {
  max-width: 350px;
  margin: auto;
}
.hp_ctas_item p {
  margin: 0 0 1rem 0;
  text-align: center;
  font-weight: 300;
  color: #64748B;
  opacity: 0;
  transition: opacity var(--speed) ease-in var(--delay);
}
.hp_ctas_item p a {
  color: #64748B;
  text-decoration: none;
}
.hp_ctas_item .button--link {
  margin: auto;
  display: block;
  width: fit-content;
  opacity: 0;
  height: 5px;
  overflow: hidden;
  transition: opacity var(--speed) ease-in var(--delay);
}
.hp_ctas_item h3 {
  font-size: 3rem;
  font-family: "Bona Nova", serif;
  text-align: center;
  font-weight: 400;
  margin: 0 auto 1rem auto;
  position: relative;
  z-index: 1;
  width: fit-content;
  overflow: hidden;
}
.hp_ctas_item h3 a {
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  z-index: 1;
  top: 50px;
  opacity: 0;
  transition: all 1s ease-in var(--delayTitle);
}
.hp_ctas_item h3::after {
  content: "";
  position: absolute;
  left: 15%;
  top: 50%;
  width: 70%;
  border-bottom: 1px solid rgba(180, 83, 9, 0.3);
  transform: rotate(-20deg) translateY(0px);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--speed) ease-in var(--delay), transform 250ms ease;
}
.hp_ctas_item:hover h3::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 100%;
  border-bottom: 6px solid rgba(180, 83, 9, 0.3);
  transform: rotate(0deg) translateY(3px);
  z-index: 1;
}
.hp_ctas_item.is-inview p {
  opacity: 1;
}
.hp_ctas_item.is-inview .button--link {
  opacity: 1;
  height: 15px;
}
.hp_ctas_item.is-inview h3 a {
  top: 0px;
  opacity: 1;
}
.hp_ctas_item.is-inview h3::after {
  opacity: 1;
}
.hp_ctas_item:nth-of-type(2) {
  --delay: 500ms;
  --delayTitle: 250ms;
}
.hp_ctas_item:nth-of-type(3) {
  --delay: 750ms;
  --delayTitle: 500ms;
}
@media screen and (max-width: 900px) {
  .hp_ctas_item div {
    max-width: 250px;
    margin: auto;
  }
  .hp_ctas_item h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hp_ctas_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hp_ctas::after {
    display: none;
  }
  .hp_ctas_item {
    padding: 1.5rem 1rem;
    margin: 0;
    place-content: center;
  }
  .hp_ctas_item:last-of-type {
    border: 0;
  }
  .hp_ctas_item p {
    margin: 0 0 0.25rem 0;
  }
}
.hp_promo {
  padding: 5rem 0;
  background-color: #022C22;
  position: relative;
  z-index: 2;
}
.hp_promo_grid {
  display: flex;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 2fr 1fr;
}
.hp_promo_text .section_headline {
  margin-bottom: 1rem;
}
.hp_promo_text h3 {
  font-size: 2.5rem;
  margin: 0 0 1.5rem 0;
  font-family: "Bona Nova", serif;
  font-weight: 400;
}
.hp_promo_text h3 a {
  color: var(--text-color);
  text-decoration: none;
}
.hp_promo_text h3 a span {
  display: inline-block;
  transition: all 800ms ease 200ms;
  opacity: 0;
  transform: translateY(0);
}
.hp_promo_text h3 a span:nth-of-type(1) {
  transition: all 800ms ease 100ms;
}
.hp_promo_text h3 a span:nth-of-type(2) {
  transition: all 800ms ease 200ms;
}
.hp_promo_text h3 a span:nth-of-type(3) {
  transition: all 800ms ease 300ms;
}
.hp_promo_text h3 a span:nth-of-type(4) {
  transition: all 800ms ease 400ms;
}
.hp_promo_text h3 a span:nth-of-type(5) {
  transition: all 800ms ease 500ms;
}
.hp_promo_text h3 a span:nth-of-type(6) {
  transition: all 800ms ease 600ms;
}
.hp_promo_text h3 a span:nth-of-type(7) {
  transition: all 800ms ease 700ms;
}
.hp_promo_text h3 a span:nth-of-type(8) {
  transition: all 800ms ease 800ms;
}
.hp_promo_text h3 a span:nth-of-type(9) {
  transition: all 800ms ease 900ms;
}
.hp_promo_text h3 a span:nth-of-type(10) {
  transition: all 800ms ease 1000ms;
}
.hp_promo_text h3 a span:nth-of-type(11) {
  transition: all 800ms ease 1100ms;
}
.hp_promo_text h3 a span:nth-of-type(12) {
  transition: all 800ms ease 1200ms;
}
.hp_promo_text h3 a span:nth-of-type(13) {
  transition: all 800ms ease 1300ms;
}
.hp_promo_text h3 a span:nth-of-type(14) {
  transition: all 800ms ease 1400ms;
}
.hp_promo_text h3 a span:nth-of-type(15) {
  transition: all 800ms ease 1500ms;
}
.hp_promo_text h3 a span:nth-of-type(16) {
  transition: all 800ms ease 1600ms;
}
.hp_promo_text h3 a span:nth-of-type(17) {
  transition: all 800ms ease 1700ms;
}
.hp_promo_text h3 a span:nth-of-type(18) {
  transition: all 800ms ease 1800ms;
}
.hp_promo_text h3 a span:nth-of-type(19) {
  transition: all 800ms ease 1900ms;
}
.hp_promo_text h3 a span:nth-of-type(20) {
  transition: all 800ms ease 2000ms;
}
.hp_promo_text h3 a span:nth-of-type(21) {
  transition: all 800ms ease 2100ms;
}
.hp_promo_text h3 a span:nth-of-type(22) {
  transition: all 800ms ease 2200ms;
}
.hp_promo_text h3 a span:nth-of-type(23) {
  transition: all 800ms ease 2300ms;
}
.hp_promo_text h3 a span:nth-of-type(24) {
  transition: all 800ms ease 2400ms;
}
.hp_promo_text h3 a span:nth-of-type(25) {
  transition: all 800ms ease 2500ms;
}
.hp_promo_text h3 a span:nth-of-type(26) {
  transition: all 800ms ease 2600ms;
}
.hp_promo_text h3 a span:nth-of-type(27) {
  transition: all 800ms ease 2700ms;
}
.hp_promo_text h3 a span:nth-of-type(28) {
  transition: all 800ms ease 2800ms;
}
.hp_promo_text h3 a span:nth-of-type(29) {
  transition: all 800ms ease 2900ms;
}
.hp_promo_text h3 a span:nth-of-type(30) {
  transition: all 800ms ease 3000ms;
}
.hp_promo_text h3 a span:nth-of-type(31) {
  transition: all 800ms ease 3100ms;
}
.hp_promo_text h3 a span:nth-of-type(32) {
  transition: all 800ms ease 3200ms;
}
.hp_promo_text h3 a span:nth-of-type(33) {
  transition: all 800ms ease 3300ms;
}
.hp_promo_text h3 a span:nth-of-type(34) {
  transition: all 800ms ease 3400ms;
}
.hp_promo_text h3 a span:nth-of-type(35) {
  transition: all 800ms ease 3500ms;
}
.hp_promo_text h3 a span:nth-of-type(36) {
  transition: all 800ms ease 3600ms;
}
.hp_promo_text h3 a span:nth-of-type(37) {
  transition: all 800ms ease 3700ms;
}
.hp_promo_text h3 a span:nth-of-type(38) {
  transition: all 800ms ease 3800ms;
}
.hp_promo_text h3 a span:nth-of-type(39) {
  transition: all 800ms ease 3900ms;
}
.hp_promo_text h3 a span:nth-of-type(40) {
  transition: all 800ms ease 4000ms;
}
.hp_promo_text h3 a span:nth-of-type(41) {
  transition: all 800ms ease 4100ms;
}
.hp_promo_text h3 a span:nth-of-type(42) {
  transition: all 800ms ease 4200ms;
}
.hp_promo_text h3 a span:nth-of-type(43) {
  transition: all 800ms ease 4300ms;
}
.hp_promo_text h3 a span:nth-of-type(44) {
  transition: all 800ms ease 4400ms;
}
.hp_promo_text h3 a span:nth-of-type(45) {
  transition: all 800ms ease 4500ms;
}
.hp_promo_text h3 a span:nth-of-type(46) {
  transition: all 800ms ease 4600ms;
}
.hp_promo_text h3 a span:nth-of-type(47) {
  transition: all 800ms ease 4700ms;
}
.hp_promo_text h3 a span:nth-of-type(48) {
  transition: all 800ms ease 4800ms;
}
.hp_promo_text h3 a span:nth-of-type(49) {
  transition: all 800ms ease 4900ms;
}
.hp_promo_text h3 a span:nth-of-type(50) {
  transition: all 800ms ease 5000ms;
}
.hp_promo_text p {
  max-width: 630px;
  color: #475569;
  margin: 0 0 2rem 0;
  font-weight: 300;
  font-family: "Alexandria", sans-serif;
  opacity: 0;
  transition: opacity 1200ms ease var(--speed);
}
.hp_promo_text .button {
  opacity: 0;
  transition: opacity 1200ms ease 1200ms;
}
.hp_promo_text.is-inview h3 a span {
  transform: translateY(0%);
  opacity: 1;
}
.hp_promo_text.is-inview p {
  opacity: 1;
}
.hp_promo_text.is-inview .button {
  opacity: 1;
}
.hp_promo_text--invert {
  --speed: 800ms;
}
.hp_promo_text--invert .section_headline {
  margin-bottom: 1rem;
  display: block;
}
.hp_promo_text--invert h3 {
  font-size: 2.5rem;
  margin: 0 0 1.5rem 0;
  font-family: "Bona Nova", serif;
  font-weight: 400;
}
.hp_promo_text--invert h3 a {
  color: var(--text-color-invert);
  text-decoration: none;
}
.hp_promo_text--invert h3 a span {
  display: inline-block;
  transition: all var(--speed) ease 200ms;
  opacity: 0;
  transform: translateY(0);
}
.hp_promo_text--invert h3 a span:nth-of-type(1) {
  transition: all var(--speed) ease 100ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(2) {
  transition: all var(--speed) ease 200ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(3) {
  transition: all var(--speed) ease 300ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(4) {
  transition: all var(--speed) ease 400ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(5) {
  transition: all var(--speed) ease 500ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(6) {
  transition: all var(--speed) ease 600ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(7) {
  transition: all var(--speed) ease 700ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(8) {
  transition: all var(--speed) ease 800ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(9) {
  transition: all var(--speed) ease 900ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(10) {
  transition: all var(--speed) ease 1000ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(11) {
  transition: all var(--speed) ease 1100ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(12) {
  transition: all var(--speed) ease 1200ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(13) {
  transition: all var(--speed) ease 1300ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(14) {
  transition: all var(--speed) ease 1400ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(15) {
  transition: all var(--speed) ease 1500ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(16) {
  transition: all var(--speed) ease 1600ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(17) {
  transition: all var(--speed) ease 1700ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(18) {
  transition: all var(--speed) ease 1800ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(19) {
  transition: all var(--speed) ease 1900ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(20) {
  transition: all var(--speed) ease 2000ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(21) {
  transition: all var(--speed) ease 2100ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(22) {
  transition: all var(--speed) ease 2200ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(23) {
  transition: all var(--speed) ease 2300ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(24) {
  transition: all var(--speed) ease 2400ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(25) {
  transition: all var(--speed) ease 2500ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(26) {
  transition: all var(--speed) ease 2600ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(27) {
  transition: all var(--speed) ease 2700ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(28) {
  transition: all var(--speed) ease 2800ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(29) {
  transition: all var(--speed) ease 2900ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(30) {
  transition: all var(--speed) ease 3000ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(31) {
  transition: all var(--speed) ease 3100ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(32) {
  transition: all var(--speed) ease 3200ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(33) {
  transition: all var(--speed) ease 3300ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(34) {
  transition: all var(--speed) ease 3400ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(35) {
  transition: all var(--speed) ease 3500ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(36) {
  transition: all var(--speed) ease 3600ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(37) {
  transition: all var(--speed) ease 3700ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(38) {
  transition: all var(--speed) ease 3800ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(39) {
  transition: all var(--speed) ease 3900ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(40) {
  transition: all var(--speed) ease 4000ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(41) {
  transition: all var(--speed) ease 4100ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(42) {
  transition: all var(--speed) ease 4200ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(43) {
  transition: all var(--speed) ease 4300ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(44) {
  transition: all var(--speed) ease 4400ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(45) {
  transition: all var(--speed) ease 4500ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(46) {
  transition: all var(--speed) ease 4600ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(47) {
  transition: all var(--speed) ease 4700ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(48) {
  transition: all var(--speed) ease 4800ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(49) {
  transition: all var(--speed) ease 4900ms;
}
.hp_promo_text--invert h3 a span:nth-of-type(50) {
  transition: all var(--speed) ease 5000ms;
}
.hp_promo_text--invert p {
  max-width: 630px;
  color: #E2E8F0;
  margin: 0 0 2rem 0;
  font-weight: 300;
  font-family: "Alexandria", sans-serif;
  opacity: 0;
  transition: opacity 1200ms ease var(--speed);
}
.hp_promo_text--invert .button--invert {
  opacity: 0;
  transition: opacity 1200ms ease 1200ms;
}
.hp_promo_text--invert.is-inview h3 a span {
  transform: translateY(0%);
  opacity: 1;
}
.hp_promo_text--invert.is-inview p {
  opacity: 1;
}
.hp_promo_text--invert.is-inview .button--invert {
  opacity: 1;
}
.hp_promo_image {
  margin: auto;
}
.hp_promo_image_wrap {
  margin: auto;
  width: fit-content;
  display: block;
  position: relative;
  z-index: 1;
}
.hp_promo_image_wrap > img {
  clip-path: polygon(0 0, 80% 0%, 80% 100%, 0% 100%);
  transition: all 1s ease 250ms;
}
.hp_promo_image_wrap .icon {
  display: flex;
  gap: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, 50%);
}
.hp_promo_image_wrap .icon img {
  position: relative;
  transition: all 500ms ease 500ms;
}
.hp_promo_image.is-inview .hp_promo_image_wrap .icon img:first-of-type {
  transform: rotate(45deg);
  left: 35px;
}
.hp_promo_image.is-inview .hp_promo_image_wrap .icon img:last-of-type {
  transform: rotate(-45deg);
  left: -35px;
}
.hp_promo_image.is-inview .hp_promo_image_wrap > img {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%);
}
.hp_promo.event {
  background-color: #BB964A;
}
.hp_promo.event .hp_promo_grid {
  grid-template-columns: 1fr 2fr;
}
.hp_promo.event .hp_promo_image_wrap .icon {
  right: auto;
  left: 0;
  top: 100%;
  transform: translate(-50%, -50%);
}
.hp_promo.event .hp_promo_image_wrap .icon img {
  transition: all 2s ease 500ms;
}
.hp_promo.event .hp_promo_image_wrap .icon img:first-of-type {
  transform: rotate(0deg) translateX(px);
  left: 0;
}
.hp_promo.event .hp_promo_image_wrap > img {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%);
}
.hp_promo.event .hp_promo_image.is-inview .hp_promo_image_wrap .icon img:first-of-type {
  transform: rotate(0deg) translateX(200px);
  left: 0;
}
.hp_promo.event .hp_promo_image.is-inview .hp_promo_image_wrap > img {
  clip-path: polygon(0 0, 80% 0%, 80% 100%, 0% 100%);
}
.hp_promo.ubytko {
  background-color: #FFF7ED;
}
.hp_promo.ubytko .hp_promo_image_wrap .icon {
  mix-blend-mode: difference;
}
.hp_promo.ubytko .hp_promo_image.is-inview .hp_promo_image_wrap .icon img:first-of-type {
  transform: rotate(0deg);
  left: 0;
  transform-origin: top center;
  animation: hang 2000ms ease forwards 600ms;
}
@keyframes hang {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(40deg);
  }
  30% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(20deg);
  }
  70% {
    transform: rotate(-10deg);
  }
  90% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 900px) {
  .hp_promo_grid {
    flex-direction: column;
    gap: 3rem;
  }
  .hp_promo_text, .hp_promo_text--invert {
    order: 1;
  }
  .hp_promo_image {
    order: 2;
    padding: 0 !important;
  }
  .hp_promo_image .hp_promo_image_wrap .icon {
    right: 30%;
    top: 50%;
  }
  .hp_promo_image .hp_promo_image_wrap > img {
    clip-path: none !important;
    opacity: 0;
    transition: opacity 1000ms ease;
  }
  .hp_promo_image.is-inview .hp_promo_image_wrap > img {
    opacity: 1;
  }
}
.hp_loga {
  padding: 5rem 0;
  background-color: #0F172A;
  position: relative;
  z-index: 2;
}
.hp_loga .container {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.hp_loga .container::after, .hp_loga .container::before {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}
.hp_loga .container::after {
  right: 0;
  background: #0f172a;
  background: linear-gradient(270deg, #0f172a 0%, rgba(15, 23, 42, 0) 100%);
}
.hp_loga .container::before {
  left: 0;
  background: #0f172a;
  background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0) 100%);
}
.hp_loga_grid {
  display: inline-block;
  margin-top: 2rem;
}
.hp_loga_grid:hover .hp_loga_grid_wrap {
  animation-play-state: paused;
}
.hp_loga_grid_wrap {
  display: inline-block;
  animation: 35s slide infinite linear;
}
.hp_loga .section_headline {
  display: block;
  width: 100%;
  text-align: center;
}
.hp_loga_item {
  display: inline-grid;
  height: 150px;
  width: 150px;
  margin: auto 2rem;
  place-content: center;
}
.hp_loga_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0.5;
}
.hp_loga_item:hover {
  opacity: 1;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.hp_contact {
  padding: 5rem 0;
  background-color: var(--section-color);
  position: relative;
  z-index: 2;
}
.hp_contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.hp_contact .section_headline {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
.hp_contact_column {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hp_contact_column .hp_contact_label {
  font-weight: 300;
  font-family: "Alexandria", sans-serif;
  font-size: 1rem;
  color: #475569;
  display: block;
  margin: 0 0 0.5rem 0;
}
.hp_contact_column img {
  flex-shrink: 0;
}
.hp_contact_column b {
  color: var(--text-color);
  font-family: "Bona Nova", serif;
  font-weight: normal;
  font-size: 1.2rem;
}
.hp_contact_column b > p {
  margin: 0;
}
.hp_contact_column .hp_contact_group {
  display: grid;
  margin-bottom: 1rem;
}
.hp_contact_column > div {
  display: grid;
}
@media screen and (max-width: 900px) {
  .hp_contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .hp_contact_grid .item:first-of-type {
    grid-area: 0.1111111111;
  }
}
@media screen and (max-width: 640px) {
  .hp_contact .container {
    grid-template-columns: 1fr;
    width: fit-content;
    gap: 2rem;
  }
}
.contact_page {
  min-height: calc(100svh - 150px);
  background-color: var(--section-color);
}
.contact_page .section_headline {
  font-family: "Bona Nova", serif;
  text-transform: none;
  letter-spacing: normal;
  font-size: 2.5rem;
  margin: 2rem auto;
}
.dropbtn {
  cursor: pointer;
}
.dropdown {
  position: relative;
  display: inline-block;
}
#dropdown_menu {
  display: flex;
  height: 100%;
}
#dropdown_menu > ul {
  margin: 0;
  padding: 0;
}
.dropdown_content {
  --indicatorWidth: 40px;
  display: none;
  position: absolute;
  top: 70px;
  min-width: 160px;
  min-height: 160px;
  background-color: var(--bg-color);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  transition: all 300ms ease;
}
.dropdown_content::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  display: block;
  width: var(--indicatorWidth);
  height: 4px;
  background-color: var(--blue-color);
}
.dropdown_content .dropdown_inner {
  opacity: 0;
  transform: translateX(30px);
  transition: 250ms all ease;
  padding: 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 2.5rem;
  z-index: 1;
}
.dropdown_content .dropdown_inner b {
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.5;
  display: block;
}
.dropdown_content .dropdown_inner ul {
  margin: 0;
  margin-top: 1rem;
  padding: 0;
}
.dropdown_content .dropdown_inner ul li {
  min-width: 160px;
  padding: 0.5rem 0;
}
.dropdown_content .dropdown_inner ul li a:hover {
  font-weight: bold;
}
.dropdown_content .dropdown_inner.open {
  opacity: 1;
  z-index: 3;
  transform: translateX(0);
  transition: 250ms all ease 100ms;
}
.dropdown_content.open {
  display: block;
}
.dropdown_content li {
  color: var(--text-color);
  padding: 1rem 1.15rem;
  text-decoration: none;
  display: block;
}
.dropdown_content li:last-of-type {
  border-bottom: 0;
}
.dropdown_content li:hover {
  background-color: var(--secondary-color-10);
}
.dropdown:hover .dropdown_content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: var(--secondary-color-10);
}
footer {
  position: sticky;
  top: 100vh;
  z-index: 99;
  font-family: "Alexandria", sans-serif;
}
footer .footer-top {
  background-color: #141414;
  text-align: center;
}
footer .footer-top a {
  color: white;
}
footer .footer-top .wide-container {
  padding: 2rem 1rem;
  color: white;
  display: flex;
  justify-content: space-between;
}
footer .footer-bottom {
  text-align: center;
  background-color: black;
}
footer .footer-bottom .wide-container {
  padding: 2rem 0;
  color: var(--text-color-white-50);
  justify-content: center;
}
footer b {
  color: white;
}
footer i {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
  font-style: normal;
}
@media only screen and (max-width: 1400px) {
  .footer-top, .footer-bottom {
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  footer.marginBottom {
    padding-bottom: 95px;
  }
  footer .wide-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .wide-container * {
    width: 100%;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  footer .wide-container span {
    order: 2;
  }
}
.ss-result {
  width: 100%;
}
.ss-result mark {
  background-color: var(--blue-color-25);
}
.ss-result .ss-result__badge {
  background-color: var(--blue-color-05);
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 2px;
  padding: 0.35rem;
  font-size: 0.85rem;
  font-family: "Alexandria", sans-serif;
}
.SearchTitle {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-color-50);
}
.ss-result__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
  font-family: "Bona Nova", serif;
  font-weight: 500;
}
.ss-result__title a {
  text-decoration: none;
  color: var(--text-color);
}
.ss-result__content {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color-10);
}
.ss-result__link {
  color: var(--blue-color);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--blue-color);
}
.ss-result__link:hover {
  border-bottom: 2px solid var(--blue-color-50);
}
.ss-search-form {
  position: relative;
  margin-bottom: 2rem;
}
.ss-search-form input {
  width: calc(100% - 2rem);
  padding: 1rem;
  font-size: 1.2rem;
  border: 1px solid var(--border-color-10);
  border-radius: 4px;
}
.ss-search-form input:focus {
  outline: none;
}
.ss-search-form__input {
  position: relative;
  width: 100%;
  display: block;
}
.ss-search-form__submit {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 0;
  border-radius: 100%;
  background-color: var(--secondary-color-10);
  display: grid;
  cursor: pointer;
  width: 2.35rem;
  height: 2.35rem;
  place-content: center;
}
.ss-search-form__submit svg {
  color: var(--blue-color);
}
@media only screen and (max-width: 768px) {
  #search-modal i.search-modal-close {
    display: none;
  }
  #search-modal button.search-modal-close {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
  }
  #search-modal .content {
    display: flex !important;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
  }
  #search-modal .ui.input {
    max-width: 100%;
  }
  #search-modal .ui.input .ui.circular.icon svg {
    width: 22px;
  }
  #search-modal input {
    font-size: 1.5rem;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
@media only screen and (max-width: 500px) {
  .SearchTitle {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
  .ss-result__content {
    margin-top: 0rem;
  }
  .ss-result__title {
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
  .ss-result__title a {
    flex-shrink: 0;
    width: 100%;
    order: 2;
  }
  .ss-result__title .ui.label {
    font-size: 0.75rem;
    order: 1;
    margin-bottom: 0.5rem;
    margin-left: auto;
  }
}
.article_container {
  max-width: 640px;
  margin: 2rem auto;
  margin-top: 8rem;
  width: calc(100% - 2rem);
  padding: 1rem;
  font-family: "Alexandria", sans-serif;
  color: var(--text-color);
}
.article_container img {
  max-width: 100%;
  border-radius: 3px;
}
.article_container h1 {
  font-family: "Bona Nova", serif;
  font-weight: 600;
  font-size: 2.5rem;
}
.article_container p {
  line-height: 1.6rem;
  font-size: 1.1rem;
}
.article_container b, .article_container strong, .article_container h2, .article_container h3 {
  font-weight: 700;
}
.article_container div > h2 {
  margin-top: 1.3rem;
}
.article_container ul li, .article_container ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6rem;
  font-size: 1.1rem;
}
.article_container u {
  background-color: var(--blue-color-25);
  text-decoration: none;
  padding: 2px 1px;
}
.article_container a {
  color: var(--blue-color);
  text-decoration-color: var(--blue-color-50);
}
.article_container sub {
  font-size: inherit;
  line-height: inherit;
  bottom: auto;
  position: static;
  vertical-align: inherit;
  white-space: nowrap;
}
.article_container hr {
  border-top: 1px solid var(--border-color);
  margin: 2rem auto;
  margin-bottom: 2rem;
}
.article_container table, .article_container th, .article_container tr, .article_container td {
  border-collapse: collapse;
  border: 1px solid var(--border-color-10);
}
.article_container table {
  border-radius: 8px;
  width: 100%;
}
.article_container td, .article_container th {
  padding: 0.5rem;
}
.article_container .oc-text-boxFull {
  background-color: var(--blue-color-25);
  width: 100%;
  padding: 1.2rem;
  border-radius: 3px;
}
.article_container .oc-text-boxBorder {
  border: 2px solid var(--blue-color-25);
  width: 100%;
  padding: 1.2rem;
  border-radius: 3px;
}
.article_container .oc-text-small {
  font-size: 0.85rem;
}
.article_container .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.article_container .video-embed iframe, .article_container .video-embed object, .article_container .video-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article_container .photogallery_cta {
  position: relative;
  display: flex;
  border-radius: 3px;
  padding: 0;
  overflow: hidden;
}
.article_container .photogallery_cta_overlay {
  position: absolute;
  z-index: 2;
  display: block;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
  opacity: 0.5;
}
.article_container .photogallery_cta_content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  top: auto;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  width: calc(100% - 2rem);
  justify-content: space-between;
  height: fit-content;
  background-color: transparent;
}
.article_container .photogallery_cta_content:hover {
  background-color: transparent;
}
.article_container .photogallery_cta_name {
  position: static;
  flex: 1;
  margin-right: 10px;
  text-align: left;
  justify-content: flex-start;
  background-color: transparent;
}
.article_container .photogallery_cta_name:hover {
  background-color: transparent;
}
.article_container .photogallery_cta_name small {
  color: var(--text-color-white);
  opacity: 0.75;
  font-size: 14px;
  font-weight: 300;
}
.article_container .photogallery_cta_name b {
  display: block;
  color: var(--text-color-white);
  font-size: 21px;
  line-height: 28px;
  padding-top: 5px;
  text-align: left;
}
.article_container .photogallery_cta_button {
  position: static;
  flex-shrink: 0;
  background-color: var(--red-color);
  color: var(--text-color-white);
  padding: 10px 15px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-size: 1rem;
}
.article_container .photogallery_cta_button:hover {
  background-color: var(--red-color);
}
.article_container .photogallery_cta_button span {
  position: static;
  font-weight: normal;
  opacity: 0.75;
  width: fit-content;
  background-color: transparent;
  font-size: 1rem;
}
.article_container .photogallery_cta_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-color-white);
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.article_container .photogallery_cta_icon svg {
  height: 24px;
  width: 24px;
  margin-bottom: 0;
}
.article_container .photogallery_cta img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.post_listing {
  margin-top: 0;
}
.post_listing h2 {
  font-size: 2rem;
  color: var(--text-color-light);
  margin: 4rem 0 0 0;
  font-family: "Bona Nova", serif;
  font-weight: 600;
}
.post_listing_container {
  padding: 0 !important;
}
.post_listing {
  margin: 3rem auto;
}
.post_listing .pagination {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_listing .pagination li {
  list-style-type: none;
}
.post_listing .pagination li a {
  display: grid;
  place-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border-color-10);
  border-radius: 4px;
  color: var(--text-color);
  text-decoration: none;
}
.post_listing .pagination li a svg {
  height: 21px;
  width: 21px;
}
.post_listing .pagination li a:hover {
  color: var(--blue-color);
}
.post_listing .pagination li.active a {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  color: var(--text-color-white);
  font-weight: bold;
}
.post_listing .pagination li.active a:hover {
  color: var(--text-color-white);
}
.post_listing_container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 0;
}
.post_listing_container .button {
  margin: 1rem 0;
  display: block;
  width: fit-content;
}
.post_listing_container ul {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  align-self: flex-start;
}
.post_listing_container ul li {
  list-style-type: none;
  border-bottom: 1px dashed var(--border-color-10);
}
.post_listing_container ul li:last-of-type {
  border-bottom: 0;
}
.post_listing_container ul li article {
  padding-bottom: 1rem;
  margin-top: 2rem;
}
.post_listing_container ul li article span {
  font-family: "Alexandria", sans-serif;
  color: var(--text-color-50);
}
.post_listing_container ul li article .info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_listing_container ul li article .category {
  background-color: var(--blue-color-75);
  padding: 0.25rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-color-white);
  font-family: "Alexandria", sans-serif;
}
.post_listing_container ul li article h3 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-family: "Bona Nova", serif;
  margin: 0.5rem 0 0.5rem 0;
  font-weight: 700;
}
.post_listing_container ul li article h3 a {
  text-decoration: none;
  color: var(--text-color);
}
.post_listing_container ul li article h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--blue-color-25);
  text-decoration-thickness: 5px;
  text-decoration-skip-ink: none;
}
.post_listing_container ul li article p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Alexandria", sans-serif;
  margin: 0rem 0 1rem 0;
}
.post_listing_container ul li article img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: none;
}
@media only screen and (max-width: 900px) {
  .post_listing_container {
    max-width: 640px;
    padding: 1rem;
    margin: auto;
  }
  .post_listing_main {
    border-right: 0px dashed var(--border-color-10);
    padding-right: 0rem;
    margin-bottom: 2rem;
  }
}
.static_container {
  max-width: 640px;
  margin: 2rem auto;
  margin-top: 8rem;
  width: calc(100% - 2rem);
  padding: 1rem;
  font-family: "Alexandria", sans-serif;
}
.static_container img {
  max-width: 100%;
  border-radius: 3px;
}
.static_container h1 {
  font-family: "Bona Nova", serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--text-color);
}
.static_container p {
  line-height: 1.6rem;
  font-size: 1.1rem;
}
.static_container b, .static_container strong, .static_container h2, .static_container h3 {
  font-weight: 700;
}
.static_container div > h2 {
  margin-top: 1.3rem;
}
.static_container ul li, .static_container ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6rem;
  font-size: 1.1rem;
}
.static_container u {
  background-color: var(--blue-color-05);
  text-decoration: none;
  padding: 2 px 1px;
}
.static_container a {
  color: var(--blue-color);
  text-decoration-color: var(--blue-color-50);
}
.static_container sub {
  font-size: inherit;
  line-height: inherit;
  bottom: auto;
  position: static;
  vertical-align: inherit;
  white-space: nowrap;
}
.static_container hr {
  border-top: 1px solid var(--border-color);
  margin: 2rem auto;
  margin-bottom: 2rem;
}
.static_container table, .static_container th, .static_container tr, .static_container td {
  border-collapse: collapse;
  border: 1px solid var(--border-color-10);
}
.static_container table {
  border-radius: 8px;
  width: 100%;
}
.static_container td, .static_container th {
  padding: 0.5rem;
}
.static_container .oc-text-boxFull {
  background-color: var(--blue-color-25);
  width: 100%;
  padding: 1.2rem;
  border-radius: 3px;
}
.static_container .oc-text-boxBorder {
  border: 2px solid var(--blue-color-25);
  width: 100%;
  padding: 1.2rem;
  border-radius: 3px;
}
.static_container .oc-text-small {
  font-size: 0.85rem;
}
.static_container .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.static_container .video-embed iframe, .static_container .video-embed object, .static_container .video-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.static_container .photogallery_cta {
  position: relative;
  display: flex;
  border-radius: 3px;
  overflow: hidden;
}
.static_container .photogallery_cta_overlay {
  position: absolute;
  z-index: 2;
  display: block;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
  opacity: 0.5;
}
.static_container .photogallery_cta_content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  width: calc(100% - 2rem);
  justify-content: space-between;
}
.static_container .photogallery_cta_name {
  flex: 1;
  margin-right: 10px;
}
.static_container .photogallery_cta_name small {
  color: var(--text-color-white);
  opacity: 0.75;
  font-size: 14px;
  font-weight: 300;
}
.static_container .photogallery_cta_name b {
  display: block;
  color: var(--text-color-white);
  font-size: 21px;
  line-height: 28px;
  padding-top: 5px;
}
.static_container .photogallery_cta_button {
  flex-shrink: 0;
  background-color: var(--red-color);
  color: var(--text-color-white);
  padding: 10px 15px;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.static_container .photogallery_cta_button span {
  font-weight: normal;
  opacity: 0.75;
}
.static_container .photogallery_cta_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-color-white);
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.static_container .photogallery_cta img {
  position: relative;
  z-index: 1;
}

.hp_ctas {
  padding: 5rem 0;
  background-color: #FFF7ED;
  position: relative;
  z-index: 2;
}
.hp_ctas .section_headline {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 3rem;
}
.hp_ctas_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
}
.hp_ctas_item {
  --speed: 650ms;
  --delayTitle: 0ms;
  --delay: 250ms;
  display: grid;
  place-content: center;
  font-family: "Alexandria", sans-serif;
}
.hp_ctas_item div {
  max-width: 350px;
  margin: auto;
}
.hp_ctas_item p {
  margin: 0 0 1rem 0;
  text-align: center;
  font-weight: 300;
  color: #64748B;
  opacity: 0;
  transition: opacity var(--speed) ease-in var(--delay);
}
.hp_ctas_item p a {
  color: #64748B;
  text-decoration: none;
}
.hp_ctas_item .button--link {
  margin: auto;
  display: block;
  width: fit-content;
  opacity: 0;
  height: 5px;
  overflow: hidden;
  transition: opacity var(--speed) ease-in var(--delay);
}
.hp_ctas_item h3 {
  font-size: 3rem;
  font-family: "Bona Nova", serif;
  text-align: center;
  font-weight: 400;
  margin: 0 auto 1rem auto;
  position: relative;
  z-index: 1;
  width: fit-content;
  overflow: hidden;
}
.hp_ctas_item h3 a {
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  z-index: 1;
  top: 50px;
  opacity: 0;
  transition: all 1s ease-in var(--delayTitle);
}
.hp_ctas_item h3::after {
  content: "";
  position: absolute;
  left: 15%;
  top: 50%;
  width: 70%;
  border-bottom: 1px solid rgba(180, 83, 9, 0.3);
  transform: rotate(-20deg) translateY(0px);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--speed) ease-in var(--delay), transform 250ms ease;
}
.hp_ctas_item:hover h3::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 100%;
  border-bottom: 6px solid rgba(180, 83, 9, 0.3);
  transform: rotate(0deg) translateY(3px);
  z-index: 1;
}
.hp_ctas_item.is-inview p {
  opacity: 1;
}
.hp_ctas_item.is-inview .button--link {
  opacity: 1;
  height: 15px;
}
.hp_ctas_item.is-inview h3 a {
  top: 0px;
  opacity: 1;
}
.hp_ctas_item.is-inview h3::after {
  opacity: 1;
}
.hp_ctas_item:nth-of-type(2) {
  --delay: 500ms;
  --delayTitle: 250ms;
}
.hp_ctas_item:nth-of-type(3) {
  --delay: 750ms;
  --delayTitle: 500ms;
}
@media screen and (max-width: 900px) {
  .hp_ctas_item div {
    max-width: 250px;
    margin: auto;
  }
  .hp_ctas_item h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hp_ctas_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hp_ctas::after {
    display: none;
  }
  .hp_ctas_item {
    padding: 1.5rem 1rem;
    margin: 0;
    place-content: center;
  }
  .hp_ctas_item:last-of-type {
    border: 0;
  }
  .hp_ctas_item p {
    margin: 0 0 0.25rem 0;
  }
}
