@import "animate.css";
header:not(.header--mob-opened) .navbar__wrap--init {
  display: none;
}
.zix_slider {
  background-color: #252526;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.zix_slider img {
  display: none;
}
.zix_slider .zix_slide {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
}
.zix_slider .zix_slide.active,
.zix_slider .zix_slide.following,
.zix_slider .zix_slide.backward {
  display: flex;
}
.zix_slider .zix_slide.active {
  z-index: 0;
}
.zix_slider .zix_slide.following {
  z-index: 1;
}
.zix_slider .zix_slide.active img,
.zix_slider .zix_slide.following img {
  object-fit: cover;
  display: block;
  width: 100%;
}
.zix_slider .bullets {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  bottom: 10px;
}
.zix_slider .bullets a {
  content: " ";
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.16);
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.zix_slider .bullets a.active,
.zix_slider .bullets a:hover,
.zix_slider .bullets a:focus {
  border-color: rgba(255, 255, 255, 0.9);
  background-color: #beaf87;
}
.zix_slider .go-next,
.zix_slider .go-prev,
.zix_slider .go-pause {
  position: absolute;
  z-index: 2;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16);
  font-size: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  cursor: pointer;
}
.zix_slider .go-pause {
  font-size: 12px;
  border: 1px solid white;
  height: 26px;
  width: 26px;
  z-index: 241;
  top: 10px;
  right: 10px;
}
.zix_slider .go-prev {
  left: 0;
  top: 0;
}
.zix_slider .go-next {
  right: 0;
  top: 0;
}
.zix_slider .inactive {
  display: none!important;
}
@media all and (max-width: 600px) {
  .zix_slider.desktop {
    display: none;
  }
  .zix_slider.mobile {
    display: block;
  }
}
@media all and (min-width: 600px) {
  .zix_slider.desktop {
    display: block;
  }
  .zix_slider.mobile {
    display: none;
  }
}
/*# sourceMappingURL=custom.css.map */