.father_slider-- {
    width: 100%;
    overflow: hidden;
    height: 500px;
    max-height: 500px;
    position: relative;
    display: flex;
    border-radius: 12px;
}

.slider-- {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  transition: all 0.5s ease;
}

.slider-- img {
  object-fit: fill;
  width: 100%;
  height: 100% !important;
}

.slider-- img:nth-child(2) {
  position: absolute;
  right: 0;
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.slider-- img + img {
  margin: 0 !important;
}

.slider-- #slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  width: 1px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 3;
  /* opacity: 0; */
  transition: opacity 0.5s ease;
}

.slider--.active .slider {
  background: #fff;
}

.slider-- #slider #circle {
  position: absolute;
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  justify-content: space-between;
  padding: 5px;
  border: 2px solid rgb(255 255 255 / 0.4);
  border-radius: 50%;
  background: #1b1b1b;
}

.slider-- .after,
.slider-- .before {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  /* top: 50%; */
  top: 50%;
  transform: translateY(-50%);
  background: rgb(14 18 28 /0.7);
  /* background: rgba(255, 255, 255, 0.2); */
  border: 1px solid #e12816;
  color: #fff !important;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
  transition: top 0.5s ease;
}

.slider-- .after {
  z-index: 2;
  right: 10px;
}

.slider-- .before {
  left: 10px;
  z-index: 1;
}
