h1,
h2,
h3,
h3,
h4,
h5,
div,
body,
ul,
li,
img,
span,
button,
a {
	margin: 0px;
	padding: 0px;
}

body {
	/*min-width: 1440px;*/
	/* padding-bottom: 147px; */
}

ul li,
ol li {
	list-style: none;
}

a {
	color: black;
	text-decoration: none;
}

.noDrag {
	height: 100vh;
	overflow: hidden;
}

.nav {
	/* background: url(../img/bg.jpg) 100% 100% no-repeat; */
	position: relative;
}

#banner {
	display: inline-block;
	width: 100%;
	margin-top: 73px;
	overflow: hidden;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
}

.swiper-slide,
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.navBarIcon {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 10px;
	right: 10px;
	cursor: pointer;
	display: none;
}

.navBarIcon span {
	float: right;
	width: 100%;
	height: 2px;
	margin-top: 6px;
	background-color: #009BDB;
	transition: all 0.4s ease-out;
}

.navBarIcon span:nth-child(1),
.navBarIcon span:nth-child(3) {
	transform-origin: 24px;
	-moz-transform-origin: 24px;
	-ms-transform-origin: 24px;
	-webkit-transform-origin: 24px;
}

.navBarIcon span:nth-child(2) {
	width: 20px;
}

.nav.active .navBarIcon span:nth-child(2) {
	opacity: 0;
}

.nav.active .navBarIcon span:nth-child(1) {
	width: 25px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.nav.active .navBarIcon span:nth-child(3) {
	width: 25px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.navBox {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	background-color: #FFFFFF;
	z-index: 10;
}

.navBox.top {
	position: fixed;
	background-color: white;
	top: 0px;
	box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.1);
	z-index: 100;
	transform: translateY(-73px);
}

.navBox.topM {
	transform: translateY(0px);
}

.navBox.transition {
	transition: transform 0.3s ease;
}

.clearFloat::after {
	content: "";
	clear: both;
	display: block;
	overflow: hidden;
}

.title {
	display: inline-block;
	vertical-align: middle;
	font-size: 25px;
	font-weight: bolder;
	color: rgb(10,113,254);
}

.navList {
	float: right;
	width: 36%;
	margin-right: 12%;
	display: inline-block;
	vertical-align: middle;
}

.navList>li {
	float: left;
	font-size: 20px;
	width: 25%;
	text-align: center;
	position: relative;
}

.navList>li>a {
	position: relative;
	z-index: 10;
}

.navList a:hover {
	color: rgb(10,113,254);
}

.sub_menu {
	position: absolute;
	width: 70%;
	background-color: #FFFFFF;
	left: 50%;
	bottom: 0;
	visibility: hidden;
	opacity: 0;
	transform: translate(-50%, 85%);
	transition: all 0.3s ease;
	padding-top: 25px;
	z-index: 0;
}

.navList>li[product]:hover .sub_menu,
.sub_menu:hover {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 100%);
}

.sub_menu li {
	line-height: 60px;
	font-size: 15px !important;
}

.desc {
	font-size: 30px;
	font-weight: bolder;
	/* color: rgb(10,113,254); */
	color: #FFFFFF;
	position: absolute;
	bottom:20%;
	left: 5%;
}

.desc span {
	display: block;
	font-size: 50px;
}

.footer {
	margin-top: 89px;
	color: white;
	background-color: rgb(10,113,254);
	padding: 10px;
	text-align: center;
}

@media only screen and (min-width:992px) and (max-width: 1200px) {
	#banner {
		height: 300px;
	}

	.sub_menu {
		width: 100%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
	#banner {
		height: 270px;
	}

	.sub_menu {
		width: 100%;
	}

	.navList {
		width: 50%;
		margin-right: 5%;
	}

	.navList li {
		font-size: 18px;
	}

	.desc {
		font-size: 30px;
	}

	.desc span {
		font-size: 40px;
	}
}

@media only screen and (min-width: 540px) and (max-width: 768px) {
	#banner {
		height: 240px;
	}

	.sub_menu {
		width: 100%;
	}

	.navList {
		width: 60%;
		margin-right: 0;
	}

	.navList li {
		font-size: 16px;
	}

	.desc {
		font-size: 20px;
	}

	.desc span {
		font-size: 30px;
	}
}


@media only screen and (max-width:540px) {
	#banner {
		height: 220px;
	}

	.navBarIcon {
		display: inline-block;
	}

	.sub_menu {
		position: initial;
		width: 100%;
		opacity: 1;
		visibility: visible;
		transform: translateX(20px);
		padding: 0;
		height: 0;
		overflow: hidden;
	}

	.navList>li[product]:hover .sub_menu,
	.sub_menu:hover {
		height: 140px;
		transform: translateX(20px);
	}


	.navBox {
		background-color: white;
		position: fixed;
		top: 0px;
		width: auto;
		z-index: 9999;
		width: 70%;
		height: 100vh;
		box-shadow: 5px 1px 10px 2px rgba(0, 0, 0, 0.1);
		left: -70%;
		transition: all 0.5s;
	}

	.nav.active .navBox {
		left: 0%;
	}

	.title {
		display: block;
	}

	.navList {
		float: left;
		margin-right: auto;
		width: 100%;
	}

	.navList li {
		width: 100%;
		text-align: left;
		padding: 5px 0;
	}

	.desc {
		font-size: 15px;
	}

	.desc span {
		font-size: 20px;
	}

	.projectList .projectImg,
	.projectList .projectImg.small {
		max-width: 80%;
	}
}
