/* Global */
.slideshow .btn {
  background: #D4CE9C;
  color: #000;
  display: inline-block;
  font-size: 12px;
  line-height:1.1;
  font-weight: 600;
  padding: 10px 15px;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
}
@media screen and (min-width:768px) {
  .slideshow .btn {
    padding: 10px 30px;
  }
}
.slideshow .btn:hover {
  color: #000;
}
.slideshow .btn.brown {
  background: #9A897D;
  color: #000;
}
.slideshow .btn.brown:hover {
  color: #000;
}
.slideshow .btn.gold {
  background: #AB6B27;
  color: #000;
}
.slideshow .btn.gold:hover {
  color: #000;
}
.slideshow .btn.blue {
  background: #339EBB;
  color: #000;
}
.slideshow .btn.blue:hover {
  color: #000;
}
@media screen and (min-width: 768px) {
  .slideshow .btn {
    font-size: clamp(8px,1vw,12px);
    padding: 10px 30px;
  }
}

/* Slideshow */
.slideshow {
  width: 100vw;
  position: relative;
  float: left;
  background: #000;
}
.slideshow__panel {
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  /* height: calc(100vh - 58px); */
  width: 100%;
  text-align: center;
  position: relative;
}
.slideshow.is-desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: repeat(2, 1fr); */
  grid-template-rows: 1fr;
}
.slideshow.is-desktop .slideshow__panel {
  width: 33.33vw;
  height:auto;
  /* max-height: 1280px; */
  display: inline-block;
}

/* @media screen and (min-width: 992px) {
  .slideshow.is-desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  }
  .slideshow.is-desktop .slideshow__panel {
    width: 33.33vw;
    height:calc((20vw / 9) * 16);
    height:auto;
  }
} */





.slideshow video,
.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .slideshow.is-desktop video {
  width: auto;
} */
.slideshow__caption {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2vw;
}
.slideshow__caption.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.slideshow__caption.hidden {
  opacity: 0;
  transform: translate(0, -30px);
}
.slideshow__caption.flex {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (orientation: portrait) {
  .slideshow.is-mobile {
    height: calc(100vh - 58px);
    overflow-y: scroll;
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .slideshow.is-mobile .slideshow__caption {
    bottom: 3vh;
  }
  .slideshow.is-mobile .slideshow__panel {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100%;
  }
  .slideshow.is-mobile footer {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

iframe#launcher {
  display:none;
}