@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Noto+Sans+TC:wght@100..900&display=swap');


::selection {
	background: var(--Green);
	color: var(--Black);
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	overflow-x: hidden;
	--Bg: #000;
	--Text: #fff;
	--Main: #0076F7;

	--White: #fff;
	--Black: #000;
	--lightGray: #b5b5b5;
	--darkGray: #323232;
	--Glass: rgba(0, 0, 0, .5);
	--wGlass: rgba(255, 255, 255, .1);
	--Blue01: #6EE5FE;
	--Blue02: #0076F7;
	--Blue03: #06137B;
	--Purple: #7710D0;
	--Pink: #FF02FF;
	--Green: #00ff9c;
	--G01: linear-gradient(90deg, rgba(255, 2, 255, 1) 0%, rgba(0, 118, 247, 1) 100%);


	--Sans: 'Manrope', 'Noto Sans TC', sans-serif;

	color: var(--Text);
	background: var(--Bg);

	font-family: var(--Sans);

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	color: var(--Text);
}

a:hover {
	background: var(--G01);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transp
}



html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar {
	width: 7px;
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	border-radius: 7px;
	background-color: var(--Main);
}

.gText {
	background: var(--G01);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gTextHover:hover {
	background: var(--G01);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: .3s;
}

.big {
	font-size: 1.5em;
}

.small {
	font-size: .6em;
}

.bold {
	font-weight: bold;
}

main {
	width: 100vw;
	overflow: hidden;
	position: relative;
}

section {
	width: 100vw;
	background: var(--Bg);
	position: relative;
	z-index: 0;
	padding: 0;
	margin: 0;
	white-space: normal;
	line-height: 0;
}


p {
	line-height: 1.5em;
}

footer {
	width: 100vw;
	height: calc(40vh - 50px);
}

.footerBG {
	width: 100%;
	height: 300px;
	background: var(--Bg);
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	gap: 20px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -1;
	text-align: center;
}


.footerBG span {
	color: var(--darkGray);
	display: block;
	line-height: 1em;
	font-size: 12px;
}

.footerBall {
	margin-top: -50px;
	width: 150px;
	height: 150px;
	position: relative;
	background: url(../img/ball_bg.png) no-repeat center;
	background-size: cover;
}

.footerBall img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.footerBallImg08,
.footerBallImg09,
.footerBallImg10,
.footerBallImg11 {
	opacity: 0;
}

.footerLogo {
	width: 180px;
	margin: 0 auto;
}

.footerBG p {
	font-size: 14px;
}


section .content {
	width: calc(100vw - 188px);
	margin-left: 90px;
}

.mobile {
	display: none !important;
}

.contentContainer {
	width: 100%;
	position: relative;
}

.flexContainer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: stretch;
	align-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 0;
}

.btn {
	display: block;
	width: 200px;
	height: 40px;
	color: var(--Text);
	background: var(--Red);
	border: 1px solid var(--darkGray);
	border-radius: 5px 5px;
	text-align: center;
	line-height: 40px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	transition: .3s
}


.backTop {
	width: 60px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;

	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 13;

	opacity: 0;
	transition: .3s;
}

.backTop i {
	font-size: 24px;
}

.backTop.is-inview {
	opacity: 1;
	transition: .3s;
}

.scroll {
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	color: var(--White);

	position: fixed;
	left: 50px;
	bottom: 45px;
	z-index: 1;
}

.scroll.is-inview {
	opacity: 0;
}

#scroll {
	width: 20px;
	height: auto;
	fill: var(--White);
}

svg #dot {
	animation: scroll ease 1.5s infinite;
}

@keyframes scroll {
	0% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(100px);
	}
}

.telgramIcon {
	font-size: 30px;
	position: fixed;
	right: 45px;
	bottom: 90px;
	z-index: 13;
}

.telgramIcon.active::before {
	content: '';
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--wGlass) url(../img/telgram.webp) no-repeat center;
	backdrop-filter: blur(10px);
	z-index: 13;
}


/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {
	footer {
		height: calc(45vh - 50px);
	}
}

@media screen and (max-width:1024px) {
	section .content {
		width: calc(100vw - 180px);
	}
	footer {
		height: calc(46vh - 50px);
	}
}

@media (orientation:portrait) and (max-height: 1180px) {
	section .content {
		width: calc(100vw - 188px);
	}

	footer {
		height: calc(40vh - 150px);
	}
}

@media (orientation:portrait) and (max-height: 1024px) {
	section .content {
		width: calc(100vw - 180px);
	}
	footer {
		height: calc(45vh - 150px);
	}
}

@media screen and (max-width:480px) {
	body {}

	.mobile {
		display: block !important;
	}

	.desktop {
		display: none !important;
	}

	section .content {
		width: 100vw;
		margin-left: 0;
	}

	footer {
		height: 150px;
	}


	.footerBG {
		height: 150px;
		line-height: 1em;
	}


	.backTop {
		width: 20px;
		height: 30px;
		right: 20px;
		bottom: 20px;
	}

	#scroll {
		width: 20px;
	}

	.scroll {
		width: 20px;
		left: 20px;
		bottom: 20px;
	}

	.footerBG {
		gap: 5px;
	}

	.footerBG p {
		font-size: 10px;
		padding: 0 20px;
		line-height: 1.2em;
	}

	.footerBall {
		margin-top: 0px;
		width: 80px;
		height: 80px;
	}

	.footerLogo {
		width: 120px;
	}

	.footerBG span {
		font-size: 10px;
	}

	.telgramIcon {
		top: 4px;
		bottom: auto;
		right: 15px;
	}
}

/*Iphone 10*/
@media (orientation: portrait) and (max-height: 812px) {}

@media (orientation: portrait) and (max-height: 736px) {
	footer {
		height: calc(40vh - 150px);
	}
}

@media (orientation: portrait) and (max-height: 667px) {
	footer {
		height: calc(40vh - 130px);
	}
}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {}