/* CSS Document */
@import url("https://use.typekit.net/zpm5kgn.css");
.watermarkify-wrap {
  position: relative;
  overflow: hidden;
}

.watermarkify-watermark {
  position: absolute;
  left: 10px;
  display: block;
  color: #999;
  padding-left: 2px;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
}

.watermarkify-watermark-blurred {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.location-slider .slick-slider {
  width: 90vw;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.vbox-overlay {
  --vbox-tools-color:#fff;
  --vbox-title-background:#101010;
  --vbox-title-width:'auto';
  --vbox-title-radius:0;
  --vbox-share-background:#101010;
  --vbox-share-width:'auto';
  --vbox-share-radius:0;
  --vbox-padding:0;
  --vbox-max-width:100%;
}

.vbox-overlay *, .vbox-overlay :after, .vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

.vbox-overlay * {
  backface-visibility: visible;
}

.vbox-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
}

.vbox-share, .vbox-title {
  line-height: 1;
  position: fixed;
  z-index: 98;
  text-align: center;
  margin: 0 auto;
  color: var(--vbox-tools-color);
}

.vbox-title {
  font-size: 12px;
  background-color: var(--vbox-title-background);
  width: var(--vbox-title-width);
  border-radius: var(--vbox-title-radius);
  padding: 12px 54px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.vbox-share {
  font-size: 24px;
  padding: 0 0.35em;
  background-color: var(--vbox-share-background);
  width: var(--vbox-share-width);
  border-radius: var(--vbox-share-radius);
}

.vbox-link-btn, button.vbox-link-btn, button.vbox-link-btn:active, button.vbox-link-btn:focus, button.vbox-link-btn:hover {
  border: none !important;
  background: 0 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 6px 12px;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}

.vbox-share a {
  color: inherit !important;
  padding: 6px 12px;
  display: inline-block;
}

.vbox-share svg {
  z-index: 10;
  vertical-align: middle;
}

.vbox-close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  padding: 6px 15px;
  color: #000;
  color: var(--vbox-tools-color);
  border: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-close:hover {
  opacity: 1;
}

.vbox-left-corner {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  line-height: 1;
  font-size: 12px;
  z-index: 99;
  display: flex;
  align-items: center;
  color: var(--vbox-tools-color);
}

.vbox-num {
  display: inline-block;
  padding: 12px 15px;
}

.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

.vbox-next, .vbox-prev {
  position: fixed;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  z-index: 99;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-next:hover, .vbox-prev:hover {
  opacity: 1;
}

.vbox-next span, .vbox-prev span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--vbox-tools-color);
  border-right-color: var(--vbox-tools-color);
  text-indent: -100px;
  position: absolute;
  top: 8px;
  display: block;
}

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

.vbox-prev span {
  left: 10px;
  transform: rotate(-135deg);
}

.vbox-next span {
  transform: rotate(45deg);
  right: 10px;
}

.vbox-open {
  overflow: hidden;
}

.vbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  max-height: 100%;
  padding: 30px 0;
}

.vbox-content {
  opacity: 0;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.vbox-container img {
  max-width: 100%;
  height: auto;
}

.vbox-child {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: var(--vbox-max-width);
  text-align: initial;
  padding: var(--vbox-padding);
}

.vbox-child img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
}

.vbox-fit .vbox-child img, .vbox-fit .vbox-child.venoratio {
  max-height: calc(100vh - 60px);
}

.vbox-inline, .venoratio {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.venoratio::before {
  display: block;
  padding-top: var(--vb-aspect-ratio);
  content: "";
}

.venoratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--vbox-padding);
}

.venoratio-1x1 {
  --vb-aspect-ratio:100%;
  max-width: min(var(--vbox-max-width), 100vh - 60px);
}

.venoratio-4x3.vbox-child.venoratio {
  --vb-aspect-ratio:calc(3 / 4 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 4 / 3);
}

.venoratio-16x9.vbox-child.venoratio {
  --vb-aspect-ratio:calc(9 / 16 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 16 / 9);
}

.venoratio-21x9.vbox-child.venoratio {
  --vb-aspect-ratio:calc(9 / 21 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 21 / 9);
}

.venoratio-full {
  --vb-aspect-ratio:calc(100vh - 60px);
}

.vbox-grab .vbox-child img {
  cursor: grab;
}

.vbox-child > iframe {
  border: none !important;
}

.vbox-content.swipe-left {
  margin-left: -200px !important;
}

.vbox-content.swipe-right {
  margin-left: 200px !important;
}

.vbox-preloader {
  transform: translateZ(0);
}

.vbox-preloader .vbox-preloader-inner {
  opacity: 1;
  transition: opacity 0.2s;
}

.vbox-hidden {
  display: none;
}

.vbox-preloader.vbox-hidden .vbox-preloader-inner {
  opacity: 0;
}

.vbox-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-1px);
  z-index: 0;
}

.vbox-tooltip {
  position: relative;
  display: inline-block;
}

.vbox-tooltip .vbox-tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  margin-bottom: 2px;
  font-family: sans-serif;
}

.vbox-top .vbox-tooltip .vbox-tooltip-text {
  bottom: auto;
  top: 100%;
  margin-bottom: 0;
  margin-top: 2px;
}

.vbox-tooltip-inner {
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  font-size: 10px;
}

.vbox-tooltip:hover .vbox-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.vbox-overlay {
  --sk-size:40px;
  --sk-color:#333;
}

.sk-center {
  margin: auto;
}

.sk-plane {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  animation: sk-plane 1.2s infinite ease-in-out;
}

@keyframes sk-plane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  100%, 80% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  0%, 100% {
    transform: scale(1);
  }
}
.sk-bounce {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-bounce-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.sk-bounce-dot:nth-child(2) {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  45%, 55% {
    transform: scale(1);
  }
}
.sk-wave {
  width: var(--sk-size);
  height: var(--sk-size);
  display: flex;
  justify-content: space-between;
}

.sk-wave-rect {
  background-color: var(--sk-color);
  height: 100%;
  width: 15%;
  animation: sk-wave 1.2s infinite ease-in-out;
}

.sk-wave-rect:nth-child(1) {
  animation-delay: -1.2s;
}

.sk-wave-rect:nth-child(2) {
  animation-delay: -1.1s;
}

.sk-wave-rect:nth-child(3) {
  animation-delay: -1s;
}

.sk-wave-rect:nth-child(4) {
  animation-delay: -0.9s;
}

.sk-wave-rect:nth-child(5) {
  animation-delay: -0.8s;
}

@keyframes sk-wave {
  0%, 100%, 40% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.sk-pulse {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes sk-pulse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}

.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}

.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}

.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}

@keyframes sk-flow {
  0%, 100%, 80% {
    transform: scale(0.3);
  }
  40% {
    transform: scale(1);
  }
}
.sk-swing {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-swing 1.8s infinite linear;
}

.sk-swing-dot {
  width: 45%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-swing-dot 2s infinite ease-in-out;
}

.sk-swing-dot:nth-child(2) {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-swing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-swing-dot {
  0%, 100% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(1);
  }
}
.sk-circle {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle 1.2s infinite ease-in-out both;
}

.sk-circle-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle {
  0%, 100%, 80% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.sk-circle-fade {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-fade-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-fade-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle-fade 1.2s infinite ease-in-out both;
}

.sk-circle-fade-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-fade-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-fade-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-fade-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-fade-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-fade-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-fade-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-fade-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-fade-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-fade-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-fade-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-fade-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-fade-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-fade-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-fade-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-fade-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-fade-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-fade-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-fade-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-fade-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-fade-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-fade-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle-fade {
  0%, 100%, 39% {
    opacity: 0;
    transform: scale(0.6);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.sk-grid {
  width: var(--sk-size);
  height: var(--sk-size);
}

.sk-grid-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: var(--sk-color);
  float: left;
  animation: sk-grid 1.3s infinite ease-in-out;
}

.sk-grid-cube:nth-child(1) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(2) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(3) {
  animation-delay: 0.4s;
}

.sk-grid-cube:nth-child(4) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(5) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(6) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(7) {
  animation-delay: 0s;
}

.sk-grid-cube:nth-child(8) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(9) {
  animation-delay: 0.2s;
}

@keyframes sk-grid {
  0%, 100%, 70% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
.sk-fold {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  transform: rotateZ(45deg);
}

.sk-fold-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-fold-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sk-color);
  animation: sk-fold 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-fold-cube:nth-child(2) {
  transform: scale(1.1) rotateZ(90deg);
}

.sk-fold-cube:nth-child(4) {
  transform: scale(1.1) rotateZ(180deg);
}

.sk-fold-cube:nth-child(3) {
  transform: scale(1.1) rotateZ(270deg);
}

.sk-fold-cube:nth-child(2):before {
  animation-delay: 0.3s;
}

.sk-fold-cube:nth-child(4):before {
  animation-delay: 0.6s;
}

.sk-fold-cube:nth-child(3):before {
  animation-delay: 0.9s;
}

@keyframes sk-fold {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }
  100%, 90% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.sk-wander {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-wander-cube {
  background-color: var(--sk-color);
  width: 20%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  --sk-wander-distance:calc(var(--sk-size) * 0.75);
  animation: sk-wander 2s ease-in-out -2s infinite both;
}

.sk-wander-cube:nth-child(2) {
  animation-delay: -0.5s;
}

.sk-wander-cube:nth-child(3) {
  animation-delay: -1s;
}

@keyframes sk-wander {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6);
  }
  50% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg);
  }
  50.1% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg);
  }
  75% {
    transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@font-face {
  font-family: "PlayfairDisplay-Italic";
  src: url("../fonts/PlayfairDisplay-Italic.eot");
  src: url("../fonts/PlayfairDisplay-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/PlayfairDisplay-Italic.woff2") format("woff2"), url("../fonts/PlayfairDisplay-Italic.woff") format("woff"), url("../fonts/PlayfairDisplay-Italic.ttf") format("truetype"), url("../fonts/PlayfairDisplay-Italic.svg#PlayfairDisplay-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PlayfairDisplay-Regular";
  src: url("../fonts/PlayfairDisplay-Regular.eot");
  src: url("../fonts/PlayfairDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/PlayfairDisplay-Regular.woff2") format("woff2"), url("../fonts/PlayfairDisplay-Regular.woff") format("woff"), url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype"), url("../fonts/PlayfairDisplay-Regular.svg#PlayfairDisplay-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DMSans18pt-Light";
  src: url("../fonts/DMSans18pt-Light.eot");
  src: url("../fonts/DMSans18pt-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans18pt-Light.woff2") format("woff2"), url("../fonts/DMSans18pt-Light.woff") format("woff"), url("../fonts/DMSans18pt-Light.ttf") format("truetype"), url("../fonts/DMSans18pt-Light.svg#DMSans18pt-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DMSans18pt-Regular";
  src: url("../fonts/DMSans18pt-Regular.eot");
  src: url("../fonts/DMSans18pt-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans18pt-Regular.woff2") format("woff2"), url("../fonts/DMSans18pt-Regular.woff") format("woff"), url("../fonts/DMSans18pt-Regular.ttf") format("truetype"), url("../fonts/DMSans18pt-Regular.svg#DMSans18pt-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueLight";
  src: url("../fonts/HelveticaNeueLight.eot");
  src: url("../fonts/HelveticaNeueLight.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeueLight.woff2") format("woff2"), url("../fonts/HelveticaNeueLight.woff") format("woff"), url("../fonts/HelveticaNeueLight.ttf") format("truetype"), url("../fonts/HelveticaNeueLight.svg#HelveticaNeueLight") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --ivypresto: "ivypresto-display, serif;";
  --DMSans18pt-Light: 'DMSans18pt-Light';
  --HelveticaNeueLight: 'HelveticaNeueLight';
  --header-height: 80px;
  --white: #ffffff;
  --black: #000000;
  --lightGray: #eeece8;
  --darkGray: #D2CFC7;
  --lightGreen: #197149;
  --darkGreen: #0B3E27;
  --gap: 30px;
  --xxsmall: 5px;
  --xsmall: 10px;
  --small: 20px;
  --medium: 50px;
  --large: clamp(50px, 3.5vw, 100px);
  --xlarge: clamp(100px, 7vw, 200px);
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  background-color: var(--darkGray);
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}
.grid_3.small-gap {
  width: calc(25% - var(--small));
  margin-right: calc(4 * var(--small) / 3);
  margin-bottom: calc(4 * var(--small) / 3);
}
.grid_3.small-gap:nth-child(4n) {
  margin-right: 0;
}

.grid_4 {
  width: 33.33%;
}
.grid_4.small-gap {
  width: calc(33.333% - var(--small));
  margin-right: calc(3 * var(--small) / 2);
  margin-bottom: calc(3 * var(--small) / 2);
}
.grid_4.small-gap:nth-child(3n) {
  margin-right: 0;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}
.grid_6.small-gap {
  width: calc(50% - var(--small));
  margin-right: calc(var(--small) * 2);
  margin-bottom: calc(var(--small) * 2);
}
.grid_6.small-gap:nth-child(2n) {
  margin-right: 0;
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 66.67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}
.grid_12.small-gap {
  padding: 0 var(--small);
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display: flex;
  position: relative;
}
.grid_1.block,
.grid_2.block,
.grid_3.block,
.grid_4.block,
.grid_5.block,
.grid_6.block,
.grid_7.block,
.grid_8.block,
.grid_9.block,
.grid_10.block,
.grid_11.block,
.grid_12.block {
  display: block;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

img {
  border: none;
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

a,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

textarea:focus,
input:focus,
select:focus {
  outline: none !important;
}

/* Headings */
h1,
.h1,
h2,
h3 {
  font-weight: 100;
  font-family: ivypresto-display, serif;
}
h1 span,
.h1 span,
h2 span,
h3 span {
  display: inline-flex;
  font-style: italic;
}

h1,
.h1 {
  font-family: ivypresto-display, serif;
  font-style: normal;
  font-weight: 100;
  font-size: 80px;
  font-size: clamp(40px, 4vw, 80px);
  letter-spacing: 0.05em;
  width: 100%;
  line-height: 120%;
  display: flex;
  padding-bottom: var(--large);
  white-space: wrap;
  display: block;
  text-align: center;
}
h1 small,
.h1 small {
  font-size: 18px;
  font-family: var(--DMSans18pt-Light);
  margin: auto;
  width: -moz-max-content;
  width: max-content;
  display: block;
  text-align: center;
}

h2 {
  font-family: ivypresto-display, serif;
  font-style: normal;
  font-weight: 100;
  font-size: 60px;
  font-size: clamp(40px, 3vw, 60px);
  letter-spacing: 0.05em;
  line-height: 130%;
}
h2.titleLine {
  font-size: 30px;
}
h2.paragraph {
  font-family: var(--DMSans18pt-Light);
  font-size: 20px;
}

h3 {
  font-family: ivypresto-display, serif;
  font-size: 30px;
  font-weight: 100;
  z-index: 2;
  line-height: 130%;
  letter-spacing: 0.05em;
}
h3.small {
  font-size: 20px;
}
h3 span {
  display: block;
  font-style: italic;
}

h4 {
  font-family: ivypresto-display, serif;
  font-size: 20px;
  font-weight: 100;
  line-height: 130%;
  z-index: 2;
}
h4 span {
  display: block;
  font-style: italic;
}

p {
  font-size: 16px;
  line-height: 140%;
  padding-bottom: var(--xsmall);
}
p.small {
  font-size: 14px;
  line-height: 140%;
}
p.bold {
  font-weight: bold;
}
p.regular {
  font-family: var(--DMSans18pt-Light);
}
p.light {
  font-family: var(--DMSans18pt-Light);
}
p.large {
  font-size: 20px;
}
p span.bold {
  font-family: ivypresto-display, serif;
}

.warp {
  flex-wrap: wrap;
}

.tofade {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 1s;
}

.loaded .tofade,
.lazyFade.fadeIn .tofade {
  opacity: 1 !important;
}

main {
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  width: 100%;
  background-color: var(--darkGray);
}
section.landing {
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding: var(--medium) var(--medium);
  justify-content: flex-end;
}
section.landing h1 {
  color: var(--lightGray);
  z-index: 2;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
section.landing .arrowHolder {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--small);
  z-index: 2;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
}
section.landing .abs-v {
  position: fixed;
  z-index: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 2;
  left: var(--small);
  width: 60px;
  height: 60px;
  background-image: url(/images/leftArrow.svg);
  background-color: transparent;
  border: 0 none;
  color: transparent;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.slick-arrow.slick-next {
  left: auto;
  right: var(--small);
  background-image: url(/images/rightArrow.svg);
}

#stepsSlider .slick-arrow {
  width: 40px;
  height: 40px;
  top: 0;
  right: 0 !important;
  transform: none;
  background-color: var(--darkGreen);
}
#stepsSlider .slick-arrow.slick-prev {
  right: auto !important;
  left: 0;
}

.abs-v {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#page-home .slick-arrow {
  left: var(--medium);
}
#page-home .slick-arrow.slick-next {
  left: auto;
  right: var(--medium);
}

.slick-dots {
  position: relative;
  width: 100%;
  height: var(--small);
  list-style-type: none;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
}
.slick-dots li {
  margin: 0 4px;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-dots li button {
  border: 0 none;
  width: 12px;
  height: 12px;
  background-color: var(--darkGreen);
  border: 1px solid var(--darkGreen);
  color: transparent;
  font-size: 0px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.slick-dots li.slick-active button {
  background-color: transparent;
}

.container {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: var(--medium);
  padding-right: var(--medium);
}
.container.large {
  width: 1440px;
}
.container.medium {
  width: 1260px;
}
.container.small {
  width: 720px;
}
.container:has(.videoWrapper) {
  padding: 0;
}

.btn {
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  position: relative;
  color: var(--lightGray);
  background-color: var(--darkGreen);
  padding: var(--xsmall) var(--medium);
  border-radius: 7px;
  min-width: 150px;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
}
.btn span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: inset(50% 0%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  color: var(--lightGray);
  border-radius: 7px;
  background-color: var(--lightGreen);
}
@media (hover: hover) {
  .btn:hover span {
    clip-path: inset(0% 0%);
  }
}
.btn.light {
  background-color: var(--white);
  color: var(--DarkGray);
}
.btn.light span {
  background-color: var(--DarkGray);
  color: var(--white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--xsmall) var(--medium);
  background-color: var(--darkGray);
  border-bottom: 1px solid var(--lightGreen);
}
header .logo {
  font-family: ivypresto-display, serif;
  font-size: 26px;
  line-height: 140%;
  text-align: center;
  color: var(--black);
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  padding: 0;
  display: flex;
}
header .smallLogo {
  position: relative;
  width: auto;
  height: 80%;
  margin: auto 0;
}
header #navToggle {
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  border: 0 none;
}
header nav {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--DarkGray);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
header nav ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
header nav ul li {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin: 0 var(--small) 0 0;
}
header nav ul li a {
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-size: 16px;
  line-height: 120%;
  display: flex;
  align-items: center;
  letter-spacing: 0.03em;
  color: var(--black);
  text-align: left;
  border: 0 none;
  background-color: transparent;
  padding: 4px;
  width: -moz-max-content;
  width: max-content;
}
header nav ul li a[aria-current=page] {
  background-color: var(--darkGreen);
  color: var(--white);
}
header {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

body:has(#page-home) header {
  background-color: transparent;
  border-bottom: 2px solid transparent;
}
body:has(#page-home) header nav ul li a {
  color: var(--lightGray);
}
body:has(#page-home) header .logo {
  color: var(--lightGray);
}
body:has(#page-home) header.fixed {
  background-color: var(--darkGray);
  border-bottom: 2px solid var(--darkGreen);
}
body:has(#page-home) header.fixed .logo {
  color: var(--black);
}

#bigFlag {
  z-index: 2;
  width: 300px;
  max-width: 50%;
  margin-bottom: calc(-1 * (var(--large) + var(--small)));
}

.dark-layer::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#mainLogo {
  text-decoration: none !important;
  border: 0 none !important;
  width: 900px;
  max-width: 90%;
  z-index: 10;
  display: flex;
}
#mainLogo svg {
  width: 100%;
  margin: auto;
}
#mainLogo {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.phoneNumber {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--DarkGray);
  font-family: "Sofia Pro Light", sans-serif;
  font-style: normal;
  font-weight: 200;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10pt;
  text-align: center;
  width: 62px;
  aspect-ratio: 3/2;
}
.phoneNumber::before {
  content: "Enquire";
}

footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background-color: var(--darkGreen);
  padding: var(--large) var(--large) 0;
  z-index: 2;
}
footer a,
footer p,
footer span {
  font-size: 16px;
  line-height: 140%;
}
footer .footerSam {
  width: 160px;
}
footer h2 {
  font-size: 22pt;
}
footer .agentName {
  font-size: 16pt;
  color: var(--white);
}
footer .agentPhone {
  font-size: 16pt;
  color: var(--white);
}
footer .ll {
  height: 40px;
}
footer .morgan {
  height: 35px;
}
footer .mhndunion {
  height: 20px;
}
footer .footer-logo {
  -o-object-fit: initial;
     object-fit: initial;
}
footer .disclaimer {
  width: 100%;
  font-size: 7pt;
  line-height: 1.25;
  font-weight: 200;
  color: var(--lightGray);
  text-align: justify;
}

#legal {
  display: flex;
  flex-direction: column;
}
#legal .container * {
  color: var(--black);
}
#legal .container h2,
#legal .container h3,
#legal .container p strong {
  font-size: 18px;
  font-family: var(--DMSans18pt-Light);
  font-weight: bold;
  margin-bottom: var(--small);
}
#legal .container p,
#legal .container ul {
  font-size: 16px;
  padding-bottom: var(--small);
}
#legal .container ul {
  padding-left: 1.5em;
}

.dolphin {
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  margin: 0 auto;
}

.dolphin1 {
  width: 40vh;
  min-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Form */
#register {
  background-image: url(/images/pattern.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.submitted-message div {
  font-family: var(--Matter-Medium);
  font-style: italic;
  font-weight: 200;
  font-size: 50px;
  line-height: 110%;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.input-holder,
.hs-form-field {
  border-bottom: 1px solid var(--darkGreen);
  margin-bottom: 5px;
  position: relative;
}

.hs-error-msgs {
  list-style: none;
  color: red;
  position: absolute;
  bottom: 0;
}

#group {
  width: 500px;
  max-width: 100%;
  margin: auto;
  padding-top: var(--medium);
}

.form-row {
  border-bottom: 1px solid var(--white);
  position: relative;
  margin-bottom: var(--small);
}

.overseasHolder {
  position: absolute;
  right: 0;
  z-index: 10;
}

.post-holder {
  z-index: 1;
}

input,
textarea,
select,
label,
option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  font-family: inherit;
  resize: none;
  display: block;
  width: 100%;
  border-radius: 0;
  text-align: left;
  text-align-last: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  font-family: var(--DMSans18pt-Light);
  font-size: 14px;
  line-height: 140%;
  display: flex;
  align-items: center;
  text-align: left;
  color: var(--black);
  padding: 10px 0;
  width: 100% !important;
  border-bottom: 1px solid var(--darkGreen);
}
input.b_submit,
textarea.b_submit,
select.b_submit,
label.b_submit,
option.b_submit {
  background: var(--white);
  color: var(--DarkGray);
  cursor: pointer;
  text-align: center;
  text-align-last: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-transform: uppercase;
}

button[type=submit] {
  background-color: var(--darkGreen);
  border: 1px solid var(--darkGreen);
  text-align: center;
  color: var(--lightGray);
  padding: var(--xsmall) var(--small);
  margin-left: auto;
  cursor: pointer;
  text-transform: uppercase;
}

textarea {
  min-height: 100px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--white);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--white) !important;
}

select {
  color: var(--black);
}
select option {
  color: var(--black);
}

.token-input-dropdown-project {
  background-color: var(--DarkGray) !important;
  background: var(--DarkGray) !important;
  font-size: 10px;
}

.thank-you-message h2,
.thank-you-message p {
  color: var(--black);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: var(--black);
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--black);
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--black);
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--black);
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--black);
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0.5;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.5;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.5;
}

.check-holder {
  position: relative;
}

.check-holder input {
  opacity: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
}

.check-holder input:checked + label:after {
  background-color: currentColor;
}

.check-holder label {
  padding-right: 0;
  position: relative;
  width: -moz-max-content;
  width: 100%;
  margin: 0;
  text-align: right;
  padding-left: 15px;
  padding-left: 26px;
}

.check-holder label:before {
  position: absolute;
  left: 0;
  width: 2em;
  height: 2em;
  top: 3.5px;
  border: 1px solid currentColor;
  content: "";
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.check-holder label:after {
  position: absolute;
  left: 0;
  width: 2em;
  height: 2em;
  top: 3.5px;
  content: "";
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.token-input-list-project {
  list-style: none;
  text-align: left;
}

.token-input-token-project {
  list-style: none;
  display: inline-block;
}

.token-input-token-project p {
  display: inline-block;
  padding: 7px 0;
  margin: 0 5px 0 0;
  text-align: left;
}

.token-input-dropdown-project {
  background: var(--light);
}

.parsley-errors-list {
  font-size: 10px;
  color: red;
  list-style: none;
  pointer-events: none;
  transform: translateY(var(--xsmall));
  -webkit-transform: translateY(var(--xsmall));
  -moz-transform: translateY(var(--xsmall));
  -ms-transform: translateY(var(--xsmall));
  -o-transform: translateY(var(--xsmall));
}

.privacy {
  font-family: var(--Matter-Medium);
  font-style: normal;
  font-weight: 200;
  font-size: 12px !important;
  line-height: 1.8em;
  color: var(--white);
}
.privacy a {
  text-decoration: underline;
}

.lazyFade {
  opacity: 0;
  transition: 1.5s;
}
.lazyFade.fadeIn {
  opacity: 1;
}
.lazyFade.fadeIn + .arrowHolder {
  opacity: 1;
}

.playBtn {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.fadeSlide,
.mobileFadeSlider {
  padding-bottom: var(--small);
}
.fadeSlide .slick-arrow,
.mobileFadeSlider .slick-arrow {
  position: absolute;
  bottom: 0;
}
.fadeSlide .slick-arrow.slick-next,
.mobileFadeSlider .slick-arrow.slick-next {
  right: 0;
}
.fadeSlide .slick-dots,
.mobileFadeSlider .slick-dots {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  list-style: none;
}
.fadeSlide .slick-dots li,
.mobileFadeSlider .slick-dots li {
  display: inline-block;
}
.fadeSlide .slick-dots li button,
.mobileFadeSlider .slick-dots li button {
  border: 1px solid var(--DarkGray);
  background-color: transparent;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  font-size: 0px;
  margin: 0 4px;
  cursor: pointer;
}
.fadeSlide .slick-dots li.slick-active button,
.mobileFadeSlider .slick-dots li.slick-active button {
  background-color: var(--DarkGray);
  pointer-events: none;
}

.para {
  height: 100%;
  overflow: hidden;
}
.para .inner-para {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 110%;
}
.para .inner-para.lazyFade {
  transition: initial !important;
  -webkit-transition: initial !important;
  -moz-transition: initial !important;
  -ms-transition: initial !important;
  -o-transition: initial !important;
}

.b1px {
  border-top: 1px solid var(--DarkGray);
}

#by-law {
  width: 100%;
}
#by-law span,
#by-law a,
#by-law p {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--DarkGray);
  margin: 0 var(--xsmall);
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
}
#by-law .spacer {
  display: block;
  margin: 0;
  padding: 0;
}

.sliderFade {
  display: block;
  width: 100%;
}
.sliderFade .slick-slide img {
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.videoWrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.videoWrapper.ratio {
  aspect-ratio: 16/9;
}
.videoWrapper video {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.videoWrapper .overlay {
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.3);
}

.tileText {
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-weight: 200;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--DarkGray);
  text-align: center;
}

.activities {
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-weight: 200;
  font-size: 12px;
  line-height: 2em;
  text-align: center;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
}

picture.zoomApply img {
  animation: zoomIn 6s forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.full-viewPort {
  height: calc(100vh - var(--header-height));
}

#register {
  background-color: var(--DarkGray) !important;
}

.numbers {
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-weight: 200;
  font-size: 50px;
  line-height: 110%;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--DarkGray);
}

.numbers + .details {
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-weight: 200;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--DarkGray);
}

.teamMembers {
  display: flex;
  justify-content: center;
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-weight: 200;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--DarkGray);
}

.footerLogo {
  width: 260px;
  height: auto;
}

#page-amenity .sliderFade .slick-slide img {
  height: calc(100vh - var(--header-height) - var(--small) - var(--small));
}
#page-amenity .sliderFade .slick-dots {
  position: absolute;
  bottom: var(--small);
  left: 0;
  right: 0;
  z-index: 2;
}
#page-amenity .sliderFade .slick-dots button {
  background-color: var(--white);
}
#page-amenity .sliderFade .slick-dots .slick-active {
  z-index: 2;
}
#page-amenity .sliderFade .slick-dots .slick-active button {
  background-color: var(--DarkGray);
}

.artist::after {
  content: attr(data-disclaimer);
  position: absolute;
  bottom: var(--xsmall);
  right: var(--medium);
  display: block;
  z-index: 2;
  color: var(--lightGray);
  font-size: 10px;
}

.lifeStyle::after {
  content: attr(data-disclaimer);
  display: block;
  z-index: 2;
  color: var(--DarkGray);
  font-family: var(--DMSans18pt-Light);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  padding-top: var(--xsmall);
  position: absolute;
  left: 0;
  top: 100%;
}

.wmc {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.ofh {
  overflow: hidden;
}

picture {
  position: relative;
}
picture img {
  width: 100%;
  max-width: 100%;
}

.ownerDetails {
  margin-bottom: var(--small);
}
.ownerDetails img {
  width: 170px;
  height: -moz-max-content;
  height: max-content;
}
.ownerDetails p {
  padding-top: calc(var(--xsmall) / 2);
  font-size: 12px;
}

.logoHolder {
  display: flex;
}
.logoHolder svg {
  margin: auto 0;
}

.ratio3by4 {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}

.ratio4by3 {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.ratio3by2 {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.ratio16by9 {
  aspect-ratio: 16/9;
}

#preLoader {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100svh;
  justify-content: center;
  align-items: center;
  background-color: var(--DarkGray);
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  z-index: 100;
}
#preLoader.hide {
  clip-path: inset(0 0 100% 0);
}
#preLoader {
  transition: 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.max-full-height {
  max-height: calc(100vh - var(--header-height));
  max-height: calc(100svh - var(--header-height));
}

.vector {
  width: 100px;
}

.one-fifth {
  width: 20%;
  padding-top: var(--small);
  padding-bottom: calc(var(--medium) - var(--xsmall));
  position: inherit;
  position: relative;
  padding-left: var(--gap);
  display: flex;
  align-items: flex-end;
}
.one-fifth:first-child {
  padding-left: 0;
}
.one-fifth .centerLine {
  margin-right: initial;
}

#floorplanInformation .floorplanAction {
  background-color: transparent;
  border: 0 none;
  color: var(--DarkGray);
  max-width: 200px;
  margin-right: var(--small);
  font-size: 16px;
  padding: var(--xsmall);
  border-bottom: 1px solid var(--DarkGray);
  text-align: left;
  padding-left: 4px;
}
#floorplanInformation .floorplanAction:first-child {
  border-top: 1px solid var(--DarkGray);
}
#floorplanInformation .floorplanAction.active {
  background-color: var(--DarkGray);
  color: var(--lightGray);
}
#floorplanInformation #floorPlanAvailability p {
  color: var(--lightDarkGray);
  display: none;
  max-width: 20em;
}
#floorplanInformation #floorPlanAvailability p.active {
  display: block;
}

.awardLogo {
  width: 240px;
  margin-right: var(--small);
  height: -moz-max-content;
  height: max-content;
}
.awardLogo.large {
  width: 340px;
}
.awardLogo:last-child {
  margin-right: 0;
}

.hoverZoon {
  position: relative;
}

@media (hover: hover) {
  .projectTile .hoverZoon {
    overflow: hidden;
  }
  .projectTile:hover .hoverZoon img {
    transform: scale(1.1);
  }
}
.serviceName {
  font-family: ivypresto-display, serif;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  z-index: 2;
  color: var(--lightGray);
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}
.serviceName span {
  font-style: italic;
  display: block;
}

.box {
  padding: var(--small);
}
.box .clientComment {
  color: var(--black);
  padding-bottom: var(--small);
  max-width: 30em;
}
.box .clientName {
  color: var(--black);
  font-weight: bold;
}
.box .googleReview {
  width: 100px;
}

.largeName {
  font-family: ivypresto-display, serif;
  color: var(--lightGray);
  font-size: 6vw;
  line-height: initial;
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
  padding: 0 var(--small);
}

#socialmedia {
  width: -moz-max-content;
  width: max-content;
}
#socialmedia img {
  width: 20px;
  height: 20px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
#socialmedia a {
  margin-right: var(--small);
}

#filterActionHolder {
  position: sticky;
  top: var(--header-height);
  z-index: 2;
}

#filterAction {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: var(--small);
  display: flex;
  justify-content: center;
}
#filterAction button {
  background-color: transparent;
  border: 0 none;
  font-family: var(--DMSans18pt-Light);
  font-size: 20px;
  color: var(--black);
  width: -moz-max-content;
  width: max-content;
  padding: var(--xxsmall) var(--medium);
  border-right: 1px solid var(--black);
}
#filterAction button:last-child {
  border-right: 0 none;
}

.projectCat {
  font-size: 16px;
  font-family: var(--DMSans18pt-Light);
}

#page-projects,
#page-contact {
  padding-top: var(--header-height);
}

#page-projectsDetails {
  padding-top: var(--header-height);
}
#page-projectsDetails section.landing {
  height: calc(100svh - var(--header-height));
  padding: 0 0 0 0;
}
#page-projectsDetails section.landing img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1.5s;
  filter: blur(10px);
  animation: unblur 1.5s ease forwards;
  animation-delay: 1s;
  -o-object-position: bottom;
     object-position: bottom;
}

@keyframes unblur {
  from {
    filter: blur(10px);
  }
  to {
    filter: blur(0);
  }
}
#projectKeyInfo {
  flex-wrap: wrap;
}
#projectKeyInfo p:nth-child(odd) {
  width: 100px;
}
#projectKeyInfo p:nth-child(even) {
  width: calc(100% - 120px);
}

#gallery {
  display: flex;
  flex-wrap: wrap;
}

.viewPort {
  height: calc(100vh - var(--header-height));
  -o-object-fit: cover;
     object-fit: cover;
}

.stepsSlider {
  padding-right: var(--medium);
  border-top: 1px solid var(--darkGreen);
  position: relative;
  overflow: visible;
  margin-top: 16px;
  padding-top: 10px;
}
.stepsSlider::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--darkGreen);
  border-radius: 100%;
  z-index: 2;
}

.icons {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: var(--darkGreen);
  margin-left: auto;
  margin-right: auto;
}

.videoHolder {
  height: 80vh;
  width: 100%;
}

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

.masked {
  background-image: url("/images/projects/20Bedford.webp");
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* for better support */
  background-clip: text;
  color: transparent;
}

.links a,
.links span {
  font-size: 14px;
  font-weight: bold;
  display: block;
}
.links .spacer {
  margin: 0 10px;
}

.coLogo {
  width: 150px;
  height: 100px;
  background-color: #197149;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
}

.faq-question {
  width: 700px;
  max-width: 100%;
  position: relative;
  background-color: transparent;
  color: var(--black);
  font-size: 16px;
  text-align: left;
  border: 0 none;
  padding-left: var(--small);
  margin-bottom: var(--xsmall);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.faq-question span {
  color: var(--black);
  font-size: 16px;
  position: absolute;
  left: 0;
}

.faq-list {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.faq-item {
  width: 100%;
}

.faq-answer {
  margin-bottom: var(--small);
  padding-left: var(--small);
  width: 700px;
  max-width: 100%;
}
.faq-answer p {
  font-size: 14px;
}

.faq-question.active + .faq-answer {
  display: block;
}

details {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
details summary {
  font-weight: bold;
}

.faq-list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: var(--xsmall) 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-top: var(--xsmall);
}

.teamMember {
  aspect-ratio: 3/4;
  background-color: var(--lightGreen);
}

.grid_3.small-gap.greenTile {
  aspect-ratio: 3/2;
  background-color: var(--lightGreen);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--xsmall);
  margin-bottom: 0;
}
.grid_3.small-gap.greenTile h3 {
  color: var(--lightGray);
  text-align: center;
}

.jobTile {
  padding: var(--medium);
  background-color: var(--lightGreen);
  display: flex;
  flex-direction: column;
  border-radius: var(--small);
}

.acknowledgement {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: var(--large);
  z-index: 2;
  max-width: 60em;
  text-align: center;
  padding: 0 var(--xsmall);
}

.click {
  display: none;
}

.prgap {
  padding-right: var(--large);
}

#filterAction button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  height: calc(100vh - var(--header-height));
  top: var(--header-height);
  transition: opacity 0.35s ease, background 0.35s ease, visibility 0.35s ease;
}

.project-lightbox.active {
  visibility: visible;
}

.project-lightbox.visible {
  opacity: 1;
  background: rgba(0, 0, 0, 0.94);
}

.project-lightbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 4rem;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-lightbox img.changing {
  opacity: 0;
  transform: scale(0.985);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 3;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  transform: scale(1.08);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* ----------------------------------- */
.bold {
  font-weight: bold;
}

.bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.topLine {
  border-top: 1px solid var(--darkGreen);
  width: 0px;
}
.topLine.fadeIn {
  width: 100%;
}

.bottomLine {
  border-bottom: 1px solid var(--darkGreen);
  width: 0px;
}
.bottomLine.fadeIn {
  width: 100%;
}

.centerLine {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  width: 1px;
  height: 0;
  z-index: 2;
  background-color: var(--darkGreen);
}
.centerLine.fadeIn {
  height: 100%;
}

.ofh {
  overflow: hidden;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.row {
  display: flex;
  flex-direction: row;
  position: relative;
}
.row.wrap {
  flex-wrap: wrap;
}

.row-reverse {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.col,
.column {
  display: flex;
  flex-direction: column;
  position: relative;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.space-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.relative {
  position: relative;
  z-index: 2;
}

.absolute {
  position: absolute;
}

.ma {
  margin: auto;
}

.mlra {
  margin-left: auto;
  margin-right: auto;
}

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

.mta {
  margin-top: auto;
}

.mba {
  margin-bottom: auto;
}

.fullwidth,
.full-width {
  width: 100%;
}

.fullheight,
.full-height {
  height: 100%;
}

.full-vh,
.full-svh {
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
}

.tac,
.center-align {
  text-align: center;
}

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

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

.ptxl {
  padding-top: var(--xlarge);
}

.pbxl {
  padding-bottom: var(--xlarge);
}

.ptl {
  padding-top: var(--large);
}

.pbl {
  padding-bottom: var(--large);
}

.ptm {
  padding-top: var(--medium);
}

.pbm {
  padding-bottom: var(--medium);
}

.plm {
  padding-left: var(--medium);
}

.prm {
  padding-right: var(--medium);
}

.pts {
  padding-top: var(--small);
}

.pbs {
  padding-bottom: var(--small);
}

.ptxs {
  padding-top: var(--xsmall);
}

.ps {
  padding: var(--small);
}

.pls {
  padding-left: var(--small);
}

.prs {
  padding-right: var(--small);
}

.pbxs {
  padding-bottom: var(--xsmall);
}

.pbxxs {
  padding-bottom: var(--xxsmall);
}

.plr0 {
  padding-left: 0;
  padding-right: 0;
}

.mbs {
  margin-bottom: var(--small);
}

.mbm {
  margin-bottom: var(--medium);
}

.mbl {
  margin-bottom: var(--large);
}

.mls {
  margin-left: var(--small);
}

.mrs {
  margin-right: var(--small);
}

.mb-gap {
  margin-bottom: var(--gap);
}

.center-position,
.centerPosition {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tinted {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.sticky {
  display: block;
  position: sticky;
  top: calc(var(--header-height) + var(--small));
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}
.sticky.full-vh {
  height: 100vh;
  top: 0;
}
.sticky {
  z-index: 0;
}
.sticky video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sticky .wrapper {
  position: relative;
}
.sticky .hmc {
  height: -moz-max-content;
  height: max-content;
}

.white {
  color: var(--white);
}

.bg-white {
  background-color: var(--lightGray);
}

.lightGreen {
  color: var(--lightGreen);
}

.bg-lightGreen {
  background-color: var(--lightGreen);
}

.lightGray {
  color: var(--white);
}

.bg-lightGray {
  background-color: var(--lightGray);
}

.black {
  color: var(--black);
}

.bg-black {
  background-color: var(--black);
}

.rockyRidge,
.DarkGray {
  color: var(--DarkGray);
}

.lightDarkGray {
  color: var(--lightDarkGray);
}

.bg-rockyRidge,
.bg-DarkGray {
  background-color: var(--DarkGray);
}

.bg-darkGreen {
  background-color: var(--darkGreen);
}

.blue {
  color: var(--blue);
}

.bg-blue {
  background-color: var(--blue);
}

.rockyRidge {
  color: var(--blue);
}

.bg-rockyRidge {
  background-color: var(--DarkGray);
}

.rockyRidge {
  color: var(--DarkGray);
}

.bg-rockyRidge {
  background-color: var(--DarkGray);
}

.just-mobile {
  display: none;
}

.g4 {
  width: 100%;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.none {
  display: none;
}

@media screen and (max-width: 1440px) {
  header {
    padding: var(--xsmall) var(--small);
  }
  header nav ul li {
    margin: 0 var(--xsmall) 0 0;
  }
  .container {
    padding-left: var(--small);
    padding-right: var(--small);
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  header nav ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --PlayfairItalic: "PlayfairDisplay-Italic";
    --PlayfairRegular: "PlayfairDisplay-Regular";
    --DMSans18pt-Light: 'DMSans18pt-Light';
    --DMSans18pt-Regular: 'DMSans18pt-Regular';
    --header-height: 60px;
    --white: #ffffff;
    --black: #000000;
    --lightGray: #eeece8;
    --darkGray: #D2CFC7;
    --lightGreen: #197149;
    --darkGreen: #0B3E27;
    --gap: 30px;
    --xxsmall: 5px;
    --xsmall: 10px;
    --small: 20px;
    --medium: 30px;
    --large: 60px;
    --xlarge: 60px;
  }
  .grid_1.small-gap,
  .grid_2.small-gap,
  .grid_3.small-gap,
  .grid_4.small-gap,
  .grid_5.small-gap,
  .grid_6.small-gap,
  .grid_7.small-gap,
  .grid_8.small-gap,
  .grid_9.small-gap,
  .grid_10.small-gap,
  .grid_11.small-gap,
  .grid_12.small-gap {
    width: 100%;
    margin-right: 0;
  }
  .grid_1,
  .grid_2,
  .grid_3,
  .grid_4,
  .grid_5,
  .grid_6,
  .grid_7,
  .grid_8,
  .grid_9,
  .grid_10,
  .grid_11,
  .grid_12 {
    width: 100%;
    margin-right: 0;
  }
  .grid_12.small-gap {
    padding: 0 !important;
  }
  .just-desktop {
    display: none !important;
  }
  .just-mobile {
    display: block;
  }
  .just-mobile.btn, .just-mobile.row, .just-mobile.column, .just-mobile.flex, .just-mobile.row-reverse, .just-mobile.column-reverse {
    display: flex !important;
  }
  header {
    border-bottom: 1px solid var(--darkGreen);
    position: fixed;
    top: 0;
    left: 0;
  }
  header .logo {
    font-family: var(--PlayfairRegular);
    font-size: 18px;
    text-align: center;
    color: var(--black);
    text-transform: uppercase;
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
  }
  header #navToggle {
    width: -moz-max-content;
    width: max-content;
    background-color: transparent;
    border: 0 none;
  }
  header #navToggle img {
    display: none;
  }
  header #navToggle img.open {
    display: block;
  }
  header #navToggle.navVisible img {
    display: none;
  }
  header #navToggle.navVisible img.close {
    display: block;
  }
  header .smallLogo {
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    margin-left: auto;
  }
  header nav {
    position: fixed;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
    top: var(--header-height);
    left: 0;
    z-index: 2;
    background-color: var(--darkGray);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-top: var(--xlarge);
    transition: 0.5s;
    transform: translateX(-100%);
  }
  header nav ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: var(--small);
  }
  header nav ul li {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    margin: 0 0 var(--small) 0;
  }
  header nav ul li a {
    font-style: normal;
    font-size: 22px;
    line-height: 120%;
    display: flex;
    align-items: center;
    letter-spacing: 0.03em;
    color: var(--black);
    text-align: left;
    border: 0 none;
    background-color: transparent;
    padding: 0;
    width: -moz-max-content;
    width: max-content;
  }
  header nav ul li a.active {
    background-color: transparent;
    color: var(--darkGreen) !important;
    font-weight: bold;
  }
  header.beged {
    flex-direction: row-reverse;
  }
  header.beged .smallLogo {
    opacity: 1;
    transition: 0.5s;
  }
  header.beged .logo {
    opacity: 0;
    display: none;
  }
  header.navVisible nav {
    transform: translateX(0%);
  }
  body,
  p {
    font-size: 16px;
    text-align: left !important;
  }
  body:has(#page-home) header {
    background-color: var(--darkGray);
    border-bottom: 1px solid var(--darkGreen);
  }
  body:has(#page-home) header nav ul li a {
    color: var(--black);
  }
  body:has(#page-home) header .logo {
    color: var(--black);
  }
  body:has(#page-home) header.fixed {
    background-color: var(--darkGray);
    border-bottom: 1px solid var(--darkGreen);
  }
  body:has(#page-home) header.fixed nav ul li a {
    color: var(--darkGreen);
  }
  body:has(#page-home) header.fixed nav ul li a.active {
    color: var(--darkGreen);
    letter-spacing: 0.1em;
  }
  body:has(#page-home) header.fixed .logo {
    color: var(--darkGreen);
  }
  body:has(#page-home) .sticky.full-vh {
    height: auto;
    top: initial;
    aspect-ratio: 1/1;
    padding: 0 var(--small);
    z-index: initial;
    margin-bottom: var(--medium);
  }
  body:has(#page-home) .sticky.full-vh img {
    width: 100%;
    height: 100% !important;
  }
  body:has(#page-home) .sticky.full-vh .serviceName {
    font-size: 24px;
  }
  h1 {
    text-align: center;
  }
  h2 {
    max-width: initial !important;
  }
  h2.paragraph {
    font-size: 16px;
  }
  h2.titleLine {
    padding-bottom: var(--xsmall);
  }
  h3 {
    font-size: 22px;
    text-align: left !important;
  }
  .btn {
    font-size: 16px;
    margin-left: initial;
    margin-right: auto;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .btn span {
    display: none;
  }
  .box {
    padding: 0;
  }
  .masked {
    background-image: initial;
    background-size: initial;
    background-position: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: var(--lightGray);
    font-size: 40px;
    text-align: left;
    padding: 0;
  }
  section.landing h1 {
    font-size: 40px;
    padding: 0 var(--small);
  }
  section.landing .abs-v {
    position: absolute;
    z-index: 0;
  }
  .grid_4.small-gap:last-child {
    margin-bottom: 0;
  }
  .awardLogo {
    width: 46%;
    margin-right: 2%;
    margin-bottom: 4%;
    height: initial !important;
  }
  .awardLogo:nth-child(2n) {
    margin-right: 0;
  }
  .awardLogo.large {
    width: 46%;
  }
  .acknowledgement {
    bottom: var(var(--xxsmall)var(--medium));
    padding: 0 var(--small);
    text-align: center !important;
  }
  section.landing .arrowHolder {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--xxsmall);
  }
  .dolphin {
    width: 100%;
    margin-bottom: var(--medium);
  }
  .m-p0 {
    padding: 0;
  }
  .videoHolder {
    aspect-ratio: 16/9;
    height: initial;
  }
  .videoHolder video {
    height: 100%;
    width: 100%;
  }
  footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    background-color: var(--darkGreen);
    padding: var(--large) var(--small) var(--small);
    z-index: 2;
  }
  footer a,
  footer p,
  footer span {
    font-size: 14px !important;
  }
  footer .spacer {
    display: none !important;
  }
  footer a {
    font-size: 16px;
    line-height: 140%;
  }
  footer .footerSam {
    width: 160px;
  }
  footer h2 {
    font-size: 26px;
  }
  footer h2 br {
    display: none;
  }
  footer .agentName {
    font-size: 16pt;
    color: var(--white);
  }
  footer .agentPhone {
    font-size: 16pt;
    color: var(--white);
  }
  footer .ll {
    height: 40px;
  }
  footer .morgan {
    height: 35px;
  }
  footer .mhndunion {
    height: 20px;
  }
  footer .footer-logo {
    -o-object-fit: initial;
       object-fit: initial;
    max-width: 150px;
  }
  footer #companyDetails {
    width: 100% !important;
    margin: 0;
  }
  footer .disclaimer {
    width: 100%;
    font-size: 7pt;
    line-height: 1.25;
    font-weight: 200;
    color: var(--lightGray);
    text-align: justify;
  }
  .prgap {
    padding-right: 0;
  }
  .prgap h2 {
    text-align: left;
  }
  #by-law span,
  #by-law a,
  #by-law p {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: var(--DarkGray);
    margin: 0 0 var(--xsmall);
    text-transform: initial;
    line-height: 140%;
    display: flex;
    align-items: center;
    font-family: var(--DMSans18pt-Light);
  }
  .grid_3.small-gap.greenTile {
    margin-bottom: var(--small);
  }
  .grid_3.small-gap.greenTile h3 {
    text-align: center !important;
  }
  .grid_3.small-gap.greenTile:last-child {
    margin-bottom: 0;
  }
  p {
    max-width: 100% !important;
  }
  .m-left-align {
    text-align: left;
    margin-left: initial;
    margin-right: auto;
  }
  #by-law {
    flex-direction: column;
    align-items: center;
  }
  .m-column {
    flex-direction: column;
  }
  .m-align-start {
    align-items: flex-start;
  }
  .m-ratio-1-1 {
    aspect-ratio: 1/1;
  }
  .m-column-reverse {
    flex-direction: column-reverse;
  }
  .m-mbs {
    margin-bottom: var(--small);
  }
  .m-plrs {
    padding-left: var(--small);
    padding-right: var(--small);
  }
  .m-ptxl {
    padding-top: var(--xlarge);
  }
  .m-pb0 {
    padding-bottom: 0;
  }
  .m-pt0 {
    padding-top: 0;
  }
  .m-mbm {
    margin-bottom: var(--medium);
  }
  .m-mbl {
    margin-bottom: var(--large);
  }
  .m-ptm {
    padding-top: var(--medium);
  }
  .m-column {
    flex-direction: column;
  }
  .m-pbm {
    padding-bottom: var(--medium);
  }
  .ptl-m {
    padding-top: var(--medium);
  }
  .moreSpace {
    margin-bottom: var(--xsmall);
  }
  .mla {
    margin-left: 0;
  }
}/*# sourceMappingURL=style.css.map */