.elementor-widget-developerlog_hero_slider,
.elementor-widget-developerlog_hero_slider > .elementor-widget-container {
	width: 100%;
	max-width: 100%;
}

.dlhs-slider,
.dlhs-slider *,
.dlhs-slider *::before,
.dlhs-slider *::after {
	box-sizing: border-box;
}

.dlhs-slider {
	--dlhs-height: 600px;
	--dlhs-x: 50%;
	--dlhs-y: 50%;
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	background: #fff;
	isolation: isolate;
}

.dlhs-viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
}

.dlhs-track {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	margin: 0;
	padding: 0;
	will-change: transform;
}

.dlhs-slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.dlhs-link,
.dlhs-image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

.dlhs-image img {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	user-select: none;
	-webkit-user-drag: none;
}

.dlhs-custom-height,
.dlhs-custom-height .dlhs-viewport,
.dlhs-custom-height .dlhs-track,
.dlhs-custom-height .dlhs-slide,
.dlhs-custom-height .dlhs-link,
.dlhs-custom-height .dlhs-image {
	height: var(--dlhs-height);
}

.dlhs-custom-height .dlhs-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--dlhs-x) var(--dlhs-y);
}

/* Fade mode */
.dlhs-fade .dlhs-track {
	display: block;
	transform: none !important;
}

.dlhs-fade .dlhs-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
}

.dlhs-fade .dlhs-slide:first-child {
	position: relative;
}

.dlhs-fade .dlhs-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

/* Arrows */
.dlhs-slider .dlhs-arrow {
	position: absolute !important;
	top: 50% !important;
	z-index: 20 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 50px;
	height: 50px;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
	border: 1px solid rgba(0,0,0,.12) !important;
	border-radius: 50%;
	background: #fff;
	color: #111;
	box-shadow: 0 7px 24px rgba(0,0,0,.14);
	opacity: 1 !important;
	visibility: visible !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	line-height: 1 !important;
	font-size: 0 !important;
	transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.dlhs-slider .dlhs-arrow:hover {
	background: #111;
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}

.dlhs-slider .dlhs-arrow svg {
	display: block !important;
	width: 22px;
	height: 22px;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.dlhs-prev { left: 22px; }
.dlhs-next { right: 22px; }

/* Bottom dots */
.dlhs-slider .dlhs-dots {
	position: absolute !important;
	left: 50% !important;
	bottom: 20px;
	z-index: 21 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateX(-50%);
	opacity: 1 !important;
	visibility: visible !important;
}

.dlhs-slider .dlhs-dot {
	display: block !important;
	flex: 0 0 auto !important;
	width: 9px;
	height: 9px;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px;
	background: rgba(255,255,255,.60);
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	opacity: 1 !important;
	visibility: visible !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transition: width .25s ease, transform .25s ease, background-color .25s ease;
}

.dlhs-slider .dlhs-dot.is-active {
	width: 28px;
	background: #fff;
}

.dlhs-slider .dlhs-dot:hover {
	transform: scale(1.12);
}

.dlhs-empty {
	padding: 30px;
	text-align: center;
	background: #f4f4f4;
	border: 1px dashed #bbb;
}

@media (max-width: 1024px) {
	.dlhs-slider { --dlhs-height: 460px; }
	.dlhs-slider .dlhs-arrow { width: 44px; height: 44px; }
}

@media (max-width: 767px) {
	.dlhs-slider { --dlhs-height: 420px; }
	.dlhs-slider .dlhs-arrow { width: 38px; height: 38px; }
	.dlhs-prev { left: 10px; }
	.dlhs-next { right: 10px; }
	.dlhs-slider .dlhs-dots { bottom: 12px; }
}
