@charset "UTF-8";
/*
 Font Family
========================================================================== */
/*
 Font Size
========================================================================== */
/*
 Colors
========================================================================== */
/*
 Button Styles
========================================================================== */
/*
 Helpers
========================================================================== */
/*
 Sizes
========================================================================== */
/*
 Columns
========================================================================== */
/* Fluid Type - Responsive fonts sizing
https://chriskirknielsen.com/blog/modern-fluid-typography-with-clamp/
usage: @include fluid-type(min viewport size, max viewport, min font size, max font size);
========================================================================== */
/*
 Tint (adds white) – @include tint(red, 10%);
========================================================================== */
/*
 Shade (adds black) – @include shade(red, 10%);
========================================================================== */
/*
 Hex to RGB – hextorgb(#000); //returns 0, 0, 0,
========================================================================== */
/*
 Object Fit – @include object-fit(cover);
========================================================================== */
/*
 Rows – @include rows(4,10px); px or % support
========================================================================== */
/*
 Aspect Ratio – @include aspect-ratio(9,16) 0r @include aspect-ratio(70%,30%)
========================================================================== */
/*
 Align Full – @include alignfull;
========================================================================== */
/*
 Min Width Query – @include min($desktop);
========================================================================== */
/*
 Max Width Query – @include min-height($tablet);
========================================================================== */
/*
 Min Width and Max Width Query – @include between($tablet, $desktop);
========================================================================== */
/*
 Min Height Query – @include min-height($tablet);
========================================================================== */
/*
 Truncate – @include truncate-text(ellipsis);
========================================================================== */
/*
 Rem to Pix Calculate for fonts
========================================================================== */
/*
 Font Size rem to pix – @include font-size(30px);
========================================================================== */
/*
 Rem Calculate – @include rem(padding, 30px);
========================================================================== */
/*
 Column width with margin
========================================================================== */
/*
 SCSS variable in background image with SVG image data URI
 usage – style="fill: friendly-color(#FF6D00);"
========================================================================== */
/* Scroll Indicator
	========================================================================== */
.block-scroll-indicator {
  padding-top: 32px;
  position: relative;
  text-align: center;
}
.block-scroll-indicator .scroll {
  background: none;
  margin: 0 auto;
  z-index: 10;
  font-family: var(--wp--preset--font-family--secondary);
  text-transform: uppercase;
  color: white;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  line-height: normal;
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(35px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
.block-scroll-indicator .scroll i {
  position: absolute;
  top: -32px;
  left: calc(50% - 7px);
  display: block;
  width: 14px;
  height: 14px;
  line-height: 1;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 6s ease-out 1s infinite;
}
.block-scroll-indicator .scroll i:first-child {
  animation: move 6s ease-out 3s infinite;
}
.block-scroll-indicator .scroll i:nth-child(2) {
  animation: move 6s ease-out 5s infinite;
}
.block-scroll-indicator .scroll span {
  display: block;
  padding-top: 30px;
}
.block-scroll-indicator .scroll:focus-visible {
  outline: 1px solid #FF6D00;
  outline-offset: 4px;
}

.wp-block-acf-scroll-indicator.acf-block-preview a {
  pointer-events: none;
}
