/*!
* Spicr v1.0.9 (http://thednp.github.io/spicr)
* Copyright 2017-2021 © thednp
* Licensed under MIT (https://github.com/thednp/spicr/blob/master/LICENSE)
*/
.spicr {
  position: relative;
  overflow: hidden;
}
.spicr .item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
}
.spicr .active.item,
.spicr .next.item {
  display: block;
}

.spicr-inner {
  position: relative;
  width: 100%;
}

.spicr-layer {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.spicr-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
.spicr-control.right {
  right: 0;
  left: auto;
}
.spicr-control:focus {
  color: #fff;
}
.spicr-control:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.spicr-control .arrow-prev, .spicr-control .arrow-next {
  position: absolute;
  top: 50%;
  display: inline-block;
  margin-top: -15px;
}
.spicr-control .arrow-prev {
  left: 50%;
}
.spicr-control .arrow-next {
  right: 50%;
}

.spicr-pages {
  position: absolute;
  padding: 0;
  margin: 0;
}
.spicr-pages li {
  display: inline-block;
  line-height: 1;
}
.spicr-pages.top-left {
  top: 0;
  left: 0;
}
.spicr-pages.bottom-left {
  bottom: 0;
  left: 0;
}
.spicr-pages.top-right {
  top: 0;
  right: 0;
}
.spicr-pages.bottom-right {
  right: 0;
  bottom: 0;
}

.spicr-control,
.spicr-pages > * {
  cursor: pointer;
}

.spicr-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.spicr-pages, .spicr-control,
.spicr .next.item {
  z-index: 1;
}

.spicr-slider {
  color: rgba(255, 255, 255, 0.75);
}
.spicr-slider .item {
  height: 600px;
}
.spicr-slider .item-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.spicr-slider h1, .spicr-slider h2, .spicr-slider h3, .spicr-slider h4 {
  color: #fff;
}
.spicr-slider .spicr-layer:not([data-opacity=false]) {
  opacity: 0;
}
.spicr-slider .active .spicr-layer:not([data-opacity=false]) {
  opacity: 1;
}
.spicr-slider .spicr-pages {
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  list-style: none;
}
.spicr-slider .spicr-pages li {
  display: inline-block;
  width: 20px;
  height: 10px;
  margin: 0 1px;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fff;
}
.spicr-slider .spicr-pages li.active {
  width: 22px;
  height: 10px;
  background-color: #fff;
}

.spicr-carousel {
  display: inline-block;
  width: 100%;
  clear: both;
}
.spicr-carousel[data-opacity=false] .next .spicr-layer {
  transform: translate3d(-100%, 0, 0);
}
.spicr-carousel:not([data-opacity=false]) .spicr-layer {
  opacity: 0;
}
.spicr-carousel:not([data-opacity=false]) .active .spicr-layer {
  opacity: 1;
}