/*!**************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./blocks/content/image-text/image-text.scss ***!
  \**************************************************************************************************************************************************************************************************************************************/
:root {
  --font-family-main: "area-normal", sans-serif;
  --font-family-display: "halyard-display", sans-serif;
  --font-family-body: "area-normal", sans-serif;
  --font-family-display-medium: var(--font-family-display);
  --font-family-body-regular: var(--font-family-body);
  --font-family-body-book: var(--font-family-body);
  --font-family-body-bold: var(--font-family-body);
  --font-weight-display-medium: 400;
  --font-weight-body-regular: 400;
  --font-weight-body-book: 400;
  --font-weight-body-bold: 700;
  --font-weight-body-black: 900;
  --color-primary: #00c6c2;
  --color-secondary: #052831;
  --color-teal: #00c6c2;
  --color-midnight-black: #052831;
  --color-putty: #fdf7ea;
  --color-white: #ffffff;
  --color-midnight-black-dark: #031d24;
  --color-black: #000000;
  --color-error: #dd0000;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  30% {
    stroke-dashoffset: 0;
  }
  45% {
    stroke-dashoffset: 0;
  }
  75% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
@keyframes svg-spin {
  0% {
    transform: scale(1) rotateY(0);
  }
  30% {
    transform: scale(1) rotateY(0);
  }
  35% {
    transform: scale(1.25) rotateY(0);
  }
  40% {
    transform: scale(1.25) rotateY(360deg);
  }
  45% {
    transform: scale(1) rotateY(360deg);
  }
  100% {
    transform: scale(1) rotateY(360deg);
  }
}
.image-text {
  --image-text-container-inline-edge: 20px;
  --image-text-wide-inline-edge: 20px;
  --image-text-content-inline-offset: calc(
    var(--image-text-container-inline-edge) - var(--image-text-wide-inline-edge)
  );
  position: relative;
  overflow: hidden;
  background: var(--color-midnight-black);
  color: var(--color-white);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 992px) {
  .image-text {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 992px) {
  .image-text {
    --image-text-container-inline-edge: max(
      20px,
      calc((100vw - 960px) / 2 + 20px)
    );
  }
}
@media (min-width: 1200px) {
  .image-text {
    --image-text-container-inline-edge: max(
      20px,
      calc((100vw - 1340px) / 2 + 20px)
    );
  }
}
@media (min-width: 1418px) {
  .image-text {
    --image-text-wide-inline-edge: max(40px, calc((100vw - 1840px) / 2 + 40px));
  }
}
@media (min-width: 1440px) {
  .image-text {
    --image-text-container-inline-edge: max(
      20px,
      calc((100vw - 1480px) / 2 + 20px)
    );
  }
}
@media (min-width: 1680px) {
  .image-text {
    --image-text-wide-inline-edge: max(60px, calc((100vw - 1840px) / 2 + 60px));
  }
}
.image-text.block-theme-light .image-text__heading,
.image-text.block-theme-light .image-text__description {
  color: var(--color-midnight-black);
}
.image-text.block-theme-light .image-text__heading li:before,
.image-text.block-theme-light .image-text__description li:before {
  background: var(--color-midnight-black);
}
.image-text.block-theme-light .button {
  color: var(--color-midnight-black);
}
.image-text.block-theme-light .image-text__empty {
  border-color: rgba(5, 40, 49, 0.18);
  background: rgba(5, 40, 49, 0.04);
  color: rgba(5, 40, 49, 0.75);
}
.image-text .container-wide {
  position: relative;
  z-index: 1;
}
.image-text .section-pattern {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.image-text .section-pattern picture,
.image-text .section-pattern img,
.image-text .section-pattern .section-pattern__image {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 3000ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}
.image-text--pattern-visible .section-pattern img,
.image-text--pattern-visible .section-pattern picture,
.image-text--pattern-visible .section-pattern .section-pattern__image {
  clip-path: inset(0 0 0 0);
}
.image-text__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .image-text__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .image-text__layout:has(.image-text__media):has(iframe) .image-text__media, .image-text__layout:has(.image-text__media):has(video) .image-text__media {
    order: 1;
  }
  .image-text__layout:has(.image-text__media):has(iframe) .image-text__media-item, .image-text__layout:has(.image-text__media):has(video) .image-text__media-item {
    top: 0;
  }
}
.image-text__media {
  order: 2;
  min-width: 0;
}
.image-text__media-inner {
  position: relative;
  aspect-ratio: 1/0.68;
}
.image-text__media-item {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  height: calc(100% - 4rem);
  background: var(--color-secondary);
  overflow: hidden;
}
.image-text__media-item:has(iframe), .image-text__media-item:has(video) {
  height: calc(100% - 6.125rem);
}
@media (max-width: 992px) {
  .image-text__media-item:has(iframe), .image-text__media-item:has(video) {
    height: 100%;
  }
}
.image-text__image, .image-text__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}
.image-text__image {
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
}
.image-text__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-text__video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--color-midnight-black);
  border: solid 1px #707070;
}
.image-text__video-trigger {
  all: unset;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.image-text__video-trigger:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: -4px;
}
.image-text__video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}
.image-text__video-placeholder--fallback {
  display: grid;
  place-items: center;
  padding: 2rem;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
.image-text__video-frame, .image-text__video-inline-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  max-width: none;
  border: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.image-text__video-inline-frame {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.image-text__video-inline-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  transform: none;
  background: #000;
}
.image-text__video-shell--autoplay .image-text__video-frame {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.image-text__video-shell--autoplay.is-loaded .image-text__video-placeholder {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s, 0.35s;
}
.image-text__video-shell--autoplay.is-loaded .image-text__video-frame {
  opacity: 1;
}
.image-text__video-shell--manual .image-text__video-trigger {
  z-index: 3;
  transition: opacity 0.35s ease;
}
.image-text__video-shell--manual.is-playing .image-text__video-trigger {
  opacity: 0;
  pointer-events: none;
}
.image-text__video-shell--manual.is-playing .image-text__video-inline-frame {
  opacity: 1;
  pointer-events: auto;
}
.image-text__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: min(5rem, 18%);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.image-text__video-play-svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0.5rem 1.25rem rgba(0, 0, 0, 0.25));
}
.image-text__video-trigger:hover .image-text__video-play, .image-text__video-trigger:focus-visible .image-text__video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}
.image-text__image-placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  box-sizing: border-box;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.image-text__frame {
  --image-text-frame-draw-duration: 2000ms;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  color: var(--color-teal);
  pointer-events: all;
  overflow: visible;
}
.image-text__frame svg {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  overflow: visible;
  position: relative;
  right: -2rem;
  color: var(--color-teal);
  aspect-ratio: 651.4/563.3;
}
.image-text__frame .image-accordion__frame-static-path,
.image-text__frame .image-accordion__frame-animated-path {
  shape-rendering: geometricPrecision;
}
.image-text__frame .image-accordion__frame-static-path {
  opacity: 0;
}
.image-text__frame .image-accordion__frame-animated-path {
  opacity: 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
@media (max-width: 992px) {
  .image-text__frame {
    width: min(78%, 22rem);
    transform: translate(6%, 4%);
  }
}
.image-text--frame-animating .image-text__frame-svg {
  opacity: 1;
}
.image-text--frame-animating .image-accordion__frame-animated-path {
  opacity: 1;
  animation: imageTextFrameDraw var(--image-text-frame-draw-duration) linear forwards, imageTextFrameAnimatedHide var(--image-text-frame-draw-duration) step-end forwards;
}
.image-text--frame-animating .image-accordion__frame-static-path {
  animation: imageTextFrameStaticReveal var(--image-text-frame-draw-duration) step-end forwards;
}
.image-text--frame-complete .image-text__frame-svg {
  opacity: 1;
}
.image-text--frame-complete .image-accordion__frame-animated-path {
  opacity: 0;
  stroke-dashoffset: 0;
}
.image-text--frame-complete .image-accordion__frame-static-path {
  opacity: 1;
}
.image-text__content {
  order: 1;
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 85%;
  margin-inline-start: var(--image-text-content-inline-offset);
}
.image-text__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}
.image-text__icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.image-text__logo {
  margin-bottom: 1.75rem;
  max-width: min(17rem, 60%);
}
.image-text__logo-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 160px;
  object-position: left center;
}
.image-text__pretitle {
  margin: 0 0 0.9rem !important;
  color: var(--color-teal);
}
.image-text__heading {
  margin: 0 !important;
  color: var(--color-white);
}
.image-text__description {
  margin-top: 2rem;
  color: var(--color-white);
  max-width: 85%;
}
@media (max-width: 992px) {
  .image-text__description {
    max-width: 100%;
  }
}
.image-text__description ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.image-text__description ul li {
  margin: 0;
  position: relative;
  padding-left: 25px;
}
.image-text__description ul li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-radius: 50%;
  left: 0;
  top: 6px;
}
.image-text__description p {
  margin: 0;
}
.image-text__description p + p {
  margin-top: 0.875rem;
}
.image-text__cta-wrap {
  margin-top: 2rem;
}
.image-text__cta {
  box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.18);
  color: var(--color-white);
}
.image-text__empty {
  display: grid;
  place-items: center;
  min-height: 8rem;
  padding: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
.image-text__empty p {
  margin: 0;
}
.image-text--inverted .section-pattern {
  right: auto;
  left: 0;
}
.image-text--inverted .section-pattern img,
.image-text--inverted .section-pattern picture,
.image-text--inverted .section-pattern .section-pattern__image {
  transform: scaleX(-1);
}
.image-text--inverted .image-text__media {
  order: 1;
}
.image-text--inverted .image-text__content {
  order: 2;
  justify-self: end;
  margin-inline-start: 0;
  margin-inline-end: var(--image-text-content-inline-offset);
}
.image-text--inverted .image-text__frame {
  justify-content: flex-start;
}
.image-text--inverted .image-text__frame svg {
  right: auto;
  left: -2rem;
  transform: scaleX(-1);
  transform-origin: center;
}
@media (max-width: 992px) {
  .image-text--inverted .image-text__content {
    justify-self: stretch;
  }
}
@media (max-width: 992px) {
  .image-text__media, .image-text__content {
    order: initial;
  }
  .image-text__content {
    max-width: none;
    margin-inline: 0;
  }
  .image-text__logo {
    max-width: min(11rem, 60%);
    margin-bottom: 1.25rem;
  }
  .image-text__icon {
    margin-bottom: 0.875rem;
  }
  .image-text__description {
    margin-top: 1.5rem;
  }
  .image-text__cta-wrap {
    margin-top: 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .image-text .section-pattern img,
  .image-text .section-pattern picture,
  .image-text .section-pattern .section-pattern__image,
  .image-text .image-text__frame-svg {
    transition: none;
  }
}

@keyframes imageTextFrameDraw {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes imageTextFrameAnimatedHide {
  0%, 99.99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageTextFrameStaticReveal {
  0%, 99.99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
