/* === HERO SLIDER (Slick) === */
.home-slider {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}
.home-slider .items {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .home-slider .items {
    width: 1500px;
    max-width: 1500px;
    flex: 0 0 1500px;
  }
}

.section_slider {
  padding: 0 15px;
}
@media (min-width: 1200px) {
  .section_slider {
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .section_slider .home-slider {
    width: 1500px;
  }
}

.slick-arrow {
  display: none !important;
}
.home-slider .items img {
  width: 100%;
  object-fit: contain;
}
.home-slider a { display: block; }

.section_slider { position: relative; }
@media (max-width: 991px) {
  .section_slider {  overflow: hidden; }
  .section_slider .home-slider,
  .section_slider .home-slider .items,
  .section_slider .home-slider .items a,
  .section_slider .home-slider .items picture {
    height: 100%;
  }
  .section_slider .home-slider .items img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}

/* Slick arrows */
.home-slider .slick-arrow.slick-prev { left: -2px; }
.home-slider .slick-arrow.slick-next { right: -2px; }

/* Dot pagination */
.home-slider__dot-fake {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  padding: 0;
  border-radius: 15px;
  height: 24px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 11px;
}
.home-slider__dot-fake__item {
  height: 2px;
  width: 16px;
  border: 1px solid var(--text-white);
  background: var(--text-white);
  border-radius: 0;
  margin: 0 3px;
  opacity: 0.5;
}
.home-slider__dot-fake__item.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
}
.home-slider__dot-fake.desktop { display: none; }
@media (min-width: 991px) {
  .home-slider__dot-fake.mobile { display: none; }
  .home-slider__dot-fake.desktop { display: flex; }
}

/* Slick default dots override */
.home-slider .slick-dots {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  padding: 0;
  border-radius: 15px;
  height: 24px;
  align-items: center;
  display: flex !important;
  justify-content: center;
  margin-bottom: 11px;
}
.home-slider .slick-dots li { display: inline-block; }
.home-slider .slick-dots li button {
  font-size: 0;
  height: 2px;
  width: 16px;
  border: 1px solid var(--text-white);
  background: var(--text-white);
  border-radius: 0;
  margin: 0 3px;
  opacity: 0.5;
  padding: 0;
}
.home-slider .slick-dots li.slick-active button {
  border-color: var(--primary-color);
  background: var(--primary-color);
  opacity: 1;
}
