  /* =========================
   MODERN YOUTUBE VIDEO SLIDER
========================= */

.yt-slider-section{
  width: 100%;
  background: #000;
  overflow: hidden;
  position: relative;
}

.yt-slider-container{
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Slider Wrapper */
.yt-slider-wrapper{
  width: 100%;
  position: relative;
}

/* Slides */
.yt-slide{
  width: 100%;
  display: none;
  position: relative;
  animation: ytFade 0.6s ease;
}

.yt-slide.active{
  display: block;
}

/* YouTube Video */
.yt-slide iframe{
  width: 100%;
  height: 720px;
  border: none;
  display: block;
  background: #000;
}

/* =========================
   ARROW BUTTONS
========================= */

.yt-prev,
.yt-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.yt-prev:hover,
.yt-next:hover{
  background: rgba(255,255,255,0.18);
}

.yt-prev{
  left: 25px;
}

.yt-next{
  right: 25px;
}

/* =========================
   BULLETS / DOTS
========================= */

.yt-dots{
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 20;
}

.yt-dot{
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.yt-dot.active{
  background: #ffffff;
  transform: scale(1.25);
}

/* =========================
   SLIDE ANIMATION
========================= */

@keyframes ytFade{

  from{
    opacity: 0.4;
  }

  to{
    opacity: 1;
  }

}

/* =========================
   LARGE LAPTOP
========================= */

@media (max-width: 1400px){

  .yt-slide iframe{
    height: 650px;
  }

}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1200px){

  .yt-slide iframe{
    height: 580px;
  }

}

/* =========================
   TABLET
========================= */

@media (max-width: 992px){

  .yt-slide iframe{
    height: 500px;
  }

  .yt-prev,
  .yt-next{
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

  .yt-slide iframe{
    height: 550px;
  }

  .yt-prev,
  .yt-next{
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .yt-prev{
    left: 12px;
  }

  .yt-next{
    right: 12px;
  }

  .yt-dots{
    bottom: 18px;
    gap: 10px;
  }

  .yt-dot{
    width: 11px;
    height: 11px;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

  .yt-slide iframe{
    height: 550px;
  }

  .yt-prev,
  .yt-next{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

}

/* =========================
   EXTRA SMALL MOBILE
========================= */

@media (max-width: 360px){

  .yt-slide iframe{
    height: 260px;
  }

}