.glide__track{
  text-align: center;
}
.glide__slide img{

  max-width: 100%;
  height: auto;
}
.glide__arrows {
  position: absolute;
  top: 50%;
  width: 100%;

}
.glide__arrow {
  position: absolute;
  z-index: 2;

  width:64px;
  height:64px;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow.prev {
  left: 0;
  background: url(../images/works/arrow.png);
}
.glide__arrow.next {
  right: 0;
  background: url(../images/works/arrow.png) center right;
}
.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;
}
@media (max-width: 643px) {
  .glide__slide img {
    margin-bottom: 16px;
  }
  .glide__arrows{
    display: none;
  }
}
