.glide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 146px);
  max-width: 90vw;
  display: flex;
  justify-content: space-between;
}

.glide__arrows .glide__arrow {
  width: 56px;
  height: 56px;  
  background: none;
  border: none;
  background-image: url('../images/icons/slide/arrow.svg');
  background-size: 100% 100%;
  color: transparent;
  cursor: pointer;
}

.glide__arrows .glide__arrow:disabled {
  background: none;
  pointer-events: none;
}

.glide__arrows .glide__arrow.glide__arrow--left {
  transform: scaleX(-1);
}

.glide__bullets {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    margin-top: 45px;
    position: absolute;
}

.glide__bullets .glide__bullet {
    background-color: #0a344e !important;
}

.glide__bullets .glide__bullet {
    margin: 0 12px;
    width: 8px;
    height: 8px;
    background-color: #e30513 !important;
    border-radius: 50%;
    opacity: .4;
    border: none;
    cursor: pointer;
}

.glide__bullets .glide__bullet:only-child {
  display: none;
}

.glide__bullets .glide__bullet.glide__bullet--active {
    opacity: 1;
    background-color: #e30513 !important;
}

@media (max-width: 800px) {
  .glide__arrows {
    display: none;
  }

  .glide__bullets .glide__bullet {
    background-color: #e30513;
  }
}
  