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

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

#slider li {
  list-style:none;
}

#slider li img {
  border: 1px solid #e2e2e2;
}

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

.sliderbutton li {
  list-style: none;
  padding:5px;
  background:white;
  float:left;
  margin-right:10px;
  border-radius:10px;
}

.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: 95%;
      height:164px;
      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;
}

}








