/** Shopify CDN: Minification failed

Line 357:0 Unexpected "}"

**/
.hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
}

html.js .hero__swiper .hero__content {
  transform: translateY(30%);
  transition: transform 600ms;
  overflow: hidden;
}

html.js .hero__swiper-slide.swiper-slide-active .hero__content {
  transform: translateY(0);
}

.hero__swiper {
  flex: 1;
}

html.no-js .hero__swiper-wrapper {
  display: block;
  height: auto;
}

.hero__swiper-slide {
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden;
}

html.no-js .hero__swiper-slide {
  height: auto;
}

.hero__inner {
  display: grid;
  grid-template-rows: 1fr;
  min-height: var(--inner-height);

  --inner-vertical-padding: 4rem;

  color: rgb(var(--color-foreground));
  width: 100%;
  position: relative;
  z-index: 3;

  background-color: rgb(var(--color-background));
}

.hero__content {
  position: relative;
  width: 100%;
  padding: var(--inner-vertical-padding) var(--page-gutter);
  color: rgb(var(--color-foreground));
  display: flex;
  flex-direction: column;
  z-index: 2;
  background-color: rgb(var(--color-background));
}

@media screen and (max-width: 749px) {
  .hero__content {
    padding: var(--inner-vertical-padding) 1.6rem;
  }
}

.hero-banner--full .hero__content {
  flex: 1;
  background-color: transparent;
}
.hero-banner--split .hero__content {
  flex: 1;
  max-width: 55rem;
  margin-inline: auto;
  background-color: rgb(var(--color-background));
}
.hero-banner--full .hero__content > :first-child, .hero-banner--split .hero__content > :first-child {
  margin-block-start: 0;
}

.hero__media {
  width: 100%; height: 100%;
}

.hero-banner--full .hero__media {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
}

.hero-banner--split .hero__media {
  padding: 0;
  height: 100%;
  background-color: rgb(var(--color-background));
}

.hero-banner--full .hero__media svg,
.hero-banner--split .hero__media svg,
.hero__media svg {
  opacity: 0.5;
}

.hero-banner--full .hero__media iframe, .hero-banner--full .hero__media video {
  pointer-events: none;
  border: none;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
[dir='rtl'] .hero-banner--full .hero__media iframe, [dir='rtl'] .hero-banner--full .hero__media video {
  transform: translate(50%, -50%);
}

.hero-banner--full .hero__media--desktop iframe, .hero-banner--full .hero__media--desktop video,
.hero__media--desktop iframe,
.hero__media--desktop video {
  width: 296%;
  max-width: 296%;
}

.hero__media img,
.hero__media iframe,
.hero__media video,
.hero__media svg {
  position: unset;
}



.hero__subtitle {
  font-size: var(--font-size-static-xs);
  line-height: var(--line-height-static-sm);
  letter-spacing: var(--letter-spacing-md);
  margin: 0 0 1.6rem;
  font-weight: var(--font-weight-normal);
}

.hero-banner .hero__title {
  color: rgb(var(--color-foreground));
  font-size: 3.6rem;
  line-height: 1.2;
  margin: 0;
}

.hero__entry {
  margin-block-start: 1.2rem;
}
.hero__entry.entry {
  color: rgb(var(--color-foreground));
}
.hero__button {
  margin: 3.2rem 0;
}

.hero__entry p {
  margin-block-start: 0;
}

.hero__entry :last-child,
.hero__entry:last-child {
  margin-block-end: 0;
}

.hero__inner--vertical-line .hero__content::after {
  --vertical-line-height: 4rem;
  content: '';
  position: absolute;
  display: block;
  box-sizing: content-box;
  inset-block-start: calc(100% - var(--vertical-line-height));
  inset-inline-start: 50%;
  width: .1rem;
  height: var(--vertical-line-height);
  background-color: rgb(var(--color-foreground));
  opacity: 0.2;
}

@media screen and (min-width: 340px) {
  .hero-banner .hero__title {
    font-size: 4rem;
  }
}

@media screen and (max-width: 749px) {
  .hero__inner {
    text-align: center;
    align-items: flex-end;
    /* justify-content: center; */
  }

  .hero__inner.hero-banner--30-70,
  .hero__inner.hero-banner--70-30 {
    grid-template-rows: 4fr 3fr;
  }

  .hero__inner.hero-banner--50-50 {
    grid-template-rows: 2fr 2fr;
  }
}

@media screen and (min-width: 750px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    column-gap: 0;
    grid-template-areas: "media_element";
  }
  .hero__inner.hero-banner--full {
    display: flex;
  }
  .hero__inner.hero-banner--split {
    display: flex;
    margin-inline: auto;
  }
  .hero-banner--70-30 {
    grid-template-columns: 70% 30%;
    grid-template-areas: "media_element content_element";
  }
  .hero-banner--30-70 {
    grid-template-columns: 30% 70%;
    grid-template-areas: "content_element media_element";
  }
  .hero-banner--50-50 {
    grid-template-columns: 50% 50%;
    grid-template-areas: "media_element content_element";
  }

  .hero__media + .hero__content {
    margin-block-start: 0;
  }

  .hero__inner--vertical-line .hero__content::after {
    --vertical-line-height: 10rem;
  }

  .hero__media {
    grid-area: media_element;
    position: relative;
    z-index: 1;
  }
  .hero__content {
    grid-area: content_element;
    position: relative;
    z-index: 2;
  }

  .hero-banner--full .hero__media {
    position: absolute;
  }
  .hero-banner--split .hero__media {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%; height: 100%;
  }

  .hero-banner--full .hero__media video,
  .hero-banner--split .hero__media video {
    width: 100%;
    height: 100%;
  }

  .hero__swiper-buttons {
    padding: 0 var(--page-gutter);
    justify-content: space-between;
    --color-button-swiper: rgb(var(--color-foreground));
  }

  .hero__swiper-buttons:not(.hero__swiper-buttons--sides) {
    inset-block-start: unset;
    inset-block-end: var(--page-gutter);
    transform: none;
    align-items: flex-end;
  }

  .hero__swiper-buttons--left {
    justify-content: flex-start;
  }
  .hero__swiper-buttons--center {
    justify-content: center;
  }
  .hero__swiper-buttons--right {
    justify-content: flex-end;
  }

  .hero__media--desktop iframe,
  .hero__media--desktop video {
    width: 114%;
    max-width: 114%;
    height: 108%;
  }

  .hero__inner {
    --inner-vertical-padding: 9.6rem;
  }

  .hero__inner.justify-center {
    --inner-vertical-padding: 13rem;
  }

  .hero__inner--vertical-line .hero__content:not(.align-center)::after {
    display: none;
  }
}


@media screen and (min-width: 990px) {
  /* .hero__content {
    max-width: 58rem;
  } */

  .hero-banner .hero__title {
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: var(--letter-spacing-xs);
  }
}
@media screen and (min-width: 751px) and (max-width: 1199px) {
  .hero-banner--70-30 {
    grid-template-columns: 60% 40%;
    grid-template-areas: "media_element content_element";
  }
  .hero-banner--30-70 {
    grid-template-columns: 40% 60%;
    grid-template-areas: "content_element media_element";
  }
}
@media screen and (min-width: 1200px) {
  .hero__swiper-buttons {
    padding: 0 6.4rem;
  }

  .hero-banner .hero__title {
    font-size: 6rem;
  }
}
.hero__button .button--outlined,
.hero__button .button--outlined:hover {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
}

}

.hero__button .button--secondary,
.hero__button .button--secondary:hover {
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
  background-color: transparent !important;
}
