<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.split {
  position: relative;
}
.split .split {
  height: 100%;
}
.split .split .inner-wrapper {
  height: 100%;
}
.split.split-no-anim {
  transition: all 0s !important;
}
.split.split-no-anim * {
  transition: all 0s !important;
}
.split .slides {
  overflow: hidden;
  height: 100%;
}
.split .slides .slide {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.split .slides .slide .slide-section {
  position: relative;
}
.split .navigation-wrapper {
  display: flex;
  justify-content: space-between;
}
.split .navigation-wrapper .navigation-arrow.prevent {
  pointer-events: none;
}
.split .navigation-wrapper .navigation-arrow.disable {
  pointer-events: none;
  opacity: 0.25;
}
.split .navigation-wrapper .navigation-arrow.prev {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #000;
}
.split .navigation-wrapper .navigation-arrow.next {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #000;
}
.split .dots-wrapper .dot {
  display: inline-block;
}
.split .dots-wrapper .dot.thumb {
  pointer-events: none;
}
.split .dots-wrapper .dot.thumb.visible {
  display: inline-block;
  pointer-events: initial;
}
.split .dots-wrapper.default .dot {
  height: 10px;
  width: 10px;
  border: 1px solid #000;
}
.split .dots-wrapper.default .dot.thumb {
  opacity: 0.25;
}
.split .dots-wrapper.default .dot.thumb.visible {
  opacity: 1;
}
.split.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  transition: background-color 0.15s;
}
.split.fullscreen &gt; .inner-wrapper {
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.theme-left-to-right &gt; .slide {
  top: 0;
  left: -100%;
  transition: transform 0.45s;
}
.theme-left-to-right &gt; .slide.init {
  transform: translateX(100%);
}
.theme-left-to-right &gt; .slide.previous {
  transform: translateX(200%);
}
.theme-left-to-right &gt; .slide.next {
  transform: translateX(0);
}

.theme-right-to-left &gt; .slide {
  top: 0;
  left: 100%;
  transition: transform 0.45s;
}
.theme-right-to-left &gt; .slide.init {
  transform: translateX(-100%);
}
.theme-right-to-left &gt; .slide.previous {
  transform: translateX(-200%);
}
.theme-right-to-left &gt; .slide.next {
  transform: translateX(0);
}

.theme-bottom-to-top &gt; .slide {
  top: 100%;
  left: 0;
  transition: transform 0.45s;
}
.theme-bottom-to-top &gt; .slide.init {
  transform: translateY(-100%);
}
.theme-bottom-to-top &gt; .slide.previous {
  transform: translateY(-200%);
}
.theme-bottom-to-top &gt; .slide.next {
  transform: translateY(0);
}

.theme-top-to-bottom &gt; .slide {
  top: -100%;
  left: 0;
  transition: transform 0.45s;
}
.theme-top-to-bottom &gt; .slide.init {
  transform: translateY(100%);
}
.theme-top-to-bottom &gt; .slide.previous {
  transform: translateY(200%);
}
.theme-top-to-bottom &gt; .slide.next {
  transform: translateY(100%);
}

.theme-fly-away-in &gt; .slide {
  top: 0;
  left: 100%;
}
.theme-fly-away-in &gt; .slide .slide-section {
  transition: transform 0.45s;
}
.theme-fly-away-in &gt; .slide.init {
  transform: translateX(-100%);
}
.theme-fly-away-in &gt; .slide.previous {
  transform: translateX(-200%);
}
.theme-fly-away-in &gt; .slide.next {
  transform: translateX(0);
}

.theme-fade-in-out .slide {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  transition: opacity 0.6s;
}
.theme-fade-in-out .slide.init {
  opacity: 1;
}
.theme-fade-in-out .slide.previous {
  opacity: 0;
}
.theme-fade-in-out .slide.next {
  opacity: 0;
}

.theme-bottom-to-top-zoom-in &gt; .slide {
  top: 100%;
  left: 0;
  transition: transform 0.8s;
  overflow: hidden;
}
.theme-bottom-to-top-zoom-in &gt; .slide .image {
  transform: scale(1.05);
  transition: transform 0.8s;
}
.theme-bottom-to-top-zoom-in &gt; .slide.init {
  transform: translateY(-100%);
}
.theme-bottom-to-top-zoom-in &gt; .slide.init .image {
  transform: scale(1);
  transition-delay: 0.5s;
}
.theme-bottom-to-top-zoom-in &gt; .slide.previous {
  transform: translateY(-200%);
}
.theme-bottom-to-top-zoom-in &gt; .slide.previous .image {
  transform: scale(1.05);
  transition-delay: 0.8s;
}
.theme-bottom-to-top-zoom-in &gt; .slide.next {
  transform: translateY(0);
}
.theme-bottom-to-top-zoom-in &gt; .slide.next .image {
  transform: scale(1.05);
}

.theme-bottom-to-top-fade-out &gt; .slide {
  top: 100%;
  left: 0;
  transition: transform 1s;
}
.theme-bottom-to-top-fade-out &gt; .slide .bodytext {
  opacity: 0;
  transition: opacity 0.3s;
}
.theme-bottom-to-top-fade-out &gt; .slide.init {
  transform: translateY(-100%);
}
.theme-bottom-to-top-fade-out &gt; .slide.init .bodytext {
  opacity: 1;
}
.theme-bottom-to-top-fade-out &gt; .slide.previous {
  transform: translateY(-200%);
}
.theme-bottom-to-top-fade-out &gt; .slide.previous .bodytext {
  opacity: 0;
}
.theme-bottom-to-top-fade-out &gt; .slide.next {
  transform: translateY(0);
}
.theme-bottom-to-top-fade-out &gt; .slide.next .bodytext {
  opacity: 0;
}

.theme-fly-in-top {
  position: absolute;
  width: 100%;
  height: 100%;
}
.theme-fly-in-top &gt; .slide {
  transform: scale(0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s;
}
.theme-fly-in-top &gt; .slide.init {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}
.theme-fly-in-top &gt; .slide.previous {
  transform: scale(1.75);
  opacity: 0;
  pointer-events: none;
}
.theme-fly-in-top &gt; .slide.next {
  transform: scale(1.75);
  opacity: 0;
  pointer-events: none;
}
.theme-fly-in-top.top .slide {
  top: 0;
  left: 0;
}
.theme-fly-in-top.top .slide:nth-child(2n+1) {
  margin-top: 10%;
  width: 100%;
  height: 50%;
  z-index: 2;
}
.theme-fly-in-top.top .slide.init:nth-child(2n+1) {
  margin-top: 0;
}
.theme-fly-in-top.top .slide.previous:nth-child(2n+1), .theme-fly-in-top.top .slide.next:nth-child(2n+1) {
  margin-top: -35%;
}
.theme-fly-in-top.left .slide {
  top: 0;
  left: 0;
}
.theme-fly-in-top.left .slide:nth-child(2n) {
  margin-left: 25%;
  width: 50%;
  height: 100%;
  z-index: 2;
}
.theme-fly-in-top.left .slide.init:nth-child(2n) {
  margin-left: 0;
}
.theme-fly-in-top.left .slide.previous:nth-child(2n), .theme-fly-in-top.left .slide.next:nth-child(2n) {
  margin-left: -35%;
}

.theme-fly-in-bottom {
  position: absolute;
  width: 100%;
  height: 100%;
}
.theme-fly-in-bottom &gt; .slide {
  transform: scale(0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s;
}
.theme-fly-in-bottom &gt; .slide.init {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}
.theme-fly-in-bottom &gt; .slide.previous {
  transform: scale(1.75);
  opacity: 0;
  pointer-events: none;
}
.theme-fly-in-bottom &gt; .slide.next {
  transform: scale(1.75);
  opacity: 0;
  pointer-events: none;
}
.theme-fly-in-bottom.bottom .slide {
  bottom: 0;
  right: 0;
}
.theme-fly-in-bottom.bottom .slide:nth-child(2n+1) {
  width: 100%;
  height: 50%;
  margin-bottom: 10%;
}
.theme-fly-in-bottom.bottom .slide.init:nth-child(2n+1) {
  margin-bottom: 0;
}
.theme-fly-in-bottom.bottom .slide.previous:nth-child(2n+1), .theme-fly-in-bottom.bottom .slide.next:nth-child(2n+1) {
  margin-bottom: -35%;
}
.theme-fly-in-bottom.right .slide {
  bottom: 0;
  right: 0;
}
.theme-fly-in-bottom.right .slide:nth-child(2n) {
  width: 50%;
  height: 100%;
  margin-right: 25%;
}
.theme-fly-in-bottom.right .slide.init:nth-child(2n) {
  margin-right: 0;
}
.theme-fly-in-bottom.right .slide.previous:nth-child(2n), .theme-fly-in-bottom.right .slide.next:nth-child(2n) {
  margin-right: -35%;
}

.theme-right-to-left &gt; .slide {
  top: 0;
  left: 100%;
  transition: transform 0.45s;
}
.theme-right-to-left &gt; .slide.init {
  transform: translateX(-100%);
}
.theme-right-to-left &gt; .slide.previous {
  transform: translateX(-200%);
}
.theme-right-to-left &gt; .slide.next {
  transform: translateX(0);
}

.theme-bottom-to-top-slow &gt; .slide {
  top: 100%;
  left: 0;
  transition: transform 0.6s;
}
.theme-bottom-to-top-slow &gt; .slide.init {
  transform: translateY(-100%);
}
.theme-bottom-to-top-slow &gt; .slide.previous {
  transform: translateY(-200%);
}
.theme-bottom-to-top-slow &gt; .slide.next {
  transform: translateY(0);
}

.theme-content-horizontal-vertical &gt; .slide {
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
}
.theme-content-horizontal-vertical &gt; .slide.init {
  z-index: 1;
  visibility: visible;
}
.theme-content-horizontal-vertical &gt; .slide.previous {
  z-index: -1;
  visibility: hidden;
}
.theme-content-horizontal-vertical &gt; .slide.next {
  z-index: -1;
  visibility: hidden;
}

.theme-bottom-to-top-with-fade &gt; .slide {
  top: 100%;
  left: 0;
  opacity: 0;
  transition: transform 0.9s, opacity 0.6s;
}
.theme-bottom-to-top-with-fade &gt; .slide .bodytext img {
  top: -100px;
  transition: top 0.45s;
}
.theme-bottom-to-top-with-fade &gt; .slide .bodytext .desc {
  top: 100px;
  opacity: 0;
  transition: top 0.45s, opacity 0.15s;
}
.theme-bottom-to-top-with-fade &gt; .slide.init {
  transform: translateY(-100%);
  opacity: 1;
}
.theme-bottom-to-top-with-fade &gt; .slide.init .bodytext img {
  top: 0;
}
.theme-bottom-to-top-with-fade &gt; .slide.init .bodytext .desc {
  top: 0;
  opacity: 1;
  transition: top 0.45s, opacity 0.15s;
}
.theme-bottom-to-top-with-fade &gt; .slide.previous {
  transform: translateY(-200%);
  opacity: 0;
}
.theme-bottom-to-top-with-fade &gt; .slide.previous .bodytext img {
  top: -100px;
  transition: top 0.45s;
}
.theme-bottom-to-top-with-fade &gt; .slide.previous .bodytext .desc {
  top: 100px;
  opacity: 1;
  transition: top 0.45s, opacity 0.15s;
}
.theme-bottom-to-top-with-fade &gt; .slide.next {
  transform: translateY(0);
  opacity: 0;
}
.theme-bottom-to-top-with-fade &gt; .slide.next .bodytext img {
  top: -100px;
  transition: top 0.45s;
}
.theme-bottom-to-top-with-fade &gt; .slide.next .bodytext .desc {
  top: 100px;
  opacity: 1;
  transition: top 0.45s, opacity 0.15s;
}

.theme-fade-in-out-slow &gt; .slide {
  top: 100%;
  opacity: 0;
  transition: opacity 0.6s;
}
.theme-fade-in-out-slow &gt; .slide.init {
  transform: translateY(-100%);
  opacity: 1;
}
.theme-fade-in-out-slow &gt; .slide.previous {
  transform: translateY(100%);
  opacity: 0;
}
.theme-fade-in-out-slow &gt; .slide.next {
  transform: translateY(100%);
  opacity: 0;
}

hr {
  color: white;
}
hr.new1 {
  color: #a9162e;
}

.button {
  border: 2px solid #a9162e;
  background-color: white;
  color: #a9162e;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
}

.button:hover {

  color: white;
  background-color: #a9162e;
}

.subtitle {

  margin-bottom: 40px;
}

@media (max-width: 768px){

  .myCarousel #arrows .prev.disable,
.myCarousel #arrows .next.disable {
  display: none;
}
.myCarousel #arrows .prev:hover,
.myCarousel #arrows .next:hover {
  opacity: 0.5;
}

  .myCarousel .slides-wrapper .slides.content .subtitle {
  font-size: 15px !important;
  line-height: 1.5 !important;
}
.myCarousel .slides-wrapper .slides.photo .image {
  width: 414px !important;
  height: 296px !important;
  left: calc(50% - 414px/2);
  top: calc(50% - 296px/2 - 300px);
  align-items: center !important;
}
.myCarousel #arrows .next, 
.myCarousel #arrows .esp {

 position: absolute;
  font-size: 13px !important;
  top: 300px;
padding: 30px 150px;
display: grid;
margin-left: 20px;
  text-align: center;
  z-index: 3;
}

.myCarousel #arrows .prev {
 position: absolute;
  font-size: 13px !important;
  top: 300px;
padding: 30px 40px;
display: grid;
margin-left: 20px;
  text-align: center;
  z-index: 4;
}
.myCarousel #arrows span {
position: absolute;
top: 1660%;
left: 375%;
}
.myCarousel .slides-wrapper .counter-content hr {
left: 30%;
}
.myCarousel .slides-wrapper .slides.content .title {
position: relative !important;
overflow: auto !important;
clear: both !important;
text-align: center !important;
margin-top: 65px !important;
margin-bottom: -5px !important;
}
.myCarousel .slides-wrapper .slides.photo {
  width: 100% !important; 
}
.myCarousel .slides-wrapper .slides.content {
  height: 100% !important;
  width: 100% !important;
  text-align: center !important;
  top: 20% !important;
  z-index: 2;
display: flex;
position: relative;
}
.slides-wrapper {

  height: 700px !important;
}
.button {

  display: inherit !important;
  font-size: 15px !important;
  position: relative !important;

}
.button:hover {

  color: white !important;
  background-color: #a9162e !important;
}
hr.new1 {

  margin-top: 0px !important;
}
.subtitle {

  margin-bottom: 20px !important;
}
.myCarousel .slides-wrapper .slides.content .bodytext {

  padding: 0 30px !important;
right: 3.5% !important;
}
.split {

  margin-top: -20px !important;
}
.myCarousel {
background-color: none;
}
.myCarousel .slides-wrapper .counter-content {

  top: 17% !important;
}
.myCarousel .slides-wrapper .slides.counter {
  top: 18% !important;
}
}
@media (min-width: 1281px) {
  .myCarousel .slides-wrapper .slides.photo {

    width: 55% !important;
  }

}</pre></body></html>