body {
	color: white;
	background: black;
	overflow-x: hidden;
}
.clear:after {
	content:'';
	display:table;
	clear:both
}
.dropShadow, aside {
	display: inline-block;
	width: 100%;
	filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, .5));
}
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 -------------*/

.bgvideo {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translateX(-50%);
	z-index: -1;
	/* opacity: 1; */
}

/*------------- Fonts -------------*/

a {
	color: white;
	text-decoration: none;
	cursor: pointer !important;
	outline: none !important;
}
ol {
	margin-left: 25px;
}
ol li {
	list-style: square;
}

.fontGradient {
	display: inline-block;
	position: relative;
	background: linear-gradient(to right,#FFFFFF, #FEB6FF, #8584FF, #6FA4FF, #7AFFFD);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.headingA {
	font-size: 3rem;
	line-height: 3.5rem;
	font-weight: 700;
	letter-spacing: 2px;
	width: 98%;
	max-width: 900px;
}
.headingA.fontOrbitron {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	/* font-weight: 300; */
	margin-bottom: 10px;
}
.headingA.fontOrbitron i {
	position: absolute;
	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 {
	font-size: 3rem;
	line-height: 3.3rem;
	font-weight: bold;
	letter-spacing: 5px;
	margin-bottom: 1rem;
}
.headingC {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 600;
}
.wordingA {
	font-size: 1.1rem;
	line-height: 1.65rem;
	font-weight: 400;
	/* color: #949494; */
}
.more {
    font-size: 1.15rem;
    line-height: 1.15rem;
	font-weight: 600;
	margin-top: 1rem;
    padding: 8px 16px;
    background: #34FFBE;
    color: black;
	border-radius: 5px;
	border: 1px solid transparent;
	transition: all 0.25s;
}
.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;
}
.more:hover {
	color: #34FFBE;
	background: rgba(0, 0, 0, .2);
	border-color: #34FFBE;
}
.more:hover i {
	background: url(../images/icon-arrow-hover.svg) center / contain no-repeat;
}
.Models .more {
	color: #ff6400;
	border-color: #ff6400;
	background: transparent;
	margin-right: 5px;
}
.Models .more i {
	background: url(../images/icon-arrow-orange.svg) center / contain no-repeat;
}
.buy {
	font-size: 1.15rem;
    line-height: 1.15rem;
	font-weight: 600;
	margin-top: 1rem;
    padding: 8px 16px;
    background: #ff6400;
    color: white;
	border-radius: 5px;
	border: 1px solid #ff6400;
	transition: all 0.25s;
}
.buy i {
	position: relative;
	display: inline-block;
	content: '';
	width: 16px;
	height: 16px;
	top: 3px;
	margin-left: 8px;
	background: url(../images/icon-buy.svg) center / contain no-repeat;
	transition: all 0.25s;
}
.colorWhite {
	color: white;
}
.colorBlue {
	color: #46E6E6;
}
.colorGray {
	color: #d1d1d1;
}
.colorOrange {
	color: #ff6400;
}
.textShadow {
	text-shadow: 1px 1px 0px black, 2px 2px 5px rgba(0,0,0,.7);
}
.textLeft {
	text-align:left !important
}
.textRight {
	text-align:right !important
}
.textCenter {
	text-align:center !important
}
.textUppercase {
	text-transform: uppercase;
}

/*------------- 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;
}
.headingProducts {
	padding: 50px 0;
}

/*------------- KV -------------*/

.hero-section {
	position: relative;
	min-height: 1200px;
	height: 100vh;
	overflow: hidden;
}
.hero-section::before, .hero-section::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.hero-section::after {
	height: 100%;
	background: rgba(0, 0, 0, .1);
	z-index: 0;
}
.hero-headline {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 1;
}
.dropShadow {
	display: inline-block;
	width: 100%;
	filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, .8));
}
.hero_headline_1 {
	font-size: 3.6rem;
    line-height: 6rem;
	font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}
.hero_headline_2 {
	font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 4px;
	font-weight: 600;
    margin-bottom: 1rem;
}
.hero-section::after, .Performance-item::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%);
	z-index: -1;
}
.hero-section::after {
	bottom: 0;
	height: 70%;
}
.Performance-item::after {
	bottom: 0;
	height: 100%;
	z-index: 1;
}

/*------------- Performance -------------*/

.Performance {
	min-height: 50vh;
	padding: 100px 0;
}
.Performance::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0.3) 30%,rgba(0,0,0,0.3) 70%,rgba(0,0,0,0.9) 100%);
	z-index: -1;
}
.Performance-grid {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	justify-items: center;
}
.Performance-item {
	position: relative;
	width: 400px;
	height: 400px;
	margin: 15px;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
.Performance-item img {
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	transform-origin : 0% 0%;
	transition: all .25s;
}
.Performance-item p {
	width: 100%;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: white;
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	z-index: 2;
	transition:all .25s;
}
.Performance-item:hover p {
	color: #46E6E6;
}
.Performance-item:hover img {
	transform: translate(-55%, -55%)scale(1.1);
	filter: grayscale(0%)brightness(120%);
}

/*------------- OC -------------*/

.section-oc {
	position: relative;
	line-height: 1.2;
	min-height: 600px;
	max-width: 1920px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.section-oc .overlay-blocks {
	width: 100%;
}
.section-oc .block {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 1920px;
	height: 100%;
	transform: rotateX('angle');
	overflow: hidden;
}
.section-oc .oc-bg2 {
	clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
	transition: all cubic-bezier(0, 0, 0, 0.79) 250ms;
}
.section-oc .oc-bg2.active {
	transition-duration: 2s;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.section-oc .oc-bg img,.section-oc .oc-bg2 img {
	width: 100%;
}
.section-oc .pattern-left, .section-oc .pattern-right {
	position: absolute;
	top: 50%;
	min-width: 169px;
	min-height: 19px;
	transform: translateY(-50%);
	display: flex;
	flex-flow: row-reverse;
}
.oc-bg2 img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.section-oc .pattern-left {
	background: url("../../assets/images/oc-pattern-left.svg") center bottom/100% auto no-repeat;
	left: 20.8%;
	/* transform: translateX(-50%); */
}
.section-oc .pattern-right {
	background: url("../../assets/images/oc-pattern-right.svg") center bottom/100% auto no-repeat;
	right: 20.8%;
}
.section-oc .ellipse {
	background: url("../../assets/images/oc-ellipse.png") center/cover no-repeat;
	width: 18.2291666667%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.section-oc .color-highlight {
    --color-1: #18E0D7;
    --color-2: #923EFA;
    background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: cover;
}
.section-oc .color-highlight.h5 {
	font-size: 1.5rem;
	font-weight: 600;
}
.section-oc .color-highlight b {
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 1px;
}
.section-oc .ellipse:after {
	content: "";
	display: block;
	padding-bottom: 101.4285714286%;
}
.section-oc .ellipse .cover {
	display: grid;
	justify-content: center;
	align-content: center;
}
.section-oc .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section-oc .title {
	position: absolute;
	left: 50%;
	top: 11%;
	width: max-content;
	min-width: 200px;
	transform: translateX(-50%);
	text-align: justify;
	text-align-last: justify;
	letter-spacing: 0.2em;
	font-weight: normal;
}
.section-oc .oc-value {
	font-size: 3.5rem;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
.section-oc .oc-value2 {
	font-size: 5rem;
}
.section-oc .color-highlight {
	margin: 0;
}

/*------------- Background -------------*/

.hero__background {
	position: absolute;
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: -1;
}
.bgIMG {
	width: 100%;
	min-height: 250px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.bgIMG img, .bgIMG video {
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: 100%;
	width: auto;
	max-width: none;
	min-height: 100%;
	height: auto;
	max-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: -2;
}

/*------------- Features -------------*/

.feature_format {
	position: relative;
}
.feature_format .intro {
	font-size: 1.2rem;
	margin: 1rem auto;
}
.feature_bgIMG {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.feature_bgIMG::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.2) 70%,rgba(0,0,0,1) 100%);
	z-index: -1;
}
.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%);
	opacity: .5;
	z-index: -2;
}
.feature_format_inner {
	width: 98%;
	max-width: 1920px;
	position: relative;
	z-index: 1;
	margin: 50px auto 100px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.feature_intro {
	max-width: 1200px;
	margin: 0 auto;
}
.iconThermal {
	width: 450px;
	max-width: 70%;
	margin-bottom: 1rem;
}
.slick-slider-features {
	width: 100%;
	max-width: 1600px;
	margin: 60px auto 1rem auto;
}
.slick-slider-features .slide {
	min-height: 360px;
	overflow: hidden;
}
.card::before, .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
}
.card::before {
    padding: 1px;
    background: linear-gradient(135deg,#FFFFFF, #FEB6FF, #8584FF, #6FA4FF, #7AFFFD);
    -webkit-mask: linear-gradient(black 0 0) content-box, linear-gradient(black 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}
.card::after {
	background: rgba(0, 0, 0, .5);
	-webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
	z-index: -2;
}
.Audio .slick-slider-features .slide {
	min-height: 490px;
}
.GiMATE .slick-slider-features .slide {
	min-height: 410px;
}
.Card_features_content {
	position: relative;
	margin-top: 1rem;
    justify-content:flex-start;
    align-items:flex-start;
}
.logoGiMATE {
	width: 60px;
	margin-bottom: 1rem;
}
.slick-initialized .slick-slide {
    padding: 10px;
}
.slide .img_container {
	position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    max-width: 100%;
    border-radius: 10px;
	margin-bottom: 1rem;
}
.slide .img_container img {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 105%;
    max-width: none;
    max-height: 105%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/*------------- Banner -------------*/

.banner {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}
.label {
	font-size: 1.8rem;
	line-height: 2rem;
	font-weight: 700 !important;
	letter-spacing: 4px;
	text-align: center;
	/* text-shadow: 1px 1px 0px black, 2px 2px 0px #ff32af, -2px -2px 0px #46e6e6; */
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1%;
	top: 65%;
	/* transform: translateY(-50%); */
	width: 120px;
	height: 120px;
	background: url(../images/label.svg) center/contain no-repeat fixed;
	z-index: 88;
}

/*------------- Glitch text effect -------------*/

.textGlitch {
	position: relative;
	display: block;
}
.textGlitch:before, .textGlitch:after {
	content: attr(data-glitch);
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	opacity: 0.3;
}
.textGlitch:before {
	text-shadow: -10px 0 #00ffff;
	clip: rect(24px, 550px, 90px, 0);
	-webkit-animation: glitch-anim 3s infinite linear alternate;
	animation: glitch-anim 3s infinite linear alternate;
	z-index: -1;
	opacity: 0.5;
}
.textGlitch:after {
	text-shadow: 10px 0 #ff06ff;
	clip: rect(85px, 550px, 140px, 0);
	-webkit-animation: glitch-anim 2.5s infinite linear alternate;
	animation: glitch-anim 2.5s infinite linear alternate;
	z-index: -1;
}

@-webkit-keyframes glitch-anim {
	0% {
		clip: rect(52px, 9999px, 1px, 0);
	}

	5% {
		clip: rect(109px, 9999px, 98px, 0);
	}

	10% {
		clip: rect(123px, 9999px, 96px, 0);
	}

	15% {
		clip: rect(79px, 9999px, 56px, 0);
	}

	20% {
		clip: rect(85px, 9999px, 135px, 0);
	}

	25% {
		clip: rect(90px, 9999px, 134px, 0);
	}

	30% {
		clip: rect(119px, 9999px, 109px, 0);
	}

	35% {
		clip: rect(4px, 9999px, 7px, 0);
	}

	40% {
		clip: rect(73px, 9999px, 49px, 0);
	}

	45% {
		clip: rect(112px, 9999px, 6px, 0);
	}

	50% {
		clip: rect(77px, 9999px, 111px, 0);
	}

	55% {
		clip: rect(8px, 9999px, 79px, 0);
	}

	60% {
		clip: rect(39px, 9999px, 44px, 0);
	}

	65% {
		clip: rect(96px, 9999px, 73px, 0);
	}

	70% {
		clip: rect(30px, 9999px, 56px, 0);
	}

	75% {
		clip: rect(103px, 9999px, 106px, 0);
	}

	80% {
		clip: rect(28px, 9999px, 53px, 0);
	}

	85% {
		clip: rect(139px, 9999px, 33px, 0);
	}

	90% {
		clip: rect(83px, 9999px, 93px, 0);
	}

	95% {
		clip: rect(88px, 9999px, 54px, 0);
	}

	100% {
		clip: rect(45px, 9999px, 25px, 0);
	}
}
@keyframes glitch-anim {
	0% {
		clip: rect(52px, 9999px, 1px, 0);
	}

	5% {
		clip: rect(109px, 9999px, 98px, 0);
	}

	10% {
		clip: rect(123px, 9999px, 96px, 0);
	}

	15% {
		clip: rect(79px, 9999px, 56px, 0);
	}

	20% {
		clip: rect(85px, 9999px, 135px, 0);
	}

	25% {
		clip: rect(90px, 9999px, 134px, 0);
	}

	30% {
		clip: rect(119px, 9999px, 109px, 0);
	}

	35% {
		clip: rect(4px, 9999px, 7px, 0);
	}

	40% {
		clip: rect(73px, 9999px, 49px, 0);
	}

	45% {
		clip: rect(112px, 9999px, 6px, 0);
	}

	50% {
		clip: rect(77px, 9999px, 111px, 0);
	}

	55% {
		clip: rect(8px, 9999px, 79px, 0);
	}

	60% {
		clip: rect(39px, 9999px, 44px, 0);
	}

	65% {
		clip: rect(96px, 9999px, 73px, 0);
	}

	70% {
		clip: rect(30px, 9999px, 56px, 0);
	}

	75% {
		clip: rect(103px, 9999px, 106px, 0);
	}

	80% {
		clip: rect(28px, 9999px, 53px, 0);
	}

	85% {
		clip: rect(139px, 9999px, 33px, 0);
	}

	90% {
		clip: rect(83px, 9999px, 93px, 0);
	}

	95% {
		clip: rect(88px, 9999px, 54px, 0);
	}

	100% {
		clip: rect(45px, 9999px, 25px, 0);
	}
}

/*------------- Models -------------*/

.Models {
	padding: 100px 0 0 0;
}
.Models .feature_format_inner {
	max-width: 1200px;
}
.ModelsNameA, .BuyInfo h3 {
	font-size: 1.5rem;
	line-height: 2rem;
	letter-spacing: 1px;
	font-weight: 700;
}
.ModelsNameB {
	font-size: 1.2rem;
	line-height: 1.5rem;
	margin-bottom: 2rem;
	font-weight: 600;
	display: inline-block;
	/* text-align: center; */
}
.Models ol li {
	margin-bottom: .5rem;
}
.Models ol li:last-child {
	margin-bottom: 0;
}
.slick-slider-models {
	max-width: 1200px;
	margin: 10px auto;
}
.slick-slider-models hr {
	border: none;
	height: 1px;
	background: linear-gradient(135deg, #FFFFFF, #FEB6FF, #8584FF, #6FA4FF, #7AFFFD);
	margin: 1.5rem auto;
}
.slick-slider-models .spec {
	margin-bottom: 1rem;
}
.slick-slider-models .price p {
	color: #d1d1d1;
	font-size: 13px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	min-height: 20px;
}
.slick-slider-models .price p strong {
	color: white;
	font-size: 2rem;
	line-height: 2rem;
	font-weight: 700;
}
.btn_group {
	position: relative;
	margin: 30px auto;
}
.btn_group a {
	display: inline-block;
	white-space: nowrap;
}

/*------------- W2B -------------*/

.BuyInfo {
	background: #333;
	width: 95%;
	max-width: 1200px;
}
.BuyInfo h3 {
	margin-bottom: 1rem;
}
.BuyInfo .etailer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
}
.BuyInfo a {
	position: relative;
	display: flex;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	margin: 1%;
	background: white;
	/* border: 1px solid; */
}
.BuyInfo a img {
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: auto;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}
.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: default !important;
}

/*------------- 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, .Explore .slick-arrow::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-slider-articles {
	max-width: 1750px;
	margin: 0 auto;
}
.slick-slider-articles a {
	display: inline-block;
}
.slick-slider-articles a:hover {
	color: #46E6E6;
}
.slick-slider-articles .img_container img,.slick-slider-articles .img_container i,.slick-arrow::after, .recentCard img, .recentCard:hover .iconPlay, .launchVideo h3, .launchVideo img, aside, .btn_more, .Models_More, .launchVideo i, .feature_Video:hover i, .feature_Video:hover i::before, .feature_Video:hover i::after {
	transition: all .15s;
}
.slider-articles a:hover .img_container .iconPlay, .recentCard:hover img, .recentCard:hover .iconPlay, .launchVideo:hover h3, .launchVideo:hover .iconPlay, .slick-slider-articles a:hover .img_container img, .feature_Video:hover i, .feature_Video:hover i::before, .feature_Video:hover i::after {
	transform: translate(-50%, -50%) scale(1.15);
}
.slick-slider-articles .img_container:hover img, .recentCard:hover img, .launchVideo:hover img {
	-webkit-filter: brightness(50%);
	filter: brightness(50%);
}
.slick-slider-articles .headingC {
	font-size: 1.35rem;
    line-height: 1.65rem;
	font-weight: 600;
	color: black;
	display: inline-block;
	width: 100%;
	height: 3.3rem;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 0.5rem;
}
.slick-arrow, .slick-arrow:hover {
	background-color: transparent;
}
@media only screen and (max-width: 1024px) {
	.hero_headline_1 {
		font-size: 3rem;
		line-height: 3.3rem;
	}
	.hero_headline_2 {
		font-size: 1.2rem;
		line-height: 1.5rem;
	}
	.headingA {
		font-size: 2rem;
		line-height: 2.2rem;
	}
	.Performance-item p, .headingC, .ModelsNameA, .BuyInfo h3 {
		font-size: 1.25rem;
		line-height: 1.5rem;
	}
	.slick-slider-models .price p strong {
		font-size: 1.5rem;
		line-height: 1.8rem;
	}
	.wordingA {
		font-size: 1rem;
		line-height: 1.5rem;
	}
	.btn_group {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.btn_group a {
		width: 150px;
		max-width: 80%;
		margin: 0;
	}
	/* OC */
	.section-oc .oc-bg img, .section-oc .oc-bg2 img {
		width: 150%;
		max-width: none;
	}
	.section-oc .ellipse {
		width: 250px;
		max-width: 30vw;
		height: 250px;
		max-height: 30vw;
	}
	.btn_group a:first-child {
		margin-bottom: 1rem;
	}
	.section-oc .color-highlight.h5 {
		font-size: 1.3rem;
		line-height: 1.7rem;
	}
	.section-oc .oc-value2 {
		font-size: 3rem;
		line-height: 3rem;
	}
	.section-oc .oc-value {
		font-size: 2rem;
	}
	.section-oc .pattern-left, .section-oc .pattern-right {
		max-width: 33%;
		background-size: 80%;
		background-position: right bottom;
	}
	.section-oc .pattern-left {
		left: 0;
	}
	.section-oc .pattern-right {
		right: 0;
	}
}
@media only screen and (max-width: 767px) {
	.scrollup {
		width: 35px;
		height: 35px;
	}
}
@media only screen and (max-width: 590px) {
	/* OC */
	.section-oc {
		min-height: 300px;
	}
	.section-oc .pattern-left {
		min-width: none;
        left: -13%;
    }
	.section-oc .color-highlight.h5, .section-oc .color-highlight b {
		font-size: 1rem;
		list-style: 1.2rem;
	}
	.section-oc .oc-value2 {
		font-size: 1.5rem;
		line-height: 1.5rem;
	}
}