/*
	Template Name: APPIO - App Landing Page HTML Template
	Description: APPIO 100% Responsive HTML landing page Template for Showcase your App or Product.
	Version: 1.0
	Author: http://www.aminuldev.com/
*/


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

01.	RESET CSS
02. GENERAL CSS(body, header, btn, form, list, link, img, middle title, section bg, margin, padding, icon color)
03. HEADER CSS
	03.1: navbar css
	03.2: slider css
04. HEADER BOTTOM CSS
05. PROMO CSS
06. ABOUT CSS
07. FEATURE CSS
08. VIDEO PROMO CSS
09. COUNTER CSS
10. APP SCREEN CSS
11.	PRICING TABLE CSS
12. TESTIMONIAL CSS
13. TEAM CSS
14. DOWNLOAD CSS
15. BLOG CSS
16. CONTACT FORM CSS
17. SUBSCRIBE CSS
18. FOOTER CSS
19. OFFCANVAS CSS
20. PRELOADER CSS
21. BACK TO TOP CSS

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


/* ----------------------------------------------------
	IMPORT GOOGLE FONTS
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600,700|Open+Sans:300,400');


/* -----------------------------------------
			   01.	RESET CSS
-------------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*------------------------------------------
			02. GENERAL CSS(body, header, btn, form, list, link, img, middle title, section bg, margin, padding, icon color)
-------------------------------------------*/

/*body css*/
body {
	font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    background: #FFFFFF;
    color: #999;
    overflow-y: scroll;
}

/*header*/
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    color: #46355C;
	font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 46px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 35px;
}

h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
}
h4{
	font-size: 22px;
	line-height: 22px;
	font-weight: 500;
}
h5{
	font-size: 20px;
	line-height: 22px;
	font-weight: 500;
}
h6{
	font-size: 18px;
	line-height: 22px;
	font-weight: 500;
}
/*btn*/
.btn {
	border: 0 none;
	border-radius: 100px;
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	outline: 0 none;
	padding: 5px 35px;
	position: relative;
	text-align: center;
	text-decoration: none;
	z-index: 1;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.btn:hover,
.btn:focus,
.btn:active {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	outline: 0 none;
	border: 0 none;
	text-decoration: none;
	transform: translate3d(0, -2px, 0);
	-webkit-transform: translate3d(0, -2px, 0);
}
.btn.btn-primary {
	background: #0378fc;
	border: 2px solid #0378fc;
	color: #fff;
}
.btn.btn-info{
	background: #37058a;
	border: 2px solid #37058a;
	color: #fff;
}
.btn-primary.active:hover{
	background: #0378fc;
	border: 2px solid #0378fc;
}
.btn-info.active:hover{
	background: #37058a;
	border: 2px solid #37058a;
}
.btn.btn-primary:hover,
.btn.btn-info:hover,
.btn.btn-primary:focus,
.btn.btn-info:focus {
	border-color: transparent;
	outline: 0 none;
}

.btn.btn-primary:hover:after,
.btn.btn-info:hover:after,
.btn.btn-primary:focus:after,
.btn.btn-info:focus:after {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.btn.btn-default, .btn.btn-default-1{
	background: transparent none repeat scroll 0 0;
	color: #fff;
	border: 2px solid #fff;
}
.btn.btn-default:hover, .btn.btn-default:focus{
	background: #0378fc;
	border: 2px solid #0378fc;
	color: #fff;
}

.btn.btn-default-1:hover, .btn.btn-default-1:focus{
	background: #37058a;
	border: 2px solid #37058a;
	color: #fff;
}
/*form*/
.form-control {
	border: 0;
	border-bottom: 1px solid transparent;
	background: #fff;
	border-radius: 3px;
	height: 45px;
	-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	-ms-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.form-control:focus {
	border-color: #bf095d;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	-ms-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 40px;
}


.form-group.submit-btn {
	margin-bottom: 0;
}


textarea.form-control {
	height: 150px;
}


/*list*/

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/*link*/
a {
    color: #67569D;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

a,
a:active,
a:focus,
a:active {
    text-decoration: none;
}


a:hover,
a:focus {
    color: #8E6CAE;
}

/*img*/
img {
	max-width: 100%
}

.alert {
	padding: 10px; 
}


/*middle title*/

.appio-center-heading h2 {
	font-size: 30px;
	font-weight: 600;
	position: relative;
	margin-bottom: 0;
}
.appio-center-heading p {
	margin: 5px 0 0;
}
.appio-center-heading span.bordered-icon {
	color: #31aae2;
	padding: 0 10px;
	font-size: 10px;
	line-height: 18px;
	position: relative;
	display: inline-block;
}

.appio-center-heading span.bordered-icon i {
	transform: rotate(45deg);
}

.appio-center-heading span.bordered-icon:before,
.appio-center-heading span.bordered-icon:after {
	content: "";
	background: #dadada;
	width: 100px;
	height: 1px;
	top: 8px;
	position: absolute;
}

.appio-center-heading span.bordered-icon:before {
	left: 100%;
}
.appio-center-heading span.bordered-icon:after {
	right: 100%;
}
/*section bg*/
.bg-secondary{
	background: #EFF0F3;
}

.bg-white{
	background: #FDFDFD;
}

/*margin, padding*/

.m-0 {
	margin: 0;
}
.p-0 {
	padding: 0;
}

/* =====================================
MARGIN TOP
===================================== */

.mt-0 {
	margin-top: 0;
}
.mt-10 {
	margin-top: 10px;
}
.mt-15 {
	margin-top: 15px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.mt-40 {
	margin-top: 40px;
}
.mt-50 {
	margin-top: 50px;
}
.mt-60 {
	margin-top: 60px;
}
.mt-70 {
	margin-top: 70px;
}
.mt-80 {
	margin-top: 80px;
}
.mt-90 {
	margin-top: 90px;
}
.mt-100 {
	margin-top: 100px;
}
.mt-110 {
	margin-top: 110px;
}
.mt-120 {
	margin-top: 120px;
}
.mt-130 {
	margin-top: 130px;
}
.mt-140 {
	margin-top: 140px;
}
.mt-150 {
	margin-top: 150px;
}

/* =====================================
MARGIN BOTTOM
===================================== */

.mb-0 {
	margin-bottom: 0;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-15 {
	margin-bottom: 15px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mb-60 {
	margin-bottom: 60px;
}
.mb-70 {
	margin-bottom: 70px;
}
.mb-80 {
	margin-bottom: 80px;
}
.mb-90 {
	margin-bottom: 90px;
}
.mb-100 {
	margin-bottom: 100px;
}
.mb-110 {
	margin-bottom: 110px;
}
.mb-120 {
	margin-bottom: 120px;
}
.mb-130 {
	margin-bottom: 130px;
}
.mb-140 {
	margin-bottom: 140px;
}
.mb-150 {
	margin-bottom: 150px;
}

/*=====================================
PADDING TOP
===================================== */

.pt-0 {
	padding-top: 0;
}
.pt-10 {
	padding-top: 10px;
}
.pt-15 {
	padding-top: 15px;
}
.pt-20 {
	padding-top: 20px;
}
.pt-30 {
	padding-top: 30px;
}
.pt-40 {
	padding-top: 40px;
}
.pt-50 {
	padding-top: 50px;
}
.pt-60 {
	padding-top: 60px;
}
.pt-70 {
	padding-top: 70px;
}
.pt-80 {
	padding-top: 80px;
}
.pt-90 {
	padding-top: 90px;
}
.pt-100 {
	padding-top: 100px;
}
.pt-110 {
	padding-top: 110px;
}
.pt-120 {
	padding-top: 120px;
}
.pt-130 {
	padding-top: 130px;
}
.pt-140 {
	padding-top: 140px;
}
.pt-150 {
	padding-top: 150px;
}

/* =====================================
PADDING RIGHT
===================================== */

.pr-0 {
	padding-right: 0;
}
.pr-10 {
	padding-right: 10px;
}
.pr-15 {
	padding-right: 15px;
}
.pr-20 {
	padding-right: 20px;
}
.pr-30 {
	padding-right: 30px;
}
.pr-40 {
	padding-right: 40px;
}
.pr-50 {
	padding-right: 50px;
}
.pr-60 {
	padding-right: 60px;
}
.pr-70 {
	padding-right: 70px;
}
.pr-80 {
	padding-right: 80px;
}
.pr-90 {
	padding-right: 90px;
}
.pr-100 {
	padding-right: 100px;
}
.pr-110 {
	padding-right: 110px;
}
.pr-120 {
	padding-right: 120px;
}
.pr-130 {
	padding-right: 130px;
}
.pr-140 {
	padding-right: 140px;
}

/* =====================================
PADDING BOTTOM
===================================== */

.pb-0 {
	padding-bottom: 0;
}
.pb-10 {
	padding-bottom: 10px;
}
.pb-15 {
	padding-bottom: 15px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-60 {
	padding-bottom: 60px;
}
.pb-70 {
	padding-bottom: 70px;
}
.pb-80 {
	padding-bottom: 80px;
}
.pb-90 {
	padding-bottom: 90px;
}
.pb-100 {
	padding-bottom: 100px;
}
.pb-110 {
	padding-bottom: 110px;
}
.pb-120 {
	padding-bottom: 120px;
}
.pb-130 {
	padding-bottom: 130px;
}
.pb-140 {
	padding-bottom: 140px;
}
.pb-150 {
	padding-bottom: 150px;
}

/* =====================================
PADDING LEFT
===================================== */

.pl-0 {
	padding-left: 0;
}
.pl-10 {
	padding-left: 10px;
}
.pl-15 {
	padding-left: 15px;
}
.pl-20 {
	padding-left: 20px;
}
.pl-30 {
	padding-left: 30px;
}
.pl-40 {
	padding-left: 40px;
}
.pl-50 {
	padding-left: 50px;
}
.pl-60 {
	padding-left: 60px;
}
.pl-70 {
	padding-left: 70px;
}
.pl-80 {
	padding-left: 80px;
}
.pl-90 {
	padding-left: 90px;
}
.pl-100 {
	padding-left: 100px;
}
.pl-110 {
	padding-left: 110px;
}
.pl-120 {
	padding-left: 120px;
}
.pl-130 {
	padding-left: 130px;
}
.pl-140 {
	padding-left: 140px;
}
.pl-150 {
	padding-left: 150px;
}
/*padding top bottom*/
.ptb-0 {
	padding: 0;
}
.ptb-10 {
	padding: 10px 0;
}
.ptb-20 {
	padding: 20px 0;
}
.ptb-30 {
	padding: 30px 0;
}
.ptb-40 {
	padding: 40px 0;
}
.ptb-50 {
	padding: 50px 0;
}
.ptb-60 {
	padding: 60px 0;
}
.ptb-70 {
	padding: 70px 0;
}
.ptb-80 {
	padding: 80px 0;
}
.ptb-90 {
	padding: 90px 0;
}
.ptb-100 {
	padding: 0px 0;
}
.ptb-110 {
	padding: 110px 0;
}
.ptb-120 {
	padding: 120px 0;
}
.ptb-130 {
	padding: 130px 0;
}
.ptb-140 {
	padding: 140px 0;
}
.ptb-150 {
	padding: 150px 0;
}
.p-100 {
	padding: 100px;
}

/* =====================================
SECTION MARGIN
===================================== */

.mtb-0 {
	margin: 0;
}
.mtb-10 {
	margin: 10px 0;
}
.mtb-15 {
	margin: 15px 0;
}
.mtb-20 {
	margin: 20px 0;
}
.mtb-30 {
	margin: 30px 0;
}
.mtb-40 {
	margin: 40px 0;
}
.mtb-50 {
	margin: 50px 0;
}
.mtb-60 {
	margin: 60px 0;
}
.mtb-70 {
	margin: 70px 0;
}
.mtb-80 {
	margin: 80px 0;
}
.mtb-90 {
	margin: 90px 0;
}
.mtb-100 {
	margin: 100px 0;
}
.mtb-110 {
	margin: 110px 0;
}
.mtb-120 {
	margin: 120px 0;
}
.mtb-130 {
	margin: 130px 0;
}
.mtb-140 {
	margin: 140px 0;
}
.mtb-150 {
	margin: 150px 0;
}

/*icon color*/
.ab1 i{
	color: #9BCF50;
}
.ab2 i{
	color: #36C6EB;
}
.ab3 i{
	color: #FF7E30;
}
.ab4 i{
	color: #1e87f0;
}

.ab5 i{
	color: #bf095d;
}


/* -----------------------------------------
			 03. HEADER CSS
-------------------------------------------- */

/*03.1: navbar css*/

.navbar.sticky, .nav-1.sticky, .nav-2.sticky, .nav-3.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 0;
}

.navbar.sticky{
	background-image: -moz-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
}
/*demo-1*/
.nav-1.sticky {
	background-image: -moz-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
}

/*demo-2*/
.nav-2.sticky {
	background: #AA076B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #61045F, #AA076B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #61045F, #AA076B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
/*demo-3*/
.nav-3.sticky {
	background: #000000;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #FF070B, #E5008D, #000000);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #FF070B, #E5008D, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.navbar {
	margin-bottom: 0;
}

.appio-menu{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	border-radius: 0;
	border: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: transparent;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    font-size: 12px;
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 4px 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid transparent;

}
.navbar-default .navbar-nav li {
	margin-right: 5px;
}
.navbar-default .navbar-nav li:last-child {
	margin-right: 0;
}

.navbar-default .navbar-nav>li>a:hover, 
.navbar-default .navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:hover, 
.navbar-default .navbar-nav>.active>a:focus {
    color: #ff007b;
    border: 1px solid #fff;
	background: #fff;
	border-radius: 4px;
}
.navbar-default .navbar-nav>li>a:focus {
	color: #ff007b;
}

.navbar-brand{
	padding: 4px 0 4px 15px;
}

/*responsive toggle btn*/
.navbar-toggle {
	margin: 5px 0 0 0;
	padding: 5px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background-repeat: repeat-x;
	background-color: #0378fc;
	background-image: -moz-linear-gradient(90deg, #0378fc 0%, #5856d6 100%);
	background-image: -webkit-linear-gradient(90deg, #0378fc 0%, #5856d6 100%);
	background-image: -ms-linear-gradient(90deg, #0378fc 0%, #5856d6 100%);
	color: #ffffff;
	width: 40px;
	height: 40px;
	border: 0;
}

.navbar-toggle:hover {
	background-color: #4653cc;
	background-image: -moz-linear-gradient(90deg, #5856d6 0%, #0378fc 100%);
	background-image: -webkit-linear-gradient(90deg, #5856d6 0%, #0378fc 100%);
	background-image: -ms-linear-gradient(90deg, #5856d6 0%, #0378fc 100%);
}






.ie9 .navbar-toggle {
	background-color: #AAA1C8;
}

.ie9 .navbar-default .navbar-toggle:hover, 
.ie9 .navbar-default .navbar-toggle:focus {
    background-color: #8E6CAE;
}


@media(min-width:767px) {
	.navbar {
		padding: 20px 0;
	}
	.navbar.sticky{
		padding: 10px 0;
	}
	.navbar-nav {
		padding-top: 12px;
	}
}


/*03.2: slider css*/
#home{
	position: relative;
	height: 100%;
}

.slider-content{
	background-image: url("../img/header-bg.jpg");
	background-size: cover;
	background-position: 50% 50%;
	background-attachment: fixed;
}
.overlay, .overlay-1, .overlay-2, .overlay-3{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.overlay{
	background-image: -moz-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	opacity: 0.9;

}


/*demo-1*/
.overlay-1{
	background-image: -moz-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	opacity: 0.8;
}
/*demo-2*/
.overlay-2{
	background: #AA076B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #61045F, #AA076B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #61045F, #AA076B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	opacity: 0.7;
}

/*demo-2*/
.overlay-3{
	background: #000000;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #FF070B, #E5008D, #000000);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #FF070B, #E5008D, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	opacity: 0.7;
}



.cd-intro {
	width: 90%;
	max-width: 768px;
	text-align: center;
}

.cd-intro {
	margin: 4em auto;
}
@media only screen and (min-width: 768px) {
	.cd-intro {
		margin: 5em auto;
	}
}
@media only screen and (min-width: 1170px) {
	.cd-intro {
		margin: 6em auto;
	}
}

.cd-headline {
	font-size: 3rem;
	line-height: 1.2;
}
@media only screen and (min-width: 768px) {
	.cd-headline {
		font-size: 4.4rem;
		font-weight: 300;
	}
}
@media only screen and (min-width: 1170px) {
	.cd-headline {
		font-size: 6rem;
	}
}

.cd-words-wrapper {
	display: inline-block;
	position: relative;
	text-align: left;
}
.cd-words-wrapper b {
	display: inline-block;
	position: absolute;
	white-space: nowrap;
	left: 0;
	top: 0;
}
.cd-words-wrapper b.is-visible {
	position: relative;
}
.no-js .cd-words-wrapper b {
	opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
	opacity: 1;
}

.cd-headline.clip span {
	display: inline-block;
	padding: .2em 0;
}
.cd-headline.clip .cd-words-wrapper {
	overflow: hidden;
	vertical-align: top;
}
.cd-headline.clip .cd-words-wrapper::after {
	/* line */
	content: '';
	position: absolute;
	top: 20%;
	right: 0;
	width: 3px;
	height: 70%;
	background-color: #fff;
}
.cd-headline.clip b {
	opacity: 0;
}
.cd-headline.clip b.is-visible {
	opacity: 1;
}

.appio-slider-text h1{
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
    color: #fff;
}

.appio-slider-text h1 .highlight-text{
    font-size: 60px;
    font-weight: 700;
	line-height: 60px;
}

.appio-slider-text p{
    font-size: 16px;
    line-height: 30px;
    padding: 15px 0;
    color: #fff;
    letter-spacing: .5px;
}

/*end slider css*/




/* -----------------------------------------
			  04. HEADER BOTTOM CSS
-------------------------------------------- */


/*start slider bottom css*/

.appio-app-users .last-b{
	border-right: none;
}
.appio-user-info {
	border-right: 1px solid #EBEBEB;
	margin-right: 30px;
}
.appio-usage-icon.media-left {
	padding-right: 20px;
	vertical-align: middle;
}

.appio-usage-icon i {
	font-size: 30px;
}

.appio-useges-quantity h2 {
	color: #0378fc;
	font-size: 30px;
	line-height: 1;
	margin: 0;
}
.appio-useges-quantity p {
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
	margin: 0;
	text-transform: uppercase;
}


.shadow {
	background: url("../img/header-bottom-shadow.png") bottom no-repeat;
	height: 24px;
}
/*end app user style*/


/* -----------------------------------------
			    05. PROMO CSS
-------------------------------------------- */
/*start promo section*/
.appio-promo-text-wrap {
	max-width: 360px;
	margin: 20px auto;
	padding: 30px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 4px;
}
.appio-promo-text-wrap:hover{
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}


.appio-promo-text-wrap .icon>i {
	font-size: 50px;
}


.appio-promo-text-wrap .info-title {
	margin: 20px 0 10px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	text-decoration: none;
}

/*end promo section*/

/*promo demo 2*/

.appio-feature-promo{
	text-align: center;
	padding: 30px 20px;
	position: relative;
}

.appio-feature-promo:before{
	content: '';
	display: block;
	border-top: 1px solid #AA076B;
	border-bottom: 1px solid #AA076B;
	border-radius: 10px;
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: -10px;
	left: -10px;
	transform: scale(0,1);
	-o-transform: scale(0,1);
	-webkit-transform: scale(0,1);
	-moz-transform: scale(0,1);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	z-index: -1;
}

.appio-feature-promo:after{
	content: '';
	display: block;
	border-left: 1px solid #AA076B;
	border-right: 1px solid #AA076B;
	border-radius: 10px;
	position: absolute;
	top: -5px;
	bottom: -5px;
	right: 5px;
	left: 5px;
	transform: scale(1,0);
	-webkit-transform: scale(1,0);
	-moz-transform: scale(1,0);
	-o-transform: scale(1,0);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	z-index: -1;
}

.appio-feature-promo:hover:after,
.appio-feature-promo:hover:before{
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
}

.appio-feature-promo-icon{
	display: inline-block;
	width: 54px;
	height: 54px;
	color: #AA076B;
	font-size: 22px;
	border: 1px solid #000;
	border-radius: 6px;
	padding-top: 12px;
	margin-bottom: 30px;
	margin-top: 12px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.appio-feature-promo-icon i{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
}

.appio-feature-promo h3{
	font-size: 12px;
	color: #212121;
	text-transform: uppercase;
	letter-spacing:0.03em;
	padding: 10px 0;
	margin-bottom: 0;
}



/* -----------------------------------------
			  06. ABOUT CSS
-------------------------------------------- */

/*start about section*/


.appio-about-features {
	margin-top: 30px;
	margin-bottom: 0;
}

.appio-about-features li {
	display: block;
	width: 50%;
	float: left;
	height: 60px;
	position: relative;
	line-height: 1.8;
	font-size: 16px;
}
.appio-about-features li i{
	margin-right: 10px;
	vertical-align: middle;
	font-size: 20px;
}
.appio-store-buttons a {
	text-align: left;
	margin-right: 20px;
	margin-bottom: 20px;
	padding: 10px 45px;
}

.btn-white:after{
	background: #fff none repeat scroll 0 0;
	border-radius: 100px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 100%;
	z-index: -1;
}
.btn-white:before{
	background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #5856d6 0%, #c10f41 100%) repeat scroll 0 0;
	background: rgba(0, 0, 0, 0) linear-gradient(to right, #5856d6 0%, #c10f41 100%) repeat scroll 0 0;
	border-radius: 100px;
	content: "";
	height: calc(100% + 4px);
	left: -2px;
	position: absolute;
	top: -2px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: calc(100% + 4px);
	z-index: -2;
}
.appio-store-buttons .btn:hover{
	background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #5856d6 0%, #c10f41 100%) repeat scroll 0 0;
	background: rgba(0, 0, 0, 0) linear-gradient(to right, #5856d6 0%, #c10f41 100%) repeat scroll 0 0;
}
.appio-slider-btn a{
    margin-right: 25px;

}
.appio-slider-text .appio-slider-btn a{
    font-size: 18px;
    line-height: 29px;
}


.about-app-img .appio-store-buttons i {
	color: #2b323f;
}

.appio-store-buttons a i, .appio-store-buttons a p {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.appio-store-buttons i {
	font-size: 24px;
	padding-right: 10px;
	vertical-align: middle;
}
.dsp-tc {
	display: table-cell;
	vertical-align: top;
}


.appio-store-buttons a p {
	line-height: 1.2;
	font-size: 14px;
}
.appio-store-buttons span {
	font-size: 18px;
	font-weight: 700;
}
.appio-store-buttons a i, .appio-store-buttons a p {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.about-app-img p {
	margin-bottom: 35px;
}


/*end about section*/


/* -----------------------------------------
			    07. FEATURE CSS
-------------------------------------------- */

/*start feature section*/

.appio-feature-section .appio-single-feature {
	margin-bottom: 34px;
}
.appio-feature-section .feature-content h3{
	font-size: 18px;
	line-height: 50px;
	margin-bottom: 15px;
}
.appio-feature-section .feature-content i{
	float: left;
	margin-right: 20px;
	display: block;
	width: 55px;
	height: 55px;
	font-size: 22px;
	line-height: 55px;
	text-align: center;
	border-radius: 50%;
	-webkit-transition      : all 0.3s ease 0s;
	-moz-transition      : all 0.3s ease 0s;
	-o-transition      : all 0.3s ease 0s;
	transition      : all 0.3s ease 0s;
}


.feature-content:hover .content-icon i {
	color: #fff;
	border-radius: 4px 4px 4px 4px;
}


.content-icon i{
	transition: all 0.3s ease 0s;
}
.content-icon i {
	display: inline-block;
}


.appio-feature-section .appio-single-feature .fe1 i{
	background-color: #a9d13a;
	color: #fff;
}

.appio-feature-section .appio-single-feature:hover .fe1 i {
	background-color: #94b833;
	color: #e6e6e6;
}


.appio-feature-section .appio-single-feature .fe2 i{
	background-color: #d90faa;
	color: #fff;
}

.appio-feature-section .appio-single-feature:hover .fe2 i {
	background-color: #c91380;
	color: #e6e6e6;
}


.appio-feature-section .appio-single-feature .fe3 i{
	background-color: #3659e3;
	color: #fff;
}

.appio-feature-section .appio-single-feature:hover .fe3 i {
	background-color: #4653cc;
	color: #e6e6e6;
}


.appio-feature-section .appio-single-feature .fe4 i{
	background-color: #1bc1e3;
	color: #fff;
}

.appio-feature-section .appio-single-feature:hover .fe4 i {
	background-color: #18a7c4;
	color: #e6e6e6;
}


.appio-feature-section .appio-single-feature .fe5 i{
	background-color: #e8900e;
	color: #fff;
}

.appio-feature-section .appio-single-feature:hover .fe5 i {
	background-color: #d47c18;
	color: #e6e6e6;
}

.appio-feature-section .appio-single-feature .fe6 i{
	background-color: #de211a;
	color: #fff;
}

.appio-feature-section .appio-single-feature:hover .fe6 i {
	background-color: #c71e17;
	color: #e6e6e6;
}


@media (min-width: 768px) {
	.appio-feature-section .feature-content.left-feature {
		text-align: right;
	}
	.appio-feature-section .feature-content.left-feature i{
		float: right;
		margin-left: 20px;
		margin-right: 0;
	}
}
/*end feature section*/

/* -----------------------------------------
			   08. VIDEO PROMO CSS
-------------------------------------------- */

/*start video promo section*/

.appio-video-promo, .appio-video-promo-1, .appio-video-promo-2, .appio-video-promo-3{
	background: url("../img/video-promo-bg.jpg");
	position: relative;
	background-size: cover;
	padding: 150px 0;
	z-index: 1;

}
.appio-video-promo:after, .appio-video-promo-1:after, .appio-video-promo-2:after, .appio-video-promo-3:after{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
.appio-video-promo:after{
	background-image: -moz-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	opacity: 0.8;

}
/*demo-1*/
.appio-video-promo-1:after{
	background-image: -moz-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	opacity: 0.9;
}

/*demo-2*/
.appio-video-promo-2:after{
	background: #AA076B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #61045F, #AA076B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #61045F, #AA076B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	opacity: 0.8;
}
/*demo-3*/
.appio-video-promo-3:after{
	background: #000000;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #FF070B, #E5008D, #000000);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #FF070B, #E5008D, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	opacity: 0.8;
}


.video-area-text i {
	font-size: 25px;
	border: 1px solid #fff;
	background: #fff;
	color: #000;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	line-height: 60px;
	text-align: center;
	padding-left: 6px;
	transition: all .3s ease;
}

.video-area-text a:hover i{
	color: #fff;
	background: #0378fc;
}
.video-area-text h3 {
	color: #fff;
}


/*end video promo section*/


/* -----------------------------------------
			  09. COUNTER CSS
-------------------------------------------- */


/*start counter section*/
.counter-info{
	margin-bottom: 15px;
}
.counter-info span i, .counter-info span{
	margin-right: 2px;
}
.counter-info span i, .counter-info span.timer{
	font-size: 25px;
	font-weight: bold;
}


.count-description{
	font-size: 15px;
	font-weight: 500;
}

/*end counter section*/

/* -----------------------------------------
			  09. APP SCREEN CSS
-------------------------------------------- */


.swiper-container.appio-screen-view {
	text-align: center;
}

.swiper-container.appio-screen-view .swiper-slide {
	padding: 0 43px;
}

.swiper-container {
	width: 100%;
	padding-bottom: 50px;
}

.swiper-slide img {
	display: block;
	margin: auto;
	width: 100%;
	border-radius: 10px;
}

.swiper-slide {
	width: 390px;
	height: auto;
	padding: 0 15px;
}
.two .swiper-slide {
	width: 300px;
}
.swiper-slide img {
	box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2);
}

.swiper-slide .appio-screen-img .preview-icon {
	z-index: -1;
	width: calc(100% - 30px);
}


.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0;
}

.swiper-pagination-bullet {
	border-radius: 10px;
	display: inline-block;
	height: 5px;
	width: 20px;
	opacity: 1;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	background-color: #000000;
}

.swiper-pagination-bullet:nth-child(5n+1) {
	background-color: #9BCF50
}
.swiper-pagination-bullet:nth-child(5n+2) {
	background-color: #36C6EB
}
.swiper-pagination-bullet:nth-child(5n+3) {
	background-color: #FF7E30
}
.swiper-pagination-bullet:nth-child(5n+4) {
	background-color: #1e87f0
}
.swiper-pagination-bullet:nth-child(5n+5) {
	background-color: #bf095d
}



.swiper-pagination-bullet-active {

	border: medium none;
	height: 5px;
	width: 30px;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}





/* -----------------------------------------
			   11.	PRICING TABLE CSS
-------------------------------------------- */

/*start pricing table style*/


.appio-pricing-wrap .active{
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,.2);
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}


.appio-pricing-text-wrap{
	vertical-align: middle;
	display: table-cell;
}

.appio-pricing-text-wrap p{
	margin-bottom: 15px;
}
.appio-pricing-text-wrap p.contact-price{
	font-size: 14px;
	font-weight: 500;
}
.appio-pricing-text-wrap p.contact-price a:hover{
	color:#0378fc;
	text-decoration: none;
}

.appio-pricing-single-wrap{
	box-shadow: none;
	padding: 50px 40px;
	border-radius: 6px;
	transition: all .3s ease;
}
.appio-pricing-single-wrap a.btn-default, .appio-pricing-single-wrap a.btn-default-1 {
	color: #000;
	border-color: #ebebeb;
}

.appio-pricing-single-wrap a.active{
	background-color: #0378fc;
	color: #fff;
}

.appio-pricing-single-wrap a.btn-info.active{
	background-color: #37058a;
}

.appio-pricing-single-wrap:hover{
	-webkit-box-shadow: 0 0 50px rgba(0,0,0,.1);
	box-shadow: 0 0 50px rgba(0,0,0,.1);
}
.appio-pricing-wrap .active>p, .appio-pricing-wrap .active>.pricing-one-sub{
	color: #0378fc;
}
.appio-pricing-wrap .active>p.pricing-3, .appio-pricing-wrap .active>.pricing-one-sub-3{
	color: #37058a;
}
.appio-pricing-single-wrap:hover p, .appio-pricing-single-wrap:hover .pricing-one-sub{
	color: #0378fc;
}
.appio-pricing-single-wrap:hover p.pricing-3, .appio-pricing-single-wrap:hover .pricing-one-sub-3{
	color: #37058a;
}

.appio-pricing-single-wrap p{
	font-size: 14px;
}

.appio-pricing-single-wrap p, .appio-pricing-single-wrap ul li{
	color: rgba(0,0,0,.55);
}
.appio-pricing-single-wrap ul{
	margin: 30px 0;
}
.appio-pricing-single-wrap ul li{
	padding: 5px 0;
}

.appio-pricing-title{
	font-size: 22px;
	font-weight: 300;
}

.pricing-one-sub, .pricing-one-sub-3{
	font-size: 45px;
	line-height: 50px;
	font-weight: 700;
}
.pricing-one-sub small, .pricing-one-sub-3 small{
	font-size: 25px;
}

/*end pricing table two*/


/* -----------------------------------------
			    12. TESTIMONIAL CSS
-------------------------------------------- */

/*start testimonial start*/


.appio-single-testimonial {
	padding: 25px;
	font-size: 14px;
	line-height: 28px;
	border-left: 0;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.appio-single-testimonial:before{
	border-right: 15px solid #EFF0F3;
	border-top: 15px solid #EFF0F3;
	border-left: 15px solid transparent;
	border-bottom: 15px solid transparent;
	content: "";
	position: absolute;
	right: 15px;
	top: -2px;
}
.appio-single-testimonial:after{
	border-right: 15px solid transparent;
	border-top: 15px solid transparent;
	border-left: 15px solid #fff;
	border-bottom: 15px solid #fff;
	box-shadow: -2px 2px 3px 0 rgba(0,0,0,0.2);
	content: "";
	position: absolute;
	right: 15px;
	top: -2px;
}
.appio-single-testimonial .media img {
	width: 85px;
	height: 85px;
	margin-right: 20px;
	border-radius: 4px;

}
.appio-single-testimonial .media-heading {
	font-size: 18px;
	line-height: 26px;
	margin-top: -5px;
	font-weight: 400
}
.appio-single-testimonial .media-body .date {
	font-size: 11px;
	display: block;
	line-height: 15px;
	margin-bottom: 12px;
}
.appio-single-testimonial .appio-single-testimonial footer {
	font-size: 12px;
	color: #7eb31b;
	text-transform: uppercase;
	line-height: 24px;
	font-weight: 400;
}
.appio-single-testimonial footer:before{
	content: '';
}
.appio-single-testimonial footer .rating li {
	display: inline-block;
}
.appio-single-testimonial footer .rating a{
	font-size: 14px;
	color: #ffa200;
	line-height: 16px;
}

/*testimonial indicator*/
.owl-theme .owl-dots .owl-dot span {
	background: #7eb31b;
	width: 30px;
	height: 5px;

}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #FF7E30;
}


/*end testimonial section*/


/* -----------------------------------------
			    13. TEAM CSS
-------------------------------------------- */

/*start team section*/

.appio-team-member {
	position: relative;
	margin-bottom: 30px;
}

.appio-team-member .appio-team-member-wrap {
	position: relative;
	display: block;
	max-width: 500px;
	background: #ffffff;
	margin: 0 auto;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	filter:grayscale(55%);
	-webkit-filter:grayscale(55%);
}
.appio-team-member .appio-team-member-wrap:hover {
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
}

.appio-team-member .appio-team-img {
	position: relative;
}


.appio-team-member .appio-team-img img {
	display: block;
	width: 100%;
}


.appio-team-member .appio-team-info {
	position: relative;
	padding: 20px 15px 10px 15px;
}
.appio-team-member .appio-team-info h3{
	margin-bottom: 0;
	color: #000;
	font-size: 18px;
}
.appio-team-member .appio-team-info .designation {
	font-size: 14px;
	color: #a2a2a2;
}


.appio-team-member .appio-team-info .text {
	position: relative;
	font-size: 13px;
	line-height: 1.9em;
}

.appio-team-member .appio-team-social-link {
	position: relative;
	display: table;
	width: 100%;
	text-align: center;
	vertical-align: middle;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.appio-team-member .appio-team-social-link a {
	position: relative;
	display: table-cell;
	line-height: 20px;
	font-size: 14px;
	color: #999;
	padding: 10px;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}


.appio-team-member .appio-team-social-link a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #0378fc;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}
.appio-team-member .appio-team-social-link a span {
	position: relative;
	z-index: 1;
}

.appio-team-member .appio-team-social-link a:hover{
	color: #ffffff;
	background: #0378fc;
}
.appio-team-member .appio-team-social-link a:hover i{
	color: #fff;
}


/*social link color*/
.facebook{
	color: #3b5998;
}

.twitter{
	color: #00aced;
}
.instagram{
	color: #bc2a8d;
}
.google-plus{
	color: #dd4b39;
}
.linkedin{
	color: #007bb6;
}
.youtube{
	color: #bb0000;
}
.pinterest{
	color: #cb2027;
}
.dribbble{
	color: #ea4c89;
}

/*end team member section*/


/* -----------------------------------------
			  14. DOWNLOAD CSS
-------------------------------------------- */


/*start download one section*/
.download-section, .download-section-2, .download-section-3{
	background: url("../img/download-bg.jpg");
	position: relative;
	background-size: cover;
	z-index: 1;

}
.download-section:after, .download-section-2:after, .download-section-3:after{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
.download-section:after{
	background-image: -moz-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	opacity: 0.9;

}


/*demo-2*/

.download-section-2:after{
	position: absolute;
	background: #AA076B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #61045F, #AA076B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #61045F, #AA076B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	opacity: 0.8;
}

/*demo-3*/
.download-section-3:after{
	background: #000000;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #FF070B, #E5008D, #000000);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #FF070B, #E5008D, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	opacity: 0.7;
}



.appio-download-heading {
	width: 50%;
	margin: 0 auto;
	color: #ccc;
}
.appio-download-heading-1{
	width: 50%;
	margin: 0 auto;
}
.appio-download-heading h2, .color-white{
	color: #fff;
}

.appio-download-btn {
    font-size: 20px;
}
.appio-download-btn{
	font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
    padding: 40px 20px;
    position: relative;
    display: block;
    font-size: 25px;
    line-height: 1.2;
    text-align: center;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.appio-download-info a:hover{
    text-decoration: none;
}

.appio-download-btn i {
    font-size: 50px;
    line-height: 50px;
    display: block;
}
.appio-download-btn small {
    font-size: 13px;
}

.appio-download-btn:hover {
    background: #fff;
    color: #000;
}

/*end download section*/

/*download style demo-3*/

.single-dwonload{
	border-radius: 4px;
	padding: 15px 10px;
	color: #fff;
	box-shadow: 0 -4px 0 #000 inset;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.single-dwonload:hover{
	box-shadow: 0 -2px 0 #000 inset;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	cursor: pointer;
}
.single-dwonload span.download-icon{
	font-size: 35px;
}
.single-dwonload h5{
	font-size: 14px;
	line-height: 28px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	padding: 10px 0;
	margin: 0;
}

.download-bg-1{
	background: #9BCF50;
}

.download-bg-2{
	background: #36C6EB;
}
.download-bg-3{
	background: #FF7E30;
}


/* -----------------------------------------
			 15. BLOG CSS
-------------------------------------------- */


/*start blog section one*/


.appio-blog-left-heading h2 {
	font-weight: 300;
	margin-bottom: 10px;
}


.appio-blog-wrap .appio-blog-left .btn-primary, .appio-blog-wrap .appio-blog-left .btn-info {
	margin-top: 25px;
}


.appio-blog-content {
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 400ms linear;
	transition: all 400ms linear;
	padding: 20px;
	border-radius: 4px;
}

.appio-blog-content h4 {
	font-size: 18px;
}

.appio-blog-content a {
	font-size: 12px;
	display: inline-block;
	text-transform: uppercase;
	margin-top: 20px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.appio-blog-content a:hover {
	color: #202125;
	text-decoration: none;
}
.appio-blog-content a i{
	transition: all .5s ease;
	margin-left: 4px;
}

.appio-blog-content a:hover i{
	padding-left: 10px;
}


.appio-blog-content .user {
	margin-top: 15px;
	padding: 10px 15px 0;
	border-top: 1px solid #ebebeb;
}

.appio-blog-content .user p {
	font-size: 12px;
}

.appio-blog-content .user img{
	height: 30px;
	width: 30px;
	vertical-align: middle;
	border-radius: 50%;
	margin-right: 5px;
}

/* -------------------------------------------
           16. CONTACT FORM CSS
--------------------------------------------- */
.contact, .contact-1, .contact-2, .contact-3{
	background: url("../img/contact-bg.jpg")no-repeat center center / cover;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	z-index: 1;
}
.contact:before, .contact-1:before, .contact-2:before, .contact-3:before{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
.contact:before{
	background-image: -moz-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	opacity: 0.8;
}

/*demo-1*/
.contact-1:before{
	background-image: -moz-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	opacity: 0.8;
}

/*demo-2*/
.contact-2:before{
	background: #AA076B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #61045F, #AA076B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #61045F, #AA076B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	opacity: 0.7;
}

/*demo-3*/

.contact-3:before{
	background: #000000;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #FF070B, #E5008D, #000000);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #FF070B, #E5008D, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	opacity: 0.7;
}


#contact-form .controls .form-group label{
	display: block;
	font-size: 14px;
	margin-bottom: 10px;
	color: #fff;
	text-align: left;
}

.contact-heading h2{
	color: #fff;
}

.contact-heading p{
	color: #ebebeb;
}

/*error message*/

.has-error .help-block{
	background: rgba(0, 0, 0, 0.7);
	color: #ff070b;
	display: inline-block;
	padding: 0 10px;
	border-radius: 4px;
}


/* -----------------------------------------
			    17. SUBSCRIBE CSS
-------------------------------------------- */

/*subscribe form style*/

.subscribe-form {
	text-align: center;
	margin: 40px 0 0 0;
}

.subscribe-form .email {
	background-color: #FDFDFD;
	border: none;
	border-radius: 100px;
	outline: none;
	width: 60%;
	padding: 8px 25px;
	box-shadow: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	transition: all .3s;
	margin-right: 10px;
}


.subscribe-form .email:focus {
	background-color: #FDFDFD;
}


.subscribe-form input {
	color: #222222;
	padding: 0;
}

.subscribe-form .submit-btn {
	font-size: 14px;
	border: none;
	border-radius: 100px;
	margin: 0;
	padding:8px 25px;
	border-color: #0378fc;
	background-color: #0378fc;
	color: #fff;
	outline: none;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	transition: 300ms;
}

.subscribe-form .submit-btn:hover {
	border-color: #0378fc;
	box-shadow: 0 0 1px #0378fc;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	transition: 300ms;
}



/* -----------------------------------------
			 18. FOOTER CSS
-------------------------------------------- */
.footer{
	background-image: -moz-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
}

.footer .social-link a:hover{
	color: #333;
}

/*demo-1*/
.footer-1{
	background-image: -moz-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
}

.footer .social-link a, .footer-1 .social-link a, .footer-2 .social-link a, .footer-3 .social-link a {
	display: inline-block;
	padding: 10px;
	color: #fff;
	transition: all 0.3s ease-in;
}

.footer-1 .social-link a:hover{
	color: #46355C;
}

/*demo-2*/
.footer-2{
	background: #AA076B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #61045F, #AA076B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #61045F, #AA076B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.footer-2 .social-link a:hover{
	color: #dddddd;
}


/*demo-2*/
.footer-3{
	background: #000000;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #FF070B, #E5008D, #000000);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #FF070B, #E5008D, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.footer-3 .social-link a:hover{
	color: #FF070B;
}


.footer-text p{
	font-size: 14px;
	color: #ebebeb;
	padding-top: 10px;
}


/*footer social icon*/
.footer-social-link i.fa{
	font-size: 18px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	border: 1px solid transparent;
	transition: all 0.3s;
	margin: 0;
	padding: 0;
}
.footer-social-link .fa-facebook-square:hover,
.footer-social-link .fa-twitter:hover,
.footer-social-link .fa-pinterest-square:hover,
.footer-social-link .fa-pinterest-square:hover,
.footer-social-link .fa-skype:hover,
.footer-social-link .fa-dribbble:hover{
	color: #000;
	border: 1px solid #fff;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

/*end footer one section*/


/* -----------------------------------------
			19. OFFCANVAS CSS
-------------------------------------------- */
.sidenav {
	background: #212121;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
	display: block;
	font-size: 16px;
	font-weight: 400;
	height: 100%;
	right: 0;
	position: fixed;
	overflow: auto;
	transform: translate(262px, 0);
	transition: transform .3s;
	top: 0;
	width: 256px;
	z-index: 100;
}

.sidenav.show {
	transform: translate(0, 0);
}

.sidenav-brand {
	background-image: -moz-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(255, 45, 85) 100%);
	color: #000;
	font-size: 24px;
	font-weight: bold;
	line-height: 32px;
	padding: 8px 30px 20px;
}

.sidenav-header {
	background: transparent;
	border-bottom: 1px solid #424242;
	color: #757575;
	font-size: 19px;
	line-height: 32px;
	margin: 0;
	padding: 16px 24px 15px;
}

.sidenav-header small {
	display: block;
	font-size: 14px;
	line-height: 16px;
}

.sidenav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.sidenav-menu li {
	display: block;
	padding: 8px 0;

}

.sidenav-menu a {
	background: transparent;
	color: #fff;
	display: block;
	line-height: 20px;
	padding: 4px 30px;
	text-decoration: none;
	transition: all 1s;
}

.sidenav-menu a.close-icon i{
	display: inline-block;
	background: #fff;
	padding: 5px 10px;
	color: #000;
	position: absolute;
	right: 0;
	top: 0;
}
.sidenav-menu a:hover{
	background: none;
	margin: 0;
	color: #FF7E30;
	text-decoration: none;
}

.sidenav-menu a.active {
	color: #FF7E30;
}


.sidenav-overlay {
	background: rgba(0, 0, 0, .5);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
}

.sidenav-no-scroll {
	overflow: hidden !important;
}



/* -----------------------------------------
			 21. BACK TO TOP CSS
-------------------------------------------- */
#toTop {
	position: fixed;
	bottom: 66px;
	right: 0;
	text-decoration: none;
	color: #fff!important;
	font-size: 12px;
	display: none;
	font-weight: bold;
	text-align: center;
	z-index: 100;
	cursor: pointer;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}

#toTop span {
	display: block;
	position: relative;
	background: #0378fc;
	padding: 5px 12px;
}


/* -----------------------------------------
			20. PRELOADER CSS
-------------------------------------------- */
#preloader{
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}

.preloader{
	background-image: -webkit-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(193, 15, 65) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(88,86,214) 0%, rgb(193, 15, 65) 100%);
}
/*demo-1*/
.preloader-1{
	background-image: -moz-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(76,217,100) 0%, rgb(88,86,214) 100%);
}

/*demo-2*/
.preloader-2{
	background: #AA076B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #61045F, #AA076B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #61045F, #AA076B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/*demo-3*/
.preloader-3{
	background: #000000;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #FF070B, #E5008D, #000000);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #FF070B, #E5008D, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

#status,
.appio-preloader {
    background-image: url(../img/preloder.gif);
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
}

.appio-preloader {
    background: none;
    left: 0;
    margin: 0;
    text-align: center;
    top: 65%;
}
/*end preloader css*/