
.slider {
	position: relative;
  margin: 0 auto;
border: .5em solid rgba(220,213,194,1);
border-left: 0; border-right: 0;
}


.slide_viewer {
  height: 50vw;
  overflow: hidden;
  position: relative;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
  background-repeat: no-repeat !important; background-size: cover !important;
}

.slide:first-child {
  display: block;
}

.slide:nth-of-type(1) {
  background: url(img/slider/01.webp);
}

.slide:nth-of-type(2) {
  background: url(img/slider/02.webp);
}

.slide:nth-of-type(3) {
  background: url(img/slider/03.webp);
}

.slide:nth-of-type(4) {
  background: url(img/slider/04.webp);
}

.slide_buttons {
  text-align: center;
}

span.slide_btn {
  color: #474544;
  font-size: 42px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide_btn.active, .slide_btn:hover {
  color: rgba(255,255,255,.3);
  cursor: pointer;
}

.directional_nav {
width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
top:0; left:0;
}

.directional_nav svg {mix-blend-mode: screen;}

.previous_btn {
	display: flex; align-items: center;
  bottom: 0;
  left: 10px;
  margin: auto;
  position: absolute;
  top: 0;
}

.next_btn {
	display: flex; align-items: center;
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 10px;
  top: 0;
}

.previous_btn, .next_btn {
  cursor: pointer;
  height: 50vw;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 5vw; min-width: 40px;
}

.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}



@media (max-width: 800px) {
	.slide_viewer {height: 120vw;}
	.directional_nav {height: 120vw;}
	.slide:nth-of-type(3) {background: url(img/slider/03.webp); background-position: center right;}
	
}