/* main content */
.hero-section {
  color: var(--black_white50);
  max-height: 750px;
  height: 750px;
  max-width: 1920px;
  width: 100%;
  overflow: hidden;
  margin: auto;
  transition: max-height 0.4s ease;
}

.hero-skiltis-gallery {
  max-height: 750px;
  height: 100%;
  margin-bottom: 0 !important;
}

.slick-list {
  height: 100%;
}

.slick-track {
  max-height: 750px;
  height: 750px;
}

.slick-slide {
  max-height: 750px;
  height: 100%;
}

/* .slick-slide img,
.slick-slide picture {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
} */

/* controllers */
.hero-section .slick-dots {
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.hero-section .slick-dots li {
  margin: 0;
  height: 10px;
  width: 10px;
  border-radius: 100%;
}

.hero-section .slick-dots li button:before {
  display: none;
}

.hero-section .slick-dots li button {
  background: #a9a9a9;
  height: 10px;
  width: 10px;
  border-radius: 100%;
}

.hero-section .slick-dots li.slick-active button {
  background: #ffffff;
}

.hero-section .slick-prev {
  left: 50px;
  z-index: 1;
}

.hero-section .slick-next {
  right: 50px;
  z-index: 1;
}

.hero-section .slick-prev:before,
.hero-section .slick-next:before {
  display: none;
}

.hero-section .slick-prev,
.hero-section .slick-next {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 100%;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.hero-section .slick-prev svg,
.hero-section .slick-next svg {
  width: 17.55px;
  height: 14.88px;
}

.hero-section .slick-prev:hover,
.hero-section .slick-next:hover,
.hero-section .slick-prev:focus,
.hero-section .slick-next:focus {
  color: #a9a9a9;
  border-color: #a9a9a9;
}

/* Responsive */
@media (max-width: 768px) {

  /* main content */
  .hero-section,
  .hero-skiltis-gallery,
  .slick-list,
  .slick-track,
  .slick-slide,
  .slick-slide img {
    max-height: 672px;
    height: 100%;
  }
  .hero-skiltis-slide a.hero-skiltis-image {
    height: 672px;
  }

  /* controllers */
  .hero-section .slick-dots {
    gap: 5px;
  }

  .hero-section .slick-dots li {
    height: 8px;
    width: 8px;
  }

  .hero-section .slick-dots li button {
    height: 8px;
    width: 8px;
    padding: 4px;
  }

  .hero-section .slick-prev {
    left: 16px;
  }

  .hero-section .slick-next {
    right: 16px;
  }

  .hero-section .slick-prev,
  .hero-section .slick-next {
    height: 40px;
    width: 40px;
  }

  .hero-section .slick-prev svg,
  .hero-section .slick-next svg {
    width: 14.04px;
    height: 11.91px;
  }
}

/* Responsive images */
/* Hide all by default */
.hero-skiltis-slide a.hero-skiltis-image {
  display: none;
}

/* Desktop: screens wider than 1024px */
@media screen and (min-width: 1025px) {
  .hero-skiltis-slide a.hero-skiltis-image.desktop {
    display: block;
  }
}

/* Tablet: screens between 768px and 1024px */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-skiltis-slide a.hero-skiltis-image.tablet {
    display: block;
  }
}

/* Mobile: screens below 768px */
@media screen and (max-width: 767px) {
  .hero-skiltis-slide a.hero-skiltis-image.mobile {
    display: block;
  }
}

/* Optional: make images responsive inside the link */
.hero-skiltis-slide a.hero-skiltis-image {
  height: 750px;
  width: 100%;
}
.hero-skiltis-slide a.hero-skiltis-image img,
.hero-skiltis-slide a.hero-skiltis-image picture {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}