.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box; }
  .glide * {
    box-sizing: inherit; }
  .glide__track {
    overflow: hidden; }
  .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; }
    .glide__slides--dragging {
      user-select: none; }
  .glide__slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    white-space: initial;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent; }
    .glide__slide a {
      user-select: none;
      -webkit-user-drag: none;
      -moz-user-select: none;
      -ms-user-select: none; }
  .glide__arrows {
    -webkit-touch-callout: none;
    user-select: none; }
  .glide__bullets {
    -webkit-touch-callout: none;
    user-select: none; }
  .glide--rtl {
    direction: rtl; }

.glide {
  cursor: -webkit-grab;
}

.slider__arrow--prev {
  left: 1.5rem;
}

.fas {
  right: 5px;
  position: absolute;
  top: 6px;
}

.slider__arrow--next {
  right: 1.5rem;
}
.slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 24px;
  height: 24px;
  margin-top: -9px;
  border-radius: 50%;
  background-color: #454545;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 0.5rem 4rem 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0.5rem 4rem 0 rgba(0, 0, 0, 0.5);
}

.slider__arrow--prev {
  left: 1.5rem;
}

.slider__frame[class*=active] {
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: background 0.1s ease-in;
}

.slider__frame {
  color: #fff;
  font-size: 1em;
  font-weight: 900;
}

.slider__bullet:focus, .slider__bullet:hover {
  border: 2px solid #000000;
  background-color: rgba(255, 255, 255, 0.237);
}

.slider__bullets {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -25px;
}

.slider__bullet {
  background-color: rgba(255, 255, 255, 0.224);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  line-height: 0;
  -webkit-box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.5em;
}

.slider__bullet[class*=active] {
  background-color: #cf9e0e;
}

.glide__arrows{
    position: absolute;
    right: 0;
    z-index: 2;
}
.glide__arrow{
    border: none;
    background: #ffffff00;
    cursor: pointer;
}
.glide__arrow:hover{
    transform:scale(1.1);
    transition: ease-in 0.2s;
}

@media (max-width:500px){
    .glide{
        width: 70vw;
    }
}