@media screen and (max-width: 767.98px) {
  .scroll-btn {
    display: none;
  }
}
#hero {
  box-sizing: border-box;
  /* min-height: 410px; */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  #hero {
    margin-bottom: 0;
  }
}
#hero.full-height {
  height: 100vh;
}
@media screen and (max-width: 767.98px) {
  #hero figure {
    height: 360px;
    min-height: 0;
  }
}
#hero.partial-height {
  height: 600px;
  margin-top: 72px;
}
@media screen and (max-width: 767.98px) {
  #hero.partial-height {
    height: 360px;
  }
}
#hero.small-height {
  height: 500px;
}
@media screen and (max-width: 767.98px) {
  #hero.small-height {
    height: 360px;
  }
}
@media break-md {
  #hero {
    min-height: 0;
  }
}
.hero {
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  position: relative;
  height: 100%;
  overflow: hidden;
  opacity: 1;
  max-width: 2560px;
  margin: 0 auto;
}
.hero.slick-initialized {
  opacity: 1;
}
.hero figcaption {
  position: absolute;
  left: 1rem;
  bottom: 5rem;
  box-sizing: border-box;
  z-index: 2;
  color: #fff;
  text-shadow: 0.1em 0 0.4em #000;
  text-transform: uppercase;
}
@media screen and (max-width: 767.98px) {
  .hero figcaption {
    bottom: 2rem;
  }
  .hero figcaption br {
    display: none;
  }
}
@media screen and (max-width: 575.98px) {
  .hero figcaption {
    max-width: 70%;
  }
}
.hero figcaption h2 {
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
@media screen and (max-width: 767.98px) {
  .hero figcaption h2 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
.hero figcaption .inner {
  width: auto;
  max-width: none;
}
@media screen and (max-width: 991.98px) {
  .hero {
    margin-left: 0;
  }
}
.hero .btn {
  text-shadow: none;
}
.hero .slick-dots {
  width: calc(100% - 110px);
}
.hero .slick-dots > li {
  padding: 0 0.5rem;
  margin: 0 0 0.25rem 0;
}
.hero .slick-dots button {
  width: 6px;
  height: 6px;
}
.no-js .hero {
  opacity: 1;
}
.hero-slide {
  position: relative;
  overflow: hidden;
  background-color: #000;
  color: #fff;
}
.hero-sub-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 3rem;
  z-index: 2;
  color: #fff;
  font-size: 0.875rem;
  text-shadow: 0.1em 0 0.4em #000;
}
@media screen and (max-width: 767.98px) {
  .hero-sub-caption {
    display: none;
  }
}
.hero-nav {
  box-sizing: border-box;
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  color: #fff;
  display: flex;
}
.hero-nav .slick-arrow {
  position: relative;
  top: auto;
  transform: none;
}
.hero-nav .slick-prev {
  left: auto;
}
.hero-nav .slick-next {
  right: auto;
}
.hero-nav .hero-arrows {
  display: flex;
  gap: 0.75em;
}
.hero-nav .hero-arrows .slick-arrow {
  top: auto !important;
}

.brand-logo {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation-name: zoom-and-fade-in;
  animation-fill-mode: forwards;
  animation-delay: 500ms;
  animation-duration: 5000ms;
}

@keyframes zoom-and-fade-in {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  25% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
