 #slider {
  position:relative;
  padding: 0;
  margin: 10px auto 20px auto;
  width: 1140px;
  height:380px;
  overflow: hidden;
  border-radius: 5px;
}

#slider img{
          width:100%;
          height:100%;
          border-radius: 5px;
}

#slider li {
  list-style:none;
}

.sliderbutton {
  position:relative;
  margin:0 auto;
  width:1140px;
}

.sliderbutton li {
  list-style: none;
  padding:1px 60px;
  background:#9c9c9c;
  float:left;
  margin-right:20px;
}

.sliderleft {
  left: 10px;
  bottom: 185px;
  cursor:pointer;
  position:absolute;
  z-index: 100;
  width: 30px;
  transition: all 0.4s;

}

.sliderright {
  right: 10px;
  bottom: 185px;
  cursor:pointer;
  position:absolute;
  z-index: 100;
  width: 30px;
  overflow: visible;
  transition: all 0.4s;
}

.sliderleft:hover, .sliderright:hover {
  transform: scale(1.1);
}

/*Mobil Kısım */
  @media screen and (max-width: 650px){
     #slider {
      position:relative;
      padding: 0;
      margin: 0 auto;
      max-width: 350px;
      height:128px;
      overflow: hidden;
    }

    .sliderleft {
      left: 10px;
      bottom: 75px;
      cursor:pointer;
      position:absolute;
      z-index: 100;
      width: 15px;
      transition: all 0.4s;

    }

    .sliderright {
      right: 10px;
      bottom: 75px;
      cursor:pointer;
      position:absolute;
      z-index: 100;
      width: 15px;
      overflow: visible;
      transition: all 0.4s;
    }

    .sliderbutton {
      position:relative;
      margin:0 auto;
      width:120px;
      margin-top:-35px;
}

}








