@charset "UTF-8";
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

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

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

.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: f-spinner-dash 2s ease-in-out infinite;
}

@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: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.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, 0.2s) ease 0.1s both f-zoomInUp;
}

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

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.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, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

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

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.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, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.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, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.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, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

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

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

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

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
: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 0.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: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  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);
}

@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 {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.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;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.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 {
  position: absolute;
  z-index: 1;
}

.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 {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

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

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

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

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

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

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

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

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

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

.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 {
  overflow: hidden;
}

.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__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block;
}

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

.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 {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

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

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

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  filter: blur(0px);
}

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

.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;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.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;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

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

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

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

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

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

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.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: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --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: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.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 rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

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

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

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

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

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

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

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

.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, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.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, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.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 {
  max-width: 100%;
  flex-shrink: 1;
  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;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

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

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

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !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: 0.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 {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

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

.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 {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

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

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

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

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

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

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

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.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;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.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 {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.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)) * 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: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

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

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

.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;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.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(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.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: 0px !important;
}

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

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --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: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --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 rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  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;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.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: 0.15s ease-out both f-fadeOut;
}

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

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

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

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

.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 {
  height: 100%;
  opacity: 0.3;
}

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

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

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

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

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

/* stylelint-disable */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

@keyframes button-icon {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(15px);
    opacity: 0;
  }
  51% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
::-moz-selection {
  background-color: #0e1216;
  color: #FFFFFF;
}
::selection {
  background-color: #0e1216;
  color: #FFFFFF;
}

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

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body,
html {
  position: relative;
}

body {
  min-width: 320px;
  background-color: #FFFFFF;
  color: #0e1216;
  font-family: "Figtree", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}
body.overflow-hidden {
  overflow: hidden;
}

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

.top-padding-1 {
  padding-top: 0 !important;
  z-index: 1;
}

.bottom-padding-1 {
  padding-bottom: 0 !important;
  z-index: 1;
}

.top-margin-1 {
  margin-top: 0 !important;
  z-index: 1;
}

.bottom-margin-1 {
  margin-bottom: 0 !important;
  z-index: 1;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

svg * {
  vector-effect: non-scaling-stroke;
}

.feint-blue {
  background-color: #F8F8FF;
}
.feint-blue blockquote {
  background-color: #9DF4F3;
}

.dark-blue,
.navy-blue,
.col-2a4258 {
  background-color: #2a4258;
}

.light-blue {
  background-color: #9DF4F3;
}

.fefefe-light-grey,
.col-fefefe {
  background-color: #F2F2F2;
}
.fefefe-light-grey .quote-wrapper:after,
.col-fefefe .quote-wrapper:after {
  background-color: #F2F2F2;
}

.beige,
.col-f5eee9 {
  background-color: #e8e4e1;
}
.beige .quote-wrapper:after,
.col-f5eee9 .quote-wrapper:after {
  background-color: #e8e4e1;
}

.pale-cyan,
.col-9df4f3 {
  background-color: #9DF4F3;
}
.pale-cyan .quote-wrapper:after,
.col-9df4f3 .quote-wrapper:after {
  background-color: #9DF4F3;
}

.teal,
.col-4a7d8e {
  background-color: #4a7d8e;
}
.teal .button,
.col-4a7d8e .button {
  border: 1px solid #2a4258;
}
.teal .button::before,
.col-4a7d8e .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
  background-color: #2a4258;
}
.teal .button.secondary .button-label,
.col-4a7d8e .button.secondary .button-label {
  color: #FFFFFF;
}
.teal .quote-wrapper:after,
.col-4a7d8e .quote-wrapper:after {
  background-color: #4a7d8e;
}

.sky-blue,
.C3D9E7,
.col-c3d9e7 {
  background-color: #C3D9E7;
}
.sky-blue .quote-wrapper:after,
.C3D9E7 .quote-wrapper:after,
.col-c3d9e7 .quote-wrapper:after {
  background-color: #C3D9E7;
}

.dark-background {
  color: #FFFFFF;
}
.dark-background .button:hover::before {
  background-color: transparent;
}
.dark-background .button:hover .button-label {
  color: #FFFFFF;
}
.dark-background .button.secondary .button-label {
  color: #FFFFFF;
}

.pum-cta {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background-color: #4a7d8e !important;
  border: 1px solid #4a7d8e !important;
  padding: 10px 30px !important;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px !important;
  transition: background-color 0.2s;
}
.pum-cta::before {
  display: none;
}
.pum-cta:hover {
  border: 1px solid #4a7d8e !important;
  background-color: transparent !important;
  color: #4a7d8e !important;
  filter: unset !important;
}

.pum-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pum-close {
  font-size: 13px !important;
}

.button {
  overflow: hidden;
  border-radius: 9999px;
  display: flex;
  position: relative;
  padding: 10px 30px;
  border: 1px solid #4a7d8e;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
  background-color: #4a7d8e;
}
.button:hover::before {
  background-color: transparent;
}
.button:hover .button-label {
  color: #0e1216;
}
.button.secondary:before {
  background-color: transparent;
}
.button.secondary:hover::before {
  background-color: #4a7d8e;
}
.button.secondary:hover .button-label {
  color: #FFFFFF;
}
.button.secondary .button-label {
  color: #0e1216;
}
.button.dark-blue .secondary .button-label, .button.black .secondary .button-label {
  color: #FFFFFF;
}
.button.dark-blue.primary, .button.black.primary {
  border: 1px solid #FFFFFF;
}
.button.dark-blue.primary:hover, .button.black.primary:hover {
  border: 1px solid #2a4258;
}
.button.dark-blue.primary:hover::before, .button.black.primary:hover::before {
  background-color: transparent;
}
.button.dark-blue.primary:hover .button-label, .button.black.primary:hover .button-label {
  color: #FFFFFF;
}
.button.arrow {
  padding: 0 !important;
}

.button-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.text-button-outer {
  display: flex;
  gap: 10px;
}

.text-button {
  font-size: 12px;
  font-weight: 700;
  /* 12px */
  letter-spacing: 1.2px;
  position: relative;
  padding: 10px 0;
  display: flex;
  transition: all 0.6s;
  color: #0e1216;
}
.text-button:before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #4a7d8e;
  transition: all 0.3s;
}
.text-button:hover:before {
  width: 0;
  left: 0;
  background: #4a7d8e;
}
.text-button .button-label {
  color: #0e1216;
  font-weight: 700;
}

.text-centered-buttons {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .text-centered-buttons {
    flex-direction: row;
  }
}

.text-left-buttons {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .text-left-buttons {
    flex-direction: row;
    align-items: center;
  }
}

.text-right-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .text-right-buttons {
    flex-direction: row;
    align-items: center;
  }
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1470px;
  }
}

header {
  transition: all 1s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0) 0px 25px 20px -20px;
  z-index: 2000;
  padding: 0 30px;
}
header.scrolling-down:not(.open) {
  translate: 0 calc(-100% - 1px);
}
header.scroll {
  background-color: rgba(255, 255, 255, 0.99);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 25px 20px -20px;
  transition: all 1s ease;
}
header.scroll .header-logo svg {
  fill: #2a4258 !important;
}
header.scroll .header-content {
  height: 90px !important;
  transition: all 1s ease;
}
header.scroll .header-inner {
  border-bottom: 0px solid #FFFFFF;
}
header.scroll svg {
  transition: all 1s ease;
  width: 160px !important;
}
@media (min-width: 768px) {
  header.scroll svg {
    width: 180px !important;
  }
}
header.scroll svg path,
header.scroll svg polygon {
  transition: all 1s ease;
  fill: #2a4258 !important;
}
header.scroll .button {
  border: 1px solid #4a7d8e;
}
header.scroll .button:before {
  background-color: #4a7d8e;
}
header.scroll .button:hover::before {
  background-color: transparent;
}
header.scroll .button:hover .button-label {
  color: #4a7d8e;
}
header.scroll .navToggle span {
  background-color: #2a4258 !important;
}
header.scroll .header-nav li a {
  color: #2a4258;
}
header.scroll .header-nav li a:after {
  background-color: #2a4258;
}
header.scroll .header-inner .row .header-col .menu-wrap nav ul li a {
  transition: all 1s ease;
  color: #FFFFFF;
}
header.scroll .header-inner .row .header-col .menu-wrap nav ul li a:after {
  background-color: #FFFFFF;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 3px;
  background-color: #FFFFFF;
  transform-origin: center bottom;
  scale: 0 1;
  transition: scale 0.2s;
}
header.scroll .header-inner .row .header-col .menu-wrap nav ul li.current-menu-item a:after, header.scroll .header-inner .row .header-col .menu-wrap nav ul li:hover a:after {
  scale: 1 1;
}
header.scroll .header-inner .row .header-col .menu-wrap nav ul li:first-of-type {
  margin-left: 0px;
}
header.scroll .header-inner .row .header-col .menu-btn {
  border: 1px solid #FFFFFF;
  font-size: 16px;
  color: #2a4258;
  line-height: 1;
  padding: 12px 12px;
}
header.scroll .header-inner .row .header-col .menu-btn svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
header.scroll .header-inner .row .header-col .menu-btn:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
header.scroll .header-inner .row .header-col .menu-btn:hover svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.header {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
}
.header .button {
  display: none;
  border: 1px solid #2a4258;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .header .button {
    display: flex;
  }
}
.header .button::before {
  background-color: #2a4258;
}
.header .button:hover::before {
  background-color: transparent;
}
.header .button:hover .button-label {
  color: #FFFFFF;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 0px;
  border-bottom: 1px solid #FFFFFF;
  transition: all 1s ease;
}
@media (min-width: 768px) {
  .header-content {
    height: 120px;
  }
}

.header-logo {
  display: block;
}
.header-logo svg {
  display: block;
  width: 160px;
  height: auto;
}
@media (min-width: 992px) {
  .header-logo svg {
    width: 180px;
  }
}

.header-logo-mobile {
  display: block;
}
@media (min-width: 992px) {
  .header-logo-mobile {
    display: none;
  }
}

.header-logo-desktop {
  display: none;
}
@media (min-width: 992px) {
  .header-logo-desktop {
    display: block;
  }
}

.header-nav {
  display: none;
}
@media (min-width: 992px) {
  .header-nav {
    display: block;
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (min-width: 992px) {
  .header-nav ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (min-width: 1300px) {
  .header-nav ul {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (min-width: 1600px) {
  .header-nav ul {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.header-nav .sub-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: #FFFFFF;
  border: 3px solid #F2F2F2;
  border-radius: 12px;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
  z-index: 50;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.header-nav .sub-menu li a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  color: #2a4258;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s;
}
.header-nav .sub-menu li a:after {
  display: none;
}
.header-nav .sub-menu li a:hover {
  background: rgba(232, 228, 225, 0.8);
}
.header-nav .sub-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 15px;
  height: 15px;
  background: #FFFFFF;
  border-top: 3px solid #F2F2F2;
  border-left: 3px solid #F2F2F2;
  transform: translateX(-50%) rotate(45deg);
}
.header-nav .sub-menu li {
  width: 100%;
  text-align: left;
}
.header-nav li {
  transition: color 0.2s;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
.header-nav li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.header-nav li:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}
.header-nav li a {
  transition: all 1s ease;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9735rem + 0.1515vw, 1.125rem);
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  font-weight: 600;
}
.header-nav li a:after {
  background-color: #FFFFFF;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 3px;
  background-color: #FFFFFF;
  transform-origin: center bottom;
  scale: 0 1;
  transition: scale 0.2s;
  position: absolute;
  bottom: 0;
}
.header-nav li.current-menu-item a:after, .header-nav li:hover a:after {
  scale: 1 1;
}

.header-list-item,
.header-list-link {
  display: block;
}

.burger-menu {
  display: flex !important;
  --btn-text: variables.$teal;
  --btn-outline: variables.$teal;
}
@media (min-width: 992px) {
  .burger-menu {
    display: none !important;
  }
}
.burger-menu .icon {
  width: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scale: 0.67 1;
  transition: scale var(--td);
  transition-timing-function: ease-in-out;
}
.burger-menu .icon span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.burger-menu .label {
  display: none;
}
.burger-menu:hover .icon {
  scale: 1 1;
}

.header-toggle {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 35px;
  row-gap: 6px;
  aspect-ratio: 1/1;
}
@media (min-width: 992px) {
  .header-toggle {
    display: none;
  }
}
.header-toggle--active .header-toggle-line {
  transition: all 1s ease;
}
.header-toggle--active .header-toggle-line:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-toggle--active .header-toggle-line:nth-of-type(2) {
  display: none;
}
.header-toggle--active .header-toggle-line:nth-of-type(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4a7d8e;
  transition: all 1s ease;
}

.home header {
  background-color: rgba(255, 255, 255, 0.99);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 25px 20px -20px;
  transition: all 1s ease;
}
.home header .header-logo svg {
  fill: #2a4258 !important;
}
.home header .header-content {
  height: 90px !important;
  transition: all 1s ease;
}
.home header .header-inner {
  border-bottom: 0px solid #FFFFFF;
}
.home header svg {
  transition: all 1s ease;
}
.home header svg path,
.home header svg polygon {
  transition: all 1s ease;
  fill: #2a4258 !important;
}
.home header .button {
  border: 1px solid #4a7d8e;
}
.home header .button:before {
  background-color: #4a7d8e;
}
.home header .button:hover::before {
  background-color: transparent;
}
.home header .button:hover .button-label {
  color: #4a7d8e;
}
.home header .navToggle span {
  background-color: #2a4258 !important;
}
.home header .header-nav li a {
  color: #2a4258;
}
.home header .header-nav li a:after {
  background-color: #2a4258;
}
.home header .header-inner .row .header-col .menu-wrap nav ul li a {
  transition: all 1s ease;
  color: #FFFFFF;
}
.home header .header-inner .row .header-col .menu-wrap nav ul li a:after {
  background-color: #FFFFFF;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 3px;
  background-color: #FFFFFF;
  transform-origin: center bottom;
  scale: 0 1;
  transition: scale 0.2s;
}
.home header .header-inner .row .header-col .menu-wrap nav ul li.current-menu-item a:after, .home header .header-inner .row .header-col .menu-wrap nav ul li:hover a:after {
  scale: 1 1;
}
.home header .header-inner .row .header-col .menu-wrap nav ul li:first-of-type {
  margin-left: 0px;
}
.home header .header-inner .row .header-col .menu-btn {
  border: 1px solid #FFFFFF;
  font-size: 16px;
  color: #2a4258;
  line-height: 1;
  padding: 12px 12px;
}
.home header .header-inner .row .header-col .menu-btn svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.home header .header-inner .row .header-col .menu-btn:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.home header .header-inner .row .header-col .menu-btn:hover svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.menu > li.menu-item-has-children > a::before {
  font: var(--fa-font-solid);
  /* solid */
  content: "\f078";
  /* fa-chevron-down */
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.2s;
  display: inline-block;
  /* needed for transform */
}

/* rotate arrow up on hover */
.menu > li.menu-item-has-children:hover > a::before {
  transform: rotate(180deg);
}

.main-menu {
  position: fixed;
  background-color: #2a4258;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: none;
  translate: 101% 0;
  transition: translate 0.3s ease-out;
  padding: 20px 30px;
}
.main-menu[open] {
  pointer-events: all;
  translate: 0 0;
}
.main-menu .container {
  height: 100%;
}
.main-menu .main-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main-menu .header-logo-mobile svg {
  width: 160px;
  height: auto;
}
.main-menu .header-logo-mobile svg path,
.main-menu .header-logo-mobile svg polygon {
  fill: #9DF4F3 !important;
}
.main-menu .main-menu-top {
  padding-block: 15px;
  display: flex;
  align-items: flex-start;
}
.main-menu .top-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}
.main-menu .button-close {
  --btn-text: variables.$teal;
  --btn-bg: transparent;
  --btn-outline: variables.$teal;
  --btn-hover-text: variables.$white;
  --btn-hover-bg: variables.$teal;
  display: flex !important;
  gap: 12px;
}
.main-menu .button-close .label {
  text-box: trim-both cap alphabetic;
  text-transform: uppercase;
  color: #2a4258;
}
.main-menu .button-close:before {
  display: none;
}
.main-menu .button-close svg {
  height: 12px !important;
  width: auto !important;
}
.main-menu .mobile-nav {
  width: 100%;
}
.main-menu .mobile-nav ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  width: 100%;
}
.main-menu .mobile-nav ul li {
  width: 100%;
}
.main-menu .mobile-nav ul li a {
  color: #FFFFFF;
}
.main-menu .mobile-nav ul li a {
  display: flex;
  padding: 7px 0px;
  border-radius: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.15s;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.main-menu .mobile-nav ul li a:after, .main-menu .mobile-nav ul li a:before {
  display: none;
}
.main-menu .mobile-nav ul .sub-menu li a {
  color: rgba(255, 255, 255, 0.5);
}
.main-menu .mobile-nav ul .menu-item {
  position: relative;
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .main-menu .mobile-nav ul .menu-item {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .main-menu .mobile-nav ul .menu-item {
    font-size: 40px;
  }
}
.main-menu .mobile-nav ul .menu:has(.menu-item.open) > .menu-item:not(.open) {
  opacity: 0.3;
}
.main-menu .mobile-nav .menu-item-has-children {
  color: #4a7d8e;
}
.main-menu .mobile-nav .menu-item-has-children .arrow-button {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 26px;
  justify-content: center;
  width: 26px;
  transition: 0.5s;
}
.main-menu .mobile-nav .menu-item-has-children .arrow-button:after {
  content: "";
  background-image: url("../../img/icons/plus-dark-green.svg") !important;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 40%;
  width: 50%;
}
.main-menu .mobile-nav .menu-item-has-children a:after {
  content: unset;
}
.main-menu .mobile-nav .menu-item-has-children a .arrow-button:after {
  background-image: url("../../img/icons/plus-dark-green.svg") !important;
}
.main-menu .mobile-nav .menu-item-has-children.open > a .arrow-button {
  transform: rotate(-45deg);
}
.main-menu .mobile-nav .menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.1s;
}
.main-menu .mobile-nav .menu-item:not(.menu-item-has-children) > a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.main-menu .mobile-nav .menu-item:not(.menu-item-has-children) > a::after {
  content: "";
  width: 100%;
  position: absolute;
  transform: scaleX(0);
  margin-top: 10px;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.main-menu .mobile-nav .menu-item.defocus {
  opacity: 0.3;
}
.main-menu .mobile-nav .menu-item-has-children.active .sub-menu {
  opacity: 1;
  pointer-events: all;
}
.main-menu .mobile-nav .menu-item-has-children.active .sub-menu::before {
  transform: scaleX(1);
}
.main-menu .mobile-nav .sub-menu {
  display: none;
  padding: 14px 0;
  z-index: 9;
}
@media (min-width: 1600px) {
  .main-menu .mobile-nav .sub-menu {
    gap: 50px;
  }
}
.main-menu .mobile-nav .sub-menu .menu-item {
  box-sizing: content-box;
  white-space: nowrap;
}
.main-menu .mobile-nav .sub-menu li .arrow-button {
  display: none;
}
.main-menu .mobile-nav .sub-menu li a {
  font-size: 16px;
}
.main-menu .mobile-nav .expand-icon {
  display: none;
}
.main-menu .main-menu-middle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main-menu .main-menu-middle .current-menu-item a {
  color: #FFFFFF;
}
.main-menu .main-menu-middle a {
  transition: 0.25s all;
  color: inherit;
}
.main-menu .main-menu-middle a:hover {
  color: #FFFFFF;
}
.main-menu .main-menu-bottom {
  display: flex;
  align-items: flex-end;
  padding-block: 20px;
}
.main-menu .main-menu-bottom a {
  transition: 0.25s all;
  color: inherit;
}
.main-menu .main-menu-bottom a:hover {
  color: #4a7d8e;
}
.main-menu .policy-nav {
  width: 100%;
}
.main-menu .policy-nav .menu {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.footer {
  display: block;
  width: 100%;
  padding-top: 50px;
  background-color: #2a4258;
  position: relative;
}
@media (min-width: 992px) {
  .footer {
    padding-top: 60px;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .footer-content {
    row-gap: 15px;
  }
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  padding-right: 42%;
}
.footer-text p {
  margin: unset;
  color: #FFFFFF;
}

.footer-col h3 {
  color: #FFFFFF;
}
.footer-col.footer-right {
  width: unset;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .footer-col.footer-right {
    margin-left: auto;
  }
}
.footer-col.social {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .footer-top {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-top h2 {
  text-transform: uppercase;
}

.footer-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .footer-wrap {
    gap: 100px;
  }
}

.footer-logo {
  display: block;
}
.footer-logo svg {
  display: block;
  width: 130px;
  height: auto;
}
@media (min-width: 768px) {
  .footer-logo svg {
    width: 150px;
  }
}
@media (min-width: 1300px) {
  .footer-logo svg {
    width: 180px;
  }
}
.footer-logo svg path {
  fill: #FFFFFF;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (min-width: 992px) {
  .footer-nav {
    width: auto;
  }
}
.footer-nav .sub-menu {
  display: none;
}

.footer-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 10px;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .footer-list {
    row-gap: 15px;
    padding-top: 0;
  }
}
.footer-list:first-of-type {
  padding-top: 0;
}
.footer-list a:before {
  display: none !important;
}

.footer-list-item {
  display: block;
}

.footer-list-link {
  display: block;
  transition: color 0.2s;
  color: #FFFFFF;
  font-size: 14px;
}
.footer-list-link:hover {
  color: #4a7d8e;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .footer-bottom {
    padding: 0 15px;
  }
}
.footer-bottom > :last-child {
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  flex-direction: row;
}

.footer-social,
.footer-social-link {
  display: block;
}

.footer-social-link:hover svg path {
  fill: #FFFFFF;
}
.footer-social-link svg {
  display: block;
  width: auto;
  height: 25px;
}
.footer-social-link svg path {
  transition: fill 0.2s;
  fill: #4a7d8e;
}

.footer-contact-link {
  display: block;
  transition: color 0.2s;
  color: #FFFFFF;
  font-size: 14px;
}
.footer-contact-link:hover {
  color: #4a7d8e;
}

.footer-copyright {
  display: block;
  width: 100%;
  margin-top: 50px;
  padding: 20px 0;
  background-color: #4a7d8e;
}
@media (min-width: 992px) {
  .footer-copyright {
    margin-top: 60px;
  }
}

.footer-copyright-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .footer-copyright-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
  }
}

.footer-copyright-split {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-copyright-split {
    width: auto;
  }
}
.footer-copyright-split p {
  margin-top: 0;
  color: #FFFFFF;
  font-size: 14px;
}
.footer-copyright-split p a {
  transition: color 0.2s;
  color: inherit;
}
.footer-copyright-split p a:hover {
  color: #9DF4F3;
}

.footer-list a {
  color: #FFFFFF;
}

.banner-overlay:after {
  content: "";
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, #4a7d8e 44%, #9df4f3 100%);
}

.page-template-page-events .banner,
.page-template-page-member-directory .banner,
.page-template-page-news .banner {
  background-color: #F2F2F2;
}

.banner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  max-height: 300px;
}
@media (min-width: 768px) {
  .banner {
    aspect-ratio: 16/9;
    max-height: 450px;
  }
}
.banner--image .banner-image {
  display: block;
}
.banner--image .banner-slider {
  display: none;
}
.banner--slider .banner-slider {
  display: block;
}
.banner--slider .banner-image {
  display: none;
}
.banner.in-view .banner-image .background-image {
  transform: scale(1);
  opacity: 1;
}
.banner.in-view .banner-heading,
.banner.in-view .banner-copy {
  transform: translateY(0);
  opacity: 1;
}
.banner.in-view .banner-copy {
  transition-delay: 0.2s;
}

.banner-media {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 60px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .banner-media {
    border-bottom-left-radius: 80px;
  }
}
@media (min-width: 1300px) {
  .banner-media {
    border-bottom-left-radius: 90px;
  }
}
@media (min-width: 1600px) {
  .banner-media {
    border-bottom-left-radius: 120px;
  }
}

.banner-image {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-image .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  filter: grayscale(1);
  background-attachment: fixed;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-slider .swiper,
.banner-slider .swiper-wrapper {
  height: 100%;
}

.banner-slide {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

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

.banner-main {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .banner-main {
    padding: 0 0;
  }
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 15px;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .banner-content {
    row-gap: 30px;
  }
}
@media (min-width: 992px) {
  .banner-content {
    row-gap: 40px;
  }
}
@media (min-width: 1300px) {
  .banner-content {
    row-gap: 50px;
  }
}
.banner-content p {
  color: #FFFFFF;
  text-align: left;
  font-size: 16px;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 3s 0s, transform 3.4s 0s;
  transition-delay: 1s;
  font-weight: 300;
  text-wrap-style: balance;
}
@media (min-width: 992px) {
  .banner-content p {
    font-size: 20px;
  }
}

.banner-progress {
  display: block;
  width: 100%;
}

.banner-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.banner-list .swiper-pagination-bullet {
  overflow: hidden;
  border-radius: 9999px;
  display: block;
  width: 4px;
  height: 4px;
  transition: width 0.2s;
  background-color: #FFFFFF;
  cursor: pointer;
}
.banner-list .swiper-pagination-bullet-active {
  width: 40px;
}

.banner-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-wrap: pretty;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .banner-text {
    width: 83.3334%;
    row-gap: 30px;
  }
}
@media (min-width: 992px) {
  .banner-text {
    width: 75%;
  }
}
@media (min-width: 1300px) {
  .banner-text {
    width: 66.6667%;
  }
}
@media (min-width: 1600px) {
  .banner-text {
    width: 50%;
  }
}
.banner-text h1 {
  font-size: clamp(1.8rem, 0.5492rem + 2.5758vw, 2.2rem);
}

.banner-heading {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  color: #FFFFFF;
}

.banner-copy {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  color: #FFFFFF;
}

.banner-button {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  display: block;
}

.home-slider {
  width: 100%;
  margin-left: auto;
  overflow: hidden;
  height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  justify-content: center;
}
.home-slider:after {
  content: "";
  display: block;
  position: absolute;
  height: 80px;
  border-top-left-radius: 80px;
  width: 100%;
  z-index: 101;
  bottom: -3px;
  background-color: #FFFFFF;
  left: 0;
}
.home-slider .banner-overlay:after {
  background: rgba(34, 68, 68, 0.75);
}
.home-slider.in-view h1 {
  opacity: 1;
  transform: translateY(0);
}
.home-slider.in-view p {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 992px) {
  .home-slider {
    width: 100%;
    height: 100vh;
  }
}
.home-slider .text-wrapper {
  z-index: 100;
  width: 100%;
  height: auto;
  opacity: 1;
  z-index: 200;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}
.home-slider .text-wrapper .slick-list,
.home-slider .text-wrapper .slick-slider,
.home-slider .text-wrapper .slick-track {
  height: auto;
  padding: 0;
}
@media (min-width: 992px) {
  .home-slider .text-wrapper {
    padding: 0 50px;
  }
}
.home-slider .text-centered-buttons {
  opacity: 1;
  transform: translateX(0px);
  margin-top: 30px;
}
.home-slider .text-centered-buttons .button:hover .button-label {
  color: #FFFFFF;
}
.home-slider .annotation {
  position: absolute;
  bottom: 80px;
  left: 20px;
  right: 20px;
  text-align: left;
  height: auto;
  z-index: 2;
  width: 100%;
}
@media (min-width: 992px) {
  .home-slider .annotation {
    bottom: 100px;
    right: 50px;
    left: auto;
    text-align: right;
  }
}
.home-slider .annotation p {
  color: #FFFFFF;
  text-align: left;
  font-size: 12px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .home-slider .annotation p {
    font-size: 16px;
    text-align: right;
  }
}
.home-slider .slider-text-content {
  width: 100%;
  z-index: 100;
}
.home-slider .home-image-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-bottom: 0 !important;
}
.home-slider .home-image-slider .slick-list,
.home-slider .home-image-slider .slick-slider,
.home-slider .home-image-slider .slick-track {
  height: 100%;
  padding: 0;
}
.home-slider h2 {
  font-size: 30px;
  color: #FFFFFF;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 3s 0s, transform 3.4s 0s;
  font-size: 4.375rem;
  font-size: clamp(1.875rem, 1.3447rem + 3.0303vw, 4.375rem);
}
.home-slider h2 strong {
  font-weight: 600;
}
.home-slider p {
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 3s 0s, transform 3.4s 0s;
  transition-delay: 1s;
  font-weight: 300;
}
@media (min-width: 992px) {
  .home-slider p {
    font-size: 20px;
    max-width: 50%;
    margin: 0 auto;
  }
}
.home-slider .background-image {
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 30px;
  position: relative;
}
@media (min-width: 992px) {
  .home-slider .background-image {
    padding: 0 50px;
    height: 100%;
  }
}
.home-slider .home-slide {
  height: 100%;
  width: 100%;
}
.home-slider .slider-nav {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  bottom: 20px;
  right: 20px;
  z-index: 90;
}
@media (min-width: 992px) {
  .home-slider .slider-nav {
    padding: 0;
    bottom: 50px;
    right: 50px;
  }
}
.home-slider .next,
.home-slider .prev {
  border: 0;
  background-size: cover;
  background-repeat: no-repeat;
  height: 26px;
  width: 26px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .home-slider .next,
  .home-slider .prev {
    height: 36px;
    width: 36px;
  }
}
.home-slider .prev {
  background-image: url("../../img/icons/prev.svg");
  background-color: transparent;
  background-position: left center;
  text-indent: -99999px;
  padding: 0;
  margin-right: 10px;
}
.home-slider .next {
  background-image: url("../../img/icons/next.svg");
  background-color: transparent;
  background-position: left center;
  text-indent: -99999px;
  padding: 0;
}
.home-slider .slick-dots {
  position: absolute;
  bottom: 100px;
  display: flex;
  justify-content: center;
  left: 0;
  width: 100%;
  padding: 20px;
  list-style: none;
  text-align: center;
  z-index: 100;
}
@media (min-width: 992px) {
  .home-slider .slick-dots {
    text-align: left;
    padding: 50px;
    margin: 0;
  }
}
.home-slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
}
.home-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  border: 1px solid #FFFFFF;
}
.home-slider .slick-dots li button:focus,
.home-slider .slick-dots li button:hover {
  outline: none;
  background: #FFFFFF;
}
.home-slider .slick-dots li button:focus:before,
.home-slider .slick-dots li button:hover:before {
  opacity: 1;
}
.home-slider .slick-dots li button:before {
  display: none;
}
.home-slider .slick-dots li.slick-active button {
  opacity: 1;
  background: #FFFFFF;
}

.home-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.mouse {
  background: #a4a3a3 linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
  position: absolute;
  width: 32px;
  height: 58px;
  border-radius: 100px;
  background-size: 100% 200%;
  bottom: 20px;
  z-index: 200;
  display: none;
  animation: colorSlide 10s linear infinite, nudgeMouse 10s ease-out infinite;
}
.mouse:before, .mouse:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.mouse:before {
  width: 26px;
  height: 52px;
  background-color: #cccccc;
  border-radius: 100px;
}
.mouse:after {
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  animation: trackBallSlide 10s linear infinite;
}

@keyframes colorSlide {
  0% {
    background-position: 0% 100%;
  }
  20% {
    background-position: 0% 0%;
  }
  21% {
    background-color: #a4a3a3;
  }
  29.99% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  30% {
    background-color: #a4a3a3;
    background-position: 0% 100%;
  }
  50% {
    background-position: 0% 0%;
  }
  51% {
    background-color: #a4a3a3;
  }
  59% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  60% {
    background-color: #a4a3a3;
    background-position: 0% 100%;
  }
  80% {
    background-position: 0% 0%;
  }
  81% {
    background-color: #a4a3a3;
  }
  90%, 100% {
    background-color: #ffffff;
  }
}
@keyframes trackBallSlide {
  0% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  6% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  14% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  15%, 19% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  28%, 29.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  30% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  36% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  44% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  45%, 49% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  58%, 59.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  60% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  66% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  74% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  75%, 79% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  88%, 100% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
}
@keyframes nudgeMouse {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(8px);
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(8px);
  }
  90% {
    transform: translateY(0);
  }
}
@keyframes nudgeText {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(2px);
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(2px);
  }
  90% {
    transform: translateY(0);
  }
}
@keyframes colorText {
  21% {
    color: #a4a3a3;
  }
  30% {
    color: #ffffff;
  }
  51% {
    color: #a4a3a3;
  }
  60% {
    color: #ffffff;
  }
  81% {
    color: #a4a3a3;
  }
  90% {
    color: #ffffff;
  }
}
.video-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  overflow: hidden;
  height: 500px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  justify-content: center;
}
@media (min-width: 992px) {
  .video-banner {
    height: 90vh;
  }
}
.video-banner .header-logo-desktop {
  width: 300px;
  height: auto;
}
.video-banner .header-logo-desktop svg {
  width: 100%;
  height: auto;
}
.video-banner .header-logo-mobile {
  width: 200px;
  height: auto;
}
.video-banner .header-logo-mobile svg {
  width: 100%;
  height: auto;
}
.video-banner:after {
  content: "";
  display: block;
  position: absolute;
  height: 50px;
  border-top-left-radius: 50px;
  width: 100%;
  z-index: 101;
  bottom: -3px;
  background-color: #FFFFFF;
  left: 0;
}
@media (min-width: 992px) {
  .video-banner:after {
    border-top-left-radius: 80px;
    height: 80px;
  }
}
.video-banner .text-wrapper-video {
  z-index: 100;
  width: 100%;
  height: auto;
  opacity: 1;
  z-index: 200;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  .video-banner .text-wrapper-video {
    padding: 0 50px;
    max-width: 60vw;
  }
}
.video-banner .text-wrapper-video > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s, transform 2.4s;
}
.video-banner .text-wrapper-video > :nth-child(1) {
  transition-delay: 0s !important;
}
.video-banner .text-wrapper-video > :nth-child(2) {
  transition-delay: 0.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(3) {
  transition-delay: 1s !important;
}
.video-banner .text-wrapper-video > :nth-child(4) {
  transition-delay: 1.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(5) {
  transition-delay: 2s !important;
}
.video-banner .text-wrapper-video > :nth-child(6) {
  transition-delay: 2.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(7) {
  transition-delay: 3s !important;
}
.video-banner .text-wrapper-video > :nth-child(8) {
  transition-delay: 3.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(9) {
  transition-delay: 4s !important;
}
.video-banner .text-wrapper-video > :nth-child(10) {
  transition-delay: 4.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(11) {
  transition-delay: 5s !important;
}
.video-banner .text-wrapper-video > :nth-child(12) {
  transition-delay: 5.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(13) {
  transition-delay: 6s !important;
}
.video-banner .text-wrapper-video > :nth-child(14) {
  transition-delay: 6.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(15) {
  transition-delay: 7s !important;
}
.video-banner .text-wrapper-video > :nth-child(16) {
  transition-delay: 7.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(17) {
  transition-delay: 8s !important;
}
.video-banner .text-wrapper-video > :nth-child(18) {
  transition-delay: 8.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(19) {
  transition-delay: 9s !important;
}
.video-banner .text-wrapper-video > :nth-child(20) {
  transition-delay: 9.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(21) {
  transition-delay: 10s !important;
}
.video-banner .text-wrapper-video > :nth-child(22) {
  transition-delay: 10.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(23) {
  transition-delay: 11s !important;
}
.video-banner .text-wrapper-video > :nth-child(24) {
  transition-delay: 11.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(25) {
  transition-delay: 12s !important;
}
.video-banner .text-wrapper-video > :nth-child(26) {
  transition-delay: 12.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(27) {
  transition-delay: 13s !important;
}
.video-banner .text-wrapper-video > :nth-child(28) {
  transition-delay: 13.5s !important;
}
.video-banner .text-wrapper-video > :nth-child(29) {
  transition-delay: 14s !important;
}
.video-banner .text-wrapper-video.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
.video-banner h1 {
  font-size: 30px;
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
  text-wrap-style: balance;
  font-size: 2.2rem;
  font-size: clamp(1.8rem, 0.5492rem + 2.5758vw, 2.2rem);
}
.video-banner h1 strong {
  font-weight: 600;
}
@media (min-width: 992px) {
  .video-banner h1 {
    margin-bottom: 20px;
  }
}
.video-banner .text-centered-buttons {
  margin-top: 30px;
}
.video-banner p {
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 3s 0s, transform 3.4s 0s;
  transition-delay: 1s;
  font-weight: 300;
}
@media (min-width: 992px) {
  .video-banner p {
    font-size: 20px;
    max-width: 50%;
    margin: 0 auto;
  }
}
.video-banner.in-view h1 {
  opacity: 1;
  transform: translateY(0);
}
.video-banner.in-view p {
  opacity: 1;
  transform: translateY(0);
}
.video-banner .text-centered-buttons {
  margin-top: 30px;
}
.video-banner .text-centered-buttons .button:hover .button-label {
  color: #FFFFFF;
}
.video-banner .banner-overlay:after {
  background: rgba(34, 68, 68, 0);
}
.video-banner .video-wrapper {
  position: absolute;
  height: 100vh;
  height: 100svh;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.video-banner .video {
  margin: 0 !important;
}
.video-banner video {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (min-aspect-ratio: 1/1) {
  .video-banner .video-mobile {
    display: block;
  }
}
@media (max-aspect-ratio: 1/1) {
  .video-banner .video-wrapper {
    width: 100%;
    height: 500px;
  }
}
@media (max-aspect-ratio: 1/1) and (min-width: 992px) {
  .video-banner .video-wrapper {
    aspect-ratio: 1080/1350;
    max-height: 100svh;
    height: 90vh;
  }
}
@media (max-aspect-ratio: 1/1) {
  .video-banner .video-mobile {
    display: block;
  }
}

.text {
  display: block;
  width: 100%;
}
.text.in-view .text-heading,
.text.in-view .text-text {
  transform: translateY(0);
  opacity: 1;
}
.text.in-view .text-text {
  transition-delay: 0.2s;
}
.text.in-view .link {
  transform: translateX(0);
  opacity: 1;
}
.text.in-view .link:nth-child(1) {
  transition-delay: 0.4s;
}
.text.in-view .link:nth-child(2) {
  transition-delay: 0.6s;
}
.text.in-view .link:nth-child(3) {
  transition-delay: 0.8s;
}
.text.in-view .link:nth-child(4) {
  transition-delay: 1s;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  text-wrap: balance;
  row-gap: 25px;
}
@media (min-width: 768px) {
  .text-content {
    row-gap: 35px;
    width: 80%;
    margin: 0 auto;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .text-content {
    row-gap: 40px;
    width: 70%;
  }
}
@media (min-width: 1300px) {
  .text-content {
    row-gap: 45px;
    width: 60%;
  }
}
@media (min-width: 1600px) {
  .text-content {
    row-gap: 50px;
    width: 50%;
  }
}

.text-heading,
.text-text {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  display: block;
  width: 100%;
}
.text-heading > :first-child,
.text-text > :first-child {
  margin-top: 0;
}

.text-text,
.body-text {
  /* Header row */
  /* Body rows */
  /* Category column */
  /* Data column */
  /* Alternating row tint */
}
.text-text h2,
.text-text h3,
.text-text h4,
.text-text h5,
.text-text h6,
.text-text ul,
.text-text ol,
.body-text h2,
.body-text h3,
.body-text h4,
.body-text h5,
.body-text h6,
.body-text ul,
.body-text ol {
  margin-top: 1.5em;
}
.text-text p,
.body-text p {
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
}
.text-text p,
.body-text p {
  margin-top: 20px;
  font-weight: 300;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.text-text p strong,
.body-text p strong {
  font-weight: 600;
}
.text-text p a,
.body-text p a {
  color: #4a7d8e;
}
.text-text ul li,
.body-text ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
  margin-bottom: 5px;
}
.text-text ul li::before,
.body-text ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .text-text ul li::before,
  .body-text ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .text-text ul li::before,
  .body-text ul li::before {
    top: 10px;
  }
}
.text-text ul li ul,
.body-text ul li ul {
  margin-top: 0;
  margin-bottom: 15px;
}
.text-text ul li ul li::before,
.body-text ul li ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: transparent;
  border: 0.5px solid #4a7d8e;
}
@media (min-width: 768px) {
  .text-text ul li ul li::before,
  .body-text ul li ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .text-text ul li ul li::before,
  .body-text ul li ul li::before {
    top: 10px;
  }
}
.text-text .table-wrapper,
.body-text .table-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-block: 30px;
}
@media (min-width: 1300px) {
  .text-text .table-wrapper,
  .body-text .table-wrapper {
    max-width: 860px;
  }
}
.text-text .cookie-cat,
.body-text .cookie-cat {
  background: #eeeeee;
}
.text-text table,
.body-text table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  table-layout: fixed;
  position: relative;
}
@media (min-width: 992px) {
  .text-text table,
  .body-text table {
    table-layout: unset;
  }
}
.text-text tbody tr:first-child,
.body-text tbody tr:first-child {
  background: #eeeeee;
  position: relative;
}
@media (min-width: 992px) {
  .text-text tbody tr:first-child::after,
  .body-text tbody tr:first-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #cccccc;
  }
}
.text-text .wp-video,
.body-text .wp-video {
  margin-block: 30px;
  width: 70%;
  height: auto;
}
.text-text img,
.body-text img {
  width: 70%;
  height: auto;
}
.text-text tbody tr:first-child td,
.body-text tbody tr:first-child td {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0e1216;
  border-bottom: none;
}
@media (min-width: 768px) {
  .text-text tbody tr:first-child td,
  .body-text tbody tr:first-child td {
    font-size: 14px;
    padding: 18px 28px;
  }
}
.text-text tbody tr:not(:first-child),
.body-text tbody tr:not(:first-child) {
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.15s ease;
  position: relative;
}
.text-text tbody tr:not(:first-child):last-child,
.body-text tbody tr:not(:first-child):last-child {
  border-bottom: none;
}
.text-text tbody tr:not(:first-child) td,
.body-text tbody tr:not(:first-child) td {
  padding: 10px 12px;
  vertical-align: top;
  color: #1a1a1a;
  font-size: 11px;
  line-height: 1.65;
  font-weight: 300;
  transition: color 0.15s ease;
}
@media (min-width: 768px) {
  .text-text tbody tr:not(:first-child) td,
  .body-text tbody tr:not(:first-child) td {
    font-size: 14px;
    padding: 16px 28px;
  }
}
.text-text tbody tr:not(:first-child) td:first-child,
.body-text tbody tr:not(:first-child) td:first-child {
  font-weight: 500;
  font-size: 11px;
  color: #333333;
  border-right: 1px solid #e0e0e0;
  position: relative;
}
@media (min-width: 992px) {
  .text-text tbody tr:not(:first-child) td:first-child,
  .body-text tbody tr:not(:first-child) td:first-child {
    font-size: 13.5px;
    width: 220px;
    white-space: nowrap;
  }
}
.text-text tbody tr:not(:first-child) td:first-child::before,
.body-text tbody tr:not(:first-child) td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: #999999;
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}
.text-text tbody tr:not(:first-child) td:last-child,
.body-text tbody tr:not(:first-child) td:last-child {
  color: #666666;
  font-size: 11px;
}
@media (min-width: 992px) {
  .text-text tbody tr:not(:first-child) td:last-child,
  .body-text tbody tr:not(:first-child) td:last-child {
    font-size: 13.5px;
  }
}
.text-text tbody tr:nth-child(even):not(:first-child),
.body-text tbody tr:nth-child(even):not(:first-child) {
  background: #fafafa;
}
@media (max-width: 640px) {
  .text-text,
  .body-text {
    /* hide column headers */
    /* show the column name before each cell value */
  }
  .text-text .cookie-table caption,
  .body-text .cookie-table caption {
    font-size: 1rem;
  }
  .text-text .cookie-table thead,
  .body-text .cookie-table thead {
    display: none;
  }
  .text-text .cookie-table tr,
  .body-text .cookie-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #d9d9d9;
  }
  .text-text .cookie-table td,
  .body-text .cookie-table td {
    display: block;
    border: none;
    border-bottom: 1px solid #ededed;
    padding: 0.5rem 0.75rem;
  }
  .text-text .cookie-table td:last-child,
  .body-text .cookie-table td:last-child {
    border-bottom: none;
  }
  .text-text .cookie-table tbody tr:nth-child(even),
  .body-text .cookie-table tbody tr:nth-child(even) {
    background: transparent;
  }
  .text-text .cookie-table tbody tr:first-of-type,
  .body-text .cookie-table tbody tr:first-of-type {
    display: none;
  }
  .text-text .cookie-table td::before,
  .body-text .cookie-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.15rem;
  }
}
.text-text ol,
.body-text ol {
  counter-reset: ordered-list;
  margin-bottom: 15px;
}
.text-text ol li,
.body-text ol li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: 1rem;
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
  margin-bottom: 5px;
}
.text-text ol li::before,
.body-text ol li::before {
  content: counter(ordered-list) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  counter-increment: ordered-list;
  color: #4a7d8e;
}
.text-text a,
.body-text a {
  color: #4a7d8e;
}

.text-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 10px;
}
.text-links .link {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.link {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.link:hover .link-icon {
  background-color: #84C2C4;
}

.link-icon {
  overflow: hidden;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: background-color 0.2s;
  background-color: #4a7d8e;
}
.link-icon svg {
  display: block;
  width: 50%;
  height: auto;
}
.link-icon svg path {
  stroke: #FFFFFF;
}

.link-label {
  display: block;
  color: #0e1216;
  font-size: 14px;
  font-weight: 500;
}

.quick-links {
  padding: 60px 0;
  display: block;
  width: 100%;
  position: relative;
  padding-inline: 30px;
}
@media (min-width: 768px) {
  .quick-links {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .quick-links {
    padding: 100px 0;
  }
}
.quick-links .background-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.quick-links-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 0px;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .quick-links-content {
    row-gap: 20px;
  }
}
@media (min-width: 992px) {
  .quick-links-content {
    padding: 0 0px;
    flex-flow: row wrap;
    align-items: stretch;
    gap: 30px;
  }
}

.quick-link {
  border-radius: 30px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  transition: all 0.2s;
  overflow: hidden;
}
@media (min-width: 992px) {
  .quick-link {
    flex: 1;
    width: auto;
  }
}
.quick-link.in-view .quick-link-title,
.quick-link.in-view .quick-link-header .link {
  transform: translateY(0);
  opacity: 1;
}
.quick-link.in-view .quick-link-header .link {
  transition-delay: 0.2s;
}
.quick-link.in-view .quick-link-image {
  transform: scale(1);
  opacity: 1;
}
.quick-link .button:before {
  display: none;
}
.quick-link:hover {
  box-shadow: 0 6px 15px 0 rgba(14, 18, 22, 0.1);
}
.quick-link:hover .quick-link-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 1;
}
.quick-link:hover .button::before {
  background-color: #4a7d8e;
}
.quick-link:hover .button svg path {
  fill: #4a7d8e;
}
.quick-link:hover .button svg g path {
  stroke: #FFFFFF;
}
.quick-link:hover .button .button-label {
  color: #FFFFFF;
}

.quick-link-header {
  padding: 30px;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #FFFFFF;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .quick-link-header {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .quick-link-header {
    padding: 50px;
  }
}

.quick-link-title,
.quick-link-header .link {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.quick-link-title {
  color: #4a7d8e;
  font-weight: 300;
  position: relative;
  padding: 10px 80px 10px 0px;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .quick-link-title {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .quick-link-title {
    font-size: 24px;
  }
}
.quick-link-title:before {
  content: "";
  position: absolute;
  color: white;
  font-size: 24px;
  font-weight: 600;
  background-color: rgba(74, 125, 142, 0.2);
  z-index: 1;
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
  display: block;
  left: 0;
  height: 100%;
  left: -50px;
  width: 100%;
  top: 0;
}

.quick-link-media {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/8;
}

.quick-link-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
}

.location {
  margin: 60px 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .location {
    margin: 80px 0;
  }
}
@media (min-width: 992px) {
  .location {
    margin: 100px 0;
  }
}
.location.in-view .location-heading,
.location.in-view .location-address,
.location.in-view .location-email,
.location.in-view .location-block {
  transform: translateY(0);
  opacity: 1;
}
.location.in-view .location-address,
.location.in-view .location-email {
  transition-delay: 0.2s;
}
.location.in-view .location-block:nth-child(1) {
  transition-delay: 0.4s;
}
.location.in-view .location-block:nth-child(2) {
  transition-delay: 0.6s;
}
.location.in-view .location-block:nth-child(3) {
  transition-delay: 0.8s;
}
.location.in-view .location-block:nth-child(4) {
  transition-delay: 1s;
}
.location.in-view .location-map {
  transform: scale(1);
  opacity: 1;
}

.location-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .location-content {
    row-gap: 50px;
  }
}
@media (min-width: 992px) {
  .location-content {
    flex-direction: row;
    align-items: stretch;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}

.location-main,
.location-media {
  display: block;
  width: 100%;
}
@media (min-width: 992px) {
  .location-main,
  .location-media {
    flex: 1;
    width: auto;
  }
}

.location-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 30px;
  padding: 0 30px;
}
@media (min-width: 992px) {
  .location-main {
    padding: 30px 15px;
  }
}
@media (min-width: 1300px) {
  .location-main {
    padding: 50px 15px;
  }
}

.location-heading {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.25;
  color: #0e1216;
}
@media (min-width: 768px) {
  .location-heading {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .location-heading {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .location-heading {
    font-size: 43px;
  }
}

.location-address {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  color: #0e1216;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .location-address {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .location-address {
    font-size: 18px;
  }
}

.location-email {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  display: block;
}

.location-block {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  display: block;
}
.location-block p {
  margin-top: 0;
}
.location-block strong {
  font-weight: 500;
}
.location-block a {
  border-bottom: 1px solid #4a7d8e;
  color: #4a7d8e;
}

.location-media {
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1/1;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .location-media {
    aspect-ratio: 16/9;
  }
}
@media (min-width: 992px) {
  .location-media {
    aspect-ratio: unset;
  }
}

.location-map {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #4a7d8e;
}

.blocks {
  margin-top: 50px;
  margin-bottom: 50px;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .blocks {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  .blocks {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.block {
  display: block;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .block {
    display: flex;
    align-items: stretch;
    padding: 0 5px;
  }
}
.block:first-of-type {
  margin-top: 0;
}
@media (min-width: 992px) {
  .block:nth-of-type(3n - 2) .block-inner {
    border-top-right-radius: 0;
  }
}
@media (min-width: 992px) {
  .block:nth-of-type(3n - 2) .block-media-inner {
    border-top-right-radius: 80px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 992px) {
  .block:nth-of-type(3n - 1) .block-content {
    order: 1;
  }
}
.block:nth-of-type(3n - 1) .block-inner {
  background-color: #2a4258;
}
@media (min-width: 992px) {
  .block:nth-of-type(3n - 1) .block-inner {
    border-top-right-radius: 0;
    border-bottom-left-radius: 80px;
  }
}
@media (min-width: 992px) {
  .block:nth-of-type(3n - 1) .block-media {
    order: 0;
  }
}
@media (min-width: 992px) {
  .block:nth-of-type(3n - 1) .block-media-inner {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 0;
  }
}
.block:nth-of-type(3n) .block-inner {
  background-color: #2a4258;
}
@media (min-width: 992px) {
  .block:nth-of-type(3n) .block-inner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 80px;
  }
}
@media (min-width: 992px) {
  .block:nth-of-type(3n) .block-media-inner {
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 0;
  }
}
.block.in-view .block-heading,
.block.in-view .block-text {
  transform: translateY(0);
  opacity: 1;
}
.block.in-view .block-inner .button {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.block.in-view .block-text {
  transition-delay: 0.2s;
}
.block.in-view .block-image {
  transform: scale(1);
  opacity: 1;
}

.block-content {
  display: block;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .block-content {
    width: 45%;
    padding: 0 10px;
  }
}
@media (min-width: 1600px) {
  .block-content {
    width: 41.6667%;
  }
}

.block-inner {
  padding: 30px;
  display: block;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  background-color: #2a4258;
}
@media (min-width: 768px) {
  .block-inner {
    padding: 50px;
  }
}
@media (min-width: 1300px) {
  .block-inner {
    padding: 80px;
  }
}
.block-inner .button {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.block-heading,
.block-text {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  color: #FFFFFF;
}

.block-heading {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .block-heading {
    font-size: 27px;
  }
}
@media (min-width: 992px) {
  .block-heading {
    font-size: 30px;
  }
}
@media (min-width: 1300px) {
  .block-heading {
    font-size: 34px;
  }
}
@media (min-width: 1600px) {
  .block-heading {
    font-size: 40px;
  }
}

.block-text {
  margin-top: 20px;
}

.block-media {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .block-media {
    width: 55%;
    margin-top: 0;
    padding: 0 10px;
  }
}
@media (min-width: 1600px) {
  .block-media {
    width: 58.3334%;
  }
}

.block-media-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 80px;
}
@media (min-width: 992px) {
  .block-media-inner {
    height: 100%;
    padding-bottom: 0;
  }
}

.block-image {
  transform: scale(1.1);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}

.split-text {
  display: block;
  width: 100%;
}
.split-text.in-view .split-text-aside > *,
.split-text.in-view .split-text-main > * {
  transform: translateY(0);
  opacity: 1;
}
.split-text.in-view .split-text-aside > :nth-child(1),
.split-text.in-view .split-text-main > :nth-child(1) {
  transition-delay: 0s;
}
.split-text.in-view .split-text-aside > :nth-child(2),
.split-text.in-view .split-text-main > :nth-child(2) {
  transition-delay: 0.2s;
}
.split-text.in-view .split-text-aside > :nth-child(3),
.split-text.in-view .split-text-main > :nth-child(3) {
  transition-delay: 0.4s;
}
.split-text.in-view .split-text-aside > :nth-child(4),
.split-text.in-view .split-text-main > :nth-child(4) {
  transition-delay: 0.6s;
}
.split-text.in-view .split-text-aside > :nth-child(5),
.split-text.in-view .split-text-main > :nth-child(5) {
  transition-delay: 0.8s;
}
.split-text.in-view .split-text-aside > :nth-child(6),
.split-text.in-view .split-text-main > :nth-child(6) {
  transition-delay: 1s;
}
.split-text.in-view .split-text-aside > :nth-child(7),
.split-text.in-view .split-text-main > :nth-child(7) {
  transition-delay: 1.2s;
}
.split-text.in-view .split-text-aside > :nth-child(8),
.split-text.in-view .split-text-main > :nth-child(8) {
  transition-delay: 1.4s;
}
.split-text.in-view .split-text-aside > :nth-child(9),
.split-text.in-view .split-text-main > :nth-child(9) {
  transition-delay: 1.6s;
}

.split-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .split-text-content {
    flex-direction: row;
    width: 83.3334%;
    margin: 0 auto;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}

.split-text-aside,
.split-text-main {
  display: block;
  width: 100%;
  padding: 0 30px;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .split-text-aside,
  .split-text-main {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .split-text-aside,
  .split-text-main {
    flex: 1;
    width: auto;
  }
}
.split-text-aside > *,
.split-text-main > * {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.split-text-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 25px;
}

.split-text-title {
  font-size: 25px;
  font-weight: 300;
  line-height: 1.25;
  color: #0e1216;
}
@media (min-width: 768px) {
  .split-text-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .split-text-title {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .split-text-title {
    font-size: 43px;
  }
}

.split-text-buttons,
.split-text-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 10px;
}

.split-text-main > :first-child {
  margin-top: 0;
}
.split-text-main > :last-child {
  margin-bottom: 0;
}

#slider {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 30px 60px 30px;
  margin: 30px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  #slider {
    padding: 50px 0;
    margin: 40px 0;
  }
}
@media (min-width: 1300px) {
  #slider {
    padding: 80px 0;
  }
}
#slider .background-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}
#slider .slider-inner .box-intro {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  #slider .slider-inner .box-intro {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
  }
}
#slider .slider-inner .text-left-buttons {
  width: unset;
}
#slider .slider-inner .text-left-buttons .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
#slider .slider-inner .text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  #slider .slider-inner .text-wrapper {
    width: 70%;
  }
}
#slider .slider-inner .text-wrapper > :first-child {
  margin-top: 0;
}
#slider .slider-inner .text-wrapper h2 {
  text-wrap-style: balance;
  color: #0e1216;
}
#slider .slider-inner .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
#slider .slider-inner .text-wrapper p strong {
  font-weight: 600;
}
#slider .slider-inner .text-wrapper p a {
  color: #4a7d8e;
}
#slider .slider-inner.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
#slider .slider-inner.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
#slider .slider-inner.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
#slider .slider-inner .slider-wrap {
  position: relative;
}
#slider .slider-inner .slider-wrap .owl-stage-outer {
  overflow: visible !important;
}
#slider .slider-inner .slider-wrap .owl-carousel {
  text-align: center;
}
#slider .slider-inner .slider-wrap .owl-carousel .owl-item {
  position: relative;
}
#slider .slider-inner .slider-wrap .owl-carousel .owl-item.center .slide .slide-overlay {
  opacity: 0;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap {
  position: relative;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap.active .slide-image {
  opacity: 1;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap.active .caption-wrap {
  opacity: 1;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap.active .slide-count {
  display: block;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-count {
  display: none;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-image {
  background-position: center center;
  background-size: cover;
  height: 230px;
  transition: 0.25s all;
  overflow: hidden;
  opacity: 0.15;
  width: 100%;
  border-radius: 30px;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-image video {
  top: 0;
  left: 0;
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  overflow: hidden;
  opacity: 1;
  /* Optional: override parent opacity */
  pointer-events: none;
  /* Optional: prevent user interaction */
}
@media (min-width: 768px) {
  #slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-image video {
    height: 100%;
    aspect-ratio: 770/400;
  }
}
@media (min-width: 768px) {
  #slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-image {
    height: unset;
    aspect-ratio: 770/400;
    border-radius: 60px;
  }
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-count {
  margin-top: 20px;
  min-width: 70px;
  line-height: 1;
  font-weight: 600;
  position: relative;
  text-align: center;
  font-size: 9px;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-count span:first-of-type {
  padding-right: 5px;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-count span:last-of-type {
  padding-left: 5px;
}
@media (min-width: 768px) {
  #slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-count {
    right: 24px;
    bottom: 20px;
    margin-top: 0px;
    position: absolute;
    padding: 10px 12px;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.5);
  }
}
@media (min-width: 992px) {
  #slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-count {
    font-size: 12px;
  }
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .caption-wrap {
  opacity: 0;
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide-overlay {
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 9999;
  position: absolute;
  transition: 1s all;
  background-color: rgba(238, 238, 238, 0.85);
}
#slider .slider-inner .slider-wrap .owl-carousel .slide-wrap .slide {
  position: relative;
}
#slider .slider-inner .slider-wrap .slider-controls {
  display: block;
}
#slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel {
  padding: 10px 30px;
  border: 1px solid #4a7d8e;
  border-radius: 9999px;
  position: absolute;
  top: 245px;
  right: 0px;
  z-index: 99;
}
#slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel svg,
#slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel img {
  width: 35px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}
#slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel svg path,
#slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel svg line,
#slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel img path,
#slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel img line {
  transition: 0.25s all;
}
@media (min-width: 768px) {
  #slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel svg,
  #slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel img {
    width: 100px;
  }
}
@media (min-width: 992px) {
  #slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel svg,
  #slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel img {
    width: unset;
  }
}
@media (min-width: 768px) {
  #slider .slider-inner .slider-wrap .slider-controls .owl-next-carousel {
    right: 20px;
    translate: 0 -50%;
    top: calc(var(--slide-height) / 2);
  }
}
#slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel {
  scale: -1 1;
  padding: 10px 30px;
  border: 1px solid #4a7d8e;
  border-radius: 9999px;
  position: absolute;
  top: 245px;
  left: 0px;
  z-index: 99;
}
#slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel svg,
#slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel img {
  width: 35px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}
#slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel svg line,
#slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel img line {
  transition: 0.25s all;
}
@media (min-width: 768px) {
  #slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel svg,
  #slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel img {
    width: 100px;
  }
}
@media (min-width: 992px) {
  #slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel svg,
  #slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel img {
    width: unset;
  }
}
@media (min-width: 768px) {
  #slider .slider-inner .slider-wrap .slider-controls .owl-previous-carousel {
    left: 20px;
    bottom: unset;
    translate: 0 -50%;
    top: calc(var(--slide-height) / 2);
  }
}
#slider .slider-inner .slider-wrap .slider-controls a {
  display: inline-block;
  position: relative;
}
#slider .slider-inner .slider-wrap .owl-dots {
  margin: 35px 0px 0px 0px;
  justify-content: center;
  align-items: center;
  display: flex;
  display: none;
  gap: 12px;
}
#slider .slider-inner .slider-wrap .owl-dots button.owl-dot {
  height: 6px;
  width: 80px;
  border-radius: 4px;
  background-color: #FFFFFF;
}
#slider .slider-inner .slider-wrap .owl-dots button.owl-dot.active {
  background-color: #4a7d8e;
}
#slider .slider-inner .caption-wrap {
  max-width: 100%;
  text-align: center;
  padding: 30px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  background-color: rgba(255, 255, 255, 0.5);
}
#slider .slider-inner .caption-wrap .heading h3 {
  margin: 0px 0px 15px 0px;
}
#slider .slider-inner .caption-wrap .caption p:last-of-type {
  margin-bottom: 0px;
}
.downloads {
  margin: 60px 0;
  padding: 60px 0;
  display: block;
  width: 100%;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .downloads {
    margin: 80px 0;
  }
}
@media (min-width: 992px) {
  .downloads {
    margin: 100px 0;
  }
}
@media (min-width: 768px) {
  .downloads {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .downloads {
    padding: 100px 0;
  }
}
.downloads--light {
  padding: 0;
  background-color: #FFFFFF;
}
.downloads--light .downloads-title {
  color: #0e1216;
}
.downloads--light .download {
  border-color: #B2B2B2;
}
.downloads--light .download-label {
  color: #0e1216;
}
.downloads.in-view .downloads-title,
.downloads.in-view .download {
  transform: translateY(0);
  opacity: 1;
}
.downloads.in-view .download-item:nth-of-type(1) .download {
  transition-delay: 0.2s;
}
.downloads.in-view .download-item:nth-of-type(2) .download {
  transition-delay: 0.4s;
}
.downloads.in-view .download-item:nth-of-type(3) .download {
  transition-delay: 0.6s;
}
.downloads.in-view .download-item:nth-of-type(4) .download {
  transition-delay: 0.8s;
}
.downloads.in-view .download-item:nth-of-type(5) .download {
  transition-delay: 1s;
}
.downloads.in-view .download-item:nth-of-type(6) .download {
  transition-delay: 1.2s;
}
.downloads.in-view .download-item:nth-of-type(7) .download {
  transition-delay: 1.4s;
}
.downloads.in-view .download-item:nth-of-type(8) .download {
  transition-delay: 1.6s;
}
.downloads.in-view .download-item:nth-of-type(9) .download {
  transition-delay: 1.8s;
}

.downloads-heading {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  padding: 0 30px;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .downloads-heading {
    width: 80%;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .downloads-heading {
    width: 75%;
    margin-bottom: 50px;
  }
}
@media (min-width: 1300px) {
  .downloads-heading {
    width: 66.6667%;
  }
}
@media (min-width: 1600px) {
  .downloads-heading {
    width: 58.3334%;
  }
}

.downloads-title {
  font-size: 25px;
  font-weight: 300;
  line-height: 1.25;
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .downloads-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .downloads-title {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .downloads-title {
    font-size: 43px;
  }
}

.download-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .download-items {
    width: 80%;
    margin: 0 auto;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .download-items {
    row-gap: 20px;
    width: 75%;
  }
}
@media (min-width: 1300px) {
  .download-items {
    width: 66.6667%;
  }
}
@media (min-width: 1600px) {
  .download-items {
    width: 58.3334%;
  }
}

.download-item {
  display: block;
  width: 100%;
}

.download {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  overflow: hidden;
  border-radius: 3px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  border: 1px solid #FFFFFF;
}
@media (min-width: 768px) {
  .download {
    padding: 30px;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (min-width: 1300px) {
  .download {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
.download:hover::before {
  opacity: 1;
}
.download::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s;
  opacity: 0;
  background-color: rgba(14, 18, 22, 0.1);
}

.download-label,
.download-icon {
  position: relative;
  z-index: 2;
}

.download-label {
  font-size: 18px;
  line-height: 1.25;
  display: block;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .download-label {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .download-label {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .download-label {
    font-size: 24px;
  }
}

.download-icon {
  overflow: hidden;
  border-radius: 9999px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #4a7d8e;
}
.download-icon svg {
  display: block;
  width: 40%;
  height: auto;
}
.download-icon svg path {
  stroke: #FFFFFF;
}

.contact {
  margin: 60px 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .contact {
    margin: 80px 0;
  }
}
@media (min-width: 992px) {
  .contact {
    margin: 100px 0;
  }
}
.contact.in-view .contact-title {
  transform: translateY(0);
  opacity: 1;
}
.contact.in-view .contact-block > :nth-child(1) {
  transition-delay: 0.2s;
}
.contact.in-view .contact-block > :nth-child(2) {
  transition-delay: 0.4s;
}
.contact.in-view .contact-block > :nth-child(3) {
  transition-delay: 0.6s;
}
.contact.in-view .contact-block > :nth-child(4) {
  transition-delay: 0.8s;
}
.contact.in-view .contact-block > :nth-child(5) {
  transition-delay: 1s;
}
.contact.in-view .contact-block > :nth-child(6) {
  transition-delay: 1.2s;
}
.contact.in-view .contact-block > :nth-child(7) {
  transition-delay: 1.4s;
}
.contact.in-view .contact-block > :nth-child(8) {
  transition-delay: 1.6s;
}
.contact.in-view .contact-block > :nth-child(9) {
  transition-delay: 1.8s;
}
.contact.in-view .contact-block > * {
  transform: translateY(0);
  opacity: 1;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .contact-content {
    padding: 0 15px;
  }
}
@media (min-width: 1300px) {
  .contact-content {
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (min-width: 1600px) {
  .contact-content {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}

.contact-heading {
  display: block;
  width: 100%;
  text-wrap: balance;
}
@media (min-width: 1300px) {
  .contact-heading {
    flex: 0.8;
  }
}

.contact-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .contact-main {
    flex-direction: row;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (min-width: 992px) {
  .contact-main {
    width: 75%;
  }
}
@media (min-width: 1300px) {
  .contact-main {
    flex: 1;
    width: auto;
  }
}

.contact-title {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.25;
  color: #0e1216;
}
@media (min-width: 768px) {
  .contact-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .contact-title {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .contact-title {
    font-size: 43px;
  }
}

.contact-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 20px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-wrap: balance;
  row-gap: 15px;
}
.contact-block > * {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.contact-block address,
.contact-block p {
  color: #666666;
}
.contact-block p {
  margin-top: 0;
}
.contact-block a {
  transition: border-color 0.2s, color 0.2s;
  border-bottom: 1px solid #4a7d8e;
  color: #4a7d8e;
}
.contact-block a:hover {
  border-color: #0e1216;
  color: #0e1216;
}

.contact-block-title {
  color: #0e1216;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .contact-block-title {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .contact-block-title {
    font-size: 18px;
  }
}

.video {
  margin: 60px 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .video {
    margin: 80px 0;
  }
}
@media (min-width: 992px) {
  .video {
    margin: 100px 0;
  }
}
.video.in-view .video-holder {
  transform: translateY(0);
  opacity: 1;
}

.video-content {
  display: block;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .video-content {
    padding: 0 15px;
  }
}

.video-holder {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  overflow: hidden;
  border-radius: 80px;
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

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

.image-grid {
  margin: 60px 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .image-grid {
    margin: 80px 0;
  }
}
@media (min-width: 992px) {
  .image-grid {
    margin: 100px 0;
  }
}

.image-grid-groups {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 15px;
  row-gap: 15px;
}
@media (min-width: 992px) {
  .image-grid-groups {
    row-gap: 30px;
  }
}

.image-grid-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}
@media (min-width: 992px) {
  .image-grid-group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .image-grid-group:nth-of-type(even) .image-grid-item:nth-of-type(1) {
    grid-column: span 3/span 3;
    grid-column-start: 3;
    grid-row: span 2/span 2;
    grid-row-start: 1;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .image-grid-group:nth-of-type(even) .image-grid-item:nth-of-type(2) {
    grid-column: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 1;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .image-grid-group:nth-of-type(even) .image-grid-item:nth-of-type(3) {
    grid-column: span 2/span 2;
    grid-row-start: 2;
  }
}
.image-grid-group.in-view .image-grid-item:nth-of-type(1) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0s;
}
.image-grid-group.in-view .image-grid-item:nth-of-type(2) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.2s;
}
.image-grid-group.in-view .image-grid-item:nth-of-type(3) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.4s;
}
.image-grid-group.in-view .image-grid-item:nth-of-type(4) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.6s;
}
.image-grid-group.in-view .image-grid-item:nth-of-type(5) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.8s;
}
.image-grid-group.in-view .image-grid-item:nth-of-type(6) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 1s;
}
.image-grid-group.in-view .image-grid-item:nth-of-type(7) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 1.2s;
}
.image-grid-group.in-view .image-grid-item:nth-of-type(8) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 1.4s;
}
.image-grid-group.in-view .image-grid-item:nth-of-type(9) .image-grid-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: 1.6s;
}

.image-grid-item {
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.image-grid-item:nth-of-type(1) {
  width: 100%;
  aspect-ratio: 4/3;
}
@media (min-width: 992px) {
  .image-grid-item:nth-of-type(1) {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    width: auto;
    aspect-ratio: 1/1;
  }
}
.image-grid-item:nth-of-type(2) {
  display: block;
  flex: 1;
  aspect-ratio: 16/9;
}
@media (min-width: 992px) {
  .image-grid-item:nth-of-type(2) {
    grid-column: span 2/span 2;
    grid-column-start: 4;
    flex: unset;
    aspect-ratio: unset;
  }
}
.image-grid-item:nth-of-type(3) {
  display: block;
  flex: 1;
  aspect-ratio: 16/9;
}
@media (min-width: 992px) {
  .image-grid-item:nth-of-type(3) {
    grid-column: span 2/span 2;
    grid-column-start: 4;
    grid-row-start: 2;
    flex: unset;
    aspect-ratio: unset;
  }
}

.image-grid-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.biography {
  margin: 60px 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .biography {
    margin: 80px 0;
  }
}
@media (min-width: 992px) {
  .biography {
    margin: 100px 0;
  }
}
.biography.in-view .biography-image {
  transform: scale(1);
  opacity: 1;
}
.biography.in-view .biography-name,
.biography.in-view .biography-position {
  transform: translateY(0);
  opacity: 1;
}
.biography.in-view .biography-name {
  transition-delay: 0.2s;
}
.biography.in-view .biography-position {
  transition-delay: 0.4s;
}
.biography.in-view .biography-main > * {
  transform: translateY(0);
  opacity: 1;
}
.biography.in-view .biography-main > :nth-child(1) {
  transition-delay: 0.6s;
}
.biography.in-view .biography-main > :nth-child(2) {
  transition-delay: 0.7s;
}
.biography.in-view .biography-main > :nth-child(3) {
  transition-delay: 0.8s;
}
.biography.in-view .biography-main > :nth-child(4) {
  transition-delay: 0.9s;
}
.biography.in-view .biography-main > :nth-child(5) {
  transition-delay: 1s;
}
.biography.in-view .biography-main > :nth-child(6) {
  transition-delay: 1.1s;
}
.biography.in-view .biography-main > :nth-child(7) {
  transition-delay: 1.2s;
}
.biography.in-view .biography-main > :nth-child(8) {
  transition-delay: 1.3s;
}
.biography.in-view .biography-main > :nth-child(9) {
  transition-delay: 1.4s;
}

.biography-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .biography-content {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .biography-content {
    flex-direction: row;
    justify-content: space-between;
    width: 83.3334%;
    margin-right: auto;
    margin-left: auto;
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}

.biography-aside {
  display: block;
  width: 60%;
}
@media (min-width: 768px) {
  .biography-aside {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .biography-aside {
    position: sticky;
    top: 161px;
    width: 33.3334%;
  }
}
.biography-aside > :first-child {
  margin-top: 0;
}

.biography-media {
  overflow: hidden;
  border-radius: 5px;
  display: block;
  position: relative;
  width: 100%;
  background-color: #F2F2F2;
  aspect-ratio: 1/1;
}

.biography-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.biography-name,
.biography-position {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.biography-name {
  font-size: 18px;
  line-height: 1.25;
  margin-top: 30px;
  color: #0e1216;
}
@media (min-width: 768px) {
  .biography-name {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .biography-name {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .biography-name {
    font-size: 24px;
  }
}

.biography-position {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
}

.biography-main {
  display: block;
  width: 100%;
  text-wrap: pretty;
}
@media (min-width: 992px) {
  .biography-main {
    flex: 1;
    width: auto;
  }
}
.biography-main > :first-child {
  margin-top: 0;
}
.biography-main > * {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.tabs {
  margin: 60px 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .tabs {
    margin: 80px 0;
  }
}
@media (min-width: 992px) {
  .tabs {
    margin: 100px 0;
  }
}
.tabs.in-view .tab {
  transform: translateY(0);
  opacity: 1;
}
.tabs.in-view .tab:nth-of-type(1) {
  transition-delay: 0s;
}
.tabs.in-view .tab:nth-of-type(2) {
  transition-delay: 0.2s;
}
.tabs.in-view .tab:nth-of-type(3) {
  transition-delay: 0.4s;
}
.tabs.in-view .tab:nth-of-type(4) {
  transition-delay: 0.6s;
}
.tabs.in-view .tab:nth-of-type(5) {
  transition-delay: 0.8s;
}
.tabs.in-view .tab:nth-of-type(6) {
  transition-delay: 1s;
}
.tabs.in-view .tab:nth-of-type(7) {
  transition-delay: 1.2s;
}
.tabs.in-view .tab:nth-of-type(8) {
  transition-delay: 1.4s;
}
.tabs.in-view .tab:nth-of-type(9) {
  transition-delay: 1.6s;
}

.tabs-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .tabs-wrap {
    row-gap: 50px;
  }
}

.tabs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .tabs-list {
    padding: 0 15px;
  }
}

.tab {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  display: block;
  flex-shrink: 0;
}
.tab--active .tab-link::before {
  background-color: #4a7d8e;
}
.tab--active .tab-label {
  color: #FFFFFF;
}

.tab-link {
  overflow: hidden;
  border-radius: 3px;
  display: block;
  position: relative;
  padding: 10px 30px;
}
@media (min-width: 768px) {
  .tab-link {
    padding: 10px 60px;
  }
}
.tab-link:hover::before {
  background-color: #4a7d8e;
}
.tab-link:hover .tab-label {
  color: #FFFFFF;
}
.tab-link::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
  background-color: #F2F2F2;
}

.tab-label {
  display: block;
  position: relative;
  z-index: 2;
  transition: color 0.2s;
  color: #0e1216;
  font-size: 14px;
  text-transform: uppercase;
}

.tabs-content {
  display: block;
  width: 100%;
}

.tab-item {
  display: none;
}
.tab-item--active {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .tab-item--active {
    row-gap: 50px;
  }
}
.tab-item > * {
  margin: 0 !important;
}
.tab-item > * .container {
  width: 100%;
}
.tab-item > * .split-text-content {
  width: 100%;
}
@media (min-width: 992px) {
  .tab-item > * .split-text-content {
    justify-content: space-between;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 992px) {
  .tab-item > * .split-text-aside {
    flex: unset;
    width: 33.3334%;
  }
}
@media (min-width: 992px) {
  .tab-item > * .split-text-main {
    flex: unset;
    width: 50%;
  }
}

.membership-table {
  width: 100%;
  padding: 30px 30px;
  position: relative;
}
@media (min-width: 768px) {
  .membership-table {
    padding: 50px 0;
  }
}
@media (min-width: 1300px) {
  .membership-table {
    padding: 80px 0;
  }
}
.membership-table .pricing-plan {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background-color: #fefefe;
}
@media (min-width: 992px) {
  .membership-table .pricing-plan {
    border-radius: 20px 20px 0 0;
  }
}
.membership-table .pricing-plan thead tr {
  background-color: #4a7d8e;
  color: #ffffff;
  text-align: left;
}
.membership-table .pricing-plan thead tr th {
  padding: 20px 15px;
  vertical-align: top;
}
@media (min-width: 992px) {
  .membership-table .pricing-plan thead tr th {
    padding: 60px 30px;
  }
}
.membership-table .pricing-plan .plan-title {
  text-align: left;
}
.membership-table .pricing-plan .head-column {
  border-left: 1px solid #2a4258;
}
.membership-table .pricing-plan .foot-column {
  border-left: 1px solid #4a7d8e;
}
.membership-table .pricing-plan th,
.membership-table .pricing-plan td {
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .membership-table .pricing-plan th,
  .membership-table .pricing-plan td {
    padding: 12px 30px;
    text-align: center;
  }
}
.membership-table .pricing-plan th.font-weight-normal {
  padding: 12px 15px 12px 15px;
}
@media (min-width: 992px) {
  .membership-table .pricing-plan th.font-weight-normal {
    padding: 12px 40px 12px 30px;
  }
}
.membership-table .pricing-plan td {
  text-align: left;
}
.membership-table .pricing-plan tbody tr {
  border-bottom: 1px solid #dddddd;
}
.membership-table .pricing-plan tbody tr:hover td {
  /* need td */
}
.membership-table .pricing-plan tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
.membership-table .pricing-plan .fa-chisel {
  font-size: 16px;
}
.membership-table .pricing-plan .plan-check {
  border-left: 1px solid #4a7d8e;
}
.membership-table .pricing-plan .plan-check-inner {
  display: flex;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #2a4258;
}
.membership-table .pricing-plan tfoot tr {
  border-top: 2px solid #4a7d8e;
  border-bottom: 2px solid #4a7d8e;
}
.membership-table .pricing-plan .footer-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  width: 100%;
}
.membership-table .pricing-plan .footer-col .price {
  color: #2a4258;
  font-weight: 800;
}
.membership-table .box-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}
.membership-table .text-left-buttons {
  width: unset;
}
.membership-table .text-left-buttons .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.membership-table .text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .membership-table .text-wrapper {
    width: 50%;
  }
}
.membership-table .text-wrapper > :first-child {
  margin-top: 0;
}
.membership-table .text-wrapper h2 {
  text-wrap-style: balance;
  color: #0e1216;
}
.membership-table .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.membership-table .text-wrapper p strong {
  font-weight: 600;
}
.membership-table .text-wrapper p a {
  color: #4a7d8e;
}
.membership-table.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.membership-table.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.membership-table.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.membership-table.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.membership-table.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.membership-table.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.membership-table.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.membership-table.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.membership-table.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.membership-table.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.membership-table.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}

.membership-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .membership-mobile {
    display: none;
  }
}
.membership-mobile .acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.membership-mobile .acc-item.open > .acc-body {
  max-height: 2000px;
}
.membership-mobile .faq-content {
  padding: 1rem 1.5rem;
}
.membership-mobile .faq-item {
  border: 1px solid #4a7d8e;
  border-radius: 8px;
  overflow: hidden;
}
.membership-mobile .faq-item-text {
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.membership-mobile button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #2a4258;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.membership-mobile button:hover {
  cursor: pointer;
  color: #4a7d8e;
}
.membership-mobile button:hover::after {
  cursor: pointer;
  color: #4a7d8e;
}
.membership-mobile button:focus {
  cursor: pointer;
  color: #2a4258;
}
.membership-mobile button:focus::after {
  cursor: pointer;
  color: #2a4258;
}
.membership-mobile button .faq-heading-text {
  padding: 1em 1.5em 1em 0;
}
.membership-mobile button .faq-icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.membership-mobile button .faq-icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.membership-mobile button .faq-icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.membership-mobile button[aria-expanded=true] {
  color: #2a4258;
  background: rgba(74, 125, 142, 0.3);
}
.membership-mobile button[aria-expanded=true] .faq-icon::after {
  width: 0;
}
.membership-mobile button[aria-expanded=true] + .faq-item-text {
  opacity: 1;
  max-height: 12em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.membership-mobile .faq-item-text {
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.plan-outer.mobile {
  display: block;
}
@media (min-width: 992px) {
  .plan-outer.mobile {
    display: none;
  }
}
.plan-outer.mobile .description {
  padding: 15px;
  color: #2a4258;
}
.plan-outer.desktop {
  display: none;
}
@media (min-width: 992px) {
  .plan-outer.desktop {
    display: block;
  }
}

.dm-pricing-service-name i {
  cursor: pointer;
}

.dm-pricing-checkmark i {
  font-size: 2.4rem;
}

.d-block {
  display: flex;
  flex-direction: column;
}

.dm-pricing-service-name {
  text-align: left;
  display: flex;
  flex-direction: column;
  font-weight: 700;
}

.accordion {
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  color: #2a4258;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s linear;
}

.accordion:after {
  font-family: FontAwesome;
  content: "\f13a";
  font-family: "fontawesome";
  font-size: 18px;
  float: right;
  color: #2a4258;
}

.accordion.is-open:after {
  content: "\f139";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  font-weight: 300;
}
@media (min-width: 992px) {
  .accordion-content {
    padding: 0 100px 0 0;
  }
}

.split-list {
  margin: 60px 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .split-list {
    margin: 80px 0;
  }
}
@media (min-width: 992px) {
  .split-list {
    margin: 100px 0;
  }
}

.split-list-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .split-list-list {
    padding: 0 15px;
  }
}

.split-list-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-top: 30px;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .split-list-item {
    flex-direction: row;
    justify-content: space-between;
  }
}
.split-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 2s;
  background-color: #4a7d8e;
}
.split-list-item.in-view::before {
  width: 100%;
}
.split-list-item.in-view .split-list-title {
  transform: translateY(0);
  opacity: 1;
}
.split-list-item.in-view .split-list-main li {
  transform: translateY(0);
  opacity: 1;
}
.split-list-item.in-view .split-list-main li:nth-of-type(1) {
  transition-delay: 0.2s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(2) {
  transition-delay: 0.3s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(3) {
  transition-delay: 0.4s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(4) {
  transition-delay: 0.5s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(5) {
  transition-delay: 0.6s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(6) {
  transition-delay: 0.7s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(7) {
  transition-delay: 0.8s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(8) {
  transition-delay: 0.9s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(9) {
  transition-delay: 1s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(10) {
  transition-delay: 1.1s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(11) {
  transition-delay: 1.2s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(12) {
  transition-delay: 1.3s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(13) {
  transition-delay: 1.4s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(14) {
  transition-delay: 1.5s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(15) {
  transition-delay: 1.6s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(16) {
  transition-delay: 1.7s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(17) {
  transition-delay: 1.8s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(18) {
  transition-delay: 1.9s;
}
.split-list-item.in-view .split-list-main li:nth-of-type(19) {
  transition-delay: 2s;
}

.split-list-aside {
  display: block;
  width: 100%;
}
@media (min-width: 992px) {
  .split-list-aside {
    width: 33.3334%;
  }
}

.split-list-title {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #0e1216;
  font-weight: 300;
}
@media (min-width: 768px) {
  .split-list-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .split-list-title {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .split-list-title {
    font-size: 24px;
  }
}

.split-list-main {
  display: block;
  width: 100%;
}
@media (min-width: 992px) {
  .split-list-main {
    width: 50%;
  }
}
.split-list-main ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 10px;
}
.split-list-main li {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  position: relative;
  padding-left: 20px;
  color: #0e1216;
  font-size: 14px;
}
.split-list-main li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #0e1216;
}

.navigation {
  display: flex;
  visibility: hidden;
  position: fixed;
  z-index: -999;
  top: 81px;
  bottom: 0;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 30px;
  overflow: hidden;
  opacity: 0;
  background-color: #2a4258;
  pointer-events: none;
}
.navigation--active {
  visibility: visible;
  z-index: 99;
  opacity: 1;
  pointer-events: initial;
}
.navigation--active .navigation-list-item:nth-of-type(1)::after {
  width: 100%;
  transition-delay: 0s;
}
.navigation--active .navigation-list-item:nth-of-type(1) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0s;
}
.navigation--active .navigation-list-item:nth-of-type(2)::after {
  width: 100%;
  transition-delay: 0.1s;
}
.navigation--active .navigation-list-item:nth-of-type(2) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.1s;
}
.navigation--active .navigation-list-item:nth-of-type(3)::after {
  width: 100%;
  transition-delay: 0.2s;
}
.navigation--active .navigation-list-item:nth-of-type(3) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.2s;
}
.navigation--active .navigation-list-item:nth-of-type(4)::after {
  width: 100%;
  transition-delay: 0.3s;
}
.navigation--active .navigation-list-item:nth-of-type(4) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.navigation--active .navigation-list-item:nth-of-type(5)::after {
  width: 100%;
  transition-delay: 0.4s;
}
.navigation--active .navigation-list-item:nth-of-type(5) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.navigation--active .navigation-list-item:nth-of-type(6)::after {
  width: 100%;
  transition-delay: 0.5s;
}
.navigation--active .navigation-list-item:nth-of-type(6) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.navigation--active .navigation-list-item:nth-of-type(7)::after {
  width: 100%;
  transition-delay: 0.6s;
}
.navigation--active .navigation-list-item:nth-of-type(7) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.navigation--active .navigation-list-item:nth-of-type(8)::after {
  width: 100%;
  transition-delay: 0.7s;
}
.navigation--active .navigation-list-item:nth-of-type(8) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.navigation--active .navigation-list-item:nth-of-type(9)::after {
  width: 100%;
  transition-delay: 0.8s;
}
.navigation--active .navigation-list-item:nth-of-type(9) .navigation-list-link {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.8s;
}
.navigation--active .navigation-social:nth-of-type(1) .navigation-social-link {
  transition-delay: 0s;
}
.navigation--active .navigation-social:nth-of-type(2) .navigation-social-link {
  transition-delay: 0.1s;
}
.navigation--active .navigation-social:nth-of-type(3) .navigation-social-link {
  transition-delay: 0.2s;
}
.navigation--active .navigation-social:nth-of-type(4) .navigation-social-link {
  transition-delay: 0.3s;
}
.navigation--active .navigation-social-link {
  transform: translateY(0);
  opacity: 1;
}
.navigation--active .navigation-contact-link {
  transform: translateY(0);
  opacity: 1;
}
.navigation--active .navigation-contact-link:nth-of-type(1) {
  transition-delay: 0s;
}
.navigation--active .navigation-contact-link:nth-of-type(2) {
  transition-delay: 0.1s;
}
.navigation--active .navigation-contact-link:nth-of-type(3) {
  transition-delay: 0.2s;
}
.navigation--active .navigation-contact-link:nth-of-type(4) {
  transition-delay: 0.3s;
}

.navigation-main {
  display: block;
  width: 100%;
  margin: auto 0;
}

.navigation-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .navigation-list {
    padding: 0 15px;
  }
}

.navigation-list-item {
  display: block;
  position: relative;
  width: 100%;
}
.navigation-list-item:first-of-type .navigation-list-link {
  padding-top: 0;
}
.navigation-list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 1s;
  background-color: #4a7d8e;
}

.navigation-list-link {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  display: block;
  width: 100%;
  padding: 25px 0;
  color: #FFFFFF;
}
.navigation-list-link:hover .navigation-list-label {
  color: #4a7d8e;
}

.navigation-list-label {
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
  display: block;
  transition: color 0.2s;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .navigation-list-label {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .navigation-list-label {
    font-size: 50px;
  }
}
@media (min-width: 1300px) {
  .navigation-list-label {
    font-size: 58px;
  }
}
@media (min-width: 1600px) {
  .navigation-list-label {
    font-size: 66px;
  }
}

.navigation-other {
  display: block;
  width: 100%;
}

.navigation-other-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .navigation-other-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 15px;
  }
}

.navigation-socials {
  display: flex;
  align-items: center;
  width: 100%;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (min-width: 768px) {
  .navigation-socials {
    width: auto;
  }
}

.navigation-social,
.navigation-social-link {
  display: block;
}

.navigation-social-link {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.navigation-social-link:hover svg path {
  fill: #4a7d8e;
}
.navigation-social-link svg {
  display: block;
  width: auto;
  height: 25px;
}
.navigation-social-link svg path {
  transition: fill 0.2s;
  fill: #FFFFFF;
}

.navigation-contact {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .navigation-contact {
    width: auto;
    text-align: right;
  }
}

.navigation-contact-link {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  display: block;
  margin-top: 0;
  transition: color 0.2s;
  color: #B2B2B2;
  font-size: 14px;
}
.navigation-contact-link:hover {
  color: #4a7d8e;
}

.error {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: calc(100dvh - 82px);
}
@media (min-width: 768px) {
  .error {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .error {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .error {
    min-height: calc(100dvh - 111px);
  }
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .error-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .error-content {
    width: 83.3334%;
    margin-right: auto;
    margin-left: auto;
  }
}

.error-block {
  display: block;
  width: 60%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .error-block {
    width: 41.6667%;
    padding: 0 15px;
  }
}
@media (min-width: 1600px) {
  .error-block {
    width: 33.3334%;
  }
}

.error-block-inner {
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #435154;
  aspect-ratio: 1/1;
}

.error-code {
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
  display: block;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .error-code {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .error-code {
    font-size: 50px;
  }
}
@media (min-width: 1300px) {
  .error-code {
    font-size: 58px;
  }
}
@media (min-width: 1600px) {
  .error-code {
    font-size: 66px;
  }
}

.error-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 30px;
  text-align: center;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .error-main {
    align-items: flex-start;
    row-gap: 20px;
    width: 50%;
    text-align: left;
  }
}
.error-main p {
  margin-top: 0;
}

.error-title {
  font-size: 25px;
  font-weight: 300;
  line-height: 1.25;
  color: #0e1216;
}
@media (min-width: 768px) {
  .error-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .error-title {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .error-title {
    font-size: 43px;
  }
}

.consent {
  position: fixed;
  z-index: 101;
  right: 15px;
  bottom: 15px;
  left: 15px;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s;
}
.consent--visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .consent-wrap {
    padding: 0 15px;
  }
}

.consent-inner {
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 30px;
  background-color: #0e1216;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (min-width: 1300px) {
  .consent-inner {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}

.consent-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  text-wrap: balance;
  row-gap: 10px;
}
@media (min-width: 992px) {
  .consent-content {
    width: auto;
  }
}
.consent-content p {
  margin-top: 0;
  color: #FFFFFF;
  font-size: 14px;
}
.consent-content p a {
  transition: color 0.2s;
  color: #4a7d8e;
}
.consent-content p a:hover {
  color: #84C2C4;
}

.consent-heading {
  color: #FFFFFF;
  font-size: 18px;
}
@media (min-width: 768px) {
  .consent-heading {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .consent-heading {
    font-size: 22px;
  }
}

.consent-buttons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}
@media (min-width: 992px) {
  .consent-buttons {
    flex-wrap: nowrap;
    width: auto;
  }
}

.text-image {
  position: relative;
  display: block;
  width: 100%;
  border-top-left-radius: 40px;
  padding: 30px 30px;
  margin: 30px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .text-image {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0;
    margin: 40px 0;
  }
}
@media (min-width: 992px) {
  .text-image {
    border-top-left-radius: 80px;
  }
}
@media (min-width: 1300px) {
  .text-image {
    padding: 80px 0;
  }
}
.text-image.contact-map .text-left-buttons {
  margin-top: 0;
}
.text-image .company-form {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.text-image .company-form .open-modal {
  display: flex;
  margin-top: 40px;
  justify-content: flex-end;
}
.text-image .company-form p {
  font-style: normal;
  font-weight: 300;
  line-height: 1.3;
  font-size: 1rem;
  font-size: clamp(0.9rem, 4vmin, 1rem);
  margin-bottom: 15px;
}
.text-image .company-form p:last-of-type {
  margin-bottom: 0px;
}
.text-image .company-form h3 {
  font-size: clamp(1rem, 4vmin, 1.3rem);
  font-weight: 500;
  margin-bottom: 15px;
}
.text-image .company-form ul {
  margin-bottom: 15px;
}
.text-image .company-form ul li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: clamp(0.9rem, 4vmin, 1rem);
}
.text-image .company-form ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .text-image .company-form ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .text-image .company-form ul li::before {
    top: 10px;
  }
}
.text-image .company-form .nf-multi-cell .nf-cell {
  float: left;
  padding: 0;
}
@media (min-width: 992px) {
  .text-image .company-form .nf-multi-cell .nf-cell {
    padding: 0 7.5px;
  }
}
.text-image .company-form .nf-row:last-of-type nf-cells {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 1300px) {
  .text-image .company-form .nf-row:last-of-type nf-cells #nf-field-88-wrap {
    width: 450px;
    max-width: unset;
  }
}
.text-image .company-form .nf-row:last-of-type nf-cells #nf-field-89-container {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .text-image .company-form .nf-form-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.text-image .company-form .marketing-info {
  color: #0e1216;
  margin-top: 20px !important;
}
.text-image .company-form .disclaimer {
  color: #0e1216;
  margin-top: 40px !important;
  font-size: 13px;
}
.text-image .company-form .disclaimer a {
  font-weight: 600;
  color: inherit;
}
.text-image .company-form .disclaimer p:first-of-type {
  margin-bottom: 10px;
}
.text-image .company-form .checkbox-wrap .nf-field-label label {
  font-size: 11px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .text-image .company-form .checkbox-wrap .nf-field-label label {
    font-size: 13px;
  }
}
.text-image .company-form .textarea-container {
  width: 100%;
}
.text-image .company-form .nf-pass .ninja-forms-field {
  border-color: #0e1216 !important;
  transition: all 0.5s;
}
.text-image .company-form .nf-pass.field-wrap .nf-field-element:after {
  color: #4a7d8e;
  font-family: FontAwesome;
  font-size: 30px;
  content: "\f058";
  position: absolute;
  top: unset;
  right: 15px;
  height: unset;
  line-height: unset;
  transition: all 0.5s;
}
.text-image .company-form .nf-form-content select.ninja-forms-field {
  color: #0e1216;
}
.text-image .company-form .nf-form-content select.ninja-forms-field option {
  color: #0e1216;
}
.text-image .company-form .list-select-wrap select:active + div,
.text-image .company-form .list-select-wrap select:focus + div {
  background: transparent !important;
  border-color: #0e1216 !important;
  transition: all 0.5s;
}
.text-image .company-form .nf-form-content .list-select-wrap .nf-field-element > div:focus,
.text-image .company-form .nf-form-content input:not([type=button]):focus,
.text-image .company-form .nf-form-content textarea:focus {
  background: transparent;
  border-color: #0e1216;
  color: #0e1216;
  outline: none;
  transition: all 0.5s;
}
.text-image .company-form .nf-error-wrap {
  display: none !important;
}
.text-image .company-form .list-select-wrap div:after {
  color: #0e1216;
  transition: all 0.5s;
  right: 0px !important;
}
.text-image .company-form .form-column {
  width: 100%;
}
@media (min-width: 992px) {
  .text-image .company-form .form-column {
    width: 48%;
  }
}
.text-image .company-form .nf-field-container {
  display: block;
}
.text-image .company-form .nf-field-element {
  display: flex;
  align-items: center;
}
.text-image .company-form .nf-field-description {
  margin-top: 7px !important;
}
@media (min-width: 992px) {
  .text-image .company-form .nf-field-description {
    margin-top: 0px !important;
  }
}
.text-image .company-form .nf-field-description p {
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 400;
  text-align: left;
}
.text-image .company-form p {
  text-align: left;
}
.text-image .company-form .thank-you-text {
  color: #0e1216 !important;
}
.text-image .company-form .one-half {
  margin-bottom: 5px !important;
}
@media (min-width: 768px) {
  .text-image .company-form .one-half {
    margin-bottom: 15px !important;
  }
}
.text-image .company-form .full {
  width: 100%;
}
.text-image .company-form .nf-field-container {
  margin-top: 0;
  margin-bottom: 0;
}
.text-image .company-form .nf-form-title {
  display: none;
}
.text-image .company-form .nf-response-msg {
  border: 1px solid #4a7d8e;
  padding: 20px;
}
.text-image .company-form .nf-response-msg p {
  color: #FFFFFF;
  text-align: center;
}
.text-image .company-form .textarea-wrap .nf-field-label {
  font-weight: 400;
  font-size: 16px;
  display: block;
  display: none;
}
.text-image .company-form .nf-form-content {
  padding: 0;
}
.text-image .company-form .nf-form-content textarea.ninja-forms-field {
  height: 120px;
  border-bottom: 0px solid rgba(14, 18, 22, 0.5);
  padding: 15px;
}
.text-image .company-form .nf-form-wrap .field-wrap > div input[type=checkbox] {
  background-color: #0e1216;
}
.text-image .company-form .nf-before-form-content {
  display: none;
  padding: 0;
}
.text-image .company-form .nf-field-label {
  display: none;
}
.text-image .company-form .checkbox-container label {
  font-weight: 400;
  text-align: left;
  line-height: 1.2;
  font-size: 11px;
  color: #FFFFFF;
}
.text-image .company-form .checkbox-container.label-right label {
  margin: 0 !important;
  display: flex;
  padding: 0 0 0 14px;
  align-items: center;
  margin-left: 0;
}
.text-image .company-form .nf-field-description {
  margin-right: 0;
  order: 15;
  position: absolute;
  left: 28px;
}
.text-image .company-form .label-right .nf-field-label {
  padding-left: 0px !important;
}
.text-image .company-form .checkbox-container.label-right label:before {
  left: 5px;
  top: 0;
}
.text-image .company-form .checkbox-container.label-right .field-wrap {
  display: flex;
  align-items: center;
}
.text-image .company-form .checkbox-wrap .nf-field-element label:before,
.text-image .company-form .checkbox-wrap .nf-field-label label:before,
.text-image .company-form .listcheckbox-wrap .nf-field-element label:before,
.text-image .company-form .listcheckbox-wrap .nf-field-label label:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f00c";
  position: absolute;
  font-size: 30px;
  bottom: auto;
  left: 3px !important;
  top: 0 !important;
  font-size: 14px;
  z-index: 2;
}
.text-image .company-form .checkbox-wrap .nf-field-element label.nf-checked-label:before,
.text-image .company-form .checkbox-wrap .nf-field-label label.nf-checked-label:before,
.text-image .company-form .listcheckbox-wrap .nf-field-element label.nf-checked-label:before,
.text-image .company-form .listcheckbox-wrap .nf-field-label label.nf-checked-label:before {
  color: black;
  font-family: "fontawesome";
  font-weight: 400;
  content: "\f00c";
  left: 2px !important;
  top: unset !important;
  font-size: 14px;
  transition: opacity 1s;
}
@media only screen and (max-width: 800px) {
  .text-image .company-form .nf-field-container .checkbox-wrap .nf-field-label label:after {
    left: 0px !important;
    top: unset !important;
  }
}
.text-image .company-form .checkbox-wrap .nf-field-element label:after,
.text-image .company-form .checkbox-wrap .nf-field-label label:after,
.text-image .company-form .listcheckbox-wrap .nf-field-element label:after,
.text-image .company-form .listcheckbox-wrap .nf-field-label label:after {
  border: 1px solid #2a4258 !important;
  border-radius: 10px;
  background-color: #e5e9ea;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: unset;
  font-size: 16px;
  border-radius: 2px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
}
.text-image .company-form .nf-form-content .listselect-wrap .nf-field-element div,
.text-image .company-form .nf-form-content input.ninja-forms-field,
.text-image .company-form .nf-form-content select.ninja-forms-field:not([multiple]) {
  height: unset;
}
.text-image .company-form .nf-after-form {
  font-size: 13px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
}
.text-image .company-form .nf-form-content .list-select-wrap .nf-field-element > div,
.text-image .company-form .nf-form-content textarea {
  border: 0;
  font-weight: 400;
  color: #666666;
  background-color: transparent;
  font-size: 13px;
  padding: 10px 15px 10px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  background-color: #f2f2f2;
  border-radius: 20px;
  /* border-radius: 10px; */
}
.text-image .company-form .nf-form-content .list-select-wrap .nf-field-element > div ::-moz-placeholder, .text-image .company-form .nf-form-content textarea ::-moz-placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #4a7d8e;
  opacity: 0.8 !important;
}
.text-image .company-form .nf-form-content .list-select-wrap .nf-field-element > div ::placeholder,
.text-image .company-form .nf-form-content textarea ::placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #4a7d8e;
  opacity: 0.8 !important;
}
.text-image .company-form .nf-form-content input:not([type=button]) {
  border: 0;
  font-weight: 400;
  color: #2a4258;
  background-color: transparent;
  font-size: 13px;
  padding: 10px 15px 10px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  background-color: #f2f2f2;
  border-radius: 200px;
  /* border-radius: 10px; */
}
.text-image .company-form .nf-form-content input:not([type=button]) ::-moz-placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #666666;
  opacity: 0.4 !important;
}
.text-image .company-form .nf-form-content input:not([type=button]) ::placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #666666;
  opacity: 0.4 !important;
}
.text-image .company-form ::-moz-placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #666666;
  opacity: 0.4 !important;
}
.text-image .company-form ::placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #666666;
  opacity: 0.4 !important;
}
.text-image .company-form .nf-error .ninja-forms-field {
  border-color: #0e1216 !important;
  font-size: 13px;
  margin-top: 30px;
  transition: all 0.5s;
}
.text-image .company-form .nf-form-content .listselect-wrap .nf-field-element div,
.text-image .company-form .nf-form-content .ninja-forms-field {
  font-size: 13px;
  margin: 0;
  padding: 12px 15px;
  color: #666666 !important;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
}
.text-image .company-form .nf-form-content .list-select-wrap > div div:after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url("../../img/icons/select-arrow.svg");
  background-size: contain;
  top: 20px;
  bottom: unset;
  right: 15px !important;
  position: absolute;
  z-index: 10;
}
.text-image .company-form select.nf-element {
  line-height: 1.3;
}
.text-image .company-form select.nf-form-fields {
  font-size: 13px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #0e1216;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 15px 15px !important;
}
.text-image .company-form .nf-field-label label {
  font-size: 16px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #0e1216;
  font-weight: 400;
  margin-top: 20px;
  display: block;
}
.text-image .company-form .nf-form-errors {
  display: none !important;
}
.text-image .company-form .nf-error .nf-error-msg {
  color: #4a7d8e;
  font-size: 13px;
  margin-top: 30px;
}
.text-image .company-form .nf-error.field-wrap .nf-field-element:after {
  color: #0e1216;
  width: auto;
  font-size: 12px;
  right: 20px;
}
.text-image .company-form .nf-error-msg,
.text-image .company-form .ninja-forms-req-symbol {
  color: #4a7d8e;
  font-size: 13px;
  margin-top: 30px;
}
.text-image .company-form nf-cells {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .text-image .company-form nf-cells {
    flex-direction: row;
    align-items: center;
  }
}
.text-image .company-form .last-element {
  margin-top: 0;
}
@media (min-width: 992px) {
  .text-image .company-form .last-element {
    margin-top: 20px;
  }
}
.text-image .company-form .submit-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.text-image .company-form .nf-form-content .list-select-wrap .nf-field-element > div:focus,
.text-image .company-form .nf-form-content input:not([type=button]):focus,
.text-image .company-form .nf-form-content textarea:focus {
  background-color: rgba(242, 242, 242, 0.8);
  font-size: 13px;
  border-bottom: 0 solid #0e1216;
}
.text-image .company-form .submit-wrap {
  position: relative;
  display: inline-flex;
}
.text-image .company-form .submit-wrap .nf-field-element {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  background-color: #4a7d8e;
  color: #9DF4F3 !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background-color 0.4s, color 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-image .company-form .submit-wrap .nf-field-element:hover {
  font-weight: 600;
}
.text-image .company-form .submit-wrap .nf-field-element:hover input[type=submit] {
  font-weight: 600;
  color: #2a4258 !important;
}
.text-image .company-form .submit-wrap .nf-field-element input[type=submit] {
  opacity: 1;
  line-height: 1.2;
  padding: 0;
  cursor: pointer;
  border: 0px !important;
  color: #FFFFFF !important;
  font-family: "Figtree", sans-serif !important;
  background-color: transparent;
  transition: background-color 0.4s, color 0.4s, transform 0.4s;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 9999px;
  display: flex;
  position: relative;
  padding: 10px 30px;
  border: 1px solid #4a7d8e;
  font-size: 12px;
  letter-spacing: 1.2px;
}
.text-image .company-form .submit-wrap .nf-field-element input[type=submit] span {
  position: relative;
  transition: transform 0.4s ease;
}
.text-image .company-form .submit-wrap .nf-field-element input[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
  background-color: #4a7d8e;
}
.text-image .company-form .submit-wrap .nf-field-element:hover::before {
  background-color: transparent;
}
.text-image .company-form .submit-wrap .nf-field-element:hover .button-label {
  color: #0e1216;
}
.text-image .company-form .submit-wrap .nf-field-element:hover {
  font-weight: 600;
  background-color: #FFFFFF;
}
.text-image .company-form .checkbox-container .nf-field-element input {
  display: inherit;
  opacity: 0;
}
.text-image .company-form .checkbox-wrap .nf-field-element label:before,
.text-image .company-form .checkbox-wrap .nf-field-label label:before,
.text-image .company-form .listcheckbox-wrap .nf-field-element label:before,
.text-image .company-form .listcheckbox-wrap .nf-field-label label:before {
  opacity: 0;
  transition: all 0.5s;
}
.text-image .company-form .checkbox-wrap .nf-field-element label.nf-checked-label:before,
.text-image .company-form .checkbox-wrap .nf-field-label label.nf-checked-label:before,
.text-image .company-form .listcheckbox-wrap .nf-field-element label.nf-checked-label:before,
.text-image .company-form .listcheckbox-wrap .nf-field-label label.nf-checked-label:before {
  opacity: 1;
  transition: all 0.5s;
}
.text-image .company-form .nf-error.field-wrap .nf-field-element::after {
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f12a";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 50px;
  text-align: center;
  transition: all 0.5s;
  background-color: transparent !important;
  color: #4a7d8e;
  width: auto;
  font-size: 12px;
  right: 20px;
}
.text-image .map {
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.text-image .acf-map {
  width: 100%;
  min-height: 400px;
  height: 100%;
}
.text-image .video-control {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
}
.text-image .video-control .video-control-play {
  cursor: pointer;
}
.text-image .video-control .video-control-play .video-control-symbol {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 8px 20px 8px 3px;
}
.text-image .video-control .video-control-play .video-control-symbol:hover {
  border: 1px solid #FFFFFF;
}
.text-image .video-control .video-control-play .video-control-symbol:hover::before {
  background-color: #FFFFFF;
}
.text-image .video-control .video-control-play .video-control-symbol:hover .button-label {
  color: #4a7d8e;
}
.text-image .video-control .video-control-play .video-control-symbol:hover i {
  color: #4a7d8e;
}
.text-image .video-control .video-control-play i {
  font-size: 40px;
  color: #FFFFFF;
}
@media (min-width: 1300px) {
  .text-image .video-control .default-btn {
    font-size: 16px;
  }
}
.text-image .video-control .default-btn:after {
  display: none;
}
.text-image .video-control .default-btn:hover svg path {
  fill: #FFFFFF;
  stroke: #2a4258;
}
.text-image .video-control:not(.playing) .video-control-pause,
.text-image .video-control.playing .video-control-play {
  display: none;
}
.text-image.align-center-1 .text-image-content {
  align-items: stretch;
}
.text-image.align-center-1 .text-image-content .text-image-main {
  justify-content: center;
}
.text-image.light {
  background-color: #F8F8FF;
}
.text-image.medium {
  background-color: #9DF4F3;
}
.text-image.dark-blue h2, .text-image.navy-blue h2, .text-image.black h2 {
  color: #FFFFFF;
}
.text-image.dark-blue p, .text-image.navy-blue p, .text-image.black p {
  color: #FFFFFF;
}
.text-image.dark-blue blockquote, .text-image.navy-blue blockquote, .text-image.black blockquote {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='22' fill='none' viewBox='0 0 24 22'%3E%3Cpath fill='%234a7d8e' d='M18.93 22h-7.504l6.907-22h5.458l-4.86 22ZM7.504 22H0L6.907 0h5.457l-4.86 22Z'/%3E%3C/svg%3E") no-repeat 31px top/24px 22px;
}
.text-image.dark-blue blockquote p, .text-image.navy-blue blockquote p, .text-image.black blockquote p {
  color: #FFFFFF;
}
.text-image.dark-blue .text-button .button-label, .text-image.navy-blue .text-button .button-label, .text-image.black .text-button .button-label {
  color: #FFFFFF;
}
.text-image.dark-blue .button:hover .button-label, .text-image.navy-blue .button:hover .button-label, .text-image.black .button:hover .button-label {
  color: #FFFFFF;
}
.text-image.dark-blue .button.secondary .button-label, .text-image.navy-blue .button.secondary .button-label, .text-image.black .button.secondary .button-label {
  color: #FFFFFF;
}
.text-image .text-image-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .text-image .text-image-content {
    gap: 60px;
    flex-direction: row;
    align-items: stretch;
  }
}
.text-image .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .text-image .text-wrapper {
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .text-image.right_align .text-image-main {
    order: 1;
  }
}
.text-image.right_align .text-image-aside {
  border-radius: 30px;
  border-bottom-right-radius: 0;
}
@media (min-width: 768px) {
  .text-image.right_align .text-image-aside {
    order: 0;
  }
}
@media (min-width: 992px) {
  .text-image.right_align .text-image-aside {
    border-radius: 60px;
    border-bottom-right-radius: 0;
  }
}
.text-image.right_align .text-image-media:before {
  content: " ";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #4a7d8e;
  z-index: 100;
  border-radius: 20px;
  border-bottom-right-radius: 0;
}
@media (min-width: 992px) {
  .text-image.right_align .text-image-media:before {
    border-radius: 50px;
    border-bottom-right-radius: 0;
  }
}
.text-image.right_align .image-caption {
  background-color: #4a7d8e;
  color: #FFFFFF;
  font-size: 1.1rem;
  padding: 6px 25px 6px 30px;
  position: absolute;
  bottom: 30px;
  left: unset;
  right: 0;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  border-top-left-radius: 400px;
  border-bottom-left-radius: 400px;
}
.text-image--colour:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.text-image--colour .text-image-main,
.text-image--colour .text-image-aside {
  position: relative;
  z-index: 2;
}
.text-image--colour .title {
  color: #0e1216;
  background: transparent;
  -webkit-background-clip: unset;
  -moz-background-clip: unset;
  -webkit-text-fill-color: unset;
  -moz-text-fill-color: unset;
}
.text-image--colour .text-image-button {
  background-color: #0e1216;
}
.text-image--colour .text-image-button:hover {
  color: #0e1216;
  background-color: #FFFFFF;
}
.text-image.no-trigger .text-image-image {
  transform: scale(1);
  opacity: 1;
}
.text-image.no-trigger .text-button {
  transform: translateX(0);
  opacity: 1;
}
.text-image.no-trigger .button {
  transform: translateX(0);
  opacity: 1;
}
.text-image.no-trigger .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.text-image.no-trigger .text-wrapper > :nth-child(1) {
  transition-delay: 0;
}
.text-image.no-trigger .text-wrapper > :nth-child(2) {
  transition-delay: 0;
}
.text-image.no-trigger .text-wrapper > :nth-child(3) {
  transition-delay: 0;
}
.text-image.no-trigger .text-wrapper > :nth-child(4) {
  transition-delay: 0;
}
.text-image.no-trigger .text-wrapper > :nth-child(5) {
  transition-delay: 0;
}
.text-image.no-trigger .text-wrapper > :nth-child(6) {
  transition-delay: 0;
}
.text-image.no-trigger .text-wrapper > :nth-child(7) {
  transition-delay: 0;
}
.text-image.no-trigger .text-wrapper > :nth-child(8) {
  transition-delay: 0;
}
.text-image.no-trigger .text-wrapper > :nth-child(9) {
  transition-delay: 0;
}
.text-image.in-view .text-image-main {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.text-image.in-view .text-image-image {
  transform: scale(1);
  opacity: 1;
}
.text-image.in-view .text-button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.text-image.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.text-image.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.text-image.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.text-image.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.text-image.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.text-image.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.text-image.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.text-image.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.text-image.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.text-image.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.text-image.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
.text-image.in-view ol {
  list-style-type: decimal;
}
.text-image.in-view li {
  list-style-position: inside;
}
.text-image.in-view li::marker {
  color: #4a7d8e;
}
.text-image .text-button,
.text-image .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-image-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-wrapper > * {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.background-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.text-image-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-radius: 60px;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .text-image-main {
    transform: translateX(-40px);
    transition: opacity 0.8s, transform 0.8s;
    opacity: 0;
    width: unset;
    flex: 1;
  }
}
.text-image-main > :first-child {
  margin-top: 0;
}
.text-image-main h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  text-wrap-style: balance;
  color: #0e1216;
}
@media (min-width: 768px) {
  .text-image-main h2 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .text-image-main h2 {
    font-size: 38px;
  }
}
@media (min-width: 1300px) {
  .text-image-main h2 {
    font-size: 42px;
  }
}
@media (min-width: 1600px) {
  .text-image-main h2 {
    font-size: 50px;
  }
}
.text-image-main h2 strong {
  font-weight: 600;
}
.text-image-main p {
  margin-top: 20px;
  font-weight: 300;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.text-image-main p strong {
  font-weight: 600;
}
.text-image-main p a {
  color: #4a7d8e;
}
.text-image-main p:first-of-type {
  margin-top: 0;
}
.text-image-main h4 {
  text-wrap-style: balance;
}
.text-image-main ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  font-weight: 300;
  font-size: clamp(1rem, 4vmin, 1.1rem);
}
.text-image-main ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .text-image-main ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .text-image-main ul li::before {
    top: 15px;
  }
}
.text-image-main ol {
  counter-reset: ordered-list;
}
.text-image-main ol li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: 1rem;
  font-size: clamp(1rem, 4vmin, 1.1rem);
}
.text-image-main ol li::before {
  content: counter(ordered-list) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  counter-increment: ordered-list;
  color: #4a7d8e;
}

.text-image-buttons {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .text-image-buttons {
    flex-direction: row;
  }
}

.text-image-button {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background-color: #4a7d8e;
  transition: color 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .text-image-button {
    font-size: 18px;
  }
}
.text-image-button:first-of-type {
  margin-top: 0;
}
.text-image-button:hover {
  color: #0e1216;
  background-color: #4a7d8e;
}

.text-image-aside {
  display: block;
  width: 100%;
  border-radius: 30px;
  border-bottom-left-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .text-image-aside {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .text-image-aside {
    border-radius: 60px;
    border-bottom-left-radius: 0;
    width: 50%;
  }
}

.text-image-media {
  position: relative;
  width: 100%;
  height: 250px;
  z-index: 1;
}
@media (min-width: 992px) {
  .text-image-media {
    height: 100%;
    min-height: 40vh;
  }
}
@media (min-width: 1300px) {
  .text-image-media {
    min-height: 45vh;
  }
}
.text-image-media:before {
  content: " ";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #4a7d8e;
  z-index: 100;
  border-radius: 20px;
  border-bottom-left-radius: 0;
}
@media (min-width: 992px) {
  .text-image-media:before {
    border-radius: 50px;
    border-bottom-left-radius: 0;
  }
}

.greyscale .text-image-image {
  filter: grayscale(1);
}

.text-image-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-image-other {
  position: relative;
  width: 100%;
  margin-top: -80px;
  margin-bottom: 50px;
  padding: 0 15px;
  z-index: 2;
}
@media (min-width: 768px) {
  .text-image-other {
    width: 75%;
    max-width: 450px;
    margin: -80px auto 0;
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .text-image-other {
    margin-top: -120px;
  }
}
.text-image-other--image {
  width: 75%;
  margin-left: 12.5%;
}
@media (min-width: 768px) {
  .text-image-other--image {
    width: 60%;
    max-width: 300px;
    margin-left: auto;
  }
}
.text-image-other--image .text-image-other-content {
  height: 0;
  padding: 0 0 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  overflow: hidden;
}

.text-image-other-inner {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  border-width: 10px;
  border-style: solid;
}
@media (min-width: 992px) {
  .text-image-other-inner {
    padding: 20px;
  }
}
.text-image-other-inner:before {
  content: "";
  position: absolute;
  top: 70px;
  left: -10px;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  z-index: 2;
}
@media (min-width: 1300px) {
  .text-image-other-inner:before {
    top: 110px;
  }
}
.text-image-other-inner:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  z-index: 2;
}

.text-image-other-content {
  display: block;
  width: 100%;
  padding: 30px;
  background-color: #FFFFFF;
}

.text-image-other-item {
  display: block;
  width: 100%;
  margin-top: 30px;
}
.text-image-other-item:first-of-type {
  margin-top: 0;
}
.text-image-other-item > :first-child {
  margin-top: 0;
}
.text-image-other-item ul {
  display: block;
  width: 100%;
  margin-top: 15px;
}
.text-image-other-item ul li {
  position: relative;
  display: block;
  color: #0e1216;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1300px) {
  .text-image-other-item ul li {
    font-size: 16px;
  }
}

.text-stats {
  position: relative;
  display: block;
  width: 100%;
  border-top-left-radius: 80px;
  padding: 30px 30px 50px 30px;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .text-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0;
    margin: 40px 0;
  }
}
@media (min-width: 1300px) {
  .text-stats {
    padding: 80px 0;
  }
}
.text-stats.light {
  background-color: #F8F8FF;
}
.text-stats.medium {
  background-color: #9DF4F3;
}
.text-stats.dark-blue h2, .text-stats.navy-blue h2, .text-stats.black h2 {
  color: #FFFFFF;
}
.text-stats.dark-blue p, .text-stats.navy-blue p, .text-stats.black p {
  color: #FFFFFF;
}
.text-stats.dark-blue blockquote, .text-stats.navy-blue blockquote, .text-stats.black blockquote {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='22' fill='none' viewBox='0 0 24 22'%3E%3Cpath fill='%234a7d8e' d='M18.93 22h-7.504l6.907-22h5.458l-4.86 22ZM7.504 22H0L6.907 0h5.457l-4.86 22Z'/%3E%3C/svg%3E") no-repeat 31px top/24px 22px;
}
.text-stats.dark-blue blockquote p, .text-stats.navy-blue blockquote p, .text-stats.black blockquote p {
  color: #FFFFFF;
}
.text-stats.dark-blue .text-button .button-label, .text-stats.navy-blue .text-button .button-label, .text-stats.black .text-button .button-label {
  color: #FFFFFF;
}
.text-stats.dark-blue .button:hover .button-label, .text-stats.navy-blue .button:hover .button-label, .text-stats.black .button:hover .button-label {
  color: #FFFFFF;
}
.text-stats.dark-blue .button.secondary .button-label, .text-stats.navy-blue .button.secondary .button-label, .text-stats.black .button.secondary .button-label {
  color: #FFFFFF;
}
.text-stats .text-stats-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .text-stats .text-stats-content {
    gap: 60px;
    flex-direction: row;
  }
}
.text-stats .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .text-stats.right_align .text-stats-main {
    order: 1;
  }
}
.text-stats.right_align .text-stats-aside {
  border-radius: 60px;
  border-bottom-right-radius: 0;
}
@media (min-width: 768px) {
  .text-stats.right_align .text-stats-aside {
    order: 0;
  }
}
.text-stats.right_align .text-stat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media (min-width: 992px) {
  .text-stats.right_align .text-stat {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
.text-stats.right_align .text-stat > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s, transform 2.4s;
}
.text-stats.right_align .text-stat > :nth-child(1) {
  transition-delay: 0s !important;
}
.text-stats.right_align .text-stat > :nth-child(2) {
  transition-delay: 0.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(3) {
  transition-delay: 1s !important;
}
.text-stats.right_align .text-stat > :nth-child(4) {
  transition-delay: 1.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(5) {
  transition-delay: 2s !important;
}
.text-stats.right_align .text-stat > :nth-child(6) {
  transition-delay: 2.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(7) {
  transition-delay: 3s !important;
}
.text-stats.right_align .text-stat > :nth-child(8) {
  transition-delay: 3.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(9) {
  transition-delay: 4s !important;
}
.text-stats.right_align .text-stat > :nth-child(10) {
  transition-delay: 4.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(11) {
  transition-delay: 5s !important;
}
.text-stats.right_align .text-stat > :nth-child(12) {
  transition-delay: 5.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(13) {
  transition-delay: 6s !important;
}
.text-stats.right_align .text-stat > :nth-child(14) {
  transition-delay: 6.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(15) {
  transition-delay: 7s !important;
}
.text-stats.right_align .text-stat > :nth-child(16) {
  transition-delay: 7.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(17) {
  transition-delay: 8s !important;
}
.text-stats.right_align .text-stat > :nth-child(18) {
  transition-delay: 8.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(19) {
  transition-delay: 9s !important;
}
.text-stats.right_align .text-stat > :nth-child(20) {
  transition-delay: 9.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(21) {
  transition-delay: 10s !important;
}
.text-stats.right_align .text-stat > :nth-child(22) {
  transition-delay: 10.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(23) {
  transition-delay: 11s !important;
}
.text-stats.right_align .text-stat > :nth-child(24) {
  transition-delay: 11.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(25) {
  transition-delay: 12s !important;
}
.text-stats.right_align .text-stat > :nth-child(26) {
  transition-delay: 12.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(27) {
  transition-delay: 13s !important;
}
.text-stats.right_align .text-stat > :nth-child(28) {
  transition-delay: 13.5s !important;
}
.text-stats.right_align .text-stat > :nth-child(29) {
  transition-delay: 14s !important;
}
.text-stats.right_align .text-stat.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
.text-stats--colour:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.text-stats--colour .text-stats-main,
.text-stats--colour .text-stats-aside {
  position: relative;
  z-index: 2;
}
.text-stats--colour .title {
  color: #0e1216;
  background: transparent;
  -webkit-background-clip: unset;
  -moz-background-clip: unset;
  -webkit-text-fill-color: unset;
  -moz-text-fill-color: unset;
}
.text-stats--colour .text-stats-button {
  background-color: #0e1216;
}
.text-stats--colour .text-stats-button:hover {
  color: #0e1216;
  background-color: #FFFFFF;
}
.text-stats.no-trigger .text-stats-image {
  transform: scale(1);
  opacity: 1;
}
.text-stats.no-trigger .text-button {
  transform: translateX(0);
  opacity: 1;
}
.text-stats.no-trigger .button {
  transform: translateX(0);
  opacity: 1;
}
.text-stats.no-trigger .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.text-stats.no-trigger .text-wrapper > :nth-child(1) {
  transition-delay: 0;
}
.text-stats.no-trigger .text-wrapper > :nth-child(2) {
  transition-delay: 0;
}
.text-stats.no-trigger .text-wrapper > :nth-child(3) {
  transition-delay: 0;
}
.text-stats.no-trigger .text-wrapper > :nth-child(4) {
  transition-delay: 0;
}
.text-stats.no-trigger .text-wrapper > :nth-child(5) {
  transition-delay: 0;
}
.text-stats.no-trigger .text-wrapper > :nth-child(6) {
  transition-delay: 0;
}
.text-stats.no-trigger .text-wrapper > :nth-child(7) {
  transition-delay: 0;
}
.text-stats.no-trigger .text-wrapper > :nth-child(8) {
  transition-delay: 0;
}
.text-stats.no-trigger .text-wrapper > :nth-child(9) {
  transition-delay: 0;
}
.text-stats.in-view .text-stats-main {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.text-stats.in-view .text-stats-image {
  transform: scale(1);
  opacity: 1;
}
.text-stats.in-view .text-button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.text-stats.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.text-stats.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.text-stats.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.text-stats.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.text-stats.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.text-stats.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.text-stats.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.text-stats.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.text-stats.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.text-stats.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.text-stats.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
.text-stats.in-view ol {
  list-style-type: decimal;
}
.text-stats.in-view li {
  list-style-position: inside;
  padding: 5px 20px;
}
.text-stats.in-view li::marker {
  color: #4a7d8e;
}
.text-stats .text-button,
.text-stats .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-stats-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-wrapper > * {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-stats-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-radius: 60px;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .text-stats-main {
    transform: translateX(-40px);
    transition: opacity 0.8s, transform 0.8s;
    opacity: 0;
    width: unset;
    flex: 1;
  }
}
.text-stats-main > :first-child {
  margin-top: 0;
}
.text-stats-main h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  text-wrap-style: balance;
  color: #0e1216;
}
@media (min-width: 768px) {
  .text-stats-main h2 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .text-stats-main h2 {
    font-size: 38px;
  }
}
@media (min-width: 1300px) {
  .text-stats-main h2 {
    font-size: 42px;
  }
}
@media (min-width: 1600px) {
  .text-stats-main h2 {
    font-size: 50px;
  }
}
.text-stats-main h2 strong {
  font-weight: 600;
}
.text-stats-main h4 {
  margin-bottom: 20px;
  text-wrap-style: balance;
}
.text-stats-main .text-left-buttons {
  align-items: flex-start;
}
.text-stats-main p {
  margin-top: 20px;
  font-weight: 300;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.text-stats-main p strong {
  font-weight: 600;
}
.text-stats-main p a {
  color: #4a7d8e;
}
.text-stats-main ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  font-weight: 300;
  font-size: clamp(1rem, 4vmin, 1.1rem);
  text-wrap-style: balance;
}
.text-stats-main ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .text-stats-main ul li::before {
    top: 15px;
  }
}
@media (min-width: 1300px) {
  .text-stats-main ul li::before {
    top: 15px;
  }
}
.text-stats-main ol {
  counter-reset: ordered-list;
}
.text-stats-main ol li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: 1rem;
  font-size: clamp(1rem, 4vmin, 1.1rem);
  text-wrap-style: balance;
}
.text-stats-main ol li::before {
  content: counter(ordered-list) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  counter-increment: ordered-list;
  color: #4a7d8e;
}

.text-stats-buttons {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .text-stats-buttons {
    flex-direction: row;
  }
}

.text-stats-button {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background-color: #4a7d8e;
  transition: color 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .text-stats-button {
    font-size: 18px;
  }
}
.text-stats-button:first-of-type {
  margin-top: 0;
}
.text-stats-button:hover {
  color: #0e1216;
  background-color: #4a7d8e;
}

.text-stats-aside {
  display: block;
  width: 100%;
}
@media (min-width: 992px) {
  .text-stats-aside {
    width: 50%;
  }
}
@media (min-width: 1300px) {
  .text-stats-aside {
    width: 45%;
  }
}
.text-stats-aside .text-stat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-auto-rows: 1fr;
}
@media (min-width: 992px) {
  .text-stats-aside .text-stat {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
.text-stats-aside .text-stat > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s, transform 2.4s;
}
.text-stats-aside .text-stat > :nth-child(1) {
  transition-delay: 0s !important;
}
.text-stats-aside .text-stat > :nth-child(2) {
  transition-delay: 0.5s !important;
}
.text-stats-aside .text-stat > :nth-child(3) {
  transition-delay: 1s !important;
}
.text-stats-aside .text-stat > :nth-child(4) {
  transition-delay: 1.5s !important;
}
.text-stats-aside .text-stat > :nth-child(5) {
  transition-delay: 2s !important;
}
.text-stats-aside .text-stat > :nth-child(6) {
  transition-delay: 2.5s !important;
}
.text-stats-aside .text-stat > :nth-child(7) {
  transition-delay: 3s !important;
}
.text-stats-aside .text-stat > :nth-child(8) {
  transition-delay: 3.5s !important;
}
.text-stats-aside .text-stat > :nth-child(9) {
  transition-delay: 4s !important;
}
.text-stats-aside .text-stat > :nth-child(10) {
  transition-delay: 4.5s !important;
}
.text-stats-aside .text-stat > :nth-child(11) {
  transition-delay: 5s !important;
}
.text-stats-aside .text-stat > :nth-child(12) {
  transition-delay: 5.5s !important;
}
.text-stats-aside .text-stat > :nth-child(13) {
  transition-delay: 6s !important;
}
.text-stats-aside .text-stat > :nth-child(14) {
  transition-delay: 6.5s !important;
}
.text-stats-aside .text-stat > :nth-child(15) {
  transition-delay: 7s !important;
}
.text-stats-aside .text-stat > :nth-child(16) {
  transition-delay: 7.5s !important;
}
.text-stats-aside .text-stat > :nth-child(17) {
  transition-delay: 8s !important;
}
.text-stats-aside .text-stat > :nth-child(18) {
  transition-delay: 8.5s !important;
}
.text-stats-aside .text-stat > :nth-child(19) {
  transition-delay: 9s !important;
}
.text-stats-aside .text-stat > :nth-child(20) {
  transition-delay: 9.5s !important;
}
.text-stats-aside .text-stat > :nth-child(21) {
  transition-delay: 10s !important;
}
.text-stats-aside .text-stat > :nth-child(22) {
  transition-delay: 10.5s !important;
}
.text-stats-aside .text-stat > :nth-child(23) {
  transition-delay: 11s !important;
}
.text-stats-aside .text-stat > :nth-child(24) {
  transition-delay: 11.5s !important;
}
.text-stats-aside .text-stat > :nth-child(25) {
  transition-delay: 12s !important;
}
.text-stats-aside .text-stat > :nth-child(26) {
  transition-delay: 12.5s !important;
}
.text-stats-aside .text-stat > :nth-child(27) {
  transition-delay: 13s !important;
}
.text-stats-aside .text-stat > :nth-child(28) {
  transition-delay: 13.5s !important;
}
.text-stats-aside .text-stat > :nth-child(29) {
  transition-delay: 14s !important;
}
.text-stats-aside .text-stat.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
.text-stats-aside .stat {
  padding: 0;
  background-color: #4a7d8e;
  background-color: rgba(74, 125, 142, 0.5);
  box-shadow: 0 10px 30px rgba(0, 53, 101, 0.15);
  border-radius: 30px;
  border-bottom-right-radius: 0;
  padding: 20px;
}
@media (min-width: 1300px) {
  .text-stats-aside .stat {
    padding: 30px;
  }
}
.text-stats-aside .stat h2 {
  line-height: 1.3;
  font-size: 1.5rem;
  text-wrap-style: balance;
  font-weight: 600;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .text-stats-aside .stat h2 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1300px) {
  .text-stats-aside .stat h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1600px) {
  .text-stats-aside .stat h2 {
    font-size: 2.6rem;
  }
}
.text-stats-aside .stat .stat-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-stats-media {
  position: relative;
  width: 100%;
  height: 250px;
  z-index: 1;
}
@media (min-width: 992px) {
  .text-stats-media {
    height: 100%;
    min-height: 50vh;
  }
}

.greyscale .text-stats-image {
  filter: grayscale(1);
}

.text-stats-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-stats-other {
  position: relative;
  width: 100%;
  margin-top: -80px;
  margin-bottom: 50px;
  padding: 0 15px;
  z-index: 2;
}
@media (min-width: 768px) {
  .text-stats-other {
    width: 75%;
    max-width: 450px;
    margin: -80px auto 0;
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .text-stats-other {
    margin-top: -120px;
  }
}
.text-stats-other--image {
  width: 75%;
  margin-left: 12.5%;
}
@media (min-width: 768px) {
  .text-stats-other--image {
    width: 60%;
    max-width: 300px;
    margin-left: auto;
  }
}
.text-stats-other--image .text-stats-other-content {
  height: 0;
  padding: 0 0 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  overflow: hidden;
}

.text-stats-other-inner {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  border-width: 10px;
  border-style: solid;
}
@media (min-width: 992px) {
  .text-stats-other-inner {
    padding: 20px;
  }
}
.text-stats-other-inner:before {
  content: "";
  position: absolute;
  top: 70px;
  left: -10px;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  z-index: 2;
}
@media (min-width: 1300px) {
  .text-stats-other-inner:before {
    top: 110px;
  }
}
.text-stats-other-inner:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  z-index: 2;
}

.text-stats-other-content {
  display: block;
  width: 100%;
  padding: 30px;
  background-color: #FFFFFF;
}

.text-stats-other-item {
  display: block;
  width: 100%;
  margin-top: 30px;
}
.text-stats-other-item:first-of-type {
  margin-top: 0;
}
.text-stats-other-item > :first-child {
  margin-top: 0;
}
.text-stats-other-item ul {
  display: block;
  width: 100%;
  margin-top: 15px;
}
.text-stats-other-item ul li {
  position: relative;
  display: block;
  color: #0e1216;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1300px) {
  .text-stats-other-item ul li {
    font-size: 16px;
  }
}

.two-column-intro {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 30px;
  margin: 30px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .two-column-intro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0;
    margin: 40px 0;
  }
}
@media (min-width: 992px) {
  .two-column-intro {
    border-top-left-radius: 80px;
  }
}
@media (min-width: 1300px) {
  .two-column-intro {
    padding: 80px 0;
  }
}
.two-column-intro .two-column-intro-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .two-column-intro .two-column-intro-content {
    gap: 60px;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .two-column-intro.right_align .two-column-intro-main {
    order: 1;
  }
}
@media (min-width: 768px) {
  .two-column-intro.right_align .two-column-intro-aside {
    order: 0;
  }
}
.two-column-intro--colour:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.two-column-intro--colour .two-column-intro-main,
.two-column-intro--colour .two-column-intro-aside {
  position: relative;
  z-index: 2;
}
.two-column-intro--colour .title {
  color: #0e1216;
  background: transparent;
  -webkit-background-clip: unset;
  -moz-background-clip: unset;
  -webkit-text-fill-color: unset;
  -moz-text-fill-color: unset;
}
.two-column-intro--colour .two-column-intro-button {
  background-color: #0e1216;
}
.two-column-intro--colour .two-column-intro-button:hover {
  color: #0e1216;
  background-color: #FFFFFF;
}
.two-column-intro.no-trigger .two-column-intro-image {
  transform: scale(1);
  opacity: 1;
}
.two-column-intro.no-trigger .text-button {
  transform: translateX(0);
  opacity: 1;
}
.two-column-intro.no-trigger .button {
  transform: translateX(0);
  opacity: 1;
}
.two-column-intro.no-trigger .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(1) {
  transition-delay: 0;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(2) {
  transition-delay: 0;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(3) {
  transition-delay: 0;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(4) {
  transition-delay: 0;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(5) {
  transition-delay: 0;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(6) {
  transition-delay: 0;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(7) {
  transition-delay: 0;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(8) {
  transition-delay: 0;
}
.two-column-intro.no-trigger .text-wrapper > :nth-child(9) {
  transition-delay: 0;
}
.two-column-intro.in-view .two-column-intro-image {
  transform: scale(1);
  opacity: 1;
}
.two-column-intro.in-view .text-button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.two-column-intro.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.two-column-intro.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.two-column-intro.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.two-column-intro.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.two-column-intro.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.two-column-intro.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.two-column-intro.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.two-column-intro.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.two-column-intro.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.two-column-intro.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.two-column-intro.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
.two-column-intro.in-view ul,
.two-column-intro.in-view ol {
  margin-top: 20px;
}
.two-column-intro.in-view ol {
  list-style-type: decimal;
}
.two-column-intro.in-view li {
  list-style-position: inside;
  padding: 5px 20px;
}
.two-column-intro.in-view li::marker {
  color: #4a7d8e;
}
.two-column-intro .text-button,
.two-column-intro .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.two-column-intro-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-wrapper > * {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.two-column-intro-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .two-column-intro-main {
    width: unset;
    flex: 1;
    gap: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.two-column-intro-main > :first-child {
  margin-top: 0;
}
.two-column-intro-main .top-text {
  background-color: #4a7d8e;
  display: flex;
  padding: 6px 18px;
  border-radius: 500px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.two-column-intro-main h2 {
  text-wrap-style: balance;
  color: #0e1216;
}
.two-column-intro-main p {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  color: #0e1216;
  line-height: 1.5;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  font-size: 1rem;
  font-size: clamp(1rem, 4vmin, 1.4rem);
}
.two-column-intro-main p strong {
  font-weight: 600;
}
.two-column-intro-main p a {
  color: #4a7d8e;
}

.two-column-intro-buttons {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .two-column-intro-buttons {
    flex-direction: row;
  }
}

.two-column-intro-button {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background-color: #4a7d8e;
  transition: color 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .two-column-intro-button {
    font-size: 18px;
  }
}
.two-column-intro-button:first-of-type {
  margin-top: 0;
}
.two-column-intro-button:hover {
  color: #0e1216;
  background-color: #4a7d8e;
}

.two-column-intro-aside {
  display: block;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .two-column-intro-aside {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .two-column-intro-aside {
    width: 40%;
    gap: 40px;
  }
}

.two-column-intro-media {
  position: relative;
  width: 100%;
  height: 250px;
  z-index: 1;
}
@media (min-width: 992px) {
  .two-column-intro-media {
    height: 100%;
  }
}

.two-column-intro-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.two-column-intro-other {
  position: relative;
  width: 100%;
  margin-top: -80px;
  margin-bottom: 50px;
  padding: 0 15px;
  z-index: 2;
}
@media (min-width: 768px) {
  .two-column-intro-other {
    width: 75%;
    max-width: 450px;
    margin: -80px auto 0;
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .two-column-intro-other {
    margin-top: -120px;
  }
}
.two-column-intro-other--image {
  width: 75%;
  margin-left: 12.5%;
}
@media (min-width: 768px) {
  .two-column-intro-other--image {
    width: 60%;
    max-width: 300px;
    margin-left: auto;
  }
}
.two-column-intro-other--image .two-column-intro-other-content {
  height: 0;
  padding: 0 0 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  overflow: hidden;
}

.two-column-intro-other-inner {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  border-width: 10px;
  border-style: solid;
}
@media (min-width: 992px) {
  .two-column-intro-other-inner {
    padding: 20px;
  }
}
.two-column-intro-other-inner:before {
  content: "";
  position: absolute;
  top: 70px;
  left: -10px;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  z-index: 2;
}
@media (min-width: 1300px) {
  .two-column-intro-other-inner:before {
    top: 110px;
  }
}
.two-column-intro-other-inner:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  z-index: 2;
}

.two-column-intro-other-content {
  display: block;
  width: 100%;
  padding: 30px;
  background-color: #FFFFFF;
}

.two-column-intro-other-item {
  display: block;
  width: 100%;
  margin-top: 30px;
}
.two-column-intro-other-item:first-of-type {
  margin-top: 0;
}
.two-column-intro-other-item > :first-child {
  margin-top: 0;
}
.two-column-intro-other-item ul {
  display: block;
  width: 100%;
  margin-top: 15px;
}
.two-column-intro-other-item ul li {
  position: relative;
  display: block;
  color: #0e1216;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1300px) {
  .two-column-intro-other-item ul li {
    font-size: 16px;
  }
}

.text-centered {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 0;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .text-centered {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0;
    margin: 40px 0;
  }
}
@media (min-width: 1300px) {
  .text-centered {
    padding: 80px 0;
  }
}
.text-centered.light {
  background-color: #F8F8FF;
}
.text-centered.medium {
  background-color: #9DF4F3;
}
.text-centered.dark {
  background-color: #2a4258;
}
.text-centered.dark h2 {
  color: #FFFFFF;
}
.text-centered.dark p {
  color: #FFFFFF;
}
.text-centered.dark .text-button .button-label {
  color: #FFFFFF;
}
.text-centered .text-button-outer {
  justify-content: center;
}
.text-centered .text-wrapper {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .text-centered .text-wrapper {
    width: 70%;
    gap: 30px;
  }
}
.text-centered .text-centered-main {
  justify-content: center;
}
.text-centered .text-centered-content {
  width: 100%;
  display: flex;
}
@media (min-width: 768px) {
  .text-centered--flipped .text-image-main {
    order: 1;
  }
}
@media (min-width: 768px) {
  .text-centered--flipped .text-image-aside {
    order: 0;
  }
}
.text-centered--colour:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.text-centered--colour .text-centered-main,
.text-centered--colour .text-image-aside {
  position: relative;
  z-index: 2;
}
.text-centered--colour .title {
  color: #0e1216;
  background: transparent;
  -webkit-background-clip: unset;
  -moz-background-clip: unset;
  -webkit-text-fill-color: unset;
  -moz-text-fill-color: unset;
}
.text-centered--colour .text-image-button {
  background-color: #0e1216;
}
.text-centered--colour .text-image-button:hover {
  color: #0e1216;
  background-color: #FFFFFF;
}
.text-centered.no-trigger .text-image-image {
  transform: scale(1);
  opacity: 1;
}
.text-centered.no-trigger .text-button {
  transform: translateY(0);
  opacity: 1;
}
.text-centered.no-trigger .button {
  transform: translateY(0);
  opacity: 1;
}
.text-centered.no-trigger .text-wrapper > * {
  transform: translateY(0);
  opacity: 1;
}
.text-centered.no-trigger .text-wrapper > :nth-child(1) {
  transition-delay: 0;
}
.text-centered.no-trigger .text-wrapper > :nth-child(2) {
  transition-delay: 0;
}
.text-centered.no-trigger .text-wrapper > :nth-child(3) {
  transition-delay: 0;
}
.text-centered.no-trigger .text-wrapper > :nth-child(4) {
  transition-delay: 0;
}
.text-centered.no-trigger .text-wrapper > :nth-child(5) {
  transition-delay: 0;
}
.text-centered.no-trigger .text-wrapper > :nth-child(6) {
  transition-delay: 0;
}
.text-centered.no-trigger .text-wrapper > :nth-child(7) {
  transition-delay: 0;
}
.text-centered.no-trigger .text-wrapper > :nth-child(8) {
  transition-delay: 0;
}
.text-centered.no-trigger .text-wrapper > :nth-child(9) {
  transition-delay: 0;
}
.text-centered.in-view .text-button {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.text-centered.in-view .button {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.text-centered.in-view .text-wrapper > * {
  transform: translateY(0);
  opacity: 1;
}
.text-centered.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.text-centered.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.text-centered.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.text-centered.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.text-centered.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.text-centered.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.text-centered.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.text-centered.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.text-centered.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
.text-centered .text-button,
.text-centered .button {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.text-centered .text-wrapper > * {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-centered-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .text-centered-main {
    width: unset;
    flex: 1;
    gap: 42px;
  }
}
.text-centered-main > :first-child {
  margin-top: 0;
}
.text-centered-main h2 {
  font-weight: 300;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}
.text-centered-main h2 strong {
  font-weight: 600;
}
.text-centered-main h2:after {
  content: "";
  border-top: 2px solid #4a7d8e;
  width: 40%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
}
.text-centered-main p {
  font-size: clamp(1rem, 4vmin, 1.3rem);
}
@media (min-width: 1300px) {
  .text-centered-main p {
    width: 50%;
  }
}
.text-centered-main p strong {
  font-weight: 600;
}
.text-centered-main p a {
  color: #4a7d8e;
}
.text-centered-main ul {
  margin-top: 20px;
}
.text-centered-main ul li {
  position: relative;
  margin-top: 10px;
  padding-left: 15px;
  font-size: 15px;
  font-weight: 400;
  color: #0e1216;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .text-centered-main ul li {
    font-size: 16px;
  }
}
.text-centered-main ul li:first-of-type {
  margin-top: 0;
}
.text-centered-main ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0e1216;
}
@media (min-width: 768px) {
  .text-centered-main ul li:before {
    top: 10px;
  }
}

.image-caption {
  background-color: #4a7d8e;
  color: #FFFFFF;
  font-size: 1.1rem;
  padding: 6px 25px 6px 30px;
  position: absolute;
  bottom: 30px;
  left: 0;
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
}

.blockquote,
blockquote,
.wp-block-quote {
  position: relative;
  overflow: hidden;
  padding-top: 42px;
  text-wrap: pretty;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='18' fill='none' viewBox='0 0 24 22'%3E%3Cpath fill='%23222F30' d='M18.93 22h-7.504l6.907-22h5.458l-4.86 22ZM7.504 22H0L6.907 0h5.457l-4.86 22Z'/%3E%3C/svg%3E") no-repeat 0px top/20px 18px;
}
@media (min-width: 992px) {
  .blockquote,
  blockquote,
  .wp-block-quote {
    padding-left: 2rem;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='18' fill='none' viewBox='0 0 24 22'%3E%3Cpath fill='%23222F30' d='M18.93 22h-7.504l6.907-22h5.458l-4.86 22ZM7.504 22H0L6.907 0h5.457l-4.86 22Z'/%3E%3C/svg%3E") no-repeat 31px top/20px 18px;
  }
}
.blockquote::before, .blockquote::after,
blockquote::before,
blockquote::after,
.wp-block-quote::before,
.wp-block-quote::after {
  position: absolute;
  color: #4a7d8e;
}
@media (min-width: 992px) {
  .blockquote::after,
  blockquote::after,
  .wp-block-quote::after {
    content: "";
    left: 5px;
    top: 0px;
    width: 3px;
    height: 100%;
    background-color: currentColor;
  }
}
.blockquote p,
blockquote p,
.wp-block-quote p {
  margin: 0;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9735rem + 0.1515vw, 1.125rem);
  font-weight: 400;
}
.blockquote .quote-name,
blockquote .quote-name,
.wp-block-quote .quote-name {
  font-size: clamp(1rem, 0.9735rem + 0.1515vw, 1.125rem);
  margin-top: 30px;
  color: #4a7d8e;
  font-weight: 500;
  display: block;
  text-wrap-style: balance;
}
.blockquote--slashes::before,
blockquote--slashes::before,
.wp-block-quote--slashes::before {
  content: "//";
  transform: rotate(90deg);
  left: 0;
}
@media (min-width: 992px) {
  .blockquote--slashes::after,
  blockquote--slashes::after,
  .wp-block-quote--slashes::after {
    content: "";
    left: 5px;
    top: 25px;
    width: 3px;
    height: 100%;
    background-color: currentColor;
  }
}
@media (min-width: 992px) {
  .blockquote--classic::after,
  blockquote--classic::after,
  .wp-block-quote--classic::after {
    content: "";
    left: 5px;
    top: 0px;
    width: 3px;
    height: 100%;
    background-color: currentColor;
  }
}

.scroll-box {
  max-height: 150px;
  /* adjust to suit your layout */
  overflow-y: auto;
  padding-right: 40px;
  /* Firefox */
}

/* Chrome / Safari / Edge */
.scroll-box::-webkit-scrollbar {
  width: 12px;
  /* Mostly for vertical scrollbars */
  height: 12px;
  /* Mostly for horizontal scrollbars */
}

.scroll-box::-webkit-scrollbar-thumb {
  /* Foreground */
  background: var(--scrollbar-foreground);
  background: #bbbbbb;
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.scroll-box::-webkit-scrollbar-track {
  /* Background */
  background: var(--scrollbar-background);
  background: #F2F2F2;
  border-radius: 999px;
}

.weight-700 {
  font-weight: 700;
}

.weight-600 {
  font-weight: 600;
}

.weight-500 {
  font-weight: 500;
}

.weight-400 {
  font-weight: 400;
}

.weight-300 {
  font-weight: 300;
}

h1 {
  font-style: normal;
  line-height: 1;
  font-size: 3.125rem;
  font-size: clamp(2.125rem, 0.5492rem + 2.5758vw, 3.125rem);
  text-wrap-style: balance;
}

h2 {
  font-style: normal;
  line-height: 1;
  font-size: 2.6rem;
  font-size: clamp(2rem, 1.7879rem + 1.2121vw, 2.6rem);
  text-wrap-style: balance;
}

h3 {
  font-style: normal;
  line-height: 1.3;
  font-size: 1.35rem;
  font-size: clamp(1.35rem, 1.1174rem + 0.7576vw, 1.875rem);
  text-wrap-style: balance;
}

h4 {
  font-style: normal;
  line-height: 1.3;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.947rem + 0.303vw, 1.25rem);
}

h5 {
  font-style: normal;
  line-height: 1;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9735rem + 0.1515vw, 1.125rem);
}

h6 {
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 10%;
  font-size: 1rem;
  font-size: clamp(1rem, 4vmin, 1rem);
}

p {
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9735rem + 0.1515vw, 1.125rem);
}
p strong {
  font-weight: 700;
}
p.large {
  font-size: clamp(1rem, 0.7656rem + 0.75vw, 1.1875rem);
}
p a {
  color: #4a7d8e;
  position: relative;
  font-weight: 700;
}
p a:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: #4a7d8e;
  transition: all 0.3s;
}
p a:hover:before {
  width: 100%;
  right: 0;
  background: #4a7d8e;
}
p .body-2 {
  font-size: 14px;
  line-height: 1.4;
  display: block;
}

body {
  font-size: 14px;
  font-size: clamp(14px, 2.5vmin, 16px);
}

.caption {
  font-size: 12px;
}

h2.heading-underline {
  font-size: 16px;
  font-weight: 400;
  /* 12px */
  letter-spacing: 1.2px;
  position: relative;
  padding: 10px 0;
  display: inline-flex;
  transition: all 0.6s;
  color: #FFFFFF;
  line-height: unset;
}
h2.heading-underline:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #9DF4F3;
  transition: all 0.3s;
  border-radius: 100px;
}
h2.heading-underline .button-label {
  color: #FFFFFF;
  font-weight: 300;
}

.info-cards {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 30px;
  margin: 30px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .info-cards {
    padding: 50px 0;
    margin: 40px 0;
  }
}
@media (min-width: 1300px) {
  .info-cards {
    padding: 80px 0;
  }
}
.info-cards .background-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}
.info-cards .box-intro {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  gap: 30px;
}
@media (min-width: 768px) {
  .info-cards .box-intro {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    padding-bottom: 60px;
  }
}
.info-cards .text-left-buttons {
  width: unset;
  margin-top: 0;
}
.info-cards .text-left-buttons .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.info-cards .text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .info-cards .text-wrapper {
    width: 50%;
  }
}
.info-cards .text-wrapper > :first-child {
  margin-top: 0;
}
.info-cards .text-wrapper h2 {
  text-wrap-style: balance;
  color: #0e1216;
}
.info-cards .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.info-cards .text-wrapper p strong {
  font-weight: 600;
}
.info-cards .text-wrapper p a {
  color: #4a7d8e;
}
.info-cards.in-view .card-heading,
.info-cards.in-view .card-text {
  transform: translateY(0);
  opacity: 1;
}
.info-cards.in-view .card-inner .button {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.info-cards.in-view .card-text {
  transition-delay: 0.2s;
}
.info-cards.in-view .card-image {
  transform: scale(1);
  opacity: 1;
}
.info-cards.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.info-cards.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.info-cards.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.info-cards.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.info-cards.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.info-cards.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.info-cards.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.info-cards.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.info-cards.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.info-cards.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.info-cards.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}

.info-cards-inner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media (min-width: 768px) {
  .info-cards-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1300px) {
  .info-cards-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.info-cards-inner > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s, transform 2.4s;
}
.info-cards-inner > :nth-child(1) {
  transition-delay: 0s !important;
}
.info-cards-inner > :nth-child(2) {
  transition-delay: 0.5s !important;
}
.info-cards-inner > :nth-child(3) {
  transition-delay: 1s !important;
}
.info-cards-inner > :nth-child(4) {
  transition-delay: 1.5s !important;
}
.info-cards-inner > :nth-child(5) {
  transition-delay: 2s !important;
}
.info-cards-inner > :nth-child(6) {
  transition-delay: 2.5s !important;
}
.info-cards-inner > :nth-child(7) {
  transition-delay: 3s !important;
}
.info-cards-inner > :nth-child(8) {
  transition-delay: 3.5s !important;
}
.info-cards-inner > :nth-child(9) {
  transition-delay: 4s !important;
}
.info-cards-inner > :nth-child(10) {
  transition-delay: 4.5s !important;
}
.info-cards-inner > :nth-child(11) {
  transition-delay: 5s !important;
}
.info-cards-inner > :nth-child(12) {
  transition-delay: 5.5s !important;
}
.info-cards-inner > :nth-child(13) {
  transition-delay: 6s !important;
}
.info-cards-inner > :nth-child(14) {
  transition-delay: 6.5s !important;
}
.info-cards-inner > :nth-child(15) {
  transition-delay: 7s !important;
}
.info-cards-inner > :nth-child(16) {
  transition-delay: 7.5s !important;
}
.info-cards-inner > :nth-child(17) {
  transition-delay: 8s !important;
}
.info-cards-inner > :nth-child(18) {
  transition-delay: 8.5s !important;
}
.info-cards-inner > :nth-child(19) {
  transition-delay: 9s !important;
}
.info-cards-inner > :nth-child(20) {
  transition-delay: 9.5s !important;
}
.info-cards-inner > :nth-child(21) {
  transition-delay: 10s !important;
}
.info-cards-inner > :nth-child(22) {
  transition-delay: 10.5s !important;
}
.info-cards-inner > :nth-child(23) {
  transition-delay: 11s !important;
}
.info-cards-inner > :nth-child(24) {
  transition-delay: 11.5s !important;
}
.info-cards-inner > :nth-child(25) {
  transition-delay: 12s !important;
}
.info-cards-inner > :nth-child(26) {
  transition-delay: 12.5s !important;
}
.info-cards-inner > :nth-child(27) {
  transition-delay: 13s !important;
}
.info-cards-inner > :nth-child(28) {
  transition-delay: 13.5s !important;
}
.info-cards-inner > :nth-child(29) {
  transition-delay: 14s !important;
}
.info-cards-inner.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.card {
  display: block;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-top-right-radius: 80px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 0;
}
@media (min-width: 992px) {
  .card {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }
}
.card:before {
  content: " ";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(74, 125, 142, 0.3);
  z-index: 102;
  border-radius: 25px;
  border-bottom-left-radius: 0;
}
@media (min-width: 992px) {
  .card:before {
    border-radius: 25px;
    border-bottom-left-radius: 0;
  }
}
.card.in-view .card-heading,
.card.in-view .card-text {
  transform: translateY(0);
  opacity: 1;
}
.card.in-view .card-inner .button {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.card.in-view .card-text {
  transition-delay: 0.2s;
}
.card.in-view .card-image {
  transform: scale(1);
  opacity: 1;
}

.card-content {
  display: block;
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .card-content {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .card-content {
    width: 100%;
  }
}
.card-content h3 {
  color: #FFFFFF;
  font-size: 60px;
  padding: 0px 0px 0px 30px;
  color: #4a7d8e;
  z-index: 1;
  bottom: 0;
  font-weight: 300;
  font-size: 20px;
  font-weight: 600;
}
.card-content h3 strong {
  font-weight: 600;
}
@media (min-width: 992px) {
  .card-content h3 {
    font-size: 24px;
  }
}

.card-inner {
  padding: 15px 30px 30px 30px;
  display: card;
  width: 100%;
  overflow: hidden;
}
.card-inner .button {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.card-inner p {
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
}

.card-heading,
.card-text {
  transform: translateY(10px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.card-heading {
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .card-heading {
    font-size: 43px;
  }
}
@media (min-width: 992px) {
  .card-heading {
    font-size: 47px;
  }
}
@media (min-width: 1300px) {
  .card-heading {
    font-size: 55px;
  }
}
@media (min-width: 1600px) {
  .card-heading {
    font-size: 60px;
  }
}
.card-heading strong {
  font-weight: 600;
}

.card-text {
  margin-top: 20px;
  font-size: 20px;
}

.card-media {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .card-media {
    width: 100%;
    margin-top: 0;
  }
}
.card-media:after {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  border-top-left-radius: 30px;
  width: 100%;
  z-index: 101;
  bottom: 0;
  background-color: #FFFFFF;
  left: 0;
  bottom: -10px;
}
@media (min-width: 992px) {
  .card-media:after {
    height: 40px;
    border-top-left-radius: 40px;
  }
}
.card-media-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .card-media-inner {
    height: 100%;
  }
}

.card-image {
  transform: scale(1.1);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.v1 .card {
  background-color: #FFFFFF;
}

.v2 {
  overflow: hidden;
}
.v2 .card {
  display: block;
  width: 100%;
  margin-top: 20px;
  min-height: unset;
  position: relative;
  border-radius: 60px;
  border-top-right-radius: 0;
  padding: 15px;
  overflow: hidden;
}
.v2 .card:before {
  display: none;
}
@media (min-width: 992px) {
  .v2 .card {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }
}
.v2 .card .background-image {
  position: absolute;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: 0.5;
}
.v2 .card .card-content {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 50px;
  border-top-right-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  height: 100%;
}
.v2 .card .card-inner {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  gap: 20px;
}
.v2 .card .card-media {
  height: 150px;
  display: none;
}
.v2 .card h3 {
  color: #2a4258;
  padding: 6px 80px 6px 0px;
  font-weight: 300;
  z-index: 1;
}
.v2 .card h3 strong {
  font-weight: 600;
}
.v2 .card .card-icon {
  width: 90px;
  height: 90px;
}
.v2 .card p {
  font-size: 1.1rem;
  color: #2a4258;
}
.v2 .card.in-view .card-heading,
.v2 .card.in-view .card-text {
  transform: translateY(0);
  opacity: 1;
}
.v2 .card.in-view .card-inner .button {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.v2 .card.in-view .card-text {
  transition-delay: 0.2s;
}
.v2 .card.in-view .card-image {
  transform: scale(1);
  opacity: 1;
}

.brochure-website {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.brochure-website .icon {
  width: 35px;
  height: 35px;
}
.brochure-website .icon img {
  width: 35px;
  height: 35px;
}

.member-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
@media (min-width: 768px) {
  .member-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .member-wrapper {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }
}

.members-list {
  position: relative;
  padding: 60px 30px;
  background-color: #F2F2F2;
  width: 100%;
}
@media (min-width: 768px) {
  .members-list {
    padding: 60px 0;
  }
}
.members-list .box-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}
.members-list .text-left-buttons {
  width: unset;
}
.members-list .text-left-buttons .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.members-list .text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .members-list .text-wrapper {
    width: 60%;
  }
}
.members-list .text-wrapper > :first-child {
  margin-top: 0;
}
.members-list .text-wrapper h2 {
  text-wrap-style: balance;
  color: #0e1216;
  font-weight: 300;
}
.members-list .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.members-list .text-wrapper p strong {
  font-weight: 600;
}
.members-list .text-wrapper p a {
  color: #4a7d8e;
}
.members-list.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.members-list.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.members-list.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.members-list.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.members-list.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.members-list.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.members-list.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.members-list.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.members-list.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.members-list.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.members-list.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
.members-list .wpc-filter-chip-name {
  margin-right: 0.5em;
  white-space: nowrap;
  max-width: unset;
  overflow: hidden;
  display: block;
}
.members-list .wpc-filter-layout-dropdown .select2-container .select2-selection--single,
.members-list .wpc-sorting-form .select2-container .select2-selection--single {
  height: auto;
  padding: unset;
}
.members-list .select2-container--default .wpc-filter-everything-dropdown .select2-results__option--highlighted::after,
.members-list .select2-container--default .wpc-filter-everything-dropdown .select2-results__option[aria-selected=true]::after,
.members-list .select2-container--default .wpc-filter-everything-dropdown .select2-results__option[data-selected=true]::after {
  display: none;
}
.members-list .wpc-filters-widget-wrapper {
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  align-items: stretch;
  justify-content: flex-start;
  padding: 10px;
}
@media (min-width: 768px) {
  .members-list .wpc-filters-widget-wrapper {
    border-radius: 9999px;
  }
}
.members-list .wpc-filters-widget-select {
  overflow: hidden;
  border-radius: 9999px;
  padding: 10px 50px 10px 20px !important;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}
.members-list .wpc-filter-content {
  overflow: hidden;
  border-radius: 9999px;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
  background-color: #f0f2f3;
}
.members-list .wpc-filter-header {
  display: none;
}
.members-list .wpc-filters-section {
  margin-bottom: 0em;
  position: relative;
}
.members-list .wpc-filter-content select {
  width: 100% !important;
  margin-bottom: 0 !important;
}
.members-list .ss-main .ss-arrow {
  display: none !important;
}
.members-list .wpc-instead-of-posts-found {
  display: none;
}
.members-list .wpc-horizontal-layout .wpc-filters-widget-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 15px;
  margin-right: unset;
}
@media (min-width: 768px) {
  .members-list .wpc-horizontal-layout .wpc-filters-widget-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.members-list .wpc-search-field-wrapper label {
  display: none;
}
.members-list .wpc-horizontal-layout .wpc-filters-section:not(.wpc-filter-layout-submit-button),
.members-list .wpc-horizontal-layout.wpc-horizontal-cols-3 .wpc-filters-section:not(.wpc-filter-layout-submit-button) {
  max-width: unset;
  /* margin-right: 2%; */
  width: 100%;
}

.members-list--completed {
  background-color: #B2B2B2;
}
.members-list--completed .members-list-heading span {
  color: #666666;
}

.members-list-heading {
  width: 100%;
  margin-bottom: 35px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .members-list-heading {
    margin-bottom: 50px;
  }
}
.members-list-heading span {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .members-list-heading span {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .members-list-heading span {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .members-list-heading span {
    font-size: 20px;
  }
}

.member-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 0px;
  border-radius: 60px;
  padding: 30px;
  position: relative;
  color: #d9dbdd;
  color: #FFFFFF;
  gap: 30px;
}
.member-item:nth-child(7n+1), .member-item:nth-child(7n+5) {
  color: #FFFFFF;
}
.member-item:nth-child(7n+1) .item-bg, .member-item:nth-child(7n+5) .item-bg {
  background-color: #FFFFFF;
}
.member-item:nth-child(7n+1) .btn_bg path, .member-item:nth-child(7n+5) .btn_bg path {
  fill: #FFFFFF;
}
.member-item:nth-child(7n+1) .categories .category, .member-item:nth-child(7n+5) .categories .category {
  color: #2a4258;
  border: 0.5px solid #2a4258;
}
.member-item:nth-child(6n+2), .member-item:nth-child(6n+6) {
  color: #d9dbdd;
}
.member-item:nth-child(6n+2) .item-bg, .member-item:nth-child(6n+6) .item-bg {
  background-color: #d9dbdd;
}
.member-item:nth-child(6n+2) .btn_bg path, .member-item:nth-child(6n+6) .btn_bg path {
  fill: #d9dbdd;
}
.member-item:nth-child(6n+2) .categories .category, .member-item:nth-child(6n+6) .categories .category {
  color: #2a4258;
  border: 0.5px solid #2a4258;
}
.member-item:nth-child(6n+3), .member-item:nth-child(6n+4) {
  color: #4a7d8e;
}
.member-item:nth-child(6n+3) .item-bg, .member-item:nth-child(6n+4) .item-bg {
  background-color: #4a7d8e;
}
.member-item:nth-child(6n+3) .btn_bg path, .member-item:nth-child(6n+4) .btn_bg path {
  fill: #4a7d8e;
}
.member-item:nth-child(6n+3) h3.member-name, .member-item:nth-child(6n+4) h3.member-name {
  color: #FFFFFF;
}
.member-item:nth-child(6n+3) p, .member-item:nth-child(6n+4) p {
  color: #FFFFFF;
}
.member-item:nth-child(6n+3) .categories .category, .member-item:nth-child(6n+4) .categories .category {
  color: #9DF4F3;
  border: 0.5px solid #9DF4F3;
}
@media (min-width: 992px) {
  .member-item {
    align-items: stretch;
  }
}
.member-item .item-bg {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
  z-index: 0;
  clip-path: polygon(100% 0, 100% calc(100% - 75px), calc(100% - 75px) calc(100% - 75px), calc(100% - 75px) 100%, 0 100%, 0 0);
}
.member-item .region {
  background-color: #F2F2F2;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 10px 15px;
  padding: 6px 15px;
  font-size: 0.8em;
  color: #2a4258;
}
.member-item .member-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.member-item .member-title-wrap h3 {
  font-weight: 600;
  text-transform: none;
  color: #2a4258;
}
.member-item .item_btn {
  width: 87px;
  height: 90px;
}
.member-item .btn_icon {
  background-color: transparent;
  overflow: hidden;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center;
  transition-duration: var(--button-transition-duration);
  transition-property: transform;
  transition-timing-function: var(--button-transition-timing-function);
  justify-content: center;
  align-items: center;
}
.member-item .btn_icon .arrow {
  position: absolute;
  z-index: 2;
}
.member-item .btn_icon:before {
  background-color: transparent;
  background-image: var(--button-blob-icon-image-hover), var(--button-blob-icon-image);
  background-repeat: no-repeat;
  background-position: var(--button-blob-icon-position);
  background-size: var(--button-blob-icon-size);
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition-duration: var(--button-transition-duration);
  transition-property: background-position;
  transition-timing-function: var(--button-transition-timing-function);
  z-index: 2;
}
.member-item .btn_bg {
  width: 100%;
  height: 100%;
}
.member-item .btn_el {
  pointer-events: none;
  width: 51px;
  height: 48px;
}
.member-item .item_btn,
.member-item .btn_el,
.member-item .btn_bg {
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.member-item .btn-bg {
  width: 100%;
  height: 100%;
}
.member-item .btn_bg path {
  fill: #FFFFFF;
}
.member-item .btn_bg path {
  fill: #FFFFFF;
}
.member-item .company-logo {
  padding: 10px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
}
.member-item .company-logo img {
  width: auto;
  max-width: 80%;
  filter: grayscale(100%);
  height: auto;
  max-height: 60px;
}
.member-item .member-information {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 1;
}
.member-item .member-information .info {
  padding: 0 10px;
  color: #2a4258;
  display: flex;
  flex-direction: column;
  width: 33.3333%;
}
.member-item .member-information .info h2 {
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .member-item .member-information .info h2 {
    font-size: 19px;
  }
}
.member-item .member-information .info span {
  font-size: 11px;
  line-height: 1.1;
  text-transform: lowercase;
}
@media (min-width: 992px) {
  .member-item .member-information .info span {
    font-size: 12px;
  }
}

.grid-items-filter {
  width: 100%;
}

.gm-style .gm-style-iw-c {
  padding: 0 !important;
}

.gm-style .gm-style-iw-d {
  max-height: none !important;
  overflow: auto !important;
}

.midtown-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 200px;
}
.midtown-info .title-text {
  max-width: 90%;
}
.midtown-info.completed .member-title {
  background-color: #666666;
}
.midtown-info.current .member-title {
  background-color: #84C2C4;
}
.midtown-info span {
  max-width: 200px;
  font-size: 0;
}
.midtown-info span img {
  max-width: 200px;
  height: auto;
}
.midtown-info .member-title {
  padding: 5px 10px;
  background-color: #84C2C4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 200;
  text-transform: uppercase;
}
.midtown-info .member-title:after {
  content: "";
  background-image: url("../../img/icons/map-arrow.svg");
  background-size: 17px 11px;
  width: 17px;
  height: 11px;
}

.member-item-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 1300px) {
  .member-item-image {
    width: 100%;
  }
}

.member-item-content {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-right: 40px;
}
.member-item-content .categories {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  row-gap: 6px;
  flex-wrap: wrap;
}
.member-item-content .categories .category {
  border-radius: 15px;
  padding: 6px 11px;
  font-size: 0.7em;
  color: #2a4258;
  border: 0.5px solid #2a4258;
}

.member-title-wrap {
  width: 100%;
}
.member-title-wrap p {
  margin-top: 20px;
  font-size: 15px;
  color: #2a4258;
  font-weight: 300;
}
@media (min-width: 768px) {
  .member-title-wrap p {
    font-size: 16px;
  }
}
.member-title-wrap span {
  color: #2a4258;
}

.member-name {
  font-size: 14px;
  font-weight: 300;
  color: #666666;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .member-name {
    font-size: 20px;
  }
}

.member-location {
  font-size: 11px;
  font-weight: 400;
  color: #4a7d8e;
  text-transform: uppercase;
}

.member-status {
  display: inline-block;
  margin-top: -1px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.member-key {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.member-key.national {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/national.svg");
}
.member-key.regional {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/regional.svg");
}
.member-key.last-mile {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/last-mile.svg");
}
.member-key.last-mile.national {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/last-mile-national.svg");
}
.member-key.last-mile.regional {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/last-mile-regional.svg");
}
.member-key.corporate {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/corporate.svg");
}
.member-key.portfolio {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/portfolio.svg");
}

.permalink {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.member-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .member-logos {
    flex: 1;
    justify-content: flex-end;
    margin-top: 0;
  }
}
.member-logos img {
  display: block;
  max-width: 120px;
  width: auto;
  height: 40px;
  margin-right: 15px;
}
.member-logos img:last-of-type {
  margin-right: 0;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: none;
  margin-bottom: 15px;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
  box-shadow: none;
}

.form-control:focus {
  border: 1px solid #34495e;
}

.select2.select2-container {
  width: 100% !important;
}

.select2.select2-container .select2-selection {
  border: 1px solid #ccc;
  border-radius: 3px;
  height: 34px;
  margin-bottom: 15px;
  outline: none;
  transition: all 0.15s ease-in-out;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
  color: #333;
  line-height: 32px;
  padding-right: 33px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
  background-color: #F2F2F2;
  border-left: 1px solid #ccc;
  border-radius: 0 3px 3px 0;
  height: 32px;
  width: 33px;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
  background-color: #F2F2F2;
  margin-bottom: 0;
  border: 0;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
  border-radius: 0 3px 0 0;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
  border: 1px solid #34495e;
}

.select2.select2-container.select2-container--focus .select2-selection {
  border: 1px solid #34495e;
}

.select2.select2-container .select2-selection--multiple {
  height: auto;
  min-height: 34px;
}

.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin-top: 0;
  height: 32px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block;
  padding: 0 4px;
  line-height: 29px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: #F2F2F2;
  border: 0px solid #ccc;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}

.select2-container .select2-dropdown {
  background: transparent;
  border: none;
  margin-top: 10px;
}

.select2-container .select2-dropdown .select2-search {
  padding: 0;
}

.select2-container .select2-dropdown .select2-search input {
  outline: none;
  border: 1px solid #4a7d8e;
  padding: 8px 10px !important;
}

.select2-container .select2-dropdown .select2-results {
  padding: 0;
}

.select2-container .select2-dropdown .select2-results ul {
  background: #fff;
  border: 1px solid #4a7d8e;
  border-radius: 15px;
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #4a7d8e;
}

.big-drop {
  width: 600px !important;
}

.select2.select2-container .select2-selection {
  border: 0px solid #ccc;
  border-radius: 9999px;
  height: 34px;
  margin-bottom: 0px;
  outline: none;
  transition: all 0.15s ease-in-out;
}

.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single,
.wpc-sorting-form .select2-container--default .select2-selection--single {
  border-color: #c9d1e0;
  border-radius: 9999px !important;
}

.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single .select2-selection__rendered,
.wpc-sorting-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: inherit;
  color: inherit;
  display: flex;
  padding: 6px 16px;
  background-color: #f6f6f6;
}

.wpc-help-tip:hover::after,
.wpc-filter-layout-dropdown .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.wpc-sorting-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.widget_wpc_sorting_widget .select2-container--default .select2-selection--single:hover .select2-selection__arrow b,
.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single:hover .select2-selection__arrow b,
.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single:hover,
.select2-container--default.select2-container--open .wpc-filter-everything-dropdown.select2-dropdown,
.wpc-sorting-form .select2-container--open .select2-selection--single:hover,
.widget_wpc_sorting_widget .select2-container--open .select2-selection--single,
.wpc-filter-layout-dropdown .select2-container--open .select2-selection--single,
.wpc-filters-widget-content input[type=email]:focus,
.wpc-filters-widget-content input[type=number]:focus,
.wpc-filters-widget-content input[type=password]:focus,
.wpc-filters-widget-content input[type=search]:focus,
.wpc-filters-widget-content input[type=tel]:focus,
.wpc-filters-widget-content input[type=text]:focus,
.wpc-filters-widget-content input[type=url]:focus,
.wpc-filters-widget-content input[type=email]:active,
.wpc-filters-widget-content input[type=number]:active,
.wpc-filters-widget-content input[type=password]:active,
.wpc-filters-widget-content input[type=search]:active,
.wpc-filters-widget-content input[type=tel]:active,
.wpc-filters-widget-content input[type=text]:active,
.wpc-filters-widget-content input[type=url]:active,
.wpc-filter-collapsible .wpc-filter-title button:hover .wpc-open-icon,
.wpc-filter-collapsible-reverse.wpc-filter-collapsible.wpc-closed .wpc-filter-title button:hover .wpc-open-icon,
.wpc-filter-collapsible.wpc-closed .wpc-filter-title button:hover .wpc-open-icon,
.wpc-filter-has-selected.wpc-closed .wpc-filter-title button:hover {
  border-color: #4a7d8e !important;
}

.select2-container--focus {
  border: 0 !important;
}

.wpc-help-tip:hover::after,
.wpc-filter-layout-dropdown .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.wpc-sorting-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.widget_wpc_sorting_widget .select2-container--default .select2-selection--single:hover .select2-selection__arrow b,
.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single:hover .select2-selection__arrow b,
.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single:hover,
.select2-container--default.select2-container--open .wpc-filter-everything-dropdown.select2-dropdown,
.wpc-sorting-form .select2-container--open .select2-selection--single:hover,
.widget_wpc_sorting_widget .select2-container--open .select2-selection--single,
.wpc-filter-layout-dropdown .select2-container--open .select2-selection--single,
.wpc-filters-widget-content input[type=email]:focus,
.wpc-filters-widget-content input[type=number]:focus,
.wpc-filters-widget-content input[type=password]:focus,
.wpc-filters-widget-content input[type=search]:focus,
.wpc-filters-widget-content input[type=tel]:focus,
.wpc-filters-widget-content input[type=text]:focus,
.wpc-filters-widget-content input[type=url]:focus,
.wpc-filters-widget-content input[type=email]:active,
.wpc-filters-widget-content input[type=number]:active,
.wpc-filters-widget-content input[type=password]:active,
.wpc-filters-widget-content input[type=search]:active,
.wpc-filters-widget-content input[type=tel]:active,
.wpc-filters-widget-content input[type=text]:active,
.wpc-filters-widget-content input[type=url]:active,
.wpc-filter-collapsible .wpc-filter-title button:hover .wpc-open-icon,
.wpc-filter-collapsible-reverse.wpc-filter-collapsible.wpc-closed .wpc-filter-title button:hover .wpc-open-icon,
.wpc-filter-collapsible.wpc-closed .wpc-filter-title button:hover .wpc-open-icon,
.wpc-filter-has-selected.wpc-closed .wpc-filter-title button:hover .wpc-open-icon {
  border-color: #4a7d8e;
}

.select2-dropdown {
  background: #F2F2F2 !important;
  border: 1px solid #aaa;
  padding: 15px !important;
  border-radius: 20px !important;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 90;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.select2-container--default .wpc-filter-everything-dropdown .select2-search--dropdown {
  padding: 10px 0 !important;
}

.select2-container--default .wpc-filter-everything-dropdown .select2-results__option[aria-disabled=true],
.select2-container--default .wpc-filter-everything-dropdown .select2-results__option[aria-selected=true],
.select2-container--default .wpc-filter-everything-dropdown .select2-results__option[data-selected=true],
.select2-container--default .wpc-filter-everything-dropdown .select2-search--dropdown .select2-search__field:focus {
  background-color: #ffffff !important;
  color: inherit;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
  background-color: #F2F2F2 !important;
  border-left: 1px solid #ccc;
  border-radius: 0 3px 3px 0;
  height: 32px;
  width: 33px;
}

.select2.select2-container.select2-container--focus .select2-selection {
  border: 0px solid #34495e !important;
}

.wpc-filter-chips-list a,
body .wpc-filter-chips-list li.wpc-filter-chip a {
  text-decoration: none;
  font-weight: 400;
  border-radius: 50px;
  padding: 1px 10px 2px;
  display: inline-block;
  outline: 0;
  border: 2px solid #d8d8d8;
  position: relative;
  color: #333;
  height: 100%;
}

body .wpc-filter-chips-list li.wpc-chip-reset-all a {
  border-color: #2a4258 !important;
  color: inherit;
  background-color: #2a4258;
  color: #FFFFFF !important;
  border: 2px solid #2a4258 !important;
}

body .wpc-filter-chips-list li.wpc-filter-chip:not(.wpc-chip-reset-all) a {
  border-color: #2a4258 !important;
  border: 2px solid #2a4258 !important;
}

.sidebar .widget .wpc-filter-everything-dropdown li.select2-results__option > span,
.wpc-filter-everything-dropdown .select2-results__option > span,
.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single .select2-selection__rendered > span,
.wpc-sorting-form .select2-container--default .select2-selection--single .select2-results__option,
.wpc-sorting-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  display: flex;
  align-items: center;
  min-height: 32px;
  width: 100%;
  justify-content: space-between;
}

.wpc-edit-filter-set {
  display: none;
}

.chips-wrapper {
  padding: 40px 0;
}
.chips-wrapper .wpc-custom-selected-terms {
  display: block !important;
}

body.single-company {
  background-image: linear-gradient(-225deg, #9DF4F3 0%, #4A7D8E 51%, #2A4258 100%);
}

.title-section {
  width: 100%;
}
.title-section.in-view .title-wrapper:before {
  width: 100%;
}
@media (min-width: 992px) {
  .title-section.single-company .title-wrapper {
    margin: 80px 0px 30px 0px;
  }
}

.single-company-wrap {
  position: relative;
  padding: 0px 30px 60px;
  overflow: hidden;
}
@media (min-width: 1300px) {
  .single-company-wrap {
    padding: 0 0 80px 0;
  }
}

.text-image-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .text-image-section {
    padding-top: 180px;
  }
}
.text-image-section.in-view .portfolio-information .info {
  opacity: 1;
  transform: translateY(0);
}
.text-image-section.in-view .portfolio-information .info:before {
  width: 48px;
}

.single-member-wrapper {
  background-color: #FFFFFF;
  border-radius: 40px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  margin-inline: 20px;
}
@media (min-width: 992px) {
  .single-member-wrapper {
    margin-inline: 0px;
  }
}
.single-member-wrapper .contact-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 20px;
  border-radius: 40px;
}
.single-member-wrapper .text-image-section-text {
  padding-inline: 30px;
}
@media (min-width: 992px) {
  .single-member-wrapper .text-image-section-text {
    padding-inline: 0px;
  }
}
.single-member-wrapper .button-group {
  display: flex;
  gap: 15px;
}
.single-member-wrapper .button-group.desktop {
  display: none;
}
@media (min-width: 992px) {
  .single-member-wrapper .button-group.desktop {
    display: flex;
  }
}
@media (min-width: 992px) {
  .single-member-wrapper .button-group.mobile {
    display: none;
  }
}
.single-member-wrapper .title-wrapper {
  padding: 20px 30px;
  position: relative;
  width: 100%;
  background-color: #F2F2F2;
  margin-bottom: 40px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .single-member-wrapper .title-wrapper {
    padding: 20px 40px;
  }
}
.single-member-wrapper .title-wrapper h1 {
  font-weight: 500;
  font-size: 2.5rem;
  font-size: clamp(1.5rem, 4vmin, 2rem);
}
.single-member-wrapper .title-wrapper p {
  margin-bottom: 30px;
}
.single-member-wrapper .team-list {
  display: flex;
  gap: 20px;
  width: 100%;
}
.single-member-wrapper .member-profile {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
  min-width: 33.333%;
  padding: 15px;
  background-color: #F2F2F2;
  border-radius: 20px;
}
.single-member-wrapper .member-profile .profile-image {
  border: 2px solid #FFFFFF;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
}
.single-member-wrapper .member-profile .profile-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-member-wrapper .member-profile .details {
  text-align: center;
}
.single-member-wrapper .member-profile .details p {
  font-size: clamp(0.9rem, 4vmin, 0.9rem);
}
.single-member-wrapper .company-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.single-member-wrapper .company-logo img {
  width: 230px;
  max-width: 230px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 70px;
  -o-object-position: left;
     object-position: left;
}
.single-member-wrapper .logo-categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 30px;
  margin-inline: 0px;
}
@media (min-width: 992px) {
  .single-member-wrapper .logo-categories {
    margin-inline: 40px;
    gap: 30px;
  }
}
.single-member-wrapper .company-information {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .single-member-wrapper .company-information {
    margin-bottom: 0;
  }
}
.single-member-wrapper .company-information h3 {
  font-size: clamp(1rem, 4vmin, 1.3rem);
  font-weight: 500;
  margin-bottom: 15px;
}
.single-member-wrapper .company-information p {
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
  margin-bottom: 15px;
}
.single-member-wrapper .company-information p strong {
  font-weight: 700;
}
.single-member-wrapper .company-information p:last-of-type {
  margin-bottom: 0px;
}
.single-member-wrapper .company-information p.large {
  font-size: clamp(1rem, 4vmin, 1.1rem);
}
.single-member-wrapper .company-information p a {
  color: #4a7d8e;
  position: relative;
  font-weight: 700;
}
.single-member-wrapper .company-information p a:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: #4a7d8e;
  transition: all 0.3s;
}
.single-member-wrapper .company-information p a:hover:before {
  width: 100%;
  right: 0;
  background: #4a7d8e;
}
.single-member-wrapper .company-information p .body-2 {
  font-size: 14px;
  line-height: 1.4;
  display: block;
}
.single-member-wrapper .company-information ul {
  margin-bottom: 15px;
}
.single-member-wrapper .company-information ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
}
.single-member-wrapper .company-information ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .single-member-wrapper .company-information ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .single-member-wrapper .company-information ul li::before {
    top: 10px;
  }
}
.single-member-wrapper .company-information ol {
  counter-reset: ordered-list;
  margin-bottom: 15px;
}
.single-member-wrapper .company-information ol li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: 1rem;
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
}
.single-member-wrapper .company-information ol li::before {
  content: counter(ordered-list) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  counter-increment: ordered-list;
  color: #4a7d8e;
}
.single-member-wrapper .company-information a {
  color: #4a7d8e;
}
@media (min-width: 1300px) {
  .single-member-wrapper .text-image-section-text {
    display: grid;
    grid-template-columns: 25fr 50fr 25fr;
    gap: 100px;
  }
}
.single-member-wrapper .categories {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  row-gap: 6px;
  flex-wrap: wrap;
}
.single-member-wrapper .categories .category {
  border-radius: 9999px;
  padding: 6px 11px;
  font-size: 0.7em;
  color: #2a4258;
  border: 1px solid #2a4258;
}

.wpc-search-field {
  border-radius: 9999px !important;
}

.company-form {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.company-form .open-modal {
  display: flex;
  margin-top: 40px;
  justify-content: flex-end;
}
.company-form p {
  font-style: normal;
  font-weight: 300;
  line-height: 1.3;
  font-size: 1rem;
  font-size: clamp(0.9rem, 4vmin, 1rem);
  margin-bottom: 15px;
}
.company-form p:last-of-type {
  margin-bottom: 0px;
}
.company-form h3 {
  font-size: clamp(1rem, 4vmin, 1.3rem);
  font-weight: 500;
  margin-bottom: 15px;
}
.company-form ul {
  margin-bottom: 15px;
}
.company-form ul li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: clamp(0.9rem, 4vmin, 1rem);
}
.company-form ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .company-form ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .company-form ul li::before {
    top: 10px;
  }
}
.company-form .nf-multi-cell .nf-cell {
  float: left;
  padding: 0;
}
@media (min-width: 992px) {
  .company-form .nf-multi-cell .nf-cell {
    padding: 0 7.5px;
  }
}
.company-form .nf-row:last-of-type nf-cells {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 1300px) {
  .company-form .nf-row:last-of-type nf-cells #nf-field-88-wrap {
    width: 450px;
    max-width: unset;
  }
}
.company-form .nf-row:last-of-type nf-cells #nf-field-89-container {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .company-form .nf-form-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.company-form .marketing-info {
  color: #0e1216;
  margin-top: 20px !important;
}
.company-form .disclaimer {
  color: #0e1216;
  margin-top: 40px !important;
  font-size: 13px;
}
.company-form .disclaimer a {
  font-weight: 600;
  color: inherit;
}
.company-form .disclaimer p:first-of-type {
  margin-bottom: 10px;
}
.company-form .checkbox-wrap .nf-field-label label {
  font-size: 11px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .company-form .checkbox-wrap .nf-field-label label {
    font-size: 13px;
  }
}
.company-form .textarea-container {
  width: 100%;
}
.company-form .nf-pass .ninja-forms-field {
  border-color: #0e1216 !important;
  transition: all 0.5s;
}
.company-form .nf-pass.field-wrap .nf-field-element:after {
  color: #4a7d8e;
  font-family: FontAwesome;
  font-size: 30px;
  content: "\f058";
  position: absolute;
  top: unset;
  right: 15px;
  height: unset;
  line-height: unset;
  transition: all 0.5s;
}
.company-form .nf-form-content select.ninja-forms-field {
  color: #0e1216;
}
.company-form .nf-form-content select.ninja-forms-field option {
  color: #0e1216;
}
.company-form .list-select-wrap select:active + div,
.company-form .list-select-wrap select:focus + div {
  background: transparent !important;
  border-color: #0e1216 !important;
  transition: all 0.5s;
}
.company-form .nf-form-content .list-select-wrap .nf-field-element > div:focus,
.company-form .nf-form-content input:not([type=button]):focus,
.company-form .nf-form-content textarea:focus {
  background: transparent;
  border-color: #0e1216;
  color: #0e1216;
  outline: none;
  transition: all 0.5s;
}
.company-form .nf-error-wrap {
  display: none !important;
}
.company-form .list-select-wrap div:after {
  color: #0e1216;
  transition: all 0.5s;
  right: 0px !important;
}
.company-form .form-column {
  width: 100%;
}
@media (min-width: 992px) {
  .company-form .form-column {
    width: 48%;
  }
}
.company-form .nf-field-container {
  display: block;
}
.company-form .nf-field-element {
  display: flex;
  align-items: center;
}
.company-form .nf-field-description {
  margin-top: 7px !important;
}
@media (min-width: 992px) {
  .company-form .nf-field-description {
    margin-top: 0px !important;
  }
}
.company-form .nf-field-description p {
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 400;
  text-align: left;
}
.company-form p {
  text-align: left;
}
.company-form .thank-you-text {
  color: #0e1216 !important;
}
.company-form .one-half {
  margin-bottom: 5px !important;
}
@media (min-width: 768px) {
  .company-form .one-half {
    margin-bottom: 15px !important;
  }
}
.company-form .full {
  width: 100%;
}
.company-form .nf-field-container {
  margin-top: 0;
  margin-bottom: 0;
}
.company-form .nf-form-title {
  display: none;
}
.company-form .nf-response-msg {
  border: 1px solid #4a7d8e;
  padding: 20px;
}
.company-form .nf-response-msg p {
  color: #FFFFFF;
  text-align: center;
}
.company-form .textarea-wrap .nf-field-label {
  font-weight: 400;
  font-size: 16px;
  display: block;
  display: none;
}
.company-form .nf-form-content {
  padding: 0;
}
.company-form .nf-form-content textarea.ninja-forms-field {
  height: 60px;
  border-bottom: 0px solid rgba(14, 18, 22, 0.5);
  padding: 15px;
}
.company-form .nf-form-wrap .field-wrap > div input[type=checkbox] {
  background-color: #0e1216;
}
.company-form .nf-before-form-content {
  display: none;
  padding: 0;
}
.company-form .nf-field-label {
  display: none;
}
.company-form .checkbox-container label {
  font-weight: 400;
  text-align: left;
  line-height: 1.2;
  font-size: 11px;
  color: #FFFFFF;
}
.company-form .checkbox-container.label-right label {
  margin: 0 !important;
  display: flex;
  padding: 0 0 0 14px;
  align-items: center;
  margin-left: 0;
}
.company-form .nf-field-description {
  margin-right: 0;
  order: 15;
  position: absolute;
  left: 28px;
}
.company-form .label-right .nf-field-label {
  padding-left: 0px !important;
}
.company-form .checkbox-container.label-right label:before {
  left: 5px;
  top: 0;
}
.company-form .checkbox-container.label-right .field-wrap {
  display: flex;
  align-items: center;
}
.company-form .checkbox-wrap .nf-field-element label:before,
.company-form .checkbox-wrap .nf-field-label label:before,
.company-form .listcheckbox-wrap .nf-field-element label:before,
.company-form .listcheckbox-wrap .nf-field-label label:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f00c";
  position: absolute;
  font-size: 30px;
  bottom: auto;
  left: 3px !important;
  top: 0 !important;
  font-size: 14px;
  z-index: 2;
}
.company-form .checkbox-wrap .nf-field-element label.nf-checked-label:before,
.company-form .checkbox-wrap .nf-field-label label.nf-checked-label:before,
.company-form .listcheckbox-wrap .nf-field-element label.nf-checked-label:before,
.company-form .listcheckbox-wrap .nf-field-label label.nf-checked-label:before {
  color: black;
  font-family: "fontawesome";
  font-weight: 400;
  content: "\f00c";
  left: 2px !important;
  top: unset !important;
  font-size: 14px;
  transition: opacity 1s;
}
@media only screen and (max-width: 800px) {
  .company-form .nf-field-container .checkbox-wrap .nf-field-label label:after {
    left: 0px !important;
    top: unset !important;
  }
}
.company-form .checkbox-wrap .nf-field-element label:after,
.company-form .checkbox-wrap .nf-field-label label:after,
.company-form .listcheckbox-wrap .nf-field-element label:after,
.company-form .listcheckbox-wrap .nf-field-label label:after {
  border: 1px solid #2a4258 !important;
  border-radius: 10px;
  background-color: #e5e9ea;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: unset;
  font-size: 16px;
  border-radius: 2px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
}
.company-form .nf-form-content .listselect-wrap .nf-field-element div,
.company-form .nf-form-content input.ninja-forms-field,
.company-form .nf-form-content select.ninja-forms-field:not([multiple]) {
  height: unset;
}
.company-form .nf-after-form {
  font-size: 13px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
}
.company-form .nf-form-content .list-select-wrap .nf-field-element > div,
.company-form .nf-form-content textarea {
  border: 0;
  font-weight: 400;
  color: #666666;
  background-color: transparent;
  font-size: 13px;
  padding: 10px 15px 10px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  background-color: white;
  border-radius: 20px;
  /* border-radius: 10px; */
}
.company-form .nf-form-content .list-select-wrap .nf-field-element > div ::-moz-placeholder, .company-form .nf-form-content textarea ::-moz-placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #4a7d8e;
  opacity: 0.8 !important;
}
.company-form .nf-form-content .list-select-wrap .nf-field-element > div ::placeholder,
.company-form .nf-form-content textarea ::placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #4a7d8e;
  opacity: 0.8 !important;
}
.company-form .nf-form-content input:not([type=button]) {
  border: 0;
  font-weight: 400;
  color: #666666;
  background-color: transparent;
  font-size: 13px;
  padding: 10px 15px 10px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  background-color: white;
  border-radius: 200px;
  /* border-radius: 10px; */
}
.company-form .nf-form-content input:not([type=button]) ::-moz-placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #666666;
  opacity: 0.4 !important;
}
.company-form .nf-form-content input:not([type=button]) ::placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #666666;
  opacity: 0.4 !important;
}
.company-form ::-moz-placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #666666;
  opacity: 0.4 !important;
}
.company-form ::placeholder {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #666666;
  opacity: 0.4 !important;
}
.company-form .nf-error .ninja-forms-field {
  border-color: #0e1216 !important;
  font-size: 13px;
  margin-top: 30px;
  transition: all 0.5s;
}
.company-form .nf-form-content .listselect-wrap .nf-field-element div,
.company-form .nf-form-content .ninja-forms-field {
  font-size: 13px;
  margin: 0;
  padding: 12px 15px;
  color: #666666 !important;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
}
.company-form .nf-form-content .list-select-wrap > div div:after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url("../../img/icons/select-arrow.svg");
  background-size: contain;
  top: 20px;
  bottom: unset;
  right: 15px !important;
  position: absolute;
  z-index: 10;
}
.company-form select.nf-element {
  line-height: 1.3;
}
.company-form select.nf-form-fields {
  font-size: 13px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #0e1216;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 15px 15px !important;
}
.company-form .nf-field-label label {
  font-size: 16px;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: #0e1216;
  font-weight: 400;
  margin-top: 20px;
  display: block;
}
.company-form .nf-form-errors {
  display: none !important;
}
.company-form .nf-error .nf-error-msg {
  color: #4a7d8e;
  font-size: 13px;
  margin-top: 30px;
}
.company-form .nf-error.field-wrap .nf-field-element:after {
  color: #0e1216;
  width: auto;
  font-size: 12px;
  right: 20px;
}
.company-form .nf-error-msg,
.company-form .ninja-forms-req-symbol {
  color: #4a7d8e;
  font-size: 13px;
  margin-top: 30px;
}
.company-form nf-cells {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .company-form nf-cells {
    flex-direction: row;
    align-items: center;
  }
}
.company-form .last-element {
  margin-top: 0;
}
@media (min-width: 992px) {
  .company-form .last-element {
    margin-top: 20px;
  }
}
.company-form .submit-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.company-form .nf-form-content .list-select-wrap .nf-field-element > div:focus,
.company-form .nf-form-content input:not([type=button]):focus,
.company-form .nf-form-content textarea:focus {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  border-bottom: 0 solid #0e1216;
}
.company-form .submit-wrap {
  position: relative;
  display: inline-flex;
}
.company-form .submit-wrap .nf-field-element {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  background-color: #4a7d8e;
  color: #9DF4F3 !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background-color 0.4s, color 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company-form .submit-wrap .nf-field-element:hover {
  font-weight: 600;
}
.company-form .submit-wrap .nf-field-element:hover input[type=submit] {
  font-weight: 600;
  color: #2a4258 !important;
}
.company-form .submit-wrap .nf-field-element input[type=submit] {
  opacity: 1;
  line-height: 1.2;
  padding: 0;
  cursor: pointer;
  border: 0px !important;
  color: #FFFFFF !important;
  font-family: "Figtree", sans-serif !important;
  background-color: transparent;
  transition: background-color 0.4s, color 0.4s, transform 0.4s;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 9999px;
  display: flex;
  position: relative;
  padding: 10px 30px;
  border: 1px solid #4a7d8e;
  font-size: 12px;
  letter-spacing: 1.2px;
}
.company-form .submit-wrap .nf-field-element input[type=submit] span {
  position: relative;
  transition: transform 0.4s ease;
}
.company-form .submit-wrap .nf-field-element input[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
  background-color: #4a7d8e;
}
.company-form .submit-wrap .nf-field-element:hover::before {
  background-color: transparent;
}
.company-form .submit-wrap .nf-field-element:hover .button-label {
  color: #0e1216;
}
.company-form .submit-wrap .nf-field-element:hover {
  font-weight: 600;
  background-color: #FFFFFF;
}
.company-form .checkbox-container .nf-field-element input {
  display: inherit;
  opacity: 0;
}
.company-form .checkbox-wrap .nf-field-element label:before,
.company-form .checkbox-wrap .nf-field-label label:before,
.company-form .listcheckbox-wrap .nf-field-element label:before,
.company-form .listcheckbox-wrap .nf-field-label label:before {
  opacity: 0;
  transition: all 0.5s;
}
.company-form .checkbox-wrap .nf-field-element label.nf-checked-label:before,
.company-form .checkbox-wrap .nf-field-label label.nf-checked-label:before,
.company-form .listcheckbox-wrap .nf-field-element label.nf-checked-label:before,
.company-form .listcheckbox-wrap .nf-field-label label.nf-checked-label:before {
  opacity: 1;
  transition: all 0.5s;
}
.company-form .nf-error.field-wrap .nf-field-element::after {
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f12a";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 50px;
  text-align: center;
  transition: all 0.5s;
  background-color: transparent !important;
  color: #4a7d8e;
  width: auto;
  font-size: 12px;
  right: 20px;
}

.swiper-related-carousel {
  overflow: hidden;
}

.member-related-news {
  padding-top: 40px;
  margin-inline: 30px;
  margin-top: 40px;
  border-top: 3px solid #F2F2F2;
}
@media (min-width: 768px) {
  .member-related-news {
    margin-inline: 40px;
  }
}
.member-related-news h3 {
  font-size: clamp(1rem, 4vmin, 1.3rem);
  font-weight: 500;
  margin-bottom: 15px;
}
.member-related-news .news-item .news-image-wrap {
  height: 160px;
}
.member-related-news .news-item .news-title-wrap {
  padding-bottom: 60px;
  z-index: 100;
}
.member-related-news .news-item h3 {
  font-size: 16px;
}
.member-related-news .news-item .news-date {
  font-size: 16px;
}

.tax-sector .banner {
  background-color: #F2F2F2;
}

.company-background-image {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: 0.2;
}

.strategic-partner {
  overflow: hidden;
  border-radius: 9999px;
  display: flex;
  position: relative;
  padding: 5px 10px;
  border: 1px solid #e8e4e1;
  color: #FFFFFF;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  justify-content: center;
}
.strategic-partner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
  background-color: #e8e4e1;
}
.strategic-partner .button-label {
  color: #435154;
  font-size: 12px;
  font-weight: 700;
}

.title-inner {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .title-inner {
    flex-direction: row;
    align-items: center;
  }
}

.events-carousel {
  padding: 80px 0;
  background-color: rgba(74, 125, 142, 0.1);
}

.event-wrapper,
.iee_archive {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  gap: 20px;
  margin-top: 50px;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .event-wrapper,
  .iee_archive {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .event-wrapper,
  .iee_archive {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }
}
@media (min-width: 1300px) {
  .event-wrapper,
  .iee_archive {
    grid-template-columns: repeat(3, 1fr);
  }
}
.event-wrapper:before,
.iee_archive:before {
  display: none !important;
}

.events-list {
  position: relative;
  padding: 60px 30px;
  background-color: #F2F2F2;
  width: 100%;
}
@media (min-width: 768px) {
  .events-list {
    padding: 60px 0;
  }
}
.events-list .chips-wrapper {
  padding: 0;
}
.events-list .event-item {
  display: flex;
}
.events-list .wpc-filter-layout-dropdown .select2-container .select2-selection--single,
.events-list .wpc-sorting-form .select2-container .select2-selection--single {
  height: auto;
  padding: unset;
}
.events-list .select2-container--default .wpc-filter-everything-dropdown .select2-results__option--highlighted::after,
.events-list .select2-container--default .wpc-filter-everything-dropdown .select2-results__option[aria-selected=true]::after,
.events-list .select2-container--default .wpc-filter-everything-dropdown .select2-results__option[data-selected=true]::after {
  display: none;
}
.events-list .wpc-horizontal-layout .wpc-filters-section:not(.wpc-filter-layout-submit-button),
.events-list .wpc-horizontal-layout.wpc-horizontal-cols-3 .wpc-filters-section:not(.wpc-filter-layout-submit-button) {
  max-width: 400px;
  width: 100%;
  margin-right: 0;
}
.events-list .widget_wpc_filters_widget {
  overflow: visible;
  width: 100%;
}
@media (min-width: 768px) {
  .events-list .widget_wpc_filters_widget {
    width: 400px;
  }
}
.events-list .filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.events-list .grid-items-filter {
  border-radius: 9999px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .events-list .grid-items-filter {
    width: auto;
  }
}
.events-list .wpc-filter-chips-list {
  display: flex;
  gap: 8px;
}
.events-list .wpc-filter-chips-list li,
.events-list body .wpc-filter-chips-list li.wpc-filter-chip,
.events-list li.wpc-filter-chip {
  margin: 0 0px 0px 0 !important;
  padding: 0;
  border: none;
  list-style: none;
  font-size: 91%;
}
.events-list .wpc-filters-widget-wrapper {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  flex-shrink: 0;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
.events-list .wpc-filters-widget-select {
  overflow: hidden;
  border-radius: 9999px;
  padding: 10px 50px 10px 20px !important;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}
.events-list .excerpt {
  color: #4a7d8e;
}
.events-list .wpc-filter-content {
  overflow: hidden;
  border-radius: 9999px;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
  background-color: #f0f2f3;
}
.events-list .wpc-filter-header {
  display: none;
}
.events-list .wpc-filters-section {
  margin-bottom: 0em;
  position: relative;
}
.events-list .wpc-filter-content select {
  width: 100% !important;
  margin-bottom: 0 !important;
}
.events-list .ss-main .ss-arrow {
  display: none !important;
}

.events-list--completed {
  background-color: #B2B2B2;
}
.events-list--completed .events-list-heading span {
  color: #666666;
}

.events-list-heading {
  width: 100%;
  margin-bottom: 35px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .events-list-heading {
    margin-bottom: 50px;
  }
}
.events-list-heading span {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .events-list-heading span {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .events-list-heading span {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .events-list-heading span {
    font-size: 20px;
  }
}

.event-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 0px;
  position: relative;
  color: #d9dbdd;
  overflow: hidden;
}
@media (min-width: 992px) {
  .event-item {
    align-items: stretch;
  }
}
.event-item .iee-theme-btn {
  background: unset;
}
.event-item .description p {
  color: #4a7d8e;
  line-height: 1.3;
  display: none;
}
.event-item .description p:first-of-type {
  display: block;
}
.event-item .description ul {
  display: none;
}
.event-item .description h3 {
  display: none;
}
.event-item .event-date-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #4a7d8e, #2a4258);
  color: #2a4258;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(74, 125, 142, 0.8);
  min-width: 80px;
  z-index: 12;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  top: 0;
}
.event-item .event-date-badge .e-day {
  display: block;
  font-size: 28px;
  font-weight: 700;
}
.event-item .event-date-badge .e-month {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}
.event-item .event-date-badge .e-year {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.event-item .date,
.event-item .time,
.event-item .venue,
.event-item .ticket-price {
  color: #2a4258;
}
.event-item .item-bg {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 0;
}
.event-item .region {
  background-color: #9DF4F3;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 10px 15px;
  padding: 6px 15px;
  font-size: 0.8em;
  color: #2a4258;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 10;
  font-weight: 500;
}
.event-item .region.social {
  background-color: #2a4258;
  color: #9DF4F3;
}
.event-item .event-image-wrap {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  position: relative;
}
.event-item .event-image-wrap img {
  width: 100%;
  height: auto;
}
.event-item .event-image-wrap:after {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  border-top-left-radius: 30px;
  width: 100%;
  z-index: 101;
  bottom: 0;
  background-color: #FFFFFF;
  left: 0;
  bottom: -10px;
}
@media (min-width: 992px) {
  .event-item .event-image-wrap:after {
    height: 40px;
    border-top-left-radius: 40px;
  }
}
.event-item .event-image-wrap .event-image {
  background-position: center center !important;
  background-size: cover !important;
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
  font-size: 0;
}
.event-item .event-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.event-item .event-title-wrap h4 {
  font-weight: 600;
  text-transform: none;
  color: #2a4258;
}
.event-item .event-title-wrap p {
  display: none;
}
.event-item .event-title-wrap h3 {
  display: none;
}
.event-item .event-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-item .item_btn {
  width: 87px;
  height: 90px;
}
.event-item .btn_icon {
  background-color: transparent;
  overflow: hidden;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center;
  transition-duration: var(--button-transition-duration);
  transition-property: transform;
  transition-timing-function: var(--button-transition-timing-function);
  justify-content: center;
  align-items: center;
}
.event-item .btn_icon .arrow {
  position: absolute;
  z-index: 2;
}
.event-item .btn_icon:before {
  background-color: transparent;
  background-image: var(--button-blob-icon-image-hover), var(--button-blob-icon-image);
  background-repeat: no-repeat;
  background-position: var(--button-blob-icon-position);
  background-size: var(--button-blob-icon-size);
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition-duration: var(--button-transition-duration);
  transition-property: background-position;
  transition-timing-function: var(--button-transition-timing-function);
  z-index: 2;
}
.event-item .btn_bg {
  width: 100%;
  height: 100%;
}
.event-item .btn_el {
  pointer-events: none;
  width: 51px;
  height: 48px;
}
.event-item .item_btn,
.event-item .btn_el,
.event-item .btn_bg {
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.event-item .btn-bg {
  width: 100%;
  height: 100%;
}
.event-item .btn_bg path {
  fill: #FFFFFF;
}
.event-item .btn_bg path {
  fill: #FFFFFF;
}
.event-item .company-logo {
  padding: 10px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
}
.event-item .company-logo img {
  width: auto;
  max-width: 80%;
  filter: grayscale(100%);
  height: auto;
  max-height: 60px;
}
.event-item .event-information {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 1;
}
.event-item .event-information .info {
  padding: 0 10px;
  color: #2a4258;
  display: flex;
  flex-direction: column;
  width: 33.3333%;
}
.event-item .event-information .info h2 {
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .event-item .event-information .info h2 {
    font-size: 19px;
  }
}
.event-item .event-information .info span {
  font-size: 11px;
  line-height: 1.1;
  text-transform: lowercase;
}
@media (min-width: 992px) {
  .event-item .event-information .info span {
    font-size: 12px;
  }
}

.gm-style .gm-style-iw-c {
  padding: 0 !important;
}

.gm-style .gm-style-iw-d {
  max-height: none !important;
  overflow: auto !important;
}

.midtown-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 200px;
}
.midtown-info .title-text {
  max-width: 90%;
}
.midtown-info.completed .event-title {
  background-color: #666666;
}
.midtown-info.current .event-title {
  background-color: #84C2C4;
}
.midtown-info span {
  max-width: 200px;
  font-size: 0;
}
.midtown-info span img {
  max-width: 200px;
  height: auto;
}
.midtown-info .event-title {
  padding: 5px 10px;
  background-color: #84C2C4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 200;
  text-transform: uppercase;
}
.midtown-info .event-title:after {
  content: "";
  background-image: url("../../img/icons/map-arrow.svg");
  background-size: 17px 11px;
  width: 17px;
  height: 11px;
}

.event-item-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 1300px) {
  .event-item-image {
    width: 100%;
  }
}

.event-item-content {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: 30px;
  padding-top: 0;
  flex: 1;
}
.event-item-content .top-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.event-item-content p {
  margin-top: 20px;
  color: #2a4258;
  font-weight: 400;
}
.event-item-content span {
  color: #2a4258;
}
.event-item-content .button span {
  color: #FFFFFF;
}
.event-item-content .button-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.event-item-content .categories {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  row-gap: 6px;
  flex-wrap: wrap;
}
.event-item-content .categories .category {
  border-radius: 15px;
  padding: 6px 11px;
  font-size: 0.7em;
  color: #2a4258;
  border: 0.5px solid #2a4258;
}

.event-title-wrap {
  width: 100%;
}

.event-name {
  font-weight: 300;
  color: #2a4258;
  text-transform: uppercase;
  font-weight: 600;
  text-wrap-style: balance;
}
.event-location {
  font-size: 11px;
  font-weight: 400;
  color: #4a7d8e;
  text-transform: uppercase;
}

.event-status {
  display: inline-block;
  margin-top: -1px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.permalink {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.event-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .event-logos {
    flex: 1;
    justify-content: flex-end;
    margin-top: 0;
  }
}
.event-logos img {
  display: block;
  max-width: 120px;
  width: auto;
  height: 40px;
  margin-right: 15px;
}
.event-logos img:last-of-type {
  margin-right: 0;
}

.events-carousel .swiper-slide {
  height: unset !important;
}
.events-carousel .event-item .excerpt {
  color: #4a7d8e;
}
.events-carousel .event-item .item-bg {
  background-color: #FFFFFF;
}
.events-carousel .event-item .btn_bg path {
  fill: #F2F2F2;
}
.events-carousel .event-item .btn_bg path {
  fill: #F2F2F2;
}
.events-carousel .event-item .event-image-wrap {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  position: relative;
}
.events-carousel .event-item .event-image-wrap:before {
  content: "";
  display: block;
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 66, 88, 0.5);
  z-index: 10;
  display: none;
}
.events-carousel .event-item .event-image-wrap:after {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  border-top-left-radius: 30px;
  width: 100%;
  z-index: 101;
  bottom: 0;
  background-color: #FFFFFF;
  left: 0;
  bottom: -10px;
}
@media (min-width: 992px) {
  .events-carousel .event-item .event-image-wrap:after {
    height: 40px;
    border-top-left-radius: 40px;
  }
}

.iee_event_meta .iee_organizermain {
  padding: 40px;
  width: 100%;
  background: #F2F2F2;
  border: 3px solid #eeeeee;
  margin: 30px 0;
  border-radius: 20px;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.iee_event_meta .iee_organizermain h3 {
  margin-top: 0;
  color: #4a7d8e;
  font-weight: 600;
}
.iee_event_meta .iee_organizermain .button-group {
  gap: 15px;
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1300px) {
  .iee_event_meta .iee_organizermain .button-group {
    flex-direction: row;
  }
}
.iee_event_meta .iee_organizermain .button-group a {
  margin-top: 0 !important;
}
.iee_event_meta .iee_organizermain .titlemain {
  font-weight: unset;
}
.iee_event_meta .iee_organizermain .details-row {
  padding-block: 10px;
  border-bottom: 1px solid #B2B2B2;
}
.iee_event_meta .iee_organizermain.library {
  padding: 10px;
}
@media (min-width: 992px) {
  .iee_event_meta .iee_organizermain {
    flex-direction: row;
    gap: 60px;
  }
}
.iee_event_meta .iee_organizermain .map {
  width: 100%;
  border-radius: 13px;
  font-size: 0;
}
.iee_event_meta .iee_organizermain .map iframe {
  border-radius: 13px;
}

.single-eventbrite_events .events-overview div {
  margin: 0 !important;
}
.single-eventbrite_events .events-overview div:first-of-type {
  font-style: normal;
  margin-bottom: 20px !important;
  line-height: 1.3;
  font-size: 2rem;
  font-size: clamp(1.25rem, 1.1174rem + 0.7576vw, 1.875rem);
  text-wrap-style: balance;
}

.insights-carousel {
  padding: 80px 0;
}
.insights-carousel .swiper-wrapper {
  margin-top: 50px;
}

.tax-sector-news .banner {
  background-color: #F2F2F2;
}

.author-company {
  padding-bottom: 15px;
  border-bottom: 3px solid #F2F2F2;
  font-weight: 600;
  color: #2a4258;
}
.author-company a {
  color: #4a7d8e;
  font-weight: 400;
}
@media (min-width: 992px) {
  .author-company {
    margin-right: 150px;
  }
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 80px;
  align-items: center;
  gap: 10px;
}
.pagination.mobile {
  display: flex;
}
@media (min-width: 768px) {
  .pagination.mobile {
    display: none;
  }
}
.pagination.desktop {
  display: none;
}
@media (min-width: 768px) {
  .pagination.desktop {
    display: flex;
  }
}
.pagination i {
  font-size: 1.8rem;
  color: #2a4258;
}
.pagination .page-numbers.current {
  border-radius: 50%;
  background-color: #4a7d8e;
  border: 2px solid #4a7d8e;
  color: #FFFFFF;
}
.pagination .page-numbers {
  font-size: 0.7rem;
  width: 30px;
  height: 30px;
  border: 2px solid #ddd;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  font-weight: 600;
}
.pagination .prev,
.pagination .next {
  border-radius: unset;
  padding: unset;
  background-color: unset;
  border: 0px solid #4a7d8e;
}

.news-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
@media (min-width: 768px) {
  .news-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .news-wrapper {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }
}
@media (min-width: 1300px) {
  .news-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-list {
  position: relative;
  padding: 60px 30px;
  background-color: #F2F2F2;
  width: 100%;
}
@media (min-width: 768px) {
  .news-list {
    padding: 60px 0;
  }
}
.news-list .chips-wrapper {
  padding: 0;
}
.news-list .wpc-filter-chip-name {
  margin-right: 0.5em;
  white-space: nowrap;
  max-width: unset;
  overflow: hidden;
  display: block;
}
.news-list .wpc-horizontal-layout .wpc-filters-section:not(.wpc-filter-layout-submit-button),
.news-list .wpc-horizontal-layout.wpc-horizontal-cols-3 .wpc-filters-section:not(.wpc-filter-layout-submit-button) {
  max-width: 400px;
  width: 100%;
  margin-right: 2%;
}
.news-list .widget_wpc_filters_widget {
  overflow: visible;
  width: 400px;
}
.news-list .grid-items-filter {
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.news-list .wpc-filter-chips-list {
  display: flex;
  gap: 8px;
}
.news-list .wpc-filter-chips-list li,
.news-list body .wpc-filter-chips-list li.wpc-filter-chip,
.news-list li.wpc-filter-chip {
  margin: 0 0px 0px 0 !important;
  padding: 0;
  border: none;
  list-style: none;
  font-size: 91%;
}
.news-list .wpc-horizontal-layout .wpc-filters-widget-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 15px;
  margin-right: unset;
}
@media (min-width: 768px) {
  .news-list .wpc-horizontal-layout .wpc-filters-widget-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-list .wpc-filters-widget-select {
  overflow: hidden;
  border-radius: 9999px;
  padding: 10px 50px 10px 20px !important;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}
.news-list .wpc-filter-content {
  overflow: hidden;
  border-radius: 9999px;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
  background-color: #f0f2f3;
}
.news-list .wpc-filter-header {
  display: none;
}
.news-list .wpc-filters-section {
  margin-bottom: 0em;
  position: relative;
}
.news-list .wpc-filter-content select {
  width: 100% !important;
  margin-bottom: 0 !important;
}
.news-list .ss-main .ss-arrow {
  display: none !important;
}

.news-list--completed {
  background-color: #B2B2B2;
}
.news-list--completed .news-list-heading span {
  color: #666666;
}

.news-list-heading {
  width: 100%;
  margin-bottom: 35px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .news-list-heading {
    margin-bottom: 50px;
  }
}
.news-list-heading span {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .news-list-heading span {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .news-list-heading span {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .news-list-heading span {
    font-size: 20px;
  }
}

.news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 0px;
  position: relative;
  color: #d9dbdd;
  overflow: hidden;
}
@media (min-width: 992px) {
  .news-item {
    align-items: stretch;
  }
}
.news-item .news-date {
  color: #4a7d8e;
}
.news-item .news-date-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #4a7d8e, #2a4258);
  color: #2a4258;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(74, 125, 142, 0.8);
  min-width: 80px;
  z-index: 11;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  background: white;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  top: 0;
}
.news-item .news-date-badge .e-day {
  display: block;
  font-size: 28px;
  font-weight: 700;
}
.news-item .news-date-badge .e-month {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}
.news-item .news-date-badge .e-year {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.news-item .date,
.news-item .time,
.news-item .venue {
  color: #2a4258;
}
.news-item .item-bg {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
  z-index: 0;
  clip-path: polygon(100% 0, 100% calc(100% - 75px), calc(100% - 75px) calc(100% - 75px), calc(100% - 75px) 100%, 0 100%, 0 0);
}
.news-item .region {
  background-color: #9DF4F3;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 10px 15px;
  padding: 6px 15px;
  font-size: 0.8em;
  color: #2a4258;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 10;
  font-weight: 500;
}
.news-item .region.social {
  background-color: #2a4258;
  color: #9DF4F3;
}
.news-item .excerpt {
  color: #666666;
}
.news-item .news-image-wrap {
  width: 100%;
  height: 200px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1300px) {
  .news-item .news-image-wrap {
    height: 200px;
  }
}
@media (min-width: 1600px) {
  .news-item .news-image-wrap {
    height: 260px;
  }
}
.news-item .news-image-wrap:before {
  content: "";
  display: block;
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(1);
          backdrop-filter: grayscale(1);
  z-index: 10;
  background: linear-gradient(90deg, #4a7d8e 44%, #9df4f3 100%);
}
.news-item .news-image-wrap:after {
  content: "";
  display: block;
  position: absolute;
  height: 40px;
  border-top-left-radius: 40px;
  width: 100%;
  z-index: 101;
  bottom: 0;
  background-color: #FFFFFF;
  left: 0;
}
.news-item .news-image-wrap .news-image {
  background-position: center center !important;
  background-size: cover !important;
  width: 100%;
  height: 99%;
  z-index: 1;
  position: relative;
}
.news-item .news-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  padding: 0 30px;
}
.news-item .news-title-wrap h4 {
  font-weight: 600;
  text-transform: none;
  color: #2a4258;
}
.news-item .item_btn {
  width: 87px;
  height: 90px;
  z-index: 106 !important;
}
.news-item .btn_icon {
  background-color: transparent;
  overflow: hidden;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center;
  transition-duration: var(--button-transition-duration);
  transition-property: transform;
  transition-timing-function: var(--button-transition-timing-function);
  justify-content: center;
  align-items: center;
}
.news-item .btn_icon .arrow {
  position: absolute;
  z-index: 2;
}
.news-item .btn_icon:before {
  background-color: transparent;
  background-image: var(--button-blob-icon-image-hover), var(--button-blob-icon-image);
  background-repeat: no-repeat;
  background-position: var(--button-blob-icon-position);
  background-size: var(--button-blob-icon-size);
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition-duration: var(--button-transition-duration);
  transition-property: background-position;
  transition-timing-function: var(--button-transition-timing-function);
  z-index: 2;
}
.news-item .btn_bg {
  width: 100%;
  height: 100%;
}
.news-item .btn_el {
  pointer-events: none;
  width: 51px;
  height: 48px;
}
.news-item .item_btn,
.news-item .btn_el,
.news-item .btn_bg {
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.news-item .btn-bg {
  width: 100%;
  height: 100%;
}
.news-item .btn_bg path {
  fill: #FFFFFF;
}
.news-item .btn_bg path {
  fill: #FFFFFF;
}
.news-item .company-logo {
  padding: 10px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
}
.news-item .company-logo img {
  width: auto;
  max-width: 80%;
  filter: grayscale(100%);
  height: auto;
  max-height: 60px;
}
.news-item .news-information {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 1;
}
.news-item .news-information .info {
  padding: 0 10px;
  color: #2a4258;
  display: flex;
  flex-direction: column;
  width: 33.3333%;
}
.news-item .news-information .info h2 {
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .news-item .news-information .info h2 {
    font-size: 19px;
  }
}
.news-item .news-information .info span {
  font-size: 11px;
  line-height: 1.1;
  text-transform: lowercase;
}
@media (min-width: 992px) {
  .news-item .news-information .info span {
    font-size: 12px;
  }
}

.grid-items-filter {
  width: 100%;
}

.gm-style .gm-style-iw-c {
  padding: 0 !important;
}

.gm-style .gm-style-iw-d {
  max-height: none !important;
  overflow: auto !important;
}

.news-item-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 1300px) {
  .news-item-image {
    width: 100%;
  }
}

.news-item-content {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 103;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  flex: 1;
  justify-content: space-between;
}
.news-item-content p {
  margin-top: 20px;
  font-size: 15px;
  color: #2a4258;
  font-weight: 400;
}
@media (min-width: 768px) {
  .news-item-content p {
    font-size: 16px;
  }
}
.news-item-content span {
  color: #2a4258;
}
.news-item-content .categories {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  row-gap: 6px;
  flex-wrap: wrap;
  width: 80%;
}
.news-item-content .categories .category {
  border-radius: 15px;
  padding: 4px 11px;
  font-size: 0.8em;
  color: #2a4258;
  border: 1px solid #2a4258;
}

.news-title-wrap {
  width: 100%;
}

.news-location {
  font-size: 11px;
  font-weight: 400;
  color: #4a7d8e;
  text-transform: uppercase;
}

.news-status {
  display: inline-block;
  margin-top: -1px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.permalink {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.news-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .news-logos {
    flex: 1;
    justify-content: flex-end;
    margin-top: 0;
  }
}
.news-logos img {
  display: block;
  max-width: 120px;
  width: auto;
  height: 40px;
  margin-right: 15px;
}
.news-logos img:last-of-type {
  margin-right: 0;
}

.news-carousel .swiper-slide {
  height: unset !important;
}
.news-carousel .news-item .item-bg {
  background-color: #F2F2F2;
}
.news-carousel .news-item .btn_bg path {
  fill: #F2F2F2;
}
.news-carousel .news-item .btn_bg path {
  fill: #F2F2F2;
}
.news-carousel .news-item .news-image-wrap {
  width: 100%;
  height: 200px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1300px) {
  .news-carousel .news-item .news-image-wrap {
    height: 200px;
  }
}
@media (min-width: 1600px) {
  .news-carousel .news-item .news-image-wrap {
    height: 260px;
  }
}
.news-carousel .news-item .news-image-wrap:before {
  content: "";
  display: block;
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: linear-gradient(90deg, #4a7d8e 44%, #9df4f3 100%);
}
.news-carousel .news-item .news-image-wrap:after {
  content: "";
  display: block;
  position: absolute;
  height: 40px;
  border-top-left-radius: 40px;
  width: 100%;
  z-index: 101;
  bottom: 0;
  background-color: #F2F2F2;
  left: 0;
}

.insights-carousel .news-item .item-bg,
.swiper-related-carousel .news-item .item-bg {
  background-color: #F2F2F2;
}
.insights-carousel .news-item .btn_bg path,
.swiper-related-carousel .news-item .btn_bg path {
  fill: #F2F2F2;
}
.insights-carousel .news-item .btn_bg path,
.swiper-related-carousel .news-item .btn_bg path {
  fill: #F2F2F2;
}
.insights-carousel .news-item .news-image-wrap:after,
.swiper-related-carousel .news-item .news-image-wrap:after {
  background-color: #F2F2F2;
}

.article-body blockquote {
  margin: 30px 0;
}
.article-body blockquote p {
  font-size: clamp(1rem, 4vmin, 1.1rem);
  font-weight: 300;
}
.article-body li {
  font-weight: 300;
}

.article-inner.mobile {
  display: block;
}
@media (min-width: 992px) {
  .article-inner.mobile {
    display: none;
  }
}
.article-inner.mobile .categories {
  margin-block: 30px;
}
.article-inner.mobile .content-main-share {
  margin-top: 40px;
}
.article-inner.desktop {
  display: none;
}
@media (min-width: 992px) {
  .article-inner.desktop {
    display: block;
  }
}

.carousel-section {
  margin-block: 0px;
  overflow: hidden;
  padding: 50px 30px;
}
@media (min-width: 768px) {
  .carousel-section {
    padding: 50px 0;
  }
}
@media (min-width: 768px) {
  .carousel-section {
    margin-block: clamp(50px, 100 / 1470 * var(--container-width), 100px);
  }
}
@media (min-width: 768px) {
  .carousel-section:not(:has(.box-intro)) {
    margin-block: clamp(50px, 160 / 1470 * var(--container-width), 160px);
  }
}
.carousel-section .carousel-section-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .carousel-section .carousel-section-inner {
    overflow: visible;
    gap: clamp(30px, 50 / 1470 * var(--container-width), 50px);
  }
}

.carousel-section-inner .box-intro {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .carousel-section-inner .box-intro {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
  }
}
.carousel-section-inner .text-left-buttons {
  width: unset;
}
.carousel-section-inner .text-left-buttons .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.carousel-section-inner .text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .carousel-section-inner .text-wrapper {
    width: 70%;
  }
}
.carousel-section-inner .text-wrapper > :first-child {
  margin-top: 0;
}
.carousel-section-inner .text-wrapper h2 {
  text-wrap-style: balance;
  color: #0e1216;
}
.carousel-section-inner .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.carousel-section-inner .text-wrapper p strong {
  font-weight: 600;
}
.carousel-section-inner .text-wrapper p a {
  color: #4a7d8e;
}
.carousel-section-inner.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.carousel-section-inner.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.carousel-section-inner.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}

.swiper-image-carousel-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .swiper-image-carousel-container {
    gap: clamp(30px, 40 / 1470 * var(--container-width), 40px);
  }
}
@media (min-width: 768px) {
  .swiper-image-carousel-container .swiper-image-carousel {
    order: -1;
  }
}
.swiper-image-carousel-container .swiper-image-carousel .col-iee-md-12 {
  display: none;
}
.swiper-image-carousel-container .swiper-wrapper {
  --max-height: 400px;
  gap: 0;
}
@media (min-width: 768px) {
  .swiper-image-carousel-container .swiper-wrapper {
    --max-height: clamp(400px, calc((500 / 1470) * var(--container-width)), 500px);
  }
}
.swiper-image-carousel-container .swiper-slide {
  max-width: 100%;
  width: auto;
  position: relative;
  height: auto;
  box-sizing: border-box;
  display: flex;
}
.swiper-image-carousel-container .slide-img-wrapper {
  position: relative;
  height: 100%;
}
.swiper-image-carousel-container .slide-img {
  width: auto;
  max-height: calc(var(--max-height) * var(--height-adjust, 1));
  max-width: 100%;
}
.swiper-image-carousel-container .image-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  color: var(--white);
  z-index: 2;
  font-size: var(--font-size-caption);
}
@media (min-width: 768px) {
  .swiper-image-carousel-container .image-caption {
    padding: clamp(14px, 16 / 1470 * var(--container-width), 16px);
  }
}
.swiper-image-carousel-container .image-caption::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150%;
  display: block;
  background: linear-gradient(to bottom, black, transparent);
  z-index: -1;
  opacity: 0.6;
}

.swiper-controls {
  --colour: var(--black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .swiper-controls {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.swiper-controls:has(.swiper-pagination-lock) {
  display: none;
}
.swiper-controls .swiper-buttons {
  display: inline-flex;
  gap: 8px;
}
@media (min-width: 768px) {
  .swiper-controls .swiper-buttons {
    gap: clamp(8px, 12 / 1470 * var(--container-width), 12px);
    gap: 5px;
  }
}
.swiper-controls .swiper-buttons:has(.swiper-button-prev.swiper-button-disabled):has(.swiper-button-next.swiper-button-disabled) {
  display: none;
}
.swiper-controls .swiper-buttons .swiper-button {
  --btn-text: var(--colour);
  --btn-bg: transparent;
  --btn-outline: var(--colour);
  --btn-hover-text: var(--white);
  --btn-hover-bg: var(--colour);
  transition: all 0.8s;
  background-color: transparent;
}
.swiper-controls .swiper-buttons .swiper-button[disabled] {
  opacity: 0.7;
}
.swiper-controls .swiper-buttons .swiper-button:hover {
  transition: all 0.8s;
  background-color: #4a7d8e;
}
.swiper-controls .swiper-buttons .swiper-button:hover svg path {
  stroke: #FFFFFF;
}
.swiper-controls .swiper-buttons .swiper-button:before {
  display: none;
}
.swiper-controls .swiper-buttons .swiper-button-prev {
  scale: -1 1;
}
.swiper-controls .swiper-buttons .swiper-button.swiper-button-disabled {
  display: none;
}
.swiper-controls .swiper-pagination,
.swiper-controls .swiper-pagination-testimonial {
  display: none;
  gap: 8px;
}
@media (min-width: 768px) {
  .swiper-controls .swiper-pagination,
  .swiper-controls .swiper-pagination-testimonial {
    gap: clamp(8px, 12 / 1470 * var(--container-width), 12px);
    gap: 8px;
    display: flex;
  }
}
.swiper-controls .swiper-pagination-bullet,
.swiper-controls .swiper-pagination-testimonial-bullet {
  width: 8px;
  aspect-ratio: 1;
  background-color: #2a4258;
  border-radius: 50%;
  opacity: 0.2;
  cursor: pointer;
}
.swiper-controls .swiper-pagination-bullet-active,
.swiper-controls .swiper-pagination-testimonial-bullet-active {
  opacity: 1;
}
.swiper-controls--white {
  --colour: var(--white);
}
.swiper-controls--white .swiper-button {
  --btn-hover-text: var(--orange) !important;
}

.testimonial-carousel {
  padding: 30px;
}
@media (min-width: 768px) {
  .testimonial-carousel {
    padding: 80px 0;
  }
}
.testimonial-carousel .carousel-section-inner {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .testimonial-carousel .carousel-section-inner {
    flex-direction: row;
  }
}
.testimonial-carousel .carousel-section-inner .box-intro {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-carousel .carousel-section-inner .text-wrapper {
  width: 100%;
}
.testimonial-carousel .swiper-controls {
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.testimonial-carousel .swiper-slide {
  display: flex;
}
.testimonial-carousel .testimonial-wrapper {
  width: 100%;
  display: flex;
  gap: 30px;
}
.testimonial-carousel .testimonial-wrapper .testimonial-quote {
  width: 100%;
  overflow: hidden;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper {
  background-color: #FFFFFF;
  border-radius: 40px;
  padding: 50px;
  position: relative;
  padding-bottom: 100px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  height: 60px;
  border-top-left-radius: 60px;
  width: 100%;
  z-index: 101;
  bottom: 0;
  left: 0;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper .quote {
  font-size: 1rem;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper .blockquote p {
  font-size: 1rem;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper .company-logo {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper .company-logo img,
.testimonial-carousel .testimonial-wrapper .quote-wrapper .company-logo svg {
  display: block;
  width: 100%;
  max-width: 175px;
  filter: grayscale(100%);
  height: auto;
  max-height: 75px;
  margin: 0 auto;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper .member-profile {
  margin-top: 50px;
  display: flex;
  gap: 60px;
  align-items: center;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper .details {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 992px) {
  .testimonial-carousel .testimonial-wrapper .quote-wrapper .details {
    flex-direction: row;
    align-items: center;
  }
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper .profile-image {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
}
.testimonial-carousel .testimonial-wrapper .quote-wrapper .profile-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-testimonial-carousel-container {
  width: 100%;
}
@media (min-width: 992px) {
  .swiper-testimonial-carousel-container {
    width: 70%;
  }
}

.modal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  overflow: auto;
  position: fixed;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 645px;
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 25px 25px 75px 25px;
  border-radius: 40px;
  background-color: #2a4258;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.modal .modal-wrap .modal-inner .modal-close {
  display: flex;
  margin: 0px 0px 20px 0px;
  justify-content: flex-end;
}
.modal .modal-wrap .modal-inner .modal-close button {
  border: 0px;
  cursor: pointer;
  margin: 0px 0px;
  padding: 0px 0px;
  background-color: transparent;
}
.modal .modal-wrap .modal-inner .modal-close button:before {
  display: none;
}
.modal .modal-wrap .modal-inner .modal-close button svg {
  transition: 0.5s all;
}
.modal .modal-wrap .modal-inner .modal-close button svg:hover {
  transform: rotate(90deg);
}
.modal .modal-wrap .modal-inner .modal-content {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.modal .modal-wrap .modal-inner .modal-content .modal-content-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.modal .modal-wrap .modal-inner .modal-content .terms p {
  color: #FFFFFF;
  text-align: left;
}
.modal .modal-wrap .modal-inner .modal-content .terms p {
  font-style: normal;
  font-weight: 300;
  line-height: 1.3;
  font-size: 1rem;
  font-size: clamp(0.7rem, 4vmin, 0.8rem);
  margin-bottom: 15px;
}
.modal .modal-wrap .modal-inner .modal-content .terms p:last-of-type {
  margin-bottom: 0px;
}
.modal .modal-wrap .modal-inner .modal-content .terms h3 {
  font-size: clamp(1rem, 4vmin, 1.3rem);
  font-weight: 500;
  margin-bottom: 15px;
}
.modal .modal-wrap .modal-inner .modal-content .terms ul {
  margin-bottom: 15px;
}
.modal .modal-wrap .modal-inner .modal-content .terms ul li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: clamp(0.7rem, 4vmin, 0.8rem);
  color: #FFFFFF;
}
.modal .modal-wrap .modal-inner .modal-content .terms ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .modal .modal-wrap .modal-inner .modal-content .terms ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .modal .modal-wrap .modal-inner .modal-content .terms ul li::before {
    top: 10px;
  }
}
.modal .modal-wrap .modal-inner .modal-content .modal-content-introduction {
  color: #FFFFFF;
  text-align: center;
}
.modal .modal-wrap .modal-inner .modal-content .modal-content-introduction .heading .h5 {
  color: #FFFFFF;
  margin: 0px 0px 10px 0px;
}
.modal .modal-wrap .modal-inner .modal-content .modal-content-introduction .subheading .h3 {
  color: #FFFFFF;
  text-transform: none;
  margin: 0px 0px 15px 0px;
}
.modal .modal-wrap .modal-inner .modal-content .modal-content-introduction .description p {
  font-weight: 400;
}
.modal .modal-wrap .modal-inner .modal-content .modal-content-introduction .description p:last-of-type {
  margin-bottom: 0px;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap {
  text-align: center;
  margin: 30px 0px 0px 0px;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap .nf-after-field,
.modal .modal-wrap .modal-inner .modal-content .form-wrap .nf-before-form-content {
  display: none;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap .nf-response-msg {
  color: #FFFFFF;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap .nf-error-msg {
  color: #FFFFFF;
  font-size: 12px;
  font-style: italic;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap .nf-field-container {
  margin-bottom: 16px;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form .nf-field-label {
  display: none;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form #nf-field-15-container {
  color: #FFFFFF;
  margin: 30px 0px 0px 0px;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form .nf-error textarea,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form .nf-error select.ninja-forms-field:not([multiple]),
.modal .modal-wrap .modal-inner .modal-content .form-wrap form .nf-error input:not([type=button]) {
  border-color: red !important;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form textarea,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form select.ninja-forms-field:not([multiple]),
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input:not([type=button]) {
  color: #0e1216;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  padding: 15px 15px;
  border: 1px solid #2a4258;
  background-color: #FFFFFF;
  border-radius: 0px !important;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form textarea::-moz-placeholder, .modal .modal-wrap .modal-inner .modal-content .form-wrap form select.ninja-forms-field:not([multiple])::-moz-placeholder, .modal .modal-wrap .modal-inner .modal-content .form-wrap form input:not([type=button])::-moz-placeholder {
  opacity: 1;
  color: #2a4258;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form textarea::placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form select.ninja-forms-field:not([multiple])::placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input:not([type=button])::placeholder {
  opacity: 1;
  color: #2a4258;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form textarea::-webkit-input-placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form select.ninja-forms-field:not([multiple])::-webkit-input-placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input:not([type=button])::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 1;
  color: #2a4258;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form textarea::-moz-placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form select.ninja-forms-field:not([multiple])::-moz-placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input:not([type=button])::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #2a4258;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form textarea:-ms-input-placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form select.ninja-forms-field:not([multiple]):-ms-input-placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input:not([type=button]):-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1;
  color: #2a4258;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form textarea:-moz-placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form select.ninja-forms-field:not([multiple]):-moz-placeholder,
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input:not([type=button]):-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #2a4258;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input[type=submit] {
  overflow: hidden;
  border-radius: 9999px;
  display: flex;
  position: relative;
  padding: 10px 30px;
  border: 1px solid #4a7d8e;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
  background-color: #4a7d8e;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input[type=submit]:hover::before {
  background-color: transparent;
}
.modal .modal-wrap .modal-inner .modal-content .form-wrap form input[type=submit]:hover .button-label {
  color: #0e1216;
}
@media (min-width: 1300px) {
  .modal .modal-wrap {
    max-height: 85%;
  }
}
.modal.active .modal-wrap {
  opacity: 1;
}
.modal.modal-full {
  background-color: #0e1216;
}
.modal.modal-full .modal-wrap {
  background-color: unset;
}
.modal.modal-full .modal-wrap .modal-inner .modal-close {
  justify-content: center;
}
.modal.modal-full .modal-wrap .modal-inner .modal-content {
  width: 192px;
  margin: 0 auto;
  max-width: 100%;
}
.modal.modal-full .modal-wrap .modal-inner .modal-content .heading .h5 {
  color: #FFFFFF;
  text-align: center;
  margin: 0px 0px 20px 0px;
}
.modal.modal-full .modal-wrap .modal-inner .modal-content .buttons-wrap .buttons {
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.modal.modal-full .modal-wrap .modal-inner .modal-content .buttons-wrap .buttons .button-wrap a {
  display: block;
}

.pum-container {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

#article .article-inner {
  padding: 60px 30px 50px 30px;
}
#article .article-inner .button {
  display: inline-flex;
  margin-top: 40px;
}
#article .article-inner .button.primary {
  color: #FFFFFF;
}
#article .article-inner .btn-wrap {
  display: flex;
}
#article .article-inner .row {
  display: flex;
  margin: 0px 0px;
  justify-content: space-between;
  flex-direction: column;
}
#article .article-inner .row .article-col .article-col-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#article .article-inner .row .article-col .article-col-inner h2 {
  margin-bottom: 1.2em;
}
#article .article-inner .row .article-col .article-col-inner .subtitle {
  color: #4a7d8e;
  padding-bottom: 10px;
  border-bottom: 1px solid #4a7d8e;
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 992px) {
  #article .article-inner .row .article-col .article-col-inner .subtitle {
    width: 70%;
  }
}
#article .article-inner .row .article-col .article-col-inner .gallery {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #article .article-inner .row .article-col .article-col-inner .gallery {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 30px;
  }
}
#article .article-inner .row .article-col .article-col-inner .gallery img {
  width: 100%;
  height: auto;
  border: 0px;
}
#article .article-inner .row .article-col .article-col-inner .gallery .gallery-item {
  width: 100%;
}
@media (min-width: 768px) {
  #article .article-inner .row .article-col .article-col-inner .gallery .gallery-item {
    width: 50%;
  }
}
#article .article-inner .row .article-col .article-col-inner .gallery-caption {
  background-color: #d9dbdd;
  font-size: 12px;
  padding: 5px;
}
#article .article-inner .row .article-col .categories {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  row-gap: 6px;
  flex-wrap: wrap;
  width: 80%;
}
#article .article-inner .row .article-col .categories .category {
  border-radius: 15px;
  padding: 4px 11px;
  font-size: 0.8em;
  color: #2a4258;
  border: 1px solid #2a4258;
}
#article .article-inner .row .article-col .content-main-share {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  #article .article-inner .row .article-col .content-main-share {
    justify-content: flex-start;
    width: auto;
  }
}
#article .article-inner .row .article-col .share-buttons {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
}
#article .article-inner .row .article-col .share-buttons .share-button {
  cursor: pointer;
  border: 1px solid #4a7d8e;
  border-radius: 5px;
  padding-block: 0.625em;
  padding-inline: 1.25em;
  line-height: 1.4;
  color: #FFFFFF;
  background: #4a7d8e;
  font-size: 16px;
  font-family: inherit;
  display: inline-flex;
}
#article .article-inner .row .article-col .share-button {
  display: block;
  padding: 10px;
}
#article .article-inner .row .article-col .share-button svg {
  height: 18px;
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
#article .article-inner .row .article-col.article-col-image {
  width: 100%;
  opacity: 0;
  transform: translateX(-15%);
  transition: opacity 1.5s, transform 1.5s;
}
@media (min-width: 768px) {
  #article .article-inner .row .article-col.article-col-image {
    width: 40%;
  }
}
#article .article-inner .row .article-col.article-col-main {
  width: 100%;
  opacity: 0;
  transform: translateY(25%);
  transition: opacity 1.5s, transform 1.5s;
}
@media (min-width: 768px) {
  #article .article-inner .row .article-col.article-col-main {
    width: 60%;
  }
}
#article .article-inner .row .article-col .article-col-inner .image-wrap {
  border-radius: 30px;
  overflow: hidden;
  font-size: 0;
  border: 1px solid #4a7d8e;
  margin-right: 0px;
  margin-bottom: 30px;
}
#article .article-inner .row .article-col .article-col-inner .image-wrap img {
  width: 100%;
}
#article .article-inner .row .article-col .article-col-inner .image-wrap .bg-image {
  display: block;
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  background-color: #e8e4e1;
  aspect-ratio: 300/200;
  border-radius: 4px;
  width: 100%;
}
@media (min-width: 768px) {
  #article .article-inner .row .article-col .article-col-inner .image-wrap .bg-image {
    aspect-ratio: 270/332;
  }
}
@media (min-width: 768px) {
  #article .article-inner .row .article-col .article-col-inner .image-wrap {
    margin-bottom: 15px;
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  #article .article-inner .row .article-col .article-col-inner .image-wrap {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  #article .article-inner .row .article-col .article-col-inner .image-wrap {
    margin-right: 150px;
  }
}
#article .article-inner .row .article-col .article-col-inner .btn-wrap {
  margin-top: 30px;
}
#article .article-inner .row .article-col .article-col-inner .article-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #4a7d8e;
}
#article .article-inner .row .article-col .article-col-inner .article-header .article-header-inner {
  padding-bottom: 10px;
}
#article .article-inner .row .article-col .article-col-inner .article-header .article-header-inner .heading {
  text-wrap: pretty;
}
#article .article-inner .row .article-col .article-col-inner .article-header .article-header-inner .heading h1 {
  line-height: 1.3;
}
#article .article-inner .row .article-col .article-col-inner .article-header .article-header-inner .heading h1 {
  font-size: 2.6rem;
  font-size: clamp(2rem, 1.7879rem + 1.2121vw, 2.6rem);
}
#article .article-inner .row .article-col .article-col-inner .article-header .article-header-inner .date {
  margin-top: 20px;
}
#article .article-inner .row .article-col .article-col-inner .article-header .article-header-inner .date h5 {
  color: #4a7d8e;
}
#article .article-inner .row .article-col .article-col-inner .article-about-wrap .row {
  margin: 0px -20px;
}
#article .article-inner .row .article-col .article-col-inner .article-about-wrap .row .article-member {
  width: 50%;
  padding: 0px 20px;
  margin-bottom: 20px;
}
#article .article-inner .row .article-col .article-col-inner .article-about-wrap .row .article-member .article-member-inner .article-member-about-wrap .heading h4 {
  color: #2a4258;
  font-size: 21px;
  margin: 0px 0px 5px 0px;
}
#article .article-inner .row .article-col .article-col-inner .article-about-wrap .row .article-member .article-member-inner .article-member-about-wrap .role h5 {
  color: #4a7d8e;
}
@media (min-width: 992px) {
  #article .article-inner .row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  #article .article-inner {
    padding: 115px 0px 50px 0px;
  }
}
#article.in-view .article-inner .row .article-col.article-col-image {
  opacity: 1;
  transform: translateX(0%);
}
#article.in-view .article-inner .row .article-col.article-col-main {
  opacity: 1;
  transform: translateY(0%);
}

.faqs {
  margin-block: 50px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .faqs {
    margin-block: clamp(50px, 100 / 1470 * var(--container-width), 100px);
  }
}
@media (min-width: 768px) {
  .faqs:not(:has(.box-intro)) {
    margin-block: clamp(50px, 160 / 1470 * var(--container-width), 160px);
  }
}
.faqs .box-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}
.faqs .text-left-buttons {
  width: unset;
}
.faqs .text-left-buttons .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.faqs .text-wrapper {
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .faqs .text-wrapper {
    width: 50%;
  }
}
.faqs .text-wrapper > :first-child {
  margin-top: 0;
}
.faqs .text-wrapper h2 {
  text-wrap-style: balance;
  color: #0e1216;
}
.faqs .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.faqs .text-wrapper p strong {
  font-weight: 600;
}
.faqs .text-wrapper p a {
  color: #4a7d8e;
}
.faqs.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.faqs.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.faqs.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.faqs.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.faqs.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.faqs.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.faqs.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.faqs.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.faqs.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.faqs.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.faqs.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}

.faq-list {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  gap: 15px;
}
.faq-list .faq-list-item {
  position: relative;
  padding: 1rem 1.5rem;
  z-index: 1;
  font-size: 1rem;
  color: #2a4258;
  border: 1px solid #cccccc;
  border-radius: 8px;
}
.faq-list .faq-list-item.active {
  font-weight: 600;
}
.faq-list .nav-indicator {
  background: rgba(74, 125, 142, 0.2);
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.2s;
  border-radius: 8px;
  animation: nav-indicator-reveal 0.6s ease-in-out;
}
@keyframes nav-indicator-reveal {
  0% {
    width: 0%;
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.faq-wrapper .box-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}
.faq-wrapper .text-left-buttons {
  width: unset;
}
.faq-wrapper.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.faq-wrapper.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.faq-wrapper.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}

.faqs {
  padding: 40px 30px;
}
@media (min-width: 992px) {
  .faqs {
    padding: 80px 0;
  }
}
.faqs .faq-wrapper {
  display: flex;
  gap: 100px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .faqs .faq-wrapper {
    flex-direction: row;
  }
}
.faqs .faq-wrapper.desktop {
  display: none;
}
@media (min-width: 992px) {
  .faqs .faq-wrapper.desktop {
    display: flex;
  }
}
.faqs .faq-wrapper.desktop .faqs-content {
  width: 100%;
  display: flex;
  gap: 30px;
  display: none;
}
.faqs .faq-wrapper.desktop .faqs-content.active {
  transition: all 1s ease;
  display: flex;
}
.faqs .faq-wrapper.desktop .faqs-content .faqs-inner {
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.faqs .faq-wrapper.desktop .faq-content {
  padding: 1rem 1.5rem;
}
.faqs .faq-wrapper.desktop .faq-item {
  border: 1px solid #4a7d8e;
  border-radius: 8px;
  overflow: hidden;
}
.faqs .faq-wrapper.desktop .faq-item-text {
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 0;
  opacity: 0;
}
.faqs .faq-wrapper.desktop button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #2a4258;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.faqs .faq-wrapper.desktop button:hover {
  cursor: pointer;
  color: #4a7d8e;
}
.faqs .faq-wrapper.desktop button:hover::after {
  cursor: pointer;
  color: #4a7d8e;
}
.faqs .faq-wrapper.desktop button:focus {
  cursor: pointer;
  color: #2a4258;
}
.faqs .faq-wrapper.desktop button:focus::after {
  cursor: pointer;
  color: #2a4258;
}
.faqs .faq-wrapper.desktop button .faq-heading-text {
  padding: 1em 1.5em 1em 0;
}
.faqs .faq-wrapper.desktop button .faq-icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.faqs .faq-wrapper.desktop button .faq-icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.faqs .faq-wrapper.desktop button .faq-icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.faqs .faq-wrapper.desktop button[aria-expanded=true] {
  color: #2a4258;
  background: rgba(74, 125, 142, 0.3);
}
.faqs .faq-wrapper.desktop button[aria-expanded=true] .faq-icon::after {
  width: 0;
}
.faqs .faq-wrapper.desktop button[aria-expanded=true] + .faq-item-text {
  opacity: 1;
  max-height: 12em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.faqs .faq-wrapper.desktop .faq-item-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.faqs .faq-wrapper.desktop .faq-item-text p {
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
  font-weight: 300;
  margin-top: 15px;
}
.faqs .faq-wrapper.desktop .faq-item-text p:first-of-type {
  margin-top: 0;
}
.faqs .faq-wrapper.desktop .faq-item-text ul {
  margin-top: 15px;
}
.faqs .faq-wrapper.desktop .faq-item-text ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  font-weight: 300;
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
}
.faqs .faq-wrapper.desktop .faq-item-text ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .faqs .faq-wrapper.desktop .faq-item-text ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .faqs .faq-wrapper.desktop .faq-item-text ul li::before {
    top: 10px;
  }
}
.faqs .faq-wrapper.mobile .faqs-content-outer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .faqs .faq-wrapper.mobile {
    display: none;
  }
}
.faqs .faq-wrapper.mobile .faqs-content {
  width: 100%;
  display: flex;
  gap: 30px;
  transition: all 1s ease;
}
.faqs .faq-wrapper.mobile .faqs-content .faqs-inner {
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 20px;
}
.faqs .faq-wrapper.mobile .acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faqs .faq-wrapper.mobile .acc-item.open > .acc-body {
  max-height: 2000px;
}
.faqs .faq-wrapper.mobile .faq-content {
  padding: 1rem 1.5rem;
}
.faqs .faq-wrapper.mobile .faq-item {
  border: 1px solid #4a7d8e;
  border-radius: 8px;
  overflow: hidden;
}
.faqs .faq-wrapper.mobile .faq-item-text {
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.faqs .faq-wrapper.mobile button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1rem 4rem 1rem 1.5rem;
  color: #2a4258;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.faqs .faq-wrapper.mobile button:hover {
  cursor: pointer;
  color: #4a7d8e;
}
.faqs .faq-wrapper.mobile button:hover::after {
  cursor: pointer;
  color: #4a7d8e;
}
.faqs .faq-wrapper.mobile button:focus {
  cursor: pointer;
  color: #2a4258;
}
.faqs .faq-wrapper.mobile button:focus::after {
  cursor: pointer;
  color: #2a4258;
}
.faqs .faq-wrapper.mobile button .faq-heading-text {
  padding: 1em 1.5em 1em 0;
}
.faqs .faq-wrapper.mobile button .faq-icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.faqs .faq-wrapper.mobile button .faq-icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.faqs .faq-wrapper.mobile button .faq-icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.faqs .faq-wrapper.mobile button[aria-expanded=true] {
  color: #2a4258;
  background: rgba(74, 125, 142, 0.3);
}
.faqs .faq-wrapper.mobile button[aria-expanded=true] .faq-icon::after {
  width: 0;
}
.faqs .faq-wrapper.mobile button[aria-expanded=true] + .faq-item-text {
  opacity: 1;
  max-height: 12em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.faqs .faq-wrapper.mobile .faq-item-text {
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.faqs .faq-wrapper.mobile .faq-item-text p {
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
  font-weight: 300;
  margin-top: 15px;
}
.faqs .faq-wrapper.mobile .faq-item-text p:first-of-type {
  margin-top: 0;
}
.faqs .faq-wrapper.mobile .faq-item-text ul {
  margin-top: 15px;
}
.faqs .faq-wrapper.mobile .faq-item-text ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  font-weight: 300;
  font-size: clamp(0.875rem, 0.8485rem + 0.1515vw, 1rem);
}
.faqs .faq-wrapper.mobile .faq-item-text ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .faqs .faq-wrapper.mobile .faq-item-text ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .faqs .faq-wrapper.mobile .faq-item-text ul li::before {
    top: 10px;
  }
}
.faqs .faq-wrapper .faq-intro-nav {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.faqs .faq-wrapper .text-wrapper {
  width: 100%;
}
.faqs .faqs-content-outer {
  width: 100%;
}
@media (min-width: 768px) {
  .faqs .faqs-content-outer {
    width: 60%;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
    margin-left: 30px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}
#logos {
  background-color: rgba(74, 125, 142, 0.1);
  padding: 30px 0;
  margin: 30px 0;
  position: relative;
  display: none;
}
@media (min-width: 768px) {
  #logos {
    padding: 50px 0;
    margin: 40px 0;
  }
}
@media (min-width: 1300px) {
  #logos {
    padding: 80px 0;
  }
}
#logos .row {
  display: flex;
  flex-wrap: wrap;
}
#logos .slides-wrapper {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
#logos .logos-inner {
  padding-block: 60px;
}
#logos .logos-inner .box-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}
#logos .logos-inner .text-left-buttons {
  width: unset;
}
#logos .logos-inner .text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  #logos .logos-inner .text-wrapper {
    width: 70%;
  }
}
#logos .logos-inner .text-wrapper > :first-child {
  margin-top: 0;
}
#logos .logos-inner .text-wrapper h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  text-wrap-style: balance;
  color: #0e1216;
}
@media (min-width: 768px) {
  #logos .logos-inner .text-wrapper h2 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  #logos .logos-inner .text-wrapper h2 {
    font-size: 38px;
  }
}
@media (min-width: 1300px) {
  #logos .logos-inner .text-wrapper h2 {
    font-size: 42px;
  }
}
@media (min-width: 1600px) {
  #logos .logos-inner .text-wrapper h2 {
    font-size: 50px;
  }
}
#logos .logos-inner .text-wrapper h2 strong {
  font-weight: 600;
}
#logos .logos-inner .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
#logos .logos-inner .text-wrapper p strong {
  font-weight: 600;
}
#logos .logos-inner .text-wrapper p a {
  color: #4a7d8e;
}
#logos .logos-inner.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
#logos .logos-inner.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
#logos .logos-inner.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
#logos .logos-inner .logos-wrap .row {
  margin: 0px 0px;
}
#logos .logos-inner .logos-wrap .row .logo {
  width: 50%;
  height: 145px;
  padding: 0px 12.5px;
}
#logos .logos-inner .logos-wrap .row .logo .logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 16px;
  background-color: #FFFFFF;
}
#logos .logos-inner .logos-wrap .row .logo .logo-inner .logo-wrap {
  display: flex;
  align-items: center;
  min-height: 75px;
}
#logos .logos-inner .logos-wrap .row .logo .logo-inner .logo-wrap--large svg,
#logos .logos-inner .logos-wrap .row .logo .logo-inner .logo-wrap--large img {
  max-height: 100px;
}
#logos .logos-inner .logos-wrap .row .logo .logo-inner a {
  text-decoration: none;
}
#logos .logos-inner .logos-wrap .row .logo .logo-inner img,
#logos .logos-inner .logos-wrap .row .logo .logo-inner svg {
  display: block;
  width: 100%;
  max-width: 175px;
  height: auto;
  max-height: 75px;
  margin: 0 auto;
}
#logos .logos-inner .logos-wrap .row .logo img {
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  #logos .logos-inner .logos-wrap .row .logo {
    width: 33.33%;
  }
}
@media (min-width: 1300px) {
  #logos .logos-inner .logos-wrap .row .logo {
    min-width: 280px;
  }
}
#logos.in-view .logos-inner .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
#logos.in-view .logos-inner .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
@media (min-width: 992px) {
  #logos {
    display: block;
  }
}

body.page-template-page-the-bottle-community #logos {
  display: none;
}
body.page-template-page-the-bottle-community #logos .logos-inner .logos-wrap .row .logo .logo-inner {
  background-color: #4a7d8e;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  body.page-template-page-the-bottle-community #logos {
    display: block;
  }
}

.member-spotlight {
  position: relative;
  display: block;
  width: 100%;
  border-top-left-radius: 80px;
  padding: 50px 30px;
}
@media (min-width: 768px) {
  .member-spotlight {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0;
  }
}
@media (min-width: 1300px) {
  .member-spotlight {
    padding: 80px 0;
  }
}
.member-spotlight.light {
  background-color: #F8F8FF;
}
.member-spotlight.medium {
  background-color: #9DF4F3;
}
.member-spotlight.dark-blue h2, .member-spotlight.navy-blue h2, .member-spotlight.black h2 {
  color: #FFFFFF;
}
.member-spotlight.dark-blue p, .member-spotlight.navy-blue p, .member-spotlight.black p {
  color: #FFFFFF;
}
.member-spotlight.dark-blue blockquote, .member-spotlight.navy-blue blockquote, .member-spotlight.black blockquote {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='22' fill='none' viewBox='0 0 24 22'%3E%3Cpath fill='%234a7d8e' d='M18.93 22h-7.504l6.907-22h5.458l-4.86 22ZM7.504 22H0L6.907 0h5.457l-4.86 22Z'/%3E%3C/svg%3E") no-repeat 31px top/24px 22px;
}
.member-spotlight.dark-blue blockquote p, .member-spotlight.navy-blue blockquote p, .member-spotlight.black blockquote p {
  color: #FFFFFF;
}
.member-spotlight.dark-blue .text-button .button-label, .member-spotlight.navy-blue .text-button .button-label, .member-spotlight.black .text-button .button-label {
  color: #FFFFFF;
}
.member-spotlight.dark-blue .button:hover .button-label, .member-spotlight.navy-blue .button:hover .button-label, .member-spotlight.black .button:hover .button-label {
  color: #FFFFFF;
}
.member-spotlight.dark-blue .button.secondary .button-label, .member-spotlight.navy-blue .button.secondary .button-label, .member-spotlight.black .button.secondary .button-label {
  color: #FFFFFF;
}
.member-spotlight .box-intro {
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
}
@media (min-width: 768px) {
  .member-spotlight .box-intro {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .member-spotlight .box-intro {
    padding-bottom: 60px;
  }
}
.member-spotlight .member-spotlight-content {
  display: flex;
  width: 100%;
  border-radius: 30px;
  border-bottom-left-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  background-color: #FFFFFF;
  flex-direction: column;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .member-spotlight .member-spotlight-content {
    gap: 60px;
    flex-direction: row;
    border-radius: 60px;
    margin-top: 0;
  }
}
.member-spotlight .member-spotlight-content:before {
  content: " ";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #4a7d8e;
  z-index: 100;
  border-radius: 20px;
  border-bottom-left-radius: 0;
}
@media (min-width: 992px) {
  .member-spotlight .member-spotlight-content:before {
    border-radius: 50px;
  }
}
.member-spotlight .member-spotlight-main {
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .member-spotlight .member-spotlight-main {
    gap: 60px;
    padding: 60px;
  }
}
.member-spotlight .member-spotlight-main .text-wrapper {
  width: 100%;
}
.member-spotlight .member-spotlight-main .text-wrapper p {
  text-wrap-style: unset;
}
.member-spotlight .text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .member-spotlight .text-wrapper {
    width: 70%;
  }
}
.member-spotlight .text-wrapper > :first-child {
  margin-top: 0;
}
.member-spotlight .text-wrapper h2 {
  text-wrap-style: balance;
  color: #0e1216;
}
.member-spotlight .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.member-spotlight .text-wrapper p strong {
  font-weight: 600;
}
.member-spotlight .text-wrapper p a {
  color: #4a7d8e;
}
.member-spotlight .company-logo {
  margin-bottom: 30px;
}
.member-spotlight .company-logo img,
.member-spotlight .company-logo svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 75px;
}
@media (min-width: 768px) {
  .member-spotlight .company-logo img,
  .member-spotlight .company-logo svg {
    max-width: 305px;
    height: auto;
    max-height: 75px;
  }
}
@media (min-width: 768px) {
  .member-spotlight .company-logo {
    margin-bottom: 0px;
  }
}
.member-spotlight--colour:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.member-spotlight--colour .text-image-main,
.member-spotlight--colour .text-aside {
  position: relative;
  z-index: 2;
}
.member-spotlight--colour .title {
  color: #0e1216;
  background: transparent;
  -webkit-background-clip: unset;
  -moz-background-clip: unset;
  -webkit-text-fill-color: unset;
  -moz-text-fill-color: unset;
}
.member-spotlight--colour .text-image-button {
  background-color: #0e1216;
}
.member-spotlight--colour .text-image-button:hover {
  color: #0e1216;
  background-color: #FFFFFF;
}
.member-spotlight.no-trigger .text-image-image {
  transform: scale(1);
  opacity: 1;
}
.member-spotlight.no-trigger .text-button {
  transform: translateX(0);
  opacity: 1;
}
.member-spotlight.no-trigger .button {
  transform: translateX(0);
  opacity: 1;
}
.member-spotlight.no-trigger .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(1) {
  transition-delay: 0;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(2) {
  transition-delay: 0;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(3) {
  transition-delay: 0;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(4) {
  transition-delay: 0;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(5) {
  transition-delay: 0;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(6) {
  transition-delay: 0;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(7) {
  transition-delay: 0;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(8) {
  transition-delay: 0;
}
.member-spotlight.no-trigger .text-wrapper > :nth-child(9) {
  transition-delay: 0;
}
.member-spotlight.in-view .text-image-main {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.member-spotlight.in-view .member-spotlight-main {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.member-spotlight.in-view .text-image-image {
  transform: scale(1);
  opacity: 1;
}
.member-spotlight.in-view .text-button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.member-spotlight.in-view .company-logo {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.member-spotlight.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.member-spotlight.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.member-spotlight.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.member-spotlight.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.member-spotlight.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.member-spotlight.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.member-spotlight.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.member-spotlight.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.member-spotlight.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.member-spotlight.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.member-spotlight.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
.member-spotlight.in-view ol {
  list-style-type: decimal;
}
.member-spotlight.in-view li {
  list-style-position: inside;
  padding: 5px 20px;
}
.member-spotlight.in-view li::marker {
  color: #4a7d8e;
}
.member-spotlight .company-logo {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.member-spotlight .text-button,
.member-spotlight .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-image-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-wrapper > * {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.member-spotlight-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-radius: 60px;
  border-bottom-right-radius: 0;
  justify-content: space-between;
  position: relative;
  z-index: 101;
}
@media (min-width: 992px) {
  .member-spotlight-main {
    transform: translateX(-40px);
    transition: opacity 0.8s, transform 0.8s;
    opacity: 0;
    width: unset;
    flex: 1;
  }
}
.member-spotlight-main > :first-child {
  margin-top: 0;
}
.member-spotlight-main h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  text-wrap-style: balance;
  color: #0e1216;
}
@media (min-width: 768px) {
  .member-spotlight-main h2 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .member-spotlight-main h2 {
    font-size: 38px;
  }
}
@media (min-width: 1300px) {
  .member-spotlight-main h2 {
    font-size: 42px;
  }
}
@media (min-width: 1600px) {
  .member-spotlight-main h2 {
    font-size: 50px;
  }
}
.member-spotlight-main h2 strong {
  font-weight: 600;
}
.member-spotlight-main p {
  margin-top: 20px;
  font-weight: 300;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.member-spotlight-main p strong {
  font-weight: 600;
}
.member-spotlight-main p a {
  color: #4a7d8e;
}
.member-spotlight-main .button-group {
  display: flex;
  gap: 15px;
}
.member-spotlight-main ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  font-weight: 300;
  font-size: clamp(1rem, 4vmin, 1.1rem);
}
.member-spotlight-main ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .member-spotlight-main ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .member-spotlight-main ul li::before {
    top: 15px;
  }
}
.member-spotlight-main ol {
  counter-reset: ordered-list;
}
.member-spotlight-main ol li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: 1rem;
  font-size: clamp(1rem, 4vmin, 1.1rem);
}
.member-spotlight-main ol li::before {
  content: counter(ordered-list) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  counter-increment: ordered-list;
  color: #4a7d8e;
}

.text-image-buttons {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .text-image-buttons {
    flex-direction: row;
  }
}

.text-image-button {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background-color: #4a7d8e;
  transition: color 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .text-image-button {
    font-size: 18px;
  }
}
.text-image-button:first-of-type {
  margin-top: 0;
}
.text-image-button:hover {
  color: #0e1216;
  background-color: #4a7d8e;
}

.text-aside {
  display: block;
  width: 100%;
  border-radius: 30px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
  position: relative;
  background-color: #4a7d8e;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 101;
}
@media (min-width: 768px) {
  .text-aside {
    width: 45%;
    border-radius: 40px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
@media (min-width: 992px) {
  .text-aside {
    width: 50%;
    padding: 60px;
    border-radius: 60px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.text-aside h3 {
  color: #FFFFFF;
}
.text-aside .company-about {
  color: #FFFFFF;
}
.text-aside .button-group {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .text-aside .button-group {
    flex-direction: row;
  }
}

.greyscale .text-image-image {
  filter: grayscale(1);
}

.team-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .team-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1300px) {
  .team-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.team-wrapper > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s, transform 2.4s;
}
.team-wrapper > :nth-child(1) {
  transition-delay: 0s !important;
}
.team-wrapper > :nth-child(2) {
  transition-delay: 0.1s !important;
}
.team-wrapper > :nth-child(3) {
  transition-delay: 0.2s !important;
}
.team-wrapper > :nth-child(4) {
  transition-delay: 0.3s !important;
}
.team-wrapper > :nth-child(5) {
  transition-delay: 0.4s !important;
}
.team-wrapper > :nth-child(6) {
  transition-delay: 0.5s !important;
}
.team-wrapper > :nth-child(7) {
  transition-delay: 0.6s !important;
}
.team-wrapper > :nth-child(8) {
  transition-delay: 0.7s !important;
}
.team-wrapper > :nth-child(9) {
  transition-delay: 0.8s !important;
}
.team-wrapper > :nth-child(10) {
  transition-delay: 0.9s !important;
}
.team-wrapper > :nth-child(11) {
  transition-delay: 1s !important;
}
.team-wrapper > :nth-child(12) {
  transition-delay: 1.1s !important;
}
.team-wrapper > :nth-child(13) {
  transition-delay: 1.2s !important;
}
.team-wrapper > :nth-child(14) {
  transition-delay: 1.3s !important;
}
.team-wrapper > :nth-child(15) {
  transition-delay: 1.4s !important;
}
.team-wrapper > :nth-child(16) {
  transition-delay: 1.5s !important;
}
.team-wrapper > :nth-child(17) {
  transition-delay: 1.6s !important;
}
.team-wrapper > :nth-child(18) {
  transition-delay: 1.7s !important;
}
.team-wrapper > :nth-child(19) {
  transition-delay: 1.8s !important;
}
.team-wrapper > :nth-child(20) {
  transition-delay: 1.9s !important;
}
.team-wrapper > :nth-child(21) {
  transition-delay: 2s !important;
}
.team-wrapper > :nth-child(22) {
  transition-delay: 2.1s !important;
}
.team-wrapper > :nth-child(23) {
  transition-delay: 2.2s !important;
}
.team-wrapper > :nth-child(24) {
  transition-delay: 2.3s !important;
}
.team-wrapper > :nth-child(25) {
  transition-delay: 2.4s !important;
}
.team-wrapper > :nth-child(26) {
  transition-delay: 2.5s !important;
}
.team-wrapper > :nth-child(27) {
  transition-delay: 2.6s !important;
}
.team-wrapper > :nth-child(28) {
  transition-delay: 2.7s !important;
}
.team-wrapper > :nth-child(29) {
  transition-delay: 2.8s !important;
}
.team-wrapper.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.team-members {
  position: relative;
  padding: 60px 30px;
  background-color: #F2F2F2;
  width: 100%;
}
@media (min-width: 768px) {
  .team-members {
    padding: 60px 0;
  }
}
.team-members .box-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}
.team-members .text-left-buttons {
  width: unset;
}
.team-members .text-left-buttons .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}
.team-members .text-wrapper {
  display: flex;
  width: 50%;
  flex-direction: column;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .team-members .text-wrapper {
    width: 50%;
  }
}
.team-members .text-wrapper > :first-child {
  margin-top: 0;
}
.team-members .text-wrapper h2 {
  text-wrap-style: balance;
  color: #0e1216;
  font-weight: 300;
}
.team-members .text-wrapper p {
  margin-top: 20px;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
}
.team-members .text-wrapper p strong {
  font-weight: 600;
}
.team-members .text-wrapper p a {
  color: #4a7d8e;
}
.team-members.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.team-members.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.team-members.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.team-members.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.team-members.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.team-members.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.team-members.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.team-members.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.team-members.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.team-members.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.team-members.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}

.team-list-heading {
  width: 100%;
  margin-bottom: 35px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .team-list-heading {
    margin-bottom: 50px;
  }
}
.team-list-heading span {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .team-list-heading span {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .team-list-heading span {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .team-list-heading span {
    font-size: 20px;
  }
}

.team-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 0px;
  border-radius: 60px;
  padding: 15px;
  position: relative;
  color: #d9dbdd;
  color: #FFFFFF;
  gap: 20px;
}
.team-item .button {
  z-index: 2;
}
.team-item:nth-of-type(6n+1) {
  color: #FFFFFF;
}
.team-item:nth-of-type(6n+1) .item-bg {
  background-color: #FFFFFF;
}
.team-item:nth-of-type(6n+1) .btn_bg path {
  fill: #FFFFFF;
}
.team-item:nth-of-type(6n+1) .categories .category {
  color: #2a4258;
  border: 0.5px solid #2a4258;
}
.team-item:nth-of-type(6n+3) {
  color: #d9dbdd;
}
.team-item:nth-of-type(6n+3) .item-bg {
  background-color: #d9dbdd;
}
.team-item:nth-of-type(6n+3) .btn_bg path {
  fill: #d9dbdd;
}
.team-item:nth-of-type(6n+3) .categories .category {
  color: #2a4258;
  border: 0.5px solid #2a4258;
}
.team-item:nth-of-type(6n+5) {
  color: #e2e6e8;
}
.team-item:nth-of-type(6n+5) .item-bg {
  background-color: #4a7d8e;
  background-color: #e2e6e8;
}
.team-item:nth-of-type(6n+5) .btn_bg path {
  fill: #e2e6e8;
}
.team-item:nth-of-type(6n+5) h4.team-name {
  color: #2a4258;
}
.team-item:nth-of-type(6n+5) p {
  color: #4a7d8e;
}
.team-item:nth-of-type(6n+5) .categories .category {
  color: #9DF4F3;
  border: 0.5px solid #9DF4F3;
}
.team-item:nth-of-type(6n+7) {
  color: #e8e4e1;
}
.team-item:nth-of-type(6n+7) .item-bg {
  background-color: #e8e4e1;
}
.team-item:nth-of-type(6n+7) .btn_bg path {
  fill: #e8e4e1;
}
.team-item:nth-of-type(6n+7) h3.team-name {
  color: #FFFFFF;
}
.team-item:nth-of-type(6n+7) p {
  color: #FFFFFF;
}
.team-item:nth-of-type(6n+7) .categories .category {
  color: #9DF4F3;
  border: 0.5px solid #9DF4F3;
}
.team-item .item-bg {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
  z-index: 0;
  clip-path: polygon(100% 0, 100% calc(100% - 75px), calc(100% - 75px) calc(100% - 75px), calc(100% - 75px) 100%, 0 100%, 0 0);
}
.team-item .region {
  background-color: #F2F2F2;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 10px 15px;
  padding: 6px 15px;
  font-size: 0.8em;
  color: #2a4258;
}
.team-item .team-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.team-item .team-title-wrap h4 {
  font-weight: 600;
  text-transform: none;
  color: #2a4258;
}
.team-item .team-title-wrap p {
  color: #4a7d8e;
}
.team-item .item_btn {
  width: 87px;
  height: 90px;
}
.team-item .btn_icon {
  background-color: transparent;
  overflow: hidden;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center;
  transition-duration: var(--button-transition-duration);
  transition-property: transform;
  transition-timing-function: var(--button-transition-timing-function);
  justify-content: center;
  align-items: center;
}
.team-item .btn_icon .arrow {
  position: absolute;
  z-index: 2;
}
.team-item .btn_icon:before {
  background-color: transparent;
  background-image: var(--button-blob-icon-image-hover), var(--button-blob-icon-image);
  background-repeat: no-repeat;
  background-position: var(--button-blob-icon-position);
  background-size: var(--button-blob-icon-size);
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition-duration: var(--button-transition-duration);
  transition-property: background-position;
  transition-timing-function: var(--button-transition-timing-function);
  z-index: 2;
}
.team-item .btn_bg {
  width: 100%;
  height: 100%;
}
.team-item .btn_el {
  pointer-events: none;
  width: 51px;
  height: 48px;
}
.team-item .item_btn,
.team-item .btn_el,
.team-item .btn_bg {
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.team-item .btn-bg {
  width: 100%;
  height: 100%;
}
.team-item .btn_bg path {
  fill: #FFFFFF;
}
.team-item .btn_bg path {
  fill: #FFFFFF;
}
.team-item .company-logo {
  padding: 10px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
}
.team-item .company-logo img {
  width: auto;
  max-width: 80%;
  filter: grayscale(100%);
  height: auto;
  max-height: 60px;
}
.team-item .member-information {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 1;
}
.team-item .member-information .info {
  padding: 0 10px;
  color: #2a4258;
  display: flex;
  flex-direction: column;
  width: 33.3333%;
}
.team-item .member-information .info h2 {
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .team-item .member-information .info h2 {
    font-size: 19px;
  }
}
.team-item .member-information .info span {
  font-size: 11px;
  line-height: 1.1;
  text-transform: lowercase;
}
@media (min-width: 992px) {
  .team-item .member-information .info span {
    font-size: 12px;
  }
}

.team-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border: 3px solid rgba(255, 255, 255, 0.1803921569);
}
@media (min-width: 1300px) {
  .team-image {
    width: 100%;
  }
}
.team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-item-content {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-right: 40px;
}
.team-item-content p {
  margin-top: 20px;
  font-size: 15px;
  color: #2a4258;
  font-weight: 300;
}
@media (min-width: 768px) {
  .team-item-content p {
    font-size: 16px;
  }
}
.team-item-content span {
  color: #2a4258;
}
.team-item-content .categories {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  row-gap: 6px;
  flex-wrap: wrap;
}
.team-item-content .categories .category {
  border-radius: 15px;
  padding: 6px 11px;
  font-size: 0.7em;
  color: #2a4258;
  border: 0.5px solid #2a4258;
}

.permalink {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.team-member-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: opacity 0.75s ease;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}
.team-member-modal .team-member-modal-wrap {
  display: flex;
  align-items: center;
  margin: 0px 0px;
  justify-content: space-between;
  width: 100%;
  color: #FFFFFF;
  position: relative;
  max-height: 100%;
  overflow-y: auto;
  transition: opacity 0.75s ease;
  background-color: #2a4258;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.team-member-modal .team-member-modal-wrap .modal-image-wrap {
  position: relative;
  padding: 30px 30px 60px 30px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-direction: column;
}
.team-member-modal .team-member-modal-wrap .modal-image-wrap .modal-image {
  width: 100%;
  display: block;
  position: relative;
  aspect-ratio: 800/350;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.team-member-modal .team-member-modal-wrap .modal-image-wrap .team-image {
  width: 150px;
  height: 150px;
  border-radius: 1000px;
}
@media (min-width: 992px) {
  .team-member-modal .team-member-modal-wrap .modal-image-wrap .team-image {
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 992px) {
  .team-member-modal .team-member-modal-wrap .modal-image-wrap {
    flex-direction: row;
    gap: 100px;
    padding: 60px;
  }
}
.team-member-modal .team-member-modal-wrap .headings {
  margin-bottom: 30px;
}
.team-member-modal .team-member-modal-wrap .headings .name h3 {
  line-height: 1.1;
  margin: 0px 0px 10px 0px;
}
@media (min-width: 992px) {
  .team-member-modal .team-member-modal-wrap .headings .name h3 {
    margin: 0px 0px 5px 0px;
  }
}
.team-member-modal .team-member-modal-wrap .headings .role {
  font-size: 16px;
  margin: 10px 0px 0px 0px;
  font-weight: 500;
}
.team-member-modal .team-member-modal-wrap .modal-content {
  flex: 1;
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner {
  padding: 0px;
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-content-header {
  display: flex;
  align-items: center;
  margin: 0px 0px;
  justify-content: space-between;
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-content-header .headings .name h3 {
  line-height: 1.1;
  font-size: 36px;
  margin: 0px 0px 10px 0px;
}
@media (min-width: 992px) {
  .team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-content-header .headings .name h3 {
    font-size: 47px;
    margin: 0px 0px 5px 0px;
  }
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-content-header .headings .role {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 10px 0px 0px 0px;
  font-weight: 500;
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-body .body {
  /* Chrome / Safari / Edge */
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-body .body .scroll-box {
  max-height: 350px;
  /* adjust to suit your layout */
  overflow-y: auto;
  padding-right: 40px;
  /* Firefox */
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-body .body .scroll-box::-webkit-scrollbar {
  width: 12px;
  /* Mostly for vertical scrollbars */
  height: 12px;
  /* Mostly for horizontal scrollbars */
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-body .body .scroll-box::-webkit-scrollbar-thumb {
  /* Foreground */
  background: var(--scrollbar-foreground);
  background: #bbbbbb;
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-body .body .scroll-box::-webkit-scrollbar-track {
  /* Background */
  background: var(--scrollbar-background);
  background: #F2F2F2;
  border-radius: 999px;
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-body .body p {
  font-weight: 300;
  font-size: clamp(1rem, 4vmin, 1rem);
  margin-top: 20px;
}
.team-member-modal .team-member-modal-wrap .modal-content .modal-content-inner .modal-body .body p:first-of-type {
  margin-top: 0px;
}
@media (min-width: 992px) {
  .team-member-modal .team-member-modal-wrap {
    width: 60%;
    max-height: 85%;
  }
}
.team-member-modal .close-modal {
  position: absolute;
  z-index: 999;
  right: 8px;
  top: 8px;
}
.team-member-modal .close-modal:hover, .team-member-modal .close-modal:focus {
  cursor: pointer;
}
.team-member-modal .close-modal svg g path {
  stroke: #0e1216;
}
.team-member-modal .close-modal .button {
  border: 0px;
  cursor: pointer;
  margin: 0px 0px;
  padding: 0px 0px;
  background-color: transparent;
}
.team-member-modal .close-modal .button:before {
  display: none;
}
.team-member-modal .close-modal .button svg {
  transition: 0.5s all;
}
.team-member-modal .close-modal .button svg:hover {
  transform: rotate(90deg);
}
.team-member-modal .close-modal .button {
  border: 0px;
  cursor: pointer;
  margin: 0px 0px;
  padding: 0px 0px;
  background-color: transparent;
}
.team-member-modal.active {
  opacity: 1;
  z-index: 100000;
}
.cta-banner {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 30px;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .cta-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0;
    margin: 40px 0;
  }
}
@media (min-width: 1300px) {
  .cta-banner {
    padding: 80px 0;
  }
}
.cta-banner.light {
  background-color: #F8F8FF;
}
.cta-banner.medium {
  background-color: #9DF4F3;
}
.cta-banner .cta-content {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 5px 15px 0 rgba(37, 44, 97, 0.15), 0 2px 4px 0 rgba(93, 100, 148, 0.2);
  padding: 30px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 992px) {
  .cta-banner .cta-content {
    border-radius: 30px;
  }
}
@media (min-width: 992px) {
  .cta-banner .cta-content {
    gap: 60px;
    flex-direction: row;
  }
}
.cta-banner .cta-content:before {
  content: " ";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid #4a7d8e;
  z-index: 0;
  border-radius: 30px;
}
@media (min-width: 992px) {
  .cta-banner .cta-content:before {
    border-radius: 40px;
  }
}
.cta-banner .cta-content .text-left-buttons {
  margin-top: 0;
  gap: 20px;
  align-items: flex-end;
  width: unset;
}
.cta-banner .cta-content .logo-wrap img,
.cta-banner .cta-content .logo-wrap svg {
  width: auto;
  max-width: 80%;
  filter: grayscale(100%);
  height: auto;
  max-height: 60px;
}
.cta-banner .cta-content.dark-blue h2, .cta-banner .cta-content.navy-blue h2, .cta-banner .cta-content.black h2, .cta-banner .cta-content.col-2a4258 h2 {
  color: #FFFFFF;
}
.cta-banner .cta-content.dark-blue p, .cta-banner .cta-content.navy-blue p, .cta-banner .cta-content.black p, .cta-banner .cta-content.col-2a4258 p {
  color: #FFFFFF;
}
.cta-banner .cta-content.dark-blue .text-button .button-label, .cta-banner .cta-content.navy-blue .text-button .button-label, .cta-banner .cta-content.black .text-button .button-label, .cta-banner .cta-content.col-2a4258 .text-button .button-label {
  color: #FFFFFF;
}
.cta-banner .cta-content.dark-blue .button:hover .button-label, .cta-banner .cta-content.navy-blue .button:hover .button-label, .cta-banner .cta-content.black .button:hover .button-label, .cta-banner .cta-content.col-2a4258 .button:hover .button-label {
  color: #FFFFFF;
}
.cta-banner .cta-content.dark-blue .button.secondary .button-label, .cta-banner .cta-content.navy-blue .button.secondary .button-label, .cta-banner .cta-content.black .button.secondary .button-label, .cta-banner .cta-content.col-2a4258 .button.secondary .button-label {
  color: #FFFFFF;
}
.cta-banner .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cta-banner .text-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .cta-banner.right_align .cta-main {
    order: 1;
  }
}
@media (min-width: 768px) {
  .cta-banner.right_align .cta-aside {
    order: 0;
  }
}
.cta-banner--colour:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-banner--colour .cta-main,
.cta-banner--colour .cta-aside {
  position: relative;
  z-index: 2;
}
.cta-banner--colour .title {
  color: #0e1216;
  background: transparent;
  -webkit-background-clip: unset;
  -moz-background-clip: unset;
  -webkit-text-fill-color: unset;
  -moz-text-fill-color: unset;
}
.cta-banner--colour .cta-button {
  background-color: #0e1216;
}
.cta-banner--colour .cta-button:hover {
  color: #0e1216;
  background-color: #FFFFFF;
}
.cta-banner.no-trigger .cta-image {
  transform: scale(1);
  opacity: 1;
}
.cta-banner.no-trigger .text-button {
  transform: translateX(0);
  opacity: 1;
}
.cta-banner.no-trigger .button {
  transform: translateX(0);
  opacity: 1;
}
.cta-banner.no-trigger .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(1) {
  transition-delay: 0;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(2) {
  transition-delay: 0;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(3) {
  transition-delay: 0;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(4) {
  transition-delay: 0;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(5) {
  transition-delay: 0;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(6) {
  transition-delay: 0;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(7) {
  transition-delay: 0;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(8) {
  transition-delay: 0;
}
.cta-banner.no-trigger .text-wrapper > :nth-child(9) {
  transition-delay: 0;
}
.cta-banner.in-view .cta-main {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.cta-banner.in-view .cta-image {
  transform: scale(1);
  opacity: 1;
}
.cta-banner.in-view .text-button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.cta-banner.in-view .button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.cta-banner.in-view .text-wrapper > * {
  transform: translateX(0);
  opacity: 1;
}
.cta-banner.in-view .text-wrapper > :nth-child(1) {
  transition-delay: 0.6s;
}
.cta-banner.in-view .text-wrapper > :nth-child(2) {
  transition-delay: 0.7s;
}
.cta-banner.in-view .text-wrapper > :nth-child(3) {
  transition-delay: 0.8s;
}
.cta-banner.in-view .text-wrapper > :nth-child(4) {
  transition-delay: 0.9s;
}
.cta-banner.in-view .text-wrapper > :nth-child(5) {
  transition-delay: 1s;
}
.cta-banner.in-view .text-wrapper > :nth-child(6) {
  transition-delay: 1.1s;
}
.cta-banner.in-view .text-wrapper > :nth-child(7) {
  transition-delay: 1.2s;
}
.cta-banner.in-view .text-wrapper > :nth-child(8) {
  transition-delay: 1.3s;
}
.cta-banner.in-view .text-wrapper > :nth-child(9) {
  transition-delay: 1.4s;
}
.cta-banner.in-view ol {
  list-style-type: decimal;
}
.cta-banner.in-view li {
  list-style-position: inside;
  padding: 5px 20px;
}
.cta-banner.in-view li::marker {
  color: #4a7d8e;
}
.cta-banner .text-button,
.cta-banner .button {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.cta-image {
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.text-wrapper > * {
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.cta-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-radius: 60px;
  border-bottom-right-radius: 0;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cta-main {
    transform: translateX(-40px);
    transition: opacity 0.8s, transform 0.8s;
    opacity: 0;
    width: unset;
    flex: 1;
  }
}
.cta-main > :first-child {
  margin-top: 0;
}
.cta-main h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  text-wrap-style: balance;
}
@media (min-width: 768px) {
  .cta-main h2 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .cta-main h2 {
    font-size: 38px;
  }
}
@media (min-width: 1300px) {
  .cta-main h2 {
    font-size: 42px;
  }
}
@media (min-width: 1600px) {
  .cta-main h2 {
    font-size: 50px;
  }
}
.cta-main h2 strong {
  font-weight: 600;
}
.cta-main p {
  margin-top: 0px;
  font-weight: 300;
  color: #0e1216;
  line-height: 1.5;
  text-wrap-style: balance;
  width: 60%;
  font-size: 1.3rem;
}
.cta-main p strong {
  font-weight: 600;
}
.cta-main p a {
  color: #4a7d8e;
}
.cta-main ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  font-weight: 300;
  font-size: clamp(1rem, 4vmin, 1.1rem);
}
.cta-main ul li::before {
  overflow: hidden;
  border-radius: 9999px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  overflow: hidden;
  background-color: #4a7d8e;
}
@media (min-width: 768px) {
  .cta-main ul li::before {
    top: 9px;
  }
}
@media (min-width: 1300px) {
  .cta-main ul li::before {
    top: 15px;
  }
}
.cta-main ol {
  counter-reset: ordered-list;
}
.cta-main ol li {
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  font-size: 1rem;
  font-size: clamp(1rem, 4vmin, 1.1rem);
}
.cta-main ol li::before {
  content: counter(ordered-list) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  counter-increment: ordered-list;
  color: #4a7d8e;
}

.cta-buttons {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-button {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background-color: #4a7d8e;
  transition: color 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .cta-button {
    font-size: 18px;
  }
}
.cta-button:first-of-type {
  margin-top: 0;
}
.cta-button:hover {
  color: #0e1216;
  background-color: #4a7d8e;
}

.cta-aside {
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: flex-end;
}

.cta-media {
  position: relative;
  width: 100%;
  height: 250px;
  z-index: 1;
}
@media (min-width: 992px) {
  .cta-media {
    height: 100%;
    min-height: 50vh;
  }
}

.greyscale .cta-image {
  filter: grayscale(1);
}

.cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
}

.cta-other {
  position: relative;
  width: 100%;
  margin-top: -80px;
  margin-bottom: 50px;
  padding: 0 15px;
  z-index: 2;
}
@media (min-width: 768px) {
  .cta-other {
    width: 75%;
    max-width: 450px;
    margin: -80px auto 0;
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .cta-other {
    margin-top: -120px;
  }
}
.cta-other--image {
  width: 75%;
  margin-left: 12.5%;
}
@media (min-width: 768px) {
  .cta-other--image {
    width: 60%;
    max-width: 300px;
    margin-left: auto;
  }
}
.cta-other--image .cta-other-content {
  height: 0;
  padding: 0 0 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  overflow: hidden;
}

.cta-other-inner {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  border-width: 10px;
  border-style: solid;
}
@media (min-width: 992px) {
  .cta-other-inner {
    padding: 20px;
  }
}
.cta-other-inner:before {
  content: "";
  position: absolute;
  top: 70px;
  left: -10px;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  z-index: 2;
}
@media (min-width: 1300px) {
  .cta-other-inner:before {
    top: 110px;
  }
}
.cta-other-inner:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  z-index: 2;
}

.cta-other-content {
  display: block;
  width: 100%;
  padding: 30px;
  background-color: #FFFFFF;
}

.cta-other-item {
  display: block;
  width: 100%;
  margin-top: 30px;
}
.cta-other-item:first-of-type {
  margin-top: 0;
}
.cta-other-item > :first-child {
  margin-top: 0;
}
.cta-other-item ul {
  display: block;
  width: 100%;
  margin-top: 15px;
}
.cta-other-item ul li {
  position: relative;
  display: block;
  color: #0e1216;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1300px) {
  .cta-other-item ul li {
    font-size: 16px;
  }
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/node_modules/slick-carousel/slick-carousel/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/node_modules/slick-carousel/slick/fonts/slick.eot");
  src: url("/node_modules/slick-carousel/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/node_modules/slick-carousel/slick/fonts/slick.woff") format("woff"), url("/node_modules/slick-carousel/slick/fonts/slick.ttf") format("truetype"), url("/node_modules/slick-carousel/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: black;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
