.slider-container {
    /*position: relative;*/
    width: 500px; /* Adjust the width as per your preference */
    overflow: hidden;
    margin: auto;
  }

  .slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
  }

  .slide {
    min-width: 100%;
    box-sizing: border-box;
  }

  .slide img {
    width: 100%;
    height: auto;
  }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px; /* Increase the margin to move the buttons away from the edges */
}

.prev-btn {
    left: 200px; /* Adjust the left position */
}

.next-btn {
    right: 200px; /* Adjust the right position */
}
@media (max-width:425px){
	.prev-btn {
    left: 0px; /* Adjust the left position */
}

.next-btn {
    right: 0px; /* Adjust the right position */
}
.slider-container {
	width:80%;
}
 .slide img{
 	width:80%;
 }
}
 


