/* Default styles for all screen sizes */
.slider {
	height: 100vh;
	margin-top: -50px;
	position: relative;
}
.slider .list .item {
	position: absolute;
	inset: 0 0 0 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.5s;
}
.slider .list .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(2);
	transition: transform 10s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.slider .list .item::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
}
.slider .list .item .content {
	position: absolute;
	left: 10%;
	top: 25%;
	width: 50%;
	max-width: 80%;
	z-index: 1;
}
.slider .list .item .content .box {
	z-index: 8;
	background-color: rgba(0, 0, 0, 0.41);
	color: rgb(255, 255, 255);
	width: 600px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(20px);
	filter: none;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	transform-origin: 50% 50% 0px;
	transform: skew(-10deg) scale(1, 0.9848);
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 40px;
	margin-top: 40px;
}
.slider .list .item .content .box p {
	z-index: 9;
	font-family: "Rajdhani";
	color: rgb(255, 255, 255);
	text-align: left;
	line-height: 30px;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 1px;
	font-style: normal !important;
}
.slider .action {
	position: relative;
	display: block;
	z-index: 99;
	right: -400px;
	bottom: 20px;
}
.slider-btn,
a.slider-btn {
	background-color: rgb(211, 112, 34);
	font-family: "Rajdhani";
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	text-decoration: none;
	white-space: nowrap;
	text-align: left;
	letter-spacing: 0px;
	font-weight: 700;
	font-size: 20px;
	clip-path: polygon(0% 100%, 6% 0%, 100% 0%, 94% 100%);
	padding: 15px 35px;
	transform-origin: 50% 50% 0px;
	transform: scale(1);
}
.slider-btn:hover,
a.slider-btn:hover {
	background-color: rgb(2, 95, 173);
	color: rgb(211, 112, 34);
	transform: scale(2);
	transition: transform 10s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.slider .list .item .content h2 {
	font-family: "Rajdhani";
	text-transform: uppercase;
	font-style: italic;
	color: rgb(2, 95, 173);
	text-decoration: none;
	white-space: normal;
	line-height: 26px;
	letter-spacing: 1px;
	font-weight: 800;
	font-size: 28px;
	margin: 0;
}
.slider .list .item .content h1 {
	font-family: "Orbitron";
	font-style: italic;
	color: rgb(211, 112, 34);
	white-space: nowrap;
	text-align: left;
	line-height: 80px;
	text-shadow: rgba(0, 0, 0, 0.5) 0px 5px 0px;
	letter-spacing: -3px;
	font-weight: 600;
	font-size: 80px;
	visibility: visible;
	margin: 0;
}
.slider .list .item.active {
	opacity: 1;
	z-index: 10;
}
.slider .list .item.active img {
	transform: scale(1);
}
@keyframes showContent {
	to {
		transform: translateY(0);
		filter: blur(0);
		opacity: 1;
	}
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
	transform: translateY(30px);
	filter: blur(20px);
	opacity: 0;
	animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}
.slider .list .item.active h2 {
	animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3) {
	animation-duration: 1.3s;
}
.arrows {
	position: absolute;
	bottom: 10%;
	right: 50px;
	z-index: 100;
}
.arrows button {
	background-color: #eee5;
	border: none;
	font-family: monospace;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	font-size: x-large;
	color: #eee;
	transition: 0.5s;
}
.arrows button:hover {
	background-color: #eee;
	color: black;
}
.main-logo {
	margin-top: 20px;
	max-width: 80px;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
	.slider {
		height: 70vh; /* Reduce height for mobile */
		margin-top: 0; /* Remove negative margin */
	}

	.slider .list .item .content {
		left: 5%; /* Adjust positioning */
		top: 15%; /* Adjust positioning */
		width: 90%; /* Full width for mobile */
	}

	.slider .list .item .content .box {
		width: 100%; /* Full width for mobile */
		padding: 20px; /* Reduce padding */
		margin-top: 20px; /* Reduce margin */
	}

	.slider .list .item .content h1 {
		font-size: 22px; /* Smaller font size for mobile */
		line-height: 30px; /* Adjust line height */
	}

	.slider .list .item .content h2 {
		font-size: 20px; /* Smaller font size for mobile */
		line-height: 24px; /* Adjust line height */
	}

	.slider .list .item .content .box p {
		font-size: 12px; /* Smaller font size for mobile */
		line-height: 18px; /* Adjust line height */
	}

	.slider .action {
		right: 0; /* Adjust positioning */
		bottom: 10px; /* Adjust positioning */
		text-align: center; /* Center align button */
	}

	.slider-btn,
	a.slider-btn {
		font-size: 16px; /* Smaller font size for mobile */
		padding: 10px 20px; /* Adjust padding */
	}

	.arrows {
		bottom: 5%; /* Adjust positioning */
		right: 20px; /* Adjust positioning */
	}

	.arrows button {
		width: 30px; /* Smaller button size */
		height: 30px; /* Smaller button size */
		font-size: large; /* Smaller font size */
	}

	.main-logo {
		max-width: 60px; /* Smaller logo size */
	}
}
