/* CSS Document */
.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;
}

.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: "BeausiteClassicSemibold";
  src: url("/fonts/BeausiteClassicSemibold.eot");
  src: url("/fonts/BeausiteClassicSemibold.eot?#iefix") format("embedded-opentype"), url("/fonts/BeausiteClassicSemibold.woff2") format("woff2"), url("/fonts/BeausiteClassicSemibold.woff") format("woff"), url("/fonts/BeausiteClassicSemibold.ttf") format("truetype"), url("/fonts/BeausiteClassicSemibold.svg#BeausiteClassicSemibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BeausiteClassicRegular";
  src: url("/fonts/BeausiteClassicRegular.eot");
  src: url("/fonts/BeausiteClassicRegular.eot?#iefix") format("embedded-opentype"), url("/fonts/BeausiteClassicRegular.woff2") format("woff2"), url("/fonts/BeausiteClassicRegular.woff") format("woff"), url("/fonts/BeausiteClassicRegular.ttf") format("truetype"), url("/fonts/BeausiteClassicRegular.svg#BeausiteClassicRegular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MinionProRegular";
  src: url("/fonts/MinionProRegular.eot");
  src: url("/fonts/MinionProRegular.eot") format("embedded-opentype"), url("/fonts/MinionProRegular.woff2") format("woff2"), url("/fonts/MinionProRegular.woff") format("woff"), url("/fonts/MinionProRegular.ttf") format("truetype"), url("/fonts/MinionProRegular.svg#MinionProRegular") format("svg");
}
:root {
  --BeausiteClassicSemibold: "BeausiteClassicSemibold";
  --BeausiteClassicRegular: "BeausiteClassicRegular";
  --MinionProRegular: "MinionProRegular";
  --header-height: 80px;
  --white: #ffffff;
  --no-white: #f5f5f5;
  --black: #000000;
  --navy: #001a2b;
  --gray: #9ea098;
  --lightGray: #cfd0cb;
  --electricViolet: #0000ff;
  --gap: 40px;
  --xxsmall: 7.5px;
  --xsmall: 15px;
  --small: 30px;
  --medium: 60px;
  --large: clamp(60px, 3.5vw, 100px);
  --xlarge: clamp(100px, 7vw, 180px);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--BeausiteClassicRegular);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: var(--white);
}

*,
*: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_4 {
  width: 33.33%;
}
.grid_4.small-gap {
  width: calc(33.333% - var(--small));
  margin-right: 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(--xsmall));
  margin-right: var(--small);
}
.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 {
  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 {
  font-family: var(--BeausiteClassicSemibold);
  font-style: normal;
  color: var(--electricViolet);
  font-size: 35px;
  font-size: clamp(22px, 1.5vw, 38px);
  line-height: 110%;
}

h2 {
  font-family: var(--BeausiteClassicSemibold);
  font-style: normal;
  font-size: 20px;
  line-height: 110%;
  color: var(--electricViolet);
}
h2.largeFont {
  font-size: clamp(26px, 5vw, 90px);
}
h2.mediumFont {
  font-size: clamp(26px, 3.2vw, 60px);
}

h3 {
  font-family: var(--BeausiteClassicRegular);
  font-size: 30px;
  line-height: 130%;
}

p.small {
  font-size: 14px;
}
p.bold {
  font-family: var(--BeausiteClassicSemibold);
}

section {
  position: relative;
  width: 100%;
}
section.p0 {
  padding: 0;
}
section.landing {
  height: 100svh;
  height: 100svh;
  overflow: hidden;
}
section.landing.half {
  height: auto;
  padding-bottom: 0;
}
section.landing .art {
  width: 100%;
  height: 100%;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  width: 100%;
  padding-left: var(--medium);
  padding-right: var(--medium);
}

.btn {
  background-color: transparent;
  border: 0 none;
  color: var(--white);
  background-color: rgba(158, 160, 152, 0.5);
  padding: var(--xxsmall) var(--small);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--small);
  font-family: var(--BeausiteClassicSemibold);
  font-size: 18px;
  border-radius: var(--medium);
  line-height: 1;
  padding-bottom: calc(var(--xxsmall) + 2px);
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  padding: var(--xxsmall) var(--medium);
}
header .column {
  flex-direction: column-reverse;
}
header .pointer {
  height: 1em;
  margin-left: 0.25em;
  transform: translateY(3px);
}
header .logo {
  width: 50vw;
}
header .logo img {
  height: 100%;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
}
header nav a,
header nav button {
  background-color: transparent;
  border: 0 none;
  color: var(--white);
  background-color: var(--gray);
  padding: var(--xxsmall) var(--small);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--small);
  font-family: var(--BeausiteClassicSemibold);
  font-size: 18px;
  border-radius: var(--medium);
  line-height: 1;
  padding-bottom: calc(var(--xxsmall) + 2px);
}
header nav a:last-child,
header nav button:last-child {
  background-color: var(--electricViolet);
  margin-right: 0;
}
header._bg {
  background-color: var(--white);
  height: var(--header-height);
}
header._bg .column {
  flex-direction: row;
  justify-content: space-between;
}
header._bg .logo {
  width: 30vw;
  display: flex;
}
header._bg .logo img {
  height: 80%;
  width: auto;
  margin: auto 0;
}

footer {
  display: flex;
  width: 100%;
  position: relative;
  padding-left: var(--medium);
  padding-right: var(--medium);
}
footer .footerLogo {
  max-width: 380px;
  padding-bottom: var(--gap);
}
footer .container {
  border-top: 1px solid var(--gray);
  padding-top: 35px;
}
footer .container .title {
  font-family: var(--BeausiteClassicSemibold);
  color: var(--gray);
  text-transform: uppercase;
  font-size: 12px;
  width: 130px;
}
footer .container .titleLarge {
  font-family: var(--BeausiteClassicSemibold);
  color: var(--gray);
  text-transform: uppercase;
  font-size: 12px;
  width: 130px;
}
footer .container .titleLarge + .column {
  width: 170px;
  margin-left: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
footer .container .grid_3 {
  max-width: 350px;
}
footer .container h3 {
  font-size: 12px;
}

button {
  cursor: pointer;
}

#byLaw a,
#byLaw span,
#byLaw button {
  font-family: var(--BeausiteClassicRegular);
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: var(--gray);
  margin-right: var(--xsmall);
  background-color: transparent;
  border: 0 none;
  display: flex;
  line-height: 1;
  cursor: pointer;
}
#byLaw button {
  margin-left: auto;
  border: 1px solid var(--gray);
  padding-inline: 0;
  height: -moz-max-content;
  height: max-content;
  padding: var(--xxsmall) var(--xsmall);
  border-radius: var(--xsmall);
  cursor: pointer;
}
#byLaw span {
  cursor: initial;
}

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

form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.input-holder,
.hs-form-field {
  border-bottom: 1px solid var(--gray);
  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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0 none;
  resize: none;
  display: block;
  width: 100%;
  border-radius: 0;
  width: 100%;
  text-align: left;
  text-align-last: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  background-color: var(--lightGray);
  font-family: var(--BeausiteClassicRegular);
  font-size: 14px;
  line-height: 140%;
  color: var(--navy);
  padding: var(--xxsmall);
  margin-bottom: calc(var(--xsmall) + var(--xxsmall));
  width: 100% !important;
  border-bottom: 1px solid var(--lightGray);
  border-radius: 20px;
  padding-left: 1em;
}
input.b_submit,
textarea.b_submit,
select.b_submit {
  font-family: var(--BeausiteClassicSemibold);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  border: 1px solid var(--electricViolet);
  background-color: var(--electricViolet);
  padding: 4px 25px;
  border-radius: 25px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--gap);
  width: max-content !important;
  max-width: -moz-max-content !important;
  max-width: max-content !important;
  margin: 0;
  cursor: pointer;
}
@media (hover: hover) {
  input.b_submit:hover,
  textarea.b_submit:hover,
  select.b_submit:hover {
    animation: electricVioletEffect 0.5s forwards;
  }
}

label {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0 none;
  resize: none;
  display: block;
  width: 100%;
  border-radius: 0;
  width: 100%;
  text-align: left;
  text-align-last: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  background-color: transparent;
  font-family: var(--BeausiteClassicRegular);
  font-size: 14px;
  line-height: 140%;
  color: var(--gray);
  padding: 0 0 var(--xxsmall) 1em;
  margin-bottom: 0;
  width: 100% !important;
  border-bottom: 0 none;
}

textarea {
  min-height: 100px;
}

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

select {
  background-color: var(--lightGray);
}
select option {
  color: var(--navy);
  background-color: var(--lightGray);
}

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

.thx {
  height: 100%;
  width: 100;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: transparent;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: transparent;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: transparent;
  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;
  line-height: 10px;
  color: red;
  list-style: none;
  pointer-events: none;
}
.parsley-errors-list.filled {
  margin-top: -10px;
}

.privacy {
  padding-top: var(--small);
  color: var(--gray);
  font-family: var(--BeausiteClassicRegular);
  font-size: 10px;
  line-height: 14px;
  text-align: left;
}
.privacy a {
  font-family: var(--BeausiteClassicSemibold);
  color: var(--large);
  text-decoration: underline;
}

.lazyFade {
  opacity: 0;
  transition: 1s ease-in;
  -webkit-transition: 1s ease-in;
  -moz-transition: 1s ease-in;
  -ms-transition: 1s ease-in;
  -o-transition: 1s ease-in;
}
.lazyFade.fadeIn {
  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%);
}

.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;
}

#by-law {
  width: 100%;
}
#by-law a,
#by-law p {
  font-size: 10px;
  color: var(--gray);
  margin: 0 var(--xsmall);
  text-transform: uppercase;
}

.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);
}

.artist::after {
  content: attr(data-disclaimer);
  position: absolute;
  bottom: var(--xsmall);
  left: var(--xsmall);
  display: block;
  z-index: 2;
  font-family: var(--BeausiteClassicRegular);
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

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

.deicorpStamp {
  width: 400px;
  max-width: 60%;
  margin: 0 auto var(--small);
}

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

.variable-width-slide {
  position: relative;
}
.variable-width-slide img {
  height: 50vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--xxsmall);
}
.variable-width-slide .my-video-links {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.variable-width-slide .my-video-links .playBtn {
  width: 100px;
  height: 100px;
}

.my-video-links {
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.variable-width .slick-list {
  margin: 0 -20px 0 0;
}
.variable-width .slick-list .slick-slide {
  margin: 0 20px 0 0;
}

.variable-width-holder {
  padding-left: var(--medium);
  overflow: hidden;
}

.slider-arrows {
  margin-right: var(--medium);
}
.slider-arrows button {
  border: 0 none;
  width: 50px;
  background-color: transparent;
  cursor: pointer;
  margin-right: var(--xxsmall);
}
.slider-arrows button:last-child {
  margin-right: 0;
}

.highlight {
  padding: var(--xxsmall) var(--xsmall);
  border: 1px solid rgba(158, 160, 152, 0.5);
  background-color: transparent;
  margin-right: var(--xsmall);
  color: var(--gray);
  border-radius: var(--xxsmall);
  min-width: 130px;
  text-align: center;
}
.highlight:last-child {
  margin-right: 0;
}

.brxxsmall {
  border-radius: var(--xxsmall);
}

.whiteLine {
  border-bottom: 1px solid var(--white);
  margin-bottom: var(--xxsmall);
}

#project-marquee {
  overflow: hidden;
  display: flex;
}
#project-marquee .project-marquee {
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  display: flex;
}
@media (hover: hover) {
  #project-marquee .project-marquee:hover .project-track {
    animation-play-state: paused;
  }
}
#project-marquee .project-marquee .project-track {
  display: flex;
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
  animation: rollLeft 20s linear infinite;
}
#project-marquee .project-marquee .project-track .grid_4 {
  margin: 0 var(--xsmall);
}
#project-marquee .project-marquee .project-track .grid_4 img {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 2/3;
}

@keyframes rollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#socialMedia a {
  width: 30px;
  height: 20px;
  margin-right: var(--xsmall);
}
#socialMedia a img {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
}

#heroVideoContent .my-video-links {
  position: relative;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  top: initial;
  left: initial;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto var(--medium);
  pointer-events: initial !important;
  z-index: 999;
}

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

.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;
}

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

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

.mta {
  margin-top: 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;
}

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

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

.half-vh {
  height: 50vh;
  max-height: 600px;
}

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

.z2 {
  z-index: 2;
}

.pbgap {
  padding-bottom: var(--gap);
}

.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);
}

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

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

.mbs {
  margin-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);
}

.mbxxs {
  margin-bottom: var(--xxsmall);
}

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

.row-gap {
  row-gap: var(--gap);
}

.column-gap {
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

.gap {
  gap: var(--gap);
}

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

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

.sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--large));
}
.sticky.full-vh {
  height: calc(100vh - var(--header-height));
}
.sticky.full-svh {
  height: calc(100svh - var(--header-height));
}
.sticky {
  z-index: 0;
}

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

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

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

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

.black {
  color: #000000;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ofh {
  overflow: hidden;
}

.just-mobile {
  display: none;
}

@media screen and (max-width: 1300px) {
  footer h2 {
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --BeausiteClassicSemibold: "BeausiteClassicSemibold";
    --BeausiteClassicRegular: "BeausiteClassicRegular";
    --MinionProRegular: "MinionProRegular";
    --header-height: 80px;
    --white: #ffffff;
    --no-white: #f5f5f5;
    --black: #000000;
    --navy: #001a2b;
    --gray: #9ea098;
    --lightGray: #cfd0cb;
    --electricViolet: #0000ff;
    --small: 20px;
    --gap: 20px;
    --bottom-banner: 40px;
    --header-height: 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 {
    padding: var(--xxsmall) var(--small);
    height: var(--header-height);
  }
  header .column {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  header .logo {
    width: 50vw;
  }
  header .logo img {
    width: 100%;
    height: auto;
  }
  header nav {
    display: flex;
    align-items: center;
  }
  header nav a,
  header nav button {
    margin-right: 0;
    font-size: 14px;
    letter-spacing: 0.05em;
  }
  header nav a:last-child,
  header nav button:last-child {
    margin-right: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    height: var(--bottom-banner);
  }
  header._bg .column {
    flex-direction: row;
    justify-content: space-between;
  }
  header._bg .logo {
    width: 50vw;
  }
  header._bg .logo img {
    width: 100%;
    height: auto;
  }
  #project-marquee {
    overflow: hidden;
    display: flex;
  }
  #project-marquee .project-marquee {
    min-width: 100%;
    width: -moz-max-content;
    width: max-content;
    overflow: hidden;
    display: flex;
  }
}
@media screen and (max-width: 1000px) and (hover: hover) {
  #project-marquee .project-marquee:hover .project-track {
    animation-play-state: paused;
  }
}
@media screen and (max-width: 1000px) {
  #project-marquee .project-marquee .project-track {
    display: flex;
    min-width: auto;
    width: auto;
    animation: rollLeft 20s linear infinite;
  }
  #project-marquee .project-marquee .project-track .grid_4 {
    margin: 0 var(--xxsmall);
    width: 40vw;
  }
  #project-marquee .project-marquee .project-track .grid_4 img {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 2/3;
    opacity: 1 !important;
  }
  #project-marquee .project-marquee .project-track .grid_4 p {
    opacity: 1 !important;
    font-size: 12px;
  }
  @keyframes rollLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .variable-width-holder {
    padding-left: var(--small);
    padding-right: var(--small);
  }
  .variable-width-holder .variable-width-slide img {
    height: 30vh;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    border-radius: var(--xxsmall);
  }
  .container {
    padding-left: var(--small);
    padding-right: var(--small);
    width: 100%;
  }
  .highlight {
    margin-bottom: var(--xsmall);
  }
  .slider-arrows {
    margin-right: 0;
  }
  .slider-arrows button {
    width: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .bb1orange {
    border-bottom: 0px none;
  }
  .bb1bronze {
    border-bottom: 0px none;
  }
  .bb1green {
    border-bottom: 0px none;
  }
}
@media screen and (max-width: 1000px) {
  /* Form */
  #footerLogos {
    align-items: center;
  }
  #footerLogos svg {
    margin-bottom: var(--medium);
  }
  #footerLogos svg:last-child {
    margin-bottom: 0;
  }
  p {
    max-width: 100% !important;
  }
  .headLine {
    padding-right: 0;
    width: 100%;
    position: relative;
  }
  .headLine img {
    position: relative;
    aspect-ratio: initial;
    width: 100%;
    bottom: initial;
    transform: none;
    right: initial;
    transition: 0s;
    opacity: 1;
    margin-bottom: var(--small);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .date {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(10px);
  }
  footer {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: var(--bottom-banner);
  }
  footer .container {
    padding-left: var(--small);
    padding-right: var(--small);
  }
  #page-apartments section.landing .h1Svg {
    width: 80%;
  }
  #page-apartments section.landing .art {
    height: 30vh;
  }
  #page-location section.landing .h1Svg {
    width: 80%;
  }
  #page-location section.landing .art {
    height: 30vh;
  }
  #page-team section.landing .h1Svg {
    width: 80%;
  }
  #page-team section.landing .art {
    height: 30vh;
  }
  .slick-arrow {
    left: -15px;
  }
  .slick-arrow.slick-next {
    left: auto;
    right: -15px;
  }
  .m-not-center-position {
    position: relative;
    width: 100%;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    margin: 0 auto var(--gap);
    color: var(--green);
    transform: none;
  }
  #byLaw {
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--xsmall);
    padding-bottom: var(--medium);
  }
  .largeFont {
    padding-left: 0;
    text-align: left;
  }
  h2.pbl {
    padding-bottom: var(--medium);
  }
  input.b_submit,
  textarea.b_submit,
  select.b_submit {
    height: initial;
  }
  #theme a,
  #theme span {
    font-size: 14px;
  }
  .compare-wrap .compare-box .handle {
    width: 30px;
    height: 30px;
  }
  .check-holder label:before {
    left: 6px;
  }
  .check-holder label:after {
    left: 6px;
  }
  .token-input-token-project p {
    font-size: 10px;
  }
  .activities {
    font-size: 9px;
  }
  #page-team p {
    max-width: 100% !important;
  }
  #by-law {
    flex-direction: column;
    align-items: center;
  }
  .m-column {
    flex-direction: column;
  }
  .m-column-reverse {
    display: flex;
    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-ptm {
    padding-top: var(--medium);
  }
  .m-pbgap {
    padding-bottom: var(--gap);
  }
  .m-column {
    flex-direction: column;
  }
  .m-pbm {
    padding-bottom: var(--medium);
  }
}/*# sourceMappingURL=style.css.map */