.glide__arrows {
  position: absolute;
  top: 50%;
  width: 92%;
  margin-left: 4%;
}
.glide__arrow {
  position: absolute;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
  text-transform: uppercase;
  font: 11px Arial, sans-serif;
  padding: 9px 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  -webkit-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow.prev {
  left: 0;
}
.glide__arrow.next {
  right: 0;
}
.glide__bullets {
  position: absolute;
  bottom: 8%;
  width: 100%;
  text-align: center;
  list-style: none;
}
.glide__bullets li {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}
.glide__bullets li:hover {
  border: 2px solid white;
}
.glide__bullets li.active {
  background-color: white;
}
.glide--slider .glide__arrow {
  opacity: 1;
  -webkit-transition: visibility 0 ease 150ms,
						opacity 150ms ease;
          transition: visibility 0 ease 150ms,
						opacity 150ms ease;
}
.glide--slider .glide__arrow.disabled {
  opacity: 0.5;
}
