/* -------------------------------------------------------------------
 * Template Name         : Appinocks - App Landing Page Template
 * Theme Author Name     : Yucel Yilmaz
 * Author URI            : https://themeforest.net/user/aip_theme3434
 * Created Date          : 03 November 2019
 * Version               : 1.0
------------------------------------------------------------------- */

/* -------------------------------------------------------------------
[Table of contents]

01.Base
02.Typography
03.Helper Class   
04.Animaton
05.Header     
06.Hero Section  
07.Services
08.About
09.Features 
10.How it Works 
11.Screenshots
12.Pricing 
13.Testimonial Section
14.Our Team 
15.Download Section
16.Latest Blog Section
17.Newsletter
18.FAQ
19.Contact Us
20.Footer  
21.Breadcrumb
22.Blog Page
23.Home Page Sign Up
24.Home Page Parallax
25.Home Page Slider 




24.Intro
------------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* 01.Base                               
/* ---------------------------------------------------------------- */
body {
	font-size: 16px;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	overflow-y: scroll;
	position: relative;
	box-sizing: border-box;
	color: #636b72;
}
ul,
ol {
	padding: 0;
	margin: 0;
	list-style: none;
}
a,
a:hover,
a:focus,
a:active,
a:visited,
a:link {
	color: inherit;
	text-decoration: none;
}
input,
input:focus,
textarea,
textarea:focus,
button,
button:focus {
	outline: none;
	resize: inherit;
}
button:focus,
button {
	border: none;
}
section {
	overflow: hidden;
	width: 100%;
}
::-moz-selection {
	background-color: #000;
	color: #fff;
}
::selection {
	background-color: #000;
	color: #fff;
}
.site-wrapper {
	position: relative;
	overflow: hidden;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	body,
	html {
		font-size: 14px;
	}
}

/* ---------------------------------------------------------------- */
/* 02.Typography                              
/* ---------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	text-transform: capitalize;
	font-weight: 600;
	line-height: 1.5;
	color: #000;
	margin: 0;
}
h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.25rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	font-size: 1.625rem;
}
h5 {
	font-size: 1.375rem;
}
h6 {
	font-size: 1.125rem;
}
p {
	margin: 0;
	line-height: 28px;
}
/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/
*::-webkit-scrollbar {
	width:10px;
	height:10px;
	background-color: rgba(255, 255, 255, 0);
  }
  
  /*定义滚动条的轨道，内阴影及圆角*/
  *::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: rgba(230, 230, 230, 0.05);
  }
  
  *:hover::-webkit-scrollbar-track {
	background-color: rgba(230, 230, 230, 0.5);
  }
  
  /*定义滑块，内阴影及圆角*/
  
  *::-webkit-scrollbar-thumb {
	height: 24px;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
	background-color: rgba(216, 216, 216, 0.4);
	transition: background-color 1s;
  }
  
  *:hover::-webkit-scrollbar-thumb {
	background-color: rgba(216, 216, 216, 1);
  }
  
  *::-webkit-scrollbar-thumb:hover {
	background-color: rgba(190, 190, 190, 1);
  }
  
  *::-webkit-scrollbar-thumb:active {
	background-color: rgba(160, 160, 160, 1);
	}
/* ---------------------------------------------------------------- */
/* 03.Helper Class                                  
/* ---------------------------------------------------------------- */
.section-padding {
	padding: 100px 0;
	position: relative;
}
.section-heading {
	text-align: center;
	margin-bottom: 60px;
}
.section-title {
	text-align: center;
	position: relative;
	padding: 0 0 15px;
	margin-bottom: 15px;
	font-weight: 600;
}
.section-title span {
	margin-right: 10px;
	margin-left: 10px;
	color: #0033CC;
}
.section-title::after,
.section-title::before {
	position: absolute;
	content: "";
	left: 50%;
	height: 2px;
	background: #0033CC;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.section-title::after {
	bottom: -5px;
	width: 30px;
}
.section-title::before {
	bottom: 0;
	width: 60px;
}
.section-sub-title {
	text-align: center;
	font-size: 1.125rem;
}
.section-badge {
	display: inline-block;
	margin-bottom: 10px;
	border-radius: 5px;
	font-size: 14px;
	padding: 10px 20px;
	color: #fff !important;
	background: #15db95;
	-webkit-box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
	box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
}
.default-outline-btn {
	display: inline-block;
	overflow: hidden;
	padding: 20px 40px;
	border-radius: 5px;
	text-transform: capitalize;
	position: relative;
	color: #fff !important;
	background: #15db95;
	-webkit-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.default-outline-btn:hover {
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	background: #12bd81;
	color: #fff !important;
}
.default-btn {
	display: inline-block;
	overflow: hidden;
	padding: 20px 40px;
	border-radius: 5px;
	text-transform: capitalize;
	position: relative;
	color: #fff !important;
	background: #0033CC;
	-webkit-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	-webkit-box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
	box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
}
.default-btn:hover {
	background: #1148ee;
	-webkit-box-shadow: 0 10px 26px 0 rgba(0, 51, 204, 0.2);
	box-shadow: 0 10px 26px 0 rgba(0, 51, 204, 0.2);
}
.default-video-btn {
	display: inline-block;
	overflow: hidden;
	padding: 20px 25px;
	border-radius: 5px;
	text-transform: capitalize;
	position: relative;
	color: #15db95 !important;
	background: #fff;
	margin-left: 10px;
	text-align: center;
	transition: all 0.25s linear;
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.default-video-btn:hover {
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	background: #fff;
}
.default-video-btn i {
	display: inline-block;
	position: relative;
	top: 1px;
}
.bg-blue-overlay::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.8;
	background-position: center;
	background: #0033CC;
}
.item-shadow {
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
	-webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
.item-shadow:hover {
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
    box-shadow: 0 15px 30px 0 rgba(0, 51, 204,0.15);
}
.img-jump {
	-webkit-animation: imgJump 5s linear 0s infinite normal forwards;
	animation: imgJump 5s linear 0s infinite normal forwards;
}
.pt-minus-70 {
	padding-top: 70px;
}
.pt-50 {
	padding-top: 50px;
}
.scroll-top-btn {
	position: fixed;
	bottom: 0;
	right: 10px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	font-size: 16px;
	text-align: center;
	opacity: 0;
	border-radius: 5px;
	visibility: hidden;
	color: #fff !important;
	background: #15db95;
}
.scroll-top-btn.active {
	opacity: 1;
	visibility: visible;
	bottom: 10px;
}

/* Preloader */
.preloader-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 4444;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0033CC;
	flex-direction: column;
}
.preloader-wrap .preloader-inner {
	height: 100px;
	width: 100px;
	position: relative;
	margin: 0 auto;
}
 .preloader-inner .spinner {
	margin: auto;
	margin-top: -100px;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}
.preloader-inner .spinner > div {
	background-color: #fff;
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: spinnerDelay 1.2s infinite ease-in-out;
	animation: spinnerDelay 1.2s infinite ease-in-out;
}
.preloader-inner .spinner .rect1 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.preloader-inner .spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.preloader-inner .spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
.preloader-inner .spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}
.preloader-inner .spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
.preloader-inner .sk-circle {
	margin: 10px auto 100px auto;
	width: 10px;
	height: 10px;
	position: relative;
	background: #fff;
	border-radius: 100%;
	left: -18px;
	-webkit-animation: spinnerLoad 1.2s infinite ease-in-out;
	animation: spinnerLoad 1.2s infinite ease-in-out;
}
	 
/* Transition All Classes */
.header,
.scroll-top-btn,
.default-btn,
.item-shadow,
.services-item,
.services-icon i::before,
.features-item .features-icon i,
.hero-video-btn,
.testimonial-slider .owl-nav span,
.team-card-img img,
.team-card-img .team-social,
.team-card-img .team-social > a,
.screenshots-slider .owl-item,
.price-toggle-wrap > a,
.price-table .price-icon i,
.blog-tags li a,
.pagination-link,
.blog-img > a > img,
.blog-item,
.footer-social-links > a,
.download-btn,
.screenshots-slider.owl-theme .owl-nav.disabled+.owl-dots .owl-dot span,
.testimonial-slider.owl-theme .owl-nav.disabled+.owl-dots .owl-dot span,
.team-social > a,
.blog-single-meta-box > a:hover {
	-webkit-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

/* ---------------------------------------------------------------- */
/* 04.Animaton                                  
/* ---------------------------------------------------------------- */
@-webkit-keyframes buttonEffectRight {
	0% {
		right: -100%;
	}
	100% {
		right: 100%;
	}
}
@keyframes buttonEffectRight {
	0% {
		right: -100%;
	}
	100% {
		right: 100%;
	}
}
@keyframes imgJump {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	20% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	41% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	50% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
	50% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
	80% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-webkit-keyframes imgJump {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	20% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	41% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	50% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
	50% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
	80% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes shadowPulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(21, 219, 150, 0.4);
		box-shadow: 0 0 0 0 rgba(21, 219, 150, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(21, 219, 150, 0);
		box-shadow: 0 0 0 40px rgba(21, 219, 150, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(21, 219, 150, 0);
		box-shadow: 0 0 0 0 rgba(21, 219, 150, 0);
	}
}
@-webkit-keyframes shadowPulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(21, 219, 150, 0.4);
		box-shadow: 0 0 0 0 rgba(21, 219, 150, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(21, 219, 150, 0);
		box-shadow: 0 0 0 40px rgba(21, 219, 150, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(21, 219, 150, 0);
		box-shadow: 0 0 0 0 rgba(21, 219, 150, 0);
	}
}
@keyframes stickyMenu {
	0% {
		margin-top: -120px;
		opacity: 0;
	}
	50% {
		margin-top: -64px;
		opacity: 0;
	}
	100% {
		margin-top: 0;
		opacity: 1;
	}
}
@keyframes preloader {
	0% {
		top: 8px;
		height: 64px;
	}
	50%,
	100% {
		top: 24px;
		height: 32px;
	}
}
@-webkit-keyframes preloader {
	0% {
		top: 8px;
		height: 64px;
	}
	50%,
	100% {
		top: 24px;
		height: 32px;
	}
}
@keyframes dashedRotate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes iconPulse {
	0%{
		-webkit-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
		opacity: 0;
	}
	50%{
		opacity: 1;
	}	
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes iconPulse {
	0%{
		-webkit-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
		opacity: 0;
	}
	50%{
		opacity: 1;
	}	
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes spinnerLoad {
	1% {
		top: -15px;
	}
	2% {
		top: 10px;
	}
	5% {
		top: -20px;
	}
	10% {
		left: -10px;
	}
	20% {
	    top: -25px;
	}
	30% {
	    left: 15px;
		background:#15db95;
	}
	35% {
	    top: 5px;
	}
	45% {
	    top: -5px;
	}
	50% {
		top: -5px;
	}
	60% {
		top: -6px;
	}
	70% {
	    top: 6px;
	}
	80% {
	    top:6px;
	}
	60% {
	    top: -6px;
	}
}	 
@keyframes spinnerLoad {
	1% {
		top: -15px;
	}
	2% {
		top: 10px;
	}
	5% {
		top: -20px;
	}
	10% {
		left: -10px;
	}
	20% {
	    top: -25px;
	}
	30% {
	    left: 15px;
		background:#15db95;
	}
	35% {
	    top: 5px;
	}
	45% {
	    top: -5px;
	}
	50% {
		top: -5px;
	}
	60% {
		top: -6px;
	}
	70% {
	    top: 6px;
	}
	80% {
	    top:6px;
	}
	60% {
	    top: -6px;
	}
}
@-webkit-keyframes spinnerDelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
	20% { -webkit-transform: scaleY(1.0) }
} 
@keyframes spinnerDelay {
	0%, 40%, 100% { 
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  
	20% { 
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
  }
  
  #header.header-scrolled {
	background: #0033CC;
	height: 60px;
  }
  
  #header .logo h1 {
	font-size: 36px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: normal;
	}
  
  #header .logo h1 a, #header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
  }
  
  #header .logo img {
	padding: 0;
	margin: 0;
	max-height:34px;
  }


  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu, .nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
  .nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
  }
  
  .nav-menu a {
	display: block;
	position: relative;
	color: rgba(255, 255, 255, 0.7);
	padding: 10px 12px;
	transition: 0.3s;
	font-size: 15px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
  }
  
  .nav-menu > ul > li > a:before {
	content: "";
	position: absolute;
	width:100%;
	height: 2px;
	bottom: 3px;
	left:0;
	background-color: #1acc8d;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
  }
  
  .nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
	visibility: visible;
	width:100%;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
	color: #fff;
	text-decoration: none;
  }
  
  .nav-menu .drop-down ul {
	display: block;
	width: 320px;
	position: absolute;
	left:-105px;
	top: 60px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
	}
  
  .nav-menu .drop-down:hover > ul {
	opacity: 1;
	top: 40px;
	visibility: visible;
	border-radius: 5px;
	}
  
  .nav-menu .drop-down li {
	min-width: 150px;float: left;
	position: relative;
  }
  
  .nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #01036f;
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
	color: #1acc8d;
  }
  
  .nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
  }
  
  .nav-menu .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
  }
  
  .nav-menu .drop-down .drop-down > a {
	padding-right: 35px;
  }
  
  .nav-menu .drop-down .drop-down > a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
  }
  .navbar-toggler {
	padding: 0;
}
.nav-menu  .navbar-brand {
	padding: 0;
	margin: 0;
}
.navbar-toggler {
	outline: none;
	border: none;
}
.navbar-toggler {
	margin-right: 15px;
}
.togler-icon-inner > span {
	display: block;
	background: #fff;
	height: 3px;
    margin: 5px;
    width: 30px;
    -webkit-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
}
.togler-icon-inner > span:nth-child(2) {
	width: 20px !important;
	margin-left: auto;
}
.togler-icon-inner > span:last-child {
	margin-bottom: 0;
}
.navbar-toggler[aria-expanded="true"] .togler-icon-inner > span:nth-child(1) {
	-webkit-transform: rotate(-45deg) translate(-5px, 6px);
		-ms-transform: rotate(-45deg) translate(-5px, 6px);
		 -o-transform: rotate(-45deg) translate(-5px, 6px);
			transform: rotate(-45deg) translate(-5px, 6px);
}
.navbar-toggler[aria-expanded="true"] .togler-icon-inner > span:nth-child(3) {
	-webkit-transform: rotate(45deg) translate(-5px, -6px);
	-ms-transform: rotate(45deg) translate(-5px, -6px);
	 -o-transform: rotate(45deg) translate(-5px, -6px);
		transform: rotate(45deg) translate(-5px, -6px);
}

.navbar-toggler[aria-expanded="true"] .togler-icon-inner > span:nth-child(2) {
	opacity: 0;
}
 
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
  }
  
  .mobile-nav-toggle i {
	color: #fff;
  }
  
  .mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
  }
  
  .mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
  .mobile-nav a {
	display: block;
	position: relative;
	color: #01036f;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #1acc8d;
	text-decoration: none;
  }

  .mobile-nav .drop-down > a {
	padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
	padding-left: 20px;
  }
 .drop-down i{margin-left: 5px;}
  .mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(13, 18, 252, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
  }
  
  .mobile-nav-active {
	overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
  }
  /* ---------------------------------------------------------------- */
/* 06.Hero Section                                  
/* ---------------------------------------------------------------- */
.hero-section {
	position: relative;

	width: 100%;height: auto;
}
.hero-section .owl-dots{position: absolute;left: 0;bottom: 30px;right: 0;margin: 0 auto;}
.hero-section .owl-nav{position: absolute;left: 10%;top: 60%;width: 80%;font-size: 20px;color:#fff;}
.hero-section .owl-prev{background: #15db95;float: left;width: 50px;height: 50px;text-align: center;line-height:50px;display: block;}
.hero-section .owl-next{background: #15db95;float: right;width: 50px;height: 50px;text-align: center;line-height:50px;display: block;}

/* Hero Button Group */
.down-scroll {
	cursor: pointer;
	color: #15db95 !important;
	background: #fff;
	text-align: center;
	font-size: 16px;
	position: absolute;
	left: 50%;
	z-index: 15;
	border-radius: 5px;
	bottom: 85px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.weizhi{color: #ff5e00;font-size: 20px;}
.wave-svg-box {
    position: absolute;
    bottom: -138px;
    left: 0;
    }

/*==== wave-svg-box =====*/
.wave-svg-box {
  width: 100%;
  z-index: 1; }
  .wave-svg-box .wave {
    animation: wave 9s linear;
    animation-iteration-count: infinite;
    fill: #fff; }
  .wave-svg-box #wave2 {
    animation-duration: 6s;
    animation-direction: reverse;
    opacity: .6; }
  .wave-svg-box #wave3 {
    animation-duration: 8s;
    opacity: .3; }
  .wave-svg-box .gooeff {
    filter: url(#goo); }
    .wave-svg-box .gooeff .drop {
      fill: #fff;
      xfill: #99000055;
      animation: drop 8.3s linear infinite normal;
      stroke: var(#fff);
      transform: translateY(25px);
      transform-box: fill-box;
      transform-origin: 50% 100%; }
    .wave-svg-box .gooeff .drop2 {
      animation-delay: 3s;
      animation-duration: 5s; }
    .wave-svg-box .gooeff .drop3 {
      animation-delay: -3s;
      animation-duration: 4.4s; }
    .wave-svg-box .gooeff .drop4 {
      animation-delay: 2.7s; }
    .wave-svg-box .gooeff .drop5 {
      animation-delay: 3.7s;
      animation-duration: 4.1s; }
    .wave-svg-box .gooeff .drop6 {
      animation-delay: -2.1s;
      animation-duration: 5.2s; }

@keyframes drop {
  0% {
    transform: translateY(25px); }
  30% {
    transform: translateY(-10px) scale(0.1); }
  30.001% {
    transform: translateY(25px) scale(1); }
  70% {
    transform: translateY(25px); }
  100% {
    transform: translateY(-10px) scale(0.1); } }

@keyframes wave {
  to {
    transform: translateX(-100%); } }

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â  */
	.circle1 {
		position: absolute;
		left: 40px;
		top: 40px;
		width:100px;
		height:100px;
		border-radius:50%;
		background:rgba(255,255,255,0.1);
		animation: move 2.5s linear infinite; 
	}
	.circle2{
		position: absolute;
		left: 30%;
		top: 60%;
		width:150px;
		height:150px;
		border-radius:50%;
		background:rgba(255,255,255,0.1);
		animation: move 3s linear infinite; 
	}
	.circle3 {
		position: absolute;
		right: 40px;
		top: 140px;
		width:130px;
		height:130px;
		border-radius:50%;
		background:rgba(255,255,255,0.1);
		animation: move 2.5s linear infinite; 
	}
	.circle4 {
		position: absolute;
		left: 45%;
		top: 50px;
		width:160px;
		height:160px;
		border-radius:50%;
		background:rgba(255,255,255,0.1);
		animation: move 3.5s linear infinite; 
	}
	
	@-webkit-keyframes move {
		0% {
			transform: translateY(0px); 
		}
		50% {
			transform: translateY(25px); 
		}
		100% {
			transform: translateY(0px); 
		} 
	}
	@-moz-keyframes move {
		0% {
			transform: translateY(0px); 
		}
		50% {
			transform: translateY(25px); 
		}
		100% {
			transform: translateY(0px); 
		} 
	}
	@-o-keyframes move {
		0% {
			transform: translateY(0px); 
		}
		50% {
			transform: translateY(25px); 
		}
		100% {
			transform: translateY(0px); 
		} 
	}
	@keyframes move {
		0% {
			transform: translateY(0px); 
		}
		50% {
			transform: translateY(25px); 
		}
		100% {
			transform: translateY(0px); 
		}  
	}



/* ---------------------------------------------------------------- */
/* 07.Services    
/* ---------------------------------------------------------------- */
.services-item {
	padding: 30px 20px;
	background: #fff;
	position: relative;
	border-radius: 10px;
}
.services-item .services-icon {
	display: inline-block;
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 40px;
	font-size: 24px;
	line-height: 80px;
	border-radius: 10px;
	background: #0033CC;
	color: #fff;
	-webkit-box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
	box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
}
.services-icon span {
	position: relative;
	display: inline-block;
}
.services-body h5 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}
.services-body p {
	min-height: 140px;
	margin-bottom: 20px;
	font-size: 15px;
}
.services-body + .services-link {
		display: inline-block;
		border-radius: 5px;
		font-size: 14px;
		padding: 10px 20px;
		color: #fff !important;
		background: #15db95;
		-webkit-box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
		box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
		-webkit-transition: all 0.25s linear;
		transition: all 0.25s linear;
}
.services-body + .services-link:hover {
	background: #12bd81;
}
.services-resp-margin{padding: 0 10px;}
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.services-resp-margin:nth-child(3) {
		margin-top: 30px;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.services-resp-margin {
		margin-top: 30px;
	}
	.services-resp-margin:first-child {
		margin-top: 0;
	}
}

/* ---------------------------------------------------------------- */
/* 08.About     
/* ---------------------------------------------------------------- */
.about {
	background: #f0f3fc;
}
.about-list {
	margin: 0 0 40px 0;
}
.about-list ul > li > i {
	margin-right: 15px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	display: inline-block;
	border-radius: 5px;
	font-size: 10px;
	color: #fff !important;
	background: #0033cc;
	-webkit-box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.1);
	box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.1);
}
.about-list ul > li {
	margin-top: 15px;
	font-weight: 500;
	color: #111;
}
.about-list ul > li:first-child {
	margin-top: 0;
}
.about-inner h3 {
	margin-bottom: 15px;
	line-height: 1.35;
}
.about-inner p {
	margin-bottom: 30px;
}
.about_img{padding: 0}
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.about-inner {
		margin-top: 50px;
	}
}

/* ---------------------------------------------------------------- */
/* 09.Features                                  
/* ---------------------------------------------------------------- */
.features-list{
	display: inline-block;
}
.features-list > li {
	margin-top: 15px;
	padding: 20px;
	border-radius:5px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
}
.features-list > li:first-child {
	margin-top: 0;
}
.features-list > li h6 {
	margin-bottom: 10px;
}
.features-list i {
	display: inline-block;
    margin-right: 20px;
    font-size: 40px;
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
    line-height: 80px;
    border-radius: 5px;
    text-align: center;
	color: #fff;
	background: #0033CC;
	-webkit-box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
	box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
}
.features-inner > h3 {
	margin-bottom: 15px;
}
.features-inner > p {
	margin-bottom: 30px;
}
.features-image-pattern {
	position: relative;
}
.features-circle {
	position: absolute;
    top: 50%;
	left: 50%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	transform: translate(-50%,-50%);
	background-position: center;
	background: #0033CC;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */

@media only screen and (max-width: 991.98px) {
	.features-image-mb {
		margin-bottom: 30px;
	}
	.features-image-order {
		order:2;
	}
	.features-circle {
		display: none;
	}
	.features-image-resp {
		text-align: left !important;
	}
}
.features-row-mt {
	margin-top: 100px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.features-image-resp {
		margin-top: 60px;
	}
	.features-row-mt {
		margin-top: 60px;
	}
}

/* ---------------------------------------------------------------- */
/* 10.How it Works                            
/* ---------------------------------------------------------------- */
.how-it-works-section {
	position: relative;	
}
.how-it-works-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0033cc;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cg %3E%3Ccircle fill='%230033cc' cx='400' cy='400' r='600'/%3E%3Ccircle fill='%230032c6' cx='400' cy='400' r='500'/%3E%3Ccircle fill='%230030c1' cx='400' cy='400' r='400'/%3E%3Ccircle fill='%23002fbb' cx='400' cy='400' r='300'/%3E%3Ccircle fill='%23002db6' cx='400' cy='400' r='200'/%3E%3Ccircle fill='%23002cb0' cx='400' cy='400' r='100'/%3E%3C/g%3E%3C/svg%3E");
	background-size: cover;
}
/* How it works inner */
.how-it-works-inner {
	margin-bottom: 100px;
}
.how-it-works-inner > h3 {
	margin-bottom: 15px;
}
.how-it-works-inner  p {
	margin-bottom: 40px;
	color: #fff;
	opacity: 0.85;
}

/* How it works video */
.how-it-work-video {
	position: relative;
}
.how-it-works-video-btn {
	position: absolute;
	text-align: center;
	height: 80px;
	width: 80px;
	line-height: 80px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	cursor: pointer;
	font-size: 40px;
	background: #15db95;
	color: #fff !important;
	-webkit-animation: shadowPulse 2s linear infinite;
	animation: shadowPulse 2s linear infinite;
	-webkit-box-shadow: 0 0 0 10px rgba(21, 219, 150, 0.4);
	box-shadow: 0 0 0 10px rgba(21, 219, 150, 0.4);
}

/* How it work process */
.how-it-work-item {
	padding: 0;
}
.how-it-work-number {
	position: relative;
	z-index: 52;
	margin-bottom: 40px;
}
.how-it-work-item .how-it-work-number::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -50%;
	width: 100%;
	transform: translateY(-50%);
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
	z-index: -7;
	border:2px dashed #fff;
}
.how-it-work-item:last-child .how-it-work-number::before {
	display: none;
}
.how-it-work-number > a > span {
	text-align: center;
	height: 80px;
	width: 80px;
	display: inline-block;
	line-height: 80px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 26px;
	color: #000;
	background: #fff;
	font-weight: 500;
	transition: all 0.2s linear;
	box-shadow: 0 0 0 10px #315ad6,0 0 0 20px #1a48d1;
}
.how-it-work-item.active a > span {
	color: #fff !important;
	font-family: "Poppins",sans-serif;
	background-position: center;
    background: #15db95;
}
.how-it-work-item:hover .how-it-work-number > a > span {
	background: #15db95;
	color: #fff !important;
}
.how-it-work-item h6 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 10px;
}
.how-it-work-text p {
	color: #fff;
	opacity: 0.85;
}
.how-it-work-text {
	padding-left: 15px;
	padding-right: 15px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.how-it-work-item:nth-child(1),
	.how-it-work-item:nth-child(2) {
		margin-bottom: 50px;
	}
	.how-it-work-item:nth-child(2) .how-it-work-number::before {
		display: none;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.how-it-work-item {
		margin-bottom: 30px;
	}
	.how-it-work-item .how-it-work-number::before {
		display: none !important;
	}
	.how-it-work-item:last-child {
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------------------- */
/* 11.Screenshots                              
/* ---------------------------------------------------------------- */
.screenshots-slider {
	position: relative;
}
.screenshots-slider .owl-item {
	-webkit-transform: scale(0.9, 0.9);
	transform: scale(0.95, 0.95);
	opacity: 0.6;
}
.screenshots-slider .owl-item img,
.screenshots-slider .owl-item {
	border-radius: 10px !important;
}
.screenshots-slider .active.center {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	transform: scale(1);
}
.screenshots-slider.owl-theme .owl-nav button {
	position: absolute;
	top: 50%;
	display: inline-block;
	border-radius: 5px;
	font-size: 14px;
	height: 50px;
	width: 50px;
	color: #fff !important;
	background: #15db95;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
	box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
	-webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
}
.screenshots-slider.owl-theme .owl-nav button:hover {
	color: #fff !important;
	background: #12bd81;
}
.screenshots-slider.owl-theme .owl-nav button.owl-next {
	right: -30px;
}
.screenshots-slider.owl-theme .owl-nav button.owl-prev {
	left: -30px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.screenshots-slider.owl-theme .owl-nav button.owl-next {
		right: 0;
	}
	.screenshots-slider.owl-theme .owl-nav button.owl-prev {
		left: 0;
	}
}

/* ---------------------------------------------------------------- */
/* 12.Pricing                              
/* ---------------------------------------------------------------- */
.price-toggle-wrap {
	text-align: center;
	margin-bottom: 60px;
	display: inline-block;
	margin: 0 auto 60px auto;
	padding: 10px;
	border-radius: 5px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
}
.pricing-tab-content {
	display: none;
}
.pricing-tab-content.active {
	display: block;
}
.price-toggle-wrap > a {
	padding: 20px 50px;
	float: left;
	border-radius: 5px;
	margin-right: 10px;
	background-position: center;
	position: relative;
	overflow: hidden;
	background-color: #e8eafd;
    color: #0033CC;
}
.price-toggle-wrap > a.active {
	background-position: center;
	background: #0033CC;
	color: #fff;
}

/* Price Table */
.price-table {
	border-radius: 5px;
	padding: 40px 0;
	background: #fff;
}
.price-table-active .price-table {
	background: #0033CC;
	-webkit-box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
	box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
}
.price-table-active .price-icon span  {
    background: #fff;
	color: #0033CC;
}
.price-table-active h4, .price-table-active li,
.price-table-active .price-body > ul > li::before,
.price-table-active .price-table h5 {
	color: #fff !important;
}
.price-table .price-header, .price-body, .price-btn-wrap {
	padding: 0 30px;
}
.price-btn-wrap {
	text-align: center;
}
.price-table .price-header h4 {
	font-size: 1.4rem;
	text-transform: capitalize;
	margin-bottom: 8px;
}
.price-icon span {
	height: 80px;
	width: 80px;
	text-align: center;
	display: block;
	font-size: 40px;
	border-radius: 5px;
	line-height: 80px;
	background: #0033CC;
	color: #fff;
	-webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
	-webkit-box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
	box-shadow: 0 10px 16px 0 rgba(0, 51, 204, 0.15);
}
.price-table .price-value h5 {
	font-size: 2rem;
}
.price-table h5 > sub {
	vertical-align: initial;
	bottom: 0;
}
.price-body {
	border-top: 1px solid rgba(0, 0, 0, 0.062);
	margin: 40px 0;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.062);
}
.price-table-active .price-body {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.price-table-active .price-table .price-body > ul > li::after {
	color: #fff;
}
.price-table .price-body > ul {
	text-align: left;
}
.price-table .price-body > ul > li {
	margin-bottom: 15px;
}
.price-table .price-body > ul > li::before {
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	margin-right: 15px;
	color: #15db95;
}
.price-table .price-body > ul > li::after {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	color: #15db95;
	float: right;
}
.price-table .price-body > ul > li:last-child {
	margin-bottom: 0;
}
.price-table .default-btn {
	display: block;
}

.price-table-active .default-btn {
	background: #fff;
	color: #0033CC !important;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.price-table-margin {
		margin-bottom: 50px;
	}
}

/* ---------------------------------------------------------------- */
/* 13.Testimonial Section       
/* ---------------------------------------------------------------- */
.testimonial-section {
	position: relative;
}
.testimonial-section-bg {
	width: 100%;
	height: 100%;
	background-color: #0033cc;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%230033cc' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%230033cc' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%230033cc' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%230033cc' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%230033cc' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%230035d3' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%230036d9' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%230038e0' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%230039e6' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23003bed' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
	background-size: cover;
}
.testimonial-section .section-title::after,
.testimonial-section .section-title::before {
	background: #fff;
}
.testimonial-section .section-sub-title {
	opacity: 0.9;
}
.testimonial-item {
	padding: 30px;
	background: #fff;
	position: relative;
	border-radius: 5px;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
	margin: 0 0 30px 0;
}
.testimonial-item::before {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	width: 90%;
	height: 15px;
	background: #fff;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
	transform: translateX(-50%);
	border-radius: 0 0 5px 5px;
	z-index: -7;
}

.testimonial-text p {
	font-size: 14px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp:3;
    -webkit-box-orient: vertical;
}
.testimonial-rating {
	margin-top: 15px;
}
.testimonial-rating i {
	margin-right: 2px;
	color: #fff;
	font-size: 10px;
	border-radius: 5px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background: #15db95;
	-webkit-box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
	box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
}
.testimonial-rating i:last-child {
	margin-right: 0;
}
.testimonial-img {
	flex: 0 0 200px;
	height:130px;
	overflow: hidden;
}
.testimonial-body {
	margin-bottom: 10px;
}
.testimonial-body img {
	width: inherit !important;
	border-radius: 5px;
	display:inline-block !important;
	text-align: center;
}

/* Owl Carousel */
.testimonial-section .testimonial-slider .owl-dots {
	margin-top: 10px;
}
.testimonial-section .owl-theme .owl-dot span {
    width: 10px;
    height: 8px;
    border-radius: inherit;
    border-color: #fff;
    background-size: cover;	
    background: #fff;
    opacity: 0.5;
    margin-right: 0;
    -webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
}
.testimonial-section .owl-theme .owl-dot.active span {
	width: 20px;
    opacity: 1 !important;
}

/* Testimonial Counters */
.counters {	
	padding-top: 100px;
}
.counter-icon {
	position: relative;
	display: inline-block;
	font-size: 50px;
	width: 100px;
	height: 100px;
	line-height: 100px;
	display: inline-block;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	margin-bottom: 30px;
}
.counter-body h2 {
	font-size: 38px !important;
	line-height: 1;
	margin-bottom: 10px;
}
.counter-icon,
.counter-body p, .counter-body h2 {
	color: #fff;
}
.counter-body p {
	opacity: 0.85;
}
.counter-icon::after,
.counter-icon::before {
	content: "";
	display: block;
	position: absolute;
	border-radius: 50%;
	border:1px solid #fff;
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -20px;
	opacity: 0;
	animation: iconPulse 1s linear infinite;
}
.counter-icon::after {
	animation-delay: 0.5s;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.counters-item:nth-child(1),
	.counters-item:nth-child(2) {
		margin-bottom: 50px;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.counters-item {
		margin-bottom: 30px;
	}
	.counters-item:last-child {
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------------------- */
/* 14.Our Team                              
/* ---------------------------------------------------------------- */
.team-card {
    position: relative;
	border-radius: 10px;
	background: #fff;
}
.team-card .team-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.team-card .team-img:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.35s ease-in-out 0s;
    background: #0033CC;
	opacity: 0.8;
}
.team-card:hover .team-img:after{
    bottom: 0;
}
.team-card .team-social {
	position: absolute;
    top: -100%;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 1;
    border-radius: 5px;
    display: none;
}
.team-card .team-social li {
	display: inline-block;
}
.team-card:hover .team-social {
    top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
}
.team-card:hover .team-social a {
	animation: fadeInUp 0.6s ease-in-out forwards;
}
.team-card .team-social li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
	background: #15db95;
    color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease 0s;
    margin-right: 5px;
	border:2px solid transparent;
}
.team-card .team-social li:last-child a {
	margin-right: 0;
}
.team-card:hover .team-social li a:hover {
    color: #fff;
    background: transparent;
    border:2px solid #fff;
}
.team-card .team-card-content{
    padding: 30px 0;
}
.team-card .title {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0 0 10px;
    position: relative;
}
.team-card .desc {
	display: inline-block;
	margin-bottom: 10px;
	border-radius: 5px;
	font-size: 14px;
	padding: 10px 20px;
	color: #fff !important;
	background: #15db95;
	text-transform: capitalize;
	-webkit-box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
	box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.team-card-margin {
		margin-top: 30px !important;
	}
	.team-card-margin:nth-child(1) {
		margin-top: 0 !important;
	}
}

/* ---------------------------------------------------------------- */
/* 15.Download Section                             
/* ---------------------------------------------------------------- */
.download-wrap {
	position: relative;
	overflow: hidden;
}
.download-section-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0033CC;
}
.download-section-inner > h2 {
	color: #fff;
	margin-bottom: 15px;
}
.download-section-inner > p {
	color: #fff;
	opacity: 0.85;
	margin-bottom: 20px;
}
.download-buttons {
	margin-top: 40px;
}
.download-btn {
	display: inline-block;
	overflow: hidden;
	padding: 20px 30px;
	max-width: 200px;
	border-radius: 5px;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 500;
	text-transform: uppercase;
	position: relative;
	text-align: left;
	margin-right: 15px;
	border: 2px solid #fff;
	background: #fff;
	color: #000 !important;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}
.download-btn:hover {
	background: transparent;
	border: 2px solid #fff;
	color: #fff !important;
}
.srm_tip{
    padding: 20px 20px;
    float: left;
    border: 2px solid #4b73ea;
    color: #fff !important;
    margin-left: 10px;
    border-radius: 5px;
}
.download-btn:last-child {
	margin-right: 0;
}
.download-buttons .download-btn i {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 20px;
	font-size: 30px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.download-btn span {
	display: block;
	margin-left: 35px;
}

/* Downlaod Stars */
.download-stars {
	position: relative;
}
.download-stars .download-ratings {
	display: inline-block;
	position: relative;
	padding: 10px 20px 10px 0;
}
.download-stars .download-ratings > i {
	color: #fdd55e;
	margin-right: 4px;
}
.download-stars .download-ratings > i:last-child {
	margin-right: 0;
}
.download-stars .download-rate-count {
	background: #fff;
	padding: 10px;
	border-radius: 5px;
	color: #000;
	position: relative;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}
.download-stars .download-rate-count::before {
	content: "";
	position: absolute;
	top: 7px;
	left: -28px;
	border: 15px solid;
	border-radius: 5px;
	border-color: transparent #fff transparent transparent;
}
.download-ratings span {
	color: #fff;
	font-weight: 600;
	font-size: 3rem;
	margin-right: 10px;
}
.download-image {
	position: relative;
	z-index: 42;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.download-section-inner {
		text-align: center;
	}
	.download-section-inner .download-buttons,
	.download-stars {
		justify-content: center !important;
	}
	.counters{padding-top: 90px}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.download-section-inner .download-buttons {
		text-align: center;
		display: block !important;
	}
	.download-section-inner .download-buttons .download-btn {
		display: block;
		margin: 0 auto 15px auto;
	}
	.download-section-inner .download-buttons .download-btn:nth-child(2) {
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------------------- */
/* 16.Latest Blog Section       
/* ---------------------------------------------------------------- */
.latest-blog-item {
	border-radius:5px;
	background: #fff;
	overflow: hidden;
	position: relative;
}
.blog-item-inner {
	padding:10px 20px;
}
.blog-img img, .blog-img  {
	width: 100%;height:auto;min-height: 100%;max-height: 120%
}
.blog-img {
	position: relative;
	overflow: hidden;height:200px
}
.blog-item-margin {padding-right: 10px;padding-bottom: 20px;}
.blog-item_in{padding-right: 0}
.blog-img:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -100%;
    left: 0;
    background: #0033CC;
	opacity: 0.8;
	-webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
}
.blog-img:hover::after{
    bottom: 0;
}
.blog-single-link {
    position: absolute;
    top: -100%;
    width: 100%;
    left: 50%;
    height: 100%;
	z-index: 1;
	display: none;
    border-radius: 50px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.blog-img:hover .blog-single-link {
    top: 50%;
    display: block;
}
.blog-img a {
    position: absolute;
	top: -100%;
    left: 50%;
    width: 50px;
	height: 50px;
	line-height: 50px;
	background: #15db95;
    color: #ffffff;
    z-index: 1;
	border-radius: 5px;
	text-align: center;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	transition: all 0.3s ease 0s;
    border:2px solid transparent;
}
.blog-img a:hover {
	color: #fff;
    background: transparent;
    border:2px solid #fff;
}
.latest-blog h6{overflow: hidden;
	white-space: nowrap;  -webkit-box-orient: vertical;
	text-overflow: ellipsis;}

/* Blog Details */
.blog-meta {
	display: inline-block;
	margin-bottom: 10px;
}
.blog-meta > i {
	margin-right: 10px;
	color: #0033CC;
}
.blog-body a {
	margin-bottom: 15px;
	display: block;
	margin-top: 5px;
}
.blog-body .blog-title-link:hover h6{
	color: #0033CC !important;
}
.blog-body p {
	margin-bottom:10px;
	display: block;text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.blog-author h6 {
	font-size: 0.9rem;
	margin-left: 15px;
}
.blog-like a > i {
	margin-right: 5px;
	color: #0033CC;
}
.blog-item-margin .tip{background: #007bff;color: #f8f9fa;float: left;padding: 8px 20px 8px 15px;border-radius: 0 5px 5px 0;font-size: 14px;margin-bottom: 15px;position: absolute;top: 20px;left: 0;z-index: 9;}
.blog_bottom{height: auto;overflow: hidden;margin-bottom: 15px;color: #999;}
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.blog-item-margin:nth-child(3) {
		margin-top: 30px;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.blog-item-margin {
		margin-top: 30px;
	}
	.blog-item-margin:first-child {
		margin-top: 0;
	}
}

/* ---------------------------------------------------------------- */
/* 17.Newsletter      
/* ---------------------------------------------------------------- */
.newsletter {
	position: relative;
	background-color: #0033CC;
}
.newsletter-title {
	margin-bottom: 60px;
}
/* Newsletter Form */
.newsletter-wrap {
	margin-bottom: 100px;
}
.newsletter-form-group {
	position: relative;
	overflow: hidden;
}
.newsletter-form-control {
	display: block;
	width: 100%;
	height: 80px;
	border:none;
	padding: 0 100px 0 50px;
	border-radius: 5px;
}
.newsletter-form-btn {
	position: absolute;
	top: 50%;
	right: 15px;
	border-radius: 5px;
	padding: 15px 40px;
	color: #fff;
    background: #15db95;
	transition: all 0.25s linear 0s;
}
.newsletter-form-btn:hover {
	background: #12bd81;
}
.newsletter-form-btn, .newsletter-form-group span {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.newsletter-form-group span {
	position: absolute;
	left: 20px;
	top: 50%;
	padding-top: 2px;
	font-size: 18px;
	opacity: 0.8;
}

/* ---------------------------------------------------------------- */
/* 18.FAQ      
/* ---------------------------------------------------------------- */
.faq {
	overflow: visible;
}
.faq .container {
	background: #fff;
	position: relative;
	border-radius: 5px;
	margin-top: -100px;
	padding: 100px 30px;
}
.faq-title {
	margin-bottom: 60px;
}
#faq-tab-accordion .card-header {
	padding: 15px;
    background: #fff;
    border:none;
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	border-radius: 5px;
	border: none;
	-webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
	background-size: 200% auto;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
}
#faq-tab-accordion .card {
	border: 0;
}
#faq-tab-accordion .card-header a {
	color: #000;
	font-weight: 600;
}
.card-header h6 {
	font-size: 1.125rem;
}
.card-header h6 span {
	height: 50px;
    width: 50px;
    margin-right: 10px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
	background: rgba(74, 79, 230, 0.1);
	color: #0033CC;
	font-size: 1.125rem;
}
#faq-tab-accordion .card-toggle-btn::after {
	content: "\f067";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	height: 40px;
    width: 40px;
    margin-left: 10px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
	background: rgba(74, 79, 230, 0.1);
	color: #0033CC;
	transition: all 0.25s linear;
}
#faq-tab-accordion .card-header[aria-expanded="true"] .card-toggle-btn::after {
	transform: rotate(180deg);
	content: "\f068";
}
#faq-tab-accordion .card-header[aria-expanded="true"] {
	background: #0033CC;
	border-bottom-color: transparent;
}
#faq-tab-accordion .card-header[aria-expanded="true"] .card-toggle-btn::after,
#faq-tab-accordion .card-header[aria-expanded="true"] h6 span {
	background: #fff;
}
#faq-tab-accordion .card-header[aria-expanded="true"] h6 {
	color: #fff;
}

/* FAQ Form */
.faq-form-wrap {
	padding: 0 15px;
}
.faq-form-title {
	margin-bottom: 30px;
}
.faq-form-control {
	margin-bottom: 30px;
	color: #100e17;
	outline: none;
	padding: 18px 20px;
	font-size: 0.9rem;
	border: none;
	width: 100%;
	border-radius: 5px;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
}
.faq-form-control:focus {
	-webkit-box-shadow: 0 10px 26px 0 rgba(0, 51, 204, 0.15);
	box-shadow: 0 10px 26px 0 rgba(0, 51, 204, 0.15);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.faq-form-margin {
		margin-top: 50px;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.faq .container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.faq-form-wrap {
		padding: 0;
	}
}

/* ---------------------------------------------------------------- */
/* 19.Contact Us       
/* ---------------------------------------------------------------- */
.form-control {
	margin-bottom: 30px;
	height: 60px;
	color: #100e17;
	outline: none;
	padding: 0 20px;
	font-size: 0.9rem;
	border: none;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
}
.form-control:focus, textarea.form-control:focus {
	outline: none;
	border: none;
	color: #100e17;
	-webkit-box-shadow: 0 10px 26px 0 rgba(0, 51, 204, 0.15);
	box-shadow: 0 10px 26px 0 rgba(0, 51, 204, 0.15);
}
textarea.form-control {
	height: auto;
	padding-top: 20px;
}
.empty-form span {
	background: #f8d7da;
	color: #721c24;
	display: block;
	padding: 20px;
	margin-bottom: 10px;
}
.success-form span {
	background: #e8eafd;
	color: #0033CC;
	display: block;
	padding: 20px;
	margin-bottom: 10px;
}
.email-invalid span {
	background: #f8e2e4;
	color: #721c24;
	display: block;
	padding: 20px;
	margin-bottom: 10px;
}

/* ---------------------------------------------------------------- */
/* 20.Footer                              
/* ---------------------------------------------------------------- */
.footer {
	background: rgb(0, 14, 56);
}
.footer-top {
	padding: 80px 0 10px;
}
.footer-title {
	margin-bottom:20px;
	font-weight: 500;
	color: #fff;
}
.footer-title::after {
	content: "";
	width: 50px;
	height: 2px;
	background: #fff;
	display: block;
	margin-top: 15px;
}
.contact-info-footer {
	margin-top: 10px;
}
.contact-info-footer a{float: left;display: block;width: 100%;padding-bottom: 10px;}
.footer li {
	margin-bottom: 10px;
	color: #fff;
	opacity: 0.6;
}

.footer-links>li::before {
	content: "\f105";
	display: inline-block;
	margin-right: 10px;
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	vertical-align: top;
}
.footer-links>li:hover {
	opacity: 1;
}
.footer-logo {
	display: inline-block;
	margin-bottom: 20px;
}
.footer p {
	color: #fff;
	opacity: 0.6;margin-bottom: 10px;
}
.footer-box p i {
	color: #fff;
}
.footer li i{margin-right: 5px;}
/* Footer Social Links */
.footer-social-links {
	margin-top: 10px;
}
.footer-social-links > a {
	height: 34px;
	width: 34px;
	margin-right: 5px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	border-radius: 50%;
	background: rgba(255, 255, 255,0.02);
	color: #fff;
}
.footer-social-links > a:last-child {
	margin-right: 0;
}
.footer-social-links > a:hover {
	background: #12bd81;
	color: #fff;
}
.contact-info-footer li i {
	margin-right: 10px;
}

/* Copyright */
.copyright {
	padding:20px 0 10px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
    opacity: 0.75;
}
.footer_nav li{width: 50%;float: left;}
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.footer-widget {
		margin-bottom: 30px;
	}
	.footer-widget:nth-child(3),
	.footer-widget:nth-child(4) {
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.footer-widget {
		margin-bottom: 0;
	}
	.footer-widget:nth-child(4) {
		margin-bottom: 0 !important;
	}
	.copyright{padding: 0;}
}

/* ---------------------------------------------------------------- */
/* 21.Breadcrumb                              
/* ---------------------------------------------------------------- */
.breadcrumb-section {
	padding: 150px 0;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.breadcrumb-content {
	position: relative;
	z-index: 77;
}
.bread-crumb-title {
	font-size: 2.2rem;
	color: #fff;
}
.breadcrumb-link {
	margin-top: 20px;
}
.breadcrumb-link > li {
	display: inline-block;
	color: #fff;
}
.breadcrumb-link > li.active::before {
	content: "\f30b";
 	display: inline-block;
	margin-right: 10px;
	margin-left: 10px;
	font-family: "Font Awesome 5 Free", sans-serif;
	font-weight: 600;
	color: #15db95;
}

/* ---------------------------------------------------------------- */
/* 22.Blog Page                              
/* ---------------------------------------------------------------- */
.blog-page-item {
	margin-bottom: 30px;
}
.blog-item {
	border-radius: 10px;
}
/* Pagination */
.pagination-wrap {
	margin-top: 50px;
}
.pagination-link {
	width: 42px;
	height: 42px;
	line-height: 42px;
	margin-right: 2px;
	text-align: center;
	display: inline-block;
	border-radius: 5px;
	background-position: center;
	background: #fff;
	border: 1px solid #f0f0f0;
}
.pagination-link:hover,
.pagination-link.active {
	background: #0033cc;
	color: #fff !important;
	border-color: transparent;
}
.pagination-link:last-child {
	margin-right: 0;
}

/* Blog Single Post Meta */
.blog-post-desc > p {
	margin-bottom: 20px;
}
.blog-post-desc > p:last-child {
	margin-bottom: 30px;
}
.blog-single-meta {
	padding: 20px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-single-meta-box > span > i {
	color: #0033CC;
	margin-right: 10px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	display: inline-block;
	background: #e8eafd;
	text-align: center;
	border-radius: 50%;
}
.blog-single-meta-box > span {
	margin-right: 10px;
}
.blog-single-meta-box > span:last-child {
	margin-right: 0;
}
.blog-single-meta-box > a {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	background: #e8eafd;
	color: #0033CC;
	text-align: center;
	margin-right: 5px;
}
.blog-single-meta-box > a:hover {
	background: #0033CC;
	color: #fff !important;
}
.blog-post-quote blockquote {
	padding: 30px;
	border-left: 5px solid #0033CC;
	margin-bottom: 30px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
	border-radius: 5px;
}
.blog-post-quote blockquote p {
	font-style: italic;
	font-size: 1.125rem;
}
.blog-post-quote blockquote p strong {
	margin-top: 10px;
	display: block;
	color: #111;
}
.blog-subheadline {
	margin: 30px 0;
}
.blog-subheadline span {
	margin-right: 15px;
}
.blog-title-subline {
	margin-bottom: 20px;
}

/* Comments Item */
.comment-item {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.sub-comment-item {
	margin-left: 120px;
}
.comment-item-title {
	margin-bottom: 10px;
}
.comment-item img {
	border-radius: 50%;
	margin-right: 20px;
}
.comment-meta {
	margin-bottom: 10px;
}
.comment-meta span {
	display: inline-block;
	margin-right: 10px;
	color: #333;
	font-size: 15px;
}
.comment-meta span i {
	margin-right: 10px;
	color: #0033CC;
}
.reply-btn {
	display: inline-block;
	margin-top: 10px;
	font-weight: 500;
	color: #000 !important;
}
.reply-btn i {
	vertical-align: -1px;
	display: inline-block;
}

/* Blog Sidebar */
.blog-post-sidebar .blog-widgets {
	margin-bottom: 30px;
}
.blog-title {
	position: relative;
}
.blog-title-margin {
	margin-bottom: 30px;
}
.blog-title::after {
	border-bottom: 2px solid #0033CC;
	content: "";
	display: block;
	margin: 20px auto 20px 0;
	position: relative;
	width: 50px;
	z-index: 1;
}
.blog-title::before {
	border-bottom: 2px solid rgba(0, 0, 0, 0.06);
	bottom: 0;
	content: "";
	display: block;
	position: absolute;
	width: 100%;
}
.blog-widgets .blog-search-form {
	width: 100%;
	border: none;
	color: #100e17;
}
.blog-widgets .blog-search-btn {
	position: absolute;
	background: #0033CC;
	color: #fff;
	top: 0;
	right: 0;
	border: none;
	width: 60px;
	outline: none;
	height: 100%;
	border-radius: 0 5px 5px 0;
}
.recent-post-item {
	margin-bottom: 14px;
}
.recent-post-item .recent-post-img {
	float: left;
}
.recent-post-item .recent-post-title {
	font-size: 1rem;
	margin-bottom: 8px;
	line-height: 1.5;
}
.recent-post-item .recent-post-title:hover {
	color: #0033CC;
}
.recent-post-details > a {
	color: #0033CC;
}
.recent-post-date {
	font-size: 15px;
}
.recent-post-date i {
	margin-right: 8px;
	color: #0033CC;
}
.blog-category-list li {
	padding: 12px 0;
	border-bottom: 1px solid rgb(240, 240, 240);
}
.blog-category-list > li:hover > a {
	color: #0033CC;
	text-decoration: underline;
}
.blog-category-list > li > a > .category-count {
	float: right;
}
.blog-tags li {
	float: left;
}
.blog-tags li a {
	display: inline-block;
	color: #000;
	padding: 10px;
	margin: 3px;
	font-size: 14px;
	border-radius: 5px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
}
.blog-tags li:hover a {
	background: #0033CC;
	color: #fff;
}
.blog-sidebar{float: left;padding: 0;}
.blog-sidebar-right{padding: 0;}
.blog-sidebar-right .auto{padding: 0;}
.blog-sidebar-right .auto>div{float: left;}
.pagingNav{width: 100%;padding-left: 10px;text-align: center}
.pagingNav li{
    list-style: none;
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding:0 .75rem;
    margin-left: -5px;
    line-height:36px;
    color: #042825;
    background-color: #f0f4f9;
    }
.pagingNav .thisclass,.pagingNav li:hover{background: #007bff;color: #fff;}

.list-group-flush a:hover,.list-group-flush a.active,.list-group-flush a:hover i,.list-group-flush a.active i{color:#007bff; }
.list-group-flush li{font-size: 14px;}
.auto{height: auto;overflow: hidden;}
.fr{float: right;}
.new_banner{text-align: center;color: #fff;position: relative;overflow: hidden;}
.new_banner img{width: 100%;height: auto;}
.banner_text{    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    margin: 0 auto;
    text-align: left;
    transform: translateY(-20%);}
.banner_text .title{font-size: 34px;margin-bottom: 20px;color: #fff;}
.banner_text p{font-size: 16px;}
.section-padding2{padding: 40px 0;background:#F0F4F9;}

.blog_detail{padding: 30px 20px;background: #fff;}
.blog_detail .n_tit{font-size: 14px;margin-bottom: 20px;}
.blog_detail .n_tit span{margin-right: 8px;}
.blog_detail p img{margin: 10px 0;max-width: 100%;height: auto !important;}
.blog_detail p strong{color: #333;}
.blog_detail ul li{list-style: none;padding-left: 15px}
.blog_detail ul li{position: relative;}
.blog_detail ul li::before{    content: '';
    background: #15db95;
    width: 6px;
    height: 6px;
    top: 10px;
    left: 0;
    position: absolute;
    border-radius: 10px;}
.gduo{margin-top: 20px;height: auto;overflow: hidden;}
.gduo span{line-height: 40px;display:block;color: #333;}
.gduo span a:hover{color: #007bff;}
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Large devices (desktops, less than 1200px)
/* ---------------------------------------------------------------- */
@media only screen and (min-width: 1199.98px) {
	.blog-page-item {
		margin-bottom: 30px;
	}
	.blog-page-item:nth-child(8) {
		margin-bottom: 0;
	}
	.blog-page-item:nth-child(7) {
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.blog-sidebar-wrap {
		margin-top: 50px;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices  (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.blog-single-meta {
		justify-content: flex-start !important;
		flex-direction: column;
		align-items: flex-start !important;
	}
	.blog-single-meta .blog-single-meta-box > span {
		display: block;
		margin-bottom: 10px;
	}
	.sub-comment-item {
		margin-left: 0;
	}
}

/* ---------------------------------------------------------------- */
/* 23.Home Page Signup                                 
/* ---------------------------------------------------------------- */
.signup-title {
	color: #fff;
	font-weight: 400;
}
.signup-form-header {
	padding: 20px;
	background: #15db95;
	color: #fff;
	text-align: center;
	border-radius: 5px 5px 0 0;
}
.signup-form-inner {
	background: #fff;
	padding: 30px;
	text-align: center;
	border-radius: 0 0 5px 5px;
}
.signup-form-group {
	position: relative;
	overflow: hidden;
}
.signup-form-control, .signup-form-btn {
	-webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.signup-form-control {
	margin-bottom: 20px;
	height: 60px;
	color: #000;
	outline: none;
	padding: 0 50px 0 20px;
	font-size: 0.9rem;
	border: none;
	width: 100%;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 51, 204,0.1);
	box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
}
.signup-form-control:focus {
	outline: none;
	border: none;
	color: #100e17;
	-webkit-box-shadow: 0 10px 26px 0 rgba(0, 51, 204, 0.15);
	box-shadow: 0 10px 26px 0 rgba(0, 51, 204, 0.15);
}
.signup-form-btn {
	width: 100%;
	border:none;
	outline: none;
	display: block;
	border-radius: 5px;
	padding: 20px 40px;
    color: #fff !important;
	background: #15db95;
	text-transform: capitalize;
	-webkit-box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
	box-shadow: 0 10px 16px 0 rgba(21, 219, 150, 0.15);
}
.signup-form-group > span {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 20px;
	color: #81888f;
	border-radius: 0 5px 5px 0;
}
.signup-form-pt {
	padding-top: 20px;
}
.custom-control-label {
	vertical-align: middle;
}
.custom-control-label::before {
	background-color: #fff;
	border: #15db95 solid 1px;
	box-shadow: none !important;
}
.custom-control-input:checked ~ .custom-control-label::before {
	color: #fff;
    border-color: #15db95;
    background-color: #15db95;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
	.signup-form-wrap {
		text-align: center;
		background-position: 100% 0;
	}
	.signup-form-bg {
		padding-top: 150px;
		padding-bottom: 100px;
		height: auto !important;
	}
	.signup-form-wrap {
		margin-top: 50px;
	}
	.srm_tip{padding: 10px 20px;}
	
}

/* ------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.signup-form-bg {
		padding-top: 150px;
		padding-bottom: 100px;
		height: auto !important;
	}
	.signup-form-header, .signup-form-inner {
		padding: 15px;
	}
}

/* ---------------------------------------------------------------- */
/* 24.Home Page Parallax Background                                 
/* ---------------------------------------------------------------- */
.bg-jarallax-overlay {
	position: relative;
	background: none;
}
.bg-jarallax-overlay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff !important;
	background-position: center;
	background: #222;
	background-size: 200% auto;
	opacity: 0.75;
}

/* ---------------------------------------------------------------- */
/* 25.Home Page Slider                                 
/* ---------------------------------------------------------------- */
.hero-slider-wrap {
	background: initial;
}

.hero-slider-wrap .vegas-overlay {
	background: #222;
	opacity: 0.75;
}








/* ---------------------------------------------------------------- */
/* 26.Intro                              
/* ---------------------------------------------------------------- */
.intro-hero-title span {
	text-transform: uppercase;
	font-size: 3.5rem;
	font-weight: 700;
	display: block;
	margin-bottom: 10px;
	max-width: max-content;
	padding: 10px 20px;
	margin: 0 auto 15px auto;
	border:2px solid #fff;
}
.intro-hero-title {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 20px;
	font-weight: 500;
}
.intro-hero-subtitle {
	font-size: 1rem;
	margin-bottom: 50px;
	color: #fff;
	opacity: 0.9;
}
.inner-pages-bg {
	background: #e5faf7;
}
.demo-section,
.intro-features {
	padding: 100px 0;
}
.demo-item {
	margin-bottom: 30px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}
.demo-item:hover {
	-webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1);
}
.demo-item .demo-item-link {
	padding: 30px;
	display: block;
	color: #000;
	background: #fff;
	font-weight: 600;
	font-size: 1.125rem;
	-webkit-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.demo-item:hover .demo-item-link {
	background: #0033CC;
	color: #fff;
}
.demo-img {
	position: relative;
	overflow: hidden;
	background-color: #fff;
	background-size: cover;
}
.demo-img a {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (min-width: 767.98px) {
	.demo-margin-resp:last-child .demo-item,
	.demo-margin-resp:nth-child(7) .demo-item,
	.demo-margin-inner-page:last-child .demo-item,
	.demo-margin-inner-page:nth-child(1) .demo-item {
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.demo-margin-resp:last-child .demo-item {
		margin-bottom: 0;
	}
	.demo-margin-inner-page:last-child .demo-item {
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	.intro-hero-title > span {
		font-size: 2.5rem;
	}
	.intro-hero-title {
		font-size: 1.6rem;
	}
}


/*Appointment Box*/

.appointment-box{
	position: fixed;
	right: -400px;
	top:50%;
	width: 400px;
	max-width: 100%;
	height: auto;
	overflow-y:auto;
	z-index: 99999;
	opacity: 0;
	max-height: 100%;
	transform: translateY(-50%);
	visibility: hidden;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

body.appointment-form-visible{
	overflow:hidden;	
}

.appointment-form-visible .appointment-box{
	right:0px;
	opacity:1;
	visibility:visible;
}

.appointment-box .inner-box{
	position:relative;
	background: #fff;

}

.appointment-box .inner-box .cross-icon{
	position:absolute;
	right:20px;
	top:10px;
	cursor:pointer;
	z-index: 999;
	/* background: url(../Img/close.png) no-repeat left top; */
	background-size:100% auto;
	width: 40px;
	height: 40px;
	font-size:20px;
	background: #ffffff91;
	border-radius: 50px;
	text-align: center;
	color: #007bff;
	font-weight: bold;
	font-size: 24px;
	line-height: 40px;
}
.appointment-box .inner-box .title{padding: 20px;background: #007bff url(../Img/contact-top1.png) no-repeat 20px 30px;background-size: 90px auto;padding-left: 110px;}

.appointment-box .inner-box h2{
	position:relative;
	font-size:26px;
	font-weight:400;
	line-height:1.2em;
	color:#fff;
	margin-bottom:10px;
	text-transform: capitalize;
	font-family: 'Poppins', sans-serif;
}
.appointment-box .inner-box p{font-size: 16px;color: #eee;margin-bottom:0px;}
/*Appointment Form*/

.appointment-form{
	position:relative;
}

.appointment-form .form-group{
	position:relative;
	margin-bottom:15px;
}

.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px 20px;
	height:50px;
	color:#03A9F4;
	font-size:15px;
	background:none;
	transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	border:1px solid rgba(255,255,255,0.40);
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder{
	color:#03A9F4;
}

.appointment-form input[type="text"]:focus,
.appointment-form input[type="email"]:focus,
.appointment-form textarea:focus{
	border-color: #03A9F4;
}

.appointment-form textarea{
	height:135px;
	resize:none;
}

.appointment-form .form-group button{
	margin-top:15px;
}

/* --------------------------------------qq------------------------------------ */
.qq_tan_btn{
	display: block;
	width: 56px;
	height: 240px;
	position: fixed;
	top: 200px;
	right: 0;
	z-index: 99;
	background: #fff url(../Img/qq.png) no-repeat 8px 10px;
	cursor: pointer;
	box-shadow: 0 0 5px #888;
	border-radius: 8px 0 0 8px;
	width: 60px;
	background-size: 53px auto;
	/* padding: 0 20px; */
	}
.contactbox{position: fixed;left: 0;top: 0;z-index: 9999;align-items: center;justify-content: center;width: 100%;height: 100%;background:rgba(0 ,0, 0, 0.3);}
.contactbox_con{width: 94%;max-width: 1050px;z-index: 1;border-radius: 20px;overflow: hidden;background: #fff;position: absolute;margin: 60px auto 60px auto;left: 0;right: 0;}
.close_qq{background: url(../Img/close.png) no-repeat left center;width: 50px;height: 50px;display: block;position: absolute;right: 10px;top: 10px;z-index: 9;cursor: pointer;}
.qq_top{background:#007bff url(../Img/dots.png) no-repeat center center;background-size: cover;width:100%;height: auto;overflow: hidden;padding: 15px 5% 0 5%;display: flex;}
.qq_top .qq_top_l{
    width: 30%;
    max-width: 217px;
    margin-right: 5%;
    margin-left: 50px;
    }
 .qq_top_r{justify-content: center;}
 .qq_top_r h4{font-size:32px;color: #fff;line-height:1.8;margin-top: 60px;}
 .qq_top_r p{color: #fff;font-size: 22px;} 
 .qq_tan_bottom{
    background: #f5f5f5;
    box-sizing: border-box;
    padding: 3% 5%;
    }
.qqq_img{margin-right: 6px;}
.qq_con li{padding: 3% 0;font-size: 24px;height: auto;overflow: hidden;background: #fff;margin-bottom: 10px;padding-top: 0;border-radius: 5px;}
.contactbox_con_fr{font-size: 14px;color: #999;float: left;padding: 0 3%;width: 100%;}
.contactbox_con_img{
    float: left;
    border-bottom: 1px solid #e4e4e4;
    width: 100%;
    padding-left: 3%;
    margin-bottom: 10px;
    line-height: 50px;
    font-size: 20px;
    }
.contactbox_con_img i{color: #007bff;font-size: 26px;}
.qq_contact a{color: #007bff;}
.contactbox_con_fr .amallbtn{
    background: #007bff;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    float: left;
    margin: 0 11px 10px 0;
    overflow: hidden;
    width: 8rem;
    line-height: 40px;
    position: relative;
    }

.form-back-drop{
	position:fixed;
	right:0px;
	top:0px;
	width:100%;
	height:100%;
	opacity:0;
	background:rgba(0,0,0,0.70);
	visibility:hidden;
	z-index:9990;
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;	
}

.appointment-form-visible .form-back-drop{
	opacity:1;
	visibility:visible;
}

@media (max-width:1366px) {
	/* 导航 */
	.nav-menu .drop-down ul{left: -170px;}
	.nav-menu .drop-down .drop-down ul {
	  left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover > ul {
	  left: -100%;
	}
	.nav-menu .drop-down .drop-down > a:after {
	  content: "\ea9d";
	}
	/* banner图 */
	.section-padding{padding: 70px 0;}
	.new_banner{max-height: 360px}
	.new_banner img{width: 120%;}
  }
@media (max-width:1200px) {
	.container{max-width: inherit;}
	#header .logo h1 {
	  font-size: 30px;
	}
  }
  @media (max-width:1120px) {
	#header .logo h1 {
	  font-size:24px;
	}
	.nav-menu a{padding: 10px;}
	.blog-img{height: 150px;}
	.blog-body a{margin-bottom: 5px;}
	.blog_bottom{margin-bottom: 10px;}
  }

  @media (max-width:1030px) {
	#header .logo h1 {
	  font-size:25px;
	}
	.nav-menu a{padding: 10px 8px;}
	.services-body p{font-size: 14px;}
	.section-padding2{padding: 20px 0;}
	
  }
  @media (max-width: 991.8px) {
	#header {
	  height: 64px;
	}
	#header .logo h1 {
	  font-size: 28px;
	}

	.banner_text .title{font-size: 30px;}

	.wave-svg-box{bottom: -80px;}
	.default-outline-btn{padding: 10px 40px;margin-bottom: 20px;}
	.down-scroll{bottom: 20px;}

	.services-body p{min-height: 80px;padding-left: 90px;font-size: 15px;}
	.services-item .services-icon{float: left;margin-right: 12px;}
	.services-body + .services-link{margin-left: 90px;}
	.services-resp-margin:nth-child(4){margin-top: 30px;}
	.section-padding{padding:50px 0;}
	.section-heading{margin-bottom: 20px;}
	.default-btn{padding: 10px 30px;}
	.blog-img{height: 200px;}
	.n_info_con h1{font-size: 2.4rem;}
  }
@media only screen and (max-width: 736px) {
	.services-body p{font-size: 14px;}	
	.services-body h5{font-size: 1.4rem;}
	.section-padding{padding: 40px 0;}
}

/* ------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
	#header .logo h1{font-size: 24px;}

	section .button-group-hero {
		display: none !important;
	}

	.about-list{margin-bottom: 20px;}
	.about-inner{margin-top: 10px;}
	.section-padding{padding: 20px 0;}
	.about-inner p{margin-bottom: 10px;}
	.about-inner h3{margin-bottom: 0;}
	h3{font-size: 1.8rem;}
	.features-image-resp,.features-row-mt{margin-top: 20px;}
	.srm_tip{margin-bottom: 6px;width: 48%;margin:0 0 2% 6px;}
	.download-buttons .srm_tip:nth-of-type(odd){margin-right: 0;}
	.download-buttons{margin-top: 0;}
	.footer-top .footer-widget:nth-of-type(2),.footer-top .footer-widget:nth-of-type(3){display: none}
	.footer-top{padding-top: 20px}
	.footer-title{margin-bottom: 10px;}
	.footer-title::after{margin-top: 10px;}
	.features-inner > p{margin-bottom: 10px;}
	.features-inner > h3{margin-bottom: 0;}
	.footer p{line-height: 24px;margin-bottom: 10px;margin-top: 10px;}
	.counters-item{width: 50%;}
	.counters{padding-top: 20px}
	.testimonial-body{display: block !important;}
	.testimonial-img,.testimonial-inner{width: 100%;}
	.phone_hide{display: none;}
	.section-padding2{padding: 10px 0;}
	.blog_detail{padding: 20px 12px;}
	.n_info_con h1{font-size: 1.8rem;}
	.section-title{font-size: 1.8rem;}
	.weizhi{font-size: 18px;}
	.qq_tan_btn{width: 54px;background-size:40px auto;height: 200px;background-position: 5px 10px; }
	.appointment-box{width: 100%;right: -100%;}
	.qq_tan_bottom{padding: 15px;max-height: 100%;top: 0;transform: inherit;}
	.blog-sidebar-right .auto>div{padding: 0;}
	.gduo span{line-height: 30px}	
	.gduo{margin-top: 10px;}
	.blog_detail .n_tit{margin-bottom: 10px;}
	.blog_detail p img{margin: 5px 0;}
	.new_banner img{width: 180%;margin-right: -30%;float: right;}
	.banner_text .title{font-size: 20px;margin-bottom: 0;}
}
.tab_nav {text-align: center;padding: 0;margin-bottom: 20px;}
.tab_nav li{display: inline-block;background: #eee;color: #15db95;line-height: 40px;padding: 0 20px;cursor: pointer;margin-bottom: 5px;margin-left: 5px;}
.tab_nav_in a{color: #15db95;display: inline-block;padding: 0 20px;}
.tab_nav_in li{padding: 0;}
.tab_nav li:hover,.tab_nav .cur,.tab_nav .cur a,.tab_nav li:hover a{background: #15db95;color: #fff;}
.tab_content .tab_list{display: none;}
.tab_content .tab_cur{display: block;}
.tab_content .section-title{padding-bottom: 0;}

.content{
	padding: 50px 60px;
	color: black;
	text-align: center;
  }
  
  .content>p{
	text-align: left;
	margin-bottom: 90px;
  }
  
  
  .content li span{
	font-size: 30px;
	color: #3422c2 ;
  }
  
  .content .title{
	width: 100px;
	display: inline-block;
	padding-bottom: 9px;
	font-size: 20px;
	font-weight:bold;
	color: #3422c2 ;
	white-space: nowrap;
	text-indent: -10px;
	border-bottom: 2px solid #3422c2 ;
	margin-bottom: 50px;
	overflow:visible;
  }
  .content .box li .circle{
	position: absolute;
	top: -19px;
	z-index: 2;
  }
  .content .box ul{
	width: 100%;
  }
  .content .box li{
	position: relative;
	width: 50%;
	margin-top: -10px;
	cursor: pointer;list-style: none;
  }
  
  .content .box li p{
	/*padding-bottom: 10px;*/
	font-size: 13px;
	color: #444;
	margin-bottom: 10px;
	height: 40px;
	line-height: 20px;
	overflow: hidden;
  }
  
  .content .box li.l{
	text-align: right;
	padding-right: 35px;
	border-right: 2px solid #3422c2;
	padding-bottom: 20px;
	/* list-style: none; */
  }
  
  
  .content .box li.r{
	position: relative;
	left: -1.6px;
	text-align: left;
	padding-left: 35px;
	margin-left: 50%;
	border-left: 2px solid #3422c2 ;
  }
  
  .content .box li.l .circle{
	right: -18px;
  }
  .content .box li.r .circle{
	left: -18px;
  }
  .content .box li span.active{
	color: #03aa8e;
  }
  
  .content .box li.l.last{
	border-right: 2px dotted #3422c2 ;
  }
  .content .box li.last.end{
	border: none!important;
  }
  .content .box li.r.last{
	border-left: 2px dotted #3422c2 ;
  }
  .content .box li.last p{
	padding-bottom: 0;
	margin-bottom: 10px;
  }
  /* åœ°å›¾ */
  
  /* flexÃ¥Â¸Æ’Ã¥Â±â‚¬Ã¥â€¦Â¼Ã¥Â®Â¹ START */
  
  .flex {
  
	
  
	display: box;
  
	display: -webkit-box;
  
	display: -moz-box;
  
	display: -ms-flexbox;
  
	display: -webkit-flex;
  
	display: flex;
  
  }
  
  
  
  .flex_column {
  
	/* Ã¥Å¾â€šÃ§â€ºÂ´Ã¦Å½â€™Ã¥Ë†â€” */
  
	-webkit-box-orient: vertical;
  
	-webkit-flex-direction: column;
  
	-moz-flex-direction: column;
  
	-ms-flex-direction: column;
  
	-o-flex-direction: column;
  
	flex-direction: column;
  
  }
  
  
  
  .flex_wrap {
  
	
  
	-webkit-box-lines: multiple;
  
	-webkit-flex-wrap: wrap;
  
	-moz-flex-wrap: wrap;
  
	-ms-flex-wrap: wrap;
  
	-o-flex-wrap: wrap;
  
	flex-wrap: wrap;
  
  }
  .flex_center {
	display: box;
  
	display: -webkit-box;
  
	display: -moz-box;
  
	display: -ms-flexbox;
  
	display: -webkit-flex;
  
	display: flex;
	-webkit-box-pack: center;
  
	-webkit-justify-content: center;
  
	-moz-justify-content: center;
  
	-ms-justify-content: center;
  
	-o-justify-content: center;
  
	justify-content: center;
  
	-webkit-box-align: center;
  
	-webkit-align-items: center;
  
	-moz-align-items: center;
  
	-ms-align-items: center;
  
	-o-align-items: center;
  
	align-items: center;
  
  
  
  }
  
  
  
  .flex_row_center {
  
	
  
	-ms-flex-pack: center;
  
	-webkit-box-pack: center;
  
	-webkit-justify-content: center;
  
	-moz-justify-content: center;
  
	-ms-justify-content: center;
  
	-o-justify-content: center;
  
	justify-content: center;
  
  }
  
  
  
  .flex_row_start {
	-webkit-box-pack: start;
  
	-webkit-justify-content: flex-start;
  
	-moz-justify-content: flex-start;
  
	-ms-justify-content: flex-start;
  
	-o-justify-content: flex-start;
  
	justify-content: flex-start;
  
  }
  
  
  
  .flex_row_end {
  
	-webkit-box-pack: end;
  
	-webkit-justify-content: flex-end;
  
	-moz-justify-content: flex-end;
  
	-ms-justify-content: flex-end;
  
	-o-justify-content: flex-end;
  
	justify-content: flex-end;
  
  }
  
  
  
  .flex_row_justify {
  
	-webkit-box-pack: justify;
  
	-webkit-justify-content: space-between;
  
	-moz-justify-content: space-between;
  
	-ms-justify-content: space-between;
  
	-o-justify-content: space-between;
  
	justify-content: space-between;
  
  }
  
  
  
  .flex_column_center {
  
  
	-webkit-box-align: center;
  
	-webkit-align-items: center;
  
	-moz-align-items: center;
  
	-ms-align-items: center;
  
	-o-align-items: center;
  
	align-items: center;
  
  }
  
  
  
  .flex_column_start {
	-webkit-box-align: start;
  
	-webkit-align-items: flex-start;
  
	-moz-align-items: flex-start;
  
	-ms-align-items: flex-start;
  
	-o-align-items: flex-start;
  
	align-items: flex-start;
  
  }
  
  
  
  .flex_column_end {
  
	-webkit-box-align: end;
  
	-webkit-align-items: flex-end;
  
	-moz-align-items: flex-end;
  
	-ms-align-items: flex-end;
  
	-o-align-items: flex-end;
  
	align-items: flex-end;
  
  }
  
  
  
  .flex1 {
  
	-webkit-box-flex: 1;
  
	-moz-box-flex: 1;
  
	-webkit-flex: 1;
  
	-ms-flex: 1;
  
	flex: 1;
  
  }
  
  
  
  .flex_rank_1 {
  
	-webkit-box-ordinal-group: 1;
  
	-moz-box-ordinal-group: 1;
  
	-ms-flex-order: 1;
  
	-webkit-order: 1;
  
	order: 1;
  
  }
  
  
  
  .flex_rank_2 {
	-webkit-box-ordinal-group: 2;
  
	-moz-box-ordinal-group: 2;
  
	-ms-flex-order: 2;
  
	-webkit-order: 2;
  
	order: 2;
  
  }
  
  
  
  .flex_rank_3 {
  
	-webkit-box-ordinal-group: 3;
  
	-moz-box-ordinal-group: 3;
  
	-ms-flex-order: 3;
  
	-webkit-order: 3;
  
	order: 3;
  
  }
#map {
  max-width: 1920px;
  height: 600px;
}
#map img {
  max-width: none;
  max-height: none;
}
.flex{display: flex;}
.brief_main .xg_crumbs {
  padding-left: 55px;
  padding-right: 60px;
}

.brief_main .main3 {
  padding-top: 90px;
  padding-bottom: 100px;
}
.brief_main .main3 .title {
  position: relative;
  margin-bottom: 100px;
  padding: 8px 90px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
}
.brief_main .main3 .title .img1 {
  position: absolute;
  top: 0;
  left: 0;
}
.brief_main .main3 .title .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.brief_main .main3 .left .item {
  margin-top: 38px;
  width: 386px;
}
.brief_main .main3 .left .item:first-child {
  margin-top: 0;
}
.brief_main .main3 .left .item:first-child .fa {
  color: #119fa0;
}
.brief_main .main3 .left .item:nth-child(2) .fa {
  color: #ec5724;
}
.brief_main .main3 .left .item:nth-child(3) .fa {
  color: #fdb817;
}
.brief_main .main3 .left .item:nth-child(4) .fa {
  color: #3f6dff;
}
.brief_main .main3 .left .item:nth-child(5) .fa {
  color: #22ae87;
}
.brief_main .main3 .left .area {
  position: relative;
  padding-left: 45px;
  font-size: 18px;
}
.brief_main .main3 .left .fa {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 24px;
  -o-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.brief_main .main3 .left p {
  margin-top: 8px;
  padding-left: 45px;
  color: #666;
  font-size: 14px;
  line-height: 2;
}
.brief_main .main3 .map {
  position: relative;
}
.brief_main .main3 .map > div {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.brief_main .main3 .map > div div {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 10px;
  width: 10px;
  opacity: 0.1;
  border-radius: 50%;
  background-color: inherit;
  -o-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -o-animation: bolan 5s infinite;
  -moz-animation: bolan 5s infinite;
  -webkit-animation: bolan 5s infinite;
  animation: bolan 5s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.brief_main .main3 .map > div div:nth-child(1) {
  -o-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.brief_main .main3 .map > div div:nth-child(2) {
  -o-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.brief_main .main3 .map > div div:nth-child(3) {
  -o-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.brief_main .main3 .map .item1 {
  left: 80.28571429%;
  bottom: 41.43356643%;
  background-color: #119fa0;
}
.brief_main .main3 .map .item2 {
  left: 64.71428571%;
  bottom: 32.34265734%;
  background-color: #fdb817;
}
.brief_main .main3 .map .item3 {
  left: 45.71428571%;
  bottom: 41.08391608%;
  background-color: #ec5724;
}
.brief_main .main3 .map .item4 {
  left: 68.85714286%;
  bottom: 12.23776224%;
  background-color: #22ae87;
}
.brief_main .main3 .map .item5 {
  left: 68.71428571%;
  bottom: 61.18881119%;
  background-color: #3f6dff;
}

@-webkit-keyframes bolan {
  0% {
    width: 10px;
    height: 10px;
  }
  80% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    width: 100px;
    height: 100px;
  }
}
@keyframes bolan {
  0% {
    width: 10px;
    height: 10px;
  }
  70% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    width: 100px;
    height: 100px;
  }
}
@-webkit-keyframes bolan2 {
  0% {
    -o-transform: translate3d(-50%, -50%, 0) scale(1);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  80% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    -o-transform: translate3d(-50%, -50%, 0) scale(1.36);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1.36);
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.36);
    transform: translate3d(-50%, -50%, 0) scale(1.36);
  }
}
@keyframes bolan2 {
  0% {
    -o-transform: translate3d(-50%, -50%, 0) scale(1);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  70% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    -o-transform: translate3d(-50%, -50%, 0) scale(1.36);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1.36);
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.36);
    transform: translate3d(-50%, -50%, 0) scale(1.36);
  }
}
@-webkit-keyframes route {
  0% {
    -o-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  90% {
    -o-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
  100% {
    -o-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes route {
  0% {
    -o-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  90% {
    -o-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
  100% {
    -o-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes route2 {
  0% {
    -o-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  90% {
    -o-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
  100% {
    -o-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}
@keyframes route2 {
  0% {
    -o-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  90% {
    -o-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
  100% {
    -o-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}
/* 荣誉证书 */
.rongyu li{float: left;width: 20%;padding: 10px;box-sizing: border-box;margin-bottom: 20px;list-style: none;}
.rongyu li img{width: 100%;height: auto;}
.rongyu .li1{width: 45.5%;}
.rongyu .li2{width:25%;}
@media (max-width:768px) {
  .rongyu li{width: 50%;}
  .rongyu .li1{width: 100%;}
  .rongyu .li2{width:50%;}
  .content{padding: 0 15px;}
  .tab_content .section-title{padding: 10px 0 20px;}
  .content .box ul{padding: 0 10px; box-sizing: border-box;}
  .brief_main .map img{width: 300px;}
  .brief_main .map .flex{display: block;}
  .brief_main .main3{padding-top: 0;}
  .brief_main .main3 .title{padding: 0 15px;font-size: 16px;line-height: 28px;margin-bottom: 20px;}
}
.about_text p{text-indent: 2em;}
.about_img{width: 25%;padding: 10px;float: left;}
.about_img img{width: 100%; height:auto;}
.ab_why{margin-top: -100px;}
				.ab_why .nei_wrap{padding: 0 3.7%;box-sizing: border-box;}
				.ab_why .nei_title{color: #fff;}
				.ab_why .nei_title .line{margin: 24px auto 0;width: 106px;height: 6px;background-color: #00b259;}
				.ab_why ul{transform: translateY(10%);}
        .ab_why ul li{padding: 2.5% 2% 5.3% 2.5%;width: 31.8%;background: #fff ;float: left;list-style: none;margin-right: 1%;
          border-top: 3px solid #00b259;box-sizing: border-box;box-shadow: 0 0 5px rgba(0,0,0,.2);transition: transform 0.2s linear;}
				.ab_why ul li .tit{font-size: 32px;font-weight: bold;}
				.ab_why ul li .con{margin-top: 11%;}
				.ab_why ul li .con p{position: relative;margin-bottom: 9%;padding-left: 35px;box-sizing: border-box;font-size: 18px;}
				.ab_why ul li .con p:nth-last-child(1){margin-bottom: 0;}
				.ab_why ul li .con p::before{content: "";position: absolute;left: 0;top: 4px;width: 10px;height: 10px;background: #00b259;}
				.ab_why ul li:hover {transform: translateY(-10px);}
				@media only screen and (max-width:1400px){
					.ab_why ul li .tit{font-size: 24px;}
				}
				@media only screen and (max-width:1000px){
					.ab_why .nei_wrap{padding: 0;}
					.ab_why ul{margin-top: 6%;transform: initial;}
					.ab_why ul li .tit{font-size: 20px;}
					.ab_why ul li .con p{padding-left: 20px;font-size: 16px;}
				}
				@media only screen and (max-width:750px){
          .about_img{width: 50%;padding: 10px;}
          .ab_why{padding: 30px 0 0;margin-bottom: 0;}
          .ab_why ul{margin-top: 30px;padding-left: 10px;padding-right: 5px;margin-bottom: 0;}
          .ab_why{margin-top: -40px;}
          .ab_why ul li{padding: 5% 2.5%;width: 100%;margin-bottom: 10px;}
					.ab_why ul li .con{margin-top: 5%;}
					.ab_why ul li .con p{margin-bottom: 5%;font-size: 14px;line-height: 24px;}
        }
       
