.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
}
.slider {
  position: relative;
  width: 9999px;
}
.slider:before, .slider:after {
  display: table;
  content: ' ';
}
.slider:after {
  clear: both;
}
.slider__item {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slider__item img {
  display: block;
  width: 100%;
  height: auto;
  
}
.slider__switch span {
  color: #fff;
  display: block;
  width: 32px;
  height: 32px;
  font-size: 1.875rem;
  line-height: 32px
}
/* Arrows */
.slider__switch {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  padding: 10px 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  background-color: rgba(0, 0, 0, .6);
  opacity: 0;
  transition: opacity .15s ease;
  fill: #fff;
  border-radius: 4px;
}
.slider-container:hover .slider__switch {
  opacity: .3;
}
.slider__switch--prev {
  left: 10px;
}
.slider__switch--next {
  right: 10px;
}
.slider-container:hover .slider__switch:hover {
  opacity: 1;
}
.slider__switch[disabled] {
  visibility: hidden;
  opacity: 0;
}

.slider__caption h3{
	margin:0;
	font-size:20px;
	overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.slider__caption[disabled] {
  opacity: 0;
  visibility: hidden;
}
.slider-nav {
  line-height: 30px;
  position: absolute;
  bottom: 0;
  right: 15px;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  text-align: right;
  z-index: 9;
}
.slider-nav__control {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  -webkit-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 10px;
  background: #EAEFFE;
}
.slider-nav__control.is-active {
  width: 24px;
  height: 8px;
  background: #249ff6;
}
.slider.has-touch {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}
@media (max-width: 568px) {
  .slider__switch {
    display: none;
  }
}