/*!*****************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/banner/image-banner/image-banner.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-banner {
  background: var(--color-secondary);
  position: relative;
  z-index: 5;
}
@media (max-width: 992px) {
  .image-banner {
    padding-bottom: 2rem;
  }
}
.image-banner img {
  display: block;
  width: 100%;
  height: clamp(150px, 25vw, 500px);
  object-fit: cover;
  object-position: center;
}
.image-banner__frame {
  --image-text-frame-draw-duration: 2000ms;
  position: absolute;
  top: -2rem;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  color: var(--color-teal);
  pointer-events: none;
  overflow: visible;
}
@media (max-width: 992px) {
  .image-banner__frame {
    top: -1rem;
  }
}
.image-banner__frame svg {
  display: block;
  width: auto;
  height: 110%;
  max-width: 100%;
  overflow: visible;
  position: relative;
  left: 2rem;
  color: var(--color-teal);
  aspect-ratio: 651.4/563.3;
}
@media (max-width: 992px) {
  .image-banner__frame svg {
    height: 100%;
    left: 1rem;
  }
}
.image-banner__frame .image-accordion__frame-static-path,
.image-banner__frame .image-accordion__frame-animated-path {
  shape-rendering: geometricPrecision;
}
.image-banner__frame .image-accordion__frame-static-path {
  opacity: 0;
}
.image-banner__frame .image-accordion__frame-animated-path {
  opacity: 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.image-banner--frame-animating .image-banner__frame-svg {
  opacity: 1;
}
.image-banner--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-banner--frame-animating .image-accordion__frame-static-path {
  animation: imageTextFrameStaticReveal var(--image-text-frame-draw-duration) step-end forwards;
}
.image-banner--frame-complete .image-banner__frame-svg {
  opacity: 1;
}
.image-banner--frame-complete .image-accordion__frame-animated-path {
  opacity: 0;
  stroke-dashoffset: 0;
}
.image-banner--frame-complete .image-accordion__frame-static-path {
  opacity: 1;
}
