.slider-image {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
}

/* Content Slider
------------------------------------------------------------------------------*/
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.inactive {
  display: none;
}

#sli01 {
  background-color: #FFFFFF;
  background-image: url("../images/slider01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

#sli02 {
  background-color: #FFFFFF;
  background-image: url("../images/slider02.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

#sli03 {
  background-color: #FFFFFF;
  background-image: url("../images/slider03.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

#sli04 {
  background-color: #FFFFFF;
  background-image: url("../images/slider04.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 0 .125em .3125em rgba(0, 0, 0, 0.6), 0 0 .3125em rgba(0, 0, 0, 0.5);
}

.slide-title {
  font-size: 10vw;
}

.slider-nav {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  z-index: 10;
}

.next-slide,
.prev-slide {
  position: absolute;
  display: inline-block;
  width: 3.125rem;
  height: 3.125rem;
  line-height: 3.125;
  margin: 0;
  border: .125rem solid white;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  overflow: hidden;
  cursor: pointer;
  z-index: 20;
  transition: all .3s ease-in-out 0s;
  -webkit-user-select: none;
  user-select: none;
}

.prev-slide {
  left: 2%;
}

.next-slide {
  right: 2%;
}

.next-slide:hover,
.prev-slide:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.next-slide::before,
.prev-slide::before {
  position: absolute;
  top: 33%;
  display: inline-block;
  width: .8125rem;
  height: .8125rem;
  content: "";
  border-left: .25rem solid white;
  border-top: .25rem solid white;
  backface-visibility: hidden;
}

.prev-slide::before {
  transform: rotate(-45deg);
  right: 25%;
}

.next-slide::before {
  transform: rotate(135deg);
  left: 25%;
}
@media screen and (max-width: 42.5em) {
  .next-slide,
  .prev-slide {
      display: none;
  }
}
@media screen and (max-width: 61.25em) {
  .slider {
      max-height: 57.95918367vw;
  }
}
@media screen and (min-height: 61.25em) {
  .slider {
      max-height: 57.95918367vw;
  }
}
