<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==========================================================================
    Slider core styles
===========================================================================*/
.slider-container,
.slider-container *,
.slider-container *:before,
.slider-container *:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 700px;
  margin: 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.slider {
  position: relative;
  width: 9999px;
}
.slider:before,
.slider:after {
  display: table;
  content: ' ';
}
.slider:after {
  clear: both;
}
.slider__item {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  height: 100%;
  margin-bottom: 14px;

}
.slider__item_hp {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slider__item_hp img {
  display: block;
  max-width: 100%;
  height: auto;

  border-radius: 9px 9px 9px 9px;
}
/* Arrows */
.slider__switch {
  position: absolute;
  top: 50%;
  margin-top: -40px;
  padding: 10px 5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
  border-radius: 1px;
  transition: opacity .15s ease;
  fill: #f1ad28;
}
.slider__switch span {
  display: inline-block;
  margin-top: -48px;
  font-family: 'TrueNorthRoughInlineBlack-Regular', sans-serif;
  color: #f1ad28;
  font-size: 82px;
}
.slider__switch--prev {
  left: 15px;
}
.slider__switch--next {
  right: 15px;
}
.slider__item img {
  display: block;
  max-width: 100%;
  height: auto;
  
  border-radius: 9px 9px 9px 9px;
}
.slider__switch[disabled] {
  visibility: hidden;
  opacity: 0;
}
.slider-nav {
  line-height: 30px;
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  text-align: center;
  z-index: 9;
  filter: alpha(opacity=90); /* ie8 */
  cursor: pointer;
  overflow: hidden;
}
.slider-nav__control {
  display: inline-block;
  width: 38px;
  height: 20px;
}
.slider-nav__control span {
  display: inline-block;
  margin-top: -21px;
  font-family: 'TrueNorthRoughInlineBlack-Regular', sans-serif;
  color: #f4ae00;
  font-size: 82px;
}
.slider-nav__control.is-active span {
  color: #772b1b;
}
.slider.has-touch {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor:    -moz-grabbing;
}
@media (max-width: 800px) {
  .slider-nav {
    bottom: 0;
  }
}
@media (max-width: 580px) {
  .slider__switch {
    display: none;
  }
  .slider__caption {
    display: none;
  }
}
</pre></body></html>