body {
  margin: 0
}
.slider {
  width: 100%;
  height: 100vh;
  background: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}
.images {
  position: relative
}
.images, .images img {
  width: 100%;
  height: 100%
}
.images img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0
}
.control {
  width: 100%;
  max-width: 360px;
  height: 50px;
  padding: 0 20px;
  background: blue;
  position: absolute;
  z-index: 99;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}
.bounds {
  width: 100%
}
.thumb {
  background: white;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateX(-50%)
}