
.dj-image, 
.djslider a {
  -webkit-user-drag: none;
  user-drag: none;
}

.djslider {
	position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh);
  aspect-ratio: 16/9;
  background: #000;
}

.slider-container,
.djslider-in,
.slide-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.djslider-in {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide-item.active { opacity: 1; z-index: 2; }

.slide-item img.dj-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-desc {
  box-sizing: border-box;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  z-index: 3;
}

.slide-desc-in {
  position: absolute;
  bottom: 100px;
	left: 12%;
	width: 100%;
	max-width: 600px;
	padding: 40px 30px;
  background: rgba(0,0,0,0);
  display: inline-block;
}

.slide-desc-text .slide-text {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  font-size: 1.2rem;
  line-height: 1.4;
}

.slide-desc-text h2 {
	font-size: 45px;
	font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  margin-bottom: 0.3em;
}

.slide-desc-text div {
  font-size: 25px;
	color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}

.slide-desc-text div a { }
.slide-desc-text a { display: inline-flex; justify-content: center; align-items: center; height: 50px; margin-top: 50px; padding: 0 25px; font-size: 16px; text-transform: uppercase; border: 2px solid #ffffff; border-radius: 10px; font-weight: 600; text-decoration: none; transition: all 0.4s ease-out; }
.slide-desc-text a:hover { background: #ffffff; color: #252728; text-shadow: none; }

.navigation-container img.prev-button,
.navigation-container img.next-button {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 5;
}
.navigation-container img.prev-button { left: 0; transform: translate(-100%, -50%); }
.navigation-container img.next-button { right: 0; transform: translate(100%, -50%); }
.djslider:hover .navigation-container img.prev-button { transform: translate(0, -50%); opacity: 1; }
.djslider:hover .navigation-container img.next-button { transform: translate(0, -50%); opacity: 1; }

.navigation-container-custom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.load-button {
	position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
	background: none;
  margin: 0 4px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.load-button:after {
	content: " ";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 100%;
	height: 3px;
	background: rgba(255,255,255,0.5);
}

.load-button.load-button-active { background: none; }
.load-button.load-button-active:after { background: rgba(255,255,255,1); }

@media (max-width: 1000px) { 
	.djslider { height: 1000px; }
	.slide-desc-in { left: 20px; bottom: 75px; }
	.slide-desc-text h2 { font-size: 35px; }
	.slide-desc-text div { font-size: 18px; }
	.slide-desc-text a { font-size: 16px; margin-top: 30px; }
	.navigation-container img.prev-button,
	.navigation-container img.next-button { display: none; }
	.load-button { width: 40px; }
}
@media (max-width: 500px) { 
	.djslider { height: 600px; }
	.slide-desc-in { left: 0; bottom: 50px; }
	.slide-desc-text h2 { font-size: 25px; }
	.slide-desc-text div { font-size: 16px; }
	.slide-desc-text a { font-size: 14px; margin-top: 30px; }
	.navigation-container img.prev-button,
	.navigation-container img.next-button { display: none; }
	.load-button { width: 30px; }
}
