/*
 | ------------------------------------------
 | Glide styles
 | ------------------------------------------
 | Here are slider styles
 |
*/

.slider {
	position: relative;
	width: 100%;
	height:  559px;
	overflow: hidden;
}
.slides {
	height: 100%;
	/* Simple clear fix */
	overflow: hidden;
	/**
		 * Prevent blinking issue
		 * Not tested. Experimental.
		 */
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	/**
		 * Here is CSS transitions
		 * responsible for slider animation in modern broswers
		 */
	-webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.slider ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.slider ul li {
	list-style: none;
}
.slide {
	height: 100%;
	float: left;
	clear: none;
}
.slider-arrows {
}
.slider-arrow {
	position: absolute;
	display: block;
	margin-bottom: -80px;
	padding: 36px;
}
.slider-arrow--right {
	bottom: 50%;
	right: 40px;
	background: url(../img/index/next.png);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.slider-arrow--left {
	bottom: 50%;
	left: 40px;
	background: url(../img/index/prev.png);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.slider-arrow--right:hover, .slider-arrow--left:hover {
	opacity: 0.4;
}
.slider-nav {
	position: absolute;
	bottom:20px;
}
.slider-nav__item {
	width: 8px;
	height: 8px;
	float: left;
	clear: none;
	display: block;
	margin: 0 5px;
	background: #fff;
	border-radius: 20px;
}
.slider-nav__item:hover {
	background: #ccc;
}
.slider-nav__item--current {
	background: #ccc;
}
#slide01 {
	background:  url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide02 {
	background: url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide03 {
	background:  url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide04 {
	background: url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
.box {
	margin-top: 60px;
	z-index: 100;
}
.box2 {
	margin-top: 200px;
	z-index: 100;
}
/* Bad and ugly reset */
* {
	margin: 0;
	padding: 0;
	border: 0;
}
.box {
	width: 100%;
	height: 100%;
}
 @media(max-width:1600px) {
#slide01 {
	background:  url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide02 {
	background: url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide03 {
	background:  url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide04 {
	background: url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
}
@media screen and (max-width:  768px) {
 .slider-arrow {
 position: absolute;
 display: none;
}	
 .slider {
 position: relative;
 width: 100%;
 height: 600px;
 overflow: hidden;
 border-bottom: 2px solid #fff;
 background-color: #000000;
 margin:10% 0 0 0;
}
}
@media screen and (max-width: 440px) {
 .slider-arrow {
 position: absolute;
 display: none;
}
.slider {
 position: relative;
 width: 100%;
 height: 450px;
 margin:14% 0 0 0;
}
#slide01 {
	background:  url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide02 {
	background: url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide03 {
	background:  url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
#slide04 {
	background: url(../img/index/top_img.png);
	background-size:cover;
	background-repeat: repeat, no-repeat;
	background-position: center;
}
}
@media screen and (max-width: 320px) {
.slider {
 position: relative;
 width: 100%;
 height: 300px;
 margin:14% 0 0 0;
}
}
