
@media only screen and (max-width:650px) {
	.glide {
		height: 280px;
	}
	.box {
		width:100%;
		min-height:280px;
		line-height:280px;
	}
}

.glide__slide img { width: 100%; max-width:720px; min-width:240px; }

.glide__arrows {
  position: absolute;
  bottom: 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: orange;
  text-transform: uppercase;
  font: 11px Arial, sans-serif;
  padding: 9px 12px;
  border: 2px solid rgba(255, 165, 0, 0.5);
  border-radius: 4px;
  -webkit-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}
.glide__arrow:hover {
  border-color: orange;
}
.glide__arrow.prev {
  left: 0;
}
.glide__arrow.next {
  right: 0;
}
.glide__bullets {
  position: absolute;
  top: 120%;
  width: 100%;
  text-align: center;
  list-style: none;
}
.glide__bullets li {
  display: inline-block;
  background-color: rgba(205, 205, 193, 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 rgba(205, 205, 193, 1);
}
.glide__bullets li.active {
  background-color: rgba(205, 205, 193, 1);
}
.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;
}
