@charset "utf-8";

/* CSS Document */
@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Light.ttf');
	font-weight: 300;
	/* Light */
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Bold.ttf');
	font-weight: 700;
	/* Bold */
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-ExtraBold.ttf');
	font-weight: 800;
	/* ExtraBold */
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-ExtraLight.ttf');
	font-weight: 100;
	/* ExtraLight */
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Medium.ttf');
	font-weight: 500;
	/* Medium */
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Regular.ttf');
	font-weight: 400;
	/* Regular */
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-SemiBold.ttf');
	font-weight: 600;
	/* SemiBold */
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Thin.ttf');
	font-weight: 100;
	/* Thin */
	font-style: normal;
	font-display: fallback;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Black.ttf');
	font-weight: 900;
	/* Black */
	font-style: normal;
	font-display: fallback;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	outline: none;
	border: none;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	font-family: 'Outfit';
}

a {
	color: #0fbbfb;
	transition: 0.3s;
	text-decoration: none;
}

a:hover,
.header .header-menu.on .link-list li.active a,
.footer .contactUs li:hover i,
.footer .toolLink a:hover,
.copyright a:hover,
.header .header-right a:hover,
.header .header-right a.active,
.footer .contactUs li span a:hover {
	color: #0fbbfb;
}

::-webkit-scrollbar {
	width: 0.25rem;
	height: 0.25rem;
}

::-webkit-scrollbar-thumb {
	background: #919191;
}

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

header {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: center;
	position: sticky;
	top: 0;
	background: white;
	z-index: 100;
}

.header {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contents {
	width: 100%;
	max-width: 1200px;
	padding: 0px 20px;
	margin: 0 auto;
}

.header a {
	font-size: 18px;
	font-weight: bold;
}

.header .header-menu {
	display: none;
}

.header .header-right a {
	color: black;
	padding: 0 30px;
}

.header .header-right a:hover,
.header .header-right a.active {
	opacity: .7;
}

footer {
	background: #1E1E1E;
	padding: 30px 0;
}

.footer {
	display: grid;
	grid-template-columns: 1fr 1fr 150px;
	gap: 50px;
	color: white;
}

.footer h4 {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
	border-bottom: 1px solid #838383;
}

.footer h4 span {
	display: block;
	height: 40px;
	width: 100px;
	border-bottom: 2px solid #838383;
}

.footer .contactUs,
.footer .toolLink a,
.footer .contactUs li span a {
	color: #d1d1d1;
	font-size: 14px;
	margin-right: 5px;
}

.footer .contactUs li {
	height: 42px;
	display: flex;
	align-items: center;
	cursor: default;
}

.footer .contactUs li i {
	background: #1E1E1E;
	width: 60px;
	height: 28px;
	margin-right: 10px;
	border: 1px solid #424244;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	transition: all .3s ease;
}

.footer .contactUs li span {
	flex: 1;
}

.footer .toolLink {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 0px;
}

.copyright {
	color: #d1d1d1;
	text-decoration: none;
	text-align: left;
	line-height: 30px;
	font-size: 13px;
	letter-spacing: .5px;
	padding: 10px 20px;
	margin-top: 30px;
	cursor: default;
	border-bottom: 1px solid #4b5054;
}

.copyright a {
	color: #d1d1d1;
	margin-right: 10px;
}

@media(max-width: 768px) {
	header {
		height: 60px;
	}

	.header .header-right {
		display: none;
	}

	.header .header-menu {
		display: block;
		/* width: 26px; */
		/* height: 26px; */
		overflow: hidden;
	}

	.header .header-menu i {
		font-size: 20px;
	}

	.header .header-menu .icon-guanbi,
	/* .header .header-menu .link-list, */
	.header .header-menu.on .icon-ego-menu {
		display: none;
	}

	.header .header-menu.on .icon-guanbi,
	.header .header-menu .icon-ego-menu {
		display: block;
	}

	.header .header-menu .link-list {
		position: absolute;
		width: 100%;
		top: 100%;
		left: 0;
		height: 0;
		z-index: -1;
		overflow: hidden;
		display: flex;
		flex-direction: column;
	}

	.header .header-menu.on .link-list {
		background: #000000c4;
		height: 100vh;
		transition: height .8s ease;
	}

	.header .header-menu.on .link-list li {
		=: 10px 0;
		/* border-bottom: 1px solid #ffffff63; */
		background-color: #EEE;
		border-bottom: 1px solid #CCC;
		border-top: 1px solid #FFF;
		color: #161517;
	}

	.header .header-menu.on .link-list li a {
		font-size: 16px;
		color: white;
		display: block;
		padding: 15px 20px;
		transition: 0s;
		color: #161517;
		font-weight: 500;
		font-size: 16px;
	}

	.header .header-menu.on .link-list li.active {
		/* border-color: #0fbbfb; */
		border-bottom: 1px solid #0fbbfb;
	}

	/*  */
	.footer {
		gap: 30px 0px;
		grid-template-columns: 1fr;
	}

	.footer .toolLink {
		grid-template-columns: repeat(3, 1fr);
	}
}