

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


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

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, 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, 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: #f4473a;
	border: 2px solid #f78223;
	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;
}

.tab-content>.tab-pane {
    
    padding: 20px;
}
/*list*/

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

/*link*/
a {
    color: #f4473a;
    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; 
}
/*jogindar custom css*/

.box{ border:1px solid #CCC; border-radius:6px;}
.box h3{ margin-top:20px; color:#C60;}
.box h3 span{ font-size:12px; color:#ccc;}

.padd{ padding:0px!important;}
.plus{ line-height:50px;}
.transfer{ line-height:18px; font-size: 13px;}
.transfer b{ font-weight:bold; color:#000;}
.price{ margin:25px 0px 25px 0px; text-align:center;}
.price span{ color:#F90; font-weight:bold; font-size:20px;}
.buy{ margin:auto; text-align:center; padding-bottom:20px;}
.buy a{ margin:auto; background:#333; color:#FFF; padding: 5px 10px;border-radius: 6px;text-transform: uppercase;}
.buy a:hover{ text-decoration:none; background:#f4473a; color:#000;}
.links{border-right: 1px solid #585858; text-align:center;}
.links ul{}
.links ul li a{ color:#ccc; font-size: 14px; line-height: 30px;}
.nav-tabs {
    border: 1px solid #f68123;
    padding: 5px!important;
    border-radius: 5px;
    margin-bottom: 10px!important;
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 22px!important; margin-top: 15px;
}
.package li a
{
	text-decoration: none !important;
}
.package li a:hover
{
	color:#f4473a !important;
}

.nav-tabs>li>a {
    margin-right: 0px!important;
    line-height: 1.42857143;
    /* border: 1px solid transparent; */
    border-radius: 4px!important;margin-top: 1px!important; width: 110px;
    text-align: center;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #fff!important;
    cursor: default;
    background-color:#f4473a !important;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}


/*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: #f4473a;
	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: 30px;
}
.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: 100px 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: #f4473a;
}
.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(244,71,58) 0%, rgb(244,71,58) 100%);
    background-image: -webkit-linear-gradient( -29deg, rgb(223, 217, 217) 0%, rgb(231, 227, 227) 100%);
    background-image: -ms-linear-gradient( -29deg, rgb(244,71,58) 0%, rgb(244,71,58) 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: #000000;
    font-size: 12px;
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    
	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: #000000;
    border: 1px solid #fff;
	background: #fff;
	border-radius: 4px;
}
.navbar-default .navbar-nav>li>a:focus {
	color:#f4473a;
}

.navbar-brand{
	padding: 4px 0 4px 15px;
}
	.navbar-brand img
	{
		width: 150px;
		height: 50px;
		margin-top:10px;
	}

/*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: #fff;
	background-image: -moz-linear-gradient(90deg, #fff 0%, #fff 100%);
	background-image: -webkit-linear-gradient(90deg, #fff 0%,#fff 100%);
	background-image: -ms-linear-gradient(90deg, #fff 0%, #fff 100%);
	color: #f4473a;
	width: 40px;
	height: 40px;
	border: 0;
}

.navbar-toggle:hover {
	background-color: #f4473a;
	background-image: -moz-linear-gradient(90deg, #f4473a 0%, #f4473a 100%);
	background-image: -webkit-linear-gradient(90deg, #f4473a 0%,#f4473a 100%);
	background-image: -ms-linear-gradient(90deg, #f4473a 0%, #f4473a 100%);
	color: #fff;
}






.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: 3px 0;
	}
	.navbar.sticky{
		padding: 10px 0;
	}
	.navbar-nav {
		padding-top: 12px;
	}
}


/*03.2: slider css*/

.slider-content{
	background-image: url("../img/slider-1.jpg");
	background-size: cover;
	width:100%;
	background-attachment: fixed;
	
	
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
	
	
}
.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(255, 255, 255) 0%, rgb(23, 27, 31) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(255, 255, 255) 0%, rgb(23, 27, 31) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(255, 255, 255) 0%, rgb(23, 27, 31) 100%);
	opacity: 0.9;

}


/*demo-1*/
/*
.overlay-1{
	background-image: -moz-linear-gradient( -29deg, rgba(132, 68, 16, 0.75) 0%, rgb(23, 27, 31) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgba(132, 68, 16, 0.75) 0%, rgb(23, 27, 31) 100%);
	
	background-image: -ms-linear-gradient( -29deg, rgba(132, 68, 16, 0.75) 0%, rgb(23, 27, 31) 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 !important;
    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
{
	background-color: beige;
}
.appio-feature-section p
{
	color: #000000 !important;
	text-align: center !important;
}
.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: #f4473a
}
.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-section
{
	background-color: beige;
}
.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; text-align: center;
}
.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;
}

/*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: #f4473a;
}


/*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: rgba(0,0,0,.075);
    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: #f4473a
}


/* -----------------------------------------
			 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;
}



*--------------------------------------new footer-------------------------*/

.footer-top {
  background-color:#000000 !important;
}
.footer-top .col-md-6 {
  position: relative;
}
.footer-top .col-md-6:after {
  content: "";
  background: #2f2f2f;
  height: 100%;
  width: 1px;
  left: 0;
  top: 0;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .footer-top .col-md-6:after {
    display: none;
  }
}
.footer-top .col-md-6:first-child:after {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top .col-md-6:nth-child(3):after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top .col-md-6:nth-child(3) .footer-block {
    padding-left: 0;
  }
}

.footer-logo {
  margin-bottom: 28px;
}
.footer-dec {
  color: #ffffff !important;
  font-size: 16px;
  padding-right: 10px;
}
.footer-block {
  position: relative;
  padding-left: 20px;
}
.footer-block .footer-list li a:hover
{
	color: #f4473a;
	text-decoration: none;
}
@media only screen and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-block {
    padding-left: 0;
  }
}
.footer-block > h5 {
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-block > h5 {
    margin-bottom: 25px;
  }
}
.footer-list li a {
  color: #ffffff;
  font-weight: bold;
}

.footer-social-link {
  margin-top: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-social-link {
    margin-top: 25px;
  }
}
.footer-social-link li {
  display: inline-block;
  margin-right: 10px;
}
.footer-social-link li:last-child {
  margin-right: 0;
}
.footer-social-link li a {
  border: 2px solid #ff5951;
  height: 35px;
  width: 35px;
  line-height: 30px;
  font-size: 14px;
  text-align: center !important;
  display: block;
  border-radius: 50%;
  color: #fff;
  margin-top: 30px !important;
}
.footer-social-link li a:hover {
  background: #ff5951;
  color: #ffffff;
}

.footer-courses li {
  padding-top: 5px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-courses li:last-child {
  margin-bottom: 0;
}
.footer-courses .courses-image {
  min-width: 70px;
  margin-right: 10px;
}
.footer-courses .courses-image img {
  border-radius: 10px;
}
.footer-courses .courses-nifo h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}
.footer-courses .courses-nifo p {
  color: #6d6d6d;
}

.newsletter-wrap p {
  color: #ffffff;
  margin-bottom: 20px;
  margin-left: 20px;
}

.newsletter-input-box {
  position: relative;
}
.newsletter-input-box input {
  width: 100%;
  background: #2a2a2a;
  border-radius: 5px;
  border: none;
  color: #ffffff;
  padding: 5px 50px 5px 10px;
  font-size: 12px;
}
.newsletter-input-box .newsletter-button {
  position: absolute;
  top: 2px;
  right:0px;
  border: none;
  background: #ff5951;
  color: #ffffff;
  border-radius: 0 5px 5px 0;
  padding: 4.5px 14.2px;
  width:40px;
  left: 243px;
  height:32px;
}
@media(max-width:308px)
{
 .newsletter-input-box .newsletter-button
	{
		margin-left: -23px;
	}
}
.newsletter-input-box .newsletter-button:hover {
  background: #333;
}

.footer-bottom {
  background: #424242;
}
.footer-bottom .copy-right span {
  color: #ff5951;
}


/* -----------------------------------------
			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(254, 64, 50) 0%, rgb(254,64,50) 100%);
	    background-image: -webkit-linear-gradient( -29deg, rgb(234, 226, 225) 0%, rgb(236, 228, 227) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(254, 64, 50) 0%, rgb(254,64,50) 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:#f4473a;
	text-decoration: none;
}

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


.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: #f4473a;
	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(132, 68, 16) 0%, rgb(23, 27, 31) 100%);
	background-image: -webkit-linear-gradient( -29deg, rgb(132, 68, 16) 0%, rgb(23, 27, 31) 100%);
	background-image: -ms-linear-gradient( -29deg, rgb(132, 68, 16) 0%, rgb(23, 27, 31) 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/logo.png);
    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%;
}

ul{ padding:0px!important; margin:0px!important;}
.dropdown-menu li{ margin-right:0px!important; padding: 0px;}
.dropdown-menu li a
{
background:#fff;
color: #000000 !important;
color:#FFF;
margin-top:1px;
padding: 7px 0px 7px 7px;}

/*end preloader css*/

@media (min-width:769px){
   .navbar-nav>li:hover>.dropdown-menu{
  display: block!important;}
  
 
}

@media (min-width: 200px) { 
   
 .slider-content{
	background-image: url("../img/slider-1.jpg")!important;
	background-size: cover;
	background-position: 50% 50%;
	background-attachment: fixed;
}  
}

 @media (max-width: 1500px)
{ 
   
 .slider-content{
	background-image: url("../img/slider-1.jpg")!important;
	background-size: cover;
	background-position: 50% 50%;
	background-attachment: fixed;
}  
}
/*----------------------------------------------------------------------------------------------------------------------------------------*/


/*----------------------------top-row-----------------------------------*/

.top_row{
	padding: 0px 6px 0px 6px;
	height: 50px;
	transition: 0.2s;
}
.top_row.bottomRow{
	padding: 11px 6px;
	background: #fff;
	transition: 2s;
	box-shadow: 0 3px 5px rgba(0,0,0,.2);
}
.top_row{padding: 2px 6px 4px 6px;height: auto;}
.top_row p{text-align: center;line-height: 20px;font-size: 11px;}
.top_row.bottomRow {
    padding: 1px 6px 3px;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
	background: #F5F5F5;
    position: relative;
    z-index: 1;
}
@media only screen and (min-width:768px) and (max-width:1024px) and (orientation:portrait) {
.top_row p {font-size: 10px;}
}
.fixed-header{padding-top: 113px;}
.fixed-header header{height: 113px;}
.fixed-header .top_row.FirstRow{
	height: 0px;
	transform: scale(0);
	overflow: hidden;
}
/*
.SitesHeading h4
{
	margin-left:-200px;
	margin-top: 100px;
}
*/
.techList{padding-left: 28px !important;}
.techList span
{
	margin-left: -250px;
	margin-top: 130px !important;
	font-size: 17px;
	color: black;
}
.tech
{
font-weight: 500;
}
.top-img
{
	margin-top: -50px !important;
}
.hero-img
{
	margin-top: -100px !important;
	height: 550px;
}
@media(max-width:612px)
	{
		.hero-img
		{
			display:none;
		}
	}
	
.clubList {
    max-width: 130rem;
    margin-left: 15px !important;
    padding-right: 2rem;
	margin-top: -15px;
}
.clubList li {
	float: left;
	width: 5%;
	height: 50px;
	display: flex;
	align-items: center;
}
.clubList a {
	margin: 0 auto;
	border-radius: 100%;
	position: relative;
	cursor: pointer;
}
.clubList a img {
	height: 35px;
	transition: 0.2s !important;
	color: #fff;
}
.clubList li a:hover img {
	transform: scale(1.25) !important;
}
.dispNone{display: none;}
.headerBg a{
	float: left;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.clubList a img {height: 25px;}


/*-----------------------------end top---------------------------------------------------------------*/
/*-----------------------------our process section-----------------------------*/

.development_pro {
    background-color: #fff;
   
    background-repeat: no-repeat;
   
    background-size: cover;
}
/*
@media only screen and (min-width:360px) and (max-width:736px) and (orientation:portrait) {
development_pro
#carousel-reviews{min-height: 725px;}
h3.block-title::before {
display:none !important;
}
*/
	}
@media only screen and (min-width:320px) and (max-width:767px)
{
.development_pro{display:none;}	
.pro-section{display:block;}
}
.process_video 
{
    padding: 0 0px 50px;
    position: relative;
    z-index:0;	
}
.paddinA{padding:0px;}
/*.underlineB{width: 22%;padding-top: 0px;padding-bottom:21px;border-top: 2px solid #009AC0;}*/
.underlineB{float:right;}
.underlineA{width: 22%;}
.video-style{
	height:auto;
}
.pro-section{display:none;}
/* -----------------------------------------end process section-------------------------*/

/*----------why choose us------	offer-item css------------*/

.why-choose-us h2,p
	{
		color:#fff !important;
		text-align: justify;
	}
 .why-choose-us .appio-center-heading h2
   {
	margin-top: 200px;
   }
.offer_item {

  text-align: center;
  position: relative;
  cursor: pointer;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.offer_item i:before {
  font-size: 60px;
  line-height: 70px;
  color:#6a1b9a;
}
.offer_item h3 {
  font: 500 20px/30px "Poppins", sans-serif;
  color:black;
  padding: 30px 0px 12px;
  margin-bottom: 0px;
}
.offer_item p {
  font: 400 15px/26px "Open Sans", sans-serif;
  color: #797979;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
.offer_item a {
  font: 500 16px/26px "Poppins", sans-serif;
  color: #fff;
  text-decoration: underline;
  display: block;
  margin-top: 30px;
}
.offer_item .offer_content, .offer_item .offer_hover {
  transition: transform .6s ease,-webkit-transform .6s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.offer_item .offer_content {
  padding: 30px 18px 48px;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  background: rgba(0,0,0,0.2);
  border: 1px solid #fff;
  height:300px !important;
}
.offer_item .offer_hover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 30px !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  background:#ef5350;
}
.offer_item .offer_hover p
{
  color: #fff;
  padding: 10px;
}
.offer_item:hover .offer_content {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}
.offer_item:hover .offer_hover {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
.inner_flip h3
{
color: #fff;
}
iframe
{
margin-top: -15px;
}
/*--------------------------end why choose us-------------------------------*/
/*request_contact_area css
======================================*/
.request_content h2
{
	margin-top: -50px;
}
.request_contact_area {
  position: relative;
  margin-bottom: -60px;
  z-index: 2;
}
.request_contact_area .request_inner_area .request_content {
  color: #fff;
  padding: 85px 52px 0px 0px;
}
.request_contact_area .request_inner_area .request_content:before {
  content: "";
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  right: 0px;
  background: url("../img/request-bg.jpg") no-repeat scroll right 0;
  z-index: -1;
  -webkit-box-shadow: 0px 3px 68px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 3px 68px 0px rgba(0, 0, 0, 0.11);
}
@media (min-width: 1921px) {
  .request_contact_area .request_inner_area .request_content:before {
    background-size: cover;
  }
}
.request_contact_area .request_inner_area .request_content:after {
  content: "";
  width: 400%;
  height: 100%;
  top: 0;
  right: 0;
  background:#7e57c2;
  opacity: 0.95;
  z-index: -1;
  position: absolute;
}
.request_contact_area .request_inner_area .request_content h2 {
  font: 600 31px/47px "Poppins", sans-serif;
  margin-bottom: 0px;
  color: #fff;
}
.request_contact_area .request_inner_area .request_content p {
  font: 400 18px/28px "Poppins", sans-serif;
  padding-top: 25px;
  margin-bottom: 0px;
	color: #fff !important;
}
.request_contact_area .request_inner_area .request_form {
  padding: 58px 35px;
  background: #26252b;
}
.contact_us_form .form-group {
  margin-bottom: 15px;
}
.contact_us_form .form-group .form-control {
  font: 400 16px/17px "Poppins", sans-serif;
  color: #bdbcc3;
  height: 50px;
  border: 1px solid #222027;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0px 20px;
  background: #323139;
}
.contact_us_form .form-group .form-control.placeholder {
  color: #bdbcc3;
}
.contact_us_form .form-group .form-control:-moz-placeholder {
  color: #bdbcc3;
}
.contact_us_form .form-group .form-control::-moz-placeholder {
  color: #bdbcc3;
}
.contact_us_form .form-group .form-control::-webkit-input-placeholder {
  color: #bdbcc3;
}
.contact_us_form .form-group textarea.form-control {
  height: 174px;
  resize: none;
  padding-top: 22px;
}
.contact_us_form .form-group:last-child {
  margin-bottom: 0px;
}
.contact_us_form .submit_btn {
  padding: 2px 43px 0px;
  background: #fff;
  border-radius: 45px;
  display: inline-block;
  font: 600 16px/46px "Poppins", sans-serif;
  color: #272727;
  margin-top: 15px;
  border: 0px;
}
.contact_us_form .submit_btn:before {
  background:#6a1b9a;
  
}
.contact_us_form .submit_btn:hover {
  color:#f4473a;
  border:1px solid white; 
    
}

/*============ request_contact_area_two css ===========*/
/*----------------------------query button css------------------------------------*/
.query-link
	{
		position: fixed;
		top: 50%;
		left:92.5% !important;
		background-color: #f4473a;
		padding:10px;
	    width:150px; 
		border-radius: 50px;
		transform: rotate(450deg) !important;
		z-index: 99999;
	}
	 a .query-btn
	{
		text-decoration: none;
		color: #fff;
	}
	.query-btn i
	{
		margin-left: 25px;
	}
	
 
	.query-btn:hover
	{
		background-color: #ff5252;
	}
/*---------------------------------mega menu----------------------------*/
.mega-menu
	{
		width:1000px;
		height:auto;
/*		overflow: hidden;*/
		background-color: fff;
		margin-right:-450px !important;
		padding: 30px !important;
	}
	mega-menu-ad span
	{
		margin-left: 50px;
	}	
/*--------------------------------------mediaquery---------------------------------*/
@media (max-width:612px)
{
	.partner
	{
		margin-left: 50px !important;
	}
	.partner-form input
	{
		width: 100%;
	}
	 .request_content
	{
		text-align: center !important;
/*		padding: 20px !important;*/
	}
	.request_content p
	{
		font-size: 15px !important;
		text-align: center !important;
	}
}

@media (max-width:428px)
{
	.partner
	{
		margin-left: -30px !important;
	}
	.partner-form input
	{
		width: 100%;
	}
	 .request_content
	{
		text-align: center !important;
/*		padding: 20px !important;*/
	}
	.request_content p
	{
		font-size: 15px !important;
		text-align: center !important;
	}
	.newsletter-input-box
	{
		margin-left: -20px !important;
	}
	.newsletter-input-box input
	{
		width: 80%;
	}
	.newsletter-input-box button
	{
		margin-left: -50px !important;
	}
}
@media (max-width:408px)
{
.newsletter-button
	{
		margin-left: -230px !important;
	}
.query-link
	{
		display: none;
	}
}
@media (max-width:343px)
{
	.newsletter-button
	{
		margin-left:-20px !important;
	}
}
@media (max-width:307px)
{
.newsletter-input-box
	{
		margin-left: -20px !important;
	}
	.newsletter-input-box input
	{
		width: 80%;
	}
	.newsletter-button
	{
		margin-left: -50px !important;
	}
}
@media (max-width:273px)
{
	. appio-center-heading h2
	{
		font-size: 10px !important;
	}
}
@media (max-width:273px)
{
	.appio-center-heading h2
	{
		font-size: 20px !important;
	}
	.cd-words-wrapper
	{
		font-size:22px !important;
	}
}
	
@media(max-width:282px)
{
	.appio-pricing-section .btn
	{
		width: 80%;
	}
	.appio-pricing-section  a
	{
		font-size: 12px !important;
	}
}
@media(max-width:413px)
	{
	.partner
		{
			margin-left: 30px !important;
		}
	}
	@media(max-width:240px)
	{
		.newsletter-button
		{
			margin-left: -105px !important;
		}
	}
	@media(max-width:1225px)
	{
	 	.newsletter-input-box
	{
		width: 70%;
	}
		.newsletter-button
		{
			margin-left: -70px !important;
		}
		.query-link
		{
			z-index: 9999 !important;
			margin-left:-10px;
			
		}
    }
@media (max-width:1196px)
	{
	 	.newsletter-input-box
	{
		width: 70%;
	}
		.newsletter-button
		{
			margin-left: 78px !important;
		}
}
@media (max-width:987px)
{
	
	 	.newsletter-input-box
	{
		width: 70%;
	}
	.newsletter-button
		{
			margin-left:250px !important;
		}
	.query-link
		{
			margin-left:-40px;
		}
}

@media (max-width:776px)
{
.query-link
 {
  margin-left:-50px;
 }
}
@media (max-width:671px)
{
.cd-words-wrapper
{
font-size: 40px !important;
}
}
@media (max-width:752px)
{
.newsletter-button
 {
  margin-left:225px !important;
 }
}
@media (max-width:587px)
{
.newsletter-button
 {
  margin-left:109px !important;
 }
}
@media (max-width:502px)
{
.newsletter-button
 {
  margin-left:17%!important;
 }
}