/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 06 2026 | 09:44:09 */
<!-- ==============================
     HERO SLIDER — Edyl 
     Block prefix: hs__
     CSS for the slider on homepage hero images
     ============================== -->
 
/* ── Scoped only to .hs__slider — will not affect any other element ── */
 
.hs__slider,
.hs__slider *,
.hs__slider *::before,
.hs__slider *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
.hs__slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  font-family: 'Georgia', 'Times New Roman', serif;
}
 
/* ── Slide ── */
.hs__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transform: scale(1.04);
  pointer-events: none;
}
 
.hs__slide--active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
 
/* ── Slide link wrapper ── */
.hs__slide__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
}
 
/* ── Slide background image ── */
.hs__slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
 
/* ── Slide diagonal overlay ── */
.hs__slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.10) 100%
  );
}
 
/* ── Slide content area ── */
.hs__slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 100%);
  color: #ffffff;
}
 
/* ── Tag / category label ── */
.hs__slide__tag {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f0c040;
  margin-bottom: 10px;
}
 
/* ── Slide heading ── */
.hs__slide__title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  max-width: 600px;
}
 
/* ── Slide description ── */
.hs__slide__subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  max-width: 500px;
  line-height: 1.5;
}
 
/* ── CTA button ── */
.hs__slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0c040;
  color: #1a1200;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}
 
.hs__slide__cta::after {
  content: '→';
  font-size: 14px;
}
 
.hs__slide__link:hover .hs__slide__cta {
  background: #ffffff;
  transform: translateX(3px);
}
 
/* ── Arrow buttons ── */
.hs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(4px);
  user-select: none;
  border-radius: 50%;
  line-height: 1;
}
 
.hs__arrow:hover {
  background: rgba(240,192,64,0.7);
  border-color: #f0c040;
}
 
.hs__arrow--prev { left: 20px; }
.hs__arrow--next { right: 20px; }
 
/* ── Dot navigation ── */
.hs__dots {
  position: absolute;
  bottom: 20px;
  right: 60px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
 
.hs__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
 
.hs__dot--active {
  background: #f0c040;
  transform: scale(1.3);
}
 
/* ── Slide counter ── */
.hs__counter {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  z-index: 10;
}
 
.hs__counter__current {
  color: #f0c040;
  font-size: 16px;
}
 
/* ── Progress bar ── */
.hs__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #f0c040;
  width: 0%;
  z-index: 10;
}
 
/* ── Responsive ── */
@media (max-width: 600px) {
  .hs__slider         { height: 250px; } 
  .hs__slide__bg	  {background-size:contain;background-color:#000;}
  .hs__slide__content { padding: 32px 24px; }
  .hs__arrow          { width: 36px; height: 36px; font-size: 16px; }
  .hs__dots           { right: 24px; }
}