body.header-transparent {
  height: 100%;
}

.hero-slider {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  isolation: isolate;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.25s ease-in-out;
  will-change: opacity;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 23%;
  transform: translate(-50%, -50%);
  max-width: 190px;
  width: auto;
  height: auto;
  z-index: 2;
  /* filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5)); */
  filter: drop-shadow(0px 0px 10px rgba(99, 99, 99, 0.35));
  pointer-events: none;
}
@media (min-width: 576px) {
  .hero-logo {
    max-width: 230px;
  }
}
@media (min-width: 992px) {
  .hero-logo {
    max-width: 300px;
  }
}
@media (min-width: 1700px) {
  .hero-logo {
    max-width: 330px;
  }
}

body.header-transparent #main-header {
  background-color: transparent;
  box-shadow: none;
}
body.header-transparent #main-header .container {
  max-width: unset;
  width: 100%;
  padding: 0px 30px;
}
body.header-transparent #main-header #logo {
  display: none;
}
