.before-after-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.before-after-slider img {
  display: block;
  width: 100%;
  height: auto;
}

/* AFTER IMAGE CLIPPED */
.before-after-slider .img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: none;
}

/* SLIDER LINE */
.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
}

/* HANDLE */
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #1C3652;
  border-radius: 50%;
  z-index: 4;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.slider-handle span {
  width: 14px;
  height: 14px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}