/* =====================================
Template Name: ezPay
Author Name: Surv Technologies
Author URL: http://survtechnologies.co.ke
Description: ezPay is an ecommerce appp for vending consumer sevices such as airtime purchase for networks such as Telkom, Airtel and Safaricom, Allows users to share funds to their wallets or other M-PESA users, and purchase Kenya power Tokens.
Version: 1.0
========================================*/

/*======================================
[ CSS Table of contents ]
01. Global CSS
02. Header CSS
	+ Logo
	+ Main Menu
	+ Button
	+ Header Style 2
	+ Header Style 3
	+ Header Sticky
03. Hero Area CSS
	+ Hero Area Style 1
	+ Hero Area Style 2
	+ Hero Area Style 3
04. About App CSS
05. App Features CSS
06. video Showcase CSS
07. App Screenshot CSS
08. Countdown CSS
09. Testimonials CSS
10. App Pricing CSS
11. Tab Features CSS
12. News/Blog CSS
	+ Latest Blog
	+ Blog Archive
	+ Blog Sidebar
	+ Blog Single
13. App Available CSS
14. Contact CSS
15. Brands CSS
16. Footer CSS
========================================*/

/*===========================
	01. Global CSS
=============================*/
* {
    margin: 0;
    padding: 0;
}
html,body {
	height: 100%;
	margin: 0;
}
body {
    font-family: 'Poppins', sans-serif;
	position:relative;
    font-size: 14px;
    font-weight: 400;
	line-height:25px;
    color: #2E303C;
}
h1,h2,h3,h4,h5,h6{
	margin:0;
	font-weight:700;
}
p {
    margin: 0;
	color:#555;
}
a,button{
	cursor:pointer;
}
ul {
    list-style: none;
    margin-bottom: 0;
}
a,button{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3 ease;
	transition: all 0.3 ease;
	font-weight:500;
}
button,a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    border: none;
    outline: none;
}
img {
	max-width: 100%;
}
select:focus,
select:active {
    box-shadow: 0;
    border: 0;
    outline: 0
}
#scrollUp {
	position: relative;
	border-radius: 100%;
	bottom: 30px;
	color: #fff;
	height: 45px;
	font-size: 22px;
	right: 30px;
	line-height: 45px;
	text-decoration: none;
	border:none;
	text-align: center;
	width: 45px;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3 linear;
	transition: all 0.3 linear;
	-webkit-box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.07);
}
#scrollUp:hover{	
	background:transparent;
	box-shadow:0px 0px 30px 5px rgba(0, 0, 0, 0.15);
}
#scrollUp:before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3 ease;
	transition: all 0.3 ease;
	border-radius:100%;
	opacity:0;
	visibility:hidden;
}
#scrollUp:hover:before{
	opacity:1;
	visibility:visible;
}
#scrollUp span{
	position:relative;
	z-index:9999;
}
.overlay{
	position:relative;
}
.overlay:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#2E303C;
	opacity:0.9;
	content:"";
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
}
.table {
	display: table;
	width: 100%;
	height: 100%;
}
.table-cell {
	display: table-cell;
	vertical-align: middle;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: transparent;
    text-decoration: none;
}
.mobile-menu{
	display:none;
}
.navbar {
    margin-bottom: 0;
    border: 0;
}
.section {
	padding: 130px 0;
	position: relative;
}
.section-title {
	padding: 0 90px;
	margin-bottom: 30px;
	position: relative;
}
.section-title h2 {
	font-size: 30px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	text-transform: capitalize;
}
.section-title h2::before {
	position: absolute;
	width: 70px;
	height: 4px;
	content: "";
	left: 0;
	bottom: -2px;	
}
.section-title h2 span{
	font-weight:500;
}
.section-title .title-bg {
	position: absolute;
	top: -4px;
	width: 100%;
	font-size: 75px;
	font-weight: 800;
	color: #eee;
	text-align: center;
	text-transform: uppercase;
	left: 0;
}
.section-title .title-bg.dark{
	opacity:0.5;
}
/* White */
.section-title.white{}
.section-title.white .title-bg {
	color: #bbb;
	opacity: 0.1;
}
.section-title.white h2 {
	color: #fff;
}
.section-title.white p {
	color: #bbb;
}
/* Text Left */
.section-title.text-center h2:before{
	left: 50%;
	margin-left: -35px;
}
.button .btn {
	color: #fff;
	padding: 15px 40px;
	display: inline-block;
	text-align: center;
	font-weight: 500;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3 linear;
	transition: all 0.3 linear;
	border-radius: 3px;
	border: none;
	font-size: 14px;
	text-transform: capitalize;
	position: relative;
}
.button .btn:hover{
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}
/* Bordered Style */
.button .btn.bordered{
	background: transparent;
	z-index: 50;
	color: #2E303C;
}
.button .btn.bordered:hover{
	color:#fff;
}
.button .btn.bordered::before {
	border-radius: 3px;
	content: "";
	height: calc(100% + 4px);
	left: -2px;
	position: absolute;
	top: -2px;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3 linear;
	transition: all 0.3 linear;
	width: calc(100% + 4px);
	z-index: -2;
}
.button .btn.bordered:after {
	background: #fff none repeat scroll 0 0;
	border-radius: 3px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3 linear;
	transition: all 0.3 linear;
	width: 100%;
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	transform:scale(1);
	z-index: -1;
}
.button .btn.bordered:hover:after{
	opacity:0;
	transform:scale(0);
}
.button .btn.radius{
	border-radius:50px;
}
.button .btn.radius.bordered:before,
.button .btn.radius.bordered:after{
	border-radius:100px;
}
/* Primary Style */
.button .btn.bordered.bg{
	color: #fff;
}
.button .btn.bordered.bg:hover{
	color:#2E303C;
}
.button .btn.bordered.bg:after {
	opacity:0;	
	-webkit-transform:scale(0);
	-moz-transform:scale(0);
	transform:scale(0);
}
.button .btn.bordered.bg:hover:after{
	opacity:1;
	transform:scale(1);
}
.button .btn.radius{
	border-radius:50px;
}
.button .btn.radius.bg:before,
.button .btn.radius.bg:after{
	border-radius:100px;
}
select{
    -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
/*Remove bootstrap tab css*/
.nav-tabs > li > a {
    border: 0
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    border: 0;
    outline: 0
}
.nav-tabs {
    border: 0
}
.nav-tabs > li > a:hover {
    border: 0
}
/* Form Control */
.form-control:focus {
	border-color: #ccc;
	box-shadow: 0 0 0 ;
	outline: 0 none;
}
/* Breadcrumb */
.breadcrumb {
	text-align: center;
	background: url('images/breadcrumb-bg.html');
	position: relative;
	background-repeat: no-repeat;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	margin: 0;
	padding: 170px 0 100px;
	border-radius: 0px;
}
.breadcrumb::before {
	opacity: 0.95;
}
.breadcrumb ul{
	margin-bottom:15px;
}
.breadcrumb ul li{
	display:inline-block;
}
.breadcrumb ul li a {
	color: #fff;
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 400;
}
.breadcrumb li + li::before {
	color: #fff;
	content: "/";
	padding:0 5px;
	font-family: 'FontAwesome';
	content: "\f105";
	font-size:15px;
}
.breadcrumb ul li.active a {
	color: #fff;
	border-radius: 5px;
}
.breadcrumb h1 {
	color: #fff;
	text-transform: capitalize;
	font-weight: 700;
	font-size: 45px;
	position: relative;
}
/* Banner Title */
.banner-title {
	text-align: center;
	background: url('images/banner-title-bg.html');
	position: relative;
	background-repeat: no-repeat;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	margin: 0;
	padding: 170px 0 100px;
}
.banner-title::before {
	opacity: 0.95;
}
.banner-title h1 {
	color: #fff;
	text-transform: initial;
	font-weight: 700;
	font-size: 36px;
	position: relative;
	line-height: 50px;
}
/* Preloader */
.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.spinner {
	position: absolute;
	top: 50%; /* centers the loading animation vertically one the screen */
	left: 50%; /* centers the loading animation horizontally one the screen */
	width: 3.75rem;
	height: 1.25rem;
	margin: -0.625rem 0 0 -1.875rem; /* is width and height divided by two */ 
	text-align: center;
}

.spinner > div {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	background-color: #fff;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0); }
	40% { -webkit-transform: scale(1.0); }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	} 40% { 
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
		transform: scale(1.0);
	}
}

/* App Skin */  
.demo-option {
	position: fixed;
	display: block;
	z-index: 999999;
	padding: 50px 0;
	width: 200px;
	min-height: 200px;
	top: 47%;
	background: #fff;
	box-shadow: 3px 0px 50px 2px rgba(0,0,0,0.14);
	margin-top: -150px;
	left: -200px;
}
.demo-option .icon {
	width: 25px;
	height: 25px;
	background: #968A8C;
	margin-top: -13.5px;
	border-radius: 0px;
	top: 50%;
	line-height: 25px;
	cursor: pinter;
	font-size: 16px;
	position: absolute;
	bottom: -24px;
	right: -50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 32px;
	border-radius: 0 5px 5px 0px;
	background: #fff;
	text-align: center;
	cursor: pointer;
	-webkit-box-shadow: 6px 0px 9px -3px rgba(0, 0, 0, 0.32);
	-moz-box-shadow: 6px 0px 9px -3px rgba(0, 0, 0, 0.32);
	box-shadow: 6px 0px 9px -3px rgba(0, 0, 0, 0.32);
}
.demo-option .icon i{
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
}
.demo-option .single-option {
	margin-bottom: 15px;
	border-bottom: 1px solid #ebebeb;
	padding: 0 10px 15px 10px;
}
.demo-option .single-option:last-child {
	border: none;
	margin: 0;
	padding-bottom: 0px;
}
.demo-option .single-option h4 {
	text-transform: capitalize;
	font-size: 16px;
	margin-bottom: 15px;
	text-align: left;
}
/* Skin */
.demo-option .single-option.skin span {
	width: 32px;
	height: 32px;
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}
.demo-option .single-option.skin span.skin1 {
	background: #f26798;
	background: -webkit-linear-gradient(to right, #f26798 0%, #8c7ae6 100%);
	background: linear-gradient(to right, #f26798 0%, #8c7ae6 100%);
}
.demo-option .single-option.skin span.skin2 {
	background: #ed6ea0;
	background: -webkit-linear-gradient(to right, #ed6ea0 30%, #ec8c69 100%);
	background: linear-gradient(to right, #ed6ea0 30%, #ec8c69 100%);
}
/* .demo-option .single-option.skin span.skin3 {
	background: #50c9c3;
	background: -webkit-linear-gradient(60deg, #50c9c3 0%, #488f95 100%);
	background: linear-gradient(60deg, #50c9c3 0%, #488f95 100%);
} */
.demo-option .single-option.skin span.skin4 {
	background: #f26798;
	background: -webkit-linear-gradient(0deg, #4776e6 0%, #8e54e9 100%);
	background: linear-gradient(0deg, #4776e6 0%, #8e54e9 100%);
	margin: 0;
}
.demo-option .single-option.layout .single-layout {
	display: inline-block;
}
.demo-option .single-option.layout img {
	width: 55px;
	height: 42px;
	border: 3px solid #ebebeb;
}
/*===========================
	End Global CSS
=============================*/

/*===========================
	02. Header CSS
=============================*/
.header {
	position: absolute;
	width: 100%;
	z-index: 999;
	top: 0;
	padding: 10px 0;
	background: #fff;
	-webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.22);
	-moz-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.22);
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.22);
}
/* Logo */
.header .logo {
	margin-top: 16px;
	display: inline-block;
}
.header .logo .text-logo {
	text-align: center;
}
.header .text-logo a {
	color: #fff;
	text-transform: capitalize;
	font-size: 24px;
	font-weight: 700;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
	display: block;
	position:relative;
	z-index:1;
}
.header .text-logo a::before {
	position: absolute;
	left: -4px;
	top: 12px;
	width: 12px;
	height: 12px;
	line-height: 12px;
	content: "";
	border-radius: 100%;
	opacity: 0.4;
	z-index: -1;
}
.header .text-logo a span{
	font-weight:500;
}
/* Main Menu */
.header .main-menu {
	position: relative;
	float: right;
}
.header .navbar {
	float: left;
	padding: 0;
	margin-right: 120px;
}
.header .nav {
	display: block;
}
.header .nav li {
	position: relative;
	margin-right: 20px;
	display: inline-block;
}
.header .nav li:last-child{
	margin:0;
}
.header .nav li a {
	text-transform: capitalize;
	color: #666;
	font-size: 14px;
	position: relative;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: block;
	background: transparent;
	padding: 15px 0;
}
.header .nav li a i {
	text-align: center;
	display: inline-block;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -7px;
}
.header .nav li.active a i,
.header .nav li:hover a i{
	opacity:1;
	visibility:visible;
}
/* Dropdown Menu */
.header .nav .dropdown {
	position: absolute;
	left: 0;
	width: 220px;
	z-index: 150;
	background: #fff;
	top: 55px;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	-webkit-box-shadow: 0 10px 32px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 10px 32px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0 10px 32px 1px rgba(0, 0, 0, 0.3);
	border-top: 2px solid;
}
.header .nav li:hover .dropdown{
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
	opacity:1;
	visibility:visible;
}
.header .nav .dropdown li {
	display: block;
	width: 100%;
	margin: 0;
	float: none;
}
.header .nav li .dropdown li a {
	color: #555;
	padding: 5px 15px;
	font-weight: 400;
	text-transform: capitalize;
	position: relative;
}
.header .nav li .dropdown a::before{
	display:none;
}
.header .nav li .dropdown li:hover a {
	color: #fff;
}
/* Download Button */
.header .download {
	right: 0;
	top: 14px;
	position: absolute;
}
.header .download a {
	border-radius: 100%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	padding: 0;
	color: #fff;
	font-size: 14px;
	border: 1px solid transparent;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.header .download a:hover{
	border-color:#bbb;
}
.header .download a.android{
	background:#65AE43;
}
.header .download a.android:hover{
	background:transparent;
	color:#65AE43;
}
.header .download a.windows{
	background:#259AD2;
}
.header .download a.windows:hover{
	background:transparent;
	color:#259AD2;
}
.header .download a.apple {
	background: #bbb;
}
.header .download a.apple:hover{
	background:transparent;
	color:#bbb;
}
/* Style 2 */
.header.style2 {
	box-shadow: none;
	background: transparent;
}
.header.style2 .text-logo a {
	color: #fff;
	background:none;
	-webkit-background-clip: initial !important;
	-webkit-text-fill-color: initial;
}
.header.style2 .text-logo a::before{
	background:#fff;
}
.header.style2 .nav {
	display: block;
	margin-right: 30px;
}
.header.style2 .nav li a {
	color: #eee;
}
.header.style2 .nav li.active a,
.header.style2 .nav li:hover a{
	color:#fff;
}
.header.style2 .nav li a:before{
	display:none;
}
.header.style2 .nav li .dropdown li a {
	background: transparent;
	color: #777;
}
.header.style2 .nav li .dropdown li a:hover{	
	color:#fff;
}
.header.style2 .button {
	position: absolute;
	top: 9px;
	right: 0;
}
.header.style2 .button .btn {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	padding: 7px 18px;
	font-size: 13px;
}
.header.style2 .button .btn i{
	margin-right:5px;
}
.header.style2 .button .btn:hover{
	background:#fff;
}
/* Header Style 3 */
.header.style3 .nav {
	display: block;
	margin-right: 40px;
}
.header.style3 .social {
	position: absolute;
	right: 0;
	top: 14px;
	padding-left: 20px;
	border-left: 1px solid #ebebeb;
}
.header.style3 .social ul {}
.header.style3 .social ul li {
	display: inline-block;
}
.header.style3 .social ul li a {
	color: #666;
	border: 1px solid #ebebeb;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	border-radius: 100%;
}
.header.style3 .social ul li:hover a{
	color:#fff;
	border-color:transparent;
}
/* Header Sticky */
.header.sticky.active {
	position: fixed;
	padding: 5px 0;
	width: 100%;
	-webkit-transition: all 0.3s ease -moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.22);
	-moz-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.22);
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.22);
}
.header.sticky.active .text-logo a {
	-webkit-text-fill-color: initial;
	color: #fff !important;
}
.header.sticky.active .text-logo a::before{
	background:#fff;
}
.header.sticky.active .nav li a {
	color: #eee;
	background: initial;
	-webkit-text-fill-color: initial;
}
.header.sticky.active .nav li.active a,
.header.sticky.active .nav li:hover a{
	color:#fff;
}
.header.sticky.active .nav li .dropdown li a {
	color: #555;
}
.header.sticky.active .nav li .dropdown li:hover a{
	color:#fff;
}
.header.sticky.active .nav li .dropdown {
	top: 60px;
	background: #fff;
}
.header.sticky.active .download a{
	border-color:#fff;
	color:#fff;
	background:transparent;
}
.header.sticky.active .download a:hover{
	background:#fff;
}
.header.sticky.active .download a.android:hover{
	color:#65AE43;
}
.header.sticky.active .download a.windows:hover{
	color:#259AD2;
}
.header.sticky.active .download a.apple:hover{
	color:#bbb;
}
.header.style3.sticky.active .social ul li a{
	color:#fff;
}
.header.style3.sticky.active .social ul li:hover a{
	background:#fff;
}
/*===========================
	End Header CSS
=============================*/

/*===========================
	03. App Hero CSS
=============================*/
.app-hero {
	position: relative;
	height: 680px;
	background: #fff;
	overflow: hidden;
}
.app-hero::before, 
.app-hero::after {
	-webkit-clip-path: circle(50% at 89.53% 0.85%);
    clip-path: circle(50% at 89.53% 0.85%);
	content: "";
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}
.app-hero::before {
	opacity: 0.95;
	z-index: 5;
}
.app-hero::after {
	background-image: url('images/promo-video.jpg');
	background-size: cover;
	background-position: center center;
}
.app-hero .app-hero-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	background: transparent;
	height: 680px;
	position: relative;
	z-index: 10;
}
.app-hero .app-hero-content{
	margin-top:75px;
}
.app-hero .app-hero-content h1 {
	font-size: 42px;
	line-height: 52px;
	text-transform: capitalize;
	color: #2E303C;
}
.app-hero .app-hero-content h1:before{
	position:absolute;
	left:0;
	bottom:0;
}
.app-hero .app-hero-content h1 span {
	font-weight: 400;
	display: block;
	font-size: 20px;
	color: #555;
	padding: 0;
	margin-bottom:5px;
}
.app-hero h1 .cd-words-wrapper {
	display: block;
	font-size: 20px;
	text-transform: uppercase;
	font-weight:400;
	line-height:30px;
	background:transparent !important;
	color:#666;	
}
.app-hero h1 .cd-words-wrapper b{
	font-weight: 400;
}
.app-hero h1 .cd-words-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
	height: 100%;
}
.app-hero .app-hero-content p {
	color: #777;
	margin-top: 20px;
}
.app-hero .app-hero-content .button {
	margin-top: 30px;
}
.app-hero .app-hero-content .btn {
	background: #fff;
	color: #2E303C;
	border: 2px solid transparent;
}
.app-hero .app-hero-content .btn:last-child{
	margin:0;
}
.app-hero .app-hero-content .btn:hover{
	background:transparent;
	border-color:#fff;
	color:#fff;
}
.app-hero .app-hero-content .btn.tp{
	background:transparent;
	color:#fff;
	border-color:#fff;
}
.app-hero .app-hero-content .btn.tp:hover{
	border-color:transparent;
	background:#fff;
	color:#2E303C;
}
.app-hero .app-hero-content .inline.middle {
	margin: 0 15px;
	color: #2E303C;
	font-size: 16px;
	text-transform: uppercase;
}
.app-hero .app-hero-content .video i{
	margin-right:5px;
}
.app-hero .app-image {
	margin-top: 120px;
	margin-left: 70px;
}
.app-hero .play-btn {
	z-index: 9;
	width: 55px;
	height: 55px;
	font-size: 25px;
	line-height: 55px;
	color: #fff;
	border-radius: 50%;
	padding-left: 5px;
	text-align: center;
	position: absolute;
	top: 284px;
	left: 183px;
}
/* Animate Shapes */
.a-shapes span {
  display: block;
  position: absolute;
}
.a-shapes span i {
  display: inline-block;
  max-width: 100%;
  font-size:22px;
  height: auto;
  opacity:0.5;
  -webkit-transition:all 0.3s ease;
  -moz-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.a-shapes:hover span i{
	opacity:1;
}
.a-shapes span:nth-child(1) {
	left: 0;
	top: 30%;
}
.a-shapes span:nth-child(1) i {
	color:#F26798;
}
.a-shapes span:nth-child(2) {
	left: 30.6%;
	top: 30.2%;
}
.a-shapes span:nth-child(2) i {
	color:#ed6ea0;
}
.a-shapes span:nth-child(3) {
	top: 34%;
	left: 64%;
}
.a-shapes span:nth-child(3) i {
	color:#50c9c3;
}
.a-shapes span:nth-child(4) {
	right: 0;
	top: 39%;
}
.a-shapes span:nth-child(4) i {
	color:#667eea;
}
.a-shapes span:nth-child(5) {
	left: 45%;
	bottom: 20.6%;
}
.a-shapes span:nth-child(5) i {
	color:#C7BF51;
}
.a-shapes span:nth-child(6) {
	right: 10%;
	bottom: 30%;
}
.a-shapes span:nth-child(6) i {
	color:#691CFF;
}
.a-shapes span:nth-child(7) {
	left: 0;
	top: 62%;
}
.a-shapes span:nth-child(7) i {
	color:#C7BF51;
}

/* Hero Slider */
.app-hero .hero-slider {
	position: relative;
	background: rgba(0, 0, 0, 0) url("images/phone-frame.png") no-repeat scroll center center;
	padding: 99px 68px 96px 66px;
	margin-top: 75px;
}
.app-hero .slider-image {
	text-align: center;
}
.app-hero .slider-image img {
	width: auto;
	display: inline-block;
	cursor: pointer;
}
/* Slider Meta */
.app-hero .owl-dots {
	position: absolute;
	bottom: 58px;
	left: 50%;
	margin-left: -31.5px;
}
.app-hero .owl-dots .owl-dot {
	margin-right: 5px;
	display: inline-block;
}
.app-hero .owl-dots .owl-dot:last-child{
	margin:0;
}
.app-hero .owl-dots .owl-dot span {
	width: 8px;
	height: 8px;
	position: relative;
	background: transparent;
	margin: 0;
	background: #bbb;
	display: block;
	border-radius: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.app-hero .owl-dots .owl-dot span::before {
	position: absolute;
	left: -2px;
	bottom: -2px;
	content: "";
	background: transparent;
	width: 12px;
	height: 12px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 100%;
	border: 1px solid;
	line-height: 12px;
	opacity:0;
	visibility:hidden;
}
.app-hero .owl-dots .owl-dot.active span::before,
.app-hero .owl-dots .owl-dot:hover span::before{
	opacity:1;
	visibility:visible;
}
/* App animation */
.app-hero .waves-block .waves {
	position: absolute;
	width: 450px;
	height: 450px;
	background: rgba(0, 0, 0, 0.15);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	border-radius: 100%;
	-webkit-animation: waves 3s ease-in-out infinite;
	animation: waves 3s ease-in-out infinite;
	top: 50%;
	margin-top: -225px;
	left: 50%;
	margin-left: -225px;
}
.app-hero .waves-block .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.app-hero .waves-block .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.app-hero .waves-block .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
/* Theme Animations */
@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
/* App Hero style 2*/
.app-hero.style2 {
	position: relative;
	background-image: url('images/caskback.co.ke%20kashbak.co.ke.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.app-hero.style2:before,
.app-hero.style2:after{
	clip-path:initial;
}
.app-hero.style2::after {
	content: "";
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: url(images/shape.png) no-repeat scroll center bottom;
	background-size: auto auto;
	background-size: cover;
	z-index: 5;
}
.app-hero.style2 .app-hero-content{
	margin:0;
}
.app-hero.style2 .small {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 15px;
	padding-bottom: 15px;
	display: inline-block;
	position: relative;
}
.app-hero.style2 .small::before {
	content: "";
	width: 30%;
	height: 2px;
	background: #fff;
	left: 0;
	position: absolute;
	bottom: -1px;
}
.app-hero.style2 h1 {
	color: #fff;
	font-size: 40px;
}
.app-hero.style2 p {
	color: #fff;
}
.app-hero.style2 .app-hero-block{
	margin:0;
}
.app-hero.style2 .button .btn {
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	padding: 15px 25px;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.app-hero.style2 .button .btn:hover i{
	background:#fff;
}
.app-hero.style2 .button .btn i{
	margin-right:5px;
	width:24px;
	height:24px;
	line-height:24px;
	display:inline-block;
	color:#fff;
	border-radius:100%;
}
.app-hero.style2 .signle-mockup {
	position: absolute;
	top: 140px;
	left: 0;
	width: 100%;
	height: 100%;
}
.app-hero.style2 .signle-mockup img {
	width: 42%;
}
.app-hero.style2 .signle-mockup.two {
	left: 250px;
}
/* App Hero style 3*/
.app-hero.style3:after{
	display:none;
}
.app-hero.style3 #particles-js{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:4;
}
.app-hero.style3::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: -;
	bottom: 0;
	background: url(images/shape2.png) no-repeat scroll center bottom;
	background-size: contain;
	z-index: 4;
	opacity: 1;
	clip-path: none;
}
.app-hero.style3 .app-hero-block{
	z-index:4;
	position:relative;
}
.app-hero.style3 h1 {
	font-weight: 400;
	color: #2E303C;
}
.app-hero.style3 h1 span {
	font-weight: 700;
	color: inherit;
	display: inline-block;
	margin: initial;
	font-size: inherit;
	background-clip: border-box;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
}
.app-hero.style3 p{
	color:#666;
}
.app-hero.style3 .button .btn {
	margin-right: 15px;
}
.app-hero.style3 .button .btn:last-child{
	margin:0;
}
.app-hero.style3 .button .btn.icon {
	background-clip: border-box;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
	padding: 0;
	box-shadow: none;
	color: #fff;
	font-size: 40px;
	border: none;
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	transform:scale(1);
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
	
}
.app-hero.style3 .button .btn.icon:hover{
	transform:scale(0.9);
}
/*===========================
	End App Hero CSS
=============================*/

/*===========================
	05. App Features CSS
=============================*/
.app-features {
	background: #2E303C;
}
.app-features .app-single-feature {
	position: relative;
	margin-top: 30px;
	text-align: center;
	padding: 60px 20px;
	background: #fff;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
	overflow:hidden;
}
.app-features .app-single-feature::before {
	position: absolute;
	top: 0px;
	left: 45%;
	right: 45%;
	content: "";
	height: 3px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-top: 10px solid #2E303C;
	border-left: 17px solid transparent;
	border-right: 17px solid transparent;
	-webkit-transform:translateY(-20px);
	-moz-transform:translateY(-20px);
	transform:translateY(-20px);
}
.app-features .app-single-feature:hover:before,
.app-features .app-single-feature.active:before{
	opacity:1;
	visibility:visible;
	transform:translateY(0px);
}
.app-features .app-single-feature .bg-number {
	position: absolute;
	top: 32px;
	left: -42px;
	font-size: 70px;
	opacity: 0.3;
	color: #bbb;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.app-features .app-single-feature:hover .bg-number{
	left:0;
	opacity:1;
}
.app-features .app-single-feature i {
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
	text-align: center;
	color: #fff;
	display: inline-block;
	font-size: 50px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.app-features .app-single-feature h4 {
	font-size: 16px;
	margin: 15px 0;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.app-features .app-single-feature p{
	color:#777;
}
/*===========================
	End App Features CSS
=============================*/


/*===========================
	04. About App CSS
=============================*/
.about-app {
	background: #fff;
	position: relative;
}
.about-app .section-title {
	margin: 0px 0 20px;
	padding: 0;
	padding-right: 100px;
}
.about-app .section-title h2 {
}
.about-app .section-title .title-bg {
	text-align: left;
	opacity:0.5;
}
.about-app .about-feature-list{}
.about-app .single-list {
	margin-top: 25px;
}
.about-app .single-list i {
	text-align: center;
	border-radius: 100%;
	background-clip: border-box;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
	font-size: 40px;
}
.about-app .single-list h4 {
	font-size: 15px;
	margin: 10px 0;
	font-weight: 500;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.about-app .single-list p {
	line-height: 20px;
	font-size: 13px;
}
.about-app .button {
	margin-top: 30px;
}
.about-app .button .btn {
	margin: 2px 20px 2px 2px;
}
.about-app .button .btn:last-child{
	margin-right:0px;
}
.about-app .button .btn i{
	margin-right:5px;
}
/* App Image */
.about-app .app-img{
	position:relative;
}
/*===========================
	End About App CSS
=============================*/

/*===========================
	06. Video Showcase CSS
=============================*/
.video-showcase {
	background: #f7f7f7;
}
.video-showcase .section-title{
	padding:0;
}
.video-showcase .title-bg {
	text-align: left;
}
.video-showcase::before, 
.video-showcase::after {
	-webkit-clip-path: circle(58.5% at 86.62% 98.67%);
	clip-path: circle(58.5% at 86.62% 98.67%);
	content: "";
	top: 0;
	right: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}
.video-showcase::before {
	opacity: 0.9;
	z-index: 33;
}
.video-showcase::after {
	background-image: url('images/promo-video.jpg');
	background-size: cover;
	background-position: center center;
}
.video-showcase .video-area {
	z-index: 600;
}
.video-showcase .video-area::before {
	background:#000;
	opacity:0.5;
}
.video-showcase .video-area::after {
	position: absolute;
	left: -10px;
	top: 10px;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -3;
	opacity: 0.3;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.video-showcase .video-area:hover:after{
	left:0;
	top:0;
	opacity:1;
}
.video-showcase .video-area a {
	width: 80px;
	height: 80px;
	line-height: 80px;
	border-radius: 100%;
	color: #fff;
	font-size: 30px;
	position: absolute;
	display: inline-block;
	background:#fff;
	z-index: 22;
	left: 50%;
	top: 50%;
	margin: -40px 0 0 -40px;
	text-align: center;
}
.video-showcase .video-area a:hover{
	background:transparent;
	color:#fff;
}
.video-showcase .video-area a:before{
	position:absolute;
	left:0;
	top:0;
	width: 80px;
	height: 80px;
	line-height: 80px;
	border-radius:100%;
	content:"";
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
	opacity:0;
	visibility:hidden;
}
.video-showcase .video-area a:hover:before{
	opacity:1;
	visibility:visible;
}
.video-showcase .video-area a i{
	z-index:50;
	position:relative;
}
.video-showcase .video-img img {
	display: inline-block;
	width: 100%;
}
/*===========================
	End Video Showcase CSS
=============================*/

/*===========================
	07. App Screenshot CSS
=============================*/
.app-screenshot {
	background: #fff;
}
.app-screenshot .gallery-main {
	padding-top: 80px;
}
.app-screenshot .mobile-mockup {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.app-screenshot .mobile-mockup img {
	max-width: 300px;
	z-index: 20;
	position: relative;
}
.app-screenshot .slider-button.button {
	text-align: center;
	width: 100%;
	margin-top: 80px;
	margin-bottom: 2px;
}
.app-screenshot .slider-button .btn {
	margin-right: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	font-size: 20px;
	border-radius: 100%;
}
.app-screenshot .slider-button .btn:last-child{
	margin:0;
}
.swiper-3d-gallery {
  width: 100%; 
}
.swiper-3d-gallery .swiper-slide img {
  width: 100%;
  height: 100%; 
}
.app-screenshot .section-title {
	padding: 0;
	margin: 150px 0 0;
}
.app-screenshot .section-title .title-bg{
	text-align:left;
}
.app-screenshot .button.bottom{
	margin-top:20px;
}
.app-screenshot .button.bottom .btn i{
	margin-right:5px;
}
/*===========================
	End App Screenshot CSS
=============================*/

/*===========================
	08. Countdown CSS
=============================*/
.countdown {
	background-image: url('images/caskback.co.ke%20kashbak.co.ke.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 50px 0 80px;
}
.countdown::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.9;
}
.countdown .count-inner {
	border-bottom: 1px solid #ebebeb;
	padding: 50px 0 80px;
}
.countdown .single-count {
	position: relative;
	text-align: center;
	margin-top: 30px;
}
.countdown .single-count i {
	color: #fff;
	font-size: 45px;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: block;
}
.countdown .single-count:hover i{
	-webkit-transform:scale(1.2);
	-moz-transform:scale(1.2);
	transform:scale(1.2);
}
.countdown .info {
	margin-top: 10px;
}
.countdown .info h3 {
	font-size: 22px;
	color: #fff;
}
.countdown .info p {
	font-size: 15px;
	color: #fff;
}
/*===========================
	End Countdown CSS
=============================*/

/*===========================
	09. Testimonials CSS
=============================*/
.testimonials {
	position: relative;
	padding: 0;
}
.testimonials .test-nav {
	position: absolute;
	width: 43%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
}
.testimonials .test-nav a.pager-item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 299;
  transition:all 0.3s ease;
}
.testimonials .test-nav a.pager-item img {
	width: 90px;
	height: 90px;
	-webkit-transform:scale(0.8);
	-moz-transform:scale(0.8);
	transform:scale(0.8);
	border-radius: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.testimonials .test-nav a.pager-item:hover img,
.testimonials .test-nav a.pager-item.active img {
	transform:scale(1);
	padding:5px;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.21);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.21);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.21);
}
.testimonials .test-nav a.pager-item:nth-child(1) {
	top: 38%;
	left: 44%;
}
.testimonials .test-nav a.pager-item:nth-child(2) {
	top: 15%;
	left: 12%;
}
.testimonials .test-nav a.pager-item:nth-child(3) {
	top: 15%;
	left: auto;
	right: 15%;
}
.testimonials .test-nav a.pager-item:nth-child(4) {
	top: auto;
	left: 10%;
	bottom: 24%;
}
.testimonials .test-nav a.pager-item:nth-child(5) {
	top: auto;
	left: 49%;
	bottom: 15%;
}
.testimonials .test-nav a.pager-item:nth-child(6) {
	top: 50%;
	right: 10%;
	left: auto;
}
.testimonials .testimonials-slider {
	padding: 120px 0px;
}
.testimonials .testimonial-text i {
	font-size: 50px;
	margin-bottom: 14px;
	display: inline-block;
	-webkit-background-clip: text !important;;
	-webkit-text-fill-color: transparent;
}
.testimonials .testimonial-text p {
  font-size: 15px;
}
.testimonials .testimonial-text h4 {
	margin: 15px 0 0;
	font-size: 20px;
	font-weight: 600;
}
.testimonials .testimonial-text h4 span {
	color: #555;
	display: block;
	font-size: 15px;
	margin-top: 5px;
	font-weight: 400;
}
/* Slider Meta */
.testimonials-slider .bx-wrapper {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  margin-bottom: 0;
}
.testimonials-slider .bx-controls-direction{
	overflow: hidden;
	margin-top: 15px;
}
.testimonials-slider .bx-wrapper .bx-controls-direction a {
	text-indent: 0;
	background-image: none;
	margin: 0;
	margin-right: 15px;
	border-radius: 100%;
	text-align: center;
	display: inline-block;
	width: 30px;
	height: 30px;
	left: initial;
	line-height: 30px;
	font-size: 20px;
	background: transparent;
	z-index: 50;
	color: #2E303C;
	float: left;
	top: initial;
	position: relative;
	left: 0;
	margin: 2px 12px 2px 2px;
}
.testimonials-slider .bx-wrapper .bx-controls-direction a:last-child{
	margin-right:0;
}
.testimonials-slider .bx-wrapper .bx-controls-direction a:hover{
	color:#fff;
}
.testimonials-slider .bx-wrapper .bx-controls-direction a::before {
	border-radius: 100%;
	content: "";
	height: calc(100% + 4px);
	left: -2px;
	position: absolute;
	top: -2px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3 ease;
	transition: all 0.3 ease;
	width: calc(100% + 4px);
	z-index: -2;
}
.testimonials-slider .bx-wrapper .bx-controls-direction a::after {
	background: #fff none repeat scroll 0 0;
	border-radius: 100%;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3 ease;
	transition: all 0.3 ease;
	width: 100%;
	z-index: -1;
}
.testimonials-slider .bx-wrapper .bx-controls-direction a:hover:after{
	opacity:0;
}
/*===========================
	End Testimonials CSS
=============================*/

/*===========================
	10. App Pricing CSS
=============================*/
.app-pricing {
	background: #f7f7f7;
}
.app-pricing .single-price {
	background: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow:0px 0px 30px 5px rgba(0, 0, 0, 0.07);
	-moz-box-shadow:0px 0px 30px 5px rgba(0, 0, 0, 0.07);
	box-shadow:0px 0px 30px 5px rgba(0, 0, 0, 0.07);
	border-radius: 5px;
	text-align: center;
	position: relative;
	margin-top: 40px;
	border-radius: 0px;
	overflow: hidden;
}
.app-pricing .single-price .icon-bg {
	font-size: 100px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -50px;
	margin-top:-50px;
	color: #bbb;
	opacity: 0.3;
}
/* Price Head */
.app-pricing .price-head {
	position: relative;
	background: #fff;
}
.app-pricing .title {
	position: relative;
	display: block;
	font-size: 20px;
	padding: 20px 0;
}
.app-pricing .title i{
	margin-right:5px;
	-webkit-background-clip: text !important;;
	-webkit-text-fill-color: transparent;
}
.app-pricing .price {
	padding: 25px 0;
}
.app-pricing .amount {
	line-height: 40px;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
}
.app-pricing .single-price .price span {
	font-size:15px;
	font-weight:500;
}
/* Price List */
.app-pricing .price-list {
	text-align: center;
	position: relative;
	padding: 20px 0;
}
.app-pricing .price-list li {
	color: #555;
	position: relative;
	text-transform: capitalize;
	line-height: 40px;
}
.app-pricing .price-list li:last-child{
	margin:0;
}
.app-pricing .price-list i {
	font-size: 13px;
	text-align: center;
	margin-right: 10px;
}
/* Price Bottom */
.app-pricing .price-bottom {
	padding: 25px 0;
	position: relative;
}
.app-pricing .price-bottom:before {
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}
.app-pricing .price-bottom .btn{
	box-shadow:none;
}
.app-pricing .price-bottom .btn:hover{
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}
.app-pricing .single-price:hover .btn:after{
	opacity:0;
	visibility:hidden;
}
.app-pricing .single-price:hover .btn{
	color:#fff;
}
/*===========================
	End App Pricing CSS
=============================*/

/*===========================
	11. Tab Features CSS
=============================*/
.tab-features {
	background: #fff;
}
.tab-features .tab-main{
	margin-top:30px;
}
/* Tab Menu */
.tab-features .nav-main {
	margin-bottom: 40px;
	text-align: center;
}
.tab-features .nav-main .nav-tabs {
	display: block;
	text-align: left;
	background: #fff;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.07);
}
.tab-features .nav-main .nav-tabs li{
	display:inline-block;
}
.tab-features .nav-main .nav-tabs li a {
	background: transparent;
	position: relative;
	text-transform: capitalize;
	font-weight: 600;
	padding: 15px 20px;
	border: none;
	border-radius: 0px;
	color: #2E303C;
	position:relative;
	z-index:3;
}
.tab-features .nav-main .nav-tabs li a:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:0%;
	height:100%;
	border-radius:0px;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	transition:all 0.5s ease;
	opacity:0;
	z-index:-3;
}
.tab-features .nav-main .nav-tabs li a.active:before,
.tab-features .nav-main .nav-tabs li a:hover:before {
	width:100%;
	opacity:1;
}
.tab-features .nav-main .nav-tabs li a.active,
.tab-features .nav-main .nav-tabs li a:hover{
	color: #fff;
}
.tab-features .nav-main .nav-tabs li a i {
	margin-right: 10px;
	line-height: 30px;
	display: inline-block;
	font-size: 15px;
}
.tab-features .text-content p {
	margin-bottom: 15px;
}
.tab-features .text-content p:last-child{
	margin-bottom:0px;
}
.tab-features .features-list li {
	font-weight: 400;
}
.tab-features .features-list li i{
	margin-right:10px;
}
.tab-features .button {
	margin-top: 25px;
}
.tab-features .btn {
	margin-right: 15px;
}
.tab-features .btn:last-child{
	margin:0;
}
.tab-features .btn:hover{
	color:#fff;
}
/*===========================
	End Tab Features CSS
=============================*/

/*======================================
	12. News/Blog CSS
========================================*/ 
.news-blog {
	background: #f7f7f7;
}
.news-blog .single-blog {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.news-blog .blog-slider{
	margin-top:30px;
}
.news-blog .blog-head {
	position: relative;
	overflow:hidden;
}
.news-blog .blog-head img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3slinear;
	transition: all 0.3s linear;
	z-index:3;
}
.news-blog .blog-head:hover img {
	-webkit-transform:scale(1.3);
	-moz-transform:scale(1.3);
	transform:scale(1.3);
}
.news-blog .blog-bottom {
	position: relative;
	padding: 20px;
	top: -30px;
	background: #fff;
	z-index: 333;
	margin: 0 10px;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.07);
}
.news-blog .blog-inner h4 {
	font-size: 18px;
	line-height: 26px;
	position: relative;
	margin-bottom: 10px;
}
.news-blog .blog-inner h4 a {
	color: inherit;
	cursor: pointer;
	text-transform: inherit;
	font-weight: 600;
}
.news-blog .meta {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ebebeb;
}
.news-blog .meta span{
	display:inline-block;
	margin-right:10px;
}
.news-blog .meta span:last-child{
	margin-right:0px;
}
.news-blog .meta span,
.news-blog .meta span a {
	color: #555;
	font-weight: 400;
	font-size: 13px;
}
.news-blog .meta span i{
	margin-right:5px;
}
.news-blog .blog-bottom .button{
	margin-top:10px;
}
.news-blog .blog-bottom .btn {
	z-index: 333;
	box-shadow: none;
	padding: 10px 20px;
	font-size:13px;
}
/* Slider Meta */
.news-blog .owl-dots {
	text-align: center;
	margin-top: 10px;
}
.news-blog .owl-dots .owl-dot {
	margin-right: 5px;
	display: inline-block;
}
.news-blog .owl-dots .owl-dot:last-child{
	margin:0;
}
.news-blog .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	position: relative;
	background: transparent;
	margin: 0;
	background: #bbb;
	display: block;
	border-radius: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.news-blog .owl-dots .owl-dot span::before {
	position: absolute;
	left: -2px;
	bottom: -2px;
	content: "";
	background: transparent;
	width: 16px;
	height: 16px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 100%;
	border: 1px solid;
	line-height: 12px;
	opacity: 0;
	visibility: hidden;
}
.news-blog .owl-dots .owl-dot.active span::before,
.news-blog .owl-dots .owl-dot:hover span::before{
	opacity:1;
	visibility:visible;
}
/* Blog Archive */
.news-blog.archive {
	padding: 80px 0 130px;
}
.news-blog.archive .single-blog {
	margin-top: 50px;
	box-shadow: none;
	margin-bottom:0px;
}
/* Pagination */
.news-blog.archive .pagination-main {
	margin: 40px 0 0;
}
.news-blog.archive .pagination {
	display: block;
	padding-left: 0;
	border-radius: 0px;
}
.news-blog.archive .pagination li {
	display: inline-block;
	margin-right: 2px;
}
.news-blog.archive .pagination li:last-child{
	margin:0;
}
.news-blog.archive .pagination li a {
	background: #fff;
	display: block;
	width: 45px;
	height: 45px;
	color: #2E303C;
	line-height: 45px;
	text-align: center;
	position:relative;
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
}
.news-blog.archive .pagination li.active a,
.news-blog.archive .pagination li:hover a{
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}
.news-blog.archive .pagination li.active a,
.news-blog.archive .pagination li:hover a{
	color:#fff;
}
.news-blog.archive .pagination li a span,
.news-blog.archive .pagination li a i {
	position: relative;
	z-index: 40;
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
}
.news-blog.archive .pagination li.prev:hover a i, 
.news-blog.archive .pagination li.next:hover a i {
	color:#fff;
}
.news-blog.archive .pagination li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.news-blog.archive .pagination li.active a::before,
.news-blog.archive .pagination li:hover a::before{
	opacity:1;
	visibility:visible;
}
/* Blog Single */
.news-blog.single{}
.news-blog.single .single-blog{
	background:#fff;
}
.news-blog.single .blog-info{
	padding:20px;
}
.news-blog.single .blog-info h1 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
}
.news-blog.single .blog-info h1 a{
	color:inherit;
	font-weight:inherit;
}
.news-blog.single .blog-info p{
	margin-bottom:20px;
}
.news-blog.single .blog-info blockquote {
	background: #f7f7f7;
	padding: 35px;
	border-left: 20px solid transparent;
	font-size: 15px;
	color: #555;
	font-weight: 500;
	letter-spacing: 0.5px;
}
.news-blog.single .image-gallery{
	margin-bottom:20px;
}
.news-blog.single .single-image{
	position:relative;
	overflow:hidden;
}
.news-blog.single .single-image img {
	width:100%;
}
.news-blog.single .single-image .caption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	text-align: center;
	padding: 0;
	line-height: 40px;
	font-weight: 500;
	-webkit-transform:translateY(40px);
	-moz-transform:translateY(40px);
	transform:translateY(40px);
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
	opacity:0;
	visibility:hidden;
}
.news-blog.single .single-image:hover .caption{
	opacity:1;
	visibility:visible;
	transform:translateY(0px);
}
/* Share Post Arrow */
.news-blog.single .share-p-arrow {
	overflow: hidden;
	padding: 20px;
	border-top: 1px solid #ebebeb;
}
.news-blog.single .s-share {
	float: left;
}
.news-blog.single .s-share li {
	position: relative;
	margin-right: 5px;
	display: inline-block;
}
.news-blog.single .s-share li a {
	width: 28px;
	height: 28px;
	line-height: 28px;
	border-radius: 100%;
	color: #fff;
	text-align: center;
	display: block;
}
.news-blog.single .s-share li:hover a{
	background:#fff;
	color:#666;
	-webkit-box-shadow:0px 0px 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:0px 0px 15px rgba(0, 0, 0, 0.3);
	box-shadow:0px 0px 15px rgba(0, 0, 0, 0.2);
} 
.news-blog.single .s-share li a:before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border-radius:100%;
	z-index:1;
	opacity:1;
	visibility:visible;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.news-blog.single .s-share li:hover a:before{
	opacity:0;
	visibility:hidden;
}
.news-blog.single .s-share li a i{
	z-index:2;
	position:relative;
}
.news-blog.single .prev-next {
	float: right;
}
.news-blog.single .prev-next li{
	display:inline-block;
	margin-right:15px;
}
.news-blog.single .prev-next li:last-child{
	margin:0;
}
.news-blog.single .prev-next li a {
	text-align: center;
}
.news-blog.single .prev-next li a:hover{
	color:#2E303C;
}
.news-blog.single .prev-next li a i {
	margin-right: 5px;
	font-size: 20px;
	position: relative;
	top: 2px;
}
/* Author Details */
.news-blog.single .author-info {
	background: #fff;
	padding: 40px 20px;
	overflow: hidden;
	border-top: 1px solid #ebebeb;
}
.news-blog.single .author-left {
	float: left;
	text-align: center;
	border-right: 1px solid #e7e7e7;
	padding-right: 25px;
	margin-right: 25px;
	width: 22%;
}
.news-blog.single .author-left h4 span.name {
	-webkit-background-clip: text !important;;
	-webkit-text-fill-color: transparent;
	font-size: 18px;
	font-weight: 700;
}
.news-blog.single .author-left img {
	width: 100px;
	height: 100px;
	border-radius: 100%;
	display: inline-block;
}
.news-blog.single .author-left h4 {
	font-size: 18px;
	margin-top: 10px;
}
.news-blog.single .author-left h4 span {
	display: block;
	font-size: 14px;
	color: #666;
	font-weight: 500;
}
.news-blog.single .author-left h4 span.name{
	margin-bottom:5px;
}
.news-blog.single .author-left p a{
	color:#333;
}
.news-blog.single .author-left p i{
	width:25px;
	height:25px;
	line-height:25px;
	font-size:13px;
	border-radius:100%;
	border:1px solid #e7e7e7;
	margin-right:5px;
}
.news-blog.single .author-content {
	float: left;
	width: 70%;
}
.news-blog.single .author-content .button {
	margin-top: 10px;
}
.news-blog.single .author-content .button .btn {
	font-size: 13px;
	padding: 12px 24px;
}
/* Comments */
.news-blog.single .comments .comment-title {
	position: relative;
	text-align: left;
	font-size: 18px;
	color: #2C2D3F;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
}
.news-blog.single .comments .comment-title:before{
	position: absolute;
	width: 70px;
	height: 4px;
	content: "";
	left: 0;
	bottom: -2px;
}
.news-blog.single .comments {
	background: #fff;
	padding: 20px;
	margin-top: 50px;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.news-blog.single .comments:hover{
	-webkit-box-shadow: 0 0 15px rgba(61, 61, 61, 0.20);
	-moz-box-shadow: 0 0 15px rgba(61, 61, 61, 0.20);
	box-shadow: 0 0 15px rgba(61, 61, 61, 0.20);
}
.news-blog.single .comments .single-comment {
	position: relative;
	padding: 0;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.news-blog.single .comments .single-comment:last-child{
	margin:0;
	padding:0;
	border:none;
}
.news-blog.single .comments .single-comment img{
	height:70px;
	width:70px;
	border-radius:100%;
	position:absolute;
	left:0;
}
.news-blog.single .single-comment .content {
	padding-left: 95px;
}
.news-blog.single .single-comment .content h4 {
	color: #2E303C;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
.news-blog.single .single-comment .content span {
	display: block;
	font-size: 12px;
	color: #666;
	margin: 0;
	margin-bottom: 5px;
}
.news-blog.single .single-comment .content p {
	color: #666;
	font-weight: 300;
}
.news-blog.single .single-comment .content .button {
	margin-top: 15px;
}
.news-blog.single .single-comment .content .button a {
	background: #fff;
	color: #fff;
	padding: 5px 22px;
	margin-right: 10px;
	text-transform: capitalize;
	font-weight: 400;
	box-shadow: none;
	border-radius: 50px;
	font-size:13px;
}
.news-blog.single .single-comment .content .button a:hover{
	color:#2E303C;
}
.news-blog.single .single-comment .content .button a:before,
.news-blog.single .single-comment .content .button a:after {
	border-radius: 50px;
}
.news-blog.single .single-comment.reply{
	margin-left:100px;
}
/* Comments Form */
.news-blog.single .comments-form {
	margin-top: 50px;
}
.news-blog.single .comments-form h2 {
	font-size: 20px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #ebebeb;
	position:relative;
}
.news-blog.single .comments-form h2::before {
	position: absolute;
	width: 70px;
	height: 4px;
	content: "";
	left: 0;
	bottom: -2px;
}
.news-blog.single .form {
	margin-top: 30px;
}
.news-blog.single .form .form-group {
	position: relative;
	margin-bottom: 20px;
}
.news-blog.single .form .form-group::before, 
.news-blog.single .form .form-group::before {
	position: absolute;
	bottom: 0;
	left: 45%;
	right: 45%;
	content: "";
	height: 2px;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	z-index: 50;
}
.news-blog.single .form .form-group:hover:before,
.news-blog.single .form .form-group:hover:before{
	left:0;
	right:0;
	opacity:1;
}
.news-blog.single .form .form-group input,
.news-blog.single .form .form-group textarea{
	position:relative;
	height: 48px;
	line-height: 48px;
	width: 100%;
	border: none;
	color: #2E303C;
	border-radius: 0px;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
	text-transform: capitalize;
	background: #fff;
	-webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
}
.news-blog.single .form-group input {
	padding: 0px 20px;
}
.news-blog.single .form .form-group input:hover,
.news-blog.single .form .form-group textarea{
	padding-left:25px;
}
.news-blog.single .form .form-group.comment{
	height:190px;
	margin-bottom: 19px;
}
.news-blog.single .form .form-group textarea {
	height: 190px;
	padding: 15px 20px;
	resize: none;
	line-height: initial;
}
.news-blog.single .form-group input:hover,
.news-blog.single .form-group input:focus,
.news-blog.single .form-group textarea:hover{
	outline:none;
}
.news-blog.single .form-group.button {
	margin: 0;
	text-align: center;
}
.news-blog.single .form-group .btn {
	font-size: 14px;
	color: #fff;
	margin-top: 0;
	border-radius: 3px;
	width: 100%;
	position: relative;
}
/* Blog Sidebar */
.blog-sidebar {
	margin-top: 50px;
}
.blog-sidebar .single-sidebar {
	margin-bottom: 30px;
	background: #fff;
	padding: 20px;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.blog-sidebar .single-sidebar:hover{
	-webkit-box-shadow: 0 0 15px rgba(61, 61, 61, 0.20);
	-moz-box-shadow: 0 0 15px rgba(61, 61, 61, 0.20);
	box-shadow: 0 0 15px rgba(61, 61, 61, 0.20);
}
.blog-sidebar .single-sidebar:last-child{
	margin:0px;
	border:none;
}
.blog-sidebar .single-sidebar h2 {
	text-transform: capitalize;
	font-size: 16px;
	margin-bottom: 20px;
	display: block;
	position: relative;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 20px;
	font-weight: 600;
}
.blog-sidebar .single-sidebar h2::before {
	position: absolute;
	width: 70px;
	height: 4px;
	content: "";
	left: 0;
	bottom: -2px;
}
.blog-sidebar .single-sidebar ul li a {
	color: #2E303C;
}
.blog-sidebar .single-sidebar ul li a i {
	margin-right: 10px;
}
/* Post Tabs */
.blog-sidebar .post-tab .nav {
	margin-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
	text-align: center;
	text-align: center;
	display: ine-block;
}
.blog-sidebar .post-tab .nav li {
	margin-right: 30px;
	display: inline-block;
	text-align: center;
}
.blog-sidebar .post-tab .nav li:last-child{
	margin:0;
}
.blog-sidebar .post-tab .nav li a {
	position: relative;
	color: #2E303C;
	border-radius: 0px;
	font-weight: 600;
	padding: 0 0 12px;
	text-transform: capitalize;
	border: none;
	margin: 0;
}
.blog-sidebar .post-tab a:before{
    content: "";
	position: absolute;
    width:0%;
    height: 4px;
    left: 0;
    bottom: -2px;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
}
.blog-sidebar .post-tab a:hover:before,
.blog-sidebar .post-tab a.active:before{
    width:100%;
	opacity:1;
	visibility:visible;
}
.blog-sidebar .post-tab .nav li a:hover,
.blog-sidebar .post-tab .nav li a.active{
	border-color:#ebebeb;
}
.blog-sidebar .post-tab .nav li a i{
	margin-right:10px;
}
.blog-sidebar .post-tab .single-post {
	overflow: hidden;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e7e7e7;
}
.blog-sidebar .post-tab .single-post:last-child {
	margin-bottom: 0px;
	border: none;
	padding: 0;
}
.blog-sidebar .post-tab .single-post .post-img {
	float: left;
	margin-right: 15px;
}
.blog-sidebar .post-tab .single-post img {
	width: 65px;
	height: 65px;
	border-radius: 3px;
}
.blog-sidebar .post-tab .post-info {
	overflow: hidden;
}
.blog-sidebar .post-tab .post-info h4 {
	font-size: 14px;
	margin: 0;
	line-height: 22px;
	font-weight: 600;
}
.blog-sidebar .post-tab .post-info a {
	color: #2E303C;
}
.blog-sidebar .post-tab .post-info p {
	margin: 0;
	font-size: 13px;
}
.blog-sidebar .post-tab .post-info p i{
	margin-right:5px;
	font-size:13px;
}
.blog-sidebar .category ul li {
	margin-bottom: 15px;
}
.blog-sidebar .category ul li span {
	float: right;
	font-size: 14px;
	font-weight: 400;
}
.blog-sidebar .category ul li:last-child{
	margin-bottom:0px;
	padding-bottom: 0px;
}
.blog-sidebar .tags h2 {
	margin-bottom: 5px;
}
.blog-sidebar .tags ul{
	margin-left:-5px;
}
.blog-sidebar .tags ul li {
	display: inline-block;
	margin-top: 10px;
	margin-left: 5px;
}
.blog-sidebar .tags ul li a {
	color: #555;
	display: block;
}
/*===========================
	End Blog CSS
=============================*/

/*===========================
	13. Download App CSS
=============================*/
.download-app {
	background: #f7f7f7;
	padding: 150px 0;
}
.download-app .text-content {
	padding: 0;
	margin-bottom: 20px;
}
.download-app .text-content h2 {
	color: #fff;
	font-size: 28px;
	line-height: 40px;
	margin-bottom: 15px;
	text-transform:capitalize;
}
.download-app .text-content h2 span{
	font-weight:500;
}
.download-app .text-content p{
	color:#fff;
}
.download-app .download-inner{
	position:relative;
	z-index:3;
}
.download-app::before {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
	-webkit-clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
	clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
	opacity:0.95;
}
.download-app::after {
	content: "";
	background-image:url('images/promo-video.jpg');
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
	-webkit-clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
	clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}
.download-app .section-title h2 {
	color: #fff;
}
.download-app .section-title h2:before{
	background:#fff;
}
.download-app .section-title p{
	color:#fff;
}
.download-app .button .btn {
	margin-right: 15px;
	text-align: left;
	color: #fff;
	background: #fff;
	box-shadow: none;
	color: #212529;
	-webkit-box-shadow: 0 10px 32px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 10px 32px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0 10px 32px 1px rgba(0, 0, 0, 0.3);
	padding: 10px 20px;
	border-radius: 30px;
}
.download-app .button .btn:hover{
	box-shadow:none;
}
.download-app .button .btn:last-child{
	margin:0;
}
.download-app .button .btn i {
	color: #fff;
	font-size: 16px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 100%;
	display: inline-block;
	margin-right: 10px;
}
.download-app .button .btn.icon {
	background: transparent;
	box-shadow: none;
	padding: 0;
	font-size: 40px;
	text-align: right;
	padding: 0;
}
.download-app .button .btn.icon i {
	background: transparent;
	position: initial;
	width: auto;
	top: auto;
	height: auto;
	line-height: initial;
	font-size: inherit;
	text-align: inherit;
	text-align: center;
}
.download-app .app-mockup {
	position: absolute;
	right: 0;
	top: -44px;
}
.download-app .app-mockup img {
	width: 42%;
}
/*===========================
	End available CSS
=============================*/

/*===========================
	14. Contact CSS
=============================*/
.contact {
	background: #f7f7f7;
	padding: 80px 0 110px;
}
/* Contact Form */
.contact .form,
.contact .section-title{
	margin-top:30px;
	padding:0;
}
.contact  .section-title h2{
	font-size:24px;
}
.contact .form .row{
	margin-left:-8px;
	margin-right:-8px;
}
.contact .form .row .col-12 {
	padding-left: 8px;
	padding-right: 8px;
}
.contact .form .form-group{
	margin-bottom:16px;
	position:relative;
}
.contact .form .form-group::before, 
.contact .form .form-group::before {
	position: absolute;
	bottom: 0;
	left: 45%;
	right: 45%;
	content: "";
	height: 2px;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	z-index: 50;
}
.contact .form .form-group:hover:before,
.contact .form .form-group:hover:before{
	left:0;
	right:0;
	opacity:1;
}
.contact .form .form-group input,
.contact .form .form-group textarea{
	position:relative;
	height: 48px;
	line-height: 48px;
	width: 100%;
	border: none;
	color: #2E303C;
	border-radius: 0px;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
	text-transform: initial;
	background: #fff;
	-webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
}
.contact .form .form-group input {
	padding: 0px 20px;
}
.contact .form .form-group input:hover,
.contact .form .form-group textarea{
	padding-left:25px;
}
.contact .form .form-group.message {
	height: 190px;
	margin-bottom: 19px;
}
.contact .form .form-group textarea {
	height: 190px;
	padding: 15px 20px;
	resize: none;
	line-height: initial;
}
.contact .form .form-group.button {
	margin:0;
}
.contact .form .form-group.button:before{
	display:none;
}

.contact .form .form-group.button .btn{
	margin:0 0 2px 2px;
}
.contact .form .button i{
	margin-right:10px;
}
/* Contact info */
.contact .contact-info i {
	font-size: 25px;
	display: inline-block;
	-webkit-background-clip: text !important;;
	-webkit-text-fill-color: transparent;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.contact .contact-info:hover i{
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	transform:rotate(360deg);
}
.contact .contact-info p {
	line-height: 22px;
}
.contact .contact-info p a{
	color:#666;
}
.contact .contact-info .title {
	font-weight: 600;
	color: #2c2d3f;
	font-size: 16px;
	margin: 10px 0;
}
/* Mail Success */
.mail-success .mail-inner{
	text-align:center;
}
.mail-success .mail-inner p{
	font-size:15px;
}
.mail-success .mail-inner h2 {
	font-size: 45px;
	margin: 10px 0 20px;
}
.mail-success .mail-inner h2 span{
	color:#27AE60;
}
.mail-success .mail-inner .btn {
	background: #27AE60;
	color: #fff;
}
.mail-success .mail-inner .btn i{
	margin-right:5px;
}
/*===========================
	End Contact CSS
=============================*/

/*===========================
	15. Brands CSS
=============================*/
.brands {
	background: #fff;
	padding: 50px 0;
}
.brands .single-brand{
	text-align:center;
}
.brands .single-brand a{
	display:inline-block;
}
.brands .single-brand img {
	cursor: pointer;
	width: 100%;
	opacity: 0.6;
}
.brands .single-brand:hover img{
	opacity:1;
}
.brands .single-brand img {
	cursor: move;
}
/*===========================
	End Brands CSS
=============================*/

/*===========================
	16. Footer CSS
=============================*/
.footer {
	background: #2E303C;
	margin-top: 55px;
}
/* Newslatter */
.footer .newslatter {
	padding-bottom: 30px;
	position: relative;
	padding: 30px;
	position: relative;
	border-radius: 3px;
	top: -55px;
	margin-bottom: -55px;
}
.footer .newslatter-content h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
}
.footer .newslatter-content h2 span {
	font-size: 16px;
	display: block;
	font-weight: 500;
}
/* Newslatter Form */
.footer .form {
	position: relative;
}
.footer .newslatter-form{
	text-align:right;
}
.footer .newslatter-form .form input {
	height: 50px;
	width: 100%;
	line-height: 50px;
	padding: 0px 70px 0 20px;
	color: #fff;
	border: none;
	border-radius: 0px;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.58);
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.footer .newslatter-form .form input:hover,
.footer .newslatter-form .form input:focus{
	border-bottom-color:#fff;
}
.footer .newslatter input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer .newslatter input::-moz-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer .newslatter input::-ms-input-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer .newslatter-form .form button {
	line-height: 40px;
	background: #fff;
	color: #2E303C;
	top: 2px;
	position: absolute;
	right: 20px;
	width: 40px;
	height: 40px;
	font-size: 20px;
	border-radius: 100%;
	cursor: pointer;
}
.footer .newslatter-form .form button:hover{
	background:#2E303C;
	color:#fff;
}
.footer .single-footer {
	margin-top: 30px;
}
.footer .single-footer h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	position:relative;
	margin-bottom:20px;
}
.footer .footer-widget{
	padding:50px 0 80px;
}
/* About */
.footer .logo {
	display: inline-block;
	margin-bottom: 10px;
}
.footer .logo {
	margin-top: 16px;
	display: inline-block;
}
.footer .logo .text-logo {
	text-align: center;
}
.footer .text-logo a {
	color: #fff;
	text-transform: capitalize;
	font-size: 24px;
	font-weight: 700;
	display: block;
	position: relative;
	z-index: 1;
}
.footer .text-logo a::before {
	position: absolute;
	left: -4px;
	top: 12px;
	width: 12px;
	height: 12px;
	line-height: 12px;
	content: "";
	border-radius: 100%;
	opacity: 0.4;
	z-index: -1;
}
.footer .text-logo a span{
	font-weight:500;
}
.footer .f-about .text {
	color: #ccc;
	line-height: 24px;
}
.footer .f-about .social{
	margin-top:10px;
}
.footer .f-about .social li {
	display: inline-block;
	margin-right: 2px;
}
.footer .f-about .social li:last-child{
	margin:0;
}
.footer .f-about .social li a {
	color: #fff;
	width: 24px;
	height: 24px;
	background:transparent;
	display: inline-block;
	text-align: center;
	line-height: 24px;
	border-radius: 100%;
}
.footer .f-about .social li:hover a,
.footer .f-about .social li.active a {
	background:#fff;	
}
/* Footer Links */
.footer .f-link ul li {
	margin-bottom: 10px;
}
.footer .f-link ul li:last-child{
	margin-bottom:0px;
}
.footer .f-link ul li a {
	display: inline-block;
	color: #ccc;
	font-weight: 400;
}
/* Twitter Widget */
.footer .single-tweet:last-child{
	margin:0;
}
.footer .single-tweet i {
	font-size: 22px;
	color:#1692F8
}
.footer .single-tweet p{
	color:#ccc;
}
.footer .single-tweet p a {
	font-weight: 500;
}
.footer .single-tweet p a:hover{
	color:#fff;
}
.footer .single-tweet span {
	font-weight: 500;
	font-size: 13px;
}
/* Slider Meta */
.footer .owl-controls .owl-nav {
	text-align: left;
	overflow: hidden;
	margin-top: 10px;
}
.footer .owl-controls .owl-nav div{
	margin-right: 10px;
	float: left;
}
.footer .owl-controls .owl-nav div:last-child{
	margin:0;
}
.footer .owl-controls .owl-nav div i {
	border: 1px solid #ebebeb;
	font-size: 18px;
	width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	color: #fff;
	border-radius: 100%;
	display: block;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.footer .owl-controls .owl-nav div i:hover{
	border-color:transparent;
	background:#fff;
}
/* Copyright */
.footer .copyright {
	position: relative;
	text-align: center;
}
.footer .copyright-inner{
	border-top:1px dashed #fff6;
	padding:25px 0px 25px 0px;
	text-align:center;
}
.copyright-content {
	padding: 15px;
	border-top: 1px solid #ebebeb33;
}
.footer .copyright-content p {
	color: #ccc;
}
.footer .copyright-content p i{
	margin-right:5px;
}
.footer .copyright-content p a{
	font-weight:400;
}
.footer .copyright-content p a:hover{
	color:#fff;
}
/* Footer BG */
.footer.bg{
	background:#f7f7f7;
	margin:0;
	padding-top:55px;
}
.footer.bg .footer-top,
.footer.bg .copyright{
	background: #2E303C;
}
/*===========================
	End Footer CSS
=============================*/