@charset "UTF-8";

#glide-carousel {
  margin-bottom: 0;
}

.glide {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  width: 100%;
  margin: 50px auto 0;
}

.glide * {
  box-sizing: auto;
}

.glide__track {
  overflow: hidden;
  border-radius: 0;
}

@media screen and (max-width: 1300px) {
  .glide__track {
    overflow: hidden;
    border-radius: 0;
  }
}

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

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

.glide__slide {
  display: grid;
  place-items: end;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide-overing {
  position: absolute;
  width: 100%;
}

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

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

.glide--rtl {
  direction: rtl;
}

.glide__slides {
  transform: none !important;
  width: auto !important;
  display: grid;
  grid-template-areas: 'slide';
}

.glide__slide {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  grid-area: slide;
}

.glide__slide--active {
  z-index: 1;
  opacity: 1;
}

.glide_slide_container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-height: 52vh;
}

.glide_slide_container_text {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  padding: 0 12vw 0;
}
@media screen and (max-width: 668px) {
  .glide_slide_container_text {
display: none;
}
  }

.glide_slide_container_text a {
  font-family: 'Intelo', sans-serif;
  font-weight: 300;
  font-size: 1.5vmax;
  text-align: center;
  color: var(--cream);
  text-decoration: none;
  transition: all .2s ease;
  background: var(--dark);
  padding: 5px 10px;
}

@media screen and (max-width: 568px) {
  .glide_slide_container_text a {
    font-family: 'Intelo', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    color: var(--cream);
    transition: all .2s ease;
  }
}
.glide_slide_container_text a:hover {

  background: var(--olive-1);
  padding: 5px 10px;
  box-shadow: var(--shadow-large);
}
