
.free-simple-slider {
    position: relative;
}

.free-simple-slider .slider-box {
    height: 360px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
@media screen and (max-width: 1920px) {
	.free-simple-slider .slider-box {
		height: 695px;
	}
}

@media screen and (max-width: 1366px) {
	.free-simple-slider .slider-box {
		height: 485px;
	}
}

@media screen and (max-width: 1280px) {
	.free-simple-slider .slider-box {
		height: 455px;
	}
}

@media screen and (max-width: 1024px) {
	.free-simple-slider .slider-box {
		height: 360px;
	}
}

@media screen and (max-width: 768px) {
	.free-simple-slider .slider-box {
		height: 260px;
	}
}

@media screen and (max-width: 480px) {
	.free-simple-slider .slider-box {
		height: 260px;
	}
}

@media screen and (max-width: 360px) {
	.free-simple-slider .slider-box {
		height: 190px;
	}
}

@media screen and (max-width: 320px) {
	.free-simple-slider .slider-box {
		height: 170px;
	}
}

.free-simple-slider li {
    height: 100%;
    width:100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    display: none;
    background-size: cover;
    background-position: center center;
	vertical-align:bottom;
}
.free-simple-slider li img {
    visibility: hidden;
	vertical-align:bottom;
}
.free-simple-slider .current {
    display: block;
}
.free-simple-slider .slider-box.slide-animation {
    position: relative;
    overflow: hidden;  
}
 .free-simple-slider .slider-box.slide-animation li {
    float: left;
    position: absolute;
    left: 100%;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;  
}
.free-simple-slider .slider-box.slide-animation li.current,
.free-simple-slider .slider-box.slide-animation li.prev {
        left: 0%;
}
.free-simple-slider .slider-box.slide-animation li.prev {
    z-index: 998;
}
.free-simple-slider .slider-box.slide-animation li.current {
    z-index: 999;
}


.free-simple-slider .slider-dots {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right:0;
    margin: 0;
    padding: 10px 10px;
    z-index: 999999;
}

.free-simple-slider .slider-dots li {
    height: 15px;
    width: 15px;
    display: block;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #ccc;
    display: inline-block;
    margin: 0 10px;
    position: static;
    border-radius: 50%;
}

.free-simple-slider .slider-dots li:hover {
    cursor: pointer;
    background-color: #fff;
}
.free-simple-slider .slider-dots li.current {
    background-color: #000;
    border: 1px solid #000;
}

.free-simple-slider .arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.6);
}
.free-simple-slider .arrows:hover {
    background: #fff;
    cursor: pointer;
}

.free-simple-slider .prev-arrow {
    left: 0px;
}
.free-simple-slider .next-arrow {
    right: 0px;
}

.free-simple-slider .arrows img {
    width: 100%;
}