.glide {
  position: relative;
  margin-bottom: 20px;
}
.glide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.glide__track {
  margin-bottom: 10px;
}
.glide video {
  display: block;
  object-fit: cover;
  margin: auto;
}
.glide__arrow {
  padding: 5px 7px;
  box-shadow: none;
  border: none;
}
.glide__arrow img {
  filter: brightness(0%) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(24deg) brightness(100%) contrast(80%) drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
  height: 2.5em;
}
.glide__arrow:hover img {
  filter: brightness(0%) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(24deg) brightness(100%) contrast(100%) drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
}
.glide__bullets {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
  text-align: center;
}

.glide__bullet {
  width: 18%;
  display: flex;
  height: auto;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  margin-left: 5px;
  margin-right: 5px;
}

.glide__bullet img {
  width: 100%; 
  height: auto;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.glide__bullet--active img {
  opacity: 1;
}
#dynamic-carousel.glide video, #static-carousel.glide video {
  /* width: 600px; */
  /* height: 450px; */
  /* border-radius: 12px; */
  padding-bottom: 15%;
}