

.slider {
    width: 100%;
    max-width: 800px;
    height: 350px;
    position: relative;
    overflow: hidden; /* <===  */
    border-radius: 15px;
  }

  .slide {
    width: 100%;
    max-width: 800px;
    height: 350px;
    position: absolute;
    transition: all 0.5s;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider .btn {
    position: absolute;
    width: 40px;
    height: 40px;
    padding: 7px;
    border: none;
    border-radius: 50%;
    z-index: 10px;
    cursor: pointer;
    background-color: #909090;
    font-size: 18px;
  }
  .slider .btn:active {
    transform: scale(1.1);
  }
  .slider .btn-prev {
    top: 45%;
    left: 0%;
  }

 .slider .btn-next {
    top: 45%;
    right: 0%;
  }
