.image-slider-one .slider-button {
  cursor: pointer;
  margin-left: auto;
  margin-right: 0;
  width: 70% !important;
  background-color: var(--line-grey);
  padding-block: 1.5em;
  padding-block: clamp(0.6em, 1.5vw, 1.5em);
  display: flex;
  align-items: center;
  justify-content: space-around;
  transform: translate(13%, -150%);
}
.image-slider-one .slider-button .btn-left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 0;
  width: 65% !important;
  margin-bottom: 0;
  padding-inline: 0.7em;
}
.image-slider-one .slider-button .btn-left h4 {
  margin: 0;
}
.image-slider-one .slider-button .btn-left .left-container {
  width: 0;
  height: 0;
}
.image-slider-one .slider-button .btn-right {
  margin-top: 0;
  display: flex;
  justify-content: flex-start;
  padding-block: 1em;
  width: 30%;
}
.image-slider-one .slider-button .btn-right .right-container {
  display: flex;
  align-items: flex-end !important;
  justify-content: flex-end;
  width: 50%;
  height: 2px;
  background-color: #000;
  transition: width 0.4s ease;
}
.image-slider-one .slider-button:hover {
  cursor: pointer;
}
.image-slider-one .slider-button:hover .btn-right .right-container {
  width: 90%;
}

@media (max-width: 768px) {
  .image-slider-one .slider-button {
    transform: translate(10%, -110%);
    justify-content: center;
    gap: 0.7em;
  }
  .image-slider-one .slider-button .btn-left {
    padding-inline: 0.7em;
  }
  .image-slider-one .slider-button .btn-left .left-container {
    width: 0;
    height: 0;
  }
  .image-slider-one .slider-button .btn-right {
    width: 30%;
  }
  .image-slider-one .slider-button .btn-right .right-container {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .image-slider-one .container-medium {
    width: 100%;
  }
  .image-slider-one .slider-box {
    width: 100%;
  }
  .image-slider-one .slider-button {
    margin-inline: auto;
    width: 95% !important;
    transform: translate(0, -30%);
  }
  .image-slider-one .slider-button .btn-left {
    padding-block: 0.8em;
    width: 60%;
  }
  .image-slider-one .slider-button .btn-left .left-container {
    width: 90%;
  }
  .image-slider-one .slider-button .btn-right {
    padding-block: 0.8em;
    width: 45%;
  }
  .image-slider-one .slider-button .btn-right .right-container {
    width: 45%;
    align-items: flex-end;
  }
  .image-slider-one .slider-button .btn-right:hover .right-container {
    width: 80%;
    align-items: flex-end;
  }
}