@charset "UTF-8";
/* Fonts */
.colorOrange, a {
	color: #ff6400;
}
.buy {
    border-radius: 0px;
}
/* Basic */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	font-weight: 400;
	color: white;
	background: black;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	height: auto;
}

/* Hero Banner */
.header {
	height: 100vh;
	background: url('../images/KV.jpg') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
	opacity: 0;
	animation: fadeIn 1.5s ease-out forwards;
}
.header h1 {
	font-size: 2.8rem;
	margin-bottom: 1rem;
	animation: fadeUp 1s ease-out forwards;
}
.header h2 {
	font-size: 1.2rem;
	opacity: 0;
	animation: fadeUp 1s 0.3s ease-out forwards;
}
.header p {
	font-size: 1rem;
	opacity: 0;
	animation: fadeUp 1s 0.3s ease-out forwards;
}
.fontGradient {
    display: block;
    position: relative;
    background: linear-gradient(to right, #FFFFFF, #FEB6FF, #8584FF, #6FA4FF, #7AFFFD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}
@keyframes fadeUp {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
.header::after {
	content: '';
    position: absolute;
	left: 0;
	bottom: 0;
    width: 100%;
	height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: -1;
}
.hero-headline {
	position: absolute;
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

/* Sticky Menu */
.nav {
	position: sticky;
	top: 0;
	background-color: rgba(80, 80, 80, 0.5);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
	display: flex;
	justify-content: center;
	/* gap: 2rem; */
	/* padding: 1rem; */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	z-index: 100;
}
.nav a {
	position: relative;
	padding: 10px 25px;
	color: white !important;
	text-decoration: none;
	font-size: 1.2rem;
	color: black;
	font-weight: 600;
	margin: 0 -5px;
	transition: color 0.3s;
	clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
	/* border: 1px solid white; */
}
.nav a:hover {
	color: #00ffff !important;
}
.nav a.active, .btn_buy.active {
	color: black !important;
	background: #00ffff;
}
.btn_buy {
	color: #ff6400;
	background: linear-gradient(270deg, #ff32af, #f9d423, #00ffff, #514a9d);
	background-size: 800% 800%;
	animation: gradientShift 6s ease infinite;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease;
}
.btn_buy:hover {
	/* transform: scale(1.05); */
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.nav a.btn_buy:hover {
	color: black !important;
	background: #00ffff;
}


/* Section */
.features {
	position: relative;
	padding: 50px 0 0 0;
	margin: 0 auto;
}
.features .inner {
	position: relative;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
.features .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-attachment: fixed !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	z-index: -1;
	opacity: .5;
}
.features .bg.hybrid {
	background: url(../images/bg-hybrid.jpg);
}
.features .bg.gamer {
	background: url(../images/bg-gamer.jpg);
}
.features .bg.creator {
	background: url(../images/bg-creator.jpg);
}
.features_h2, .features_h3 {
	text-align: center;
}
.features_h2 {
	font-size: 2.5rem;
	margin-top: 1.5rem;
	/* opacity: 0;
	animation: fadeUp 1s ease-out forwards; */
}
.features_h3 {
	position: relative;
	font-size: 1.2rem;
	padding-bottom: 1rem;
	margin: 0 auto;
	/* opacity: 0;
	animation: fadeUp 1s 0.3s ease-out forwards; */
}
.features_h3::after {
	position: absolute;
	content: '';
	width: 600px;
	max-width: 90%;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(to right, #FFFFFF, #FEB6FF, #8584FF, #6FA4FF, #7AFFFD);
	clip-path: polygon(2px 0%, 100% 0%, calc(100% - 2px) 100%, 0% 100%);
}
.features ol {
	margin-left: 1.5rem
}
.features ol li {
	list-style: square;
	margin-bottom: 1rem;
}
/* .features ol li:last-child {
	margin-bottom: 0px;
} */
.features ol li p {
	color: #b5b5b5;
}
.section {
	position: relative;
	display: flex;
	align-items: center;
	padding: 4rem 2rem;
	gap: 2rem;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}
.section.show {
	opacity: 1;
	transform: translateY(0);
}
.section.reverse {
	flex-direction: row-reverse;
}
/* .slider {
	flex: 1;
	max-width: 800px;
	overflow: hidden;
	position: relative;
} */
.fade-slider {
	flex: 1;
	width: 100%;
	max-width: 800px;
	height: 500px;
	overflow: hidden;
	position: relative;
}
.fade-slider .slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: fadeOver5 15s infinite ease-in-out;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 3s; }
.slide:nth-child(3) { animation-delay: 6s; }
.slide:nth-child(4) { animation-delay: 9s; }
.slide:nth-child(5) { animation-delay: 12s; }

@keyframes fadeOver5 {
	0%, 13.33%   { opacity: 0; }
	20%, 33.33%  { opacity: 1; }
	40%, 100%    { opacity: 0; }
}
.fade-slider.slide-4 .slide {
	animation: fadeOver4 12s infinite ease-in-out;
}

.fade-slider.slide-4 .slide:nth-child(1) { animation-delay: 0s; }
.fade-slider.slide-4 .slide:nth-child(2) { animation-delay: 3s; }
.fade-slider.slide-4 .slide:nth-child(3) { animation-delay: 6s; }
.fade-slider.slide-4 .slide:nth-child(4) { animation-delay: 9s; }

@keyframes fadeOver4 {
	0%, 16.66%   { opacity: 0; }
	25%, 41.66%  { opacity: 1; }
	50%, 100%    { opacity: 0; }
}
.fade-slider.slide-3 .slide {
	animation: fadeOver3 9s infinite ease-in-out;
}

.fade-slider.slide-3 .slide:nth-child(1) { animation-delay: 0s; }
.fade-slider.slide-3 .slide:nth-child(2) { animation-delay: 3s; }
.fade-slider.slide-3 .slide:nth-child(3) { animation-delay: 6s; }

@keyframes fadeOver3 {
	0%, 22%   { opacity: 0; }
	30%, 52%  { opacity: 1; }
	60%, 100% { opacity: 0; }
}

/* .slider img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.slider img.active {
	opacity: 1;
	position: relative;
} */
.text {
	flex: 1;
}
.text h2, .headingC, .ModelsNameA {
	font-size: 1.45rem;
	line-height: 1.6rem;
	font-weight: 600;
	margin-bottom: .5rem;
}
.text h2 {
	margin-bottom: 1rem;
}
.text h3, .BuyInfo h3 {
	font-size: 1.2rem;
	font-weight: 600;
}
.text a, .GiMATE_more {
	font-size: 1rem;
	font-weight: 600;
	display: inline-block;
	color: black;
	background: #00ffff;
	padding: 5px 20px;
	clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
	transition: all 0.25s;
}
.text a i, .GiMATE_more i {
	position: relative;
	display: inline-block;
	content: '';
	width: 9px;
	height: 16px;
	top: 3px;
	margin-left: 8px;
	background: url(../images/icon-arrow.svg) center / contain no-repeat;
	transition: all 0.25s;
}
.text a:hover, .GiMATE_more:hover {
	font-size: 1rem;
	font-weight: 600;
	border: none;
	color: white;
	background: #ff6400;
}
.text a:hover i, .GiMATE_more:hover i {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7494%) hue-rotate(298deg) brightness(103%) contrast(102%);
}
.feature_format_inner {
	padding: 0;
	margin: 0 auto;
}
/* models */
.models_Title {
	font-size: 2rem;
}
.ModelsPhoto img {
	width: 100%;
	max-width: 200px;
}
.Models ol li {
	margin-bottom: 0;
}
@media (max-width: 1024px) {
	.Models .more, .Models .buy {
		margin: 5px;
	}
}
@media (max-width: 991px) {
	.features .bg {
		background-attachment: scroll !important;
	}
}
@media (max-width: 768px) {
	.section, .section.reverse {
		flex-direction: column;
	}
}
@media (max-width: 767px) {
	.fade-slider {
		flex: none;
		min-width: 300px;
		height: 50vw;
	}
	.section {
		padding: 2rem 2%;
	}
	.header {
		min-height: 500px;
		height: 50vh;
	}
	.header::after {
		height: 100%;
		opacity: .7;
		z-index: 0;
	}
}
@media (max-width: 430px) {
	.nav a {
		font-size: 13px;
		line-height: 15px;
	}
	.header h1 {
		font-size: 2.2rem;
		line-height: 3rem;
	}
	.features_h2 {
		font-size: 2rem;
		margin-top: 2.5rem;
	}
	.Models ol li {
		font-size: 14px;
		line-height: 22px;
	}
}
