.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top:0px;
}

.slides {
  height: 100%;
  /* Clear fix */
  overflow: hidden;
  *zoom: 1;
  /**
   * Prevent blinking issue
   * Not tested. Experimental.
   */
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.slide {
  height: 100%;
  float: left;
  clear: none;
}
.slide img{
  width:100%;
  margin: 0 auto;
  padding: 0;
  display: block;
}
.slider-arrow {
  position: absolute;
  display: block;
  margin-bottom: -20px;
  padding: 20px;
}

.slider-arrow--right {
  bottom: 50%;
  right: 30px;
}

.slider-arrow--left {
  bottom: 50%;
  left: 30px;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
}

.slider-nav__item {
  width: 20px;
  height: 8px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #fff;
  border-radius:2px;
  -webkit-transition: all 0.41s ease 0s;
  transition: all 0.41s ease 0s;
  -moz-transition: all 0.41s ease 0s;
  -ms-transition: all 0.41s ease 0s;
  -o-transition: all 0.41s ease 0s;
}

.slider-nav__item:hover {
  background: #f0623e;
}

.slider-nav__item--current {
  background: #ccc;
}
/* ================ media queries =====================*/
@media screen and (max-width:768px){

}
@media screen and (max-width:641px){
}
@media screen and (max-width:480px){
.slider {
  overflow: hidden;
}
.slide img{
  width:100%;
  text-align:center;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  display: block;
  zoom: 0;

}
.slides {
  height: 100%;
  overflow: hidden;
  zoom: 1;
}
.slider-nav__item {
  width: 15px;
  height: 5px;
}
.slider-nav {
  bottom: 10px;
}
}
@media screen and (max-width:380px){
}