<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slideshow {
  position: relative;
  width: 56%;
  aspect-ratio: 3/2;
  z-index: 1;
  margin: 0 auto 3rem;
}
@media screen and (max-width:736px) {
  .slideshow {
    width: 100%;
  }
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  border-radius: 16px;
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 0 0 100px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  overflow: visible;
  color: #792020;
}
.slideshow .slide .image-container {
  position: absolute;
  border-radius: 16px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  content: "";
  border-radius: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 16px;
}
.slideshow .slide-content {
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #792020;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideshow .slide .title {
  background: #feffdb;
  padding: 0 1em;
  border-radius: 5px;
  color: #792020;
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 300 50px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.pagination-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -3rem;
}
.slideshow .pagination {
  justify-content:left;
  align-items: center;
  left: 0;
  width: 100%;
  height: 4px;
  margin-top: 4px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 24px;
  height: 2px;
  background: rgba(193, 69, 69, 0.4);
  transition: background 0.2s ease;
}
.slideshow .pagination.alt .item::before {
  background: rgba(255, 255, 255, 0.4);
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #792020;
}
.slideshow .pagination.alt .item:hover::before, .slideshow .pagination.alt .item.is-active::before {
  background-color: #ffffff;
}
.slideshow .arrows {
  display: flex;
}
.slideshow .arrows .arrow {
  padding: 16px 10px;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 30px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  fill: none;
  transition: left 0.2s ease;
  stroke: #792020;
  stroke-width: 4;
  overflow: visible!important;
}
.slideshow .arrows.alt .svg {
  stroke: #ffffff;
}
.caption{
  opacity: 0;
}</pre></body></html>