html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
}
.slider {
	margin: 0 auto;
	max-width: 100%;
}
.slider h3 {
	position: absolute;
	font-size: 40px;
	width: 60%;
	font-family: opensans-li;
	top: 10%;
	text-align: center;
	color: #fff;
	background-color: #8dbf43;
}
.slide_viewer {
	height: 740px;
	overflow: hidden;
	position: relative;
}
.slide_group {
	height: 100%;
	position: relative;
	width: 100%;
}
.slide {
	display: none;
	height: 100%;
	position: absolute;
	width: 100%;
	top: 7%;
}
.slide:first-child {
	display: block;
}
.slide:nth-of-type(1) {
	background-image: url(../images/slider.png);
	background-repeat: no-repeat;
	background-size: 100%;
}
.slide:nth-of-type(2) {
	background-image: url(../images/slider-01.png);
	background-repeat: no-repeat;
	background-size: 100%;
}
.slide_buttons {
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
}
a.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: #428CC6;
	cursor: pointer;
}
.directional_nav {
	height: 30%;
	margin: 0 auto;
	max-width: 100%;
	position: relative;
	top: -300px;
}
.previous_btn {
	bottom: 0;
	left: 10px;
	margin: auto;
	position: absolute;
	top: 0;
}
.next_btn {
	bottom: 0;
	right: 10px;
	margin: auto;
	position: absolute;
	top: 0;
}
.previous_btn, .next_btn {
	cursor: pointer;
	height: 65px;
	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;
}
.previous_btn:hover, .next_btn:hover {
	opacity: 1;
}


 @media only screen and (max-width: 768px) {
.slide {
	top: 0%;
}
.slide_viewer {
	height: 400px;
}
.slider h3 {
    font-size: 18px;
    top: 9%;
}
.slide_buttons {
	display: none;
}
.previous_btn {
	top: 300px;
}
.next_btn {
	top: 300px;
}
}
 @media only screen and (max-width: 630px) {
.slide {
	top: 0%;
}
.slide_viewer {
	height: 280px;
}
.slider h3 {
	font-size: 14px;
	top: 8%;
}
.slide_buttons {
	display: none;
}
.previous_btn {
	top: 300px;
}
.next_btn {
	top: 300px;
}
}
@media only screen and (max-width: 480px) {
/* index */
.slide {
	top: 0%;
}
.slide_viewer {
	height: 160px;
}
.slider h3 {
	font-size: 12px;
	top: 5%;
}
.slide_buttons {
	display: none;
}
.previous_btn {
	top: 450px;
}
.next_btn {
	top: 450px;
}
/* end index */
}

 @media only screen and (max-width: 414px) {
 .slide_viewer {
    height: 210px;
}
 }

 @media only screen and (max-width: 320px) {
 .slide_viewer {
	height: 160px;
}
 }