/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./project_src/assets/css/components/blocks/hero.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* breaks and gaps */
/* Font sizes and weight user friendly callers */
/* Animations defaults */
.hero__copy {
  padding-left: max(56px, (100vw - 48px - 1760px) / 2);
  padding-right: max(56px, (100vw - 48px - 1760px) / 2);
}
@media only screen and (max-width: 1024px) {
  .hero__copy {
    padding-left: max(24px, (100vw - 48px - 1760px) / 2);
    padding-right: max(24px, (100vw - 48px - 1760px) / 2);
  }
}

/* figma defined font styles */
.hero__copy-content h1:not(.wp-block-heading) {
  font-size: min(max(38px, 4.1666666667vw), 80px);
  line-height: 112%;
  font-weight: 500;
  margin-block: 0 0.5em;
}

.hero__copy-content {
  font-size: min(max(20px, 1.25vw), 24px);
  line-height: 144%;
  font-weight: 400;
}

/* end figma defined font styles */
/*
	Improved screen reader only CSS class
	@author Gaël Poupard
		@note Based on Yahoo!'s technique
		@author Thierry Koblentz
		@see https://www.cssmojo.com/hide-content-from-sighted-users/
	* 1.
		@note `clip` is deprecated but works everywhere
		@see https://developer.mozilla.org/en-US/docs/Web/CSS/clip
	* 2.
		@note `clip-path` is the future-proof version, but not very well supported yet
		@see https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path
		@see http://caniuse.com/#search=clip-path
		@author Yvain Liechti
		@see https://twitter.com/ryuran78/status/778943389819604992
	* 3.
		@note preventing text to be condensed
		author J. Renée Beach
		@see https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
		@note Drupal 8 goes with word-wrap: normal instead
		@see https://www.drupal.org/node/2045151
		@see http://cgit.drupalcode.org/drupal/commit/?id=5b847ea
	* 4.
		@note !important is important
		@note Obviously you wanna hide something
		@author Harry Roberts
		@see https://csswizardry.com/2016/05/the-importance-of-important/
*/
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important; /* 3 */
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  clip-path: inset(50%) !important; /* 2 */
}

/*
	Use in conjunction with .sr-only to only display content when it's focused.
	@note Useful for skip links
	@see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
	@note Based on a HTML5 Boilerplate technique, included in Bootstrap
	@note Fixed a bug with position: static on iOS 10.0.2 + VoiceOver
		@author Sylvain Pigeard
		@see https://github.com/twbs/bootstrap/issues/20732
*/
.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.7;
}
.hero {
  position: relative;
  display: grid;
  min-height: calc(100dvh - 80px);
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  container: hero/inline-size;
}
@media only screen and (max-width: 1064px) {
  .hero {
    min-height: calc(100dvh - 64px);
  }
}
.hero:before {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
@media only screen and (max-width: 1064px) {
  .hero:before {
    background: #FFFFFF;
    opacity: 0.8;
  }
}
.hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  grid-column: 1/-1;
  grid-row: 1/-1;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__media video,
.hero__media img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__volume {
  position: absolute;
  z-index: 3;
  display: block;
  width: 56px;
  height: 56px;
  background: url("../images/media-mute-unmute.svg") no-repeat var(--color-white);
  background-position: center top;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  /* stylelint-disable */
  /* this right pos relays on grid settings - check hero__copy padding options eslint-disable */
  right: max(80px, (100vw - 48px - 1760px) / 2);
  bottom: 40px;
}
@media only screen and (max-width: 1760px) {
  .hero__volume {
    right: min(max(20px, 4.1666666667vw), 80px);
  }
}
@media only screen and (max-width: 1064px) {
  .hero__volume {
    right: 8px;
    bottom: 8px;
  }
}
.hero__volume {
  /* end */
  /* stylelint-enable */
}
.hero__volume--muted {
  background-position: center bottom;
}
.hero__copy {
  position: relative;
  -moz-column-gap: 24px;
       column-gap: 24px;
  grid-template-columns: repeat(12, 1fr);
  display: grid;
}
@media only screen and (max-width: 1064px) {
  .hero__copy {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.hero__copy {
  z-index: 2;
  grid-column: 1/-1;
  grid-row: 1/-1;
  padding-block: 10cqh;
}
@media only screen and (max-width: 1064px) {
  .hero__copy {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}
.hero__copy-content {
  align-self: end;
  margin-bottom: min(max(40px, 4.1666666667vw), 80px);
  grid-column: 1/span 6;
  grid-row: 1/2;
}
@media only screen and (max-width: 1064px) {
  .hero__copy-content {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 1064px) {
  .hero__copy-content h1:not(.wp-block-heading) {
    font-size: 38px;
    line-height: 1;
  }
}
@media only screen and (max-width: 1064px) {
  .hero__copy-content p {
    line-height: 1.2;
  }
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  align-self: start;
  grid-column: 1/span 6;
  grid-row: 2/3;
  gap: 1rem;
}
@media only screen and (max-width: 1064px) {
  .hero__btns {
    grid-column: 1/-1;
  }
}
.hero__next {
  width: min(max(80px, 5.8333333333vw), 112px);
  height: min(max(40px, 2.9166666667vw), 56px);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: bottom center;
  z-index: 3;
  overflow: hidden;
}
.hero__next:before {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background-color: #E03947;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__next:after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../images/arrow_down.svg") no-repeat center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: bounceIn 2s infinite;
}

@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, -50%);
  }
  40% {
    transform: translate(-50%, calc(50% - 30px));
  }
  60% {
    transform: translate(-50%, calc(50% - 20px));
  }
}

/*# sourceMappingURL=hero.min.css.map*/