.dustrial-video-slider {
	position: relative;
	overflow: hidden;
}

.dustrial-video-slider--video-mode {
	min-height: 650px;
}

.dustrial-video-slider--video-mode .dustrial-video-slider__track .single-slider {
	padding-top: 275px;
	padding-bottom: 275px;
	background: transparent;
	position: relative;
	z-index: 4;
}

.dustrial-video-slider--image-mode .single-slider {
	padding-top: 275px;
	padding-bottom: 275px;
	background-size: cover;
	background-position: center;
}

.dustrial-video-slider__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.dustrial-video-slider--has-overlay .dustrial-video-slider__bg {
	background-color: #1E222D;
}

.dustrial-video-slider--no-overlay .dustrial-video-slider__bg {
	background-color: #000;
}

.dustrial-video-slider__poster {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.6s ease;
}

.dustrial-video-slider.is-video-ready .dustrial-video-slider__poster {
	opacity: 0;
}

.dustrial-video-slider__video-wrap {
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
	overflow: hidden;
}

.dustrial-video-slider.is-video-ready .dustrial-video-slider__video-wrap {
	opacity: 1;
}

.dustrial-video-slider__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	pointer-events: none;
}

.dustrial-video-slider__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

.dustrial-video-slider__track {
	position: relative;
	z-index: 5;
}

.dustrial-video-slider__track .slick-arrow {
	display: none !important;
}

.dustrial-video-slider--has-nav .dustrial-video-slider__track .slick-arrow {
	display: block !important;
}

.dustrial-video-slider__track .slick-dots {
	list-style: none;
	padding: 0;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100px;
}

.dustrial-video-slider__track .slick-dots li {
	display: inline-block;
}

.dustrial-video-slider__track .slick-dots li button {
	background: #a19fa3;
	border: none;
	text-indent: -9999px;
	height: 10px;
	width: 15px;
	border-radius: 50px;
	margin: 0 4px;
	cursor: pointer;
}

.dustrial-video-slider__track .slick-dots li.slick-active button {
	width: 30px;
	background: #06C0D6;
}

.dustrial-video-slider .slider-content h3 {
	font-size: 60px;
	color: #fff;
	margin-bottom: 0;
	font-weight: 700;
	width: 800px;
	max-width: 90%;
	text-align: left;
}

.dustrial-video-slider .slider-content h3 span {
	font-weight: 300;
}

.dustrial-video-slider .slider-content p {
	font-size: 18px;
	color: #fff;
	font-weight: 300;
	margin-bottom: 0;
	max-width: 760px;
}

.dustrial-video-slider .text-center .slider-content p {
	margin-left: auto;
	margin-right: auto;
}

.dustrial-video-slider .slider-buttons {
	margin-top: 35px;
}

.dustrial-video-slider .slider-buttons a:first-child {
	margin-right: 18px;
}

.dustrial-video-slider__full-trigger {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.2;
	transition: color 0.25s ease;
}

.dustrial-video-slider__full-trigger:hover,
.dustrial-video-slider__full-trigger:focus {
	color: #06C0D6;
	outline: none;
}

.dustrial-video-slider__full-trigger-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #06C0D6;
	color: #fff;
	box-shadow: 0 0 0 8px rgba(6, 192, 214, 0.22);
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dustrial-video-slider__full-trigger:hover .dustrial-video-slider__full-trigger-icon,
.dustrial-video-slider__full-trigger:focus .dustrial-video-slider__full-trigger-icon {
	background: #F25A4D;
	box-shadow: 0 0 0 10px rgba(242, 90, 77, 0.28);
	transform: scale(1.04);
}

.dustrial-video-slider__full-trigger-icon svg {
	margin-left: 2px;
	display: block;
}

.dustrial-video-slider__full-trigger-label {
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	padding-bottom: 2px;
	transition: border-color 0.25s ease;
}

.dustrial-video-slider__full-trigger:hover .dustrial-video-slider__full-trigger-label,
.dustrial-video-slider__full-trigger:focus .dustrial-video-slider__full-trigger-label {
	border-bottom-color: #06C0D6;
}

.dustrial-video-slider__modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 24px 24px;
}

.dustrial-video-slider__modal[hidden] {
	display: none !important;
}

.dustrial-video-slider__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(6, 21, 56, 0.88);
	cursor: pointer;
}

.dustrial-video-slider__modal-dialog {
	position: relative;
	z-index: 1;
	width: min(1400px, 96vw);
	max-height: calc(100vh - 72px);
	background: #000;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.dustrial-video-slider__modal-close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	border: 0;
	padding: 0;
	background: transparent;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.85;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.dustrial-video-slider__modal-close:hover,
.dustrial-video-slider__modal-close:focus {
	opacity: 1;
	color: #06C0D6;
	outline: none;
}

.dustrial-video-slider__modal-media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: calc(100vh - 72px);
	background: #000;
}

.dustrial-video-slider__modal-video {
	display: block;
	width: 100%;
	height: 100%;
	max-height: calc(100vh - 72px);
	object-fit: contain;
	background: #000;
}

html.dustrial-full-video-open,
body.dustrial-full-video-open {
	overflow: hidden !important;
	overscroll-behavior: none;
}

body.dustrial-full-video-open {
	position: fixed;
	width: 100%;
}

@media (max-width: 991px) {
	.dustrial-video-slider--video-mode,
	.dustrial-video-slider--video-mode .dustrial-video-slider__track .single-slider,
	.dustrial-video-slider--image-mode .single-slider {
		min-height: 520px;
		padding-top: 180px;
		padding-bottom: 180px;
	}

	.dustrial-video-slider .slider-content h3 {
		font-size: 42px;
	}
}

@media (max-width: 767px) {
	.dustrial-video-slider--video-mode,
	.dustrial-video-slider--video-mode .dustrial-video-slider__track .single-slider,
	.dustrial-video-slider--image-mode .single-slider {
		min-height: 460px;
		padding-top: 140px;
		padding-bottom: 140px;
	}

	.dustrial-video-slider .slider-content h3 {
		font-size: 32px;
	}

	.dustrial-video-slider .slider-content p {
		font-size: 16px;
	}

	.dustrial-video-slider__full-trigger {
		font-size: 13px;
		gap: 12px;
		margin-top: 22px;
	}

	.dustrial-video-slider__full-trigger-icon {
		width: 44px;
		height: 44px;
		box-shadow: 0 0 0 6px rgba(6, 192, 214, 0.22);
	}

	.dustrial-video-slider__modal {
		padding: 16px;
	}

	.dustrial-video-slider__modal-close {
		top: -40px;
	}
}
