section.tebab-block-hero_slider {
  position: relative;
  background-color: #cfcfcf;
}
section.tebab-block-hero_slider .images {
  position: absolute;
  width: 100%;
  height: 100%;
}
section.tebab-block-hero_slider .images .images-wrapper {
  display: flex;
  height: 100%;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
section.tebab-block-hero_slider .images .images-wrapper::-webkit-scrollbar {
  display: none;
}
section.tebab-block-hero_slider .images .images-wrapper img {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.5);
}
section.tebab-block-hero_slider .content {
  pointer-events: none;
  position: relative;
  z-index: 1;
  padding-top: 300px;
  padding-bottom: 20px;
}
section.tebab-block-hero_slider .content .slides-container {
  position: relative;
  height: 400px;
}
section.tebab-block-hero_slider .content .slides-container .slide {
  padding-bottom: 100px;
  position: absolute;
  max-width: 800px;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
section.tebab-block-hero_slider .content .slides-container .slide .heading {
  -webkit-hyphens: auto;
          hyphens: auto;
  white-space: pre-line;
  font-size: 64px;
  margin: 0;
  margin-bottom: 20px;
  color: var(--heading-color, white);
}
section.tebab-block-hero_slider .content .slides-container .slide.active {
  opacity: 1;
  transform: translateY(0);
}
section.tebab-block-hero_slider .content .slides-container .slide.active .button {
  pointer-events: all;
}
section.tebab-block-hero_slider .content .bottom-bar {
  pointer-events: all;
}
section.tebab-block-hero_slider .content .bottom-bar .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
section.tebab-block-hero_slider .content .bottom-bar .top .left {
  display: flex;
  flex-direction: column;
  color: white;
  font-weight: bold;
  font-size: 14px;
}
section.tebab-block-hero_slider .content .bottom-bar .top .navigation {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
section.tebab-block-hero_slider .content .bottom-bar .top .navigation button {
  background-color: white;
  font-size: 20px;
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.tebab-block-hero_slider .content .bottom-bar .top .navigation button .icon {
  color: var(--color-primary);
}
section.tebab-block-hero_slider .content .bottom-bar .top .navigation button:disabled {
  background-color: rgba(255, 255, 255, 0.3607843137) !important;
}
section.tebab-block-hero_slider .content .bottom-bar .top .navigation button:not(:disabled):hover .icon {
  color: white;
}
section.tebab-block-hero_slider .content .bottom-bar .progress {
  margin-top: 15px;
  width: 100%;
  height: 2px;
  border-radius: 20em;
  background-color: rgba(255, 255, 255, 0.44);
  position: relative;
}
section.tebab-block-hero_slider .content .bottom-bar .progress:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% * var(--progress, 0));
  height: 100%;
  background-color: white;
}
@media (max-width: 768px) {
  section.tebab-block-hero_slider .content {
    padding-top: 200px;
  }
  section.tebab-block-hero_slider .content .slides-container {
    height: 300px;
  }
  section.tebab-block-hero_slider .content .slides-container .slide {
    padding-bottom: 50px;
  }
  section.tebab-block-hero_slider .content .slides-container .slide .heading {
    font-size: 36px;
  }
}/*# sourceMappingURL=hero_slider.css.map */