/*======================================
	01. Header CSS
========================================*/
/* Logo */
.header .logo {
	float: left;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	margin-top: 27px;
	position:relative;
}
.header .logo .img2{
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	opacity:0;
	visibility:hidden;
}
.header .navbar {
	padding: 0;
}
/* Main Menu */
.header{
	position:relative;
	background: #ffffff;
}
.header .header-inner{
	position:absolute;
	width:100%;
	z-index:99;
}
.header .nav-inner {
	float: right;
	margin-right: 95px;
}
.header .nav li {
	margin-right: 40px;
	float: left;
	position: relative;
}
.header .nav li:last-child{
	margin:0;
}
.header .nav li a {
	font-weight: 500;
	text-transform: capitalize;
	position: relative;
	display: block;
	padding: 30px 0;
	color: #fff;
	z-index: 4;
	font-size: 15px;
	position:relative;
	
}
.header .nav li.active a:before{
	opacity:1;
	visibility:visible;
	width:100%;
}
.header .nav li.active a,.header .nav li.active a:hover{
	color:#fff;
	border-bottom: 3px #0C59DB solid;
	/*tony*/
}


.header .nav li.active ul li a{
	border: none;
}

.header .nav li:hover a{
	color:#fff;
}  
.header .nav li a i {
	margin-left: 6px;
	font-size: 10px;
}
/* Dropdown Menu */
.header .nav li .dropdown {
	background: #fff;
	width: 220px;
	position: absolute;
	top: 100%;
	z-index: 999;
	-webkit-box-shadow: 0px 3px 5px #3333334d;
	-moz-box-shadow: 0px 3px 5px #3333334d;
	box-shadow: 0px 3px 5px #3333334d;
	transform-origin: 0 0 0;
	transform: scaleY(0.2);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
	padding: 10px;
	left: 0;
	margin: 0;
}
.header .nav li:hover .dropdown{
	opacity:1;
	visibility:visible;
	transform:translateY(0px);
}
.header .nav li .dropdown li{
	float:none;
	margin:0;
}
.header .nav li .dropdown li a {
	padding: 8px 15px;
	color: #666;
	display: block;
	font-weight: 400;
	text-transform: capitalize;
	background: transparent;
}
.header .nav li .dropdown li a:before{
	display:none;
}
.header .nav li .dropdown li:last-child a{
	border-bottom:0px;
	
}
.header .nav li .dropdown li:hover a{
	color:#fff;
	background:#0C59DB;
	border-bottom: 0;
	/*tony*/
}
.header .nav li .dropdown li a:hover{
	border-color:transparent;
	
}
.header .nav li .dropdown li i {
	float: right;
	margin-top: 8px;
	font-size:10px;
	z-index:5;
}
.header .nav li .dropdown.sub-dropdown {
	background: #fff;
    width: 220px;
    position: absolute;
    left: 186px;
    top: 0;
    z-index: 999;
   -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 5px #3333334d;
    transform-origin: 0 0 0;
    transform: scaleY(0.2);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}
.header .nav li .dropdown li:hover .dropdown.sub-dropdown{
	opacity:1;
	visibility:visible;
	transform:translateY(0px);
}
.header .nav li .dropdown.sub-dropdown li a{
	padding: 8px 15px;
	color: #666;
	display: block;
	font-weight: 400;
	text-transform: capitalize;
	background: transparent;
}
.header .nav li .dropdown li:hover .dropdown.sub-dropdown li a{
	background:transparent;
}
.header .nav li .dropdown li .dropdown.sub-dropdown li a:hover{
	color:#fff;
	background:#181E4E;
}
.header .nav li .dropdown.sub-dropdown li:last-child a{
	border-bottom:0px solid;
}
.mobile-search{
	display:none;
}
/* Right Button */
.right-button {
	float:right;
	margin-top:22px;
}
.right-button .btn{
	background:#fff;
	color:#181E4E;
	border:1px solid transparent;
	width: 45%; margin-right:5px;
	padding:8px 18px;
}
.right-button .btn.reg{
	background:transparent;
	border:1px solid #ffffff;
	color:#ffffff;
}
.right-button .btn:hover{
	background:#34bf49;
	color:#fff;
	border-color:transparent;
}
/* Header Other Pages */
.header.other-page .header-inner {
	position: relative;
	transform:none;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index:10000;
}
.header.other-page .logo .img2{
	z-index:5;
	opacity:1;
	visibility:visible;
}
.header.other-page .header-inner .container-inner{
	padding:0;
	box-shadow:none;
}
.header.other-page .search-top {
	top: 42px;
}
.header.other-page .nav li a {
	color:#181E4E;
}
.header.other-page .nav li:hover a {
	color:#0C59DB;
}
.header.other-page .nav li.active a {
	color:#0C59DB;
}
.header.other-page .nav li .dropdown li a {
	color: #181E4E;
}
.header.other-page .nav li .dropdown li a:hover {
	color: #fff;
}
.header.other-page .right-button .btn {
	background:#34bf49;
	color:#fff;
	border-color:#34bf49;
}
.header.other-page .right-button .btn:hover{
	background:transparent;
	color:#0C59DB;
}


.header.other-page .right-button .btn.reg {
	background:transparent;
	color:#34bf49;
	border-color:#34bf49;
}
.header.other-page .right-button .btn:hover{
	background:#0C59DB;
	color:#ffffff;
	border-color:#0C59DB;
}
.header.other-page .right-button .btn.reg:hover{
	background:transparent;
	color:#0C59DB;
	border-color:#0C59DB;
}
/* Header Sticky */
.header.sticky .header-inner {
	position: fixed;
	transform:translateY(0);
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
	z-index:10000;
}
.header.sticky .logo .img2{
	z-index:5;
	opacity:1;
	visibility:visible;
}
.header.sticky .header-inner .container-inner{
	padding:0;
	box-shadow:none;
}
.header.sticky .search-top {
	top: 42px;
}
.header.sticky .nav li a {
	color:#181E4E;
}
.header.sticky .nav li:hover a {
	color:#0C59DB;
}
.header.sticky .nav li.active a {
	color:#0C59DB;
}
.header.sticky .nav li .dropdown li a {
	color: #181E4E;
}
.header.sticky .nav li .dropdown li a:hover {
	color: #fff;
}
.header.sticky .right-button .btn {
	background:#34bf49;
	color:#fff;
	border-color:#34bf49;
}
.header.sticky .right-button .btn.reg {
	background:transparent;
	color:#34bf49;
	border-color:#34bf49;
}
.header.sticky .right-button .btn:hover{
	background:#0C59DB;
	color:#ffffff;
	border-color:#0C59DB;
}
.header.sticky .right-button .btn.reg:hover{
	background:transparent;
	color:#0C59DB;
	border-color:#0C59DB;
}

.bg-light-main { background: #f3f3f3;}

/*======================================
   02. Hero Area CSS
========================================*/ 
.hero-slider{
	position:relative;
	background:#0C59DB;
	height: 390px;
	overflow: hidden;
}
.hero-slider .single-slider {
	height: 500px;
	background-size: cover;
	background-position: center;
	position: relative;
	background:#0C59DB;
}
 

.hero-slider .single-slider:before{
	position:absolute;
	content:"";
	left:0;
	top:0;
	height:100%;
	width:100%;
	/*background:#0C59DB;*/
	/*background:red;*/
	opacity:0.9;
}
.hero-slider .hero-text {
	float: none;
	margin-top:50px;
}
.hero-slider .hero-text h1 {
	color: #fff;
	font-size: 60px;
	font-weight: 800;
	line-height: 75px;
	margin-bottom: 20px;
}
.hero-slider .hero-text p {
	color: #fff;
}
.hero-slider .hero-text .button {
	margin-top: 25px;
}
.hero-slider .hero-text .button .btn{
	color:#181E4E;
	background:#fff;
	border:none;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	border:1px solid transparent;
	width:190px;
}

.hero-slider .hero-text .button .btn.reg{
	color:#181E4E;
	background:transparent;
	border:none;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	border:1px solid #ffffff;
	color: #ffffff;
	width:190px;
}

.hero-slider .hero-text .button .btn:hover{
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	background:#34bf49;
	color:#fff;
	border-color:#34bf49;
}
.hero-slider .hero-text .button .btn{
	margin-right:10px;
	margin-bottom: 10px;
}
.hero-slider .hero-text .button .btn:last-child{
	margin-right:0px;
}
.hero-slider .hero-image {
	margin-top: 10px;
}
/* Slider Nav */
.hero-slider .owl-nav{
	margin: 0;
    width: 100%;
	position:absolute;
	bottom: 10px;
	filter:alpha(Opacity=60);-moz-opacity:0.6;opacity: 0.6;
}
.hero-slider .owl-carousel .owl-nav div {
	height: 55px;
	width: 55px;
	line-height: 28px;
	background: #fff;
	color: #333;
	position: absolute;
	margin: 0;
	font-size: 22px;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 100%;
	top: 50%;
	margin-top: -27.5px;
}
.hero-slider .owl-carousel .owl-nav div:hover{
	color:#333;
	background:#ffffffa6;
}
.hero-slider .owl-carousel .owl-nav .owl-prev{
	left:20px;
}
.hero-slider .owl-carousel .owl-nav .owl-next{
	right:20px;
}
/* Slider Animation */
.hero-slider .owl-item.active .hero-image img{
	animation: fadeInDown 1s both 0.6s;
}
.hero-slider .owl-item.active .hero-text h1{
    animation: fadeInUp 1s both 0.6s;
}
.hero-slider .owl-item.active .hero-text .intro{
	font-size:25px;
}

.hero-slider .owl-item.active .hero-text p{
    animation: fadeInUp 1s both 1s;
}
.hero-slider .owl-item.active .hero-text .button{
    animation: fadeInUp 1s both 1.5s;
}
.hero-slider .owl-item.active .hero-text h4{
    animation: fadeInUp 1s both 0.8s;
}
.hero-slider .owl-item.active .hero-text .button3{
    animation: fadeInUp 1s both 1.5s;
}

/*======================================
   P1. focus section css
========================================*/ 
.focus.section{ background: #fbfcfe;padding:20px;}
.focus-wrap {background:#f5f6fa; -webkit-border-radius: 8px;-moz-border-radius: 8px; border-radius: 8px;}
.focus-wrap .pics img{-webkit-border-radius: 8px;-moz-border-radius: 8px; border-radius: 8px;}
.focus-wrap .tit{padding:20px;}
.focus-wrap .videobtn {float: right;margin-top:85px;margin-right:20px;}
.focus-wrap .tit strong { font-size: 38px; line-height: 48px;}

.focus-intro { padding-left:50px;padding-right:30px;}
.focus-intro .intro ul {margin-top:60px;}
.focus-intro .intro ul li{ font-size:16px;font-weight:bold; line-height: 36px;}
.focus-intro .uoploadfile .upbtn{ padding-left:0px;padding-right:120px;margin-top:50px;} 
.focus-intro .uoploadfile .upbtn a,.focus-intro .uoploadfile .upbtn a:link,
.focus-intro .uoploadfile .upbtn a:visited { font-size:22px;color:#ffffff;background:#fe8c25;height:60px;display: block; line-height: 60px; text-align: center;
    -webkit-border-radius: 30px; /* Safari 和 Chrome */
    -moz-border-radius: 30px;    /* Firefox */
    border-radius: 30px;         /* 标准 */
    box-shadow: 10px 10px 10px #e4e4e6;
}
.focus-intro .uoploadfile .upbtn a:hover{ background:#fec325;transform: translateY(-5px);}
.focus-intro .exemple { margin-top:50px; background: red;}
.focus-intro .exemple p{float: left; margin-right:5px;}
.focus-intro .exemple dl,.focus-intro .exemple dl dt,.focus-intro .exemple dl dd{ padding:0;margin:0;}
.focus-intro .exemple dl {float:left;margin-right:10px;}
.focus-intro .exemple dl dt img{ border:1px #ccc solid; -webkit-border-radius: 3px;-moz-border-radius: 3px; border-radius: 3px;}
.focus-intro .exemple dl dt a{display: block;}
.focus-intro .exemple dl dt a:hover { transform: translateY(-5px);}

/*------------------*/ 
.focus-intro-begin { background: #ffffff; padding: 30px;
	border-radius: 15px;
	box-shadow: 0px 0px 15px #00000021;
	margin-top:20px;
}
.focus-intro-begin { margin-left:20px;margin-right:20px;}
.focus-intro-begin .intro ul {margin-top:60px;}
.focus-intro-begin .intro ul li{ font-size:16px;font-weight:bold; line-height: 36px;}
.focus-intro-begin .uoploadfile .upbtn{  width:60%;margin:0 auto; margin-top:50px; } 
.focus-intro-begin .uoploadfile .upbtn a,.focus-intro-begin .uoploadfile .upbtn a:link,
.focus-intro-begin .uoploadfile .upbtn a:visited { font-size:22px;color:#ffffff;background:#fe8c25;height:60px;display: block; line-height: 60px; text-align: center;
    -webkit-border-radius: 30px; -moz-border-radius: 30px;border-radius: 30px; box-shadow: 10px 10px 10px #e4e4e6;
}
.focus-intro-begin .uoploadfile .upbtn a:hover{ background:#fec325;transform: translateY(-5px);}
.focus-intro-begin .exemple { margin-top:50px;  }
.focus-intro-begin .exemple p{float: left; margin-right:5px;}
.focus-intro-begin .exemple dl,.focus-intro-begin .exemple dl dt,.focus-intro-begin .exemple dl dd{ padding:0;margin:0;}
.focus-intro-begin .exemple dl {float:left;margin-right:10px;}
.focus-intro-begin .exemple dl dt img{ border:1px #ccc solid; -webkit-border-radius: 3px;-moz-border-radius: 3px; border-radius: 3px;}
.focus-intro-begin .exemple dl dt a{display: block;}
.focus-intro-begin .exemple dl dt a:hover { transform: translateY(-5px);}

.scene-sort{ background: #0056e5;}
.scene-sort ul.sortlist { padding:30px; width:100%;}
.scene-sort ul.sortlist li {float:left;  }
.scene-sort ul.sortlist li a,.scene-sort ul.sortlist li a:link,.scene-sort ul.sortlist li a:visited {display: block;  height:30px; line-height:30px; text-align: center; color: #ffffff;font-size:16px;}
.scene-sort ul.sortlist li a.on,.scene-sort ul.sortlist li a:hover{ background:#ffffff;-webkit-border-radius: 15px;-moz-border-radius: 15px; border-radius: 15px; color: #151515;}
.scene-case1 {background: #ffffff; padding:30px 0px;}
.scene-case2 {background: #ecf0fc; padding:30px 0px; }

.scene-case-pic{ padding:0px;}
.scene-case-pic img{ border:1px #efefef solid; border-radius:8px;box-shadow: 0 0 10px 0 rgba(56, 172, 127, 0.08); background: #FBFCFE ;}
.scene-case-txt{ padding:10px 10px 20px 10px ;font-size:14px; line-height: 30px;}
.scene-case-txt .tit{margin-top:15px; font-size: 16px;}
.preview  {margin-top:15px; }a
.scene-case-txt .preview a,.scene-case-txt .preview a:link,.scene-case-txt .preview a:visited { font-size:16px;color:#34bf49;text-align: center; background:#ffffff;display: block; padding:10px;border: 1px #34bf49 solid ; -webkit-border-radius: 5px;-moz-border-radius: 5px; border-radius: 5px;}
.scene-case-txt .preview a:hover {  background:#34bf49; border: 1px #34bf49 solid ; color: #ffffff;}

/*------------------*/ 

.container .row .sectiontitle .tit{ text-align: center; font-size: 30px; line-height: 50px; font-weight: normal;}
.container .row .sectiontitle .tit.left{ text-align: left;}
/*======================================
P2. threestep section css
========================================*/ 
.threestep.section{padding-top:10px;}
.threestep { background:#f5faff; }
/*.threestep .container  { height: 300px;  }*/
.threestep .container .sectiontitle {background:#f5faff;}
.threestep ul.intro li{ font-size: 16px; line-height: 35px; }
.threestep .step3 { height: 60px; margin-top:20px; }
.threestep .step3 ul.stepbystep { line-height: 60px; height: 60px; overflow: hidden; }
.threestep .step3 ul.stepbystep li { float:left;line-height: 60px;  margin-right:16px;  }
.threestep .step3 ul.stepbystep li a { font-size:18px;margin-left:5px;  padding-left:5px; font-weight: normal; color:#74a936; }
.threestep .step3 ul.stepbystep li span{ width:60px;font-size:20px;color:#ffffff; background: #8bc34a; -webkit-border-radius: 30px;-moz-border-radius: 30px; border-radius: 30px; display: block; float: left; text-align: center; }
.threestep .videobtn {margin-top:20px;}
/*======================================
P3. threestep section css
========================================*/ 
.begin {  background: #ffffff;}

/*======================================
P4. threestep section css
========================================*/ 
.ourscene {  background: #ffffff;}
.ourscene .scenebox {background: #ffffff;  margin-top:20px; }
.ourscene .scenebox { -webkit-border-radius: 10px;-moz-border-radius: 10px; border-radius: 10px; box-shadow: 0px 0px 10px #00000021;}
.ourscene .scenebox dt img{ width:100%; border-top-right-radius: 10px; border-top-left-radius: 10px;}
.ourscene .scenebox dd { line-height: 50px;font-size: 16px; padding:0;margin:0;text-align: center; }
/*======================================
   03. About Us CSS
========================================*/ 
.about-area{
	background:#f3f3f3 ;
}
.about-area.section {padding-top:20px;padding-bottom: 2opx;}

.about-area .about-left{
	position:relative;
	z-index:2;
	background-size:cover;
	background-position:left;
	background-repeat:no-repeat;
	padding:40px;
	height:100%;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.about-area .about-left p{ 
	color:#ffffff;margin-top:15px;
}
.about-area .about-left:hover{
	background-position:right;
}
.about-area .about-left.overlay:before{
	z-index:-1;
	opacity:0.9;
	background:#0C59DB;
}
.about-area .about-left h4 {
	color: #fff;
	font-size: 30px;
	line-height: 35px;
}
.about-area .about-left h4 span{
	color:#fff;
	display:block;
	font-size:14px;
	font-weight:500;
	margin-bottom:20px;
}
.about-area .about-left a {
	color: #fff;
	display: block;
	position: absolute;
	left: 40px;
	bottom: 40px;
}
.about-area .about-left a i{
	font-size:16px;
	display:inline-block;
	margin-right:6px;
}
.about-area .about-left .button .btn2:before{
	background:#fff;
	bottom:2px;
}
.about-area .about-right{
	background:#FAFAFA;
}
.about-area .about-right img {
	width: 100%;
	height: 100%;
}
.about-area .about-content {
	padding: 40px 40px 40px 35px;
}
.about-area .about-content h4 {
	color: #030303;
	font-size: 30px;
	line-height: 35px;
	font-weight: 700;
}
.about-area .about-content h4 span{
	color:#030303;
	display:block;
	font-size:14px;
	font-weight:500;
	margin-bottom:20px;
}
.about-area .about-content p{
	display:block;
	margin-top:20px;
}
.about-area .about-content p.quote{
	border-left:4px solid #0C59DB;
	padding-left:15px;
	line-height:20px;
	padding-bottom:5px;
}
.about-area .about-content p:last-child{
	margin-bottom:0;
}
.about-area .about-content .button{
	margin-top:40px;
}
.about-area .about-content .btn{
	background:transparent;
	color:#0C59DB;
	border:2px solid #0C59DB;
}
.about-area .about-content .btn:hover{
	background:#0C59DB;
	color:#fff;
	border-color:transparent;
}
.service-newsletter{
	margin-top:10px;
}

.newsletter-form .btn2:link,.newsletter-form .btn2:visited{
	color:#fff;
}
.newsletter-form .btn2:hover{
	background:#0C59DB;
	color:#fff;
	border-color:transparent;
}

.service-newsletter .row{margin-top:20px;}

.service-newsletter .single-service{
	padding:30px;
	border:1px solid #eee;
	position:relative;
	background: #ffffff;

	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	box-shadow: 0 0 20px rgba(18,22,25,.1);
	overflow: hidden;
	border-radius:8px;
	border: 1px #ffffff solid;
}
.service-newsletter .single-service:hover{
background: #ffffff; border: 1px #34bf49 solid;
}


.service-newsletter .single-service .serial {
	font-size: 80px;
	font-weight: 700;
	color: #0C59DB12;
	position: absolute;
	right: 7px;
	bottom: 30px;
	z-index: -1;
}
.service-newsletter .single-service i{
	font-size:35px;
	display:block;
	margin-bottom:20px;
	color:#0C59DB;
	float: right;
}


.service-newsletter .single-service h4{
	display:block;
	margin-bottom:10px;
}
.service-newsletter .single-service h4 a:hover{
	color:#0C59DB;
}
.service-newsletter .single-service h4 a {
	font-size: 20px;
	font-weight: 600;
} 
.service-newsletter .single-service .more{
	font-size:14px;
	margin-top:25px;
	display:inline-block;
	font-weight:500;
}
.service-newsletter .single-service .more i {
	font-size: 20px;
	display: inline-block;
	margin: 0;
	margin-left:2px;
	position: relative;
	top: 3px;
	opacity: 0.5;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.service-newsletter .single-service .more:hover i{
	opacity: 1;
}
.service-newsletter .newsletter-form{
	background:#0C59DB;
	height:100%;
	padding:40px;
}
.service-newsletter .newsletter-form h4{
	font-size: 25px;
	font-weight: 600;
	color:#fff;
	display:block;
	margin-bottom:20px;
}
.service-newsletter .newsletter-form p{
	color:#fff;
	margin-bottom:20px;
}
.service-newsletter .newsletter-form input{
	height:50px;
	width:100%;
	color:#333;
	padding:0px 30px;
	background:#fff;
	border:none;
	border-radius:0;
	line-height:50px;
	font-weight:500;
}
.service-newsletter .newsletter-form button{
	height:50px;
	width:60%;
	color:#fff;
	padding:0px 30px;
	background:#181E4E;
	border:none;
	border-radius:0;
	margin-top:10px;
	line-height:50px;
	font-weight:500;
}
/*======================================
   End About Us CSS
========================================*/ 
.focuswrap { padding:0;margin:0; background: #f5faff;}
.focuswrap .container {max-width: 1000px; }
.focuswrap .container .row { padding:0;margin:0;  }
.focuswrap .container .row  .col-lg-12.col-12.main {  z-index: 999;top: -30px; background-color: #ffffff; -webkit-border-radius: 8px;-moz-border-radius: 8px; border-radius: 8px; border-radius:8px;box-shadow: 0px 0px 15px #00000021;}
.focuswrap .container .row .cards dl{ border: none;margin-top:15px;}
.focuswrap .container .row .cards dd{ margin:0;padding:0;}
.focuswrap .container .row .cards dd.tits{font-weight: bold;}
.focuswrap .container .row .cards dd.info{color:#68686a; font-weight: normal;}
.focuswrap .container .row .cards dl dt {width:68px; float:left; padding-top:5px;}

.technology { background:#04111f;  background:#04111f url(/statics/images/v2025/bgstar.gif) center center; padding:20px;padding-bottom:40px;}
.technology dl dt{ font-size:46px; font-weight:bold; color:#fff; padding-top:45px; text-align: center;}
.technology dl dd{ font-size:20px; font-weight:bold; color:#fff; line-height: 60px; text-align: center; }
.technology .container {background:url(/statics/images/v2025/map_point.png) no-repeat center center;}
.technology .container .sectiontitle h2 {font-size: 40px; color:#ffffff; line-height: 60px; text-align: center;font-weight: normal;}
.technology .container .sectiontitle h2 strong{ color: #fff100;}
.technology .container .row { padding-top:60px;}
.technology .container .techbox{margin-top:10px;height: 160px;-webkit-border-radius: 5px;-moz-border-radius: 5px; border-radius:5px; }
.technology .container .techbox.b1 {background:url(/statics/images/v2025/tech_bg_01.gif) center center; }
.technology .container .techbox.b2 {background:url(/statics/images/v2025/tech_bg_02.gif) center center; }
.technology .container .techbox.b3 {background:url(/statics/images/v2025/tech_bg_03.gif) center center; }
.technology .container .techbox.b4 {background:url(/statics/images/v2025/tech_bg_04.gif) center center; }

.clients .container .sectiontitle h2.tit {padding-bottom:30px; font-size:36px;padding-top:20px;}
/*======================================
	04. Watch Video CSS
========================================*/  
.watch-video{
	background:url('/statics/images/base/bgstar.gif') center center;
	position:relative;
	overflow:hidden;
	padding:20px 0 20px 0;
}
.watch-video .container{
	background:url('/statics/images/base/map_point.png') center center;
}
.watch-video.overlay::before {
	background: #181E4E;
	opacity: 0.7;
}
.watch-video .watch-inner {
	display: inline-block;
	text-align: center;
	display: block;
	margin-top: 50px;
}
.watch-video .video-head {
	display: inline-block;
	border-radius: 100%;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	margin-top: 0px;
}
.watch-video .video-head .video {
	height: 100px;
	width: 100px;
	line-height: 100px;
	text-align: center;
	background: #fff;
	color: #181E4E;
	border-radius: 100%;
	display: inline-block;
	font-size: 28px;
	padding-left: 5px;
}
.watch-video .video-head .video:hover{
	background:#0C59DB;
	color:#fff;
}
.watch-video .video-head .video {
  height: 80px;
  width: 80px;
  background: #fff;
  color: #0c59db;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  position: relative;
  z-index: 5; }
.watch-video .video-head .video:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 1px solid #fff;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-animation: play-btn-1 1.8s linear infinite;
    -moz-animation: play-btn-1 1.8s linear infinite;
    -o-animation: play-btn-1 1.8s linear infinite;
    animation: play-btn-1 1.8s linear infinite; }
.watch-video .video-head .video:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 1px solid #fff;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-animation: play-btn-2 1.5s linear infinite;
    -moz-animation: play-btn-2 1.5s linear infinite;
    -o-animation: play-btn-2 1.5s linear infinite;
    animation: play-btn-2 1.5s linear infinite; }
.watch-video .content {
	padding: 40px;
	border: none;
}
.watch-video .content h2 {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 25px;
}
.watch-video .content p {
	color: #fff;
}
/*======================================
	End Watch Video CSS
========================================*/  

/*======================================
   05. Services CSS
========================================*/ 
.services {
	background: transparent;
	padding-top: 0;
	position: relative;
	padding-bottom:70px;
	margin-top: -80px;
	
}
.services.extra-page {
	background: transparent;
	background:#FBFCFE;
	padding-top: 70px;
	position: relative;
	padding-bottom:100px;
	margin-top: 0px;
}
.services.extra-page:before{
	display:none;
}
.services.extra-page .section-title h2 {
	color: #181E4E;
}
.services.extra-page .section-title h4 {
	color: #0C59DB;
}
.services.extra-page .section-title h4::before {
	background: #0C59DB;
}
.services.extra-page .section-title h4::after {
	background: #0C59DB;
}

.section-title p { font-size: 14px;padding-top:15px; }
.section-title p a,.section-title p a:link {color:#0C59DB;}

.services::before {
	position: absolute;
	content: "";
	left: 50%;
	top: -100px;
	height: 385px;
	width: 1300px;
	margin-left: -650px;
	background-image:url('images/service-bg.jpg');
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}
.services .section-title h2 {
	color: #fff;
}
.services .section-title h4 {
	color: #fff;
}
.services .section-title h4::before {
	background: #fff;
}
.services .section-title h4::after {
	background: #fff;
}
.services .single-service {
	position:relative;
	z-index:2;
	overflow:hidden;
	margin-top:30px;
	margin-bottom:30px;
}
.services .single-service img{
	height:100%;
	width:100%;
	z-index:2;
}
.services .single-service .content {
	z-index: 2;
	width: 100%;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	margin-top:30px;
}
.services .single-service .content h4{
	display:block;
	margin-bottom:25px;
	padding-bottom:15px;
	color:#181E4E;
	position:relative;
}
.services .single-service .content h4:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:3px;
	width:80px;
	background:#0C59DB;
	z-index:1;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.services .single-service:hover .content h4:before{
	width:110px;
}
.services .single-service .content h4:after{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:3px;
	width:100%;
	background:#e6eefb;
	z-index:-1;
}
.services .single-service .content h4 a{
	color:#fff;
	font-weight:600;
	font-size:23px;
	color:#181E4E;
}
.services .single-service .content p {
	color: #666;
	transition:all 0.4s ease;
}
.services .single-service .content .button{
	margin-top:30px;
}
.services .single-service .content .button .btn{
	border:2px solid #0C59DB;
	color:#0C59DB;
	background:transparent;
}
.services .single-service .content .button .btn:hover{
	border-color:transparent;
	color:#fff;
	background:#0C59DB;
}
/* Service Details */
.service-details .detail-post-navigation {
	margin-bottom: 0 !important;
}
.service-details>p{
    font-weight: 400;
    font-size: 16px;
	margin-bottom: 20px;
}
.service-details>p:last-child{
	margin:0;
}
.service-details .quote-icon+p{
    position: relative;
    top: -6px;
}
.quote-icon {
	width: 120px;height: 120px;display: flex;align-items: center;justify-content: center;font-size: 70px;line-height: 1;	padding-bottom: 15px;margin-bottom: 20px;margin-right: 20px;	float: left;color: #fff;
}

.pic a { position:relative;display:block;text-decoration:none;  }
.pic a span { display:block;position:absolute;left:0;top:0;width:100%;height:100%;background-color: rgba(255,255,255,0);background-position:top center;background-repeat:no-repeat;-webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;-moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;transition: background 0.3s, color 0.3s, box-shadow 0.3s;}
.pic a:hover span {display:block;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#fff;background-color: rgba(255,255,255,0.87);background-image:url(/statics/images/base/see_bg.png);background-repeat:no-repeat;background-position:center center;}/*case end*/

.services dl { border:1px #efefef solid; padding:20px; position: relative; text-align: center;}
.services dl dt {padding:20px;}
.services dl a dd.tit{ color:#333; font-size: 24px; }
.services dl a dd.tip{ color:#888888; margin-top:30px; font-weight: normal;}
.services dl i { position: absolute;width:40px;height:1px;background-color:#666;left:50%;margin-left:-20px;top:205px; }

.scenecont {background: #ecf0fc;}

/*custom-control*/
.custom-control.custom-switch {margin-left:20px;}
/*service sidebar*/
.service-single-img{
	margin-bottom:20px;
	width:100%;
	overflow:hidden;
}
.service-single-img img{
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.service-single-img:hover img{
	transform:scale(1.1);
}
.sidebar.service-sidebar .service-category{
	margin-bottom:30px;
}
.sidebar.service-sidebar .service-docs>li{
	margin-bottom:10px;
}
.sidebar.service-sidebar .service-category>li{
    margin-bottom: 10px;
}
.sidebar.service-sidebar .service-docs>li:last-child,
.sidebar.service-sidebar .service-category>li:last-child{
    margin-bottom: 0;
}
.sidebar.service-sidebar .service-category>li>a{
    display: flex;
    background: #f7f7f7;
    align-items: center;
    justify-content: space-between;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 500;
}
.sidebar.service-sidebar .service-category>li>a>i{
    opacity: 0;
	font-size:25px;
}
.sidebar.service-sidebar .service-category>li>a:hover{
    background-color: #0C59DB;
    color: #fff;
}
.sidebar.service-sidebar .service-category>li>a:hover>i{
    opacity: 1;
}
.sidebar.service-sidebar .service-docs{
	margin-bottom:30px;
}
.sidebar.service-sidebar .service-docs>li>a{
    display: flex;
    background: transparent;
    align-items: center;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #f7f7f7;
}
.sidebar.service-sidebar .service-docs>li>a:hover{
	color:#0C59DB;
}
.sidebar.service-sidebar .service-docs>li>a>i{
    margin-right: 20px;
    color: #0C59DB;
}
.sidebar.service-sidebar .service-quote{
    border: 2px solid #f7f7f7;
    padding: 30px;
    position: relative;
    padding-right: 15px;
}
.sidebar.service-sidebar .service-quote .quote-author{
    display: flex;
    align-items: center;
	margin-top:20px;
}
.sidebar.service-sidebar .service-quote .quote-author .quote-img{
    width: 60px;
    height: 60px;
    margin-right: 20px;
	
}
.sidebar.service-sidebar .service-quote .quote-author .quote-text{
    width: calc(100% - 80px);
}
.sidebar.service-sidebar .service-quote .quote-author .quote-text h5{
    font-weight:600;
	font-size:18px;
}
.adv-banner{
	margin-top:30px;
}
/*======================================
	End Services CSS
========================================*/ 

/*======================================
   06. Portfolio CSS
========================================*/ 
.portfolio {
	background-color: #ffffff;
 
}
.portfolio .single-portfolio{
	position:relative;
	margin-top:30px;
	background: #fbfcfe;
	-webkit-border-radius: 10px;-moz-border-radius: 10px; border-radius: 10px;
}
.portfolio .single-portfolio img{
	height:100%;
	width:100%;
}
.portfolio .single-portfolio .content {
	display: block;
	padding: 35px;
	background: #fff;
	position: absolute;
	left: 30px;
	top: 50%;
	width: 295px;
	border-radius: 3px;
	transform: translateY(-50%);
}
.portfolio .single-portfolio .small-title{
	font-size:15px;
	font-weight:500;
	display:block;
	margin-bottom:2px;
	position:relative;
	padding-left:35px;
}
.portfolio .single-portfolio .small-title:before{
	position:absolute;
	content:"";
	left:0;
	top:50%;
	height:2px;
	width:25px;
	margin-top:1px;
	background:#0C59DB;
}
.portfolio .single-portfolio .main-title{
	display: block;
	margin-bottom: 15px;
}
.portfolio .single-portfolio .main-title a{
	font-size: 23px;
	font-weight: 600;
}
.portfolio .single-portfolio .main-title a:hover{
	color:#0C59DB;
}
.portfolio .single-portfolio .descrip{
	color:#666;
}
.portfolio .single-portfolio .button{
	display:block;
	margin-top:30px;
}
.portfolio .single-portfolio .button .btn3{
	padding:12px 28px;
}
/* Slider Nav */
.portfolio .owl-nav{
	margin: 0;
    width: 100%;
}
.portfolio .owl-carousel .owl-nav div {
	height: 55px;
	width: 55px;
	line-height: 47px;
	background: #fbfcfe;
	color: #333;
	position: absolute;
	margin: 0;
	font-size: 24px;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 100%;
	top: 50%;
	margin-top: -27.5px;
}
.portfolio .owl-carousel .owl-nav div:hover{
	color:#fff;
	background:#181E4E;
}
.portfolio .owl-carousel .owl-nav .owl-prev{
	left:-80px;
}
.portfolio .owl-carousel .owl-nav .owl-next{
	right:-80px;
}
/* Slider Dots For Small Device */
.portfolio .owl-dots {
	position: absolute;
	left: 50%;
	top: 0px;
	margin-top: -47px;
	padding: 10px 25px;
	border-radius: 3px;
	transform: translateX(-50%);
	display:none;
}
.portfolio .owl-dots .owl-dot {
	display: inline-block;
	margin-right: 10px;
}
.portfolio .owl-dots .owl-dot:last-child{
	margin:0px;
}
.portfolio .owl-dots .owl-dot span {
	width: 10px;
	height:10px;
	display: block;
	border-radius: 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0;
	background: #181E4E;
	position: relative;
}
.portfolio .owl-dots .owl-dot span:hover{
	background:#0C59DB;
}
.portfolio .owl-dots .owl-dot.active span{
	background:#0C59DB;
	width:20px;
}
.portfolio .owl-dots {
	display:none !important;
}
/* Project Details */
.project-details .project-head {
	padding: 30px;
	background-color: #fff;
	box-shadow: 0px 1px 10px 0 #00000017;
	width: calc(100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom:30px;
}
.project-details p{
    font-weight: 400;
    font-size: 16px;
	margin-bottom: 20px;
}
.project-details p:last-child{
	margin-bottom: 0;
}
.project-details .project-head .details > li {
	margin-left: 30px;
	border-left: 4px solid #525cf2;
	padding-left: 10px;
	border-radius: 4px;
}
.project-details .project-head .details > li:first-child{
	margin-left:0;
}
.project-details .project-head .details>li>h5 {
    margin-bottom: 3px;
	font-size: 20px;
	font-weight:700;
}
.project-details .project-head .details>li a{
	font-weight:500;
	font-size:15px;
}
.project-details .project-head .details>li a:hover{
	color:#0C59DB;
}
.project-details .single-p-thumb{
	margin-bottom:30px;
}
.project-details .single-p-thumb img{
	width:100%;
}
.project-details .project-head .button .btn i {
	font-size: 18px;
	display: inline-block;
	margin-left: 3px;
	position: relative;
	top: 1px;
}
.project-gallery .single-img{
	overflow:hidden;
	margin-top:10px;
	margin-bottom:30px;
}
.project-gallery .single-img img {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	width: 100%;
}
.project-gallery .single-img:hover img{
	transform:scale(1.1);
}
.project-details .project-image img{
	width:100%;
}
/*======================================
	End Portfolio CSS
========================================*/ 

/*======================================
	07. Team CSS
========================================*/   
.team-area {
  background-position: left bottom;
  background-repeat: no-repeat;
  background:#fff;
}
.team-area .single-team{
	margin-top:30px;
}
.team-area .single-team .team-img{
	position:relative;
}
.team-area .single-team .team-img:before{
	position:absolute;
	content:"";
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:#181E4E;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.team-area .single-team:hover .team-img:before{
	opacity:0.5;
	visibility:visible;
}
.team-img {
  position: relative;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  transition: 0.3s;
}

.team-wrapper:hover .team-img img {
  transform: scale(1.1);
}

.team-wrapper:hover .team-img::before {
  opacity: 0.5;
}

.team-02-icon {
  top: 25px;
  position: absolute;
  left: 25px;
  transition: 0.3s;
}
.inner-team-icon .plus {
	background: #fff;
	color: #181E4E;
	border: 1px solid #fff;
	font-size: 15px;
	height: 40px;
	width: 40px;
	display: inline-block;
	line-height: 37px;
	text-align: center;
	border-radius: 50%;
}
.team-icon {
  position: absolute;
  left: 0;
  text-align: center;
  top: 47px;
  transition: 0.3s;
  opacity: 0;
}
.team-icon a {
  font-size: 16px;
  transition: 0.3s;
  height: 40px;
  width: 40px;
  display: block;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  color: #ffffff;
  margin-bottom: 6px;
  border:1px solid #eee;
}
.team-icon a:hover {
  color: #181E4E;
  background: #fff;
  border-color:transparent;
}
.team-icon a:last-child {
  margin-bottom: 0;
}
.team-02-icon:hover .team-icon {
  opacity: 1;
}
.team-text {
	background: #fff;
	border-bottom: 2px solid #0C59DB;
	margin-top: -57px;
	position: relative;
	padding: 32px 30px 27px;
	text-align: center;
	margin-right: 25px;
	margin-left: 25px;
	box-shadow: 0px 0px 10px #0000000f;
}
.team-text h3 {
	margin-bottom: 0;
	font-size: 23px;
	color: #181E4E;
	font-weight: 600;
}
.team-text span {
  color: #181E4E;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
}

.team-details-wrapper {
  background-size: cover;
  background-position: center center;
  padding: 70px 40px;
}

.team-details-img img {
  width: 100%;
}

.team-details-content h4 {
  color: #ffffff;
  margin-bottom: 14px;
}
.team-details-content p {
  color: #ffffff;
  margin: 0;
}
/*======================================
	End Team CSS
========================================*/  

/*======================================
	08. Testimonials CSS
========================================*/  
.testimonials-sec{
	background:#f5faff;

}
.testimonials-sec .testimonial-box {
	background-color: #fff;
	margin: 30px 20px 30px 20px;
	position: relative;
	z-index: 1;
	padding: 30px;
	border-radius: 6px;
	box-shadow: 0px 0px 6px #00000021;
}
.testimonials-sec .testimonial-box .text{font-size:14px;}
.testimonials-sec .testimonial-box:before{
    content: "..";
    font-family: icofont;
    position: absolute;
    right: 30px;
    bottom: 30px;
    color: #f4f6f8;
    font-size: 100px;
    line-height: 1;
    font-weight: 100;
    z-index: -1;
} 
.testimonials-sec .testimonial-box .name {
	margin-bottom: 5px;
	margin-top: 20px;
}
.testimonials-sec .testimonial-box .name a {
	font-size: 22px;
	font-weight: 700;
}
.testimonials-sec .testimonial-box .name a:hover{
	color:#0C59DB;
}
.testimonials-sec .testimonial-box .user { height: 50px;}
.testimonials-sec .testimonial-box .user img{ width:38px;height:38px;border-radius: 19px; float:right;}
.testimonials-sec .testimonial-box .deg img{ width:38px;height:38px;border-radius: 19px; float:right;}

.testimonials-sec .testimonial-box .deg span {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
	position: relative;
	padding-left: 20px;
	color: #828282;
}
.testimonials-sec .testimonial-box .deg span::before {
	position: absolute;
	content: "";
	right: -120px;
	top: 50%;
	height: 2px;
	width: 20px;
	border-radius: 0;
	background: #efefef;
}
.testimonials-sec .owl-dots {
	position: absolute;
	left: 50%;
	bottom: -55px;
	margin-top: -47px;
	padding: 10px 25px;
	border-radius: 3px;
	margin: 0 0 0 -52px;
	margin-top: 49px;
}
.testimonials-sec .owl-dots .owl-dot {
	display: inline-block;
	margin-right: 10px;
	padding-bottom: 20px;
}
.testimonials-sec .owl-dots .owl-dot:last-child{
	margin:0px;
}
.testimonials-sec .owl-dots .owl-dot span {
	width: 10px;
	height:10px;
	display: block;
	border-radius: 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0;
	background: #181E4E;
	position: relative;
}
.testimonials-sec .owl-dots .owl-dot span:hover{
	background:#0C59DB;
}
.testimonials-sec .owl-dots .owl-dot.active span{
	background:#0C59DB;
	width:20px;
}
/*======================================
	End Testimonials CSS
========================================*/ 

/*======================================
	09. Consultation & Contact CSS
========================================*/  
.contact-area {
	background: #0C59DB;
	margin-bottom: 245px;
}
.contact-page{
	background:#FBFCFE;
}
.contact-area .section-title{
	margin-bottom:60px;
}
.contact-area .section-title h2 {
	color: #fff;
}
.contact-area .section-title h4 {
	color: #fff;
}
.contact-area .section-title h4::before {
	background: #fff;
}
.contact-area .section-title h4::after {
	background: #fff;
}
.contact-area .contact-inner {
	background: #fff;
	box-shadow: 0px 16px 32px 0px rgba(228, 228, 228, 0.56);
	padding: 70px;
	z-index: 9;
	margin-bottom: -245px;
	border-radius:3px;
}
.contact-page .contact-inner {
	background: #fff;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
	padding: 70px;
	z-index: 9;
	border-radius: 6px;
}
.contact-area .inner-section-title {
	text-align: left;
	margin-bottom: 40px;
}
.contact-area .inner-section-title h4{
	font-size: 16px;
    font-weight: 600;
    margin-bottom:0;
	position:relative;
	padding-left:40px;
}
.contact-area .inner-section-title h4:before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	height: 2px;
	width: 30px;
	border-radius: 0;
	background: #0C59DB;
}
.contact-area .single-info{
	margin-bottom:30px;
}
.contact-wrapper {
	background: #fff;
	border-radius: 5px;
	border-left: 1px solid #eee;
	padding-left: 20px;
}

.contact-address-wrapper{
	border-left: 1px solid #eee;
	padding-left:30px;
	
}
.contact-address-icon i {
	height: 70px;
	width: 70px;
	line-height: 60px;
	background: #0C59DB;
	line-height: 70px;
	text-align: center;
	font-size: 31px;
	border-radius: 3px;
	color: #fff;
	float: left;
	margin-right: 30px;
	margin-top: 10px;
	box-shadow: 0px 0px 10px #0000000a;
}
.contact-address-icon {
    margin-right: 30px;
}
.contact-address-text {
	overflow: hidden;
}
.contact-address-text h3 {
	font-size: 24px;
	color: #181E4E;
	margin-bottom: 12px;
	font-weight: 700;
}
.contact-address-text span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #565872;
    margin-bottom: 6px;
}
.contact-text h3 {
    font-size: 24px;
    color: #181E4E;
    line-height: 1.2;
    margin-bottom: 34px;
}
.contacts-form input {
    border: 1px solid #dbd6d6;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 12px;
    width: 100%;
    font-size: 14px;
    color: #181E4E;
    font-weight: 500;
    border-radius: 3px;
    background: #f8fafc;
}
.contacts-form textarea {
    border: 1px solid #dbd6d6;
    height: 150px;
    margin-bottom: 10px;
    padding: 12px;
    width: 100%;
    font-size: 14px;
    color: #181E4E;
    font-weight: 500;
    border-radius: 3px;
    background: #f8fafc;
}
.contacts-button button {
    padding: 16px 30px;
    width: 100%;
    border: none;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    border-radius: 3px;
    line-height: 1;
    transition: 0.3s;
    cursor: pointer;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	color:#fff;
	background:#0C59DB;
}
.contacts-button button:hover{
	color:#fff;
	background:#181E4E;
}

#accordion {margin-top:30px;}
#accordion h4.panel-title {  padding-left:10px;font-size:16px; border-top:1px #efefef solid; border-radius:0px;margin-top:0px; line-height: 50px; background: url(/statics/images/v2025/arrow.png) no-repeat right center;}
#accordion h4.panel-title a { display: block; color: #626262;}
#accordion div.panel-body{ padding:10px;line-height: 30px; font-size:14px;}
/* Google Map */
#myMap {
	height: 500px;
	width: 100%;
	border-radius: 0px;
}
/*======================================
	End Consultation & Contact CSS
========================================*/  

/*======================================
	10. Why Choose CSS
========================================*/  
.our-choose-area .accordion {
	clear:both;
	border: 2px solid transparent;	
}
.our-choose-area .inner-section-title {
	text-align: left;
	margin-bottom: 40px;
}
.our-choose-area .choose-left{
	padding-right:40px;
}
.our-choose-area .inner-section-title h4{
	font-size: 16px;
    font-weight: 600;
    margin-bottom:0;
	position:relative;
	padding-left:40px;
}
.our-choose-area .inner-section-title h4:before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	height: 2px;
	width: 30px;
	border-radius: 0;
	background: #0C59DB;
}
.our-choose-area .accordion .card{
	border:none;
}
.our-choose-area .accordion .card:first-child {
	border-top: 0;
}
.our-choose-area .accordion .card .card-header {
	border-bottom: 0;
	padding: 0;
	margin: 0;
	padding-bottom: 13px;
	background-color: transparent;
}
.our-choose-area .accordion .card .card-header {
	border-bottom: 0;
	padding: 0;
	margin: 0;
	padding-bottom: 13px;
	background-color: transparent;
}
.our-choose-area .accordion .card .card-header a.collapsed {
	color: #181E4E;
}
.our-choose-area .accordion .card .card-header a {
	line-height: 50px;
	padding: 0 0 0 0px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	width: 100%;
	color: #0C59DB;
	position: relative;
}
.our-choose-area .accordion .card .card-header a i {
	padding-right: 5px;
}
.our-choose-area .accordion .card .card-body {
	padding: 0 9px 4px 0px !important;
}
.our-choose-area .accordion .card .card-body p {
	margin-top: -10px;
	font-size: 15px;
	padding-left: 25px;
	color: #616161;
	padding-top: 5px;
	padding-bottom: 5px;
}
.our-choose-area .our-choose-counter-area .our-choose-counter sub {
	font-size: 55px;
	font-weight: 600;
	color: #0c59db;
	line-height: 33px;
}
.our-choose-area .our-choose-counter.mt-top{
	margin-top:50px;
}
.our-choose-area .our-choose-counter .title{
	display:block;
	margin-top:5px;
	margin-bottom:15px;
	color:#181E4E;
}
.our-choose-area .our-choose-counter-area .our-choose-counter > span {
	font-size: 18px;
	color: #232323;
	display: block;
	font-weight: 700;
	padding-top: 20px;
}
/*======================================
	End Why Choose CSS
========================================*/ 

/*======================================
	11. Call To Action CSS
========================================*/ 
.meet-us-area{
	padding-top:20px;
	padding-bottom:20px;
}
.meet-us-area .meet-us-item{
	padding: 100px;
	background-image:url('images/meet-us-bg.jpg');
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}
.meet-us-area .meet-us-item .title {
	font-size: 45px;
	color: #fff;
	line-height: 55px;
}
.meet-us-area .meet-us-item .button .btn i {
	display:inline-block;
	margin-left:5px;
	font-size:22px;
	position:relative;
	top:2px;
}
.meet-us-area .meet-us-item .button .btn:hover{
	color:#181E4E;
	background:#fff;
}
/*======================================
	End Call To Action CSS
========================================*/ 
   

/*======================================
   13. Clients CSS
========================================*/
.clients {
	background:#f5faff;
	padding: 30px 0;
}
.clients .single-client {
	border: 1px solid #efefef;
	padding: 10px 15px;
	text-align: center;
	background: #fff;
	border-radius: 5px;
	margin-top:10px;
}
.clients .single-client img{
	width:auto;
	opacity:0.8;
	display:inline-block;
}
.clients .single-client:hover{
	cursor:pointer;
}
.clients .single-client:hover img{
	opacity:1;
}
.clients .single-client.active img{
	opacity:1;
}
.more-client { text-align: center; display: block; margin-top:30px;}


.certificate {
	padding-top:10px;
}
.certificate .single-cert {
	border: 1px solid #40415f;
	padding: 10px 15px;
	text-align: center;
	background: #40415f;
	border-radius: 5px;
	margin-top:10px;
	
}
.certificate .single-cert img{
	width:auto;
	opacity:0.5;
	display:inline-block;
}
.certificate .single-cert:hover{
	cursor:pointer;
}
.certificate .single-cert:hover img{
	opacity:1;
}
.certificate .single-cert.active img{
	opacity:1;
}



/*======================================
   End Clients CSS
========================================*/
/*=============================
	14. help-table Table CSS
===============================*/
.help-table {
	background: #FBFCFE;
	position: relative;
}

.help-table .single-table{
	font-size:14px;
	border-radius:3px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 20px 20px;
	border: 1px solid rgba(33, 42, 43, 0.08);
	
	margin-bottom:25px;
}

.help-table .single-table:hover{
	border: 1px solid #34bf49;
	box-shadow: 0 0 10px rgba(18,22,25,.1);
}

.help-table .single-table .title{
	font-size:16px;
}

.help-center {
	background: #f2faff;
}

.help-center .section-title{padding-top:30px;}
ul.helptips li { height:80px; padding:0 10px; box-shadow: 0 0 15px 0 #cfe6f4; -moz-box-shadow: 0 0 15px 0 #cfe6f4; border-radius:6px;-moz-border-radius:6px; margin-bottom:15px; background:#ffffff url("/statics/images/ico/ico_help_70.png") no-repeat 20px center; padding-left:110px; float:left; font-size:14px;}
ul.helptips li a,ul.helptips li a:link,ul.helptips li a:visited{ display:block; line-height:80px; }
ul.helptips li:hover { box-shadow: 0 0 15px 0 #afd3e9; -moz-box-shadow: 0 0 15px 0 #afd3e9;}
/*=============================
	14. features Table CSS
===============================*/
.features-table {
	background: #FBFCFE;
	position: relative;
}
.features-table .single-table {
	border: 1px #ffffff solid;
	background: #fff;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 10px 30px;
	box-shadow: 0 0 20px rgba(18,22,25,.1);
	overflow: hidden;
	margin-top:30px;
	border-radius:8px;
}
.features-table .section-title {padding:0;margin-bottom:20px;}

.features-table .single-table:hover{ background: #ffffff; border: 1px #34bf49 solid;}
 
.features-table .single-table dl .iconfont {  font-size:40px; display:block; color:007bff;margin-top:10px;}
.features-table .single-table dl dt p{border-radius:5px;}
.features-table .single-table dl dd.tit {  font-size: 20px;margin-top:20px;}
.features-table .single-table dl dd.tip { font-weight:normal; padding:0;margin:0;margin-top:10px;}

/*----*/
.featureslist-table {
	background: #FBFCFE;
	position: relative;
}
.featureslist-table .single-table {
	border: 1px #ffffff solid;
	background: #fff;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 10px 30px;
	box-shadow: 0 0 20px rgba(18,22,25,.1);
	overflow: hidden;
	margin-top:30px;
	border-radius:8px;
}
.featureslist-table .section-title {padding:0;margin-bottom:20px;}

.featureslist-table .single-table:hover{ background: #ffffff; border: 1px #34bf49 solid;}
 
.featureslist-table .single-table dl .iconfont {  font-size:55px; display:block; color:007bff;margin-top:10px;}
.featureslist-table .single-table dl dt p{border-radius:5px;}
.featureslist-table .single-table dl dd.tit {  font-size: 20px;margin-top:20px;}
.featureslist-table .single-table dl dd.tip { font-weight:normal; padding:0;margin:0;margin-top:10px;}

/*----*/

.fourlist-table {background:#e8f3fe;padding:20px;margin:0;}
.fourlist-table .single-box {
	border: 2px #ffffff solid;
	background: #fff;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 10px 20px;
	box-shadow: 0 0 20px rgba(18,22,25,.1);
	overflow: hidden;
	margin-top:0px;
	border-radius:8px;
}
.fourlist-table .single-box:hover,.fourlist-table .single-box.active{ background: #ffffff; border: 2px #34bf49 solid;}
.fourlist-table .single-box dl {padding:10px;margin:0;}
.fourlist-table .single-box dl dt p{border-radius:5px;}
.fourlist-table .single-box dl dd.tit {  font-size: 20px;margin-top:10px; line-height: 20px; height:20px; padding:0;margin:0;}
.fourlist-table .single-box dl dd.tip { font-weight:normal; padding:0;margin:0;margin-top:10px;}

/*----*/

.intro-table .title {color: #1C1C1C;font-size: 32px;line-height: 45px;text-align: left;padding-top:0px; font-weight: bold;}
.intro-table .subtitle{color: #1C1C1C;font-size: 24px;line-height: 40px;text-align: left;padding-bottom:10px;font-weight:bold; }
.intro-table .dec{color: #1C1C1C;font-size: 18px;  overflow:hidden; text-align: left;padding-top:6px; }
.intro-table .dec span.iconfont{ font-size:20px;  width:30px;  color:#000000;text-align: center; padding-top:5px; overflow:hidden; display:block;padding:5px;padding-top:0;  float:left;  color:green;}
.intro-table .dec span.text{ float:left;}
.intro-table ul { border-top:1px #e5e2e2 solid;}

.intro-table ul li{ line-height:46px;clear:both; border-bottom:1px #e5e2e2 solid;}
.intro-table ul li .tip { font-weight:bold; float:left;width:112px;}
.intro-table ul li .text {float:left;}
.intro-table ul li .tip span {color:#5d98d7;}
.intro-table ul.buystep li .tip { font-weight:bold; float:left;width:142px;}

.intro-table ul.link li .tip { font-weight:bold; float:left;width:40px;}
/*=============================
	14. Pricing Table CSS
===============================*/
.pricing-table {
	background: #FBFCFE;
	position: relative;
}

.pricing-table .single-table {
	background: #fff;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 30px 10px;
	box-shadow: 0 0 10px rgba(18,22,25,.1);
	overflow: hidden;
	margin-top:30px;
	border-radius:8px;
	margin: 10px 10px;
}
.pricing-table .single-table .popular {
	color: #fff;
	background: #0C59DB;
	display: inline-block;
	padding: 5px 45px;
	position: absolute;
	right: -36px;
	top: 18px;
	font-size: 13px;
	transform: rotate(45deg);
}
/* Table Head */

.pricing-table .single-table .title {
	font-size: 20px;
	font-weight: 600;
	color: #0c59db;
}
.pricing-table .single-table .title span {
	font-size: 14px;
	font-weight: 600;
	color: #0c59db;
}

.pricing-table .single-table .amount {
	position: relative;
	color: #181E4E;
	font-size: 50px;
	display: inline-block;
	margin: 30px 0 10px 0 ;
	font-weight: 700;
}

.pricing-table .single-table .cross {
	color: #888;
	font-size: 13px;
	display: inline-block;
	text-decoration:line-through;
	margin-bottom: 15px;
}
.pricing-table .single-table .curency {
	color: #181E4E;
	font-size: 18px;
	font-weight: 500;
	position: absolute;
	left: -14px;
	top: -8px;
}
.pricing-table .single-table .duration {
	color: #888;
	font-size: 13px;
	font-weight: 400;
	position: absolute;
	right: -27px;
	bottom: -10px;
}
/* Table List */
.pricing-table .table-list li {
	color: #888;
	margin-bottom: 0px;
	font-size: 13px;
}
.pricing-table .table-list li span.b{font-weight: bold;color:#ed7800;}
.pricing-table .table-list li:last-child{
	margin-bottom:0;
}

.pricing-table .table-price {
	margin-bottom: 6px;
	font-size: 24px;
	font-weight: bold;
}
.pricing-table .table-price li .y {
	margin-bottom: 6px;
	font-size: 14px;
}
.pricing-table .table-price .cross  {font-size: 14px; text-decoration: line-through; color: #eb6100; }

/* Table Bottom */
.pricing-table .button {
	margin-top:20px;
}
.pricing-table .btn {
	padding: 14px 32px;
	color:#fff;
}
.pricing-table .btn:before{
	color:none;
}
.pricing-table .btn:hover{
	color:none;
}
.pricing-table .single-table .btn:before{
	color:none;
}
.pricing-table .more {
	margin-top:10px;  
}
.pricing-table .more a,.pricing-table .more a:link,.pricing-table .more a:visited{ color:#34bf49;}
.pricing-table .more a:hover {color:#34bf49; }

.pricing-table a.mores,.pricing-table a.mores:link,.pricing-table a.mores:visited{  font-size: 14px;color:#34bf49;}
.pricing-table a.mores:hover {color:#34bf49; }


/*--dot--*/
.pricing-table .owl-dots {
	position: absolute;
	left: 50%;
	bottom: -55px;
	margin-top: -47px;
	padding: 10px 45px;
	border-radius: 3px;
	margin: 0 0 0 -52px;
	margin-top: 89px;
}
.pricing-table .owl-dots .owl-dot {
	display: inline-block;
	margin-right: 10px;
	padding-bottom: 20px;
}
.pricing-table .owl-dots .owl-dot:last-child{
	margin:0px;
}
.pricing-table .owl-dots .owl-dot span {
	width: 10px;
	height:10px;
	display: block;
	border-radius: 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0;
	background: #181E4E;
	position: relative;
}
.pricing-table .owl-dots .owl-dot span:hover{
	background:#0C59DB;
}
.pricing-table .owl-dots .owl-dot.active span{
	background:#0C59DB;
	width:20px;
}
/*--dot--*/

.single-table a.mores,.single-table a.mores:link,.single-table a.mores:visited{  font-size: 14px;color:#34bf49;}
.single-table a.mores:hover {color:#34bf49; }

.border-bottom { border-bottom:2px #efefef solid;}
.base-btn1,.base-btn1:visited,.base-btn1:visited:link {
	font-size: 16px;
	font-weight: 500;
	padding: 6px 25px;
	display: inline-block;
	color: #fff;
	border-radius: 30px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	background: #0C59DB;
	border: 1px solid #0C59DB; }

.table.table-striped.table-borderless {
	min-width: 1100px;
}
th .font-weight-normal td span { color: #ed7800;}
.pricing {
		padding: 121px 0px 115px; }

.base-btn1:hover {
	  color: #0C59DB;
	  background: #fff; }

.border-left {
		border-left: 1px solid #dee2e6!important;
	}


	.fb_green { background:#6bd614;}
	.fb_green2 { background:#13cd48;}
	.fb_green3 { background:#37d8a7;}
	.fb_green4 { background:#9aab4f;}
	.fb_green5 { background:#1dbb9a;}
	.fb_red { background:#b62a31;}
	.fb_blue { background:#368ff3;}
	.fb_blue2 { background:#6dc6c5;}
	.fb_blue3 { background:#0dc7f5;}
	.fb_blue4 { background:#173369;}
	.fb_blue5{ background:#2674ac;}
	.fb_purple {background:#c54ba7;}
	.fb_purple2 {background:#6c6080;}
	.fb_purple3 {background:#522047;}
	.fb_purple4 {background:#6c6080;}
	.fb_purple5 {background:#410e60;}
	.fb_purple6 {background:#a4005b;}
	.fb_yellow {background:#fddf16;}
	.fb_yellow2 {background:#e87e07;}
	.fb_yellow3 {background:#d45402;}
	.fb_gray {background:#a2abc5;}
	.fb_gray2 {background:#bdc3c7;}
	.fb_gray3 {background:#abb7b5;}
	.fb_gray4 {background:#6d7a8c;}

	.single-table dl .iconfont {  font-size:50px; display:block; color:007bff;}
	.single-table dl dt p{border-radius:5px;}
	.single-table dl dd.tit {  font-size: 22px;margin-top:20px;}
	.single-table dl dd.tip { font-weight:normal; padding:0;margin:0;}
/*=============================
	End Pricing Table CSS
===============================*/
.about-table {
	background: #FBFCFE;
	position: relative;
}
.about-table.section{ margin-top:2px;padding-top:2px;}
.about-table .container{border: 1px #efefef solid;
	background: #fff;
	text-align: left;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 30px;
	box-shadow: 0 0 10px rgba(18,22,25,.1);
	overflow: hidden;
	margin-top:30px;
	border-radius:5px;
}
.about-table .container .row.main { 
	display: -webkit-flex; /*在webkit内核的浏览器上使用要加前缀*/
    display: flex; /*将对象作为弹性伸缩盒显示*/
	background: #f4f9ff;
}

.about-table .container .row .col-lg-8 { background:#ffffff;}
.about-table .about-title { border-bottom: 1px #cccccc solid; }
.about-table .about-title p {  font-size: 30px; line-height: 60px;font-weight: normal;}

.about-table .about-tit p {	text-align: left; font-size:14px; margin-top:10px;margin-bottom:10px;  color: #000000;
}
.about-table .about-content p {	font-size:16px;line-height: 40px; color: #000000;margin-top:10px;
}
.about-table .about-content .tips{padding:15px 0;font-size:14px; color:#333333;}
.about-table .about-content .single-table{ border: 1px #cccccc solid;  }

.about-table .single-table{
	margin-top: 20px;
	font-size:14px;
	border-radius:3px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 20px 20px;
	border: 1px solid rgba(33, 42, 43, 0.08);
	
	margin-bottom:25px;
}
.about-table .single-table:hover{
	border: 1px solid #fe8c3a;
	box-shadow: 0 0 10px rgba(18,22,25,.1);
}

.about-table .single-table .title{
	font-size:16px;
}
.about-table .single-table .table-list .wx img{ width:200px; }

/*=============================
	int-table CSS
===============================*/
.int-table {background: #FBFCFE;position: relative;}
.int-table.section{ margin-top:2px;padding-top:2px;}
.int-table .container{border: 1px #efefef solid;
	background: #fff;
	text-align: left;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 0;
	box-shadow: 0 0 6px rgba(187, 195, 202, 0.1);
	overflow: hidden;
	margin-top:30px;
	border-radius:5px;

	border:1px #e1e2e3 solid; box-shadow:0 0 16px 0 rgba(0,0,0,0.08); border-top:1px #e1e2e3 solid;
}
.int-table .container .row.main { 
	display: -webkit-flex; /*在webkit内核的浏览器上使用要加前缀*/
    display: flex; /*将对象作为弹性伸缩盒显示*/
	background: #f4f9ff;
}

.int-table .container .row .col-lg-9 { background:#ffffff; padding:20px 30px 20px 50px;}
.int-table .int-title { border-bottom: 1px #efefef solid;  }
.int-table .int-title h1 {  font-size: 36px; line-height: 68px; color: #1a1a1b;font-weight: normal;  font-weight: 600;}
.int-table .int-content h2 {  font-size: 26px; line-height: 60px; color: #1a1a1b;font-weight: normal;  font-weight: 600; padding-top:20px;}
.int-table .int-content p {	font-size:16px;line-height: 28px; color: #373636;margin-top:10px;
} 
.int-table .int-content strong {  font-weight:600;  line-height: 30px; padding-top:20px; color: #151515;
	font-family: "Microsoft YaHei", "sans-serif";
}
.int-table .int-content li{font-size:16px;line-height: 28px; list-style-type:disc; margin-left:20px;color: #373636;}
.int-table .int-content .center{ color: #cccccc; text-align: center;}
.int-table .int-content img{ border:1px #efefef solid; border-radius:8px;box-shadow: 0 0 10px 0 rgba(56, 172, 127, 0.08);}
.int-table .int-content img.none{ border:none; border-radius:0;box-shadow:none;}
.int-table .int-content .lines{  background: #ddd;	margin-top: 4px;display: inline-block;	width: 100%;height: 1px;_overflow: hidden; vertical-align: middle; }
.int-table .int-content .linesbox{ padding:30px 100px;}
.int-table .main .int-info {font-size:14px;margin-top:20px; line-height: 28px;  }
.int-table .main .int-info { position: relative;  }
.int-table .main .col-lg-3 .int-info ul.sd  { z-index: 9400; font-size:16px; width:230px; border-top:1px #e1e2e3 solid;}
.int-table .main .col-lg-3 .int-info ul.sd li { border-bottom:1px #e1e2e3 solid;line-height: 42px; padding-left:22px; }
.int-table .main .col-lg-3 .int-info .fixed {position: absolute; top: 0; background-color: #f4f9ff;z-index: 688; }
.int-table .main .col-lg-3 .int-info ul.sd li.cur{color:#fff;background:#34bf49;}
.int-table .main .col-lg-3 .int-info ul.sd li {cursor:pointer;transition:all .5s;}
.int-table .main .col-lg-3 .int-info ul.sd li.tit { font-weight: bold; padding-left:10px; }

.int-table .main .col-lg-3 .int-info ul.sd li a,.int-table .main .col-lg-3 .int-info ul.sd li a:link,.int-table .main .col-lg-3 .int-info ul.sd li a:visited{ font-weight: normal;}


.int-table .int-content .introPlayerCode{ font-size:16px; background:#efefef; padding:10px; border: 1px #cccccc solid;}
.int-table .int-content #mainContent img{border:none; border-radius:0;box-shadow:none;}
.int-table .int-content .codeblue{ background:#f1fbd6; border:1px dashed rgb(124, 175, 0); padding:10px;font-size:12px; line-height: 22px; }
.int-table .int-content .codeyellow{ background:#fffc7e; border:1px dashed #fba809; padding:10px; }
/* list */
div.CodeList { padding:0px;font-size:14px; }
div.CodeList div.list{ padding-top:10px;}
div.CodeList div.list ul { padding:0px 0px 8px 0px;}/*ul底边距*/
div.CodeList div.list ul li{ padding:0px;overflow:hidden; border-bottom:1px #cccccc solid; margin-left:0px;}
div.CodeList div.list ul li a{ padding:0px 6px 0px 25px;font-weight:normal;height:48px; display:block; line-height:48px; background:url(/Player/Images/ico_01.gif) no-repeat 10px 22px; color:#333333;} 
div.CodeList div.list ul li a:hover{ background:#efefef url(/Player/Images/ico_01.gif) no-repeat 13px 22px; color:#d4111c;} 
div.CodeList div.list ul li span.date{ float:right; padding:0px; color:#999;width:75px; font-size:12px; line-height:48px;} 
div#guide{line-height: 36px;} 
.col-12.right { text-align: center;}

/*yl_Pages*/
.yl_pages {  font-size:14px; margin:0 auto;clear:both; color:#ffffff;}
.yl_pages ul.pagelist{ float:left;padding:4px;  }
.yl_pages ul.pagelist li{ list-style-type:none; font-family:Tahoma; line-height:22px;margin-right:2px; background:none; border:1px #cccccc solid;}
.yl_pages ul.pagelist li span.nolink{ line-height:36px; }
.yl_pages ul.pagelist li strong {display:inline;}

div.cupages{width:720px;font-size:14px;margin:0 auto;clear:both;color:#ffffff; height:50px; }
div.cupages p.pagebk { height:20px;clear:both; }
.cupages ul{float:left;padding:4px;}
.int-table .int-content .cupages ul li{ list-style-type:none;margin-left:2px;}
.cupages ul li{ list-style-type:none; float:left;font-family:Tahoma;line-height:22px;margin-right:2px;background:none;}
.cupages ul li span.nolink{line-height:36px}
.cupages ul li a,.cupages ul li a:link,.cupages ul li a:visited{ float:left;padding:6px 9px 6px 9px;color:#333333;border:1px solid#cccccc;background:#efefef}
.cupages ul li a:hover{color:#690;text-decoration:none;padding:6px 9px 6px 9px;border:1px solid #690}
.cupages ul li.thisclass,.cupages ul li.thisclass a,.pagebox ul li.thisclass a:hover{color:#Fff;background:#690;border:#690 1px solid;text-decoration:none;padding:2px 9px 3px 9px;font-weight:bold}.cupages.pageinfo{float:right;line-height:45px;padding:0px 5px 0 10px;color:#999}
.cupages.pageinfo strong{color:#666;font-weight:normal;margin:0px 2px}

.cpage { clear:both;  width:100%; padding:10px 20px;margin:0 auto; margin-top:30px;}
.cpage .cpagelist li { list-style-type:none; float:left; font-family:Tahoma; margin-right:4px;margin-left:0px;}
.cpage .cpagelist li a,.cpage .cpagelist li a:link,.cpage .cpagelist li a:visited {padding:10px; display: block; color:#333333;border:1px solid#cccccc;background:#efefef;text-decoration:none; }
.cpage .cpagelist li .nolink{padding:10px; display: block; color:#333333;border:1px solid#cccccc;background:#efefef;text-decoration:none;}
.cpage .cpagelist li.thisclass{padding:10px; display: block; color:#Fff;background:#34bf49;border:#34bf49 1px solid;text-decoration:none;}
.cpage .cpagelist li .pageinfo{padding:10px; display: block; color:#333333;border:1px solid#cccccc;background:#efefef;text-decoration:none;}


#miniMenu {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 150px;
	background-color: #f0f0f0;
	padding: 10px;
	border-radius: 5px;
  }
/*=============================
	help-table CSS
===============================*/
.help-table {
	background: #FBFCFE;
	position: relative;
}
.help-table.section{ margin-top:2px;padding-top:2px;}
.help-table .container{border: 1px #efefef solid;
	background: #fff;
	text-align: left;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 30px;
	box-shadow: 0 0 10px rgba(18,22,25,.1);
	overflow: hidden;
	margin-top:30px;
	border-radius:5px;
}
.help-table .container .row.main { 
	display: -webkit-flex; /*在webkit内核的浏览器上使用要加前缀*/
    display: flex; /*将对象作为弹性伸缩盒显示*/
	background: #f4f9ff;
}
.help-table .container .row .col-lg-8 { background:#ffffff;}
.help-table .help-title { border-bottom: 1px #efefef solid;}
.help-table .help-content p { font-size:16px;line-height: 28px; color: #424242;margin-top:10px;
}
.help-table .help-title h1 { font-size:26px;line-height: 46px;}
.help-table .help-title h1 span.s{ font-size:16px;}
/*=============================
	14. buy Table CSS
===============================*/

.buy-table {
	background: #FBFCFE;
	position: relative;
}
.buy-table.section{ margin-top:2px;padding-top:2px;}

.buy-table .container{border: 1px #efefef solid;
	background: #fff;
	text-align: left;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 30px;
	box-shadow: 0 0 10px rgba(18,22,25,.1);
	overflow: hidden;
	margin-top:30px;
	border-radius:5px;
}
.buy-table .container .row.main { 
	display: -webkit-flex; /*在webkit内核的浏览器上使用要加前缀*/
    display: flex; /*将对象作为弹性伸缩盒显示*/
	background: #f4f9ff;
}

.buy-table .container .row .col-lg-8 { background:#ffffff;}
.buy-table .buy-title { border-bottom: 1px #cccccc solid; }
.buy-table .buy-title p {  font-size: 22px; line-height: 40px;font-weight: normal;}

.buy-table .buy-tit p,.buy-table .buy-tit-s p {
	text-align: left; font-size:14px; margin-top:10px;margin-bottom:10px;  color: #000000;
}
.buy-table .buy-content p {
	font-size:14px;line-height: 28px; color: #000000;
}
.buy-table .buy-content .tips{padding:15px 0;font-size:14px; color:#333333;}
.buy-table .buy-content .tips .infos {  color: #F57C00; font-size:14px; }



.buy-table .buy-info { padding-top:20px; }
.buy-table .buy-info p{ line-height: 30px;}
.buy-table .buy-btn {
	padding-top: 20px;
	text-align: left;
	clear: both;
	margin-top:15px;
}

 
.buy-table .buy-content .btns{ line-height: 40px; height: 40px; 
	overflow:hidden; float: left;  margin-right: 10px;
margin-top:10px;width: 140px; font-weight: normal;font-size: 14px;
border: 1px #cccccc solid; text-align: center;border-radius:5px; display: block;}
.buy-table .buy-content .total { padding-top:20px;font-weight: bold;font-size: 14px;}
.buy-table .buy-content .total strong{font-size: 20px;font-weight: bold;padding-top:10px;color: #F57C00; }
 
.buy-table .buy-content .btns:hover{ color: #F57C00; border: 1px #F57C00 solid;background: rgba(245, 124, 0, 0.08);}
.buy-table .buy-content .btns.active { color: #F57C00; border: 1px #F57C00 solid;background: rgba(245, 124, 0, 0.08);}
.buy-table .buy-content .package {width:170px;}

.buy-table .buy-year .btns{ line-height: 70px; height: 70px; float: left;  margin-right: 10px;margin-top:10px; font-size: 20px;
	line-height: 70px; height: 70px;
	width: 100%; font-weight: normal;font-size: 14px;text-align: left;
	border: 1px #cccccc solid; border-radius:5px; display: block;}

.buy-table .buy-year .btns:hover{ cursor:pointer;color: #F57C00; border: 1px #F57C00 solid;background: rgba(245, 124, 0, 0.08);}
.buy-table .buy-year .btns.active { color: #F57C00; border: 1px #F57C00 solid; background: rgba(245, 124, 0, 0.08);}
.buy-table .buy-year .btns .price { float:right;font-size: 14px;padding-right:50px;}
.buy-table .buy-year .btns .price strong{ font-weight: bold;font-size: 20px;}
.buy-table .buy-year .btns .year { font-size: 20px;font-weight: bold;padding-left:50px;}

/* input */
.buy-content .tbtit {float: left; font-size:14px;width:120px; text-align: right; line-height: 36px;}
.buy-content .tbcontent {float: left; width: 400px; line-height: 36px;}
.buy-content .star{ float:right; color: red;padding-left:10px;margin-top:5px;}
.buy-content .paysets { float:left; border-radius: 3px; border: 2px solid #efefef; margin-right:5px;}

.paysets.selected { border: 2px solid #F57C00;  border-radius: 3px; }
.description { display: none; }

.buy-content .paysets img{ margin-right:5px; border-radius: 3px; }

.payoptionsinfo .paysets img{ width:348px;margin-top:15px;}
.buy-content .stepon{margin-top:20px;}
.contact-wx {width:260px;  margin:0 auto;margin-top:25px;}
.contact-wx img{ border:1px #cccccc solid;
	box-shadow: 0 0 20px rgba(18,22,25,.1);
border-radius:8px;  width:260px;  margin:0 auto; }

.buy-content .input { 
    height: 36px;
    margin-bottom: 10px;
    padding: 0 12px;
    width: 100%;
    font-size: 14px;
    color: #181E4E;
    font-weight: 500;
    border-radius: 3px;
    background: #f4f9ff;
} 

.buy-content textarea {
    border: 1px solid #181E4E1C;
    height: 36px;
    margin-bottom: 10px;
    padding: 0 12px;
    width: 100%;
    font-size: 14px;
    color: #181E4E;
    font-weight: 500;
    border-radius: 3px;
    background: #f4f9ff;
	padding-top:2px;
}

.buy-info { padding-top:10px; }
.buy-info p{ line-height: 34px;}
.buy-table .buy-btn {
	padding-top: 20px;
	text-align: left;
	clear: both;
	margin-top:15px;
}

/*----feedback*/

.contact-inner .input { 
    margin-bottom: 10px;
    padding: 0 12px;
    width: 100%;
    font-size: 14px;
    color: #181E4E;
    font-weight: 500;
    border-radius: 3px;
    background: #f4f9ff;
} 
.contact-inner .textarea { 
    margin-bottom: 10px;
    padding: 12px 12px;
    width: 100%;
    font-size: 14px;
    color: #181E4E;
    font-weight: 500;
    border-radius: 3px;
    background: #f4f9ff;
} 
.contact-inner .wide{ 
    margin-bottom: 10px;
    padding: 0 12px;
    width: 100%;
    font-size: 14px;
    color: #181E4E;
    font-weight: 500;
    border-radius: 3px;
    background: #f4f9ff;
} 

/*=============================
	End buy Table  CSS
===============================*/

/*======================================
   15. Call To Action CSS
========================================*/
.call-action{
	background-size:cover;
	background-position:center;
}
.call-action.overlay:before{
	opacity:0.9;
	background:#181E4E;
}
.call-action .call-inner{
 padding:0px 30px;
}
.call-action .call-inner h2 {
	font-size: 45px;
	color: #fff;
	font-weight: 800;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.call-action .call-inner p {
	color: #fff;
	padding: 0 150px;
	font-size:16px;
}
.call-action .call-inner .button3 {
	margin-top: 30px;
}
.call-action .call-inner .button3 .btn3{
	background:#fff;
	color:#181E4E;
}
.call-action .call-inner .button3 .btn3:hover{
	background:#333;
	color:#fff;
}
/*======================================
   End Call To Action CSS
========================================*/
 
/*====================================
	Footer CSS
======================================*/
.footer {
	background-color: #2e2751;
}
.footer .footer-top {
    padding: 20px 0 30px;
}
.footer .single-widget {
	margin-top: 30px;
}
.footer .single-widget h3 {
    color: #fff;
    font-size: 18px;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 15px;
	padding-bottom: 15px;
}
.footer .single-widget h3::before {
	content: "";
	position: absolute;
	left: 0;
	width: 40px;
	height: 2px;
	bottom: -1px;
	background: #f3a712;
	display: block;
}
.footer p {
	color: #ccc;
	font-size:14px;
}
.footer-about {
	padding-right: 30px;
}
.footer-about .logo {
    margin-bottom: 15px;
}
.footer-about .text-logo a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.footer-about .text {
	margin-bottom: 35px;
}
.footer-about .button{
	clear: both;
}
.footer-about .button .bizwheel-btn {
    background: #179E66;
    margin-top: 50px;
    color: #fff;
	padding: 13px 32px;

}
.footer-about .button .bizwheel-btn:hover{
	background:#fff;
	color:#179E66
}
/* Footer Link */
.footer .f-link ul li {
    margin-bottom: 0px;
    position: relative;
    padding-left: 25px;
    line-height: 34px;
}
.footer .f-link ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    margin-top: -5px;
    background: #d4d4d4;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.footer .f-link ul li:hover:before{
	background:#F3A712;
}
.footer .f-link ul li:last-child{
	margin-bottom:0px;
}
.footer .f-link ul li a {
    display: inline-block;
    color: #B4B4B4;
    padding: 0;
    margin: 0;
    background: transparent;
    font-size: 14px;
    font-weight: normal;
}
.footer .f-link ul {
    box-shadow: none;
    margin: 0;
}
.footer .f-link ul li a::before{
	display:none;
}
.footer .f-link ul li a:hover,.footer .f-link ul li a.on {
	color:#F3A712;
}
/* Footer Newsletter */
.footer .footer-newsletter form {
    background: #fff;
    padding: 15px;
    line-height: initial;
	position:relative;
}
.footer .footer-newsletter form input{
	height: 54px;
	padding: 0 20px 0 20px;
	border: none;
	width: 100%;
	position: relative !important;
	font-size: 14px;
	border: 1px solid #ebebeb;
	line-height: 50px;
	border-radius:0px;
}
.footer .footer-newsletter form button {
	background: #F3A712;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	box-shadow: none;
	width: auto;
	padding: 0 20px;
	height: 53px;
	text-align: center;
	display: block;
	margin: 0;
	margin-top: 0px;
	border-radius: 0px;
	cursor: pointer;
	color: #fff;
	top: 15px;
	right: 15px;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.footer .footer-newsletter form button:hover{
	background:#2E2751;
}
/* Blog News */
.single-f-news {
    position: relative;
    background: transparent;
    margin-bottom: 20px;
    box-shadow: none;
}
.single-f-news:last-child{
	margin:0;
}
.single-f-news img {
    height: 70px;
    width: 70px;
    display: block;
    position: absolute;
    border-radius: 100%;
    background: #fff;
    left: 0;
    top: 0;
    margin-top: 4px;
    padding: 5px;
}
.single-f-news .content {
	padding-left: 80px;
}
.single-f-news .title {
	font-size: 16px;
	font-weight: medium;
	line-height: 24px;
}
.single-f-news .title a {
    color: #2e2751;
}
.single-f-news .title:hover a{
	color:#179E66;
}
.single-f-news .post-meta {
    margin-top: 5px;
    font-size: 13px;
}
.single-f-news .post-meta i{
	color:#179E66;
	margin-right:5px;
}
/* Footer News */
.footer-news .single-f-news .content {
  padding-left: 85px;
}
.footer-news .single-f-news .content .title {
  font-size: 14px;
}
.footer-news .single-f-news .content .title a {
    color: #ccc;
}
.footer-news .single-f-news .content .title a:hover{
	color:#F2A611
}
.footer .footer-newsletter .address {
	color: #777;
	font-size: 15px;
	margin-bottom: 20px;
}
.footer .single-f-news .post-meta i {
    color: #F3A712;
}
.footer .address-widget-list{
	margin-top:10px;
}
.footer .address-widget-list li {
    display: block;
    margin-bottom: 10px;
    line-height: 25px;
}
.footer .address-widget-list li,
.footer .address-widget-list li a {
    font-weight: normal;
    color: #ccc;
    font-size: 15px;
}
.footer .address-widget-list li i {
    width: 25px;
    color: #fff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #eee;
    text-align: center;
    border-radius: 100%;
    font-size: 13px;
    margin-right: 10px;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.footer .address-widget-list li:hover i{
	background:#fff;
	color:#F3A712;
}
.footer .address-widget-list li:last-child{
	margin-bottom:0px;
}
.footer .address-widget-list li span{
	color:#179E66;
	display:inline-block;
}
.footer_contact p {
	margin-bottom: 15px;
}
/* Social */
.footer .social{
	margin-top:22px;
}
.footer .social li {
    display: inline-block;
    margin: 0 10px 0 0;
}
.footer .social li:last-child{
	margin-right:0px;
}
.footer .social li a {
    color: #fff;
    display: block;
    font-size: 16px;
    text-align: center;
    line-height: initial;
    border: none;
}
.footer .social-icons li:before {
  display: none;
}

/* Copyright */
.footer .copyright {
    text-align: center;
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid #ebebeb3b;
}
.footer .copyright-content p {
    color: #fff;
    font-size: 14px;
	text-align: left;
}
.footer .copyright-content p span{
	font-size:17px;
	font-weight:800;
	text-transform:uppercase;
}
.footer .copyright-content a:hover{
	color:#F3A712;
}
.footer .footer_contact img { max-width: 185px;padding-top:10px;}
.footer .footer_contact p {line-height: 22px; padding:0;margin:0;}
/*====================================
	End Footer CSS
======================================*/
	/* Styles for dialog window */
	.opendialog h1{ font-size: 18px;}
	#free-dialog,#profession-dialog,#profession2-dialog,#teams-dialog,#expansion-dialog,#classics-dialog,#captain-dialog,#excellent-dialog {
	  background: white;
	  padding: 20px 30px;
	  text-align: left;
	  max-width: 600px;
	  margin: 40px auto;
	  position: relative;
	  border-radius:5px;
	}
	/*----*/
	#d1212-dialog { 
		background: linear-gradient(to right , #fc9501, #fa4e18);
		padding: 0px 0px;
		text-align: left;
		max-width: 450px;
		margin: 40px auto;
		position: relative;
		border-radius:10px;
	}
	#d1212-dialog .foot { height: 100px;background: #ffffff; border-radius:0px 0px 10px 10px; padding:30px; }
	#d1212-dialog .foot a.btnbuy,#d1212-dialog .foot a.btnbuy:link,#d1212-dialog .foot a.btnbuy:visited{ background:#f96f08; width:300px; color:#ffffff;font-size:20px;text-align: center; display: block;height: 40px;line-height: 40px;border-radius:20px; margin:0 auto; }
	
	/*----*/
	.d1212-wrap { 
		background: linear-gradient(to right , #fc9501, #fa4e18);
		padding: 0px 0px;
		text-align: left;
		max-width: 450px;
		margin: 40px auto;
		position: relative;
		border-radius:10px;
		border: 1px #cccccc solid;
	}
	.d1212-wrap .foot { height: 100px;background: #ffffff; border-radius:0px 0px 10px 10px; padding:30px; }
	.d1212-wrap .foot a.btnbuy,.d1212-wrap .foot a.btnbuy:link,.d1212-wrap .foot a.btnbuy:visited{ background:#f96f08; width:300px; color:#ffffff;font-size:20px;text-align: center; display: block;height: 40px;line-height: 40px;border-radius:20px; margin:0 auto; }
	
 
	
  
	/**
	 * Fade-zoom animation for first dialog
	 */
	/* start state */
	.my-mfp-zoom-in .zoom-anim-dialog {
	  opacity: 0;
	  -webkit-transition: all 0.2s ease-in-out; 
	  -moz-transition: all 0.2s ease-in-out; 
	  -o-transition: all 0.2s ease-in-out; 
	  transition: all 0.2s ease-in-out; 
	  -webkit-transform: scale(0.8); 
	  -moz-transform: scale(0.8); 
	  -ms-transform: scale(0.8); 
	  -o-transform: scale(0.8); 
	  transform: scale(0.8); 
	}
	/* animate in */
	.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	  opacity: 1;
	  -webkit-transform: scale(1); 
	  -moz-transform: scale(1); 
	  -ms-transform: scale(1); 
	  -o-transform: scale(1); 
	  transform: scale(1); 
	}
	/* animate out */
	.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	  -webkit-transform: scale(0.8); 
	  -moz-transform: scale(0.8); 
	  -ms-transform: scale(0.8); 
	  -o-transform: scale(0.8); 
	  transform: scale(0.8); 
	  opacity: 0;
	}
	/* Dark overlay, start state */
	.my-mfp-zoom-in.mfp-bg {
	  opacity: 0;
	  -webkit-transition: opacity 0.3s ease-out; 
	  -moz-transition: opacity 0.3s ease-out; 
	  -o-transition: opacity 0.3s ease-out; 
	  transition: opacity 0.3s ease-out;
	}
	/* animate in */
	.my-mfp-zoom-in.mfp-ready.mfp-bg {
	  opacity: 0.8;
	}
	/* animate out */
	.my-mfp-zoom-in.mfp-removing.mfp-bg {
	  opacity: 0;
	}
	/**
	 * Fade-move animation for second dialog
	 */
	
	/* at start */
	.my-mfp-slide-bottom .zoom-anim-dialog {
	  opacity: 0;
	  -webkit-transition: all 0.2s ease-out;
	  -moz-transition: all 0.2s ease-out;
	  -o-transition: all 0.2s ease-out;
	  transition: all 0.2s ease-out;
	  -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	  -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	  -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	  -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	  transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	}
	/* animate in */
	.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	  opacity: 1;
	  -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	  -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	  -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	  -o-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	  transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	}
	/* animate out */
	.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	  opacity: 0;
	  -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	  -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	  -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	  -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	  transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	}
	/* Dark overlay, start state */
	.my-mfp-slide-bottom.mfp-bg {
	  opacity: 0;
	  -webkit-transition: opacity 0.3s ease-out; 
	  -moz-transition: opacity 0.3s ease-out; 
	  -o-transition: opacity 0.3s ease-out; 
	  transition: opacity 0.3s ease-out;
	}
	/* animate in */
	.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	  opacity: 0.8;
	}
	/* animate out */
	.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	  opacity: 0;
	}

	/*cb-popover-min*/
.cb-popover-min{ color: #666666;font-size: 12px; line-height: 20px;}