@charset "utf-8";
@font-face {
	font-family: "PingFang";
	src: url("../fonts/PingFang.ttf") format('truetype');
	font-weight: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-ExtraBold.otf") format('truetype');
	font-weight: normal;
}

@font-face {
	font-family: "BatonTurbo-Regular";
	src: url("../fonts/BatonTurbo-Regular.woff") format('truetype');
	font-weight: normal;
}

@font-face {
	font-family: "BatonTurbo-Medium";
	src: url("../fonts/BatonTurbo-Medium.woff") format('truetype');
	font-weight: normal;
}

@font-face {
	font-family: "Montserrat-Light";
	src: url("../fonts/Montserrat-Light.woff") format('truetype');
	font-weight: normal;
}

* {
	margin: 0;
	padding: 0;
	font-family: 'PingFang';
	box-sizing: border-box;
	border: 0;
	outline: 0;
}

a {
	color: #444444;
	text-decoration: none;
}

a:hover {
	color: #2E3192;
	text-decoration: none;
}

header {
	background-color: rgba(0, 0, 0, 0.4);
	padding: 30px 0;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 10000;
	-webkit-overflow-scrolling: touch;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: saturate(180%) blur(15px);
	-webkit-backface-visibility: hidden;
	-webkit-transition: height 300ms ease-out 0ms;
	-moz-transition: height 300ms ease-out 0ms;
	-o-transition: height 300ms ease-out 0ms;
	transition: height 300ms ease-out 0ms;
}

header .logo img {
	height: 40px;
}

header ul.main-menu {
	margin-bottom: 0;
}

header ul.main-menu>li {
	display: inline-block;
	list-style: none;
	padding: 0 30px;
	line-height: 40px;
}

header ul.main-menu>li a {
	color: #ffffff;
}

header li.menu-item {
	position: relative;
}

header li.menu-item .menu-item-nav {
	display: flex;
	flex-flow: wrap;
	position: fixed;
	justify-content: space-between;
	top: 95px;
	right: -930px;
	width: 850px;
	height: 310px;
	padding: 30px;
	opacity: 0;
	background-color: #ffffff;
	box-shadow: 0px 2px 10px #999999;
	transition: all 0.5s ease 0s;
}

header li.menu-item .menu-item-nav .img {
	width: 400px;
}

header li.menu-item .menu-item-nav .img img {
	width: 100%;
}

header li.menu-item .menu-item-nav ul {
	display: flex;
	flex-flow: wrap;
	align-content: flex-start;
	gap: 20px 20px;
	width: 300px;
	margin: 0;
	padding: 0px;
}

header li.menu-item .menu-item-nav ul li {
	display: inline-block;
	width: calc(50% - 10px);
	list-style: none;
	line-height: 1.5;
	text-align: left;
}

header li.menu-item .menu-item-nav ul li a {
	font-size: 16px;
	line-height: 1;
	color: #000000;
}

.menu-item-down>a img.nav-img {
	height: 12px;
	padding-left: 2px;
}

.menu-item-down>a img.nav-img.nav-down {
	display: inline-block;
}

.menu-item-down>a img.nav-img.nav-up {
	display: none;
}

.menu-item-all {
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
}

.menu-item-all a {
	padding: 6px 35px;
	line-height: 1;
	font-weight: 600;
	border-radius: 50px;
	background-color: #eb5e00;
}

.dis {
	display: none;
}

header .nav-3.dis {
	position: fixed;
	right: 10px;
	top: 10px;
	padding: 5px;
	width: 40px;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.5)
}

header .nav-3.dis img {
	width: 30px;
}

.header-mob {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

.header-mob .header-top {
	height: 80px;
	width: 100%;
	padding: 0 20px;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: space-between;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 10000;
	-webkit-overflow-scrolling: touch;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: saturate(180%) blur(15px);
	-webkit-backface-visibility: hidden;
	-webkit-transition: height 300ms ease-out 0ms;
	-moz-transition: height 300ms ease-out 0ms;
	-o-transition: height 300ms ease-out 0ms;
	transition: height 300ms ease-out 0ms;
}

.header-mob .header-top .header-logo img {
	height: 40px;
}

.header-mob .header-top .header-nav img {
	height: 30px;
}

.header-mob .header-top .header-nav img.nav-close {
	display: none;
}

.header-mob ul {
	padding: 0;
}

.header-mob ul li {
	list-style: none;
	width: 100%;
	text-align: center;
}

.header-mob>ul {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-overflow-scrolling: touch;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: saturate(180%) blur(15px);
	-webkit-backface-visibility: hidden;
	-webkit-transition: height 300ms ease-out 0ms;
	-moz-transition: height 300ms ease-out 0ms;
	-o-transition: height 300ms ease-out 0ms;
	transition: height 300ms ease-out 0ms;
	padding-top: 50px;
	width: calc( 100% - 0px);
	min-height: calc( 100vh - 80px);
	display: none;
	transform: translateX(-100%);
	transition: all 1s ease 0s;
}

.header-mob>ul>li:first-child>a {
	border-top: 1px solid #999999;
}

.header-mob>ul>li>a {
	display: inline-block;
	padding: 10px 0px;
	margin: 0 auto;
	width: 70%;
	border-bottom: 1px solid #999999;
	color: #222222;
}

.header-mob>ul>li>ul>li>a {
	display: inline-block;
	width: 70%;
	padding: 8px 0px;
	border-bottom: 1px solid #DDDDDD;
	color: #555555;
}
.header-mob>ul>li>ul>li:last-child a{
	border-bottom: 1px solid #999999;
}
@media (max-width:1200px){
	header ul.main-menu>li{
		padding: 0 20px;
	}
}


@media (max-width:1080px) {
	header {
		display: none;
	}
	.header-mob {
		display: block;
	}
}

@media (max-width:768px) {
	.header-mob>ul {
		min-height: calc( 100vh - 50px);
		padding-top: 30px;
	}
	.header-mob .header-top {
		height: 50px;
	}
	.header-mob .header-top .header-logo img {
		height: 25px;
	}
	.header-mob .header-top .header-nav img {
		height: 25px;
	}
}

footer {
	padding: 80px 0 60px;
	background-color: #000000
}

footer .col-sm-12 {
	display: flex;
	flex-flow: wrap;
}

footer img.logo-footer {
	width: 60%;
	max-width: 200px;
}

footer h4 {
	margin: 0;
	font-size: 18px;
	color: #ffffff;
	font-family: "BatonTurbo-Regular";
	font-weight: 600;
	padding-bottom: 10px;
	width: 100%;
}
footer li + h4{
	padding-top: 20px;
}
footer ul {
	padding: 0;
	width: 12.5%;
}
footer ul.ul-about{
	width: 18.5%;
}
footer ul.ul-logo {
	width: 20%;
}

footer ul.ul-product {
	display: flex;
	flex-flow: wrap;
	align-content: flex-start;
	width: 24%;
}

footer ul.ul-contact {
	width: 25%;
}

footer ul li {
	padding: 5px 0;
	list-style: none;
}

footer ul.ul-product li {
	width: 50%;
}

footer ul li a {
	color: #eeeeee;
	font-size: 14px;
	font-family: "BatonTurbo-Regular";
}

footer ul li a:hover {
	color: #ffffff
}

.footer-bottom {
	background-color: #333333;
	padding: 20px 0 25px;
}

.footer-bottom a {
	color: #aaaaaa;
	font-size: 14px;
}

@media (max-width:990px) {
	footer {
		padding-top: 50px;
		padding-bottom: 30px;
	}
	footer ul.ul-product li {
		width: 100%;
	}
	footer ul.ul-logo {
		width: 16%;
	}
	footer ul,
	footer ul.ul-product {
		width: 18%;
	}
	footer ul.ul-contact {
		width: 30%;
	}
}

@media (max-width:768px) {
	footer ul {
		display: none;
	}
	footer ul,
	footer ul.ul-product {
		display: none;
	}
	footer ul.ul-logo,
	footer ul.ul-contact {
		width: 100%;
		display: inline-block;
	}
	footer {
		padding-top: 30px;
		padding-bottom: 10px;
	}
	.footer-bottom {
		padding: 10px 15px;
	}
	.footer-bottom a {
		font-size: 12px;
		line-height: 1.4em;
	}
}