@charset "utf-8";
/* CSS Document */

@font-face {
	font-family: 'Gotham-Light'; /*设置的字体名称*/
	src: url('../Gotham-Light.ttf') format('ttf'), url('../fonts/Gotham-Light.woff') format('woff'), url('../fonts/Gotham-Light.otf') format('otf'); /*引入的字体路径和格式*/
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Gotham-Light'; /*设置的字体名称*/
	src: url('../Gotham-Light.ttf') format('ttf'), url('../fonts/Gotham-Light.woff') format('woff'), url('../fonts/Gotham-Light.otf') format('otf'); /*引入的字体路径和格式*/
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Lato-Bold'; /*设置的字体名称*/
	src: url('../Lato-Bold.ttf') format('ttf'), url('../fonts/Lato-Bold.woff') format('woff'), url('../fonts/Lato-Bold.otf') format('otf'); /*引入的字体路径和格式*/
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Lato-Regular'; /*设置的字体名称*/
	src: url('../Lato-Regular.ttf') format('ttf'), url('../fonts/Lato-Regular.woff') format('woff'), url('../fonts/Lato-Regular.otf') format('otf'); /*引入的字体路径和格式*/
	font-weight: normal;
	font-style: normal;
}
body {
	font-family: "Lato-Bold", 'Lato-Regular';
	/*text-transform: capitalize;*/
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}
a, a:hover, a:visited {
	color: inherit;
	text-decoration: none!important;
}
ul li {
	list-style: none;
}
/*****header*******/
.header {
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .container::before, .header .container::after {
	display: none;
}
.headerLogo img {
	width: 16vw;
	padding: 20px 0;
}
.headerLogo img:nth-child(2) {
	display: none;
}
.headerNav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.headerNav li {
	padding: 0 20px;
	position: relative;
}
.headerNav li>a {
	font-size: 16px;
	color: #fff;
	line-height: 80px;
}
.headerDown {
	width: 200px;
	border-radius: 4px;
	padding: 0 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	position: absolute;
	top: 80px;
	left: 50%;
	visibility: hidden;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translate(-50%, 40px);
	-moz-transform: translate(-50%, 40px);
	-ms-transform: translate(-50%, 40px);
	-o-transform: translate(-50%, 40px);
	transform: translate(-50%, 40px);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.headerDown2{
	width: 300px;
	/*height: 360px;
	overflow-y: scroll;*/
}
.headerDown::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	position: absolute;
	top: -5px;
	left: calc(50% - 6px);
}
.headerDown2::-webkit-scrollbar{
	width: 4px;
}
.headerDown2 div{
	position: relative;
}
.headerDown2 div i{
	font-size: 18px;
	position: relative;
	left: 5px;
	top: 2px;
}
.headerDown2 .headerDown_list{
	width: 200px;
	border-radius: 4px;
	padding: 0 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	position: absolute;
	top: 0;
	left: 60px;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: all 0.6s ease-in-out 0.3s;
	-moz-transition: all 0.6s ease-in-out 0.3s;
	-ms-transition: all 0.6s ease-in-out 0.3s;
	-o-transition: all 0.6s ease-in-out 0.3s;
	transition: all 0.6s ease-in-out 0.3s;
	z-index: -1;
    visibility: hidden;
}
.headerDown2>div:nth-child(1) .headerDown_list,
.headerDown2>div:nth-child(2) .headerDown_list,
.headerDown2>div:nth-child(3) .headerDown_list{
	width: 270px;
}
.headerDown2 .headerDown_list::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-right: 6px solid #fff;
	border-bottom: 6px solid transparent;
	position: absolute;
	top: 20px;
	left: -5px;
}
.headerDown2 div:hover .headerDown_list{
    visibility: visible;
	left: 0;
    opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translate(290px, 0);
	-ms-transform: translate(290px, 0);
	-o-transform: translate(290px, 0);
	transform: translate(290px, 0);
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.headerDown a,
.headerDown div span {
	display: block;
	font-size: 14px;
	color: #808080;
	line-height: 50px;
	font-weight: bold;
	position: relative;
	background-color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-bottom: 1px solid #ececec;
}
.headerDown a:last-child {
	border-bottom: none;
}
.headerDown a:hover,
.headerDown div:hover span {
	color: #366e7f;
	transform: translateX(10px);
	border-bottom: 1px solid #366e7f;
}
.headerDown a:last-child:hover {
	border-bottom: none;
}
.headerNav li:hover .headerDown {
	visibility: visible;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.header.on2 .headerDown::after {
}
.header.on {
	position: fixed;
	padding: 0;
	box-shadow: 0 10px 20px 0 rgba(0,0,0,0.1);
	background-color: #fff;
	-webkit-transform: translateY(-102%);
	-ms-transform: translateY(-102%);
	-o-transform: translateY(-102%);
	transform: translateY(-102%);
}
.header.on2 {
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.header.on2 .headerLogo img {
	display: none;
}
.header.on2 .headerLogo img:nth-child(2) {
	display: block;
}
.header.on2 .container {
	height: 80px;
}
/*.header.on2 .headerLogo img {
	display: none;
}
.header.on2 .headerLogo img:nth-child(2) {
	display: block;
}*/
.header.on2 .headerNav li>a {
	color: #808080;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.header.on2 .headerNav li>a:hover {
	color: #366e7f;
}
.headerSearch img {
	cursor: pointer;
}
.headerSearch img:nth-child(2) {
	display: none;
}
.header.on2 .headerSearch img {
	display: none;
}
.header.on2 .headerSearch img:nth-child(2) {
	display: block;
}
.headerSearch_box {
	width: 100vw;
	padding: 80px 0;
	background-color: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 140px;
	left: 0;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translateX(-100px);
	-ms-transform: translateX(-100px);
	-o-transform: translateX(-100px);
	transform: translateX(-100px);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.headerSearch_box::before {
	content: '';
	display: block;
	width: 100vw;
	height: 1px;
	background-color: #eee;
	position: absolute;
	top: 0;
	left: 0;
}
.headerSearch_box input {
	width: 400px;
	height: 40px;
	padding: 0 10px;
	border: none;
	border-bottom: 1px solid #366e7f;
	font-size: 18px;
	color: #333;
	letter-spacing: 1px;
}
.headerSearch_box input::placeholder {
 color: #ccc;
}
.headerSearch_box img {
	margin-left: 40px;
	cursor: pointer;
}
.headerSearch_box.on {
	visibility: visible;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.header.on2 .headerSearch_box {
	position: fixed;
	top: 80px;
}
.header_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header_lang {
	margin-left: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	cursor: pointer;
}
.header_lang img:nth-child(2) {
	display: none;
}
.header.on2 .header_lang img:nth-child(1) {
	display: none;
}
.header.on2 .header_lang img:nth-child(2) {
	display: block;
}
.header_lang>span{
	margin-left: 10px;
	font-size: 14px;
	color: #fff;
}
.header.on2 .header_lang>span{
	color: #366e7f;
}
.header-etc__text {
	padding: 10px;
	color: #808080!important;
	font-size: 12px;
	letter-spacing: .04em;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: absolute;
	top: 40px;
	left: 50%;
	visibility: hidden;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s ease-in-out 0.3s;
	-moz-transition: all 0.3s ease-in-out 0.3s;
	-ms-transition: all 0.3s ease-in-out 0.3s;
	-o-transition: all 0.3s ease-in-out 0.3s;
	transition: all 0.3s ease-in-out 0.3s;
}
.header-etc__text::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	position: absolute;
	top: -5px;
	left: calc(50% - 6px);
}
.header_lang:hover .header-etc__text {
	visibility: visible;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.header-etc__text a {
	margin: 0 4px;
}
.header-etc__language--state {
	color: #366e7f!important;
}
.header-etc__list:after {
	display: block;
	clear: both;
	content: "";
}
/*****header*******/

/***footer***/
.footer {
	padding: 60px 0 40px;
	background-color: #000;
}
.footerTop {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footerLogo img {
	width: 11vw;
}
.footerIcon {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footerIcon_box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.footerIcon_box span {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #333;
	text-align: center;
	margin-right: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.footerIcon_box span:hover {
	background: #366e7f;
	border: 1px solid #366e7f;
}
.footerIcon_box i {
	font-size: 14px;
	color: #e5e5e5;
	line-height: 40px;
}
.footerIcon_box img:nth-child(1) {
	max-width: 90%;
}
.footerIcon_box img:nth-child(2) {
	width: 130px;
	position: absolute;
	top: 70px;
	left: 50%;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	visibility: hidden;
}
.footerIcon_box:hover img:nth-child(2) {
	top: 50px;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	visibility: visible;
}
.footerNav {
	width: calc(80% - 11vw);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footerNav li {
	max-width: 30%;
}
.footerNav li h6 {
	font-size: 14px;
	color: #fff;
	letter-spacing: 1px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.footerNav li a, .footerNav li p, .footerNav li p {
	margin-top: 10px;
	font-size: 12px;
	color: #808080;
	line-height: 2;
	font-weight: bold;
	text-transform: uppercase;
}
.footerNav li a {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.footerNav li a:hover {
	color: #366e7f;
	transform: translateX(10px);
}
.footerNav li p span {
	color: #fff;
}
.copy {
	margin-top: 40px;
	font-size: 12px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	letter-spacing: 1px;
}
.footerLogo p {
	font-size: 14px;
	color: #fff;
	letter-spacing: 1px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}
/***footer***/

/*****banner*******/
.banner {
	width: 100%;
	overflow: hidden;
	position: relative;
	background-color: #000;
}
.indBaner_box {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.indBaner_bg {
	width: 110vw;
	height: 110vh;
	position: absolute;
	top: -5vh;
	left: -5vw;
}
.indBaner_bg::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.2);
	position: absolute;
	top: 0;
	left: 0;
}
.indBaner_bg.noneBg::after{
	display: none;
}
.indBaner_txt {
	width: 90%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.indBaner_txt h6, .indBaner_txt p, .indBaner_txt .line, .indBaner_txt .indBaner_btn {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translateY(60px);
	-ms-transform: translateY(60px);
	-o-transform: translateY(60px);
	transform: translateY(60px);
	-webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.indBaner_txt h6 {
	margin: 0 auto;
	width: 90%;
	font-size: 64px;
	color: #fff;
	line-height: 1.6;
	
	text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}
.indBaner_txt p {
	margin-top: 20px;
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-transition: all 1s ease-in-out 0.6s;
	-moz-transition: all 1s ease-in-out 0.6s;
	-ms-transition: all 1s ease-in-out 0.6s;
	-o-transition: all 1s ease-in-out 0.6s;
	transition: all 1s ease-in-out 0.6s;
}
.indBaner_txt .line {
	margin: 30px auto 0;
	width: 1px;
	height: 20px;
	background-color: #fff;
	-webkit-transition: all 1s ease-in-out 0.8s;
	-moz-transition: all 1s ease-in-out 0.8s;
	-ms-transition: all 1s ease-in-out 0.8s;
	-o-transition: all 1s ease-in-out 0.8s;
	transition: all 1s ease-in-out 0.8s;
}
.indBaner_txt .indBaner_btn {
	margin-top: 30px;
	display: inline-block;
	width: 140px;
	height: 46px;
	-webkit-transition: all 1s ease-in-out 1s;
	-moz-transition: all 1s ease-in-out 1s;
	-ms-transition: all 1s ease-in-out 1s;
	-o-transition: all 1s ease-in-out 1s;
	transition: all 1s ease-in-out 1s;
	position: relative;
	z-index: 0;
}
.indBaner_txt .indBaner_btn a {
	display: block;
	border: 1px solid #fff;
	font-size: 14px;
	color: #fff;
	line-height: 44px;
	text-align: center;
	-webkit-transition: all 0.45s ease-in-out;
	-moz-transition: all 0.45s ease-in-out;
	-ms-transition: all 0.45s ease-in-out;
	-o-transition: all 0.45s ease-in-out;
	transition: all 0.45s ease-in-out;
}
.indBaner_txt .indBaner_btn a:hover {
	border-color: #366e7f;
}
.indBaner_txt .indBaner_btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #366e7f;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .45s cubic-bezier(.65, 0, .076, 1);
	-moz-transition: all .45s cubic-bezier(.65, 0, .076, 1);
	-ms-transition: all .45s cubic-bezier(.65, 0, .076, 1);
	-o-transition: all .45s cubic-bezier(.65, 0, .076, 1);
	transition: all .45s cubic-bezier(.65, 0, .076, 1);
}
.indBaner_txt .indBaner_btn:hover::after {
	transform-origin: right center;
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
}
.indSwiper .swiper-slide-active .indBaner_txt h6, .indSwiper .swiper-slide-active .indBaner_txt p, .indSwiper .swiper-slide-active .indBaner_txt .line, .indSwiper .swiper-slide-active .indBaner_txt .indBaner_btn {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.indSwiper_pag {
	left: 0;
	bottom: 5%!important;
}
.indSwiper_pag .swiper-pagination-bullet {
	margin: 0 20px!important;
	width: 8px;
	height: 8px;
	opacity: 0.5;
	filter: alpha(opacity=50);
	background-color: #fff;
	position: relative;
}
.indSwiper_pag .swiper-pagination-bullet::after {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid #fff;
	position: absolute;
	top: -9px;
	left: -9px;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSwiper_pag .swiper-pagination-bullet-active {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	background-color: #fff;
}
.indSwiper_pag .swiper-pagination-bullet-active::after, .indSwiper_pag .swiper-pagination-bullet:hover::after {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.bannerImg{
	/*height: 500px;*/
	position: relative;
	z-index: 0;
}
.bannerImg::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
}
.banerTxt{
	width: 90%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.banerTxt h6 {
	font-size: 44px;
	color: #fff;
	letter-spacing: 1px;
	text-transform: capitalize;
	text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}
.banerTxt p {
	margin-top: 20px;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-transition: all 1s ease-in-out 0.6s;
	-moz-transition: all 1s ease-in-out 0.6s;
	-ms-transition: all 1s ease-in-out 0.6s;
	-o-transition: all 1s ease-in-out 0.6s;
	transition: all 1s ease-in-out 0.6s;
}
/*****banner*******/

.comment_title {
	text-align: center;
}
.comment_title .line {
	width: 64px;
	height: 3px;
	margin: 0 auto;
	background-color: #3271ad;
}
.comment_title h6 {
	font-size: 40px;
	color: #366e7f;
	letter-spacing: 1px;
}
.comment_title p {
	margin-top: 30px;
	font-family: 'Lato-Regular';
	font-size: 30px;
	color: #366e7f;
	letter-spacing: 1px;
}
.comment_title.white h6,
.comment_title.white p{
	color: #fff;
}
.comment_title.left h6,
.comment_title.left p{
	text-align: left;
}
.comment_title.opacity>*{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.on .comment_title.opacity>*{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

.publicBtn {

}
.publicBtn a {
	display: inline-block;
	font-size: 14px;
	color: #808080;
	font-weight: bold;
	/*letter-spacing: 1px;*/
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-transform: capitalize;
}
.publicBtn a:hover {
	padding-right: 20px;
	color: #366e7f;
	border-color: #366e7f;
}
.publicBtn.white a {
	color: #fff;
	border-color: #fff;
}
.publicBtn.white a:hover {
	color: #fff;
	border-color: #fff;
}
.floatWarpper {
	position: fixed;
	right: 1%;
	bottom: 6%;
	z-index: 10;
}
.floatIcon {
	width: 80px;
	cursor: pointer;
}
.floatBg {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	display: none;
}
.floatBox {
	width: 40vw;
	padding: 3vw 2vw;
	border-radius: 2vw;
	background-color: #f9fafd;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	position: absolute;
	right: 1vw;
	bottom: calc(6vw + 20px);
	display: none;
}
.floatClose {
	width: 1.5vw;
	position: absolute;
	top: 2vw;
	right: 2vw;
	cursor: pointer;
}
.floatBox h6 {
	font-size: 28px;
	color: #1a1a1a;
	font-weight: bold;
	letter-spacing: 1px;
}
.floatBox p {
	margin-top: 10px;
	font-size: 24px;
	color: #d2d2d2;/*font-weight: bold;*/
}
.floatForm {
	margin-top: 1.5vw;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.floatInput {
	width: calc(50% - 15px);
}
.floatInput input {
	width: 100%;
	height: 4vw;
	padding: 0 1.5vw;
	background-color: #fff;
	border: 1px solid #e3e3e3;
	font-size: 14px;
	color: #1a1a1a;
	font-weight: bold;
	margin-bottom: 1.5vw;
}
.floatInput input::placeholder {
 color: #808080;
 text-transform: uppercase;
}
.floatTextarea {
	width: 100%;
}
.floatTextarea textarea {
	width: 100%;
	height: 8vw;
	padding: 1vw 1.5vw;
	background-color: #fff;
	border: 1px solid #e3e3e3;
	font-size: 14px;
	color: #1a1a1a;
	font-weight: bold;
	margin-bottom: 1.5vw;
	text-transform: uppercase;
}
.floatBtn {
	width: 100%;
	text-align: center;
}
.floatBtn input {
	width: 16vw;
	height: 4vw;
	background-color: #366e7f;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}
/* index.html */
.indWarpper {
	background-color: #fff;
	font-family: 'Lato-Regular';
}
.indSec1 {
	padding: 100px 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}
.indSec1_left {
	width: 60%;
}
.indSec1_top {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.indSec1_top h6 {
	font-size: 80px;
	color: #366e7f;
	display: flex;
	align-items: center;
	margin-right: 30px;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.indSec1_top h6 span {
	font-size: 12px;
	color: #808080;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-left: 10px;
}
.indSec1_left p {
	margin-top: 6%;
	font-size: 40px;
	color: #808080;
	-webkit-transition: all 0.6s ease-in-out 0.3s;
	-moz-transition: all 0.6s ease-in-out 0.3s;
	-ms-transition: all 0.6s ease-in-out 0.3s;
	-o-transition: all 0.6s ease-in-out 0.3s;
	transition: all 0.6s ease-in-out 0.3s;
}
.indSec1_bottom {
	width: calc(66% - 40px);
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 0;
	bottom: 100px;
}
.indSec1_bottom .publicBtn {
	-webkit-transition: all 0.6s ease-in-out 0.6s;
	-moz-transition: all 0.6s ease-in-out 0.6s;
	-ms-transition: all 0.6s ease-in-out 0.6s;
	-o-transition: all 0.6s ease-in-out 0.6s;
	transition: all 0.6s ease-in-out 0.6s;
}
.indSec1_img {
	width: 22%;
	-webkit-transition: all 1s ease-in-out 0.6s;
	-moz-transition: all 1s ease-in-out 0.6s;
	-ms-transition: all 1s ease-in-out 0.6s;
	-o-transition: all 1s ease-in-out 0.6s;
	transition: all 1s ease-in-out 0.6s;
}
.indSec1_right {
	width: 34%;
	height: 70vh;
	-webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.indSec1_top h6, .indSec1_left p, .indSec1_bottom .publicBtn {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translate(0, 80px);
	-ms-transform: translate(0, 80px);
	-o-transform: translate(0, 80px);
	transform: translate(0, 80px);
}
.indSec1 .indSec1_img, .indSec1 .indSec1_right {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translate(50%, 0);
	-ms-transform: translate(50%, 0);
	-o-transform: translate(50%, 0);
	transform: translate(50%, 0);
}
.indSec1.on .indSec1_top h6, .indSec1.on .indSec1_left p, .indSec1.on .indSec1_bottom .publicBtn, .indSec1.on .indSec1_img, .indSec1.on .indSec1_right {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}
.indSec2 {
	padding: 90px 0;
	background: #415368 url(../images/bgLine.png) top left repeat;
	position: relative;
}
.indSec2 .container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.indSec2 .container::before, .indSec2 .container::after {
	display: none;
}
.indSec2::after {
	content: '';
	display: block;
	width: 130px;
	height: 116px;
	background: url(../images/quotes2.png) center/cover no-repeat;
	position: absolute;
	bottom: -10%;
	right: 10%;
	z-index: 2;
}
.indSec2_img {
	width: 250px;
	padding: 20px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.3);
	position: relative;
	z-index: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
}
.indSec2.on .indSec2_img {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.indSec2_img img {
	border-radius: 50%;
	box-shadow: 20px 20px 30px rgba(0,0,0,.3);
}
.indSec2_round {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}
.indSec2_round::before, .indSec2_round::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.5);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
}
@keyframes round {
 0% {
 opacity: 0;
 -moz-opacity: 0;
 -khtml-opacity: 0;
 -webkit-opacity: 0;
 filter: alpha(opacity=0);
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
 50% {
 opacity: 1;
 -moz-opacity: 1;
 -khtml-opacity: 1;
 -webkit-opacity: 1;
 filter: alpha(opacity=100);
}
 100% {
 opacity: 0;
 -moz-opacity: 0;
 -khtml-opacity: 0;
 -webkit-opacity: 0;
 filter: alpha(opacity=0);
 -webkit-transform: scale(1.2);
 -moz-transform: scale(1.2);
 -ms-transform: scale(1.2);
 -o-transform: scale(1.2);
 transform: scale(1.2);
}
}
.indSec2_round::before {
	animation: round 2s infinite ease-in-out;
}
.indSec2_round::after {
	animation: round 2s infinite ease-in-out 0.6s;
}
.indSec2_img::before {
	content: '';
	display: block;
	width: 130px;
	height: 116px;
	background: url(../images/quotes1.png) center/cover no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translateX(-60%);
	-ms-transform: translateX(-60%);
	-o-transform: translateX(-60%);
	transform: translateX(-60%);
	z-index: 2;
}
.indSec2_img::after {
	content: '';
	display: block;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border-radius: 50%;
	background-color: rgba(0,0,0,0.1);
	position: absolute;
	top: 20px;
	left: 65%;
	z-index: -1;
}
.indSec2_txt {
	width: 45%;
	margin-left: 15vw;
}

.indSec2_txt .line {
    margin: 20px 0;
    width: 10px;
    height: 1px;
    background-color: #fff;
}

.indSec2_txt h6 {
	font-size: 40px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.indSec2_txt p {
	margin: 4% 0;
	font-size: 16px;
	color: #fff;
	line-height: 2;
	letter-spacing: 1px;
	-webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.indSec2_txt .publicBtn {
	-webkit-transition: all 1s ease-in-out 0.6s;
	-moz-transition: all 1s ease-in-out 0.6s;
	-ms-transition: all 1s ease-in-out 0.6s;
	-o-transition: all 1s ease-in-out 0.6s;
	transition: all 1s ease-in-out 0.6s;
}
.indSec2_txt h6, .indSec2_txt p, .indSec2_txt .publicBtn {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translateY(40px);
	-ms-transform: translateY(40px);
	-o-transform: translateY(40px);
	transform: translateY(40px);
}
.indSec2.on .indSec2_txt h6, .indSec2.on .indSec2_txt p, .indSec2.on .indSec2_txt .publicBtn {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.indSec3 {
	padding: 80px 0 60px;
	background-color: #fff;
}
.indSec3_title {
}
.indSec3_title h6 {
	font-size: 40px;
	color: #366e7f;
	font-weight: bold;
	text-transform: uppercase;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.indSec3_title p {
	margin: 3% 0;
	font-size: 30px;
	color: #666;
	-webkit-transition: all 0.6s ease-in-out 0.3s;
	-moz-transition: all 0.6s ease-in-out 0.3s;
	-ms-transition: all 0.6s ease-in-out 0.3s;
	-o-transition: all 0.6s ease-in-out 0.3s;
	transition: all 0.6s ease-in-out 0.3s;
}
.indSec3_title .publicBtn {
	-webkit-transition: all 0.6s ease-in-out 0.6s;
	-moz-transition: all 0.6s ease-in-out 0.6s;
	-ms-transition: all 0.6s ease-in-out 0.6s;
	-o-transition: all 0.6s ease-in-out 0.6s;
	transition: all 0.6s ease-in-out 0.6s;
}
.indSec3_title h6, .indSec3_title p, .indSec3_title .publicBtn {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translateY(40px);
	-ms-transform: translateY(40px);
	-o-transform: translateY(40px);
	transform: translateY(40px);
}
.indSec3.on .indSec3_title h6, .indSec3.on .indSec3_title p, .indSec3.on .indSec3_title .publicBtn {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.indSec3_swiper {
	margin-top: 40px;
	padding: 40px 0 80px;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
	-webkit-transition: all 1s ease-in-out 0.6s;
	-moz-transition: all 1s ease-in-out 0.6s;
	-ms-transition: all 1s ease-in-out 0.6s;
	-o-transition: all 1s ease-in-out 0.6s;
	transition: all 1s ease-in-out 0.6s;
}
.indSec3.on .indSec3_swiper {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.indSec3_pag {
	bottom: 20px!important;
}
.indSec3_pag .swiper-pagination-bullet {
	margin: 0 20px!important;
	background-color: #999999;
	position: relative;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
}
.indSec3_pag .swiper-pagination-bullet::after {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid #366e7f;
	position: absolute;
	top: -9px;
	left: -9px;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec3_pag .swiper-pagination-bullet-active {
	background-color: #366e7f;
}
.indSec3_pag .swiper-pagination-bullet-active::after, .indSec3_pag .swiper-pagination-bullet:hover::after {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.indSec3_box {
	display: block;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.indSec3_box:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}
.indSec3_img {
	overflow: hidden;
	position: relative;
}
.indSec3_img::after {
	content: '';
	display: block;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	border: 1px solid #fff;
	position: absolute;
	top: 15px;
	left: 15px;
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.indSec3_box:hover .indSec3_img::after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.indSec3_img img {
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
}
.indSec3_box:hover .indSec3_img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.indSec3_txt {
	padding: 6% 4%;
}
.indSec3_txt h6 {
	font-size: 16px;
	color: #366e7f;
	font-weight: bold;
	letter-spacing: 1px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 17px;
}
.indSec3_txt p {
	margin-top: 6%;
	font-size: 14px;
	color: #808080;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 60px;
}
.indSec3_box:hover .indSec3_txt h6 {
	color: #366e7f;
}
.indSec4 {
	position: relative;
	overflow: hidden;
}
.indSec4_img {
	width: calc(100% - 700px);
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translateX(-102%);
	-ms-transform: translateX(-102%);
	-o-transform: translateX(-102%);
	transform: translateX(-102%);
	-webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.indSec4_txt {
	margin: 0 0 0 auto;
	width: 700px;
	padding: 80px 60px;
	background: #415368 url(../images/bgLine.png) top left repeat;
	-webkit-transform: translateX(102%);
	-ms-transform: translateX(102%);
	-o-transform: translateX(102%);
	transform: translateX(102%);
	-webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.indSec4.on .indSec4_img, .indSec4.on .indSec4_txt {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.indSec4_txt h6 {
	font-size: 40px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.indSec4_txt .line {
	margin: 20px 0;
	width: 10px;
	height: 1px;
	background-color: #fff;
}
.indSec4_txt p {
	font-size: 16px;
	color: #fff;
	line-height: 2;
	margin-bottom: 3%;
}
.indSec4_txt .publicBtn {
	margin-top: 40px;
}
.indSec5 {
	padding: 60px 0;
}
.indSec5_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.indSec5_title h6 {
	font-size: 40px;
	color: #366e7f;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.indSec5_title .publicBtn {
	width: 100px;
}
.indSec5_swiper {
	margin-top: 40px;
	padding: 40px 10px 80px;
	-webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.indSec5_title, .indSec5_swiper {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
}
.indSec5.on .indSec5_title, .indSec5.on .indSec5_swiper {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.indSec5_box {
	padding: 10% 5%;
	display: block;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.indSec5_box:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}
.indSec5_img {
	display: flex;
	align-items: center;
	justify-content: center;
}
.indSec5_img img {
	max-width: 100%;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec5_box:hover .indSec5_img img {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: grayscale(0);
}
.indSec5_txt {
	margin-top: 30px;
}
.indSec5_txt p {
	font-size: 14px;
	color: #b2b2b2;
	line-height: 2;
	text-align: center;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 72px;
}
.indSec5_pag {
	bottom: 20px!important;
}
.indSec5_pag .swiper-pagination-bullet {
	margin: 0 20px!important;
	background-color: #999999;
	position: relative;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
}
.indSec5_pag .swiper-pagination-bullet::after {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid #366e7f;
	position: absolute;
	top: -9px;
	left: -9px;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec5_pag .swiper-pagination-bullet-active {
	background-color: #366e7f;
}
.indSec5_pag .swiper-pagination-bullet-active::after, .indSec5_pag .swiper-pagination-bullet:hover::after {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
/* index.html */

.detailBan{
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
.detailWarpper{
	background-color: #f5f5f5;
}

/* news.html */
.newsSec{
	padding: 100px 0;
	background-color: #fff;
}
.newsSec_list{
	margin-top: 60px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.newsSec_list li{
	width: 30%;
	margin-right: 5%;
}
.newsSec_list li:nth-child(3n){
	margin-right: 0;
}
.newsSec_list li:nth-child(n+4){
	margin-top: 5%;
}
.newsSec_time{
	font-size: 16px;
	color: #808080;
	font-weight: bold;
}
.newsSec_time span{
	color: #366e7f;
}
.newsSec_img{
	margin-top: 2%;
	overflow: hidden
}
.newsSec_img img{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.newsSec_img:hover img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.newsSec_txt{
	margin-top: 5%;
	display: block;
}
.newsSec_txt h6{
	font-size: 20px;
	color: #333;

	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 22px;
}
.newsSec_txt:hover h6{
	color: #366e7f;
}
.newsSec_txt p{
	margin-top: 5%;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #808080;
	line-height: 1.8;

	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 84px;
}
.newsSec_list .publicBtn{
	margin-top: 5%;
}

.newsDetail{
	padding: 100px 0;
}
.newsDetail_con{
	padding: 100px 60px;
	background-color: #fff;
}
.newsSec_title{
	text-align: center;
}
.newsSec_title h6{
	font-size: 30px;
	color: #333;
}
.newsSec_title p{
	margin-top: 2%;
	font-size: 16px;
	color: #808080;
}
.newsSec_box{
	margin-top: 40px;
	padding: 30px 0;
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
}
.newsSec_box p{
	margin: 10px 0;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 1.8;
}
.newsSec_box img{
	display: block;
	max-width: 100%;
	margin: 30px auto;
}
.newsSec_share{
	margin-top: 40px;
	font-family: 'Lato-Regular';
	font-size: 22px;
	color: #4c4c4c;
}
.newsSec_return{
	margin: 60px 0 0;
	text-align: center;
}
.newsSec_return a{
	display: inline-block;
	width: 220px;
	height: 70px;
	background-color: #366e7f;
	font-family: 'Lato-Regular';
	font-size: 24px;
	color: #fff;
	line-height: 70px;
	letter-spacing: 1px;
}
/* news.html */

/* intro.html */
.introSec1{
	padding: 100px 0;
}
.introSec1_box>*{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.introSec1.on .introSec1_box>*{
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.introSec1_box img{
	margin: 0 5% 0 0;
	width: 40%;
}
.introSec1_box p{
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
}
.introSec1_box p:nth-child(n+3){
	margin-top: 4%;
}
/* intro.html */

/* team.html */
.teamSec1{
	padding: 100px 0 80px;
}
.teamSec1_swiper{
	margin-top: 80px;
	padding-bottom: 100px;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
	-webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.teamSec1.on .teamSec1_swiper{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.teamSec1_box{
	display: block;
	overflow: hidden;
	position: relative;
}
.teamSec1_img h6{
	margin-top: 20px;
	font-size: 18px;
	color: #366e7f;
	text-align: center;
	letter-spacing: 1px;
}
.teamSec1_img span{
	font-size: 16px;
}
.teamSec1_txt{
	width: 100%;
	height: 100%;
	padding: 5%;
	overflow-y: scroll;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(25%);
    -ms-transform: translateY(25%);
    -o-transform: translateY(25%);
    transform: translateY(25%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.teamSec1_box:hover .teamSec1_txt{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.teamSec1_txt::-webkit-scrollbar{
	width: 0;
}
.teamSec1_txt h6{
	font-size: 28px;
	color: #366e7f;
	font-weight: bold;
	letter-spacing: 1px;
}
.teamSec1_txt p{
	font-family: 'Lato-Regular';
	margin-top: 10px;
	font-size: 14px;
	color: #4c4c4c;
	line-height: 1.6;
}

.teamSec2{
    height: 52vh;
	position: relative;
	z-index: 0;
}
.teamSec2::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.teamSec2_box{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.teamSec3{
	padding: 100px 0;
	background-color: #fff;
}
.teamSec3 p{
	font-family: 'Lato-Regular';
	font-size: 18px;
	color: #4c4c4c;
	line-height: 2;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.teamSec3.on p{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.teamSec3 p:nth-child(n+2){
	margin-top: 2%;
}
/* team.html */

/* certificate.html */
.certificateSec{
	padding: 100px 0;
}
.certificate_swiper{
	margin-top: 80px;
	padding-bottom: 100px;
}
.certificate_box{
	padding: 15%;
	text-align: center;
	background-color: #fff;
}
.certificate_txt{
	margin-top: 5%;
}
.certificate_txt p{
	font-size: 16px;
	color: #0f0f0f;
}
/* certificate.html */

/* custmer.html */
.custmerSec1{
	padding: 100px 0;
	background-color: #fff;
}
.custmerChose{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.custmerChose li{
	margin: 0 20px;
	width: 200px;
	height: 70px;
	font-size: 18px;
	color: #333;
	line-height: 70px;
	text-align: center;
	background-color: #eee;
	cursor: pointer;
	position: relative;
	z-index: 0;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.custmerChose li::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.custmerChose li.on{
	color: #fff;
	background-color: #366e7f;
}
.custmerChose li.on::before{
	width: calc(100% - 10px);
	height: calc(100% - 10px);
}

.custmerList{
	margin-top: 80px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.custmerList li{
	width: 18%;
	margin-right: 2.5%;
}
.custmerList li:nth-child(5n){
	margin-right: 0;
}
.custmerList li:nth-child(n+6){
	margin-top: 2.5%;
}
/* custmer.html */

/* operaProperty.html */
.pro1Sec1{
	padding: 140px 0 100px;
}
.pro1Sec1_box{
	/*overflow: hidden;*/
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pro1Sec1_box::before,
.pro1Sec1_box::after{
	display: none;
}
.pro1Sec1_txt{
	width: 48%;
}
.pro1Sec1_txt img,
.pro1Sec1_txt h6,
.pro1Sec1_txt p{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.pro1Sec1.on .pro1Sec1_txt img,
.pro1Sec1.on .pro1Sec1_txt h6,
.pro1Sec1.on .pro1Sec1_txt p{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.pro1Sec1_txt h6{
	margin-top: 4%;
	font-size: 40px;
	color: #366e7f;
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.pro1Sec1_txt p{
	font-family: 'Lato-Regular';
	margin-top: 6%;
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
	-webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	-ms-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.pro1Sec1_img{
	width: calc(48% - 40px);
	/*background-color: #356b7c;*/
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(102%);
    -ms-transform: translateX(102%);
    -o-transform: translateX(102%);
    transform: translateX(102%);
    -webkit-transition: all 1.2s ease-in-out;
	-moz-transition: all 1.2s ease-in-out;
	-ms-transition: all 1.2s ease-in-out;
	-o-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;
}
.pro1Sec1_img img{
	box-shadow: 0 0 30px rgba(0,0,0,0.35);
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
    -webkit-transition: all 0.6s ease-in-out 0.6s;
	-moz-transition: all 0.6s ease-in-out 0.6s;
	-ms-transition: all 0.6s ease-in-out 0.6s;
	-o-transition: all 0.6s ease-in-out 0.6s;
	transition: all 0.6s ease-in-out 0.6s;
}
.pro1Sec1.on .pro1Sec1_img{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}
.pro1Sec1.on .pro1Sec1_img img{
	/*-webkit-transform: translate(-40px, -40px);
	-ms-transform: translate(-40px, -40px);
	-o-transform: translate(-40px, -40px);
	transform: translate(-40px, -40px);*/
}

.pro1Sec2{
	padding: 100px 0;
	text-align: right;
}
.pro1Sec2_txt{
	display: inline-block;
	text-align: left;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(102%);
    -ms-transform: translateX(102%);
    -o-transform: translateX(102%);
    transform: translateX(102%);
}
.pro1Sec2.on .pro1Sec2_txt{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.pro1Sec2_txt h6{
	font-size: 40px;
	color: #fff;
	margin-bottom: 2%;
}
.pro1Sec2_txt p{
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #fff;
	line-height: 2;
}

.pro1Sec3{
	padding: 100px 0;
	overflow: hidden;
}
.pro1Sec3_title{
	font-size: 40px;
	color: #366e7f;
	text-align: center;opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
}
.pro1Sec3.on .pro1Sec3_title{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.pro1Sec3_list{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.pro1Sec3_list li{
	width: calc(33.33% - 30px);
	position: relative;

	opacity: 0;
	-moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.pro1Sec3.on .pro1Sec3_list li{
	opacity: 1;
	-moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.pro1Sec3_list li:nth-child(2){
    -webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	-ms-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.pro1Sec3_list li:nth-child(3){
    -webkit-transition-delay: 0.9s;
	-moz-transition-delay: 0.9s;
	-ms-transition-delay: 0.9s;
	-o-transition-delay: 0.9s;
	transition-delay: 0.9s;
}
.pro1Sec3_box{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.pro1Sec3_list li:hover .pro1Sec3_box{
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.pro1Sec3_img{
	overflow: hidden;
}
.pro1Sec3_img img{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.pro1Sec3_img:hover img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.pro1Sec3_txt{
	padding: 30px 20px 20px;
	background: #366e7f url(../images/bgLine.png) repeat;	
}
.pro1Sec3_txt h6{
	font-size: 18px;
	color: #fff;
	line-height:1.2;
	height:38px;
}
.pro1Sec3_txt p{
	font-family: 'Lato-Regular';
	margin-top: 4%;
	font-size: 16px;
	color: #fff;
	line-height: 2;
}
.pro1Sec3_txt .publicBtn{
	margin-top: 4%;
}
.pro1Sec3_list li:nth-child(2n) .pro1Sec3_txt{
	background: #0a6a6d url(../images/bgLine.png) repeat;
}
.pro1Sec4_box{
	height: 300px;
	position: relative; 
}
.pro1Sec4_txt{
	position: absolute;
	top: 50%;
	left: 0;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}
.pro1Sec4.on .pro1Sec4_txt{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    -webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.pro1Sec4_txt h6{
	font-size: 14px;
	color: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.pro1Sec4_txt p{
	margin-top: 4%;
	font-size: 40px;
	color: #fff;
	letter-spacing: 1px;
}

.pro1Sec5{
	padding: 100px 0;
	background-color: #f5f5f5;
	overflow: hidden;
}
.pro1Sec5_con{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.pro1Sec5_con::before,
.pro1Sec5_con::after{
	display: none;
}
.pro1Sec5_box{
	padding: 60px 40px 80px;
	width: calc(50% - 25px);
	background-color: #fff;
	border-top: 10px solid #366e7f;

	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}
.pro1Sec5.on .pro1Sec5_box{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.pro1Sec5_box h6,
.pro1Sec5_box p{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.pro1Sec5.on .pro1Sec5_box h6,
.pro1Sec5.on .pro1Sec5_box p{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.pro1Sec5_box h6{
	margin: 6% 0;
	font-size: 40px;
	color: #333;
	line-height: 1.4;
    -webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	-ms-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.pro1Sec5_box p{
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
    -webkit-transition-delay: 0.8s;
	-moz-transition-delay: 0.8s;
	-ms-transition-delay: 0.8s;
	-o-transition-delay: 0.8s;
	transition-delay: 0.8s;
}
/* operaProperty.html */

/* hotelMobile.html */
.pro2Sec1{
	padding: 100px 0;
	background-color: #fff;
}
.pro2Sec1_box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pro2Sec1_box::before,
.pro2Sec1_box::after{
	display: none;
}
.pro2Sec1_img{
	width: 45%;
	box-shadow: 0 0 30px rgba(0,0,0,0.3);
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(102%);
    -ms-transform: translateX(102%);
    -o-transform: translateX(102%);
    transform: translateX(102%);
    -webkit-transition: all 1.2s ease-in-out;
	-moz-transition: all 1.2s ease-in-out;
	-ms-transition: all 1.2s ease-in-out;
	-o-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;
}
.pro2Sec1.on .pro2Sec1_img{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.pro2Sec1_txt{
	width: 50%;
}
.pro2Sec1_txt h6,
.pro2Sec1_txt p,
.pro2Sec1_txt a{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.pro2Sec1.on .pro2Sec1_txt h6,
.pro2Sec1.on .pro2Sec1_txt p,
.pro2Sec1.on .pro2Sec1_txt a{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.pro2Sec1_txt h6{
	font-size: 40px;
	color: #366e7f;
	/*font-weight: bold;*/
}
.pro2Sec1_txt p{
	margin-top: 4%;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
    -webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.pro2Sec1_txt a{
	margin-top: 4%;
	display: inline-flex;
	align-items: flex-end;
	justify-content: flex-start;
    -webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	-ms-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.pro2Sec1_txt a span{
	margin-left: 10px;
}

.pro2Sec2{
    padding: 100px 0;
    background: #366e7f url(../images/bgLine.png) top left repeat;
}
.pro2Sec2_list{
	margin-top: 60px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	align-items: flex-start;
    justify-content: flex-start;
}
.pro2Sec2_list li{
	width: 18%;
	text-align: center;
	margin-right: 2.5%;

    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.pro2Sec2.on .pro2Sec2_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.pro2Sec2_list li:nth-child(5n){
	margin-right: 0;
}
.pro2Sec2_list li:nth-child(n+6){
	margin-top: 2.5%;
}
.pro2Sec2_icon{
	margin: 0 auto;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.pro2Sec2_txt{
	margin-top: 20px;
}
.pro2Sec2_txt h6{
	font-size: 18px;
	color: #fff;
}
.pro2Sec2_txt .line{
	margin: 10px auto;
	width: 30px;
	height: 1px;
	background-color: #fff;
}
.pro2Sec2_txt p{
	margin-top: 10px;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
}

.pro2Sec3{
	padding: 100px 0;
}
.pro2Sec3_list{
	margin-top: 60px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	align-items: flex-start;
    justify-content: flex-start;
}
.pro2Sec3_list li{
	width: 30%;
	text-align: center;
	margin-right: 5%;

    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.pro2Sec3.on .pro2Sec3_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.pro2Sec3_list li:nth-child(3n){
	margin-right: 0;
}
.pro2Sec3_list li:nth-child(n+4){
	margin-top: 5%;
}
.pro2Sec3_icon{
	margin: 0 auto;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.pro2Sec3_txt{
	margin-top: 30px;
}
.pro2Sec3_txt h6{
	font-size: 18px;
	color: #333;
	line-height: 1.6;
}
.pro2Sec3_txt .line{
	margin: 10px auto;
	width: 40px;
	height: 1px;
	background-color: #366e7f;
}
.pro2Sec3_txt p{
	margin-top: 10px;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #808080;
	line-height:1.8;
	text-align: left;
}
/* hotelMobile.html */

/* simphony.html */
.pro3Sec1{
	background-color: #fff;
}
.pro3Sec2 .pro1Sec1_img{
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}

.pro3Sec4{
	padding: 100px 0 20px;
	background-color: #fff;
}
.pro3Sec4_box{
	padding: 80px 0;
}
.pro3Sec4_box:nth-child(n+2){
	border-top: 1px solid #e3e3e3;
}
.pro3Sec4_box:nth-child(2n) .pro3Sec4_img{
	float: left;
    -webkit-transform: translateX(-102%);
    -ms-transform: translateX(-102%);
    -o-transform: translateX(-102%);
    transform: translateX(-102%);
}
.pro3Sec4_box:nth-child(2n) .pro3Sec4_txt{
	float: right;
}
.pro3Sec4_txt{
	width: 48%;
	float: left;
}
.pro3Sec4_txt h6,
.pro3Sec4_txt p,
.pro3Sec4_txt .publicBtn{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.pro3Sec4_box.on .pro3Sec4_txt h6,
.pro3Sec4_box.on .pro3Sec4_txt p,
.pro3Sec4_box.on .pro3Sec4_txt .publicBtn{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.pro3Sec4_txt h6{
	margin-top: 4%;
	font-size: 40px;
	color: #366e7f;
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.pro3Sec4_txtBox{
	margin-top: 6%;
	height: 216px;
	overflow: hidden;
}
.pro3Sec4_txtBox.scroll{
	overflow-y: scroll;
}
.pro3Sec4_txtBox.scroll::-webkit-scrollbar {
    width: 4px;
}
.pro3Sec4_txt p{
	margin-top: 2%;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
	-webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	-ms-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.pro3Sec4_txt .publicBtn{
	margin-top: 6%;
	-webkit-transition-delay: 0.9s;
	-moz-transition-delay: 0.9s;
	-ms-transition-delay: 0.9s;
	-o-transition-delay: 0.9s;
	transition-delay: 0.9s;
}
.pro3Sec4_img{
	float: right;
	width: calc(48% - 40px);
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(102%);
    -ms-transform: translateX(102%);
    -o-transform: translateX(102%);
    transform: translateX(102%);
    -webkit-transition: all 1.2s ease-in-out;
	-moz-transition: all 1.2s ease-in-out;
	-ms-transition: all 1.2s ease-in-out;
	-o-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;
}
.pro3Sec4_img img{
	box-shadow: 0 0 30px rgba(0,0,0,0.35);
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
    -webkit-transition: all 0.6s ease-in-out 0.6s;
	-moz-transition: all 0.6s ease-in-out 0.6s;
	-ms-transition: all 0.6s ease-in-out 0.6s;
	-o-transition: all 0.6s ease-in-out 0.6s;
	transition: all 0.6s ease-in-out 0.6s;
}
.pro3Sec4_box.on .pro3Sec4_img{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}
/* simphony.html */

/* salesCaterig.html */
.pro4Sec2{
    padding: 100px 0;
    background: #366e7f url(../images/bgLine.png) top left repeat;
}
.pro4Sec2_list{
	margin-top: 60px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	align-items: flex-start;
}
.pro4Sec2_list li{
	width: 18%;
	padding: 20px;
	border-radius: 20px;
	background-color: #fff;
	text-align: center;
	margin-right: 2.5%;

    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.pro4Sec2.on .pro4Sec2_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.pro4Sec2_list li:nth-child(5n){
	margin-right: 0;
}
.pro4Sec2_list li:nth-child(n+6){
	margin-top: 2.5%;
}
.pro4Sec2_list p{
	/*margin-top: 20px;*/
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 1.8;
}

.pro4Sec3{
	padding: 100px 0;
}
.pro4Sec3_list{
	margin-top: 60px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	align-items: flex-start;
}
.pro4Sec3_list li{
	width: 32%;
	padding: 30px;
	border-radius: 20px;
    background: #366e7f url(../images/bgLine.png) top left repeat;
	text-align: center;
	margin-right: 2%;

    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.pro4Sec3.on .pro4Sec3_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.pro4Sec3_list li:nth-child(2n){
    background: #0a6a6d url(../images/bgLine.png) top left repeat;
}
.pro4Sec3_list li:nth-child(3n){
	margin-right: 0;
}
.pro4Sec3_list li:nth-child(n+4){
	margin-top: 2%;
}
.pro4Sec3_list p{
	margin-top: 20px;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
}

.pro4Sec4{
	padding: 100px 0;
	background-color: #f5f5f5;
	overflow: hidden;
}
.pro4Sec4_con{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.pro4Sec4_con::before,
.pro4Sec4_con::after{
	display: none;
}
.pro4Sec4_box{
	padding: 60px 40px;
	width: 32%;
	background-color: #fff;
	border-top: 10px solid #366e7f;
	text-align: center;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}
.pro4Sec4.on .pro4Sec4_box{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.pro4Sec4_box p{
	margin-top: 20px;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
	text-align: center;
}
/* salesCaterig.html */

/* materialsControl.html */
.pro5Sec1_right{
	width: 45%;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(102%);
    -ms-transform: translateX(102%);
    -o-transform: translateX(102%);
    transform: translateX(102%);
    -webkit-transition: all 1.2s ease-in-out;
	-moz-transition: all 1.2s ease-in-out;
	-ms-transition: all 1.2s ease-in-out;
	-o-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;
}
.pro2Sec1.on .pro5Sec1_right{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}
.pro5Sec1_swiper{
	
}
.pro5Sec1_swiper p{
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #808080;
	line-height: 1.8;
}
.pro5Sec1_pag{
	display: none;
}
.pro5Sec1_list{
	margin-top: 20px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}
.pro5Sec1_bottom.scroll{
	padding-bottom: 6px;
	overflow-x: scroll;
}
.pro5Sec1_bottom.scroll::-webkit-scrollbar{
	height: 6px;
}
.pro5Sec1_list li{
	width: 140px;
	height: 100px;
	padding: 20px;
	border-radius: 10px;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.pro5Sec1_list li.on{
	height: 103px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.1);
	background: #fff url(../images/roundRect.png) center/cover no-repeat;
}
.pro5Sec1_list li:nth-child(n+2){
	margin-left: 15px;
}

.pro5Sec3{
	padding: 100px 0;
}
.pro5Sec3_swiper{
	padding-bottom: 80px;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: all 1.2s ease-in-out;
	-moz-transition: all 1.2s ease-in-out;
	-ms-transition: all 1.2s ease-in-out;
	-o-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;
}
.pro5Sec3.on .pro5Sec3_swiper{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.pro5Sec3_pag{
	bottom: 10px!important;
}
.pro5Sec3_pag .swiper-pagination-bullet{
	margin: 0 20px!important;
	width: 8px;
	height: 8px;
	background-color: #919191;
	opacity: 1;
	filter: alpha(opacity=100);
}
.pro5Sec3_pag .swiper-pagination-bullet-active{
	background-color: #366e7f;
	position: relative;
}
.pro5Sec3_pag .swiper-pagination-bullet-active::after{
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid #999;
	position: absolute;
	top: -9px;
	left: -9px;
}
.pro5Sec3_box{
	padding: 60px 40px 80px;
	background-color: #fff;
	border-top: 10px solid #366e7f;
}
.pro5Sec3_box h6{
	margin: 30px 0 40px;
	font-size: 40px;
	color: #333;
}
.pro5Sec3_box p{
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
}
/* materialsControl.html */

/* localizedApplication */
.pro6Sec3 .pro5Sec3_swiper{
	margin-top: 60px;
	padding: 20px 0 60px;
}
.pro6Sec3 .pro2Sec3_txt{
	text-align: center;
}
/* localizedApplication */

/* product.html */
.productCon{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.productTxt{
	width: 420px;
	padding: 50px 30px 80px;
	border-top-right-radius: 50px;
	background-color: #366e7f;
}
.productTxt h5{
	font-size: 18px;
	color: #fff;
}
.productTxt h6{
	margin-top: 20px;
	font-size: 44px;
	color: #fff;
	line-height: 1.2;
}
.productTxt p{
	margin-top: 20px;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
	letter-spacing: 1px;
}
.productSec1_txt p{
	margin-top: 3%;
}

.productSec2{
	padding: 100px 0;
}
.productSec2_swiper{
	margin-top: 60px;
	padding-bottom: 100px;
}
.productSec2_box{
	background: #366e7f url(../images/bgLine.png) top left;
}
.productSec2_swiper .swiper-slide:nth-child(odd) .productSec2_box{
	background: #0a6a6d url(../images/bgLine.png) top left;
}
.productSec2_txt{
	padding: 25px 20px;
}
.productSec2_txt h6{
	font-size: 24px;
	color: #fff;
	letter-spacing: 1px;
}
.productSec2_txt p{
	margin-top: 10px;
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
	letter-spacing: 1px;
}
.productSec2_txt .p{
	margin-top: 10px;
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
	letter-spacing: 1px;
}
.productSec3{
	padding: 100px 0;
	background-color: #fff;
}
.productSec3_swiper{
	margin-top: 60px;
	padding-bottom: 100px;
}
.productSec3_box{
	padding: 40px 30px 60px;
	border: 1px solid #dfe8ec;
}
.productSec3_title h6{
	font-size: 14px;
	color: #808080;
	font-weight: bold;
}
.productSec3_title .line{
	margin-top: 10px;
	width: 46px;
	height: 4px;
	background-color: #e9e8e5;
}
.productSec3_txt{
	margin-top: 20px;
}
.productSec3_txt h6{
	font-size: 24px;
	color: #366e7f;
	font-weight: bold;
	letter-spacing: 1px;
}
.productSec3_txt p{
	margin-top: 20px;
	font-size: 16px;
	color: #4c4c4c;
	line-height: 1.8;
	letter-spacing: 1px;
    word-wrap: break-word;
}

.productSec3_txt .p{
	margin-top: 20px;
	font-size: 16px;
	color: #4c4c4c;
	line-height: 1.8;
	letter-spacing: 1px;
    word-wrap: break-word;
}

.productSec4{
	width: 100%;
	height: 140px;
	background-color: #0a6a6d;
}
.productSec4_box{
	width: 100%;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.productSec4_box h6{
	font-size: 24px;
	color: #fff;
	letter-spacing: 1px;
}
.productSec4_box a{
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.productSec4_box a img{
	margin-left: 40px;
}

.productSec{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(120px);
    -ms-transform: translateY(120px);
    -o-transform: translateY(120px);
    transform: translateY(120px);
}

.productSec.on{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
/* product.html */

/* solution.html */
.solutonSec1{
	padding: 100px 0;
	background-color: #fff;
}
.solutonSec_title{
	margin-top: 30px;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
    transform: translateY(60px);
}
.solutonSec.on .solutonSec_title{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.solutonSec_title p{
	font-family: 'Lato-Regular';
	font-size: 18px;
	color: #333;
	line-height: 2;
}
.solutonSec1_img{
	margin-top: 40px;
}
.solutonSec1_swiper{
	margin-top: 40px;
	padding-bottom: 80px;
}
.solutonSec1_img{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}
.solutonSec1_box{
	/*width: calc(50% - 20px);*/
	padding: 30px 20px 60px;
	background-color: #f5f5f5;
	position: relative;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}
.solutonSec.on .solutonSec1_box,
.solutonSec.on .solutonSec1_img{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.solutonSec1_box h6{
	font-size: 24px;
	color: #366e7f;
}
.solutonSec1_box p{
	margin-top: 10px;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
}
.solutonSec1_box .publicBtn{
	position: absolute;
	left: 20px;
	bottom: 30px;
}
.solutonSec1_box .publicBtn a{
	padding-bottom: 0;
	color: #366e7f;
	border-color: #366e7f;
}

.solutonSec_box{
	margin-top: 60px;
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.solutonSec_img{
	width: 28%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.solutonSec.on .solutonSec_img{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.solutonSec_list{
	margin: 0 0 0 auto;
	width: 67%;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.solutonSec_list li{
	width: calc(50% - 20px);
	padding: 30px 20px 60px;
	background-color: #f5f5f5;
	position: relative;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}
.solutonSec.on .solutonSec_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.solutonSec_list li:nth-child(n+3){
	margin-top: 40px;
}
.solutonSec_list h6{
	font-size: 24px;
	color: #366e7f;
}
.solutonSec_list p{
	margin-top: 10px;
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 2;
}
.solutonSec_list .publicBtn{
	position: absolute;
	left: 20px;
	bottom: 30px;
}
.solutonSec_list .publicBtn a{
	padding-bottom: 0;
	color: #366e7f;
	border-color: #366e7f;
}

.solutonSec2{
	height: 50vh;
	position: relative;
}
.solutonSec2::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
}

.solutonSec3{
	padding: 100px 0;
}
.solutonSec3_img{
	left: auto;
	right: 0;

	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
}
.solutonSec3_list{
	margin: 0 auto 0 0;
}
.solutonSec3_list li{
	background-color: #fff;
}
/* solution.html */

/* education.html */
.educationSec2{
	padding: 100px 20% 100px 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.educationSec2_txt{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
}
.educationSec.on .educationSec2_txt{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.educationSec2_txt h6{
	font-size: 40px;
	color: #fff;
	margin-bottom: 40px;
}
.educationSec2_txt p{
	margin-top: 20px;
	font-size: 16px;
	color: #fff;
}

.educationSec3_txt{
	margin-top: 30px;
}
.educationSec3_txt p{
	margin-top: 10px;
	font-size: 16px;
	color: #4c4c4c;
	line-height: 1.8;
	text-align: center;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.educationSec.on .educationSec3_txt p{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.educationSec3 li{
	width: calc(20% - 28px);
}
.educationSec3 li:nth-child(3n){
	margin-right: 30px;
}
.educationSec3 li:nth-child(5n){
	margin-right: 0;
}
.educationSec3 li:nth-child(n+4){
	margin-top: 0;
}
.educationSec3 li:nth-child(n+6){
	margin-top: 30px;
}

.educationSec4{
	padding: 100px 0;
	background: #0a6a6d url(../images/bgLine.png) top left repeat;
}
.educationSec4_box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.educationSec4_box .educationSec2_txt{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.educationSec4.on .educationSec2_txt{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.educationSec4_img{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
}
.educationSec4.on .educationSec4_img{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

.educationSec5{
	padding: 100px 0;
	background-color: #f2f2f2;
}
.educationSec5_list{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}
.educationSec5_list li{
	margin-top: 60px;
	margin-right: 10%;
	width: 12%;
	padding: 0 10px;
	text-align: center;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
    transform: translateY(60px);
}
.educationSec5.on .educationSec5_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.educationSec5_list li:nth-child(5n){
	margin-right: 0;
}
.educationSec5_icon{
    width: 40%;
}
.educationSec5_icon img{
    width: 100%;
}
.educationSec5_txt{
	margin-top: 10px;
}
.educationSec5_txt p{
	font-size: 16px;
	color: #4c4c4c;
}

.educationSec7{
	padding: 100px 0;
	background-color: #f2f2f2;
}
.educationSec7_list{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.educationSec7_list li{
	margin-top: 60px;
	margin-right: 2%;
	padding: 60px 20px;
	width: 23.5%;
	background-color: #fff;
	border-top: 10px solid #366e7f;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.educationSec7.on .educationSec7_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.educationSec7_list li:nth-child(4n){
	margin-right: 0;
}
.educationSec7_icon{
	margin: 0 auto;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #0a6a6d;
	font-size: 36px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.educationSec7_list li:nth-child(2n) .educationSec7_icon{
	background-color: #366e7f;
}
.educationSec7_txt{
	margin-top: 20px;
}
.educationSec7_txt p{
	font-size: 16px;
	color: #333;
	line-height: 1.6;
}
/* education.html */

/* support.html */
.supportSec1{
	padding: 100px 0;
}
.supportSec1_box{
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.supportSec1_txt{
	width: 50%;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	-ms-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.supportSec1_txt p{
	font-family: 'Lato-Regular';
	font-size: 24px;
	color: #4c4c4c;
	line-height: 2;
}
.supportSec1_list{
	margin-top: 4%;
}
.supportSec1_list li{
	margin-bottom: 2%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.supportSec1_list li span{
	margin-left: 20px;
	width: calc(100% - 50px);
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
}
.supportSec1_img{
	width: 48%;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	-ms-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.supportSec1.on .supportSec1_txt,
.supportSec1.on .supportSec1_img{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    -webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}

.supportSec2{
	padding: 20vh 0;
	position: relative;
	z-index: 0;
}
.supportSec2::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.supportSec3{
	padding: 100px 0;
}
.supportSec3_list{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.supportSec3_list li{
	width: calc(50% - 20px);
	padding: 6% 4% 4%;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}
.supportSec3.on .supportSec3_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.supportSec3_list li:nth-child(n+3){
	margin-top: 40px;
}
.supportSec3_list h6{
	font-size: 24px;
	color: #366e7f;
	margin-bottom: 4%;
}
.supportSec3_list p{
	margin-top: 2%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.supportSec3_list span{
	margin-left: 20px;
	width: calc(100% - 50px);
	font-family: 'Lato-Regular';
	font-size: 16px;
	color: #4c4c4c;
	line-height: 1.8;
}
/* support.html */

/* career.html */
.careerSec2{
	padding: 100px 0;
}
.careerSec2_list{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.careerSec2_list li{
	width: calc(33.33% - 30px);
	padding: 30px 50px;
	background-color: #fff;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: all 1.6s ease-in-out;
	-moz-transition: all 1.6s ease-in-out;
	-ms-transition: all 1.6s ease-in-out;
	-o-transition: all 1.6s ease-in-out;
	transition: all 1.6s ease-in-out;
}
.careerSec2.on .careerSec2_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.careerSec2_list li:nth-child(n+2){
	margin-left: 45px;
}
.careerSec2_icon{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: #366e7f;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.careerSec2_list h6{
	margin-top: 30px;
	font-size: 18px;
	color: #333;
}
.careerSec2_list li>p{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e6e6e6;
}
.careerSec2_txt{
	margin-top: 20px;
}
.careerSec2_list p{
	font-family: 'Lato-Regular';
	font-size: 14px;
	color: #808080;
	line-height: 2;
}
/* career.html */

/* contact.html */
.contactSec1{
	padding: 100px 0;
}
.contactSec1_list{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.contactSec1_list li{
	width: calc(33.33% - 30px);
	padding: 40px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
	position: relative;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: all 1.6s ease-in-out;
	-moz-transition: all 1.6s ease-in-out;
	-ms-transition: all 1.6s ease-in-out;
	-o-transition: all 1.6s ease-in-out;
	transition: all 1.6s ease-in-out;
}
.contactSec1.on .contactSec1_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.contactSec1_list li:nth-child(n+2){
	margin-left: 45px;
}
.contactSec1_list li::before,
.contactSec1_list li::after{
	content: '';
	display: block;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background-color: #366e7f;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.15;
    -moz-opacity: 0.15;
    -khtml-opacity: 0.15;
    -webkit-opacity: 0.15;
    filter: alpha(opacity=15);
}
.contactSec1_list li::before{
	-webkit-transform: translate(-35%, -35%);
	-ms-transform: translate(-35%, -35%);
	-o-transform: translate(-35%, -35%);
	transform: translate(-35%, -35%);
}
.contactSec1_list li::after{
	-webkit-transform: translate(20%, -75%);
	-ms-transform: translate(20%, -75%);
	-o-transform: translate(20%, -75%);
	transform: translate(20%, -75%);
}
.contactSec1_list h6{
	margin: 20px 0;
	font-size: 24px;
	color: #366e7f;
}
.contactSec1_list p{
	font-family: 'Lato-Regular';
	font-size: 18px;
	color: #4c4c4c;
	line-height: 1.8;
	text-align: center;
}

.contactSec2{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.contactSec2.on{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.contactSec2_map{
	width: 100%;
	height: 500px;
}

.contactSec3{
	padding: 100px 0;
}
.contactSec3_list{
	margin-top: 60px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contactSec3_list li{
	width: calc(50% - 20px);
	padding: 6%;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	overflow: hidden;
	position: relative;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: all 1.6s ease-in-out;
	-moz-transition: all 1.6s ease-in-out;
	-ms-transition: all 1.6s ease-in-out;
	-o-transition: all 1.6s ease-in-out;
	transition: all 1.6s ease-in-out;
}
.contactSec3.on .contactSec3_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.contactSec3_list li:nth-child(2n){
	margin-left: 40px;
}
.contactSec3_list li:nth-child(n+3){
	margin-top: 40px;
}
.contactSec3_list h6{
	font-size: 24px;
	color: #366e7f;
	margin-bottom: 20px;
}
.contactSec3_list p{
	margin-top: 10px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.contactSec3_list p img{
	-webkit-transform: translateY(4px);
	-ms-transform: translateY(4px);
	-o-transform: translateY(4px);
	transform: translateY(4px);
}
.contactSec3_list p:nth-child(3) img{
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.contactSec3_list p span{
	display: block;
	width: calc(100% - 40px);
	font-family: 'Lato-Regular';
	font-size: 18px;
	color: #4c4c4c;
	line-height: 1.8;
}
/* contact.html */



@media(max-width:1760px) {

}
@media(max-width:1680px) {

}
@media(max-width:1600px) {
	.pro3Sec4_txtBox{
		height: 252px;
	}
}
@media(max-width:1520px) {

}
@media(max-width:1440px) {
	.headerDown2 a,
	.headerDown div span{
		line-height: 44px;
	}
	.indBaner_txt h6 {
		font-size: 36px;
	}
	.indSec1_top h6 {
		font-size: 80px;
	}
	.indSec1_left p {
		font-size: 32px;
	}
	.indSec1_img {
		width: 30%;
	}
	.indSec2_txt p {
		font-size: 17px;
	}
	.floatBox h6 {
		font-size: 24px;
	}
	.floatBox p,  .floatBtn input {
		font-size: 20px;
	}
	.floatInput input,  .floatTextarea textarea {
		font-size: 12px;
	}
	
	.comment_title h6,
	.pro1Sec1_txt h6,
	.pro1Sec2_txt h6,
	.pro1Sec3_title,
	.pro1Sec4_txt p,
	.pro1Sec5_box h6,
	.pro2Sec1_txt h6,
	.pro5Sec3_box h6{
		font-size: 30px;
	}
	.comment_title p{
		font-size: 22px;
	}
	.pro1Sec1_txt p,
	.pro1Sec2_txt p,
	.pro1Sec5_box p,
	.pro2Sec1_txt p,
	.pro5Sec3_box p,
	.introSec1_box p{
		font-size: 16px;
	}

	.pro2Sec2_icon{
		width: 140px;
		height: 140px;
	}

	.pro3Sec4_txtBox{
		height: 126px;
	}
	
	.productTxt{
	    width: 60%;
	    padding: 20px 30px 40px;
	}
	.productTxt h6 {
        font-size: 32px;
	}
}
@media(max-width:1360px) {

}
@media(max-width:1280px) {
    
}
@media(max-width:1200px) {
    .productTxt {
        width: 70%;
        padding: 40px 30px;
    }
    .productTxt h6{
        font-size: 24px;
    }
}
@media(max-width:768px) {
	.row,  .row>div {
		margin: 0;
		padding: 0;
	}
	.navbar-nav {
		width: 100%;
		margin-left: 0px;
		text-transform: uppercase;
	}
	.navbar-nav li {
		text-align: center;
		border-bottom: 1px dotted #e5e5e5;
		line-height: 40px;
	}
	.navbar-nav li a {
		color: #333;
		font-size: 12px;
	}
	.navbar-nav li a:hover {
		color: #0752a4;
	}
	.collapse_lis li a{
		color: #999;
	}
	.headerbg {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		z-index: 999999;
		background: #fff;
		-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	}
	.logo_boxlist {
	    float: left;
	    width: 180px;
	    margin-top: 12px;
	}
	.navbar-toggle {
		margin-top: 10px;
	}
	.navbar-toggle .icon-bar {
		background-color: #000;
	}
	.navbar-collapse {
		border-top: 1px solid #e5e5e5;
		overflow-y: scroll;
    	max-height: 100vh;
	}

	.collapse_lis,
	.collapse_lis2{
		display: none;
	}

	.newsDetail_con{
		padding: 40px 3%;
	}

	.footer{
		padding: 0;
	}
	.footerTop{
		display: none;
	}
	.copy{
		margin-top: 0;
		padding: 10px 0;
	}
	.floatBox {
	    width: 94vw;
	    padding: 20px;
	    border-radius: 2vw;
	    position: absolute;
	    right: 2vw;
    	bottom: calc(6vw + 70px);
	}
	.floatClose{
		width: 14px;
		top: 10px;
		right: 10px;
	}
	.floatBox h6{
		font-size: 22px;
	}
	.floatBox p, .floatBtn input{
		font-size: 16px;
		font-weight: normal;
	}
	.floatForm{
		margin-top: 10px;
	}
	.floatInput input,
	.floatBtn input{
		height: 30px;
		font-weight: normal;
	}
	.floatInput input{
		margin-bottom: 10px;
	}
	.floatTextarea textarea{
		height: 60px;
	}

	.indBaner_txt h6 {
	    font-size: 24px;
	}
	.indBaner_txt p {
	    margin-top: 10px;
	    font-size: 12px;
	}
	.indBaner_txt .line {
    	margin: 20px auto 0;
    }

    .bannerImg img{
    	width: auto;
    	height: 300px;
    }
    .banerTxt{
    	padding-top: 52px;
    }
    .banerTxt h6{
    	font-size: 24px;
    }
    .banerTxt p{
    	font-size: 14px;
    	letter-spacing: 1px;
    }

    /* index.html */
	.indSec1{
		padding: 40px 0;
		display: block;
	}
	.indSec1_left{
		width: 100%;
	}
	.indSec1_top h6{
		font-size: 40px;
	}
	.indSec1_left p{
		margin-top: 3%;
		font-size: 16px;
	}
	.indSec1_right{
		margin-top: 20px;
		width: 100%;
		height: 300px;
	}
	.indSec1_bottom{
		width: 100%;
		align-items: flex-end;
		position: relative;
		bottom: 0;
	}

	.indSec2{
		padding: 60px 0;
	}
	.indSec2::after{
	    width: 65px;
	    height: 58px;
	    bottom: 0;
	}
	.indSec2 .container{
		display: block;
	}
	.indSec2_img{
		width: 60%;
		margin: 0 auto;
	}
	.indSec2_img::before{
	    width: 65px;
	    height: 58px;
	}
	.indSec2_txt{
		margin: 40px 0 0;
		width: 100%;
	}
	.indSec2_txt h6{
		font-size: 24px;
		text-align: center;
	}
	.indSec2_txt .line{
		margin: 20px auto;
	}
	.indSec2_txt p{
		font-size: 14px;
		text-align: center;
	}

	.indSec3{
		padding: 40px 0;
	}
	.indSec3_title h6{
		font-size: 22px;
	}
	.indSec3_title p{
		font-size: 14px;
	}
	.indSec3_swiper{
		margin-top: 0;
		padding: 20px 0 40px;
	}
	.pro5Sec3_pag .swiper-pagination-bullet,
	.indSec5_pag .swiper-pagination-bullet,
	.indSec3_pag .swiper-pagination-bullet{
		margin: 0 10px!important;
	}
	.pro5Sec3_pag .swiper-pagination-bullet::after,
	.indSec5_pag .swiper-pagination-bullet::after,
	.indSec3_pag .swiper-pagination-bullet::after {
	    width: 22px;
	    height: 22px;
	    top: -7px;
	    left: -7px;
	}
	.indSec3_txt p{
		margin-top: 3%;
	}

	.indSec4_img{
		width: 100%;
		height: 250px;
		position: relative;
	}
	.indSec4_txt{
		width: 100%;
		padding: 40px 15px;
	}
	.indSec4_txt h6{
		font-size: 22px;
	}
	.indSec4_txt p{
		font-size: 14px;
	}
	.indSec4_txt .publicBtn{
		margin-top: 20px;
	}

	.indSec5{
		padding: 40px 0;
	}
	.indSec5_title h6{
		font-size: 22px;
	}
	.indSec5_title .publicBtn{
		width: 70px;
	}
	.indSec5_swiper{
		margin-top: 0;
		padding: 40px 0 80px;
	}
	.indSec5_box{
		padding: 0;
	}
	.indSec5_txt p{
		font-size: 12px;
		height: auto;
	}
    /* index.html */

    /* news.html */
    .newsSec{
    	padding: 40px 0;
    }
    .comment_title h6, 
    .pro1Sec1_txt h6, 
    .pro1Sec2_txt h6, 
    .pro1Sec3_title, 
    .pro1Sec4_txt p, 
    .pro1Sec5_box h6, 
    .pro2Sec1_txt h6, 
    .pro5Sec3_box h6{
    	font-size: 22px;
    }
    .comment_title p{
    	font-size: 16px;
    }
    .newsSec_list{
		margin-top: 30px;
    }
    .newsSec_list li{
    	width: 100%;
    	margin-right: 0;
    	margin-bottom: 20px;
    }
    .newsSec_txt h6{
    	font-size: 16px;
    	height: auto;
    }
    .newsSec_txt p{
    	margin-top: 10px;
    	font-size: 14px;
    	height: auto;
    }
    .newsDetail{
		padding: 40px 0;
    }
    .newsSec_title h6{
    	font-size: 22px;
    }
    .newsSec_title p{
    	margin-top: 10px;
    	font-size: 14px;
    }
    .newsSec_box {
	    margin-top: 30px;
	    padding: 20px 0;
	}
	.newsSec_box p{
		font-size: 14px;
	}
	.newsSec_return{
		margin-top: 40px;
	}
	.newsSec_return a {
	    width: 140px;
	    height: 42px;
	    font-size: 16px;
	    line-height: 42px;
	}
    /* news.html */

    /* intro.html */
	.introSec1{
		padding: 40px 0;
	}
	.introSec1_box img{
		width: 100%;
		float: none;
	}
	.pro1Sec1_txt p, .pro1Sec2_txt p, .pro1Sec5_box p, .pro2Sec1_txt p, .pro5Sec3_box p, .introSec1_box p {
	    font-size: 14px;
	}
	.introSec1_box p,
	.introSec1_box p:nth-child(n+3){
		margin-top: 10px;
	}
	.pro2Sec1{
		padding: 40px 0;
	}
	.pro1Sec1_box{
		display: block;
	}
	.pro2Sec1_txt{
		width: 100%;
	}
	.pro2Sec1_img{
		margin-top: 20px;
		width: 100%;
	}
    /* intro.html */
	
	/* team.html */
	.teamSec1{
		padding: 40px 0;
	}
	.teamSec1_swiper{
		margin-top: 40px;
		padding-bottom: 60px;
	}
	.teamSec1_img h6{
		font-size: 22px;
		margin-top: 10px;
	}
	.teamSec1_txt h6{
		font-size: 22px;
	}
	.teamSec2{
		height: 250px;
	}
	.teamSec2_box {
	    width: 90%;
	}
	.teamSec3{
		padding: 40px 0;
	}
	.teamSec3 p{
		font-size: 14px;
	}
	/* team.html */

	/* certificate.html */
	.certificateSec{
		padding: 40px 0;
	}
	.certificate_swiper {
	    margin-top: 40px;
	    padding-bottom: 60px;
	}
	.certificate_box{
		padding: 10px;
	}
	.certificate_txt p{
		font-size: 14px;
	}
	/* certificate.html */

	/* custmer.html */
	.custmerSec1{
		padding: 40px 0;
	}
	.custmerChose{
		margin-top: 30px;
	}
	.custmerChose li {
	    margin: 0 10px;
	    width: auto;
    	padding: 0 14px;
	    height: 42px;
	    font-size: 14px;
	    line-height: 42px;
	}
	.custmerList{
		margin-top: 40px;
	}
	.custmerList li {
	    width: 48%;
	    margin-right: 4%;
	}
	.custmerList li:nth-child(2n){
		margin-right: 0;
	}
	.custmerList li:nth-child(n+3){
		margin-top: 20px;
	}
	.indSec5_txt{
		margin-top: 10px;
	}
	/* custmer.html */

	/* product.html */
	.pro1Sec1{
		padding: 40px 0;
	}
	.pro1Sec1_box{
		display: block;
	}
	.pro1Sec1_txt{
		margin-top: 30px;
		width: 100%;
	}
	.pro1Sec1_img{
		width: 100%;
		margin-top: 30px;
	}
	.pro1Sec2{
		padding: 40px 0;
	}
	.pro1Sec3{
		padding: 40px 0;
	}
	.pro1Sec3_list{
		margin-top: 40px;
		display: block;
	}
	.pro1Sec3_list li{
		width: 100%;
	}
	.pro1Sec3_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.pro1Sec3_txt{
		padding: 20px;
	}
	.pro1Sec3_txt h6{
		height: auto;
		font-size: 18px;
		line-height: 1.4;
	}
	.pro1Sec3_txt p{
		font-size: 14px;
		line-height: 1.6;
	}
	.pro1Sec4_box{
		height: 250px;
	}
	.pro1Sec4_txt{
		left: 5%
	}
	.pro1Sec5{
		padding: 40px 0;
	}
	.pro1Sec5_con{
		display: block;
	}
	.pro1Sec5_box{
		width: 100%;
		padding: 30px 20px;
	}
	.pro1Sec5_box:nth-child(n+2){
		margin-top: 20px;
	}

	.pro2Sec1_box{
		display: block;
	}
	.pro2Sec1_img{
		margin-top: 30px;
	}

	.pro2Sec2{
		padding: 40px 0;
	}
	.pro2Sec2_list{
		margin-top: 40px;
		display: block;
	}
	.pro2Sec2_list li,
	.pro2Sec3_list li{
		width: 100%;
		margin-right: 0;
	}
	.pro2Sec3_list li:nth-child(n+2),
	.pro2Sec2_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.pro2Sec2_icon {
	    width: 80px;
	    height: 80px;
	}
	.pro2Sec2_icon img{
	    width: 40px;
	}
	.pro2Sec3_txt h6,
	.pro2Sec2_txt h6{
		font-size: 16px;
	}
	.pro2Sec3_txt p,
	.pro2Sec2_txt p{
		font-size: 14px;
	}

	.pro2Sec3{
		padding: 40px 0;
	}
	.pro2Sec3_list{
		margin-top: 40px;
		display: block;
	}
	.pro2Sec3_icon{
		width: 120px;
		height: 120px;
	}
	.pro2Sec3_icon img{
		width: 60px;
	}

	.pro3Sec4,
	.pro3Sec4_box{
		padding: 40px 0;
	}
	.pro3Sec4_txt,
	.pro3Sec4_img{
		width: 100%;
		float: none;
	}
	.pro3Sec4_txtBox{
		height: 120px;
	}
	.pro3Sec4_txt h6{
		font-size: 22px;
	}
	.pro3Sec4_txt p{
		font-size: 14px;
		line-height: 1.6;
	}
	.pro3Sec4_img{
		margin-top: 30px;
	}
	.pro5Sec3,
	.pro4Sec4,
	.pro4Sec3,
	.pro4Sec2{
		padding: 40px 0;
	}
	.pro4Sec4_con,
	.pro4Sec3_list,
	.pro4Sec2_list{
		margin-top: 40px;
		display: block;
	}
	.pro4Sec4_con .pro4Sec4_box,
	.pro4Sec3_list li,
	.pro4Sec2_list li{
		width: 100%;
		margin-right: 0;
	}
	.pro4Sec4_con .pro4Sec4_box:nth-child(n+2),
	.pro4Sec3_list li:nth-child(n+2),
	.pro4Sec2_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.pro4Sec4_box p,
	.pro4Sec2_list p,
	.pro4Sec3_list p{
		font-size: 14px;
		margin-top: 0;
	}
	.pro5Sec3_box,
	.pro4Sec3_list li,
	.pro4Sec4_box{
		padding: 20px;
	}

	.pro5Sec1_right{
		margin-top: 30px;
		width: 100%;
	}
	.pro5Sec1_list li{
		padding: 10px;
		width: 72px;
		height: 50px;
	}
	.pro5Sec1_list li.on{
		height: 52px;
	}
	.pro5Sec3_box h6{
		margin: 10px 0 20px;
	}
	.pro5Sec3_swiper{
		padding-bottom: 60px;
	}
	.pro5Sec1_swiper p{
		font-size: 14px;
	}

	.pro6Sec3 .pro5Sec3_swiper{
		margin-top: 0;
		padding: 30px 0 40px;
	}
	.productSec3,
	.productSec2{
		padding: 40px 0;
	}
	.productSec3_swiper,
	.productSec2_swiper {
	    margin-top: 40px;
	    padding-bottom: 60px;
	}
	.productSec3_txt h6,
	.productSec2_txt h6{
		font-size: 18px;
	}
	.productSec3_txt p,
	.productSec2_txt p{
		font-size: 14px;
		font-weight: normal;
	}
	.productSec3_box{
		padding: 20px 20px 40px;
	}
	.productSec4,
	.productSec4_box{
		height: auto;
		display: block;
	}
	.productSec4_box{
		padding: 20px 0;
	}
	.productSec4_box h6{
		font-size: 18px;
	}
	.productSec4_box a{
		margin-top: 10px;
		justify-content: flex-start;
	}
	.productSec4_box a img{
		margin-left: 20px;
	}
	/* product.html */

	/* solution.html */
	.productCon{
		width: 80%;
		padding: 0;
		top: auto;
		left: 3%;
		bottom: 30px;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	.productTxt{
		width: 100%!important;
		padding: 20px 10px;
    	border-top-right-radius: 25px;
	}
	.productTxt h5 {
	    font-size: 14px;
	    color: #fff;
	}
	.productTxt h6{
		font-size: 22px;
		margin-top: 10px;
	}
	.productTxt p{
		margin-top: 10px;
		font-size: 12px;
		letter-spacing: 0;
	}

	.solutonSec1{
		padding: 40px 0;
	}
	.solutonSec_title{
		margin-top: 20px;
	}
	.solutonSec_title p{
		font-size: 14px;
		line-height: 1.6;
	}
	.solutonSec1_box h6{
		font-size: 18px;
	}
	.solutonSec1_box p{
		font-size: 14px;
		line-height: 1.8;
	}
	.solutonSec1_swiper{
		padding: 0;
	}
	.solutonSec2{
		height: 250px;
	}
	.solutonSec3{
		padding: 40px 0;
	}
	.solutonSec_box{
		margin-top: 40px;
		display: block;
	}
	.solutonSec3_list{
		width: 100%;
	}
	.solutonSec_list li{
		width: 100%;
		padding: 20px;
	}
	.solutonSec_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.solutonSec_list h6{
		font-size: 18px;
	}
	.solutonSec_list p{
		font-size: 14px;
		line-height: 1.8;
	}
	.solutonSec3_img{
		width: 100%;
		position: relative;
	}
	/* solution.html */

	/* support.html */
	.supportSec1{
		padding: 40px 0;
	}
	.supportSec1_box{
		margin-top: 40px;
		display: block;
	}
	.supportSec1_txt{
		width: 100%;
	}
	.supportSec1_txt p{
		font-size: 18px;
		font-weight: bold;
	}
	.supportSec1_img{
		width: 100%;
		margin-top: 20px;
	}
	.supportSec3{
		padding: 40px 0;
	}
	.supportSec3_list li{
		width: 100%;
		padding: 20px;
	}
	.supportSec3_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.supportSec3_list h6{
		font-size: 18px;
		font-weight: bold;
	}
	.supportSec3_list span{
		font-size: 14px;
	}
	/* support.html */

	/* contact.html */
	.contactSec1{
		padding: 40px 0;
	}
	.contactSec1_list{
		margin-top: 40px;
		display: block;
	}
	.contactSec1_list li{
		width: 100%;
		padding: 20px;
	}
	.contactSec1_list li:nth-child(n+2){
		margin-top: 20px;
		margin-left: 0;
	}
	.contactSec1_list li img{
		width: 30px;
	}
	.contactSec1_list h6 {
	    margin: 20px 0 10px;
	    font-size: 18px;
	    color: #366e7f;
	}
	.contactSec1_list p{
		font-size: 16px;
	}
	.contactSec2_map{
		height: 350px;
	}

	.contactSec3{
		padding: 40px 0;
	}
	.contactSec3_list{
		margin-top: 40px;
		display: block;
	}
	.contactSec3_list li{
		width: 100%;
	}
	.contactSec3_list li:nth-child(n+2){
		margin: 20px 0 0!important;
	}
	.contactSec3_list li:nth-child(4n - 3){
		margin-top: 0!important;
	}
	.contactSec3_list h6{
		font-size: 18px;
		font-weight: bold;
	}
	.contactSec3_list p{
		align-items: center;
	}
	.contactSec3_list p img{
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	.contactSec3_list p span{
		font-size: 14px;
	}
	.contactSec3_pag{
		margin-top: 40px!important;
	}
	/* contact.html */

	/* career.html */
	.careerSec2{
		padding: 40px 0;
	}
	.careerSwiper{
		padding-bottom: 0 0 80px!important;
	}
	.careerSec2_list{
		margin-top: 40px;
	}
	.careerSec2_list li{
		padding: 20px!important;
	}
	.careerSec2_icon{
		width: 100px;
		height: 100px;
	}
	.careerSec2_icon img{
		width: 60px;
	}
	.careerSec2_list h6{
		margin-top: 20px;
		text-align: center;
	}
	.careerSec2_txt{
		height: 380px!important;
	}
	.careerSec2_txt::-webkit-scrollbar{
		display: block;
	}
	/* career.html */

}
 @media (min-width: 768px) {
	.container {
		margin: 0 auto;
		padding: 0;
	}
}
@media (min-width: 1440px) {
	.container {
		width: 1280px;
	}
}
@media (min-width: 1600px) {
	.container {
		width: 1440px;
	}
}
