.glide {
  max-width: 100%;
}

.glide__slides {
  margin-bottom: 0;
}

.glide__slide img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.glide__bullets {
  position: relative;
  width: 100%;
  height: 10px;
}

.glide__bullet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  border: 0;
  padding: 0;
  background-color: lightgrey;
  cursor: pointer;
}
.glide__bullet:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: grey;
  transform: translateX(-100%);
  transition: transform 5s ease-in-out;
}

.glide__bullet--active {
  z-index: 1;
}
.glide__bullet--active:before {
  transform: translateX(0);
}