/** Shopify CDN: Minification failed

Line 151:0 Expected "}" to go with "{"

**/
/* Hero */
.heroCtn {
  position: relative;
  height: calc(97vh - var(--headerHeight) - var(--announcementSize));
  /* max-width: var(--maxWidth); */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0px;
  padding: 0 var(--smPadding);
}
.heroInfoDiv {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 80px;
  text-align: center;
  color: #fff;
  max-width: 1250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.heroInfoDiv p {
  max-width: 680px;
  margin: 25px auto;
}
.heroImageCtn {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}
.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* position: relative;
  padding: 0 var(--padding); */
  z-index: 0;
}
.heroVideoCtn {
  position: absolute;
  z-index: 12;
  width: 450px;
  height: 300px;
  padding: var(--padding);
  bottom: 0px;
  right: var(--padding);
  overflow: hidden;
  transition: all 1s ease;
}
.heroVideoCtn.active {
  width: calc(100% - var(--padding) * 2);
  height: calc(100%);
}

.heroVideoCtn video {
  width: 100%;
  height: 100%;
  border-radius: var(--imageRadius);
  object-fit: cover;
}
.heroVideoButton {
  width: calc(450px - var(--padding) * 2);
  height: calc(300px - var(--padding) * 2);
  position: absolute;
  z-index: 12;
  display: flex;
  justify-content: center;
  align-items: center;
  top: var(--padding);
  right: var(--padding);
}
.singleHeroVideoButton {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 22;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity .5s ease;
}
.singleHeroVideoButton.active{
  opacity: 0;
}
.heroButtonFlex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.heroButtonFlex > *{
  margin: 0 15px 15px 0;
}
@media screen and (max-width: 1100px) {
  .heroVideoCtn {
    position: relative;
    right: auto;
    width: 100%;
    padding: 0;
    max-width: 450px;
  }
.heroCtn {
  
    margin-bottom: 30px;
}
  .heroCtn {
    flex-direction: column;
    height: auto;
  }

  .heroInfoDiv {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    color: black;
    padding: 0;
  }

  .heroImageCtn {
    height: 280px;
    margin-bottom: 10px;
  }
  .heroInfoDiv p,
  eyebrow {
    margin: 15px auto;
  }
  .heroInfoDiv p:not(:first-child) {
    margin: 20px auto 15px;
  }
  .heroInfoDiv .btn.centered {
    margin-top: 25px;
  }


/* End Hero */
