.mit-slider {
	position: relative;
	overflow: hidden;
	background: #0b1220;
	color: #fff;
}
.mit-slider--page {
	height: var(--mit-slider-height, 620px);
	min-height: 320px;
}
.mit-slider--footer {
	height: var(--mit-slider-height, 160px);
	min-height: 110px;
}
.mit-slider__track,
.mit-slider__slide {
	height: 100%;
}
.mit-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .7s ease, visibility .7s ease;
}
.mit-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}
.mit-slider__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(.92) contrast(1.05);
}
.mit-slider--page .mit-slider__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,16,28,.78) 0%, rgba(10,16,28,.35) 48%, rgba(10,16,28,.15) 100%);
	display: flex;
	align-items: center;
	z-index: 2;
}
.mit-slider__copy {
	width: min(760px, calc(100% - 80px));
	margin-left: clamp(24px, 8vw, 96px);
}
.mit-slider__title {
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(2rem, 5vw, 4.2rem);
	font-weight: 600;
	letter-spacing: .02em;
	line-height: .95;
	margin: 0 0 14px;
	text-transform: uppercase;
}
.mit-slider__subtitle {
	font-size: 1.05rem;
	line-height: 1.55;
	max-width: 42rem;
	color: #d7dde5;
	margin: 0 0 22px;
}
.mit-slider__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1b2a4a;
	color: #fff;
	text-decoration: none;
	border: 1px solid #8b929a;
	padding: 12px 20px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .78rem;
	font-weight: 600;
}
.mit-slider__btn:hover { background: #0b1220; color: #fff; }
.mit-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255,255,255,.35);
	background: rgba(11,18,32,.45);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}
.mit-slider__nav--prev { left: 16px; }
.mit-slider__nav--next { right: 16px; }
.mit-slider__nav:hover { background: rgba(11,18,32,.8); }
.mit-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 8px;
}
.mit-slider__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,.4);
	cursor: pointer;
	padding: 0;
}
.mit-slider__dot.is-active { background: #fff; }
.mit-slider--footer .mit-slider__nav { width: 32px; height: 32px; font-size: 20px; }
.mit-slider--footer .mit-slider__dots { bottom: 8px; }
.mit-footer-slider-wrap { border-top: 1px solid #2a3340; }
@media (max-width: 700px) {
	.mit-slider--page { height: 420px; }
	.mit-slider__copy { margin-left: 20px; width: calc(100% - 40px); }
	.mit-slider__nav { display: none; }
}
