@charset "UTF-8";
@import "pure-min.css";
@import "pure-grids-responsive-min.css";
@import "_includes/aos.css";
@import "https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css";
@import "../_js/glightbox-3.3.0/dist/css/glightbox.css";
body {
  opacity: 0; /* Start with the body fully transparent */
  transition: opacity 0.5s ease-in-out; /* Transition effect for both in and out */
}

body.fade-in {
  /* This class is added via JavaScript when the document is fully loaded */
  opacity: 1;
}

.pure-g {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.pure-g.full-width {
  max-width: 100%;
}
.pure-g.full-height {
  height: 100vh;
}
.pure-g.full-height > div {
  height: 100vh;
}
.pure-g > div {
  box-sizing: border-box;
  padding: 20px 20px;
}
@media screen and (min-width: 768px) {
  .pure-g > div {
    padding: 24px 24px;
  }
}
@media screen and (max-width: 500px) {
  .pure-g > div.collapse-sm-top {
    padding-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .pure-g > div.collapse-sm-bottom {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .pure-g > div.collapse-sm-both {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .pure-g > div.collapse-md-top {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .pure-g > div.collapse-md-bottom {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .pure-g > div.collapse-md-both {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .pure-g > div .collapse-sm-fix {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .pure-g > div .collapse-md-fix {
    margin-bottom: 0;
  }
}
.pure-g .pure-g > div {
  box-sizing: border-box;
  padding: 20px 20px;
}
@media screen and (min-width: 768px) {
  .pure-g .pure-g > div {
    padding: 24px 24px;
  }
}
.pure-g .pure-g.nested {
  width: calc(100% + 20px);
  margin-left: -10px;
}
.pure-g .pure-g.nested > div {
  padding: 10px 10px;
}
@media screen and (min-width: 768px) {
  .pure-g .pure-g.nested {
    width: calc(100% + 12px);
    margin-left: -12px;
  }
  .pure-g .pure-g.nested > div {
    padding: 12px 12px;
  }
}
.pure-g.no-gap > div {
  padding: 0 !important;
}

.header.hide.scroll-to-hide-on-all,
.subnav.hide.scroll-to-hide-on-all {
  transform: translateY(-100%);
}
.header.sticky,
.subnav.sticky {
  position: sticky;
  top: 0;
}
@media screen and (min-width: 768px) {
  .header .show-off-canvas,
  .subnav .show-off-canvas {
    display: none;
  }
  .header.always-off-canvas .show-off-canvas,
  .subnav.always-off-canvas .show-off-canvas {
    display: initial;
  }
}
@media screen and (max-width: 768px) {
  .header.hide,
  .subnav.hide {
    transform: translateY(-100%);
  }
  .header .hide-off-canvas,
  .subnav .hide-off-canvas {
    display: none;
  }
}
.header.always-off-canvas .hide-off-canvas,
.subnav.always-off-canvas .hide-off-canvas {
  display: none;
}
.header a,
.subnav a {
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-family: "BW Helder", Montserrat, rial, "Helvetica Neue", Helvetica, sans-serif;
}
.header a.toggle-button,
.subnav a.toggle-button {
  gap: 0;
}
.header a:not(.toggle-button):after,
.subnav a:not(.toggle-button):after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: transparent;
  display: block;
  transition: all ease-in-out 0.4s;
}
.header a:hover, .header a:focus-visible,
.subnav a:hover,
.subnav a:focus-visible {
  color: #fff;
}
.header a:hover:after, .header a:focus-visible:after,
.subnav a:hover:after,
.subnav a:focus-visible:after {
  background-color: rgb(239, 82, 40);
}
.header .header-contents,
.subnav .header-contents {
  /* display: flex;
      align-items: center;
      justify-content: center; */
  transition: all ease-in-out 0.4s;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  /* max-width: $max-spread; */
}
.header ul.nav-list,
.header ul.subnav-list,
.subnav ul.nav-list,
.subnav ul.subnav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  transition: none;
}
.header .logo-container,
.subnav .logo-container {
  flex: auto;
}
.header img.logo,
.subnav img.logo {
  transition: all ease-in-out 0.4s;
}
.header div.mobile-menu-icon,
.subnav div.mobile-menu-icon {
  cursor: pointer;
}
.header div.mobile-menu-icon svg,
.subnav div.mobile-menu-icon svg {
  width: 100%;
  height: 100%;
}

.header {
  transition: all ease-in-out 0.4s;
  z-index: 10001;
}
@media screen and (min-width: 768px) {
  .header:not(.always-off-canvas) .header-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 0;
    max-width: 1280px;
    margin: 0 auto;
  }
  .header:not(.always-off-canvas) .header-contents .logo-container img.logo {
    width: 260px;
    margin-left: 30px;
    max-width: 75%;
  }
  .header:not(.always-off-canvas) .header-contents {
    /* .social-icons {
              flex: none;
          } */
  }
  .header:not(.always-off-canvas) .header-contents .nav {
    display: flex;
    align-items: center;
  }
  .header:not(.always-off-canvas) .header-contents .nav .mobile-menu-icon {
    display: none;
  }
  .header:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list {
    display: flex;
    align-items: center;
    justify-content: right;
  }
  .header:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li {
    margin: 0 1em;
  }
  .header:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li > a {
    padding: 0.5em;
  }
  .header:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container {
    position: relative;
  }
  .header:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container > a::after {
    content: " ▼";
    font-size: 0.6em;
  }
  .header:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container:hover > a {
    color: initial;
  }
  .header:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container:hover > ul.subnav-list {
    opacity: 1;
    pointer-events: auto;
  }
  .header:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container ul.subnav-list {
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out 0.4s;
    position: absolute;
    padding: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .header {
    display: inline-block;
    width: 100%;
  }
  .header .logo-container {
    text-align: center;
  }
  .header .mobile-menu-icon {
    left: 1.5em;
  }
  .header .nav {
    justify-content: right;
    padding-left: 3.5em;
    padding-right: 1.5em;
  }
  .header .nav > *.left {
    justify-self: left;
  }
  .header .nav:not(.open) .nav-contents {
    transform: translateX(-100%);
  }
  .header .nav-contents {
    left: 0;
  }
  .header.menu-left-off-canvas .logo-container, .header.logo-right-off-canvas .logo-container {
    text-align: right;
  }
  .header.menu-left-off-canvas .mobile-menu-icon, .header.logo-right-off-canvas .mobile-menu-icon {
    left: 1em;
  }
  .header.menu-left-off-canvas .nav, .header.logo-right-off-canvas .nav {
    justify-content: left;
    padding-left: 3.5em;
  }
  .header.menu-left-off-canvas .nav:not(.open) .nav-contents, .header.logo-right-off-canvas .nav:not(.open) .nav-contents {
    transform: translateX(-100%);
  }
  .header.menu-left-off-canvas .nav-contents, .header.logo-right-off-canvas .nav-contents {
    left: 0;
  }
  .header.menu-right-off-canvas .logo-container, .header.logo-left-off-canvas .logo-container {
    text-align: left;
  }
  .header.menu-right-off-canvas .mobile-menu-icon, .header.logo-left-off-canvas .mobile-menu-icon {
    right: 20px;
    left: initial;
  }
  .header.menu-right-off-canvas .nav, .header.logo-left-off-canvas .nav {
    justify-content: right;
    padding-right: 3.5em;
  }
  .header.menu-right-off-canvas .nav:not(.open) .nav-contents, .header.logo-left-off-canvas .nav:not(.open) .nav-contents {
    transform: translateX(100%);
  }
  .header.menu-right-off-canvas .nav-contents, .header.logo-left-off-canvas .nav-contents {
    right: 0;
    left: initial;
    text-align: right;
  }
  .header .header-contents {
    position: relative;
    margin-bottom: 0.75em;
  }
  .header .header-contents .nav > *:not(.nav-contents) {
    display: flex;
    flex: auto;
    align-items: center;
  }
  .header .header-contents .nav > *:not(.nav-contents).right {
    justify-content: right;
  }
  .header .header-contents .nav {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .header .header-contents .nav::before {
    transition: all ease-in-out 0.4s;
    content: "";
    display: inline-block;
    position: fixed;
    pointer-events: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
  }
  .header .header-contents .nav .mobile-menu-icon {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .header .header-contents .nav.open::before {
    opacity: 1;
  }
  .header .header-contents .nav.open .toggle-button > span {
    opacity: 1;
    transform: rotate(45deg) translate(0, 0);
  }
  .header .header-contents .nav.open .toggle-button > span:nth-last-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  .header .header-contents .nav.open .toggle-button > span:last-child {
    transform: rotate(-45deg) translate(0, -1px);
  }
  .header .header-contents .nav .toggle-button span {
    display: block;
    position: relative;
    width: 33px;
    height: 2.5px;
    margin-bottom: 6px;
    z-index: 10000;
    /* animation */
    transform-origin: 8px 6px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  .header .header-contents .nav .toggle-button span:last-child {
    margin-bottom: 0;
  }
  .header .header-contents .nav .toggle-button span:first-of-type {
    transform-origin: 0% 0%;
  }
  .header .header-contents .nav .toggle-button span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  .header .header-contents .nav .nav-contents {
    position: fixed;
    top: 0;
    width: 80%;
    min-width: 200px;
    max-width: 330px;
    height: 100%;
    padding-top: 4.5em;
    padding-right: 10px;
    overflow: scroll;
    scrollbar-width: none;
  }
  .header .header-contents .nav .nav-contents::-webkit-scrollbar {
    display: none;
  }
  .header .header-contents .nav .nav-contents {
    transition: all ease-in-out 0.4s;
  }
  .header .header-contents .nav .nav-contents ul.nav-list li {
    margin-bottom: 0;
  }
  .header .header-contents .nav .nav-contents ul.nav-list li > a {
    padding-right: 20px;
    display: inline-flex;
  }
  .header .header-contents .nav .nav-contents ul.nav-list li > a.phone {
    color: rgb(239, 82, 40);
  }
  .header .header-contents .nav .nav-contents ul.nav-list li.subnav-container ul.subnav-list a {
    padding-right: 17%;
  }
  .header .header-contents .nav .nav-contents ul.nav-list > li.subnav-container {
    position: relative;
    overflow: hidden;
  }
  .header .header-contents .nav .nav-contents ul.nav-list > li.subnav-container > a {
    position: relative;
  }
  .header .header-contents .nav .nav-contents ul.nav-list > li.subnav-container > a::after {
    content: "∨";
    font-size: 1.2em;
    opacity: 0.4;
    top: 48%;
    position: absolute;
    right: 0.7em;
    transform: translateY(-50%);
  }
  .header .header-contents .nav .nav-contents ul.nav-list > li.subnav-container {
    /* &:hover, */
  }
  .header .header-contents .nav .nav-contents ul.nav-list > li.subnav-container.open > a::after {
    content: "∧";
    font-size: 1.2em;
    opacity: 0.4;
    right: 0.7em;
    top: 48%;
    position: absolute;
    transform: translateY(-50%);
  }
  .header .header-contents .nav .nav-contents ul.nav-list > li.subnav-container.open > ul.subnav-list {
    opacity: 1;
    max-height: 500px;
  }
  .header .header-contents .nav .nav-contents ul.nav-list > li.subnav-container ul.subnav-list {
    max-height: 0;
    transition: all ease-in-out 0.4s;
    font-size: 0.9em;
  }
}
.header.always-off-canvas {
  display: inline-block;
  width: 100%;
}
.header.always-off-canvas .logo-container {
  text-align: center;
}
.header.always-off-canvas .mobile-menu-icon {
  left: 1.5em;
}
.header.always-off-canvas .nav {
  justify-content: right;
  padding-left: 3.5em;
  padding-right: 1.5em;
}
.header.always-off-canvas .nav > *.left {
  justify-self: left;
}
.header.always-off-canvas .nav:not(.open) .nav-contents {
  transform: translateX(-100%);
}
.header.always-off-canvas .nav-contents {
  left: 0;
}
.header.always-off-canvas.menu-left-off-canvas .logo-container, .header.always-off-canvas.logo-right-off-canvas .logo-container {
  text-align: right;
}
.header.always-off-canvas.menu-left-off-canvas .mobile-menu-icon, .header.always-off-canvas.logo-right-off-canvas .mobile-menu-icon {
  left: 1em;
}
.header.always-off-canvas.menu-left-off-canvas .nav, .header.always-off-canvas.logo-right-off-canvas .nav {
  justify-content: left;
  padding-left: 3.5em;
}
.header.always-off-canvas.menu-left-off-canvas .nav:not(.open) .nav-contents, .header.always-off-canvas.logo-right-off-canvas .nav:not(.open) .nav-contents {
  transform: translateX(-100%);
}
.header.always-off-canvas.menu-left-off-canvas .nav-contents, .header.always-off-canvas.logo-right-off-canvas .nav-contents {
  left: 0;
}
.header.always-off-canvas.menu-right-off-canvas .logo-container, .header.always-off-canvas.logo-left-off-canvas .logo-container {
  text-align: left;
}
.header.always-off-canvas.menu-right-off-canvas .mobile-menu-icon, .header.always-off-canvas.logo-left-off-canvas .mobile-menu-icon {
  right: 20px;
  left: initial;
}
.header.always-off-canvas.menu-right-off-canvas .nav, .header.always-off-canvas.logo-left-off-canvas .nav {
  justify-content: right;
  padding-right: 3.5em;
}
.header.always-off-canvas.menu-right-off-canvas .nav:not(.open) .nav-contents, .header.always-off-canvas.logo-left-off-canvas .nav:not(.open) .nav-contents {
  transform: translateX(100%);
}
.header.always-off-canvas.menu-right-off-canvas .nav-contents, .header.always-off-canvas.logo-left-off-canvas .nav-contents {
  right: 0;
  left: initial;
  text-align: right;
}
.header.always-off-canvas .header-contents {
  position: relative;
  margin-bottom: 0.75em;
}
.header.always-off-canvas .header-contents .nav > *:not(.nav-contents) {
  display: flex;
  flex: auto;
  align-items: center;
}
.header.always-off-canvas .header-contents .nav > *:not(.nav-contents).right {
  justify-content: right;
}
.header.always-off-canvas .header-contents .nav {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.header.always-off-canvas .header-contents .nav::before {
  transition: all ease-in-out 0.4s;
  content: "";
  display: inline-block;
  position: fixed;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
}
.header.always-off-canvas .header-contents .nav .mobile-menu-icon {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header.always-off-canvas .header-contents .nav.open::before {
  opacity: 1;
}
.header.always-off-canvas .header-contents .nav.open .toggle-button > span {
  opacity: 1;
  transform: rotate(45deg) translate(0, 0);
}
.header.always-off-canvas .header-contents .nav.open .toggle-button > span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.header.always-off-canvas .header-contents .nav.open .toggle-button > span:last-child {
  transform: rotate(-45deg) translate(0, -1px);
}
.header.always-off-canvas .header-contents .nav .toggle-button span {
  display: block;
  position: relative;
  width: 33px;
  height: 2.5px;
  margin-bottom: 6px;
  z-index: 10000;
  /* animation */
  transform-origin: 8px 6px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.header.always-off-canvas .header-contents .nav .toggle-button span:last-child {
  margin-bottom: 0;
}
.header.always-off-canvas .header-contents .nav .toggle-button span:first-of-type {
  transform-origin: 0% 0%;
}
.header.always-off-canvas .header-contents .nav .toggle-button span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
.header.always-off-canvas .header-contents .nav .nav-contents {
  position: fixed;
  top: 0;
  width: 80%;
  min-width: 200px;
  max-width: 330px;
  height: 100%;
  padding-top: 4.5em;
  padding-right: 10px;
  overflow: scroll;
  scrollbar-width: none;
}
.header.always-off-canvas .header-contents .nav .nav-contents::-webkit-scrollbar {
  display: none;
}
.header.always-off-canvas .header-contents .nav .nav-contents {
  transition: all ease-in-out 0.4s;
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list li {
  margin-bottom: 0;
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list li > a {
  padding-right: 20px;
  display: inline-flex;
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list li > a.phone {
  color: rgb(239, 82, 40);
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list li.subnav-container ul.subnav-list a {
  padding-right: 17%;
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list > li.subnav-container {
  position: relative;
  overflow: hidden;
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list > li.subnav-container > a {
  position: relative;
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list > li.subnav-container > a::after {
  content: "∨";
  font-size: 1.2em;
  opacity: 0.4;
  top: 48%;
  position: absolute;
  right: 0.7em;
  transform: translateY(-50%);
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list > li.subnav-container {
  /* &:hover, */
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list > li.subnav-container.open > a::after {
  content: "∧";
  font-size: 1.2em;
  opacity: 0.4;
  right: 0.7em;
  top: 48%;
  position: absolute;
  transform: translateY(-50%);
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list > li.subnav-container.open > ul.subnav-list {
  opacity: 1;
  max-height: 500px;
}
.header.always-off-canvas .header-contents .nav .nav-contents ul.nav-list > li.subnav-container ul.subnav-list {
  max-height: 0;
  transition: all ease-in-out 0.4s;
  font-size: 0.9em;
}
.header.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
}

.subnav:not(.always-off-canvas) .header-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
  max-width: 1280px;
  margin: 0 auto;
}
.subnav:not(.always-off-canvas) .header-contents .logo-container img.logo {
  width: 260px;
  margin-left: 30px;
  max-width: 75%;
}
.subnav:not(.always-off-canvas) .header-contents {
  /* .social-icons {
            flex: none;
        } */
}
.subnav:not(.always-off-canvas) .header-contents .nav {
  display: flex;
  align-items: center;
}
.subnav:not(.always-off-canvas) .header-contents .nav .mobile-menu-icon {
  display: none;
}
.subnav:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list {
  display: flex;
  align-items: center;
  justify-content: right;
}
.subnav:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li {
  margin: 0 1em;
}
.subnav:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li > a {
  padding: 0.5em;
}
.subnav:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container {
  position: relative;
}
.subnav:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container > a::after {
  content: " ▼";
  font-size: 0.6em;
}
.subnav:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container:hover > a {
  color: initial;
}
.subnav:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container:hover > ul.subnav-list {
  opacity: 1;
  pointer-events: auto;
}
.subnav:not(.always-off-canvas) .header-contents .nav .nav-contents ul.nav-list > li.subnav-container ul.subnav-list {
  opacity: 0;
  pointer-events: none;
  transition: all ease-in-out 0.4s;
  position: absolute;
  padding: 0.5em;
}
.subnav {
  transition: all ease-in-out 0.4s;
  z-index: 10001;
}
.subnav.sticky {
  top: var(--y-offset, 0) !important;
  z-index: 10000;
}
.subnav ul.nav-list {
  justify-content: center !important;
}

.padded-lr {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .padded-lr {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 768px) {
  .padded-tb {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}

@media screen and (min-width: 768px) {
  .padded-tb-big {
    padding-top: 7.5em;
    padding-bottom: 7.5em;
  }
}

@media screen and (min-width: 768px) {
  .padded-t {
    padding-top: 3em;
  }
}

.padded-t-big {
  padding-top: 7.5em;
}

@media screen and (min-width: 768px) {
  .padded-b {
    padding-bottom: 3em;
  }
}

.padded-b-big {
  padding-bottom: 7.5em;
}

.has-overlay {
  position: relative;
}
.has-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

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

.radius {
  border-radius: 12px;
}

.img-contain img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.img-contain {
  width: 100%;
  height: 100%;
}
.img-contain.square {
  aspect-ratio: 1/1;
}
.img-contain.landscape {
  aspect-ratio: 16/9;
}
.img-contain.portrait {
  aspect-ratio: 3/4;
}

img.overlay {
  margin-top: -9em;
}
@media screen and (max-width: 768px) {
  img.overlay {
    margin-bottom: -26px;
  }
}

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

.float-left,
.float-right {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .float-left,
  .float-right {
    width: 37%;
  }
}
@media screen and (min-width: 1024px) {
  .float-left,
  .float-right {
    width: 30%;
  }
}

@media screen and (min-width: 768px) {
  .float-left {
    float: left;
    margin-right: 40px;
  }
}

@media screen and (min-width: 768px) {
  .float-right {
    float: right;
    margin-left: 50px;
  }
}

.center-vertically {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .medium-order-1 {
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .medium-order-2 {
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .medium-order-3 {
    order: 3;
  }
}

@media screen and (min-width: 768px) {
  .medium-order-4 {
    order: 4;
  }
}

@media screen and (min-width: 768px) {
  .medium-order-5 {
    order: 5;
  }
}

@media screen and (min-width: 768px) {
  .medium-order-6 {
    order: 6;
  }
}

@media screen and (min-width: 768px) {
  .medium-order-7 {
    order: 7;
  }
}

@media screen and (min-width: 768px) {
  .medium-order-8 {
    order: 8;
  }
}

@media screen and (min-width: 768px) {
  .medium-order-9 {
    order: 9;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-1 {
    order: 1;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-2 {
    order: 2;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-3 {
    order: 3;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-4 {
    order: 4;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-5 {
    order: 5;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-6 {
    order: 6;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-7 {
    order: 7;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-8 {
    order: 8;
  }
}

@media screen and (min-width: 1024px) {
  .large-order-9 {
    order: 9;
  }
}

@media screen and (min-width: 768px) {
  .show-small {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hide-small {
    display: none;
  }
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media screen and (max-width: 500px) {
  .text-center-sm {
    text-align: center;
  }
  .text-left-sm {
    text-align: left;
  }
  .text-right-sm {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .text-center-md {
    text-align: center;
  }
  .text-left-md {
    text-align: left;
  }
  .text-right-md {
    text-align: right;
  }
}
@media screen and (min-width: 1024px) {
  .text-center-lg {
    text-align: center;
  }
  .text-left-lg {
    text-align: left;
  }
  .text-right-lg {
    text-align: right;
  }
}
.distribute {
  align-content: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.distribute > div {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .distribute > div {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.distribute > * {
  width: 100%;
}

.even2 > * {
  width: 50%;
}

.even3 > * {
  width: 33.3333%;
}

.even4 > * {
  width: 25%;
}

.even5 > * {
  width: 20%;
}

.even6 > * {
  width: 16.6666%;
}

.even7 > * {
  width: 14.2857%;
}

.even8 > * {
  width: 12.5%;
}

@media screen and (min-width: 768px) {
  .even2-md > * {
    width: 50%;
  }
  .even3-md > * {
    width: 33.3333%;
  }
  .even4-md > * {
    width: 25%;
  }
  .even5-md > * {
    width: 20%;
  }
  .even6-md > * {
    width: 16.6666%;
  }
  .even7-md > * {
    width: 14.2857%;
  }
  .even8-md > * {
    width: 12.5%;
  }
}
@media screen and (min-width: 1024px) {
  .even2-lg > * {
    width: 50%;
  }
  .even3-lg > * {
    width: 33.3333%;
  }
  .even4-lg > * {
    width: 25%;
  }
  .even5-lg > * {
    width: 20%;
  }
  .even6-lg > * {
    width: 16.6666%;
  }
  .even7-lg > * {
    width: 14.2857%;
  }
  .even8-lg > * {
    width: 12.5%;
  }
}
@media screen and (min-width: 1280px) {
  .even2-xl > * {
    width: 50%;
  }
  .even3-xl > * {
    width: 33.3333%;
  }
  .even4-xl > * {
    width: 25%;
  }
  .even5-xl > * {
    width: 20%;
  }
  .even6-xl > * {
    width: 16.6666%;
  }
  .even7-xl > * {
    width: 14.2857%;
  }
  .even8-xl > * {
    width: 12.5%;
  }
}
.with-margin.distribute > * {
  width: calc(100% - 20px - 20px);
}

.with-margin.even2 > * {
  width: calc(50% - 20px - 20px);
}

.with-margin.even3 > * {
  width: calc(33.3333% - 20px - 20px);
}

.with-margin.even4 > * {
  width: calc(25% - 20px - 20px);
}

.with-margin.even5 > * {
  width: calc(20% - 20px - 20px);
}

.with-margin.even6 > * {
  width: calc(16.6666% - 20px - 20px);
}

.with-margin.even7 > * {
  width: calc(14.2857% - 20px - 20px);
}

.with-margin.even8 > * {
  width: calc(12.5% - 20px - 20px);
}

@media screen and (min-width: 768px) {
  .with-margin.even2-md > * {
    width: calc(50% - 20px - 20px);
  }
  .with-margin.even3-md > * {
    width: calc(33.3333% - 20px - 20px);
  }
  .with-margin.even4-md > * {
    width: calc(25% - 20px - 20px);
  }
  .with-margin.even5-md > * {
    width: calc(20% - 20px - 20px);
  }
  .with-margin.even6-md > * {
    width: calc(16.6666% - 20px - 20px);
  }
  .with-margin.even7-md > * {
    width: calc(14.2857% - 20px - 20px);
  }
  .with-margin.even8-md > * {
    width: calc(12.5% - 20px - 20px);
  }
}
@media screen and (min-width: 1024px) {
  .with-margin.even2-lg > * {
    width: calc(50% - 20px - 20px);
  }
  .with-margin.even3-lg > * {
    width: calc(33.3333% - 20px - 20px);
  }
  .with-margin.even4-lg > * {
    width: calc(25% - 20px - 20px);
  }
  .with-margin.even5-lg > * {
    width: calc(20% - 20px - 20px);
  }
  .with-margin.even6-lg > * {
    width: calc(16.6666% - 20px - 20px);
  }
  .with-margin.even7-lg > * {
    width: calc(14.2857% - 20px - 20px);
  }
  .with-margin.even8-lg > * {
    width: calc(12.5% - 20px - 20px);
  }
}
@media screen and (min-width: 1280px) {
  .with-margin.even2-xl > * {
    width: calc(50% - 20px - 20px);
  }
  .with-margin.even3-xl > * {
    width: calc(33.3333% - 20px - 20px);
  }
  .with-margin.even4-xl > * {
    width: calc(25% - 20px - 20px);
  }
  .with-margin.even5-xl > * {
    width: calc(20% - 20px - 20px);
  }
  .with-margin.even6-xl > * {
    width: calc(16.6666% - 20px - 20px);
  }
  .with-margin.even7-xl > * {
    width: calc(14.2857% - 20px - 20px);
  }
  .with-margin.even8-xl > * {
    width: calc(12.5% - 20px - 20px);
  }
}
.bg-dark {
  background-color: #676767;
  color: #f5f5f5;
}
.bg-dark .head1,
.bg-dark .head2,
.bg-dark .head3,
.bg-dark .head4,
.bg-dark .head5,
.bg-dark .head6 {
  color: #f5f5f5;
}
.bg-dark p {
  color: #f5f5f5;
}

@font-face {
  font-display: swap;
  font-family: "BW Helder";
  font-style: normal;
  font-weight: 500;
  src: url("../_fonts/BwHelder-W2Medium.woff") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "BW Helder";
  font-style: normal;
  font-weight: 700;
  src: url("../_fonts/BwHelder-W1Bold.woff") format("woff2");
}
@font-face {
  font-family: "museo-sans";
  src: url("https://use.typekit.net/af/036a04/00000000000000007735da11/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"), url("https://use.typekit.net/af/036a04/00000000000000007735da11/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"), url("https://use.typekit.net/af/036a04/00000000000000007735da11/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #FAFAFA;
  color: #0c1528;
  font-family: "museo-sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px; /* Scales all fonts sized with ems or percentages at this breakpoint */
  }
}
p {
  margin-right: -0.5em;
  margin-bottom: 1em;
  margin-top: 0;
}

strong {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: rgb(239, 82, 40);
  transition: all ease-in-out 0.4s;
}
a:hover, a:active {
  color: #0c1528;
}
a:focus-visible {
  outline: none;
}

button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button),
.button {
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  margin-top: 0.7em;
  margin-bottom: 0.5rem;
  padding: 8px;
  background-color: transparent;
  color: #0c1528;
  border: 1px solid #0c1528;
  transition: all ease-in-out 0.4s;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
@media screen and (min-width: 1024px) {
  button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button),
  .button {
    font-size: 22px;
    padding: 8px 16px;
  }
}
button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button).small,
.button.small {
  font-size: 0.75em;
}
button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button).large,
.button.large {
  font-size: 100%;
}
button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button).solid,
.button.solid {
  color: #f5f5f5;
  background-color: #0c1528;
  border-color: #0c1528;
}
button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button).secondary.solid,
.button.secondary.solid {
  color: #FAFAFA;
  background-color: rgb(239, 82, 40);
  border-color: rgb(239, 82, 40);
  /* &:hover,
  &:focus-visible {
    background-color: $clr-navy-400;
    border-color: $clr-navy-400;
  } */
}
button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button).secondary-outline,
.button.secondary-outline {
  border: 2px solid rgb(239, 82, 40);
}
button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button):active, button:not(.fslightboxb):not(.button-subtle):not(.vimeo-play-overlay__button):hover,
.button:active,
.button:hover {
  transform: scale(1.07);
  background-color: rgb(239, 82, 40);
  border: 1px solid rgb(239, 82, 40);
  color: #ffffff;
}

button + button,
.button + .button {
  margin-left: 18px;
}
@media screen and (min-width: 768px) {
  button + button,
  .button + .button {
    margin-left: 24px;
  }
}

a.button-subtle, button.button-subtle {
  padding: 10px;
  color: #0c1528;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  background-color: transparent;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
  border: none;
}
a.button-subtle:after, button.button-subtle:after {
  content: "";
  height: 1px;
  width: 100%;
  background: rgb(239, 82, 40);
  display: block;
}
a.button-subtle:active, a.button-subtle:hover, a.button-subtle:focus-visible, button.button-subtle:active, button.button-subtle:hover, button.button-subtle:focus-visible {
  transform: none;
  background-color: transparent;
  border: none;
  color: rgb(239, 82, 40);
}

ul {
  padding-inline-start: 25px;
}

ul li {
  margin-bottom: 0.5em;
  line-height: 1.2em;
}

ul.indent li {
  margin-left: 1.1em;
}

ul.square {
  margin: 0;
}
ul.square li {
  list-style: none;
  position: relative;
}
ul.square li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0.5em;
  width: 0.3em;
  height: 0.3em;
  background-color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: 700;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
h1 + h1,
h1 + h2,
h1 + h3,
h1 + h4,
h1 + h5,
h1 + h6,
h2 + h1,
h2 + h2,
h2 + h3,
h2 + h4,
h2 + h5,
h2 + h6,
h3 + h1,
h3 + h2,
h3 + h3,
h3 + h4,
h3 + h5,
h3 + h6,
h4 + h1,
h4 + h2,
h4 + h3,
h4 + h4,
h4 + h5,
h4 + h6,
h5 + h1,
h5 + h2,
h5 + h3,
h5 + h4,
h5 + h5,
h5 + h6,
h6 + h1,
h6 + h2,
h6 + h3,
h6 + h4,
h6 + h5,
h6 + h6 {
  margin-top: 0.2em;
}

.head1,
.head2,
.head3,
.head4,
.head5,
.head6 {
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}
.head1 + .head1,
.head1 + .head2,
.head1 + .head3,
.head1 + .head4,
.head1 + .head5,
.head1 + .head6,
.head2 + .head1,
.head2 + .head2,
.head2 + .head3,
.head2 + .head4,
.head2 + .head5,
.head2 + .head6,
.head3 + .head1,
.head3 + .head2,
.head3 + .head3,
.head3 + .head4,
.head3 + .head5,
.head3 + .head6,
.head4 + .head1,
.head4 + .head2,
.head4 + .head3,
.head4 + .head4,
.head4 + .head5,
.head4 + .head6,
.head5 + .head1,
.head5 + .head2,
.head5 + .head3,
.head5 + .head4,
.head5 + .head5,
.head5 + .head6,
.head6 + .head1,
.head6 + .head2,
.head6 + .head3,
.head6 + .head4,
.head6 + .head5,
.head6 + .head6 {
  margin-top: -0.35em;
}
.head1 + p,
.head2 + p,
.head3 + p,
.head4 + p,
.head5 + p,
.head6 + p {
  margin-top: 0.6em;
}

.head1,
.display-large {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
@media screen and (min-width: 768px) {
  .head1,
  .display-large {
    font-weight: 700;
    font-size: 57px;
    line-height: 64px;
    letter-spacing: -0.1px;
  }
}

.head2,
.title-medium {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0c1528;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .head2,
  .title-medium {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
  }
}

.head3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .head3 {
    font-size: 20px;
    line-height: 28px;
  }
}

.head4 {
  font-size: 1.4em;
  line-height: 1.2em;
}

.head5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.head6,
.title-small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: rgb(239, 82, 40);
}
@media screen and (min-width: 768px) {
  .head6,
  .title-small {
    font-size: 14px;
    line-height: 20px;
  }
}

.title-small {
  text-transform: uppercase;
}

.text-secondary {
  color: rgb(239, 82, 40) !important;
}

.subhead {
  display: block;
  color: #aa9a6d;
  font-size: 0.5em;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

.social-icons {
  display: flex;
  gap: 19px;
}
.social-icons a {
  display: inline-block;
  transition: all ease-in-out 0.4s;
  width: 24px;
}
.social-icons .img2svg {
  transition: all ease-in-out 0.4s;
  width: 24px;
  height: auto;
}
.social-icons .img2svg path,
.social-icons .img2svg polygon,
.social-icons .img2svg circle {
  transition: all ease-in-out 0.4s;
  fill: #ffffff;
}
.social-icons a:hover .img2svg,
.social-icons a:active .img2svg {
  scale: 1.1;
}
.social-icons a:hover .img2svg path,
.social-icons a:hover .img2svg polygon,
.social-icons a:hover .img2svg circle,
.social-icons a:active .img2svg path,
.social-icons a:active .img2svg polygon,
.social-icons a:active .img2svg circle {
  fill: rgb(239, 82, 40) !important;
}
.social-icons.dark a {
  width: 24px;
}
.social-icons.dark a .img2svg {
  width: 24px;
}
.social-icons.dark a .img2svg path,
.social-icons.dark a .img2svg polygon,
.social-icons.dark a .img2svg circle {
  fill: #8f9eaa !important;
}
.social-icons.dark a:hover .img2svg path,
.social-icons.dark a:hover .img2svg polygon,
.social-icons.dark a:hover .img2svg circle,
.social-icons.dark a:active .img2svg path,
.social-icons.dark a:active .img2svg polygon,
.social-icons.dark a:active .img2svg circle {
  fill: #0c1528 !important;
}

.header-contact-bar {
  background: #383F4F;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #f5f5f5;
  transition: all ease 0.4s;
  overflow: hidden;
  height: 72px;
}
@media screen and (max-width: 768px) {
  .header-contact-bar {
    display: none;
  }
}
.header-contact-bar .social-icons a {
  height: 24px;
}
.header-contact-bar .social-icons a:after {
  content: none;
}
.header-contact-bar .social-icons a svg {
  height: 24px;
}
.header-contact-bar .social-icons:after {
  content: "|";
  display: inline-flex;
  margin-right: 12px;
  font-weight: 500;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.header-contact-bar .contact-link {
  font-weight: 500;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: none;
  font-size: 16px;
  position: relative;
  top: 2px;
  margin-right: 12px;
}
.header-contact-bar .contact-link:hover, .header-contact-bar .contact-link:focus-visible {
  color: rgb(239, 82, 40);
}
.header-contact-bar .contact-link:after {
  background-color: rgb(239, 82, 40) !important;
}
.header-contact-bar .phone-link {
  font-weight: 500;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: none;
  font-size: 16px;
}
.header-contact-bar .phone-link:hover, .header-contact-bar .phone-link:focus-visible {
  color: rgb(239, 82, 40);
}
.header-contact-bar .phone-link:after {
  content: none !important;
}

.header {
  display: flex;
  flex-direction: column;
}
.header.is-stuck .header-contact-bar {
  height: 0;
}

.header a.active,
.header a:has(~ ul a.active),
.subnav a.active,
.subnav a:has(~ ul a.active) {
  cursor: default;
}
.header a.active:after,
.header a:has(~ ul a.active):after,
.subnav a.active:after,
.subnav a:has(~ ul a.active):after {
  background-color: rgb(239, 82, 40);
}
.header .header-contents,
.subnav .header-contents {
  min-height: 10px;
  width: 100%;
}
.header .header-contents .logo-container,
.subnav .header-contents .logo-container {
  display: flex;
  align-items: center;
  gap: 42px;
}
.header .header-contents .logo-container .social-icons,
.subnav .header-contents .logo-container .social-icons {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header .header-contents .logo-container .social-icons,
  .subnav .header-contents .logo-container .social-icons {
    display: none !important;
  }
}
.header .header-contents .logo-container .social-icons a,
.subnav .header-contents .logo-container .social-icons a {
  height: 24px;
}
.header .header-contents .logo-container .social-icons a:after,
.subnav .header-contents .logo-container .social-icons a:after {
  content: none;
}
.header .header-contents .logo-container .social-icons a svg,
.subnav .header-contents .logo-container .social-icons a svg {
  height: 24px;
}
.header img.logo,
.subnav img.logo {
  width: 30%;
  height: auto;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .header img.logo,
  .subnav img.logo {
    max-width: 260px;
    width: 25%;
  }
}
.header img.logo svg,
.subnav img.logo svg {
  height: 100px !important;
}
.header div.mobile-menu-icon svg *,
.subnav div.mobile-menu-icon svg * {
  fill: #aa9a6d;
}
.header.is-stuck .header-contents,
.subnav.is-stuck .header-contents {
  margin-bottom: 0;
  padding: 13.425px 0 !important;
}
@media screen and (min-width: 768px) {
  .header.is-stuck .logo-container img.logo,
  .subnav.is-stuck .logo-container img.logo {
    max-width: 144px !important;
  }
}

.header {
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%);
}
.header .header-contents {
  position: relative;
  padding: 13.425px 0;
}
.header .header-contents .nav::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.header .header-contents .nav.open .toggle-button > span {
  background: #ffffff !important;
}
.header .header-contents .nav .toggle-button span {
  background: #ffffff;
}
.header .header-contents .nav .left,
.header .header-contents .nav .right {
  padding: 0 7px;
}
.header .header-contents .nav .left .social-icons a,
.header .header-contents .nav .right .social-icons a {
  padding: 0 5px;
  width: 24px !important;
}
.header .header-contents .nav .left .social-icons a .img2svg,
.header .header-contents .nav .right .social-icons a .img2svg {
  width: 100%;
}
.header .header-contents .nav .left .social-icons a.fb,
.header .header-contents .nav .right .social-icons a.fb {
  padding: 0;
}
.header.is-stuck {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-color: #0c1528;
}

@media screen and (max-width: 768px) {
  .header .header.is-stuck {
    margin-top: 0.5em !important;
    margin-bottom: 0 !important;
  }
  .header .header:not(.is-stuck) {
    margin-top: 1.3em;
    margin-bottom: 1.5em;
  }
  .header .header-contents {
    position: relative;
  }
  .header .header-contents .phone {
    color: #ffffff;
    padding-right: 0.7em;
  }
  .header .header-contents .nav .nav-contents {
    background-color: #0c1528;
    text-align: right;
  }
  .header .header-contents .nav .nav-contents a {
    color: #ffffff;
    font-size: 1.1em;
    line-height: 1em;
    padding: 1rem 0;
  }
  .header .header-contents .nav .nav-contents .subnav-list li > a {
    color: #8f9eaa;
    border-top: none;
    padding: 0.65em 0;
  }
  .header .header-contents .nav .nav-contents .subnav-list li:last-child > a {
    padding-bottom: 1em;
  }
  .header .header-contents .nav .nav-contents .social-icons {
    padding: 0.8em 20px;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  .header .header-contents .nav .nav-contents .social-icons a {
    width: 21px !important;
    padding: 0.3em;
    border-top: none;
  }
  .header .header-contents .nav .nav-contents .social-icons a:after {
    content: none;
  }
  .header .header-contents .nav .nav-contents .social-icons a .img2svg {
    /* width: 24px !important; */
    width: 100%;
  }
  .header .header-contents .nav .nav-contents .social-icons a .img2svg path,
  .header .header-contents .nav .nav-contents .social-icons a .img2svg polygon,
  .header .header-contents .nav .nav-contents .social-icons a .img2svg circle {
    fill: #ffffff !important;
  }
  .header .header-contents .nav .nav-contents .social-icons a:hover .img2svg path,
  .header .header-contents .nav .nav-contents .social-icons a:hover .img2svg polygon,
  .header .header-contents .nav .nav-contents .social-icons a:hover .img2svg circle, .header .header-contents .nav .nav-contents .social-icons a:active .img2svg path,
  .header .header-contents .nav .nav-contents .social-icons a:active .img2svg polygon,
  .header .header-contents .nav .nav-contents .social-icons a:active .img2svg circle {
    fill: rgb(239, 82, 40) !important;
  }
}
.header.always-off-canvas .header.is-stuck {
  margin-top: 0.5em !important;
  margin-bottom: 0 !important;
}
.header.always-off-canvas .header:not(.is-stuck) {
  margin-top: 1.3em;
  margin-bottom: 1.5em;
}
.header.always-off-canvas .header-contents {
  position: relative;
}
.header.always-off-canvas .header-contents .phone {
  color: #ffffff;
  padding-right: 0.7em;
}
.header.always-off-canvas .header-contents .nav .nav-contents {
  background-color: #0c1528;
  text-align: right;
}
.header.always-off-canvas .header-contents .nav .nav-contents a {
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1em;
  padding: 1rem 0;
}
.header.always-off-canvas .header-contents .nav .nav-contents .subnav-list li > a {
  color: #8f9eaa;
  border-top: none;
  padding: 0.65em 0;
}
.header.always-off-canvas .header-contents .nav .nav-contents .subnav-list li:last-child > a {
  padding-bottom: 1em;
}
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons {
  padding: 0.8em 20px;
  justify-content: flex-end;
  margin-top: 1rem;
}
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a {
  width: 21px !important;
  padding: 0.3em;
  border-top: none;
}
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a:after {
  content: none;
}
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a .img2svg {
  /* width: 24px !important; */
  width: 100%;
}
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a .img2svg path,
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a .img2svg polygon,
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a .img2svg circle {
  fill: #ffffff !important;
}
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a:hover .img2svg path,
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a:hover .img2svg polygon,
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a:hover .img2svg circle, .header.always-off-canvas .header-contents .nav .nav-contents .social-icons a:active .img2svg path,
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a:active .img2svg polygon,
.header.always-off-canvas .header-contents .nav .nav-contents .social-icons a:active .img2svg circle {
  fill: rgb(239, 82, 40) !important;
}

.subnav {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  padding: 0.5em !important;
}
.subnav .header-contents .nav .nav-contents li {
  padding: 0 !important;
  margin: 0 !important;
}
.subnav .header-contents .nav .nav-contents li a {
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4em 0.6em;
}
.subnav .header-contents .nav .nav-contents li a.is-active {
  text-decoration: underline;
  color: #0c1528;
}

.swiper {
  text-align: center;
  position: relative;
  display: block;
  z-index: 2;
  width: 100%;
}
.swiper .swiper-pagination-bullet {
  background-color: #647786;
}
@media screen and (min-width: 768px) {
  .swiper.full-height {
    height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  .swiper.short-height {
    height: 40vh;
  }
}
.swiper.cover-image .swiper-slide {
  background-image: url(../_temp/sqr-sample.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}
.swiper.cover-image .swiper-slide .darkening-overlay {
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.swiper.cover-image .swiper-slide .darkening-overlay .pure-g {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding-top: 2em !important;
}
.swiper.cover-image .swiper-slide .darkening-overlay .head1 {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .swiper.cover-image .swiper-slide .darkening-overlay .head1 {
    font-size: 2em;
  }
}
.swiper.cover-image .swiper-slide .darkening-overlay .subhead {
  color: #ffffff;
}
.swiper.contain-image .swiper-slide {
  background-image: url(../_temp/sqr-sample.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .swiper.contain-image .swiper-slide {
    background-size: contain;
  }
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: #0c1528;
  padding: 10px;
  opacity: 0.8;
  border-radius: 12px;
  transition: all ease-in-out 0.4s;
}
.swiper .swiper-button-prev:hover, .swiper .swiper-button-prev:active,
.swiper .swiper-button-next:hover,
.swiper .swiper-button-next:active {
  opacity: 1;
}
@media screen and (max-width: 500px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    transform: scale(0.7);
  }
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #0c1528;
  width: 12px;
  height: 12px;
  margin: 0 12px;
}
.swiper .swiper-slide[class*=kb-] {
  overflow: hidden;
}
.swiper .swiper-slide[class*=kb-]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-repeat: inherit;
  background-size: inherit;
  background-position: inherit;
  transition: transform 8s ease-out;
  transform: scale(1.1);
  z-index: -1;
}
.swiper .swiper-slide[class*=kb-].swiper-slide-active::before {
  transform: scale(1);
}
.swiper .swiper-slide.kb-center::before {
  transform-origin: center center;
}
.swiper .swiper-slide.kb-left::before {
  transform-origin: left center;
}
.swiper .swiper-slide.kb-right::before {
  transform-origin: right center;
}
.swiper .swiper-slide.kb-top::before {
  transform-origin: center top;
}
.swiper .swiper-slide.kb-bottom::before {
  transform-origin: center bottom;
}
.swiper .swiper-slide.kb-top-left::before {
  transform-origin: left top;
}
.swiper .swiper-slide.kb-top-right::before {
  transform-origin: right top;
}
.swiper .swiper-slide.kb-bottom-left::before {
  transform-origin: left bottom;
}
.swiper .swiper-slide.kb-bottom-right::before {
  transform-origin: right bottom;
}

.full-width-slider .swiper-wrapper, .logo-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.full-width-slider.full-width-slider-static .swiper-wrapper {
  transform: none !important;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
}
.full-width-slider.full-width-slider-static .swiper-slide {
  width: calc((100% - 48px) / 3) !important;
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: 420px;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .full-width-slider.full-width-slider-static .swiper-wrapper {
    gap: 12px;
  }
  .full-width-slider.full-width-slider-static .swiper-slide {
    width: calc((100% - 12px) / 2) !important;
    flex: 0 0 calc((100% - 12px) / 2);
  }
}
.full-width-slider img {
  aspect-ratio: 6/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.logo-slider {
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .logo-slider {
    margin-top: 24px;
  }
}
.logo-slider .swiper-wrapper {
  align-items: center;
}
.logo-slider:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 62px auto 0;
  background: #ADADAD;
}
@media screen and (max-width: 768px) {
  .logo-slider:after {
    content: none;
  }
}
.logo-slider .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider .swiper-slide > a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider img {
  max-width: 140px;
  max-height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: all ease-in-out 0.4s;
}
.logo-slider img:hover {
  filter: grayscale(0);
}

.about-photo-section {
  aspect-ratio: 2/1;
}
@media screen and (min-width: 768px) {
  .about-photo-section {
    height: 500px;
  }
}
.about-photo-section.parallax {
  background-image: url("../_img/about-us-1.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .about-photo-section.parallax {
    background-attachment: scroll;
  }
}
@supports (-webkit-touch-callout: none) {
  .about-photo-section.parallax.alternate-photo-on-safari {
    background-image: url("../_img/hom-office.webp");
  }
}

.parallax-spacer {
  aspect-ratio: 3/1;
}
@media screen and (min-width: 768px) {
  .parallax-spacer {
    height: 300px;
  }
}
.parallax-spacer {
  background-image: url("../_img/about-us-1.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .parallax-spacer {
    background-attachment: scroll;
  }
}

.team-section {
  --team-cols-canonical: 5;
  --team-gap: 1em;
  --team-card-width: calc(
    (100% - (var(--team-cols-canonical) - 1) * var(--team-gap)) / var(--team-cols-canonical)
  );
}

.team-card, .flex-team-card {
  text-align: center;
}
.team-card p, .flex-team-card p {
  color: rgb(239, 82, 40);
}
.team-card .team-portrait, .flex-team-card .team-portrait {
  aspect-ratio: 3/5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .team-card h3, .flex-team-card h3 {
    font-size: 14px;
    line-height: 20px;
    margin: 8px 0;
  }
  .team-card p, .flex-team-card p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 0;
  }
}

.flex-team-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  width: 100%;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .flex-team-card-grid {
    gap: var(--team-gap, 1em);
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .flex-team-card-grid.padded-t {
    justify-content: center;
  }
}

.flex-team-card {
  width: 170px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .flex-team-card {
    width: auto;
    flex: 0 0 var(--team-card-width, 170px);
    max-width: var(--team-card-width, 170px);
  }
}

.top-lead-in {
  background-image: url(../_temp/hor-sample.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  color: #ffffff;
  min-height: 350px;
  max-height: 600px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-lead-in {
    height: 60vh;
    min-height: 515px;
  }
}
@media screen and (max-width: 768px) {
  .top-lead-in {
    height: 50vh !important;
  }
}
.top-lead-in .darkening-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.top-lead-in .darkening-overlay .pure-g {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .top-lead-in .darkening-overlay .pure-g {
    bottom: 40px;
  }
}
.top-lead-in .darkening-overlay .head1 {
  color: #ffffff;
}
.top-lead-in .darkening-overlay .subhead {
  color: #ffffff;
}
@media screen and (max-width: 369px) {
  .top-lead-in .darkening-overlay .button {
    margin-left: 0;
    margin-right: 18px;
  }
}

.watermark-left {
  background: url("../_img/intro-watermark.webp") no-repeat 0% 20%;
  background-size: 350px;
  background-repeat: no-repeat;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .watermark-left {
    background-size: 20vw;
    background-position: top 90px left;
  }
}

.watermark-right {
  background: url("../_img/quotes-watermark.webp") no-repeat 100% 20%;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .watermark-right {
    background-size: 20vw;
    background-position: top 90px right;
  }
}

#intro {
  /* background: url("../_img/intro-watermark.webp") no-repeat 0% 20%;
  background-size: 350px;
  background-color: $clr-page; */
  /* @media screen and (max-width: structure.$scr-width-md) {
    background-size: 20vw;
    background-position: top 90px right;
  } */
}
@media screen and (min-width: 768px) {
  #intro img {
    height: 100%;
    max-height: 470px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .pure-g.wide-gaps-md > .pure-u-md-1-2:first-child, .pure-g.wide-gaps-md > .pure-u-md-5-12:first-child, .pure-g.wide-gaps-md > .pure-u-md-7-12:first-child {
    padding-right: 48px;
  }
}
@media screen and (min-width: 768px) {
  .pure-g.wide-gaps-md > .pure-u-md-1-2:last-child, .pure-g.wide-gaps-md > .pure-u-md-5-12:last-child, .pure-g.wide-gaps-md > .pure-u-md-7-12:last-child {
    padding-left: 48px;
  }
}
@media screen and (max-width: 768px) {
  .pure-g.wide-gaps-md > .pure-u-md-1-2:last-child, .pure-g.wide-gaps-md > .pure-u-md-5-12:last-child, .pure-g.wide-gaps-md > .pure-u-md-7-12:last-child {
    padding-top: 0;
  }
}

.banner {
  background: #404040;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
  min-height: 400px;
  z-index: 2;
}
.banner.full-height {
  height: 100vh;
  min-height: none;
}
.banner.short-height {
  height: 40vh;
  min-height: 400px;
}
.banner .background-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.banner .title {
  width: 80%;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  padding: 4.5em 10% 0 10%;
  z-index: 100;
}
.banner .title h1 {
  color: #ffffff;
  font-size: 2.5em;
  line-height: 1.1em;
  margin-top: 0;
  margin-bottom: 0.2em;
}
.banner .title .subhead {
  text-transform: uppercase;
  font-family: "museo-sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 0.4em;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #aa9a6d;
  line-height: 1.1em;
  margin: -2em auto 0 auto;
  padding: 0.3em 0.8em;
  background-color: rgba(0, 15, 40, 0.5);
}
.banner .title .subhead.large {
  font-size: 0.65em;
  background-color: #0c1528;
  display: inline-block;
  padding: 0.5em 1em;
}

.banner-overlay {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}

.need-review {
  background-color: yellow;
}

.bg-dark .need-review {
  background-color: transparent;
  color: yellow;
}

@keyframes fadeUpBounce {
  0%, 100% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: rotate(-45deg) translateY(-8px) translateX(8px);
  }
}
.down-arrow {
  display: block;
  width: 32px;
  height: 32px;
  border-left: 3px solid #c6bfaa;
  border-bottom: 3px solid #c6bfaa;
  transform: rotate(-45deg);
  position: absolute;
  left: 50%;
  bottom: 8%;
  z-index: 10;
  margin-left: -16px;
  background: transparent;
  box-sizing: border-box;
  transition: border-color 0.2s;
  animation: fadeUpBounce 2s ease-in-out infinite;
}

.down-arrow:hover {
  border-color: #647786;
  animation-play-state: paused;
}

.page-break,
.line-break {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20%;
  max-width: 100px;
  margin-bottom: 2em;
  border-bottom: 2px solid #aa9a6d;
}

.footnote {
  font-size: 80%;
  line-height: 1.3em;
}

form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
form label {
  display: none;
}
form label.show {
  display: inline-block;
}
form label {
  display: block;
  margin-bottom: 8px;
  color: #0c1528;
}
form label .requiredIndicator {
  color: #aa9a6d;
  font-weight: 500;
}
form label[for=Full_Name],
form label[for=Phone],
form label[for=Email_Address],
form label[for=When],
form label[for=Location],
form label[for=Comments],
form label[for=Lot],
form label[for=Security_Answer] {
  display: none;
}
form [type=checkbox], form [type=radio] {
  width: auto;
}
form input,
form textarea,
form select {
  width: 100%;
  border: none;
  border: 1px solid #BABABB;
  box-shadow: none !important;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  background-color: #fff;
  transition: all ease-in-out 0.4s;
  border-radius: 4px;
  box-sizing: border-box;
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #0c1528;
  background-color: rgba(12, 21, 40, 0.02);
}
form select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23647786' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  color: rgb(71, 69, 63);
}
form select option {
  padding: 8px;
  background-color: #ffffff;
  color: rgb(71, 69, 63);
}
form select option:first-child {
  color: #BABABB;
  font-style: normal;
}
form select:hover {
  background-color: rgba(170, 154, 109, 0.05);
  border-bottom-color: #c6bfaa;
}
form select:focus {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0623e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-color: rgba(170, 154, 109, 0.02);
}
form select.custom-select.select-focused {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(170, 154, 109, 0.15);
}
form select.custom-select.select-changed {
  animation: selectPulse 0.3s ease;
}
form select.custom-select.has-value {
  color: rgb(71, 69, 63);
  font-style: normal;
  font-weight: 500;
}
form select.custom-select:not(.has-value) {
  color: #BABABB;
  font-style: normal;
}
form textarea {
  border: 1px solid #BABABB;
}
@keyframes selectPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (min-width: 768px) {
  .order-1-md {
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .order-2-md {
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .order-3-md {
    order: 3;
  }
}

@media screen and (min-width: 768px) {
  .text-center-md {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .text-right-md {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .split-border {
    position: absolute;
    bottom: 0%;
    left: 37%;
    width: 26%;
    height: 1px;
    background-color: #c6bfaa;
  }
}
.portfolio {
  padding-bottom: 4em;
  padding-top: 3em;
  background-color: #0c1528;
}
.portfolio.overlay-below {
  margin-bottom: -5em;
  padding-bottom: 7em;
}
.portfolio .head2 {
  margin-top: 1.5em;
}
.portfolio .head2 .subhead {
  font-size: 0.65em;
}
.portfolio .head2 {
  color: white !important;
  margin-bottom: 0.3em;
}
.portfolio .title {
  margin-top: 3.5em;
  text-align: center;
}
.portfolio .title p {
  color: #8f9eaa;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .portfolio .title p {
    max-width: 75%;
  }
}
.portfolio .pure-g a.portfolio-thumbnail {
  transition: all ease-in-out 0.4s;
  padding: 20px;
  aspect-ratio: 3/2;
  box-sizing: border-box;
  overflow: visible;
}
.portfolio .pure-g a.portfolio-thumbnail .thumbnail-info {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  opacity: 0;
  transition: all ease-in-out 0.4s;
}
.portfolio .pure-g a.portfolio-thumbnail .thumbnail-info .thumbnail-title {
  font-size: 1.25em;
  display: block;
  color: white;
  margin-bottom: 0.2em;
}
.portfolio .pure-g a.portfolio-thumbnail .thumbnail-info .thumbnail-subtitle {
  display: block;
  line-height: 1.3em;
  font-size: 0.8em;
  color: #c6bfaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.portfolio .pure-g a.portfolio-thumbnail img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio .pure-g a.portfolio-thumbnail:hover, .portfolio .pure-g a.portfolio-thumbnail:active {
  scale: 1.04;
}
.portfolio .pure-g a.portfolio-thumbnail:hover .thumbnail-info, .portfolio .pure-g a.portfolio-thumbnail:active .thumbnail-info {
  opacity: 1;
}
.portfolio .pure-g a.portfolio-thumbnail:hover img, .portfolio .pure-g a.portfolio-thumbnail:active img {
  box-shadow: 8px 8px 40px rgba(0, 0, 0, 0.08);
}

/* Filter Menu Styles */
.filter-menu {
  margin: 2em 0 1em 0;
}

.filter-btn {
  background: none;
  border: none;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  color: #aa9a6d;
  font-weight: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover {
  color: #647786;
}

.filter-btn.active {
  color: #647786;
  text-decoration: underline;
}

/* Filter Item Animations */
.filter-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: block;
  opacity: 1;
  transform: scale(1);
}

.filter-item.hide {
  display: none !important;
}

.filter-item.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

/* Overlay text for image categories */
.portfolio-thumbnail {
  position: relative;
  overflow: hidden;
}

.project-categories-section .title-small {
  margin-top: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .projects-grid {
    gap: 24px;
  }
}

.project-card {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .project-card.col-2 {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .project-card.col-2.ratio-2x1 {
    aspect-ratio: 1/1;
  }
}
.project-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all ease-in-out 0.4s;
  z-index: 2;
}
.project-card:hover > img {
  opacity: 1;
}
.project-card > img {
  opacity: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease-in-out 0.4s;
}
.project-card .card-title {
  position: absolute;
  z-index: 3;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #ffffff;
  bottom: 8px;
  left: 8px;
  right: 8px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .project-card .card-title {
    bottom: 24px;
    left: 24px;
    right: 24px;
    font-size: 22px;
    line-height: 28px;
  }
}

.ratio-1x1 {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ratio-2x1 {
  aspect-ratio: 2/1;
}

.project-categories-section .title-small {
  margin-top: 0;
}

.project-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .project-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.project-categories-grid .project-card .card-title {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .project-categories-grid .project-card .card-title {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (min-width: 768px) {
  .project-description .pure-g.nested > div:first-child {
    padding-right: 48px;
  }
}
@media screen and (min-width: 768px) {
  .project-description .pure-g.nested > div:nth-child(2) {
    padding-left: 48px;
  }
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 0 0 68px;
  list-style: none;
  padding: 0;
}
.categories-filter > li {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.categories-filter > li a {
  color: #0c1528;
  transition: all ease-in-out 0.4s;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 10px;
}
.categories-filter > li a:after {
  content: "";
  height: 2px;
  background-color: transparent;
  display: block;
  transition: all ease-in-out 0.4s;
}
.categories-filter > li a.active {
  cursor: default;
}
.categories-filter > li a:hover:after, .categories-filter > li a.active:after {
  background-color: rgb(239, 82, 40);
  width: 100%;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    gap: 12px;
    margin: 0 0 32px;
  }
}
.breadcrumbs > li {
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
@media screen and (min-width: 768px) {
  .breadcrumbs > li {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs > li:last-child, .breadcrumbs > li:nth-last-child(2) {
    display: none;
  }
}
.breadcrumbs > li a {
  color: #0c1528;
  transition: all ease-in-out 0.4s;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
}
.breadcrumbs > li a:after {
  content: "";
  height: 2px;
  background-color: transparent;
  display: block;
  transition: all ease-in-out 0.4s;
}
.breadcrumbs > li a.active {
  cursor: default;
}
.breadcrumbs > li a:hover:after, .breadcrumbs > li a.active:after {
  background-color: rgb(239, 82, 40);
  width: 100%;
}

.related-projects-section {
  background: url("../_img/intro-watermark.webp") no-repeat center right;
  background-size: contain;
}

.project-info-table {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .project-info-table tbody {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .project-info-table tr {
    display: flex;
    flex-direction: column;
  }
}
.project-info-table tr td {
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  .project-info-table tr td {
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 16px;
  }
  .project-info-table tr td.head5 {
    font-size: 14px;
    line-height: 20px;
  }
}

.orange-underline {
  border-bottom: 2px solid rgb(239, 82, 40);
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.masonry-container {
  -moz-columns: 1;
       columns: 1; /* Number of columns */
  -moz-column-gap: 20px;
       column-gap: 20px; /* Spacing between columns */
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .masonry-container {
    -moz-columns: 2;
         columns: 2; /* Number of columns */
    -moz-column-gap: 24px;
         column-gap: 24px; /* Spacing between columns */
    overflow: visible;
  }
}

.masonry-item {
  display: inline-block; /* Essential for items to flow correctly */
  width: 100%; /* Items take full width of their column */
  margin-bottom: 20px; /* Spacing between items vertically */
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* Prevents items from breaking across columns */
  box-sizing: border-box; /* Ensures padding/border are included in width */
  /* Add other styling for your items (e.g., background, padding, border) */
  position: relative;
  text-align: center;
}
.masonry-item img {
  transition: all ease-in-out 0.4s;
}
.masonry-item .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 0.5em 1em;
  background-color: #0c1528;
  white-space: nowrap;
  transition: all ease-in-out 0.4s;
  font-size: 1.3em;
}
.masonry-item:hover .title {
  transform: scale(1.05);
  transform: translate(-50%, -50%);
  font-size: 1.5em;
}
.masonry-item:hover img {
  filter: brightness(0.8);
}

.cta .cta-bg {
  background: url("../_img/cta/cta-bg-1.webp") no-repeat center center;
  background-size: cover;
  position: absolute;
  filter: saturate(0);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cta .cta-bg:before {
  background-color: rgba(0, 0, 0, 0.65);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.cta {
  text-align: center;
  color: #ffffff;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .cta {
    min-height: 284px;
  }
}
.cta .pure-g {
  position: relative;
}
.cta .title-medium {
  color: #ffffff;
}
.cta p {
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
@media screen and (min-width: 768px) {
  .cta p {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
  }
}
.floating-edges {
  position: relative;
  box-sizing: border-box;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .floating-edges {
    padding: 0;
  }
}
.floating-edges {
  overflow: hidden;
}
.floating-edges::before {
  content: "";
  position: absolute;
  inset: 0;
}
@media screen and (min-width: 768px) {
  .floating-edges::before {
    background-image: url("../_img/stats-bg.webp");
  }
}
.floating-edges::before {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .floating-edges::before {
    background-attachment: scroll;
    background-image: url("../_img/stats-bg.webp");
  }
}
.floating-edges.careers-bg::before {
  background-image: url("../_img/careers-bg.webp");
}
.floating-edges.about-bg::before {
  background-image: url("../_img/about-us-bg.webp");
}
.floating-edges.darkened::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.floating-edges > * {
  background-color: white;
  position: relative;
  z-index: 2;
}

.stats {
  background-image: url("../_img/stats-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  color: #ffffff;
  position: relative;
  min-height: 300px;
  box-sizing: border-box;
}
@supports (-webkit-touch-callout: none) {
  .stats {
    background-attachment: scroll;
  }
}
@media screen and (min-width: 768px) {
  .stats {
    min-height: 488px;
  }
}
.stats .darkening-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.stats .darkening-overlay .pure-g {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.stats .stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.stats .stat-box .stat-number {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
.stats .stat-box .stat-number:after {
  content: "";
  height: 2px;
  background-color: rgb(239, 82, 40);
  display: block;
  width: 100%;
}
.stats .stat-box .stat-label {
  font-weight: 500;
}

footer {
  background-color: #0c1528;
  color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0;
  }
}
footer > .pure-g .pure-u-md-3-4 {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  footer > .pure-g .pure-u-md-3-4 .pure-u-1 {
    padding: 0;
  }
}
footer .logo {
  max-width: 207px;
}
@media screen and (min-width: 768px) {
  footer .logo {
    max-width: auto;
  }
}
footer .logo {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  footer .footer-indent {
    padding-left: 3.4em;
  }
}
footer .footer-address {
  font-weight: 300;
}
footer .phone-link {
  transition: all ease-in-out 0.4s !important;
}
footer .phone-link:hover {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  footer .social-icons {
    /* justify-content: center; */
    margin-top: 1rem;
  }
}
footer .social-icons a {
  /* width: 30px;
  padding: 0.3em; */
}
footer .social-icons .img2svg path,
footer .social-icons .img2svg polygon,
footer .social-icons .img2svg circle {
  fill: #f5f5f5;
}
footer h4 {
  text-transform: uppercase;
  border-bottom: 2px solid rgb(239, 82, 40);
  padding-bottom: 2px;
  display: inline-block;
  font-weight: 500;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
footer ul.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  footer ul.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
  }
}
footer ul.footer-links li {
  color: #f5f5f5;
  text-transform: uppercase;
  margin-bottom: 2em;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
footer ul.footer-links li a {
  color: #f5f5f5;
  transition: all ease-in-out 0.4s;
}
footer ul.footer-links li a:hover, footer ul.footer-links li a:active {
  color: rgb(239, 82, 40);
}
footer .footer-bottom {
  padding: 2em 20px 3em 20px;
  font-size: 75%;
  line-height: 1.5em;
  text-align: center;
  color: #BABABB !important;
}
footer .footer-bottom a {
  color: rgb(239, 82, 40);
  transition: all ease-in-out 0.4s;
}
footer .footer-bottom a:hover {
  color: white;
  opacity: 1;
}

#video-testimonies {
  background: url("../_img/quotes-watermark.webp") no-repeat center right;
  background-size: 30vw;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  #video-testimonies {
    background-size: contain;
  }
}

body.has-r-bg {
  background: url("../_img/intro-watermark.webp") no-repeat center left fixed;
  background-size: 30vw;
}

.swiper-video-slider {
  box-sizing: border-box;
  margin-top: 2rem;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .swiper-video-slider .swiper-button-prev,
  .swiper-video-slider .swiper-button-next {
    transform: scale(0.5);
    top: calc(50% - 33px) !important;
  }
}
@media screen and (max-width: 768px) {
  .swiper-video-slider .swiper-button-prev {
    left: -1rem;
  }
}
@media screen and (max-width: 768px) {
  .swiper-video-slider .swiper-button-next {
    right: -1rem;
  }
}
@media screen and (min-width: 768px) {
  .swiper-video-slider {
    padding: 0 78px;
    margin-top: 3rem;
  }
}
.swiper-video-slider .swiper-pagination {
  position: static;
  margin-top: 1rem;
}
.quote-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.quote-card .card-caption {
  max-width: 792px;
  margin: 0 auto;
}
.quote-card .card-caption .quote {
  padding: 10px;
  font-weight: 500;
  font-family: "BW Helder", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.quote-card .card-caption .attribution {
  padding: 10px;
}

.contact-section > .pure-g {
  max-width: 1008px;
}

.contact-form button[type=submit] {
  margin: 0;
  text-align: right;
}
.career-value-card > img {
  margin: 0 auto;
}
.career-value-card h3 {
  margin-top: 0;
}
.career-value-card p {
  color: rgb(239, 82, 40);
}
@media screen and (max-width: 768px) {
  .career-value-card > img {
    max-width: 128px;
  }
  .career-value-card h3 {
    font-size: 14px;
    line-height: 20px;
    margin: 8px 0;
  }
  .career-value-card p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 0;
  }
}

.applications-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 64px;
}
@media screen and (max-width: 768px) {
  .applications-list {
    gap: 8px;
    /* justify-content: center; */
    margin-top: 0;
  }
}
.applications-list > li {
  margin: 0;
}
.applications-list > li a {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .applications-list > li a {
    font-size: 14px;
    line-height: 20px;
  }
}

.application-form .reference-list, .application-form .employment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.application-form .reference-list > li, .application-form .employment-list > li {
  margin: 0;
  padding: 10px 0;
}
.application-form .resume-upload-section p {
  font-size: 14px;
}

.checkbox-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.checkbox-list > li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.checkbox-list > li input {
  cursor: pointer;
}
.checkbox-list > li label {
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
}

.mt-0 {
  margin-top: 0 !important;
}

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

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

.mb-0 {
  margin-bottom: 0 !important;
}

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

/* Container for the iframe to control aspect ratio */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%; /* Make sure it doesn't overflow container */
}

/* Make the iframe fill the container */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vimeo-play-overlay {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../_vid/vimeo-play-button-overlay.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.vimeo-play-overlay__button {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0;
  border: none;
}

.swiper-navigation-icon {
  display: none;
}

img.aspect-7-8 {
  aspect-ratio: 7/8;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}/*# sourceMappingURL=styles.css.map */