@charset "UTF-8";
/* ---------- Fonts (TTF only) ---------- */
/* @font-face {
	font-family: "Noto Sans";
	src: url("https://static.gigabyte.com/Other/fonts/Noto_Sans/noto-sans-v39-latin-regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Noto Sans";
	src: url("https://static.gigabyte.com/Other/fonts/Noto_Sans/noto-sans-v39-latin-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
} */
/* 繁中 CJK */
@font-face {
	font-family: "Noto Sans TC";
	src: url("https://static.gigabyte.com/Other/fonts/Noto_Sans_TC/noto-sans-tc-v26-latin_chinese-traditional-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Noto Sans TC";
	src: url("https://static.gigabyte.com/Other/fonts/Noto_Sans_TC/noto-sans-tc-v26-latin_chinese-traditional-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Noto Sans TC";
	src: url("https://static.gigabyte.com/Other/fonts/Noto_Sans_TC/noto-sans-tc-v26-latin_chinese-traditional-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* 英文字型 */
@font-face {
	font-family: "Orbitron";
	src: url('https://static.gigabyte.com/Other/fonts/fontbundle/s/orbitron/v34/yMJRMIlzdpvBhQQL_Qq7dy0.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
/* ---------- subMenu ---------- */
.subMenu {
	display: flex;
	gap: 40px;
	position: relative;
}
.menu-item {
	position: relative;
	display: inline-block;
}
.menu-item>.btns {
	display: inline-block;
	padding: 10px 0;
	font-weight: 700;
	text-decoration: none;
}
.submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 10px);
	min-width: 220px;
	padding: 10px 0;
	background: rgba(99, 99, 99, 0.8);
	backdrop-filter: blur(6px);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	pointer-events: none;
	z-index: 50;
	text-align: center;
}
.menu-item:hover .submenu,
.menu-item:focus-within .submenu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}
#subMenu .submenu.is-open {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}
.submenu li a {
	display: block;
	padding: 10px;
	font-size: .9rem;
	text-decoration: none;
	white-space: nowrap;
}
.submenu li a:hover {
	background: linear-gradient(135deg, #46E6E6 0%, #3333CC 100%);
	/* color: #000; */
}
#subMenu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	background-color: rgba(95, 95, 95, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
	padding: 5px 0;
	transition: transform 0.35s ease, opacity 0.35s ease;
	z-index: 90;
}
#subMenu.is-hidden {
	transform: translateY(-100%);
	opacity: 0;
}
#subMenu.is-visible {
	transform: translateY(0);
	opacity: 1;
}
/* Anchor offset for fixed submenu */
#X3D,#XTREMEAITOP,#WOOD,#AIBOX,#5090INFINITY,#GiMATE,#AIPCs,#HyperNits,#OLED {
	scroll-margin-top: 140px;
}
/* SubMenu */
.learnmore-dropdown {
    position: relative;
}
.learnmore-dropdown .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    text-align: center;
}
.learnmore-dropdown:hover .submenu {
    display: block;
}

/* ---------- Stacks & Defaults ---------- */
:root{
	/* 一組好用的無襯線字體堆疊：英文優先 Noto Sans，中文落到 Noto Sans TC / 系統字 */
	--ff-sans: "Noto Sans TC","Microsoft JhengHei","微軟正黑體",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
}

.mainContent{
	font-family:var(--ff-sans);
}

body{
	font-weight:400;
	color: white;
	background: black;
	overflow-x: hidden;
}
.clear:after {
	content:'';
	display:table;
	clear:both
}
.dropShadow {
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.5),
				-2px -2px 10px rgba(24, 76, 165, 0.5),
				4px 4px 15px rgba(57, 57, 230, 0.4); */
	filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.5))
			drop-shadow(-2px -2px 10px rgba(0,0,0,0.5))
			drop-shadow(4px 4px 15px rgba(0,0,0,0.4));
}
img {
	max-width: 100%;
	height: auto;
}

/*------------- Scrollbar -------------*/
::-webkit-scrollbar{width:5px;height:5px}
::-webkit-scrollbar-button{width:0;height:0}
::-webkit-scrollbar-thumb{background: #555555;border:0 none #fff}
::-webkit-scrollbar-thumb:hover{background:gray}
::-webkit-scrollbar-thumb:active{background:gray}
::-webkit-scrollbar-track{background:#000;border:0 none #fff;border-radius:50px}
::-webkit-scrollbar-track:hover{background:#000}
::-webkit-scrollbar-track:active{background:#333}
::-webkit-scrollbar-corner{background:transparent}

/*------------- Video -------------*/
#player {
	min-width: 120%;
	min-height: 120%;
}
.player-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}
.cover-gradient-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: transparent;
}
.cover-watermark {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 120px;
	height: 60px;
	background: transparent;
}

/*------------- Fonts -------------*/
/* .mainContent>* {
	font-family: 'Noto Sans Regular', 'Noto Sans TC Regular', "微軟正黑體", Microsoft JhengHei !important;
	font-weight: 400;
} */
.fontOrbitron{
  font-family: "Orbitron";
  letter-spacing: .25em;         /* 取代固定 2px，更具彈性 */
}
.mainContent a {
	color: white;
	text-decoration: none;
}
.mainContent h3 {
    margin-block-start: 0;
    margin-block-end: 0;
}
.headingA {
	font-size: 3rem;
	line-height: 4rem;
	font-weight: 600;
	letter-spacing: 2px;
}
.headingA.fontOrbitron {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 10px;
}
.headingA.fontOrbitron i {
	position: absolute;
	display: inline-block;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
}
.headingA.fontOrbitron i::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right,  #00A3FF 2%,#FF32AF 100%);
}
.headingB {
	position: relative;
	display: inline-block;
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: bold;
	letter-spacing: 5px;
	padding-bottom: 30px;
	/* margin-bottom: 1.5rem; */
}
.headingC {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 600;
}
.headingD {
	display: inline-block;
	font-size: .9rem;
	line-height: 1rem;
	font-weight: 600;
	color: #00FFFF;
	padding: 5px 16px;
	border-radius: 5px;
	border: 1px solid #00FFFF;
	margin-bottom: .5rem;
}
.wordingA {
	font-size: .9rem;
	line-height: 1.65rem;
	font-weight: 400;
}
/* .colorGradientA {
  background: linear-gradient(135deg, #00FFFF 0%, #ffbbe4 50%, #FF32AF 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 16px;
  animation: gradientDiagonal 6s ease-in-out infinite alternate;
}
@keyframes gradientDiagonal {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
} */
.colorGradientA{
  background: linear-gradient(45deg, #00FFFF 0%, #FFF 50%, #00FFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  --angle: 45deg;
  --s1: 0%;
  --s2: 80%;
  --s3: 160%;
  --shift: 0%;
  background-image: linear-gradient(
    var(--angle),
    #00FFFF calc(var(--s1) + var(--shift)),
    #FFF  calc(var(--s2) + var(--shift)),
    #00FFFF  calc(var(--s3) + var(--shift))
  );
}
.colorWhite {
	color: white;
}
.colorBlue {
	color: #46E6E6;
}
.colorGray {
	color: #d1d1d1;
}
.colorOrange {
	color: #ff6400;
}
.textLeft {
	text-align: left !important
}
.textRight {
	text-align: right !important
}
.textCenter {
	text-align: center !important
}

/*------------- Section -------------*/
section, .section .inner {
	position: relative;
}
.displayFlex {
	display: flex;
	justify-content: center;
	align-items: center;
}
.directionColumn {
	flex-direction: column;
}
.directionRow {
	flex-direction: row;
}
.section {
	width: 100%;
	overflow: hidden;
	z-index: 1;
}
.section .inner {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

/*------------- KV -------------*/
.hero-section, .hero-section .first, .hero-section .second, .hero-section .video-container {
	will-change: transform, opacity;
}
.hero-section .pin-spacer {
	position: absolute;
	left: 0;
	top: 0;
}
.hero-section {
	position: relative;
	min-height: 1080px;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: none;
}
.video-container {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
	will-change: opacity;
	transform: translateZ(0);
}
.hero-section .video-container {
	position: absolute;
	top: 0;
	left: 0;
}
.bgvideo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-headline {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.second {
	opacity: 0;
}
.hero_headline_1 {
	font-family: var(--ff-sans);
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 2rem;
	letter-spacing: .125em;
	margin-bottom: .5rem;
}
.hero_headline_2 {
	font-family: var(--ff-sans);
	font-weight: 700;
	font-size: 4.7rem;
	line-height: 5.2rem;
	letter-spacing: .125em;
	margin-bottom: 1rem;
}
.hero_headline_3 {
	font-family: var(--ff-sans);
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 2rem;
	letter-spacing: .125em;
	margin-bottom: 1rem;
}
.intro {
	font-size: 1.15rem;
	line-height: 2rem;
	font-weight: 400;
	letter-spacing: 1px;
	width: 96%;
	max-width: 1000px;
	margin: 0 auto 2rem auto;
}
.launchVideo, .feature_Video {
	position: relative;
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 150px auto;
	overflow: hidden;
}
.launchVideo h3 {
	font-size: 1.15rem;
	line-height: 1.15rem;
	font-weight: 400;
	position: absolute;
	left: 50%;
	top: 50%;
	padding: 10px 15px 10px 25px;
	transform: translate(-50%, -50%);
	z-index: 1;
	overflow: hidden;
}
.launchVideo h3::before, .launchVideo h3::after {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.launchVideo h3::before {
    padding: 2px;
    background: linear-gradient(135deg, #46E6E6, #3333CC);
    -webkit-mask: linear-gradient(black 0 0) content-box, linear-gradient(black 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}
.launchVideo h3::after {
    background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
	z-index: -2;
}
.launchVideo h3 i {
	position: relative;
	left: -5px;
	margin-right: 10px;
}
.launchVideo h3 i::after, .feature_Video i, .feature_Video i::before, .feature_Video i::after {
	position: absolute;
	content: '';
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
}
.launchVideo h3 i::after, .feature_Video i::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 1);
	z-index: 2;
}
.feature_Video i::before {
    width: 50px;
    height: 50px;
	border-radius: 99%;
	background: rgba(0, 0, 0, .2);
	backdrop-filter: blur(10px);
    border: 2px solid white;
	z-index: 1;
}
.feature_Video::after {
	border-width: 10px 0 10px 18px;
	transform: translate(-40%, -50%);
}
.first {
  position: relative;
  padding-bottom: 30px;
  width: 100%;
}
.arrow_down {
  position: absolute;
  display: inline-block;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30px;
  height: 30px;
  background: white;
  clip-path: polygon(4px 50%, 50% calc(100% - 4px), calc(100% - 4px) 50%, 100% 50%, 50% 100%, 0% 50%);
  animation: floating 1.5s infinite;
  z-index: 88;
}
@keyframes floating {
	0% {
		transform: translate(-50%, -10%);
	}
	50% {
		transform: translate(-50%, 10%);
	}
	100% {
		transform: translate(-50%, -10%);
	}
}

/*------------- New products -------------*/
.coverIMG {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 110%;
	max-width: none;
	max-height: 100%;
	transform: translate(-50% , -50%);
}
.fade-slider {
	position: absolute;
	width: 110%;
	height: 110%;
	top: 50%;
	left: 50%;
	flex: 1;
	overflow: hidden;
	transform: translate(-50%, -50%);
}
.fade-slider .slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: fadeOver2 6s infinite ease-in-out;
}
.fade-slider .slide:nth-child(2) { animation-delay: 3s;}
.fade-slider .slide:nth-child(3) { animation-delay: 6s; }
@keyframes fadeOver2 {
  0%, 100%   { opacity: 0; }
  10%, 45%   { opacity: 1; }
  55%, 90%   { 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; }
}
.fade-slider.slide-4 .slide {
	animation: fadeOver4 12s infinite ease-in-out;
}
.fade-slider.slide-4 .slide:first-child { animation-delay: -4s; }
.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; }
.fade-slider.slide-5 .slide {
	animation: fadeOver5 15s infinite ease-in-out;
}
.fade-slider.slide-5 .slide:first-child { animation-delay: -5s; }
.fade-slider.slide-5 .slide:nth-child(1) { animation-delay: 0s; }
.fade-slider.slide-5 .slide:nth-child(2) { animation-delay: 3s; }
.fade-slider.slide-5 .slide:nth-child(3) { animation-delay: 6s; }
.fade-slider.slide-5 .slide:nth-child(4) { animation-delay: 9s; }
.fade-slider.slide-5 .slide:nth-child(5) { animation-delay: 12s; }
@keyframes fadeOver4 {
	0%, 18%   { opacity: 0; }
	25%, 43%  { opacity: 1; }
	50%, 100% { opacity: 0; }
}
@keyframes fadeOver5 {
	0%, 15%   { opacity: 0; }
	22%, 38%  { opacity: 1; }
	45%, 100% { opacity: 0; }
}
.newproducts {
	padding: 120px 0 0 0;
}
.newproducts-grid {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	justify-items: center;
}
.newproducts-item {
	position: relative;
	width: 40%;
	height: 300px;
	margin: 10px;
	text-align: center;
	overflow: hidden;
	border: 1px solid #333;
}
.newproducts-item::after, .slick-slider-features .slide::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%);
	z-index: 1;
}
.newproducts-text {
	padding: 0 20px;
	letter-spacing: 1px;
	color: white;
	position: absolute;
	bottom: 20px;
	z-index: 2;
}
.newproducts-item h3, .edge-text h3, .edge-models h2 {
	position: relative;
	font-size: 1.3rem;
	line-height: 1.4rem;
	font-weight: 500;
	letter-spacing: .05rem;
	margin-bottom: .5rem;
}
.newproducts-item ul {
	margin-left: 1rem;
}
.newproducts-item ul li {
	font-size: 13px;
	line-height: 20px;
	list-style: square;
	color: #bdbdbd;
	font-weight: 400;
}
.edge-text h3 span {
	position: absolute;
	left: 0;
	top: -27px;
	font-size: 12px;
	line-height: 15px;
	color: #00FFFF;
	padding: 3px 8px;
	border: 1px solid #00FFFF;
	border-radius: 5px;
}
/*------------- Background -------------*/
.bgIMG, .feature_bgIMG {
	position: absolute;
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: -1;
}
.bgIMG img {
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: 100%;
	width: auto;
	max-width: none;
	height: auto;
	max-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: -2;
}
.break {
	padding: 100px 0 0 0;
}

/*------------- 橫向features -------------*/
.arrow {
  background: #46E6E6;
  position: absolute;
  right: 0;
  top: 55%;
  cursor: pointer;
  width: 35px;
  height: 35px;
  clip-path: polygon(100% 3px, 3px 3px, 3px 100%, 0 100%, 0 0, 100% 0);
  transform: translate(-50%, -50%) rotate(135deg);
  z-index: 7;
}
.arrow::before {
  content: '';
  position: absolute;
  inset: -18px;            /* 感應擴張距離 */
  background: transparent;
}
.arrow.mb, .arrow.vga {
	display: none;
}
.h-section {
	min-height: 550px;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.h-section .headingC {
	position: relative;
	bottom: -80px;
}
.h-section_intro {
	position: relative;
	bottom: -90px;
}
.h-pin {
	width: 100% !important;
	min-height: 400px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 120px 0; /* leave space above when pinned */
	box-sizing: border-box;
}
.h-track {
	width: 100%;
	display: inline-flex;
	gap: 24px;
	will-change: transform;
	padding: 0 6vw;
	/* border: 1px solid; */
}
.h-panel {
	width: auto;
	min-width: fit-content;
	max-width: 100%;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 32px;
}
.h-panel img, .h-panel .video-container, .edge-item .video-container {
	max-height: 300px;
	width: auto;
	height: auto;
	flex-shrink: 0;
	opacity: 1 !important;
}
.h-panel .video-container, .edge-item .video-container {
	position: relative;
	width: 500px;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	overflow: hidden;
}
.h-panel .video-container video, .edge-item .video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.h-panel .edge-text {
	max-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}
@media (max-width: 991px){
	.h-pin{
		justify-content: flex-start;
		padding-top: 80px;
	}
	.h-track {
		gap: 16px;
		padding: 0 5vw;
	}
	.h-panel {
		min-width: 86vw;
		width: 86vw;
		padding: 20px;
	}
}
@media (max-width: 768px) {
	.h-panel {
		flex-direction: column;
		align-items: center;
	}
	.h-panel img {
		max-height: 240px;
	}
	.h-panel .edge-text {
		max-width: 100%;
		align-items: center;
		text-align: center;
	}
	.edge-text h3 span {
		left: 50%;
		transform: translateX(-50%);
	}
	#GiMATE .textLeft, #MONITOR .textLeft {
		text-align: center !important;
	}
}
/*------------- formate -------------*/

.edge-item {
	width: 96%;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	padding: 1rem;
	margin: 0 auto 3rem auto;
	color: white;
	flex-wrap: wrap;
}
.edge-item, .h-panel {
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, .3);
}
#GiMATE .edge-item, #MONITOR .edge-item {
	flex-direction: column;
	max-width: 350px;
	min-height: 380px;
}
#MONITOR .edge-item {
	flex-direction: column;
	max-width: 450px;
	min-height: 450px;
}
#GiMATE .edge-text, #MONITOR .edge-text {
    flex: 1 1 auto;
}
.border-gradient {
	border: 1px solid;
	border-image-slice: 1;
	border-width: 1px;
	border-image-source: linear-gradient(135deg, #248282, #983873);
}
.edge-img {
	flex: 1 1 300px;
}
#GiMATE .edge-img, #MONITOR .edge-img {
	flex: 1 1 auto;
	overflow: hidden;
	max-height: 196px;
}
#GiMATE .edge-img, #MONITOR .edge-img {
	flex: 1 1 auto;
}
.edge-img img {
	width: 100%;
}
.edge-text {
	flex: 1 1 400px;
}
.edge-text h2, .GiMATE_content h2 {
	font-size: 1.85rem;
	line-height: 2rem;
	margin-bottom: 0.55rem;
	font-weight: 700;
	letter-spacing: .125rem;
}
#GiMATE .edge-text h2, #MONITOR .edge-text h2 {
	font-size: 1.35rem;
	line-height: 1.55rem;
	letter-spacing: 1px;
}
#MONITOR .edge-text p {
	margin-bottom: 20px;
}
.edge-models h3 {
	font-size: 1.15rem;
	line-height: 1.5rem;
	font-weight: 600;
	margin-bottom: .5rem;
}
.edge-text p, .edge-text ul li, .GiMATE_content p, .h-section_intro {
	font-size: 0.95rem;
	line-height: 1.5;
	font-weight: 400;
	color: #bdbdbd;
}
.horizontal_card {
	max-width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.edge-text p {
	margin-bottom: .5rem;
}
.h-section .edge-text p {
	margin-bottom: 1rem;
}
.edge-text ul {
	margin-left: 1rem;
	margin-bottom: 1rem;
}
.edge-text ul li {
	list-style: square;
}
.submenu li {
	list-style: none !important;
}
.edge-text strong {
	font-weight: 600;
	color: white;
}
.ComingSoon, p.ComingSoon {
	display: inline-block;
	font-size: 1rem;
	line-height: 1.5;
	background-color: #595959;
	color: #a6a6a6;
	font-weight: 400;
	border: none;
	padding: 0.3rem 1.2rem;
	cursor: not-allowed;
}
.colorBlack .ComingSoon, .colorBlack .edge-text p.ComingSoon {
	color: #dadada;
	background-color: #a0a0a0;
}
.LearnMore {
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
	border: none;
	border-radius: 3px;
	padding: 0.3rem 1.2rem;
    background: linear-gradient(135deg, #46E6E6 0%, #3333CC 100%);
}
.LearnMore, .LearnMore a {
	color: white;
}
.LearnMore:hover {
	background: linear-gradient(135deg, #FFB789 0%, #ff6400 100%);
}
.edge-models {
	width: 100%;
	overflow: hidden;
	flex: 1 1 100%;
	padding-top: 1rem;
	border: 1px solid;
	border-image-slice: 1;
	border-width: 1px 0px 0px 0px;
	border-image-source: linear-gradient(135deg, #248282, #983873);
}
.new {
	position: relative;
}
.new::before {
	position: absolute;
	content: 'New';
	top: 0;
	left: 0;
	font-size: 13px;
	line-height: 13px;
	font-weight: 400;
	color: #ff6400;
	padding: 3px 10px;
	border: 1px solid #ff6400;
	-webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
}
@media (max-width: 768px) {
	.edge-item {
		flex-direction: column;
		text-align: center;
		width: 96%;
		padding: 2%;
	}
	.edge-text {
		order: 2;
	}
	.edge-img {
		order: 1;
	}
	.edge-models {
		order: 3;
	}
}
@media (max-width: 490px) {
	.edge-img {
		position: relative;
		width: 100%;
		overflow: hidden;
	}
	.edge-img img {
		position: absolute;
		left: 50%;
		top: 50%;
		min-width: 100%;
		width: auto;
		max-width: none;
		height: auto;
		max-height: 100%;
		object-fit: cover;
		transform: translate(-50%, -50%);
	}
}

/*------------- Features -------------*/
.feature_format {
	position: relative;
	padding-bottom: 50px;
}
.feature_bgIMG {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-attachment: fixed !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center !important;
	z-index: -1;
	/* opacity: .5; */
}
.feature_bgIMG.bgA {
	background: url(../images/bg-1.jpg);
}
.feature_bgIMG.bgA::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 10%;
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,  rgba(0,0,0,0) 100%);
	z-index: 1;
}
.feature_bgIMG.bgB {
	background: url(../images/bg-2.jpg);
}
.feature_bgIMG.bgC {
	background: url(../images/bg-gimate.jpg);
	opacity: .3;
}
.feature_bgIMG.bgD {
	background: url(../images/bg-3.jpg);
}
.feature_bgIMG img {
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
	min-width: 100%;
	width: auto;
	max-width: none;
	height: auto;
	max-height: 100%;
	object-fit: cover;
	transform: translateX(-50%);
	z-index: -2;
}
.feature_format_inner {
	width: 98%;
	max-width: 1920px;
	position: relative;
	z-index: 1;
	margin: 70px auto 100px auto;
}
.feature_intro {
	max-width: 1200px;
	margin: 0 auto;
}
.slick-slider-features {
	width: 100%;
	max-width: 1600px;
	margin: 60px auto 1rem auto;
}
.Card_features_content {
	position: relative;
	top: 200px;
    justify-content:flex-start;
    align-items:flex-start;
	z-index: 2;
}
.Card_features_content ol {
	margin-left: 20px;
}
.Card_features_content ol li {
	list-style: square;
}
.GiMATE_content {
	max-width: 800px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 10px auto 50px auto;
}
.GiMATE_content img {
	width: 50px;
	margin-bottom: 15px;
}
.GiMATE_content .LearnMore {
	margin: 16px auto 20px auto;
}
.btn_more {
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 10px 15px;
    margin: 2rem auto 0 auto;
    vertical-align: middle;
    border: 1px solid white;
}
.btn_more img {
	position: relative;
	min-height: 100%;
	top: 2px;
	padding-left: 5px;
}
.btn_more:hover {
	color: black;
	background: #46E6E6;
	border-color: #3333CC;
}
.btn_more:hover img {
	filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(0%) hue-rotate(13deg) brightness(95%) contrast(103%);
}

/*------------- Recent Events -------------*/
.recentEvents {
	background: linear-gradient(135deg,  #ffffff 0%,#d0d0d0 100%);
	padding: 90px 0 150px 0;
}
.recentEvents .headingA {
	margin-bottom: 1.5rem;
}
.recentEvents h2 {
	color: black;
}
.recentCardGroup {
	position: relative;
	max-width: 1350px;
	margin: 0 auto;
}
.recentCard {
	position: relative;
	width: 600px;
	height: 225px;
	overflow: hidden;
	margin: 0 10px;
}
.recentCard img {
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: 100%;
	width: auto;
	max-width: none;
	height: auto;
	max-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.recentCard .headingC {
	font-size: 1.3rem;
	line-height: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	color: white;
	width: 98%;
	height: 50%;
	padding-bottom: 1.5rem;
	left: 1%;
	bottom: 0;
	z-index: 2;
}
.recentCard::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,  rgba(0,0,0,1) 100%);
	z-index: 1;
}

/*------------- go top -------------*/
.scrollup {
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 0;
    width: 45px;
    height: 45px;
	color: white;
    background: #333;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
	display: none;
}
.scrollup:hover {
	background: #ff6400;
}
.goTopIcon {
	position: relative;
	top: 3px;
	width: 80%;
	fill: none;
	stroke: white;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 8px;
}

/*------------- Slider -------------*/
.slick-slider {
	position: relative
}
.slick-slide img {
	display: inline-block;
}
.slick-arrow, .slick-arrow::after {
	content: '';
	position: absolute;
	display: inline-block;
	top: 50%;
	transform: translateY(-50%);
	width: 45px !important;
	height: 45px !important;
}
.slick-arrow {
	top: 50%;
	transform: translateY(-50%);
	border: none;
	font-size: 0;
	z-index: 10;
	cursor: pointer;
}
.slick-arrow::after {
	position: absolute;
	content: '';
	width: 10%;
	height: 10%;
	top: 50%;
	left: 50%;
	background-color: white;
	clip-path: polygon(100% 3px, 3px 3px, 3px 100%, 0 100%, 0 0, 100% 0);
	transform: translate(-50%, -50%)rotate(-45deg);
}
.slick-arrow:hover::after {
	background-color: #46E6E6;
}
.slick-arrow.slick-prev {
	left: 0
}
.slick-arrow.slick-next {
	right: -20px;
	-webkit-transform: translate(-50%, -50%)rotate(180deg);
	transform: translate(-50%, -50%)rotate(180deg);
}
.slick-arrow::after {
	width: 70% !important;
	height: 70% !important;
}
.Card_features .slick-arrow {
	width: 30px !important;
	height: 30px !important;
}
.Card_features .slick-arrow::after {
	width: 30% !important;
	height: 30% !important;
}
.slick-disabled {
	opacity: .2;
}
.slick-arrow::after, .recentCard img, .recentCard:hover .iconPlay, .launchVideo h3, .launchVideo img, .btn_more, .Models_More, .launchVideo i, .feature_Video:hover i, .feature_Video:hover i::before, .feature_Video:hover i::after {
	transition: transform .15s, opacity .15s, filter .15s;
}
.iconPlay {
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 99%;
	border: 2px solid rgba(255, 255, 255, 1);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.iconPlay::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 52%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent rgba(255, 255, 255, 1);
	transform: translate(-50%, -50%);
	filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.9));
	z-index: 1;
}
.slider-articles a:hover .img_container .iconPlay, .recentCard:hover img, .recentCard:hover .iconPlay, .launchVideo:hover h3, .launchVideo:hover .iconPlay, .feature_Video:hover i, .feature_Video:hover i::before, .feature_Video:hover i::after {
	transform: translate(-50%, -50%) scale(1.15);
}
.recentCard:hover img, .launchVideo:hover img {
	-webkit-filter: brightness(50%);
	filter: brightness(50%);
}
.section .slide p {
	margin-bottom: 0;
}
.slide p:before, .slide p:after {
	display: none;
}
.slick-arrow, .slick-arrow:hover {
	background-color: transparent;
}
.slick-arrow::after {
	background: #00FFFF;
}
.slick-slider-models_4, .slick-slider-models_2 {
	width: 100%;
	margin: 0 auto;
}
.slick-slider-models_4 {
	max-width: 950px;
}
.slick-slider-models_2 {
	max-width: 500px;
}
@media only screen and (max-width: 1920px) {
	#GiMATE .edge-item {
		max-width: 250px;
		min-height: 280px;
	}
	 #MONITOR .edge-item {
		max-width: 350px;
		min-height: 420px;
	}
	.h-panel img, .h-panel .video-container, .edge-item .video-container {
		max-height: 200px;
	}
	.edge-img {
		flex: 1 1 245px;
	}
}
@media only screen and (max-width: 1024px) {
	.edge-item, #GiMATE .edge-item, #MONITOR .edge-item {
		width: 450px;
        max-width: 80%;
        min-height: 280px;
		gap: 10px;
		justify-content: center;
		align-items: center;
		padding: 10px 20px 30px 20px;
    }
	.h-section .headingC {
		bottom: -50px;
	}
	.h-section_intro {
		bottom: -55px;
	}
	.edge-text {
		flex: 1 1 200px;
	}
}
@media only screen and (max-width: 990px) {
	.arrow.mb, .arrow.vga {
		display: block;
	}
	#subMenu {
        white-space: nowrap;
        overflow: hidden;
        overflow-x: auto;
        align-items: center;
        justify-content: start;
    }
	#subMenu .menu-item {
		padding: 5px;
	}
	#subMenu .menu-item:first-child {
		padding-left: 40px;
	}
	#subMenu .menu-item:last-child {
		padding-right: 40px;
	}
	#subMenu .menu-item {
		position: relative;
	}
	#GiMATE .edge-img, #MONITOR .edge-img {
		flex: 1 1 300px;
	}
	.h-panel {
		min-height: auto;
	}
	.hero-headline {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
	}
	.feature_bgIMG {
		background-attachment: scroll !important;
	}
	.headingA.fontOrbitron {
		width: 450px;
		max-width: 90%;
	}
	.second {
		opacity: 1;
	}
	.hero-section {
		min-height: 1080px;
	}
	.linear-wipe>* {
		padding: 0;
	}
	.hero_headline_1 {
		font-size: .9rem;
		line-height: 1rem;
		letter-spacing: 2px;
		margin-bottom: 20px;
	}
	.hero_headline_2 {
		font-size: 3rem;
        line-height: 3.5rem;
        letter-spacing: 1px;
		padding-bottom: 0;
	}
	.headingA {
		font-size: 2rem;
        line-height: 2.5rem;
        letter-spacing: 1px;
	}
	.launchVideo, .intro {
		width: 95%;
	}
	.launchVideo h3 {
		font-size: 1rem;
	}
	.headingA, .headingB, .headingD {
		text-align: center;
	}
	.headingB {
		font-size: 1.50rem;
		line-height: 2rem;
		letter-spacing: 1px;
		margin-bottom: .5rem;
	}
	.newproducts-item p, .edge-models h3 {
		font-size: 1rem;
		line-height: 1.15rem;
	}
	.edge-text h2 {
		font-size: 1.5rem;
		line-height: 1.6rem;
	}
	.newproducts-item h3, .edge-text h3, .edge-models h2, .recentCard .headingC {
		font-size: 1.15rem;
		line-height: 1.5rem;
		margin-bottom: .5rem;
		padding-bottom: 0;
	}
	.intro, .wordingA, .AI_content ul li, .Card_features_list li {
		font-size: 15px;
		line-height: 25px;
	}
	.horizontal-container {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.Products div[place="title"], .Products div[place="KSP"] {
		width: 100%;
		align-items: center;
		text-align: center;
	}
	.slick-arrow.slick-prev, .slick-arrow.slick-next {
		border: none !important;
		width: 50px !important;
		height: 50px !important;
	}
	.slick-arrow::before, .slick-arrow::after {
		width: 50% !important;
		height: 50% !important;
	}
	.Products_content .slick-arrow::after {
		background: white !important;
	}
	.recentCard {
		width: 90%;
		max-width: 400px;
		margin: 10px auto;
	}
	.Card_features .slick-arrow.slick-prev, .Card_features .slick-arrow.slick-next {
		top: 50%;
	}
	.Card_features .slick-arrow.slick-prev {
		left: 0;
	}
	.Card_features .slick-arrow.slick-next {
		right: -20px;
	}
	.Products_content {
		margin: 10px auto 20px auto;
	}
	.Products div[place="title"] {
		padding-left: 0;
		margin-bottom: 1rem;
	}
	.feature_format {
		padding-bottom: 20px;
	}
	.break {
		padding: 20px 0;
	}
	.panel {
		padding: 0 0 0 90px;
	}
}
@media only screen and (max-width: 960px) {
	.hero-section .video-container {
		position: absolute;
		top: 50px;
		left: 0;
		width: 100%;
		min-height: 500px;
		height: 50%;
		z-index: -1;
		overflow: hidden;
	}
	.hero-section {
        min-height: auto;
		height: auto;
		padding-bottom: 20px;
    }
	.hero-headline {
		margin: 200px auto 10px auto;
		padding: 0;
	}
	.newproducts {
		padding: 0 0 50px 0;
	}
	.feature_format_inner {
		margin: 20px auto;
		padding: 0;
	}
}
@media only screen and (max-width: 767px) {
	.hero-headline {
		margin: 150px auto 10px auto;
	}
	.first {
		padding-bottom: 100px;
	}
	.hero_headline_2 {
        font-size: 2.2rem;
        line-height: 3rem;
        letter-spacing: 1px;
    }
	.hero_headline_2, .hero_headline_2, .headingA {
		margin-bottom: .5rem;
	}
	.headingA {
		font-size: 1.55rem;
        line-height: 1.8rem;
        letter-spacing: 1px;
	}
	.intro {
		margin: 0 auto;
	}
	.headingC {
		font-size: 1.25rem;
	}
	.wordingA, .intro {
		font-size: 14px !important;
		line-height: 26px !important;
		font-weight: 400;
	}
	.newproducts-grid {
		width: 100%;
		max-width: 300px;
	}
	.newproducts-item {
		width: 100%;
		max-width: 300px;
		height: 200px;
		margin: 1%;
	}
	.feature_bgIMG img {
		width: 150%;
		top: 5%;
	}
	.recentEvents {
		padding: 50px 0;
	}
	.scrollup {
		width: 35px;
		height: 35px;
	}
}
