/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	font-family: "Open Sans", sans-serif;
	color: #666;
	height: 100vh;
}

a {
	color: #4fa6d5;
	text-decoration: none;
}

a:hover {
	color: #45beff;
	text-decoration: none;
}

* {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
	font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	right: 15px;
	bottom: 15px;
	background: #68A4C4;
	color: #fff;
	transition: display 0.5s ease-in-out;
	z-index: 99999;
}

.back-to-top i {
	font-size: 24px;
	position: absolute;
	top: 8px;
	left: 8px;
}

.back-to-top:hover {
	color: #fff;
	background: #85b6cf;
	transition: background 0.2s ease-in-out;
}

.tlinks {
	text-indent: -9999px;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	padding: 20px 0;
	background: #1e4356;
}

#header.header-transparent {
	background: none;
}

#header.header-scrolled {
	background: rgba(30, 67, 86, 0.8);
	height: 80px;
}

#header .logo h1 {
	font-size: 28px;
	margin: 3px 0px 0px 0px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
	/* font-size: 30px; */
	font-size: 25px;
	vertical-align:middle;
}

#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 32px;
}

#main {
	/* margin-top: 80px; */
	box-sizing: border-box;
	min-height: calc(100vh - 347px);
}

/*--------------------------------------------------------------
# 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;
	font-size: 14px;
	margin-left: 10px;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #ddecf5;
	padding: 10px 15px;
	transition: 0.3s;
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: #a2cce3;
	text-decoration: none;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% - 10px);
	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: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #1c3745;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #68A4C4;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.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;
}

@media (max-width: 1366px) {
	.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";
	}
}

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: #1e4356;
	transition: 0.4s;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #ddecf5;
	padding: 10px 20px;
	font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: #a2cce3;
	text-decoration: none;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa0";
}

.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;
}

.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 25px;
	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-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(30, 67, 86, 0.9);
	overflow: hidden;
	display: none;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


#hero {
	position: relative;
	width: 100%;
	/* height: 110vh !important; */
	overflow: hidden;
}

@media (max-width: 990px){
	#hero{
		/* height:125% !important; */
		/* overflow: inherit; */
		overflow-x: hidden;
	}
	
	.about-us .icon-img {
		position: absolute;
		bottom:-55px !important;
		left: 50%;
		transform: translateX(-50%);
		height: 50px;
		width: 350px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
}

#hero::after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url(../img/bg.png) center/cover no-repeat;
    z-index: 0;
}

@media screen and (min-width: 768px) {
	#hero::after {
		background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url(../img/home-banner-pc.png) center/cover no-repeat;
	}
}

@media screen and (max-width: 768px) {
	#hero::after {
		background-size: contain;
	}
}


#hero::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 130%;
	height: 96%;
	background: #68A4C4;
	opacity: 0.3;
	z-index: 0;
	/* border-radius: 0 0 50% 50%; */
	transform: translateX(-50%) translateY(18px) rotate(2deg);
}


#hero .btn-get-started {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 50px;
	transition: 0.5s;
	line-height: 1;
	margin-top: 20px;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: 2px solid #68A4C4;
	margin: 0 auto;
	display: block;
	width: 200px;
	text-align: center;
}

#hero .btn-get-started:hover {
	background: #68A4C4;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 768px) {

	/* 	#hero h2 {
		font-size: 28px;
	}
 */
	/* #hero::after {
		width: 180%;
		height: 95%;
		border-radius: 0 0 50% 50%;
		transform: translateX(-50%) rotate(0deg);
	}

	#hero::before {
		top: 0;
		width: 180%;
		height: 94%;
		border-radius: 0 0 50% 50%;
		transform: translateX(-50%) translateY(20px) rotate(4deg);
	} */
}

@media (max-width: 575px) {
	/* #hero::after {
		left: 40%;
		top: 0;
		width: 200%;
		height: 95%;
		border-radius: 0 0 50% 50%;
		transform: translateX(-50%) rotate(0deg);
	}

	#hero::before {
		left: 50%;
		top: 0;
		width: 200%;
		height: 94%;
		border-radius: 0 0 50% 50%;
		transform: translateX(-50%) translateY(20px) rotate(4deg);
	} */
}

/*--------------------------------------------------------------
# about Us
--------------------------------------------------------------*/
@media (max-width: 700px) {
	.bota{
		height: 130px;
		width: 100%;
	}
}

.about-us .icon-box .title {
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 60px;
	font-size: 19px;
	line-height: 32px;
	text-transform: uppercase;
	color: #FFF;
}


.about-us .icon-img {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	height: 50px;
	width: 350px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

.about-us .icon-img img {
	width: 40px;
	height: 40px;
	/* margin-right: 5px; */
}

.about-us .icon-box .title a {
	color: #343a40;
	transition: 0.3s;
	font-size: 20px;
}

.about-us .icon-box .title a:hover {
	color: #68A4C4;
}

.about-us .icon-box .description {
	line-height: 20px;
	font-size: 16px;
	color: #FFF;
	margin-bottom: 8px;
}

.about-us .icon-box .description span {
	color: #F2665D;
}


.about-us .video-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-us .video-box img {
	padding-top: 15px;
	padding-bottom: 15px;
	max-width: 92%;
}

.about-us .play-btn {
	width: 94px;
	height: 94px;
	background: rgba(0, 0, 0, .5);
	border-radius: 50%;
	display: block;
	position: absolute;
	left: calc(46% - 47px);
	top: calc(46% - 47px);
	overflow: hidden;
	cursor: pointer;
}

.about-us .play-btn::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 25px solid #fff;
	z-index: 100;
	transition: all 1000ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about-us .play-btn::before {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate-btn 2s;
	animation: pulsate-btn 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(104, 164, 196, 0.7);
	top: -15%;
	left: -15%;
	/* background: rgba(198, 16, 0, 0); */
}

.about-us .play-btn:hover::after {
	border-left: 15px solid rgba(0, 0, 0, .1);
	transform: scale(20);
}

.about-us .play-btn:hover::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 25px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0;
}


@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
}

.section-bg {
	background-color: #f3f8fa;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.section-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #68A4C4;
	bottom: 0;
	left: calc(50% - 20px);
}

.section-title p {
	margin-bottom: 0;
	font-size: 22px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background-color: #f3f8fa;
	min-height: 40px;
}

.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 300;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #6c757d;
	content: "/";
}

@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services {
	padding-bottom: 20px;
}

.services .icon-box {
	padding: 30px;
	position: relative;
	overflow: hidden;
	margin: 0 0 40px 0;
	background: #fff;
	box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
	transition: all 0.3s ease-in-out;
	text-align: center;
	border: 1px solid #fff;
}

.services .icon {
	margin: 0 auto 20px auto;
	padding-top: 17px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	width: 72px;
	height: 72px;
}

.services .icon i {
	font-size: 36px;
	line-height: 1;
}

.services .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
}

.services .title a {
	color: #111;
}

.services .description {
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0;
}

.services .icon-box-pink .icon {
	background: #fceef3;
}

.services .icon-box-pink .icon i {
	color: #ff689b;
}

.services .icon-box-pink:hover {
	border-color: #ff689b;
}

.services .icon-box-cyan .icon {
	background: #e6fdfc;
}

.services .icon-box-cyan .icon i {
	color: #3fcdc7;
}

.services .icon-box-cyan:hover {
	border-color: #3fcdc7;
}

.services .icon-box-green .icon {
	background: #eafde7;
}

.services .icon-box-green .icon i {
	color: #41cf2e;
}

.services .icon-box-green:hover {
	border-color: #41cf2e;
}

.services .icon-box-blue .icon {
	background: #e1eeff;
}

.services .icon-box-blue .icon i {
	color: #2282ff;
}

.services .icon-box-blue:hover {
	border-color: #2282ff;
}

.all-features-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.all-features-btn>a {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 17px;
}

/*--------------------------------------------------------------
# how-to-create
--------------------------------------------------------------*/
.how-to-create {
	background: #285164;
	color: #fff;
	font-size: 16px;
}

.how-to-create .how-row span {
	color: #F26C4F;
	margin-right: 20px;
}

.how-to-create .how-row p {
	margin-bottom: 0;
	text-align: center;
}

.how-to-create .how-tips {
	font-size: 14px;
	color: #DDD;
}

.how-to-create .how-tips p {
	margin-bottom: 0;
	text-align: center;
}



/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .row+.row {
	margin-top: 100px;
}

.features h3 {
	font-weight: 400;
	font-size: 24px;
}

.features ul {
	list-style: none;
	padding: 0;
}

.features ul li {
	padding-bottom: 10px;
}

.features ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #68A4C4;
}

.features p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# clients
--------------------------------------------------------------*/

.clients .client-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	border-radius: 4px;
	margin: .5rem;
	padding: 1rem 2rem;
	box-shadow: 0px 5px 32px -2px rgba(0, 0, 0, 0.2);
	background: #fff;
	height: 100%;
}

.clients .client-item .img-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid #DDD;
}

.clients .client-item img {
	width: 80px;
	height: 80px;

}

.clients .client-item .comment h2 {
	font-size: 23px;
	font-weight: normal;
	margin: 20px 0;
}

.clients .client-item .comment p {
	font-size: 14px;
	color: #34393e;
	/* text-align: justify; */
}

.clients .client-item .comment+span {
	align-self: flex-start;
	color: #aaa;
}

/* try-free */
.try-free {
	background: #285164;
	color: #fff;
}

.try-free .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.try-free h3 {
	text-align: center;
	font-size: 28px;
	color: #a2cce3;
	margin-bottom: 20px;
}

.try-free .free-content p {
	/* margin-bottom: 0; */
	text-align: center;
}

.try-free .free-content p a {
	text-decoration: underline;
}

.try-free .free-btn {
	font-size: 16px;
	background: #68A4C4;
	padding: 10px 20px;
	display: inline-block;
	margin: 10px auto 0;
	color: #fff;
	border-radius: 3px;
	text-transform: uppercase;
}

.try-free .free-btn:hover {
	background: #468db3;
}

/* FAQ */
.FAQ-content .FAQ-item {
	margin: 10px auto;
	width: 70%;
	box-sizing: border-box;
	padding: 25px 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 20px;
}

.FAQ-content .FAQ-item h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	font-size: 18px;
	color: #4A4A4A;
	margin-bottom: 0;
	cursor: initial;
}

.FAQ-content .FAQ-item h3 i {
	position: absolute;
	right: 20px;
	top: -5px;
}

.FAQ-content .FAQ-item h3 .add {
	font-style: normal;
	font-size: 28px;
}

.FAQ-content .FAQ-item h3 .minus {
	font-size: 0;
}


.FAQ-item p {
	
	color: #343c4e;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -.44px;
	line-height: 24px;
	height: 0;
	overflow: hidden;
	margin-bottom: 0;
	transition: all .3s ease;
	margin-top: 0px;
}

.FAQ-item .active {
	/* overflow-y: scroll; */
	margin-top: 20px;
	height: 100%;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .pay-area .box {
	background: #FFF;
	padding: 30px 18px;
	margin-bottom: 30px;
	text-align: center;
	box-shadow: 0px 5px 32px -2px rgba(0, 0, 0, 0.2);
}

.pricing .pay-area .box2 {
	position: relative;
	display: flex;
	justify-content: center;
	background: #FFF;
	padding: 30px 18px;
	margin-bottom: 30px;
	text-align: center;
	box-shadow: 0px 5px 32px -2px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

@media screen and (max-width:1024px) {
	.pricing .pay-area .box2 {
		justify-content: space-between;
	}

	.pricing .pay-area .box2 .img1 {
		width: 50px;
		height: 50px;
	}

	.pricing .pay-area .box2 .img2 {
		width: 250px;
		height: 50px;
	}

	.pricing .pay-area .box2 .boxbtn {
		top: 50%;
		left: 40% !important;
		transform: translate(-50%, -50%);
	}

	.pricing .pay-area .box2 .boxtitle {
		width: 40%;
		font-size: 12px !important;
		top: 15% !important;
		left: 55% !important;
	}

	.FAQ-content .FAQ-item h3 i {
		right: -15px !important;
	}
}

.pricing .pay-area .box2 .boxtitle {
	position: absolute;
	top: 40%;
	left: 50%;
	font-weight: 600;
	font-size: 21px;
	line-height: 29px;
	color: #000;
	margin-bottom: 10px;
}

.pricing .pay-area .box2 .boxbtn {
	position: absolute;
	left: 50%;
	top: 55%;
	cursor: pointer;
	display: inline-block;
	border-radius: 3px;
	padding: 10px;
	max-width: 300px;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	background: #1594fd;
	color: #fff;
}

.pricing .pay-area .box h2 {
	color: #ff5a3c;
	margin-bottom: 0px;
	font-weight: bold;
	font-size: 18px;
}

.pricing .pay-area .box div>div {
	margin-top: 32px;
	font-weight: bold;
	color: #222;
	border-top: 1px dashed #ddd;
	padding-top: 10px;
}

.pricing .pay-area .box a {
	display: block;
	width: 260px;
	margin-top: 0px;
	margin: 10px auto;
}

.pricing .pay-area .box a strong {
	font-size: 20px;
	font-weight: 800;
}

.pricing .pay-area .box #show1 {
	/* display: none; */
	padding: 0;
	border: none;
}

.pricing .pay-area .box #show2 {
	/* display: none; */
	padding: 0;
	border: none;
}

.pricing .pay-area .box #show22 {
	/* display: none; */
	padding: 0;
	border: none;
}

.pricing .pay-area .box #show4 {
	/* display: none; */
	padding: 0;
	border: none;
}

.pricing .pay-area .box #show3 {
	padding: 0;
	border: none;
	/* display: none; */
}

.pricing .pay-area .box .none {
	display: none;
}

.pricing .pay-area .box .show {
	color: #AAAAAA;
	font-size: 14px;
	cursor: pointer;
}

.pricing .pay-area .box .shownone {
	color: #AAAAAA;
	font-size: 14px;
	cursor: pointer;
}

.pricing .get-started-btn {
	background: #68A4C4;
	display: inline-block;
	padding: 15px 40px;
	border-radius: 6px;
	color: #fff;
	transition: none;
	font-size: 18px;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
	transition: 0.3s;
	margin-bottom: 10px;
}

.pricing .get-started-btn:hover {
	background: #85b6cf;
}

.pricing .featured {
	z-index: 10;
	margin: -30px -5px 0 -5px;
}

.price-text {
	margin-top: 50px;
}

.price-text p {
	margin-bottom: 5px;

}

@media (max-width: 992px) {
	.pricing .box {
		max-width: 60%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 767px) {
	.pricing .box {
		max-width: 80%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 420px) {
	.pricing .box {
		max-width: 100%;
		margin: 0 auto 30px auto;
	}
}

/*--------------------------------------------------------------
# choose-version
--------------------------------------------------------------*/
.choose-version .txt {
	margin-top: 20px;
}

.choose-version .txt p {
	font-size: 20px;
	color: #666;
	font-weight: bold;
	margin-bottom: 20px;
}

.choose-version .txt a {
	text-transform: uppercase;
}



/*--------------------------------------------------------------
# what-get
--------------------------------------------------------------*/
.what-get {
	padding: 50px 0 50px 0;
	background: #85b6cf;
}

.what-get h1 {
	color: #fff;
}

.what-get h4 {
	color: #fff;
	font-weight: 400;
}

.what-get p {
	color: #fff;
}

.what-get h2 {
	margin: 15px 0 15px 0;
	font-size: 40px;
	font-weight: 300;
}

.what-get .feature-title p {
	font-size: 18px;
}

.what-get .feat-list {
	margin-top: 40px;
}

.what-get .feat-list i {
	font-size: 48px;
	float: left;
	width: 20%;
	color: #555;
	height: 100%;
	position: relative;
	opacity: 0.6;
	-webkit-transition: all .8s ease;
	transition: all .8s ease;
}

.what-get .feat-list:hover i {
	color: #003e57;
	-webkit-transition: all .8s ease;
	transition: all .8s ease;
}

.what-get .inner {
	display: inline-block;
	width: 80%;
}

.what-get-btn {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.what-get .btn-secondary {
	background-color: #fff;
	color: #68A4C4;
	padding: 15px 40px;
	border-color: #68A4C4;
	font-size: 18px;
	border-radius: 6px;

}

.what-get .btn-secondary:hover {
	background: #F9F9F9;

}

/*--------------------------------------------------------------
# tutorials
--------------------------------------------------------------*/
.tutorials em {
	font-size: 20px;
}

.tutorials .video-box {
	margin-bottom: 40px;
	/* height: 410px; */
}

.tutorials .video-box p {
	margin-bottom: 25px;
}

.tutorials .video-box p:last-child {
	line-height: 28px;
	font-size: 18px;
}

.video_lightbox_anchor_image {
	width: 60%;
	object-fit: cover;
	height: 150px;
}

/*--------------------------------------------------------------
# features
--------------------------------------------------------------*/
.com-features {
	padding: 0;
}

.feature-header {
	background: #f3f8fa;
}

.pricing-table {
	margin: 0 30px;
}

.pricing-column {
	background-color: #fff;
	border-radius: 3px;
	padding: 0 20px;
}

.pricing-column h4 {
	color: #f26c4f;
	font-size: 36px;
	margin-bottom: 4px;
}

.pricing-column p {
	color: #34393e;
	font-size: 16px;
	margin-bottom: 12px;
}

.pricing-column sup {
	font-size: 24px;
}

.pricing-column ul li {
	color: #777;
	font-size: 16px;
	list-style-type: none;
}

.pricing-column.featured ul li {
	color: #fff;
}

.pricing-content {
	background: #fff;
	box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
	transition: all 0.3s ease-in-out;
	border: 1px solid #fff;
	min-height: 360px;
	padding: 30px 30px 20px;
	margin-bottom: 30px;
	position: relative;
}

.pricing-content .bar {
	width: 100%;
	height: 6px;
	position: absolute;
	left: 0;
	top: 0;

}

.pricing-content .bar div {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	height: 6px;
	border-radius: 4px 4px 0 0;
}

.pricing-content .bar .blue {
	background: #4fa6d5;
}

.pricing-content .bar .red {
	background: #FF5151;
	width: 0;
	transition: all .4s ease;
}

.pricing-content:hover {
	transform: translateY(-6px);
}

.pricing-content:hover .bar .red {
	width: 100%;
}

.pricing-content h4 {
	font-size: 20px;
	font-weight: 400;
	color: #4fa6d5;
	margin-bottom: 10px;
}

.pricing-content ul {
	margin-left: 10px;
	color: #34393e;
}

.pricing-content ul li {
	margin-bottom: 5px;
}

.feature-wrapper {
	background: #f3f8fa;
	padding: 60px 0;
}

.feature-wrapper h3 {
	color: #4fa6d5;
	text-align: center;
	margin-bottom: 20px;
}

.feature-wrapper p {
	font-size: 16px;
	color: #666;
	text-align: center;
}

.feature-title {
	text-align: center;
	font-size: 24px;
	padding: 40px 0;
}







/*--------------------------------------------------------------
# Tetstimonials
--------------------------------------------------------------*/
.testimonials {
	padding: 60px 0;
}

.testimonials .section-header {
	margin-bottom: 40px;
}

.testimonials .testimonial-item {
	text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
	width: 120px;
	border-radius: 50%;
	border: 4px solid #fff;
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #111;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: #fbfcfd;
	font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.testimonials .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

.testimonials .owl-dot.active {
	background-color: #68A4C4 !important;
}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
	}
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
	padding-bottom: 30px;
}

.contact h3 {
	margin-bottom: 20px;
	font-size: 35px;
}

.contact .text p {
	font-size: 20px;
	margin-bottom: 26px;
}

.contact .text p span {
	color: #68A4C4;
}

.contact .php-email-form {
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
	padding: 30px;
	margin-bottom: 30px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form_label {
	font-size: 18px;
	margin-bottom: 10px;
	color: #111;
}

.contact .php-email-form .radio_group {
	display: flex;
	align-items: center;
}

.contact .php-email-form .radio_group .radio_item {
	display: flex;
	align-items: center;
	margin-right: 20px;
	/* cursor: pointer; */
}

.contact .php-email-form .radio_group .radio_item .radio_item_name {
	margin-left: 10px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact .php-email-form input[type='radio'] {
	cursor: pointer;
}

.contact .php-email-form input[type='radio']:checked {
	background-color: #68A4C4;

}



.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
	background-color: #68A4C4;
}


.contact .php-email-form input {
	padding: 20px 15px;
}

.contact .php-email-form textarea {
	padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
	background: #68A4C4;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	outline: none;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #8dbad2;
}

.contact .php-email-form .column-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
	padding: 40px 0 20px 0;
}

.blog-banner {
	background: #f3f8fa;
	padding: 60px 0;
}

.blog-banner img {
	width: 100%;
}

.blog-banner .btn-banner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.blog-banner .btn-banner a {
	background-color: #fff;
	color: #fff;
	padding: 15px 40px;
	background: #68A4C4;
	font-size: 18px;
	border-radius: 2px;
	text-transform: uppercase;
	transition: all .3s ease;
}

.blog-banner .btn-banner a:hover {
	background: #32627b;

}

.blog-banner .banner-txt h3 {
	color: #4fa6d5;
	margin-bottom: 20px;
}

.blog-banner .banner-txt p {
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
}

@media (max-width: 992px){
	.minshare{
		display: flex !important;
	}
	
}


.minshare img {
	margin-left: 5px;
	width: 20px;
	height: 20px;
}


 .leftinfo {
	 z-index: 10;

	position: fixed;
	top: 120px;
	left: 5%;
	padding: 30px;
	margin-right: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	font-size: 12px;
	color: gray;
}



 .leftinfo .title1 span {
	font-size: 20px;
	background: #fff;
}

.leftinfo .title1::after {
	content: "";
    display: block;
    width: 70%;
    height: 1px;
    background: #e8e8e8;
    position: absolute;
    top: 44px;
    left: 20px;
    z-index: -1;
}

 .leftinfo .title2 {
	color: #000;
	font-size: 34px;
}

.leftinfo .title3 {
	color: #000;
	font-size: 20px;
}

 .leftinfo .share {
	background: #fff;
}
 .leftinfo .share{
	margin-top: 100px;
	font-size: 14px;
}
 .leftinfo .jary{
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 20px;
}
.leftinfo .comment{
	position: relative;
}
.leftinfo .comment img{
	margin-top: 20px;
	width: 40px;
	height: 40px;
}
.leftinfo .comment span{
	position: absolute;
	right: 15px;
	    top: 10px;
	display: inline-block;
	width: 20px;
	text-align: center;
	line-height: 20px;
	height: 19px;
	background: #e92322;
	color: #fff;
	border-radius: 50%;
}
.leftinfo .jary img{
	margin-bottom: 10px;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.leftinfo2 {
	z-index: 10;

   position: absolute;
   bottom: -330px;
   left: 5%;
   padding: 30px;
   margin-right: 30px;
   text-align: center;
   display: flex;
   flex-direction: column;
   font-size: 12px;
   color: gray;
}



.leftinfo2 .title1 span {
   font-size: 20px;
   background: #fff;
}

.leftinfo2 .title1::after {
   content: "";
   display: block;
   width: 70%;
   height: 1px;
   background: #e8e8e8;
   position: absolute;
   top: 7%;
   left: 20px;
   z-index: -1;
}

.leftinfo2 .title2 {
   color: #000;
   font-size: 34px;
}

.leftinfo2 .title3 {
   color: #000;
   font-size: 20px;
}

.leftinfo2 .share {
   background: #fff;
}
.leftinfo2 .share{
   margin-top: 100px;
   font-size: 14px;
}
.leftinfo2 .jary{
   display: flex;
   align-items: center;
   flex-direction: column;
   margin-top: 20px;
}
.leftinfo2 .comment{
   position: relative;
}
.leftinfo2 .comment img{
   margin-top: 20px;
   width: 40px;
   height: 40px;
}
.leftinfo2 .comment span{
   position: absolute;
   right: 15px;
	   top: 10px;
   display: inline-block;
   width: 20px;
   text-align: center;
   line-height: 20px;
   height: 19px;
   background: #e92322;
   color: #fff;
   border-radius: 50%;
}

.leftinfo2 .jary img{
   margin-bottom: 10px;
   flex-shrink: 0;
   width: 40px;
   height: 40px;
}


@media (max-width:1600px)  {
	.leftinfo > div:not(.jary){
		display: none;
	}
	.leftinfo2{
		display: none;
	}
	.jary {
		position: fixed;
		top: 50%;
		left: 16px;
		transform: translateY(-50%);
	}
}

@media (max-width:992px)  {
	.leftinfo .jary {
		display: none;
	}
}

.blog .entry {
	padding: 30px;
	margin-bottom: 60px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
	overflow: hidden;
	max-width: 600px;
	margin: 20px auto;
}

.blog .entry .entry-title {
	font-size: 28px;
	font-weight: bold;
	padding: 0;
	margin-bottom: 20px;
	padding: 30px 0;
}

.blog .entry .entry-title a {
	color: #32627b;
	transition: 0.3s;
	cursor: inherit;
	text-align: center;
}

.blog .entry .entry-content h4 {
	font-size: 16px;
	margin-top: 20px;
}

.blog .entry .entry-content p {
	line-height: 24px;
	color: #6d6d6d !important;
	font-size: 15px !important;
	overflow: hidden;
}
.blog .entry .entry-content p img{
	max-width: 100% !important;
}

.blog .entry .entry-content .read-more {
	-moz-text-align-last: right;
	text-align-last: right;
}

.blog .entry .entry-content .read-more a {
	display: inline-block;
	background: #68A4C4;
	color: #fff;
	padding: 6px 20px;
	transition: 0.3s;
	font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
	background: #32627b;
}

.blog .entry .entry-content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: bold;
}

.blog .entry .entry-content blockquote {
	overflow: hidden;
	background-color: #fafafa;
	padding: 60px;
	position: relative;
	text-align: center;
	margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
	color: #444;
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
}

.blog .entry .entry-content blockquote .quote-left {
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 36px;
	color: #e7e7e7;
}

.blog .entry .entry-content blockquote .quote-right {
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 36px;
	color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: #32627b;
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog .entry .entry-footer {
	padding-top: 10px;
	border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
	color: #4c99c1;
	display: inline;
}

.blog .entry .entry-footer a {
	color: #90c0d8;
	transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
	color: #68A4C4;
}

.blog .entry .entry-footer .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 14px;
}

.blog .entry .entry-footer .cats li {
	display: inline-block;
}

.blog .entry .entry-footer .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 14px;
}

.blog .entry .entry-footer .tags li {
	display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
	padding-right: 6px;
	color: #6c757d;
	content: ",";
}

.blog .entry .entry-footer .share {
	font-size: 16px;
}

.blog .entry .entry-footer .share i {
	padding-left: 5px;
}

.blog .entry-single {
	margin-bottom: 30px;
}

.blog .blog-author {
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
	width: 120px;
}

.blog .blog-author h4 {
	margin-left: 140px;
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 0px;
	padding: 0;
}

.blog .blog-author .social-links {
	margin: 0 0 5px 140px;
}

.blog .blog-author .social-links a {
	color: #72afce;
}

.blog .blog-author p {
	margin-left: 140px;
	font-style: italic;
	color: #b7b7b7;
}

.blog .blog-comments {
	margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
	font-weight: bold;
}

.blog .blog-comments .comment {
	margin-top: 30px;
	position: relative;
}

.blog .blog-comments .comment .comment-img {
	width: 50px;
}

.blog .blog-comments .comment h5 {
	margin-left: 65px;
	font-size: 16px;
	margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
	font-weight: bold;
	color: #444;
	transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
	color: #68A4C4;
}

.blog .blog-comments .comment h5 .reply {
	padding-left: 10px;
	color: #32627b;
}

.blog .blog-comments .comment time {
	margin-left: 65px;
	display: block;
	font-size: 14px;
	color: #72afce;
	margin-bottom: 5px;
}

.blog .blog-comments .comment p {
	margin-left: 65px;
}

.blog .blog-comments .comment.comment-reply {
	padding-left: 40px;
}

.blog .blog-comments .reply-form {
	margin-top: 30px;
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
	font-weight: bold;
	font-size: 22px;
}

.blog .blog-comments .reply-form p {
	font-size: 14px;
}

.blog .blog-comments .reply-form input {
	border-radius: 0;
	padding: 20px 10px;
	font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
	box-shadow: none;
	border-color: #a2cce3;
}

.blog .blog-comments .reply-form textarea {
	border-radius: 0;
	padding: 10px 10px;
	font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
	box-shadow: none;
	border-color: #a2cce3;
}

.blog .blog-comments .reply-form .form-group {
	margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
	border-radius: 0;
	padding: 10px 20px;
	border: 0;
	background-color: #32627b;
}

.blog .blog-comments .reply-form .btn-primary:hover {
	background-color: #68A4C4;
}

.blog .blog-pagination {
	/* color: #7b9bab; */
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.blog .blog-pagination a {
	font-size: 20px;
	text-transform: uppercase;
}


.blog .sidebar {
	padding: 30px;
	margin: 0 0 60px 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
	font-size: 20px;
	font-weight: 700;
	padding: 0 0 0 0;
	margin: 0 0 15px 0;
	color: #32627b;
	position: relative;
}

.blog .sidebar .sidebar-item {
	margin-bottom: 30px;
}

.blog .sidebar .search-form form {
	background: #fff;
	border: 1px solid #ddd;
	padding: 3px 10px;
	position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 15px;
	margin: -1px;
	background: #32627b;
	color: #fff;
	transition: 0.3s;
}

.blog .sidebar .search-form form button:hover {
	background: #68A4C4;
}

.blog .sidebar .categories ul {
	list-style: none;
	padding: 0;
}

.blog .sidebar .categories ul li+li {
	padding-top: 10px;
}

.blog .sidebar .categories ul a {
	color: #3f8db5;
}

.blog .sidebar .categories ul a:hover {
	color: #68A4C4;
}

.blog .sidebar .categories ul a span {
	padding-left: 5px;
	color: #bedae8;
	font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
	margin-top: 15px;
}


.blog .sidebar .recent-posts h4 {
	font-size: 15px;
	font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
	color: #0d2735;
	transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
	color: #68A4C4;
}

.blog .sidebar .recent-posts time {
	display: block;
	font-style: italic;
	font-size: 14px;
	color: #72afce;
}

.blog .sidebar .btn-submit {
	margin-top: 20px;
}

.blog .sidebar .btn-submit a {
	background-color: #fff;
	color: #fff;
	padding: 8px 20px;
	background: #68A4C4;
	font-size: 14px;
	border-radius: 2px;
	transition: all .3s ease;
}

.blog .sidebar .btn-submit a:hover {
	background: #32627b;

}

@media (max-width:1024px) {
	.blog-banner img {
		margin-top: 20px;
	}
}

/* #price-recommand */
#main-recommand {
	height: 100%;
}

#price-recommand {
	padding: 0;
	height: 100%;
	display: flex;
}

#price-recommand .nav {
	width: 450px;
	height: 100%;
	background: #1e4356;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 3rem;
	position: relative;
}

#price-recommand .nav p {
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 100px;
}

#price-recommand .nav ul {
	list-style: none;
}

#price-recommand .nav ul li {
	color: #fff;
	margin-bottom: 20px;
	cursor: pointer;
	opacity: .3;
}

#price-recommand .nav ul li.active-toggle {
	opacity: 1;
}

#price-recommand .nav ul li span {
	margin-right: 2rem;
}

#price-recommand .nav ul li a {
	color: #fff;
}

#price-recommand .nav .nav-footer {
	position: absolute;
	bottom: 40px;
	width: 300px;
	height: 100px;
	left: 50%;
	margin-left: -150px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #F9F9F9;
	border-top: 1px solid hsla(0, 0%, 83.9%, .1);
	font-size: 16px;
	z-index: 99;
}

#price-recommand .nav .nav-footer i {
	font-style: normal;
}

#price-recommand #tabs_container {
	width: 100%;

	height: 100%;
	overflow: hidden;
	position: relative;
	background: white;
	display: flex;
}

/*--------------------------------------------------------------
# Knowledge base
--------------------------------------------------------------*/

#knowledge-base .search-box {
	width: 100%;
	padding: 60px;
	text-align: center;
}

#knowledge-base .search-box h3 {
	margin-bottom: 40px;
}

#knowledge-base .search-box input {
	width: 100%;
	height: 50px;
	border: 1px solid #BBB;
	border-radius: 4px;
	padding-left: 10px;
	outline: none;
	transition: all .3s;
}

#knowledge-base .search-box input:focus {
	border-color: #4fa6d5;
}

#knowledge-base .search-item-wrapper {
	padding: 0 20px;
}

#knowledge-base .search-item {
	margin-top: 60px;
}

#knowledge-base .search-item h3 {
	line-height: 55px;
	background: #1e4356;
	border-radius: 6px 6px 0 0;
	text-align: center;
	color: #fff;
	font-size: 18px;
}

#knowledge-base .search-item ul li {
	list-style: none;
	margin-top: 10px;
}

#knowledge-base .search-item ul li span {
	font-size: 18px;
	margin-right: 5px;
	position: relative;
	top: 1px;
	color: #1e4356;
}

#knowledge-base .search-item ul li a {
	color: #6d6d6d;
}

#knowledge-base .search-item ul li a:hover {
	text-decoration: underline;
}

#knowledge-base .search-item p {
	text-align: center;
	margin-bottom: 0;
	margin-top: 10px;
	cursor: pointer;
	font-size: 14px;
	color: #6d6d6d;
	display: none;
}

#knowledge-base .search-item p:hover {
	color: #1e4356;
}

#knowledge-base .search-item p.active {
	display: block;
}

.knowledge-single {
	min-height: calc(100% - 396px);
}

.knowledge-result .result-header {
	margin-bottom: 20px;
}

.knowledge-result .result-item-wrapper {
	min-height: calc(100% - 427px);
}

.knowledge-result .result-item {
	display: flex;
	align-items: center;
	border-top: 1px solid #DDD;
	padding: 20px 0;
}

.knowledge-result .result-item span {
	font-size: 28px;
	color: #666;
	margin-right: 20px;
	font-weight: normal;
}

.knowledge-result .result-item div {
	display: flex;
	flex-direction: column;
}

.knowledge-result .result-item p {
	margin-bottom: 0px;
	font-size: 16px;
	color: #666;
}

.btn-next-page {
	background: #68A4C4;
	color: #fff;
	margin-top: 20px;
}

.btn-next-page:hover {
	color: #fff;
}

#tabs_container .item {
	width: 100%;
	height: 100%;
	display: flex;
	transform: translateX(9999px);
	position: absolute;
	left: 0;
	top: 0;
	padding: 40px;
	padding-left: 60px;
}

#tabs_container .flex-column {
	flex-direction: column;
}


#tabs_container .active {
	transition: all .4s ease;
	transform: translateX(0);
	opacity: 1;

}

#tabs_container .item .item-left {
	display: flex;
	flex: 1;
	flex-direction: column;
	box-sizing: border-box;
	padding-right: 30px;
}

#tabs_container .item .title {
	margin: 100px 0 60px;
	font-size: 40px;
	color: #4a4a4a;
	font-weight: normal;
}

#tabs_container .title-wrapper {
	display: flex;
}

#tabs_container .title-wrapper .title {
	margin-bottom: 10px;
}

#tabs_container .title-wrapper img {
	width: 200px;
	margin-left: 60px;
}

#tabs_container .item .item-left p {
	color: #333;
	font-size: 20px;
}

#tabs_container .item .item-left p::after {
	display: block;
	content: '';
	width: 100px;
	height: 1px;
	background: #DDD;
	margin: 60px 0;
}

#tabs_container .item .item-left span {
	height: 200px;
}

#tabs_container .item .btns {
	display: flex;
}

#tabs_container .item .btns a {
	width: 100px;
	height: 46px;
	border-radius: 4px;
	text-align: center;
	line-height: 46px;
	text-transform: uppercase;
	margin-right: 15px;
}

#tabs_container .item .btns .btn-next {
	background: #68A4C4;
	color: #fff;
}

#tabs_container .item-right img {
	width: 500px;
}

/* tabs2 */
#tabs2 .radio-wrapper {
	display: flex;
	/* justify-content: space-between; */
	margin-bottom: 30px;
}

#tabs2 .radio-wrapper .radio {
	/* width: 45%; */
	flex: 0 0 350px;
	height: 300px;
	background: #fff;
	border: 1px solid #68A4C4;
	border-radius: 6px;
}

#tabs2 .radio-wrapper .radio:nth-of-type(1) {
	margin-right: 50px;
}

#tabs2 .radio-wrapper .radio label {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 30px 40px;
	box-sizing: border-box;
	cursor: pointer;

}

#tabs2 .radio-wrapper .radio label img {
	margin-bottom: 20px;
	width: 250px;
	position: relative;
}

#tabs2 .radio-wrapper .radio label div {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

#tabs2 .radio-wrapper .radio label div span {
	margin-left: 20px;
}

#tabs2 input[type=checkbox],
input[type=radio] {
	width: 20px;
	height: 20px;
	background: #68A4C4;
	color: #68A4C4;
}

/* tabs3 */
#tabs3 p {
	margin-bottom: 100px;
}

#tabs3 #step3-slider {
	width: 600px;
	margin-bottom: 100px;
}

#tabs3 .zui-slider-wrap-btn {
	width: 20px;
	height: 20px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #0b212d;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
}


#footer .footer-top {
	background: #0d2735;
	border-top: 1px solid #17455e;
	border-bottom: 1px solid #123649;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 18px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	color: #a2cce3;
	font-weight: 600;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Roboto", sans-serif;
	color: #DDD;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #1e4356;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #68A4C4;
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 18px;
	font-weight: 600;
	color: #a2cce3;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #a2cce3;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
	color: #959799;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
	color: #DDD;
}

#footer .footer-top .footer-links ul a:hover {
	color: #a2cce3;
}


#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

#footer .credits a {
	color: #a2cce3;
}


#headerPage + main#main {
	padding-top: 80px;
}

.fr-view img {
	cursor:pointer;
}