@charset "UTF-8";
/*
 Theme Path
========================================================================== */
/*
 Font Family
========================================================================== */
/*
 Font Size
========================================================================== */
/*
 Colors
========================================================================== */
/*
 Button Styles
========================================================================== */
/*
 Helpers
========================================================================== */
/*
 Sizes
========================================================================== */
/*
 Columns
========================================================================== */
/*
 Buttons – @include button();
========================================================================== */
/*
 Rem to Pix Calculate for fonts
========================================================================== */
/* Fluid Type - Responsive fonts sizing
https://chriskirknielsen.com/blog/modern-fluid-typography-with-clamp/
usage: @include font-size(min viewport size, max viewport, min font size, max font size);
========================================================================== */
/* Function to calculate clamp
https://dev.to/christianmay21/easy-css-clamp-scss-mixin-1225
usage: padding-top: clamp-calc(size at min, size at max, min viewport size, max viewport);
========================================================================== */
/*
 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 media($desktop);
========================================================================== */
/*
 Max Width Query – @include media-height($tablet);
========================================================================== */
/*
 Min Width and Max Width Query – @include media-between($tablet, $desktop);
========================================================================== */
/*
 Min Height Query – @include media-height($tablet);
========================================================================== */
/*
 Truncate – @include truncate-text(ellipsis);
========================================================================== */
/*
 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(#AF5F2D);"
========================================================================== */
/*
 Hero
========================================================================== */
.block-hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 40px;
  background: var(--wp--custom--color--heading);
}
.block-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: clamp(768px, 633.6px + 0.28 * 100vw, 992px);
  margin-inline: auto;
  padding-block: clamp(200px, 140px + 0.125 * 100vw, 300px) clamp(50px, -10px + 0.125 * 100vw, 150px);
  text-align: center;
}
.block-hero .hero-content h1 {
  color: white;
  font-size: clamp(2.375rem, 16.4px + 4.5vw, 4.625rem);
  line-height: 1.3;
  margin: 0;
}
.block-hero .hero-content p {
  margin: 20px auto 0 auto !important;
  color: white;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: clamp(600px, 540px + 0.125 * 100vw, 700px);
}
.block-hero .hero-content .button {
  margin-top: 30px !important;
}
.block-hero .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.block-hero .hero-slider .slick-list, .block-hero .hero-slider .slick-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-hero .hero-slider img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.block-hero #hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, from(#1c2215), to(transparent));
  background: linear-gradient(to top, #1c2215, transparent);
  pointer-events: none;
}
.block-hero .slick-track::before, .block-hero .slick-track::after {
  display: none;
}
.block-hero .hero-slide:not(:first-child) {
  display: none;
}
.block-hero .slick-initialized .hero-slide {
  display: block;
}

.wp-block-meta-hero {
  max-width: 100% !important;
}
.wp-block-meta-hero p {
  margin-bottom: 20px auto !important;
}