.fader {
    position: relative;
    padding-top: 49%;
    font-family: "futura", arial;
    overflow: hidden;
}

.fader .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    opacity: 0;
}

.fader img.slide {
    height: auto;
}

.fader .prev,
.fader .next {
    position: absolute;
    height: 80px;
    line-height: 55px;
    width: 50px;
    font-size: 100px;
    text-align: center;
    color: #fff;
    top: 50%;
    left: 0;
    z-index: 4;
    margin-top: -60px;
    cursor: pointer;
    opacity: .7;
    transition: all 150ms;
}
@media (max-width: 767px) {
  .fader .prev,
  .fader .next {
    position: absolute;
    height: 80px;
    line-height: 55px;
    width: 30px;
    font-size: 50px;
    text-align: center;
    color: #fff;
    top: 50%;
    left: 0;
    z-index: 4;
    margin-top: -38px;
    cursor: pointer;
    opacity: .7;
    transition: all 150ms;
}
}
.fader .prev:hover,
.fader .next:hover {
    opacity: 1;
}

.fader .next {
    left: auto;
    right: 0;
}

.fader .pager_list {
    position: absolute;
    width: 100%;
    height: 40px;
    padding: 0;
    line-height: 40px;
    bottom: 15px;
    text-align: center;
    z-index: 4;
}
@media (max-width: 767px) {
  .fader .pager_list {
    position: absolute;
    width: 100%;
    height: 40px;
    padding: 0;
    line-height: 65px;
    bottom: -40px;
    text-align: center;
    z-index: 4;
}
}
.fader .pager_list li {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 7px;
	background: rgba(40, 8, 13, 0.7);
	text-indent: -9999px;
	border-radius: 999px;
	cursor: pointer;
	transition: all 150ms;
	border: 1px solid #575757;
}
@media (max-width: 767px) {
  .fader .pager_list li {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background: #705949;
    opacity: .5;
    text-indent: -9999px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 150ms;
}
}
.fader .pager_list li:hover,
.fader .pager_list li.active {
	border: 1px solid #575757;
	background-color: #EBEBEB;
}
