/* Nexora Dynamic Project Slider */

.nexora-project-showcase *,
.nexora-project-showcase *::before,
.nexora-project-showcase *::after {
	box-sizing: border-box;
}

.nexora-project-showcase {
	--nexora-height: 600px;
	--nexora-blue: #243175;
	--nexora-yellow: #ffc94a;

	position: relative;
	width: 100%;
	overflow: visible;
}

.nexora-project-svg {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.nexora-project-viewport {
	width: 100%;
	height: var(--nexora-height);
	overflow: hidden;
}

.nexora-project-track {
	display: flex;
	height: 100%;
	transition: transform .9s cubic-bezier(.22,.75,.25,1);
	will-change: transform;
}

.nexora-project-slide {
	position: relative;
	flex: 0 0 calc(100% / 3);
	height: var(--nexora-height);
	overflow: hidden;
	text-decoration: none !important;
	isolation: isolate;
	color: #ffffff;
	background-image: var(--nexora-project-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.nexora-project-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--nexora-project-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.02);
	transition: transform .9s cubic-bezier(.22,.75,.25,1);
	z-index: 1;
}

.nexora-project-slide + .nexora-project-slide {
	border-left: 6px solid rgba(255,255,255,.95);
}

.nexora-project-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(
			90deg,
			rgba(0,0,0,.72) 0%,
			rgba(0,0,0,.56) 48%,
			rgba(0,0,0,.38) 100%
		);
	transition: background .4s ease;
}

.nexora-project-slide.active .nexora-project-overlay,
.nexora-project-slide:hover .nexora-project-overlay {
	background:
		linear-gradient(
			90deg,
			rgba(0,0,0,.84) 0%,
			rgba(0,0,0,.68) 48%,
			rgba(0,0,0,.48) 100%
		);
}

.nexora-project-slide.active::before,
.nexora-project-slide:hover::before {
	transform: scale(1.08);
}

.nexora-project-content {
	position: absolute;
	z-index: 3;
	top: 102px;
	left: 34px;
	right: 28px;
	display: block;
}

.nexora-project-content::before {
	content: "";
	position: absolute;
	left: -34px;
	top: -16px;
	width: 8px;
	height: 52px;
	background: var(--nexora-yellow);
}

.nexora-project-content h3 {
	margin: 0;
	color: #ffffff;
	font-family: inherit;
	font-size: clamp(27px,2vw,31px);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -.03em;
}

.nexora-project-content p {
	max-width: 430px;
	margin: 22px 0 0;
	color: #ffffff;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.72;
	font-weight: 400;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .45s ease, transform .45s ease;
}

.nexora-project-slide.active p,
.nexora-project-slide:hover p {
	opacity: 1;
	transform: translateY(0);
}

.nexora-project-controls {
	position: relative;
	z-index: 20;
	margin-top: 22px;
	padding-bottom: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
}

.nexora-project-prev,
.nexora-project-next {
	border: 0 !important;
	background: transparent !important;
	color: #8d91a0 !important;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	padding: 0 !important;
	line-height: 1 !important;
	box-shadow: none !important;
	outline: none !important;
}

.nexora-project-prev:hover,
.nexora-project-next:hover,
.nexora-project-prev:focus,
.nexora-project-next:focus {
	background: transparent !important;
	color: var(--nexora-blue) !important;
	box-shadow: none !important;
}

.nexora-project-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	min-width: 86px;
}

.nexora-project-dot {
	width: 8px !important;
	height: 8px !important;
	min-width: 8px !important;
	min-height: 8px !important;
	padding: 0 !important;
	border-radius: 50% !important;
	border: 0 !important;
	background: #d8dbe5 !important;
	cursor: pointer;
	box-shadow: none !important;
	outline: none !important;
}

.nexora-project-dot.active {
	width: 15px !important;
	height: 15px !important;
	min-width: 15px !important;
	min-height: 15px !important;
	background: var(--nexora-blue) !important;
	box-shadow: 0 0 0 8px rgba(36,49,117,.14) !important;
}

@media (max-width: 1024px) {
	.nexora-project-showcase {
		--nexora-height: 520px;
	}

	.nexora-project-slide {
		flex: 0 0 50%;
	}

	.nexora-project-content {
		top: 85px;
	}

	.nexora-project-content h3 {
		font-size: 25px;
	}
}

@media (max-width: 767px) {
	.nexora-project-showcase {
		--nexora-height: 420px;
	}

	.nexora-project-slide {
		flex: 0 0 100%;
	}

	.nexora-project-slide + .nexora-project-slide {
		border-left: 0;
	}

	.nexora-project-content {
		top: 64px;
		left: 28px;
		right: 22px;
	}

	.nexora-project-content::before {
		left: -28px;
		top: -10px;
		width: 7px;
		height: 44px;
	}

	.nexora-project-content h3 {
		font-size: 24px;
	}

	.nexora-project-content p {
		opacity: 1;
		transform: none;
		font-size: 14px;
		line-height: 1.6;
	}

	.nexora-project-controls {
		margin-top: 18px;
		gap: 14px;
	}

	.nexora-project-prev,
	.nexora-project-next {
		font-size: 14px;
	}
}