/* MAIN HERO SLIDER */

.glide__bullet {
  position: relative;
  display: flex;
  padding: 15px 0 0 0;
  border: 0;
  overflow: hidden;
  color: #000;
  text-transform: uppercase;
  height: 40px;
  margin-right: 10px;
  margin-left: 10px;
  background-color: transparent;
}

.glide__bullet:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 4px;
  display: block;
  opacity: 0;
  transform: translateX(-100%);
  background-color: #f3b5a4;
  transition: transform 6s;
}

.glide__bullet--active:before {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .glide__bullet {
    visibility: visible;
    position: relative;
    margin: 0 !important;
    left: 0;
  }

  .glide__bullet--active {
    visibility: visible;
    position: relative;
    margin: 0 !important;
    left: 0;
  }
}