:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: #0000001a;
  --f-spinner-color-2: #11181ccc;
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  margin: auto;
  padding: 0;
}

.f-spinner svg {
  vertical-align: top;
  width: 100%;
  height: 100%;
  animation: 2s linear infinite f-spinner-rotate;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg :first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg :last-child {
  stroke: var(--f-spinner-color-2);
  animation: 2s ease-in-out infinite f-spinner-dash;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90 150;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 90 150;
    stroke-dashoffset: -124px;
  }
}

.f-throwOutUp {
  animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, .2s) ease .1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    opacity: 0;
    transform: scale(.975)translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: scale(1)translate3d(0, 0, 0);
  }
}

@keyframes f-zoomOutDown {
  to {
    opacity: 0;
    transform: scale(.975)translate3d(0, 16px, 0);
  }
}

.f-fadeIn {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeFastIn {
  animation: var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: .75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  animation: var(--f-transition-duration, .5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, .5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, .2s) * .5) linear .1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    opacity: 0;
    transform: translateX(-75px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-classicInPrev {
  0% {
    opacity: 0;
    transform: translateX(75px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-classicOutNext {
  100% {
    opacity: 0;
    transform: translateX(-75px);
  }
}

@keyframes f-classicOutPrev {
  100% {
    opacity: 0;
    transform: translateX(75px);
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: .65;
}

.f-button {
  box-sizing: content-box;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
  outline: none;
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
  transition: opacity .15s;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  z-index: 1;
  position: absolute;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
  width: auto;
  overflow: visible;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  margin-right: calc(var(--fancybox-body-margin, 0px)  + var(--fancybox-scrollbar-compensate, 0px));
  overscroll-behavior-y: none;
  width: auto;
  overflow: hidden !important;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: #18181bfa;
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: #ffffff1a;
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  direction: ltr;
  box-sizing: border-box;
  color: #f8f8f8;
  -webkit-tap-highlight-color: #0000;
  z-index: var(--fancybox-zIndex, 1050);
  transform-origin: 0 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
  outline: none;
  flex-direction: column;
  margin: 0;
  padding: 0;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: visible;
}

.fancybox__container *, .fancybox__container :before, .fancybox__container :after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: #0000;
}

.fancybox__backdrop {
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
  position: fixed;
  inset: 0;
}

.fancybox__carousel {
  box-sizing: border-box;
  z-index: 10;
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: clip visible;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  height: 100%;
  margin: 0 auto;
  display: flex;
}

.fancybox__slide {
  margin: 0 var(--fancybox-slide-gap) 0 0;
  overscroll-behavior: contain;
  backface-visibility: hidden;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 4px;
  display: flex;
  position: relative;
  overflow: auto;
  transform: translate3d(0, 0, 0);
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video, .fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide:before, .fancybox__slide:after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  z-index: 20;
  border-radius: 0;
  flex-direction: column;
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 2rem;
  display: flex;
  position: relative;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  backface-visibility: hidden;
  background: center / contain no-repeat;
  min-height: 1px;
  padding: 0;
  transition: none;
  transform: translate3d(0, 0, 0);
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  filter: blur();
  will-change: transform, width, height;
}

.fancybox-image {
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: auto;
  display: block;
}

.fancybox__caption {
  overflow-wrap: anywhere;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
  flex-shrink: 0;
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 14px 0 4px;
  line-height: 1.375;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  z-index: 40;
  position: absolute;
  top: 0;
  right: 8px;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  opacity: .75;
  position: absolute;
  top: -38px;
  right: 0;
}

.is-loading .fancybox__content > .f-button.is-close-btn, .is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  margin: 0;
  padding: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  opacity: var(--fancybox-opacity, 1);
  width: 100%;
  padding: 24px;
  transition: all .25s;
}

.is-compact .fancybox__footer {
  z-index: 20;
  background: #18181b80;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: #0009;
  --f-button-active-bg: #0009;
  --f-button-hover-bg: #0009;
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: #18181b4d;
  --f-button-active-bg: #18181b80;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px #18181b80);
  --f-button-svg-disabled-opacity: .65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  content: "";
  z-index: 1;
  position: absolute;
  inset: -30px -20px;
}

.is-idle .fancybox__nav {
  animation: .15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));
  z-index: 30;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
}

.fancybox-protected {
  z-index: 40;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  inset: 0;
}

.fancybox-ghost {
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.fancybox-focus-guard {
  opacity: 0;
  pointer-events: none;
  outline: none;
  position: fixed;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden="false"] > :not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden="false"] .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden="false"] .fancybox__slide > :not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden="true"] > :not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden="true"] .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden="true"] .fancybox__slide > :not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, .15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden="true"] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  flex-shrink: 1;
  max-width: 100%;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  max-width: 100%;
  height: 540px;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  color: #fff;
  background: #18181be6;
  padding: 0;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  background: none;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.fancybox-placeholder {
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: .5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  -webkit-tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  perspective: 1000px;
  flex: none;
  margin: 0;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  z-index: -1;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  border-radius: 2px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  box-sizing: content-box;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  cursor: pointer;
  flex: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track:before {
  content: "";
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
  position: absolute;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  pointer-events: none;
  transition: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform .33s;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: -webkit-clip-path .33s, clip-path .33s;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  appearance: none;
  width: var(--f-thumb-width);
  border-radius: var(--f-thumb-border-radius);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  background: none;
  border: 0;
  outline: none;
  height: 100%;
  margin: 0 -100%;
  padding: 0;
  transition: opacity .2s;
  position: relative;
  overflow: hidden;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  opacity: var(--f-thumb-selected-opacity);
  outline: none;
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc(((var(--f-thumb-width, 0)  - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * .5) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button:after {
  content: "";
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  z-index: 10;
  height: auto;
  animation: .2s ease-out f-fadeIn;
  position: absolute;
  inset: 0;
}

.f-thumbs__slide__img {
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height .35s cubic-bezier(.23, 1, .32, 1);
  position: relative;
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: .5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(#ffffff1a, #ffffff0d);
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(#ffffff1a, #ffffff0d);
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0 !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, #fffffff0);
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: #18181ba6;
  --f-button-hover-bg: #464649a6;
  --f-button-active-bg: #5a5a5da6;
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px #18181b26);
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .65;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px #00000080);
  pointer-events: none;
  z-index: 20;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI Adjusted, Segoe UI, Liberation Sans, sans-serif;
  display: flex;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  flex-flow: wrap;
  align-content: flex-start;
  display: flex;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  flex-wrap: nowrap;
  justify-content: flex-end;
  display: flex;
}

.fancybox__infobar {
  line-height: var(--f-button-height);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  padding: 0 5px;
  font-size: 17px;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  opacity: .3;
  height: 100%;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child, .has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child, [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  transform-origin: 0;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  height: 3px;
  transition-property: transform;
  transition-timing-function: linear;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

#nice-select {
  position: absolute;
}

.nice-select {
  -webkit-tap-highlight-color: #0000;
  color: #c5c5c5;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  background-color: #0000;
  border: 1px solid #c5c5c5;
  border-radius: 40px;
  outline: none;
  width: 100%;
  padding: .625rem 1.25rem;
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  transition: all .2s ease-in-out;
  display: block;
  position: relative;
  text-align: left !important;
}

@media screen and (min-width: 768px) {
  .nice-select {
    font-size: 1rem;
  }
}

.nice-select:after {
  content: "";
  color: #dbb589;
  font-family: "Font Awesome 6 Pro";
  transition: all .3s ease-in-out;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.nice-select.open:after {
  transform: translateY(-42%)rotate(-180deg);
}

.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1)translateY(0);
}

.nice-select.disabled {
  color: #999;
  pointer-events: none;
  border-color: #ededed;
}

.nice-select.disabled:after {
  border-color: #ccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .nice-select-dropdown {
  left: auto;
  right: 0;
}

.nice-select.small {
  height: 36px;
  font-size: 16px;
  line-height: 34px;
}

.nice-select.small:after {
  width: 4px;
  height: 4px;
}

.nice-select.small .option {
  min-height: 34px;
  line-height: 34px;
}

.nice-select .nice-select-dropdown {
  pointer-events: none;
  transform-origin: 50% 0;
  z-index: 9;
  opacity: 0;
  background-color: #c5c5c5;
  border-radius: 0;
  margin-top: 4px;
  transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: auto;
  transform: scale(.75)translateY(22.5px);
  box-shadow: 0 0 0 1px #1816191c;
}

.nice-select .list {
  box-sizing: border-box;
  color: #181619;
  border-radius: 5px;
  max-height: 210px;
  padding: 0;
  overflow: hidden auto;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: #0000 !important;
}

.nice-select .option {
  cursor: pointer;
  text-align: left;
  color: #181619;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  font-weight: 400;
  line-height: 47px;
  list-style: none;
  transition: all .2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  color: #999;
  cursor: default;
  background-color: #0000;
}

.nice-select .optgroup {
  font-weight: bold;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}

.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  min-height: 36px;
  padding: 7px 12px;
  line-height: 22px;
}

.nice-select .has-multiple span.current {
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 3px;
  margin-right: 3px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
}

.nice-select .has-multiple .multiple-options {
  padding: 0;
  line-height: 24px;
  display: block;
}

.nice-select .nice-select-search-box {
  box-sizing: border-box;
  pointer-events: none;
  color: #181619;
  border-radius: 0;
  width: 100%;
  padding: 5px;
}

.nice-select .nice-select-search {
  box-sizing: border-box;
  color: #181619;
  vertical-align: middle;
  background-color: #c5c5c5;
  border: 1px solid #c5c5c5;
  border-radius: 0;
  width: 100%;
  height: auto;
  min-height: 36px;
  margin: 0 10px 0 0;
  padding: 7px 12px;
  font-size: 18px;
  line-height: 22px;
  display: inline-block;
  outline: 0 !important;
}

*, :before, :after {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}

:before, :after {
  --tw-content: "";
}

html, :host {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.5;
}

body {
  line-height: inherit;
  margin: 0;
}

hr {
  color: inherit;
  border-top-width: 1px;
  height: 0;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
  background-color: #0000;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol, ul, menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder, textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button, [role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img, svg, video, canvas, audio, iframe, embed, object {
  vertical-align: middle;
  display: block;
}

img, video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

[data-popper-arrow], [data-popper-arrow]:before {
  background: inherit;
  width: 8px;
  height: 8px;
  position: absolute;
}

[data-popper-arrow] {
  visibility: hidden;
}

[data-popper-arrow]:before {
  content: "";
  visibility: visible;
  transform: rotate(45deg);
}

[data-popper-arrow]:after {
  content: "";
  visibility: visible;
  background: inherit;
  width: 9px;
  height: 9px;
  position: absolute;
  transform: rotate(45deg);
}

[role="tooltip"] > [data-popper-arrow]:before, [role="tooltip"] > [data-popper-arrow]:after {
  border-style: solid;
  border-color: #e5e7eb;
}

[data-popover][role="tooltip"][data-popper-placement^="top"] > [data-popper-arrow]:before, [data-popover][role="tooltip"][data-popper-placement^="top"] > [data-popper-arrow]:after {
  border-bottom-width: 1px;
  border-right-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^="right"] > [data-popper-arrow]:before, [data-popover][role="tooltip"][data-popper-placement^="right"] > [data-popper-arrow]:after {
  border-bottom-width: 1px;
  border-left-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^="bottom"] > [data-popper-arrow]:before, [data-popover][role="tooltip"][data-popper-placement^="bottom"] > [data-popper-arrow]:after {
  border-top-width: 1px;
  border-left-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^="left"] > [data-popper-arrow]:before, [data-popover][role="tooltip"][data-popper-placement^="left"] > [data-popper-arrow]:after {
  border-top-width: 1px;
  border-right-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^="top"] > [data-popper-arrow] {
  bottom: -5px;
}

[data-popover][role="tooltip"][data-popper-placement^="bottom"] > [data-popper-arrow] {
  top: -5px;
}

[data-popover][role="tooltip"][data-popper-placement^="left"] > [data-popper-arrow] {
  right: -5px;
}

[data-popover][role="tooltip"][data-popper-placement^="right"] > [data-popper-arrow] {
  left: -5px;
}

[type="text"], [type="email"], [type="url"], [type="password"], [type="number"], [type="date"], [type="datetime-local"], [type="month"], [type="search"], [type="tel"], [type="time"], [type="week"], [multiple], textarea, select {
  -webkit-appearance: none;
  appearance: none;
  --tw-shadow: 0 0 #0000;
  background-color: #fff;
  border-width: 1px;
  border-color: #6b7280;
  border-radius: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

[type="text"]:focus, [type="email"]:focus, [type="url"]:focus, [type="password"]:focus, [type="number"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="week"]:focus, [multiple]:focus, textarea:focus, select:focus {
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty, );
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #1c64f2;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #1c64f2;
  outline: 2px solid #0000;
}

input::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder, textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
}

select:not([size]) {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 6'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 1 4 4 4-4'/%3e %3c/svg%3e");
  background-position: right .75rem center;
  background-repeat: no-repeat;
  background-size: .75em .75em;
  padding-right: 2.5rem;
}

[multiple] {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  -webkit-print-color-adjust: unset;
  print-color-adjust: unset;
  padding-right: .75rem;
}

[type="checkbox"], [type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  color: #1c64f2;
  --tw-shadow: 0 0 #0000;
  background-color: #fff;
  background-origin: border-box;
  border-width: 1px;
  border-color: #6b7280;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  padding: 0;
  display: inline-block;
}

[type="checkbox"] {
  border-radius: 0;
}

[type="radio"] {
  border-radius: 100%;
}

[type="checkbox"]:focus, [type="radio"]:focus {
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty, );
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #1c64f2;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  outline: 2px solid #0000;
}

[type="checkbox"]:checked, [type="radio"]:checked, .dark [type="checkbox"]:checked, .dark [type="radio"]:checked {
  background-color: currentColor;
  background-position: center;
  background-repeat: no-repeat;
  background-size: .55em .55em;
  border-color: #0000;
}

[type="checkbox"]:checked {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3e %3c/svg%3e");
  background-repeat: no-repeat;
  background-size: .55em .55em;
}

[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  background-size: 1em 1em;
}

[type="checkbox"]:indeterminate {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  background-color: currentColor;
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3e %3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: .55em .55em;
  border-color: #0000;
}

[type="checkbox"]:indeterminate:hover, [type="checkbox"]:indeterminate:focus {
  background-color: currentColor;
  border-color: #0000;
}

[type="file"] {
  background: unset;
  border-color: inherit;
  font-size: unset;
  line-height: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
}

[type="file"]:focus {
  outline: 1px auto inherit;
}

input[type="file"]::file-selector-button {
  color: #fff;
  cursor: pointer;
  background: #1f2937;
  border: 0;
  margin-inline: -1rem 1rem;
  padding: .625rem 1rem .625rem 2rem;
  font-size: .875rem;
  font-weight: 500;
}

input[type="file"]::file-selector-button:hover {
  background: #374151;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #1c64f2;
  border: 0;
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
}

input[type="range"]:disabled::-webkit-slider-thumb {
  background: #9ca3af;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1px;
  --tw-ring-color: rgb(164 202 254 / var(--tw-ring-opacity));
  outline: 2px solid #0000;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #1c64f2;
  border: 0;
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
}

input[type="range"]:disabled::-moz-range-thumb {
  background: #9ca3af;
}

input[type="range"]::-moz-range-progress {
  background: #3f83f8;
}

input[type="range"]::-ms-fill-lower {
  background: #3f83f8;
}

*, :before, :after, ::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #3f83f880;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

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

.ml-\[15px\] {
  margin-left: 15px;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.w-full {
  width: 100%;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-\[500px\] {
  max-width: 500px;
}

.table-auto {
  table-layout: auto;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

.p-8 {
  padding: 2rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.pb-1 {
  padding-bottom: .25rem;
}

.pb-\[30px\] {
  padding-bottom: 30px;
}

.pt-\[120px\] {
  padding-top: 120px;
}

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

.mix-blend-difference {
  mix-blend-mode: difference;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  background: none;
}

a:active, a:hover {
  outline: 0;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong, .strong {
  font-weight: bold;
}

dfn, em, .em {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  margin: 0;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

q:before, q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

dl, menu, ol, ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

menu {
  padding: 0 0 0 40px;
}

ol, ul {
  padding: 0;
  list-style-type: none;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  border: 0;
  padding: 0;
}

button, input, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  vertical-align: top;
  overflow: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.image-replacement, .ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}

.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}

.clearfix:after, .cf:after {
  clear: both;
}

span.amp {
  font-style: italic;
  font-family: Baskerville, Goudy Old Style, Palatino, Book Antiqua, serif !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #18232e;
  font-family: Montserrat, sans-serif;
  position: relative;
}

body.menu-open {
  height: 100vh;
  overflow-y: hidden;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1276px;
  }
}

.overlay {
  opacity: .4;
  background-color: #181619;
  width: 100%;
  height: 100%;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay__gradient {
  opacity: 1;
  height: 400px;
}

.overlay__bottom {
  background: linear-gradient(to top, #181619, #0000);
  top: 40%;
}

.overlay__top {
  background: linear-gradient(to top, #0000, #181619);
  top: 0;
}

.overlay#site-overlay {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  background-color: #181619cc;
  width: 100%;
  height: 100%;
  transition: all .3s ease-in-out .2s;
  position: fixed;
  top: 0;
  left: 0;
}

.overlay#site-overlay.menu-open {
  z-index: 98;
  opacity: 1;
  visibility: visible;
}

.text-dropshadow {
  text-shadow: 0 6px 6px #0003;
}

.section {
  padding: 5rem 0;
}

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

img {
  max-width: 100%;
}

@media screen and (min-width: 992px) {
  .js-hidden {
    opacity: 0;
    transition: all .9s;
    transform: translateY(30px);
  }

  .js-hidden.js-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

a:focus {
  outline: 0;
}

.hidden {
  display: none;
}

.fade-in {
  transition: all .3s ease-in-out;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -1 !important;
}

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

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

.object-fit img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

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

.blue-bg {
  background-color: #182939;
}

.blue-bg h1, .blue-bg h2, .blue-bg h3, .blue-bg h4, .blue-bg h5, .blue-bg h6 {
  color: #777;
}

.blue-bg p, .blue-bg ul, .blue-bg li, .blue-bg i {
  color: #c5c5c5;
}

.blue-bg p a, .blue-bg ul a, .blue-bg li a, .blue-bg i a {
  color: inherit;
}

.dark-bg {
  background-color: #18232e;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6 {
  color: #777;
}

.dark-bg p, .dark-bg ul, .dark-bg li, .dark-bg i {
  color: #c5c5c5;
}

.dark-bg p a, .dark-bg ul a, .dark-bg li a, .dark-bg i a {
  color: inherit;
}

.play-btn {
  z-index: 1;
  outline: none;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-btn svg {
  z-index: 1;
  width: 100px;
  height: 100px;
  position: relative;
}

.play-btn .play-stroke {
  stroke-dashoffset: 0;
  stroke-dasharray: 300;
  stroke-width: 4px;
  transition: stroke-dashoffset 1s, opacity 1s;
}

.play-btn .play-icon {
  transform-origin: 50%;
  transition: transform .2s ease-out;
  transform: scale(.9);
}

.play-btn-auto-animate:before, .play-btn-auto-animate:after {
  content: "";
  opacity: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  animation: 1.8s linear infinite playButtonAutoAnimate;
  position: absolute;
  top: -35px;
  left: -35px;
}

.play-btn-auto-animate:before {
  animation-delay: .5s;
}

@keyframes playButtonAutoAnimate {
  0% {
    opacity: 1;
    transform: scale(.5);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.light-bg {
  background-color: #f1efe6;
}

.light-bg h1, .light-bg h2, .light-bg h3, .light-bg h4, .light-bg h5, .light-bg h6, .light-bg i {
  color: #181619;
}

.light-bg .button {
  color: #181619;
  border-color: #181619;
}

.section__title {
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 992px) {
  .section__title {
    margin-bottom: 4.0625rem;
  }
}

.section__title h2 {
  margin-bottom: .625rem;
}

.section__title p {
  font-size: 1.125rem;
}

.grey-bg {
  background-color: #c5c5c5;
}

.js-fade-in {
  opacity: 0;
  transition: all .9s;
}

.js-fade-in.is-intersecting {
  opacity: 1;
}

.js-fade-up {
  opacity: 0;
  transition: all .9s;
  transform: translateY(30px);
}

.js-fade-up.is-intersecting {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee-inverted {
  0% {
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    transform: translate3d(0%, 0, 0);
  }
}

a {
  border: none;
  outline: none;
  transition: all .3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: Baskervville, serif;
  line-height: 1.2;
}

h1, .h1 {
  margin-bottom: 1.5625rem;
  font-size: 1.875rem;
}

@media screen and (min-width: 992px) {
  h1, .h1 {
    margin-bottom: 1.875rem;
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 1440px) {
  h1, .h1 {
    font-size: 2.8125rem;
  }
}

@media screen and (min-width: 1920px) {
  h1, .h1 {
    margin-bottom: 2.5rem;
    font-size: 3.125rem;
  }
}

h2, .h2 {
  color: #777;
  margin-bottom: 1.5625rem;
  font-size: 1.875rem;
}

@media screen and (min-width: 992px) {
  h2, .h2 {
    margin-bottom: 1.875rem;
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 1440px) {
  h2, .h2 {
    font-size: 2.8125rem;
  }
}

@media screen and (min-width: 1920px) {
  h2, .h2 {
    font-size: 3.4375rem;
  }
}

p {
  line-height: 1.8;
}

.read-more {
  text-transform: uppercase;
  letter-spacing: .12rem;
  font-size: .875rem;
  font-weight: 700;
  transition: all .3s ease-in-out;
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 992px) {
  .read-more {
    font-size: 1rem;
  }
}

.read-more:after {
  content: "";
  background-color: #c5c5c5;
  height: 2px;
  transition: all .3s ease-in-out;
  display: block;
}

.button, .wpcf7-submit {
  cursor: pointer;
  color: #dbb589;
  letter-spacing: .04rem;
  border: 2px solid #dbb589;
  border-radius: 40px;
  outline: none;
  padding: .9375rem 1.25rem;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.button__solid, .wpcf7-submit__solid {
  background-color: #dbb589;
}

.button__solid span, .wpcf7-submit__solid span {
  color: #182939;
}

@media print {
  * {
    color: #000 !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
    background: none !important;
  }

  a, a:visited {
    text-decoration: underline;
    color: #444 !important;
  }

  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }

  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    page-break-inside: avoid;
    border: 1px solid #999;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: .5cm;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }

  .sidebar, .page-navigation, .wp-prev-next, .respond-form, nav {
    display: none;
  }
}

.header {
  z-index: 99;
  width: 100vw;
  padding: 2.5rem 0;
  transition: all .3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
}

.header .container {
  max-width: 1500px;
}

.header.scrolling {
  background-color: #182939;
}

.is-mobile .header.scrolling .header__logo img {
  max-width: 170px;
}

.header * {
  color: #c5c5c5;
}

.header ul li {
  display: inline-block;
}

.header__wrap {
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .header__wrap {
    justify-content: center;
  }
}

.header__logo img {
  width: 100%;
  max-width: 200px;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 768px) {
  .header__logo img {
    max-width: 240px;
  }
}

@media screen and (min-width: 1024px) {
  .home .header__logo {
    margin-right: 1.875rem;
  }
}

@media screen and (min-width: 1200px) {
  .home .header__logo {
    margin-right: 2.5rem;
  }
}

.header__mobile-contact {
  color: #182939;
  background-color: #dbb589;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  display: flex;
}

@media screen and (min-width: 600px) {
  .header__mobile-contact {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .header__mobile-contact {
    display: flex;
  }
}

@media screen and (min-width: 1500px) {
  .header__mobile-contact {
    display: none;
  }
}

.header__mobile-contact i {
  color: #182939;
}

@media screen and (max-width: 1500px) {
  .header .button {
    display: none;
  }
}

@media screen and (min-width: 1500px) {
  .header .button {
    position: absolute;
    right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .header .button {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .header .button {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #main-nav-left, #main-nav-right {
    display: none;
  }
}

.main-menu li {
  margin-right: 1.875rem;
}

@media screen and (min-width: 1200px) {
  .main-menu li {
    margin-right: 2.5rem;
  }
}

.main-menu li a {
  text-transform: uppercase;
  letter-spacing: .03rem;
  font-size: .875rem;
  font-weight: 600;
}

.hamburger {
  cursor: pointer;
  padding: .875rem;
  transition: transform .4s ease-in-out;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  top: 10px;
}

.hamburger span, .hamburger span:before, .hamburger span:after {
  cursor: pointer;
  content: "";
  background: #c5c5c5;
  width: 28px;
  height: 2px;
  transition: all .5s ease-in-out;
  display: block;
  position: absolute;
  left: 0;
}

.hamburger span:before {
  top: -8px;
  left: 0;
}

.hamburger span:after {
  bottom: -8px;
  left: 0;
}

.hamburger.active span {
  background-color: #0000;
}

.hamburger.active span:before, .hamburger.active span:after {
  top: 0;
}

.hamburger.active span:before {
  transform: rotate(45deg);
}

.hamburger.active span:after {
  transform: rotate(-45deg);
}

.footer {
  padding: 3.125rem 0;
}

@media screen and (min-width: 1440px) {
  .footer {
    padding: 4.6875rem 0;
  }
}

.footer * {
  color: #c5c5c5;
}

.footer__logo img {
  width: 100%;
  max-width: 170px;
}

@media screen and (min-width: 568px) {
  .footer__logo img {
    max-width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .footer .col-span-1 {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.legal-menu {
  margin: 1.5625rem 0;
}

@media screen and (min-width: 768px) {
  .legal-menu {
    margin: 0;
  }
}

.legal-menu li {
  margin-right: .625rem;
  display: inline-block;
}

.legal-menu li:after {
  content: "|";
  padding-left: .625rem;
}

.legal-menu li:last-child {
  margin-right: 0;
}

.legal-menu li:last-child:after {
  display: none;
}

.legal-menu li a {
  font-size: .875rem;
  font-weight: 600;
}

.social-menu {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .social-menu {
    margin: 0;
  }
}

.social-menu li {
  margin-right: 1.25rem;
  display: inline-block;
}

.social-menu li a {
  border: 2px solid;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  display: flex;
}

.quick-links {
  z-index: 98;
  transition: all .3s ease-in-out;
}

.quick-links.hidden-links {
  visibility: hidden;
  opacity: 0;
}

.quick-links__item {
  position: relative;
}

.quick-links__item i {
  margin-bottom: 10px;
  font-size: 20px;
}

.quick-links__item p {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .625rem;
  font-weight: 700;
}

.quick-links__item a {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: .9375rem;
  display: flex;
}

.is-desktop .quick-links__item a:hover {
  color: #dbb589;
}

input[type="text"], input[type="number"], input[type="email"], textarea {
  resize: none;
  color: #c5c5c5;
  background-color: #0000;
  border: 1px solid #c5c5c5;
  border-radius: 40px;
  outline: none;
  width: 100%;
  padding: .625rem 1.25rem;
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

@media (min-width: 768px) {
  input[type="text"], input[type="number"], input[type="email"], textarea {
    font-size: 1rem;
  }
}

input[type="text"]::-webkit-input-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

input[type="number"]::-webkit-input-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

input[type="email"]::-webkit-input-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

textarea::-webkit-input-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

@media (min-width: 768px) {
  input[type="text"]::-webkit-input-placeholder {
    font-size: 1rem;
  }

  input[type="number"]::-webkit-input-placeholder {
    font-size: 1rem;
  }

  input[type="email"]::-webkit-input-placeholder {
    font-size: 1rem;
  }

  textarea::-webkit-input-placeholder {
    font-size: 1rem;
  }
}

input[type="text"]:-moz-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

input[type="number"]:-moz-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

input[type="email"]:-moz-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

textarea:-moz-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

@media (min-width: 768px) {
  input[type="text"]:-moz-placeholder {
    font-size: 1rem;
  }

  input[type="number"]:-moz-placeholder {
    font-size: 1rem;
  }

  input[type="email"]:-moz-placeholder {
    font-size: 1rem;
  }

  textarea:-moz-placeholder {
    font-size: 1rem;
  }
}

input[type="text"]::-moz-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

input[type="number"]::-moz-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

input[type="email"]::-moz-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

textarea::-moz-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

@media (min-width: 768px) {
  input[type="text"]::-moz-placeholder {
    font-size: 1rem;
  }

  input[type="number"]::-moz-placeholder {
    font-size: 1rem;
  }

  input[type="email"]::-moz-placeholder {
    font-size: 1rem;
  }

  textarea::-moz-placeholder {
    font-size: 1rem;
  }
}

input[type="text"]:-ms-input-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

input[type="number"]:-ms-input-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

input[type="email"]:-ms-input-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

textarea:-ms-input-placeholder {
  font-family: Montserrat, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #c5c5c5 !important;
}

@media (min-width: 768px) {
  input[type="text"]:-ms-input-placeholder {
    font-size: 1rem;
  }

  input[type="number"]:-ms-input-placeholder {
    font-size: 1rem;
  }

  input[type="email"]:-ms-input-placeholder {
    font-size: 1rem;
  }

  textarea:-ms-input-placeholder {
    font-size: 1rem;
  }
}

label {
  color: #182939;
  text-transform: uppercase;
  margin-bottom: 2.1875rem;
  font-size: 1rem;
  display: block;
}

@media (max-width: 768px) {
  label {
    margin-bottom: 1.5625rem;
    font-size: .875rem;
  }
}

@media screen and (max-width: 1024px) {
  .gdpr-terms {
    margin-top: 1.875rem;
  }
}

.gdpr-terms input[type="checkbox"], .gdpr-terms input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}

.gdpr-terms .wpcf7-list-item {
  margin: 0;
}

.gdpr-terms .wpcf7-list-item label {
  text-transform: none;
  cursor: pointer;
  justify-content: space-between;
  padding: 0 0 0 1.25rem;
  display: flex;
  position: relative;
  top: 32px;
}

.gdpr-terms .wpcf7-list-item label:before, .gdpr-terms .wpcf7-list-item label:after {
  content: "";
  border-radius: 50%;
  transition: all .3s ease-in-out;
  display: inline-block;
  position: absolute;
}

.gdpr-terms .wpcf7-list-item label:before {
  background-color: #0000;
  border: 1px solid #dbb589;
  width: 20px;
  height: 20px;
  transition: all .3s ease-in-out;
  top: 6px;
  left: 0;
}

.gdpr-terms .wpcf7-list-item label:after {
  background-color: #0000;
  width: 10px;
  height: 10px;
  top: 11px;
  left: 5px;
}

.gdpr-terms .wpcf7-list-item label.checked:after {
  background-color: #dbb589;
}

@media (max-width: 768px) {
  .gdpr-terms .wpcf7-list-item label {
    top: 0;
  }
}

.gdpr-terms .wpcf7-list-item label p {
  font-size: .875rem;
}

.gdpr-terms .wpcf7-list-item label p a {
  color: #dbb589;
  font-weight: 700;
}

.wpcf7-submit {
  margin-top: 1.875rem;
}

.cf7-button-wrap {
  position: relative;
}

.cf7-button-wrap .wpcf7-spinner {
  position: absolute;
}

@media screen and (max-width: 768px) {
  .cf7-button-wrap {
    text-align: center;
  }
}

.wpcf7-response-output {
  color: #c5c5c5 !important;
}

.mobile-menu {
  opacity: 0;
  z-index: -1;
  background-color: #182939;
  width: 100%;
  max-width: 300px;
  padding: 2.5rem 1.875rem;
  transition: all .6s cubic-bezier(.77, 0, .175, 1) .4s;
  position: fixed;
  top: 100px;
  right: 20px;
  overflow: hidden auto;
}

.mobile-menu ul {
  margin: 0;
}

.mobile-menu ul li {
  color: #c5c5c5;
  display: block;
}

.mobile-menu ul li a {
  padding: .3125rem 0;
  font-family: Baskervville, serif;
  font-size: 1.25rem;
  display: block;
}

.mobile-menu.active {
  opacity: 1;
  z-index: 99;
}

.hero {
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
    min-height: 600px;
  }
}

.hero .overlay {
  z-index: 2;
}

.hero .grid {
  height: 100%;
}

.hero__text {
  color: #c5c5c5;
  z-index: 10;
  padding: 9.375rem 1.875rem 3.125rem;
  position: relative;
}

.hero__text h1 {
  color: #777;
}

.hero__text--inner {
  width: 100%;
  max-width: 750px;
}

.hero__text--content {
  font-size: 1.125rem;
}

@media screen and (min-width: 992px) {
  .hero__text--content {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 1920px) {
  .hero__text--content {
    font-size: 1.375rem;
  }
}

.hero__ctas {
  margin-top: 1.5625rem;
}

@media screen and (min-width: 992px) {
  .hero__ctas {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 1440px) {
  .hero__ctas {
    margin-top: 2.5rem;
  }
}

.hero__ctas .read-more {
  margin-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .hero__ctas .read-more {
    margin-right: 1.875rem;
  }
}

.hero__mask {
  z-index: 3;
  bottom: 0;
}

.hero__down {
  background-color: #18232e;
  border: 1px solid #c5c5c5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.hero__down a {
  z-index: 10;
  color: #dbb589;
  border: 1px solid #c5c5c5;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.hero__down a img {
  height: 50%;
  animation: 6s cubic-bezier(.5, 0, .1, 1) infinite scroll-down-animation;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__down a img:last-child {
  animation-delay: 3s;
}

@keyframes scroll-down-animation {
  0%, 20% {
    top: -50%;
  }

  40% {
    top: 50%;
  }

  60% {
    top: 50%;
  }

  80%, 100% {
    top: 130%;
  }
}

.table {
  text-align: left;
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
  font-family: Baskervville, serif;
}

.table thead {
  background-color: #f1efe6;
  border-bottom: 1px solid #dbb589;
}

.table thead th {
  border-right: 1px solid #dbb589;
  padding: .9375rem 1.25rem;
  font-size: 1.125rem;
}

.table thead th:last-of-type {
  border-right: none;
}

.table tbody tr {
  background-color: #f5f4f0;
  border-bottom: 1px solid #dbb589;
}

.table tbody tr:nth-of-type(2n) {
  background-color: #f1efe6;
}

.table tbody tr:last-child {
  border-bottom: none;
}

.table tbody td {
  border-right: 1px solid #dbb589;
  padding: .9375rem 1.25rem;
}

.table tbody td:last-of-type {
  border-right: none;
}

.testimonial__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.125rem;
  position: relative;
}

.testimonial__content:before {
  content: url("quote.b2c35fbf.svg");
  z-index: -1;
  width: 80px;
  position: absolute;
  top: 0;
  left: 15px;
}

@media screen and (min-width: 992px) {
  .testimonial__content:before {
    left: -20px;
  }
}

@media screen and (min-width: 1200px) {
  .testimonial__content:before {
    left: -80px;
  }
}

.testimonial__content * {
  color: #c5c5c5;
}

.testimonial__content--text p {
  margin-bottom: 1.5625rem;
  font-family: Baskervville, serif;
  font-size: 1.5625rem;
  font-style: italic;
  line-height: 1.3;
}

@media screen and (min-width: 992px) {
  .testimonial__content--text p {
    margin-bottom: 1.875rem;
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 1440px) {
  .testimonial__content--text p {
    font-size: 2.1875rem;
  }
}

@media screen and (min-width: 1920px) {
  .testimonial__content--text p {
    font-size: 2.5rem;
  }
}

.testimonial__content--name p {
  padding-left: 1.5625rem;
  line-height: 1;
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .testimonial__content--name p {
    text-transform: uppercase;
    font-size: 1.125rem;
  }
}

.testimonial__content--name p:before {
  content: "";
  background-color: #c5c5c5;
  width: 15px;
  height: 2px;
  margin-right: .5rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.testimonial .arrows-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.125rem;
  position: relative;
}

.testimonial .slider__arrows {
  left: unset;
  right: unset;
  margin: 1.875rem 0 0 auto;
  position: relative;
}

.icon-block {
  border-bottom: 1px solid #c5c5c5;
  padding: 1.875rem 1.25rem;
}

.icon-block:last-child {
  border-bottom: none;
}

@media screen and (min-width: 992px) {
  .icon-block {
    border-bottom: none;
    border-right: 1px solid #c5c5c5;
    padding: 3.125rem 1.875rem;
  }

  .icon-block:nth-of-type(3n+3) {
    border-right: none;
  }
}

.icon-block__icon {
  margin-right: .9375rem;
}

.icon-block__icon img {
  max-width: 65px;
}

@media screen and (min-width: 992px) {
  .icon-block__icon img {
    max-width: 85px;
  }
}

.icon-block h3 {
  color: #777;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
}

@media screen and (min-width: 992px) {
  .icon-block h3 {
    font-size: 1.5625rem;
  }
}

.icon-block__cta {
  margin-top: .3125rem;
}

.icon-block__cta a {
  text-transform: uppercase;
  color: #c5c5c5;
  font-size: .875rem;
}

.is-desktop .icon-block__cta a:hover {
  color: #dbb589;
}

.icon-blocks {
  border-bottom: 1px solid #c5c5c5;
}

.introduction__cta {
  margin-top: 1.875rem;
}

@media screen and (min-width: 992px) {
  .introduction__cta {
    margin-top: 2.5rem;
  }
}

.introduction__logo {
  margin-bottom: 7.5rem;
}

.introduction img {
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .introduction img {
    max-width: 80%;
  }
}

@media screen and (min-width: 992px) {
  .introduction img {
    max-width: 50%;
  }
}

.image-and-text-block {
  height: auto;
}

.image-and-text-block__text {
  justify-content: center;
  padding: 2.5rem 1.25rem 5rem;
}

.image-and-text-block__text--inner {
  width: 100%;
  max-width: 650px;
}

.image-and-text-block__cta {
  margin-top: 1.875rem;
}

@media screen and (min-width: 992px) {
  .image-and-text-block__cta {
    margin-top: 2.5rem;
  }
}

.image-and-text-block__image {
  position: relative;
  overflow: hidden;
}

.image-and-text-block__image img {
  -o-object-position: top;
  object-position: top;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-and-text-block ul {
  margin: 1.5625rem 0;
}

.image-and-text-block ul li {
  line-height: 2;
  list-style-type: disc;
  list-style-position: inside;
}

.image-and-text-block ul li::marker {
  color: #dbb589;
}

.image-and-text-block ol {
  margin: 1.5625rem 0;
}

.image-and-text-block ol li {
  line-height: 2;
  list-style-type: decimal;
  list-style-position: inside;
}

.image-and-text-block ol li::marker {
  color: #dbb589;
}

.slider__arrows {
  z-index: 3;
  justify-content: space-between;
  width: 130px;
  margin: 0 auto;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

@media screen and (min-width: 992px) {
  .slider__arrows {
    bottom: 30px;
  }
}

.slider__arrows--arrow {
  color: #dbb589;
  cursor: pointer;
  border: 1px solid #dbb589;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.pricing__table {
  opacity: 1;
  transition: opacity .5s ease-out;
}

.pricing__table.loading {
  opacity: 0;
}

.hidden {
  opacity: 0;
}

@keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.loader {
  text-align: center;
  width: 100%;
}

.ball-scale-multiple {
  width: 50px;
  position: relative;
  left: 50%;
  transform: translateY(-30px)translateX(-50%);
}

.ball-scale-multiple > div:nth-child(2) {
  animation-delay: -.4s;
}

.ball-scale-multiple > div:nth-child(3) {
  animation-delay: -.2s;
}

.ball-scale-multiple > div {
  opacity: 0;
  background-color: #182939;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  margin: 0;
  animation: 1s linear infinite ball-scale-multiple;
  position: absolute;
  top: 0;
  left: -30px;
}

.fade-effect {
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

.pricing__cats {
  border: 1px solid #dbb589;
}

.pricing__cats--item {
  cursor: pointer;
  color: #dbb589;
  border-bottom: 1px solid #dbb589;
  padding: .9375rem 1.25rem;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .pricing__cats--item {
    padding: 1.25rem;
  }
}

.pricing__cats--item.active {
  color: #f1efe6;
  pointer-events: none;
  background-color: #dbb589;
}

.pricing__cats--item:last-child {
  border-bottom: none;
}

.pricing__cats--item p {
  text-transform: uppercase;
  letter-spacing: .05rem;
  margin: 0;
  font-weight: 600;
  line-height: 1;
}

.pricing__cats--item span {
  font-size: .875rem;
  display: block;
}

.contact__form--inner {
  marign: 0 auto;
  width: 100%;
  max-width: 710px;
  padding: 2.5rem 1.875rem;
}

.google-map {
  height: 700px;
  position: relative;
}

.google-map .acf-map {
  height: 100%;
}

.google-map #map-canvas {
  width: 100%;
  height: 100%;
  position: relative;
}

.contact-bar {
  z-index: 9;
  margin-top: -3.125rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contact-bar {
    margin-top: -9.375rem;
  }
}

.contact-bar__icon {
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
}

@media screen and (min-width: 992px) {
  .contact-bar__icon {
    font-size: 2.1875rem;
  }
}

.contact-bar__item {
  text-align: center;
  padding: 2.5rem 1.875rem;
}

@media screen and (min-width: 992px) {
  .contact-bar__item {
    padding: 3.125rem;
  }
}

.contact-bar__item p {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.basic-content .container {
  max-width: 1000px;
}

.single .basic-content .container {
  max-width: 860px;
}

.basic-content p {
  margin-bottom: 1.5625rem;
}

.basic-content ul {
  list-style-type: disc;
}

.basic-content ul li {
  list-style-position: inside;
}

.basic-content ul li a {
  color: #dbb589;
}

.basic-content h2, .basic-content h3 {
  margin-bottom: .3125rem;
  font-size: 1.625rem;
}

@media screen and (min-width: 768px) {
  .basic-content h2, .basic-content h3 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .basic-content h2, .basic-content h3 {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 1440px) {
  .basic-content h2, .basic-content h3 {
    font-size: 2.5rem;
  }
}

.basic-content a:not(.button) {
  color: #dbb589;
  font-weight: 700;
  text-decoration: underline;
}

.basic-content a:not(.button):hover {
  color: #cf9c62;
}

.basic-content ul li, .basic-content ol li {
  line-height: 2;
}

.basic-content ul {
  list-style-type: disc;
  list-style-position: inside;
}

.basic-content ul li::marker {
  color: #182939;
}

.basic-content ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.basic-content ol li::marker {
  color: #182939;
}

.basic-content img {
  width: 100%;
  margin: 1.875rem 0;
}

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

  .md\:order-2 {
    order: 2;
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

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