:root {
	--bg-color: radial-gradient(circle, var(--blue) 30%, #002274);
	--iconbg: linear-gradient(#3f89f4, #0064c8);
	--blue: var(--blue);
	--white: #ffffff;
	--text-color: #666;
	--gray: #f5f5f7;
	--box-shadow: 0px 0 12px 0 rgba(0, 0, 0, 0.2);
	--font-family: Helvetica, Arial, "Microsoft YaHei", "微软雅黑", sans-serif;
	--border-radius: 0px;
	--transition: all 0.3s ease;
	--border-color:#e3e1e1;
	--purple:#834cf1;

}

body {
	background: var(--white);
	color: #666666;
	font-size: 16px;
	line-height: 30px;
}

a {
	color: #111;
	text-decoration: none;
}

a:hover {
	color: var(--blue);
	text-decoration: none;
}
.center{
	text-align: center;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #37517e;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #37517e;
	border-top-color: var(--white);
	border-bottom-color: var(--white);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


.main-img {
	display: block;
	position: relative;
	text-align: center;
	margin: 0 auto;
}
.main-img img {
	text-align: center;
	width: 90%;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #007AFF;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 24px;
	color: var(--white);
	line-height: 0;
}

.back-to-top:hover {
	background: springgreen;
	color: var(--white);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 2px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
	background: linear-gradient(45deg, #50318e, #834cf1);
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#header .logo a {
	color: var(--white);
}

#header .logo img {
	max-height: 40px;
}

#header1 {
	transition: all 0.5s;
	z-index: 997;
	padding: 2px 0;
	/* background: linear-gradient(45deg, #e600f6,#6500ca); */
	background: linear-gradient(45deg, #50318e, #834cf1);
}
#header1 .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#header1 .logo img {
	max-height: 40px;
}

.me-auto {
    margin-right: auto !important;
}
.d-flex {
    display: flex !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
	text-transform: uppercase;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 14px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: springgreen;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	color: var(--white);
	font-size: 16px;
	border: 2px solid #47b2e4;
	font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: var(--white);
	background: #31a9e1;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: var(--white);
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: var(--border-radius);
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
	color: #0c3c53;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: greenyellow;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: var(--white);
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: var(--white);
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(40, 58, 90, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 5px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: var(--white);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 16px;
	color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
	color: #37517e;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: var(--white);
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 16px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/* --------------------自定义-------------------------- */
section {
	padding: 60px 0;
	overflow: hidden;
}

/* ---------------------------------------------- */
.section-title {
	font-size: 32px;
	color: #666;
	font-weight: 400;
	text-align: center;
	margin-bottom: 30px;
	/* text-transform: uppercase; */
}

.section-title p {
	font-size: 16px;
	color: #666;
	text-align: center;
	margin-bottom: 5px;
	padding-left: 10%;
	padding-right: 10%;
	margin: auto;
}


@media (max-width: 768px) {
	.section-title p {
		padding-left: 5px;
		padding-right: 5px;
		margin: auto;
	}
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#Home {
	width: 100%;
	height: 100vh;
	background-image: url(../../img/bg7.jpg);
	background-image: -webkit-image-set(
	  url(../../img/bg7.webp) 1x,
	  url(../../img/bg7.jpg) 1x
	);
	background-image: image-set(
		url(../../img/bg7.webp) 1x,
		url(../../img/bg7.jpg) 1x 
	);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	/* background: url(../../img/bg7.jpg) no-repeat scroll center center; */
	position: relative;
}


#Home:before {
	content: "";
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#Home .container {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;

}

#Home h1 {
	margin: 20px 0 20px 0;
	font-size: 48px;
	font-weight: 400;
	line-height: 60px;
	text-transform: uppercase;
	color: var(--white);
}


#Home h4 {
	margin: 30px 0 10px 0;
	font-size: 30px;
	font-weight: 500;
	line-height: 50px;
	text-transform: uppercase;
	color: var(--white);
}


@media (max-width: 768px) {
	#Home h1 {
		font-size: 28px;
		line-height: 36px;
	}

	#Home h2 {
		font-size: 24px;
	}

	#Home h4 {
		font-size: 18px;
		width: 95%;
		line-height: 30px;
	}

	#Home img {
		width: 50%;

	}
}

.btn-get-started {
	background: var(--purple);
	/* font-family: "Poppins", sans-serif; */
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 28px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px;
	/* border: 2px solid var(--white); */
	color: var(--white);
	min-width: 200px;
}

.btn-get-started:hover {
	background: #FAA43D;
	/* border: 2px solid var(--white); */
	color: var(--white);
}

.btn-wsgl {
	background: var(--purple);
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 28px;
	border-radius: 12px;
	transition: 0.5s;
	margin: 10px 0px;
	color: var(--white);
	min-width: 100px;
}

.btn-wsgl:hover {
	background: #FAA43D;
	color: var(--white);
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

.fixed-bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
}

.sticky-top {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1020;
}

.sticky-bottom {
	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	z-index: 1020;
}

/* mid-header */

.mid-header {
	background: #f5f5f7;
	padding: 60px 0;
}

.mid-header .container {
	margin-top: 30px;
	color: #111;
	text-align: center;
	text-transform: uppercase;
}

.mid-header .container h1 {
	margin-top: 30px;
	color: #111;
	text-align: center;
	text-transform: uppercase;
}

.mid-header .container p {
	margin-bottom: 0;
	font-weight: 300;
	line-height: 1.4;
	text-align: center;
	color: #111;
}


/* ----适用于所有卡片位置------------ */
.card-box {
	display: flex;
	justify-content: space-between;
}

.box-con {
	flex: 1;
	display: block;
	position: relative;
	border-radius: var(--border-radius);
	background-color: var(--white);
	border: 1px solid var(--border-color);
	/* box-shadow: 0px 0 15px 0 rgba(0, 0, 0, 0.2); */

}
.box-con img {
	display: block;
	text-align: center;
	position: relative;
	width: 100%;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}
.box-con .title {
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 22px;
	height: 54px;
	background: var(--white);
	color: #666;
	font-weight: 500;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	border-top: #834cf1 4px solid;
	border-bottom: #ebebeb 1px solid;
}
.box-con .content {
	padding: 12px;
	border-radius: var(--border-radius);
}
.box-con p {
	margin: auto 0;
}


/* Service*/
#service {
	background: var(--white);
	padding: 60px 0;
}


#itsystem {
	padding: 60px 0;
	background: #f5f5f7;
}

#edi {
	padding: 20px 0;
	background: #f5f5f7;
}


#support {
	background: var(--white);
	padding: 60px 0;
}



#about-us {
	background: #f5f5f7;
	padding: 60px 0;
}



/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
	background: #f5f5f7;
	padding: 50px 0 60px;
}

.counts .count-box {
	padding: 30px 30px 25px 30px;
	width: 100%;
	position: relative;
	text-align: center;
	background: var(--white);
	border-radius: var(--border-radius);
	/* box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2); */
}

.counts .count-box i {
	position: absolute;
	top: -45px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 40px;
	background: var(--purple);
	color: var(--white);
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
}
.counts .count-box .icon {
	position: absolute;
	top: -45px;
	left: 50%;
	transform: translateX(-50%);
	
	background: var(--purple);
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
}
.counts .count-box span {
	margin-top: 20px;
	font-size: 40px;
	display: block;
	font-weight: 600;
	color: #082744;
}

.counts .count-box p {
	padding: 10px;
	margin-top: 10px;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
}


#network {
	background: var(--white);
	padding: 60px 0;
}



.flag-img {
	position: relative;
	padding-top: 30px;
	margin-bottom: 30px;
	text-align: center;
}

.flag-img img {
	display: block;
	position: relative;
	top: 20%;
	width: 60%;
	margin: 0 auto;
}

.flag-img h3 {
	display: block;
	position: relative;

}

.flag-img p {
	display: block;
	position: relative;
}

#contact {
	background: #f5f5f7;
	padding: 60px 0;
}


/* ----------wh-solution----------- */
#whsolution {
	background: var(--white);
	padding: 60px 0;
}

#ckdlist {
	background: #f5f5f7;
	padding: 60px 0;
}

#whychoose {
	background: #ffffff;
	padding: 60px 0;
}

#whspe {
	background: #f5f5f7;
	padding: 60px 0;
}
.ckd-box {
	display: flex;
    align-items: center;
    justify-content: center; /* 可选，使文字水平居中 */
    height: 80px;
	font-size: 22px;
	color: var(--white);
	background-color: rgba(65, 105, 225, 1);
	border-radius: var(--border-radius);
	box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);

}
#words {
	background: #ffffff;
	padding: 60px 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	font-size: 14px;
	background: #eeeeee;
}


#footer .footer-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #111;
}

#footer .copyright {
	float: left;
}


@media (max-width: 768px) {
	#footer .footer-bottom {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#footer .copyright {
		text-align: center;
		float: none;
	}

}


/* --------------CONTACT------------ */
.boxcn {
	height: 100%;
	background: var(--white);
	background: url(../../img/index/cn.png) right bottom no-repeat;
	background-size:18%;
	/* box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2); */
	border-radius: var(--border-radius);
	padding: 15px;
	border-top: #834cf1 4px solid;
	border-bottom: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	
}
.boxvn {
	height: 100%;
	background: var(--white);
	background: url(../../img/index/vn.png) right bottom no-repeat;
	background-size:18%;
	/* box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2); */
	border-radius: var(--border-radius);
	padding: 15px;
	border-top: #834cf1 4px solid;
	border-bottom: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	
}
.boxeu {
	height: 100%;
	background: var(--white);
	background: url(../../img/index/eu.png) right bottom no-repeat;
	background-size:18%;
	/* box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2); */
	border-radius: var(--border-radius);
	padding: 15px;
	border-top: #834cf1 4px solid;
	border-bottom: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	
}
.boxus {
	height: 100%;
	background: var(--white);
	background: url(../../img/index/usa.png) right bottom no-repeat;
	background-size:18%;
	/* box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2); */
	border-radius: var(--border-radius);
	padding: 15px;
	border-top: #834cf1 4px solid;
	border-bottom: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	
}

.boxcn p {
	margin: auto 0;
}
.boxeu p {
	margin: auto 0;
}
.boxus p {
	margin: auto 0;
}
#condition .container h3 h4 {
	margin: 35px 0;
}
#condition .container .content {
	margin: 35px 35px;
}
#condition li{
	list-style-type:none;
	 padding-left: 20px;
}