.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: visible;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: visible;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  position: relative;
  width: 100%;
  height: 90vh;
  text-align: center;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  background: white;
}
@media (max-width: 768px) {
  .glide__slide {
    height: fit-content;
  }
}
@media (max-width: 425px) {
  .glide__slide {
    height: 90vh;    
  }
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: block;
  width: fit-content;
  margin: auto;
  overflow: auto;
  max-height: 100%;
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}

@media (max-width: 425px) {

  .glide__arrows {
    -webkit-touch-callout: none;
    user-select: none;
    display: none;
  }
}

.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}

.glide img {
  max-height: 100%;
  max-height: 90vh;
  max-width: 100%;
  height: auto;
  width: auto;
  
}

@media (max-width: 767px) {
  .glide img {
    height: auto;
    width: 100%;
  }
}