/*--------------
All Contents
--------------*/

/*-----------------
1. Reset.css
2. Helper Classes
3. Home page Hero Sections
4. Pitch Section Styling
5. Features Section Styling
6. Review Styling
7. Pricing section
8. Subscribe Section
9. All Media Queries
------------------*/

/*----- 1. Reset.css -----*/

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

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

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

strong {
	font-weight: bold!important;
}

/* --- Common Styles ---*/

h1 {
	font-size: 16px;
}

/*----- Helper Classes -----*/

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*
::-webkit-scrollbar {
	display: none;
}
*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Poppins;
}

p {
	font-family: Roboto;
}

::-moz-selection {}

::selection {}

.nopadding {
	padding: 0;
}

.custompadding {
	padding-left: 5px;
	padding-right: 5px;
}

.no-margin {
	margin-right: 0;
	margin-left: 0;
}


.error-message {
	color: #FF3333;
	font-family: Poppins;
	margin-top: 5px;
}

.success-message {
	color: #009900;
	font-family: Poppins;
	margin-top: 5px;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: fixed;
	opacity: 1;
	background-color: #F2F2F2;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	display: inline;
	top: 40%;
	position: relative;
	z-index: 9999;
}

.logo {
	margin: 0 auto;
	padding: 0px 0px;
	z-index: 111;
}

.logo:hover,
.logo:focus {
	text-decoration: none;
	color: #FFF;
}



/* ------ Navbar Styling Starts ----- */

.navbar {
	font-size: 14px;
	font-family: Poppins;
	font-weight: 400;
	text-transform: capitalize;
	padding-top: 25px;
	letter-spacing: 1px;
	height: 80px;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
	-webkit-backface-visibility: hidden;
}

.navbar-default {
	transition: all 0.6s ease;
	border-color: transparent;
	background-color: transparent;
}

.navbar-default .navbar-toggle {
	border-radius: 0px;
	border-color: transparent;
}

.navbar-default .navbar-toggle:hover {
	background-color: transparent;
}

.navbar-default .navbar-toggle:focus {
	background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #111111;
}

.navbar-default .navbar-brand .navbar-toggle .collapsed {
	padding: 4px 6px;
	font-size: 14px;
	color: #111111;
}

.navbar-default .navbar-brand {
	padding-top: 5px;
	color: #111111;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.navbar-default .navbar-brand:hover {
	transition: 1s;
}

.navbar-default .navbar-nav > li > a {
	color: #FFF;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5;
	transition: all 0.5s;
}

.navbar-default .navbar-nav > li > a:hover {
	color: #e8e8e8;
}

.navbar-default .navbar-nav > .active > a {
	background: transparent;
	color: #222222;
}


.navbar-default .navbar-nav > .active > a:hover {
	background: transparent;
	color: #333333;
}

.navbar-default .navbar-nav > .active > a:focus {
	background: transparent;
	color: #111111;
}

.navbar-default .navbar-collapse {
	border-color: transparent;
	background-color: transparent;
}

.navbar-default .navbar-nav .open .dropdown-toggle {
	color: #111111;
}

.navbar-default .nav-white > li > a {
	color: #FFFFFF;
}

.navbar-default .nav-white > li > a:hover {
	color: #999999;
}

.navbar-default .navbar-brand.nav-white {
	padding-top: 15px;
	color: #FFFFFF;
	font-size: 21px;
	letter-spacing: 1px;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

/*---------- Media Queries ---------*/

@media only screen and (max-width: 767px) {

	.navbar {
		padding-top: 5px;
		height: 60px;
	}

	.navbar-default {
		border: 0px;
		background-color: transparent;
	}

	.navbar-default .navbar-collapse {
		text-align: center;
		border-color: transparent;
		background-color: #FFFFFF;
	}

	.navbar-default .navbar-collapse {
		border: 0;
		border-color: transparent;
	}

	.navbar-default .navbar-nav > li > a {
		color: #222222;
		margin-top: 10px;
	}

	.navbar-default .navbar-nav > li > a:hover {
		color: #222222;
	}

	.navbar-default .navbar-brand {
		color: #FFFFFF;
		padding: 16px 15px !important;
	}

	.navbar-default .navbar-brand.nav-white {
		color: #FFFFFF;
	}

	.navbar-default .navbar-toggle .icon-bar {
		background-color: #fff;
	}
}

@media only screen and (min-width: 240px) {


	.navbar.past-main {
		font-size: 14px;
		padding-top: 5px;
		height: 60px;
		background-color: rgba(255, 255, 255, 0.99);
		-webkit-transition: all 0.6s;
		-moz-transition: all 0.6s;
		-o-transition: all 0.6s;
		transition: all 0.6s;
		box-shadow: 0 10px 20px 0 rgba(149, 152, 172, 0.1);
	}

	.navbar-default.past-main .navbar-brand {
		color: #111111;
	}

	.navbar-default.past-main .navbar-toggle .icon-bar {
		background-color: #ee527c;
	}

	.navbar-default.past-main .navbar-nav > li > a {
		color: #222222;
		-webkit-transition: color 0.5s;
		transition: color 0.5s;
	}

	.navbar-default.past-main .navbar-nav > li > a:hover {
		color: #111111;
	}

	.navbar-default.past-main .navbar-nav > .active > a {
		background: transparent;
		color: #5924EC;
	}


	.navbar-default.past-main .navbar-nav > .active > a:hover {
		background: transparent;
		color: #222222;
	}

	.navbar-default.past-main .navbar-nav > .active > a:focus {
		background: transparent;
		color: #222222;
	}

}

.navbar-default .nav-white .navbar-toggle .icon-bar {
	background-color: #FFFFFF;
}

.navbar-default.past-main .nav-white .navbar-toggle .icon-bar {
	background-color: #111111;
}

/* ------------------------------------------------------
-------------- Main Section Styling Starts --------------
--------------------------------------------------------*/

#main {
	height: 100%;
}


/* ----- Hero Section Styling Starts ----- */

.hero-section {
	height: 100%;
	background: url(/images/hero-background.jpg) no-repeat center center;
	background-size: cover!important;
	padding: 150px 0 0 0;
}

.hero-content {
	padding: 100px 0 100px 0;
	overflow: hidden;
}

.hero-content h1 {
	font-size: 34px;
	font-weight: 400;
	color: #262626;
	line-height: 1.2;
	letter-spacing: -1px;
	margin: 0 0 20px 0;
}

.hero-content p {
	font-family: Poppins;
	font-size: 14px;
	color: #FFF;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 25px 0;
}


.btn-action {
	font-family: Roboto;
	background-color: #f90;
	border: 1px solid #f90;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1;
	padding: 10px 21px;
	text-transform: uppercase;
	outline: none;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.btn-action:hover,
.btn-action:focus,
.btn-action:active,
.btn-action:active:focus {
	background: transparent;
	outline: none;
	color: #3333CC;
	background: #f90;
	border-color: #f90;
}


.product .btn-action {
	background-color: transparent;
	border: 1px solid #82714a;
	color: #82714a;
}

.product .btn-action:hover,
.product .btn-action:focus {
	background: #92714A;
	color: #FFFFFF;
	border-color: #82714A;
}


/* ----------- App Home ---------*/

.software .hero-section {
	padding: 100px 0 0 0;

}

.software .hero-content h1 {
	font-size: 34px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 20px 0;
}


.software .btn-action {
	font-family: Arial;
	background-color: #f90;
	border-radius: 50px;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 1;
	padding: 12px 24px;
	text-transform: uppercase;
	outline: none;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.software .btn-action:hover,
.software .btn-action:focus,
.software .btn-action:active,
.software .btn-action:active:focus {
	background: transparent;
	outline: none;
	color: #fff;
	background: #e68a00;
	border-color: #e68a00;
}

.software .hero-section img {
	margin: 0 auto;
}



/*---------------- Form Home Styling ------------------- */

.form .hero-section {
	background: url(/images/hero-background.jpg) no-repeat center center;
	background-size: cover;
	padding: 150px 0 0 0;
}

.form .hero-content {
	padding: 50px 0 50px 0;
	overflow: hidden;
}

.form img {
	margin: 0 auto;
}


.form .hero-content h1 {
	font-size: 34px;
	font-weight: 700;
	color: #222222;
	line-height: 1.2;
	letter-spacing: -1px;
	margin: 0 0 20px 0;
}

.form .hero-content p {
	font-family: Poppins;
	font-size: 14px;
	color: #A1A1A1;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 25px 0;
}

.form .sub-form {
	padding: 30px 0 0 0;
	text-align: left;
}


.form .subscribe-form .submit-button {
	font-size: 0.9em;
	height: 40px;
	border: 2px solid;
	border-radius: 0 5px 5px 0;
	margin: 0;
	padding: 0 25px 0 25px;
	border-color: #FFFFFF;
	background-color: #3333CC;
	color: #FFFFFF;
	box-shadow: 0 0 1px transparent;
	outline: none;
	-webkit-transition: 500ms;
	-moz-transition: 500ms;
	transition: 500ms;
}

.form .subscribe-form .submit-button:hover {
	border-color: #3333CC;
	-webkit-transition: 500ms;
	-moz-transition: 500ms;
	transition: 500ms;
}

.form .btn-action {
	background: #3333CC;
	border-color: #3333CC;
	color: #FFFFFF;
}

.form .btn-action:hover {
	background: transparent;
	border-color: #3333CC;
	color: #3333CC;
}


/*-----------------------------------------------------
-------------- Image Bg Styling Starts ----------------
------------------------------------------------------*/

.image-bg .hero-section {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url(../images/image-bg.jpg) no-repeat center center;
	background-size: cover;
	padding: 150px 0 100px 0;
}

.image-bg .hero-content h1 {
	font-weight: 600;
	color: #FFFFFF;
}

.image-bg .hero-content p {
	color: #FFFFFF;
}


/* ------------ Signup Hero Section ------------ */

.signup .hero-section {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url(../images/app_bg.jpg) no-repeat center center;
	background-size: cover;
	padding: 150px 0 100px 0;
}

.signup .hero-content {
	padding: 50px 0 100px 0;
}

.signup .hero-content h1 {
	font-size: 34px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1.2;
	letter-spacing: 0;
}

.signup .hero-content p {
	color: #FFFFFF;
}

.signup-form {
	padding: 25px 25px 30px 25px;
	background: #3333CC;
	-moz-border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
	text-align: left;
}

.signup-form h1 {
	font-weight: 600;
	font-size: 24px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 1.4;
	text-transform: capitalize;
	text-align: center;
	margin: 20px 0 30px 0;
}

.signup-form form textarea {
	height: 100px;
}

.signup-form form .input-error {
	border-color: #19b9e7;
}

.signup-form p {
	font-family: Poppins;
	font-size: 12px;
	color: #DDDDDD;
	margin: 25px 0 10px 0;
}

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


.signup .btn-action.btn-round {
	background: #3333CC;
	border-color: #3333CC;
	color: #FFFFFF;
	font-size: 15px;
	padding: 12px 24px;
	font-weight: 600;
	text-transform: capitalize;
	border: 2px solid #3333CC;
	border-radius: 30px;
}

.signup .btn-action.btn-round:hover,
.signup .btn-action.btn-round:focus {
	background: transparent;
	color: #3333CC;
	border-color: #3333CC;
}

.signup .btn-action {
	background: #3333CC;
	border-color: #3333CC;
	color: #FFFFFF;
}

.signup .btn-action:hover {
	background: transparent;
	border-color: #3333CC;
	color: #3333CC;
}


input[type="text"],
textarea,
textarea.form-control {
	height: 45px;
	margin: 0;
	padding: 0 20px;
	vertical-align: middle;
	background: #F8F8F8;
	border: 1px solid #DDDDDD;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 50px;
	color: #888888;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}

textarea,
textarea.form-control {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 30px;
}

input[type="text"]:focus,
textarea:focus,
textarea.form-control:focus {
	outline: 0;
	background: #FFFFFF;
	border: 1px solid #111;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

input[type="text"]:-moz-placeholder,
textarea:-moz-placeholder,
textarea.form-control:-moz-placeholder {
	color: #888;
}

input[type="text"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder {
	color: #888;
}

input[type="text"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder {
	color: #888;
}



.signup-form button.btn {
	height: 45px;
	margin: 0;
	padding: 0 20px;
	vertical-align: middle;
	background: #111111;
	border: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 45px;
	color: #FFFFFF;
	text-transform: uppercase;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	text-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}

.signup-form button.btn:hover {
	opacity: 0.6;
	color: #FFFFFF;
}

.signup-form button.btn:active {
	outline: 0;
	opacity: 0.6;
	color: #FFFFFF;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.signup-form button.btn:focus {
	outline: 0;
	opacity: 0.6;
	background: #19b9e7;
	color: #fff;
}

.signup-form button.btn:active:focus,
button.btn.active:focus {
	outline: 0;
	opacity: 0.6;
	background: #19b9e7;
	color: #fff;
}

@media only screen and (max-width: 991px) {
	.signup-form {
		max-width: 500px;
		margin: 0 auto;
	}
}


/*-------------------------------------------------------
---------------- Slider Section Styling -----------------
--------------------------------------------------------*/

.slider-pro .sp-slide {
	background: #222222;
}

.slider-pro h2.sp-layer {
	font-size: 44px !important;
	color: #111111;
	font-weight: bold;
	letter-spacing: -1px;
	line-height: 1.3;
	text-align: left;
}

.slider-pro p.sp-layer {
	font-size: 16px;
	color: #A1A1A1;
	line-height: 1.4;
}

.slider-pro a {
	text-decoration: none;
	color: #444444;
	-webkit-transition: 0.5s !important;
	-moz-transition: 0.5s !important;
	transition: 0.5s !important;
}

.slider-pro .link-color {
	text-decoration: none;
	color: #111;
	-webkit-transition: 0.5s !important;
	-moz-transition: 0.5s !important;
	transition: 0.5s !important;
}

.slider-pro a:hover {
	color: #999999;
}



@media only screen and (max-width: 768px) {

	.slider-pro h2.sp-layer {
		font-size: 34px !important;

	}
}


/* -----------------------------------------------------
--------------- App Home Styling starts ----------------
--------------------------------------------------------*/

.app .hero-section {
	padding: 50px 0 0 0;
}

.app .hero-content {
	padding: 100px 0 0 0;
}

.app img {
	margin: 0 auto;
}

.app-info h1 {
	font-size: 34px;
	font-weight: 600;
	color: #404040;
	margin-top: 30px !important;
}

.app-info h4 {
	font-family: Roboto;
	font-size: 16px;
	font-weight: 300;
	color: #3C4B5D;
	line-height: 1.4;
	margin-top: 20px;
}

.app-info i {
	margin-top: 15px;
	display: inline-block;
}

.app-info span {
	font-family: Poppins;
	font-size: 12px;
	font-weight: 400;
	color: #222222;
}

.app-info .ion {
	font-size: 1em;
	color: #ff8000;
}

.download-buttons {
	margin-top: 25px;
	margin-bottom: 25px;
}

.download-buttons img {
	margin-left: 5px;
	margin-right: 5px;
}


.app .btn-action {
	color: #FFFFFF;
	background: #3333CC;
	border-color: #3333CC;
}

.app .btn-action:hover {
	color: #3333CC;
	background: transparent;
	border-color: #3333CC;
}



/*----------------------------------------------------
-------------- Split Home Coming Soon ----------------
-----------------------------------------------------*/

.cs-main .left-section {
	background-color: #F2F2F2;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.cs-main .right-section {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 0 20px 0 20px;
	width: 50%;
	height: 100%;
	background: #FFFFFF;
	z-index: 99;
	overflow: hidden;
	overflow-y: auto;
}

.cs-main .hero-section {
	padding: 120px 0 0 0;
	background: #FFFFFF !important;
}

.cs-main .hero-content {
	padding: 50px 0 0 0;
}

.cs-main .app-info h1 {
	font-weight: 600;
	font-size: 42px;
}

.cs-main .left-section {
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../images/split-bg.jpg) no-repeat center center;
	background-size: cover;
}


@media only screen and (max-width: 801px) {

	.cs-main .right-section {
		position: relative;
		width: 100%;
	}

	.cs-main .hero-section {
		padding: 50px 0 0 0;
	}


	.cs-main .left-section {
		position: relative;
		width: 100%;
		min-height: 100vh;
	}
}



/*-------------------------------------------------
----------- About Section Styling Starts ----------
--------------------------------------------------*/

.about {
	padding: 100px 0 100px 0;
	background: #F1F1F1;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
}

.about-content h2 {
	font-family: 'Josefin Sans';
	font-size: 24px;
	line-height: 1.2;
	color: #111111;
}

.about-content h3 {
	font-family: 'Josefin Sans';
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 1px;
	text-transform: capitalize;
	color: #111111;
	margin: 50px 0 0 0;
}



/* ----- Client Sectiion Styling ----- */

.client-section {
	background-color: #F3F3F3;
	padding: 5px 0 0 0;
}

.clients .single {
	padding: 25px 0 25px 0;
}

.clients .single img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.3;
}


/*----------------------------------------------------
----------- Pitch Section Styling Starts ----------
-----------------------------------------------------*/

.pitch {
	padding: 100px 0 100px 0;
	background: #FFFFFF;
}

.pitch-intro {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 0 50px 0;
}

.pitch-intro h1 {
	font-size: 34px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1px;
	color: #454545;
	margin: 0 0 30px 0;
}


.pitch-intro p {
	font-family: 'Poppins';
	font-size: 14px;
	line-height: 1.5;
	color: #A1A1A1;
	letter-spacing: 0;
}

.pitch-icon {
	margin: 0 0 10px 0;
	background: #3333CC;
	width: 60px;
	height: 60px;
	display: inline-block;
	border-radius: 50%;
}

.pitch-icon i {
	font-size: 34px;
	color: #FFFFFF;
	position: absolute;
	left: 0;
	right: 0;
	top: 13px;
}

.pitch-content {
	padding: 10px 0 50px 0;
}

.pitch-content h1 {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
	color: #454545;
	margin: 0 0 10px 0;
}

.pitch-content p {
	font-family: 'Poppins';
	font-size: 14px;
	line-height: 1.5;
	color: #A1A1A1;
	letter-spacing: 0;
}


/*----------------------------------------------------
----------- Features Icon Styling Starts -------------
-----------------------------------------------------*/

.icon-features {
	padding: 100px 0 50px 0;
}

.icon-features-intro {
	padding: 0 0 50px 0;
}

.icon-features-intro h1 {
	font-size: 34px;
	font-weight: 600;
	letter-spacing: -1px;
	margin: 0 0 10px 0;
	text-align: center;
}

.icon-features-intro p {
	font-size: 16px;
	color: #A1A1A1;
	text-align: center;
	margin: 0 0 30px 0;
}

.f-single {
	position: relative;
	padding: 10px 0 80px 0;
}

.f-icon i {
	font-size: 54px;
	font-weight: bold;
	position: absolute;
	left: 0;
}

.f-content {
	padding-left: 80px;
}

.f-content h2 {
	font-size: 21px;
	font-weight: 400;
	margin: 0 0 10px 0;
}

.f-content p {
	font-family: 'Roboto';
	font-size: 14px;
	font-weight: 300;
	color: #4D4D4D;
	line-height: 1.5;
	text-align: left;
}


/*----------------------------------------------------
----------- Features Section Styling Starts ----------
-----------------------------------------------------*/

.features {
	padding: 25px 0 25px 0;
}

.features-inner {
	width: 100%;
}

.features .features-list {
	padding: 20px 0 0 0;
	text-align: center;
}

.features .features-list h1 {
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	color: #222222;
	margin: 0 0 30px 0;
}

.features .features-list ul {
	list-style-type: circle;
	padding-left: 20px;
	text-align: center;
}


.features .features-list ul li {
	display: block;
	margin: 0 0 15px 0;
	font-family: 'Josefin Sans';
	font-size: 16px;
	line-height: 1.2;
	color: #A1A1A1;
}

/* ----- App Features List ----- */

.software .features {
	padding: 100px 0 100px 0;
}

.software .features .features-list h1 {
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1.2;
	color: #222222;
	margin: 20px 0 20px 0;
}

.software .features-list p {
	margin: 0 0 25px 0;
	font-family: 'Josefin Sans';
	font-size: 18px;
	line-height: 1.2;
	color: #A1A1A1;
}

.software .features .features-list ul {
	list-style-type: disc;
	padding-left: 20px;
}


.software .features .features-list ul li {
	font-family: Poppins;
	display: block;
	font-size: 13px;
	margin: 0 0 15px 0;
	color: #A1A1A1;
}


/* --------------- Feature Sub ------------ */

.product .feature-sub {
	background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(146, 127, 84, 0.99)), url(../images/feature-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0 150px 0;
}

.product .sub-inner {
	max-width: 500px;
	float: right;
}

.feature-sub .sub-inner h1 {
	font-family: 'Josefin Sans';
	font-size: 34px;
	font-weight: 300;
	line-height: 1;
	color: #FFFFFF;
	margin: 0 0 30px 0;
}

.feature-sub .sub-inner .btn-action {
	color: #FFFFFF;
	background: #3333CC;
	border-color: #3333CC;
}

.feature-sub .sub-inner .btn-action:hover {
	color: #3333CC;
	background: transparent;
	border-color: #3333CC;
}

.product .feature-sub .sub-inner .btn-action {
	color: #FFFFFF;
	background: #82714a;
	border-color: #82714a;
}

.product .feature-sub .sub-inner .btn-action:hover {
	color: #82714a;
	background: transparent;
	border-color: #82714a;
}

.feature-sub {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url(../images/image-bg.jpg);
	padding: 150px 0 150px 0;
}

.sub-inner {
	max-width: 500px;
	float: left;
}

/* --------- App Features Sub ------- */

.software .feature-sub {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.99)), url(../images/app_bg1.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0 150px 0;
}

.software .feature-sub .sub-inner h1 {
	font-family: 'Josefin Sans';
	font-size: 34px;
	font-weight: 300;
	line-height: 1.1;
	color: #FFF;
	margin: 0 0 30px 0;
}


/*  --------------------------------------------------
------------- Reviews Section Styling ----------------
-----------------------------------------------------*/

.app-features {
	background: #F9F9F9;
	padding: 100px 0 100px 0;
}

.app-features h1 {
	font-size: 34px;
	font-weight: 600;
	margin: 0 0 30px 0;
}

.app-features p {
	font-weight: 400;
	font-size: 17px;
	line-height: 1.65;
	color: #686c82;
	mkargin: 10px 0 50px 0;
}


.app-features img {
	margin: 0 auto;
}

.app-features .features-left,
.app-features .features-right {
	padding: 50px 0 0 0;
}

.app-features .icon {
	margin-top: 10px;
	margin-bottom: 20px;
}

.app-features .icon i {
	font-size: 42px;
	color: #3333CC;
}


.app-features .feature-single {
	margin-left: 0;
	margin-bottom: 50px;
}


.app-features .feature-single h1 {
	font-size: 18px;
	font-weight: 400;
	color: #222222;
	margin: 0 0 10px 0;
	letter-spacing: 1px;
}

.app-features .feature-single p {
	font-family: Poppins;
	font-size: 14px;
	color: #A1A1A1;
	line-height: 1.4;
	margin: 10px 0 0 0;
}


/*-------------------------------------------------------
------------- Split Features Section Styling ------------
--------------------------------------------------------*/

.split-features {
	background: #FFFFFF;
	padding: 50px 0 50px 0;
	overflow: hidden;
}

.signup .split-features {
	background: #F2F2F2;
}

.split-image img {
	margin: 0 auto;
}

.split-content {
	padding: 20px;
}

.split-content h1 {
	font-size: 34px;
	font-weight: 600;
	letter-spacing: -1px;
	margin: 0 0 20px 0;
}

.split-content p {
	font-size: 16px;
	line-height: 1.4;
	color: #A1A1A1;
	letter-spacing: 0;
}

.split-content ul {
	list-style-type: disc;
	display: inline-block;
	margin: 30px 0 0 0;
}

.split-content ul li {
	font-family: Roboto;
	font-size: 16px;
	letter-spacing: 0;
	margin-bottom: 15px;
	margin-left: 15px;
	color: #A1A1A1;
}



/*  --------------------------------------------------
------------- Reviews Section Styling ----------------
-----------------------------------------------------*/

.review-section {
	padding: 150px 0 150px 0;
	text-align: center;
	background: #F4F4F4;
}


.reviews {
	width: 100%;
}


.review-single img {
	width: 80px;
	height: 80px;
}

.review-text h3 {
	font-family: Roboto;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.5;
	color: #000000;
}

.review-text .ion {
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	color: #ff8000;
}

.review-text p {
	font-family: Poppins;
	font-size: 14px;
	font-weight: 300;
	padding: 20px 10px 20px 10px;
	letter-spacing: 1px;
	line-height: 1.5;
	color: #A1A1A1;
}



/*  --------------------------------------------------
------------- Pricing Section Styling ----------------
-----------------------------------------------------*/

.pricing {
	padding: 50px 0 100px 0;
}

.pricing-content {
	padding: 60px 0 0 0;
	text-align: center;
}

.pricing h1 {
	font-size: 28px;
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 1.2;
}

.pricing h4 {
	font-size: 14px;
	font-weight: 400;
	color: #A1A1A1;
	margin: 10px 0 30px 0;
}

.pricing p {
	font-family: 'Poppins';
	font-size: 14px;
	font-weight: 400;
	color: #444444;
	line-height: 1.4;
}

.pricing .btn-buy {
	padding: 40px 0 20px 0;
}

.pricing .btn-buy img {
	display: inline;
}

.pricing .price-tag h2 {
	font-family: 'Josefin Sans';
	font-size: 24px;
	font-weight: 400;
	color: #A1A1A1;
	margin: 0 0 20px 0;
}



/* ----- Pricing Tables Styling Starts ----- */

.pricing-section {
	width: 100%;
	height: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
	background: #FFFFFF;
}

.pricing-intro {
	padding-bottom: 30px;
}

.pricing-intro h1 {
	font-size: 28px;
	color: #111111;
	font-weight: 600;
	line-height: 1.4;
}


.pricing-intro p {
	font-size: 15px;
	color: #303030;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 1px;
	margin-top: 10px;
	margin-bottom: 50px;
}

.pricing-section .table-left,
.pricing-section .table-right {
	padding: 20px 20px 50px 20px;
	margin: 0 auto;
	margin-bottom: 30px;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, .1);
	border: transparent;
	max-width: 400px;
}

.table-left .icon,
.table-right .icon {
	padding: 50px 50px 40px 50px;
}

.table-left .icon img,
.table-right .icon img {
	width: 60px;
	height: 60px;
	margin: 0 auto;
}

.table-left .pricing-details span,
.table-right .pricing-details span {
	display: inline-block;
	font-family: Poppins;
	font-size: 28px;
	font-weight: 400;
	color: #808080;
	margin-bottom: 20px;
}

.table-left .pricing-details h2,
.table-right .pricing-details h2 {
	font-size: 18px;
	font-weight: 600;
	color: #505050;
	margin-bottom: 30px;
}

.table-left .pricing-details p,
.table-right .pricing-details p {
	font-family: Poppins;
	font-size: 14px;
	font-weight: 300;
	color: #505050;
	letter-spacing: 1px;
	line-height: 1.4;
}

.table-left .pricing-details ul,
.table-right .pricing-details ul {
	margin-top: 30px;
	margin-bottom: 50px;
}


.table-left .pricing-details li,
.table-right .pricing-details li {
	font-family: Poppins;
	font-size: 14px;
	font-weight: 400;
	color: #505050;
	line-height: 1.4;
	margin-bottom: 10px;
}

.pricing-section .table-left:hover,
.pricing-section .table-right:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.pricing-section .table-left,
.pricing-section .table-right {
	margin-top: 20px;
}

.pricing-section .table-center {
	margin-top: 0;
}

/* ----- Pricing Section Styling Ends ----- */

/* ----- Counter Section Styling Starts -----*/

.counter-section {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background: #F1F1F1;
}

.counter-section h3 {
	font-size: 28px;
	font-weight: 400;
	color: #222222;
}

.counter-icon {
	padding: 15px;
}

.counter-icon i {
	font-size: 48px;
	color: #3333CC;
}

.counter-text {
	margin-top: 10px;
	margin-bottom: 20px;
}

.counter-text h4 {
	font-size: 16px;
	font-weight: 400;
	padding: 0.5em;
	color: #222222;
}

/* -------- Counter Section Styling Ends --------- */

/* ----- CTA Section Styling Starts ----- */

.cta-sub {
	padding-top: 150px;
	padding-bottom: 150px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)), url(../images/cta_bg.jpg) no-repeat center center;
	background-size: cover;
}

.cta-inner {
	max-width: 500px;
	float: none;
}

.cta-sub .cta-inner h1 {
	font-size: 28px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 10px;
	margin-bottom: 0;
}

.cta-sub .cta-inner p {
	font-family: Poppins;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 300;
	line-height: 1.4;
	margin-top: 20px;
	margin-bottom: 40px;
}

.subscribe-form {
	text-align: left;
}

/*
.subscribe-form .mail {
 background-color: #F9F9F9;
 border: none;
 border-radius: 5px 0 0 5px;
 border-color: #FFFFFF;
 outline: none;
 height: 40px;
 padding: 0 150px 0 20px;
 box-shadow: none;
 -webkit-box-sizing: content-box;
 -moz-box-sizing: content-box;
 box-sizing: content-box;
 transition: all .3s;
}


.subscribe-form input {
  color: #222222;
  font-family: Poppins;
  padding: 0;
  font-size: 0.9em;
}
*/

.subscribe-form .submit-button {
	font-size: 0.9em;
	height: 40px;
	border: 2px solid;
	border-radius: 0 5px 5px 0;
	margin: 0;
	padding: 0 25px 0 25px;
	border-color: #FFFFFF;
	background-color: #927f54;
	color: #FFFFFF;
	box-shadow: 0 0 1px transparent;
	outline: none;
	-webkit-transition: 500ms;
	-moz-transition: 500ms;
	transition: 500ms;
}

.subscribe-form .submit-button:hover {
	border-color: #927f54;
	-webkit-transition: 500ms;
	-moz-transition: 500ms;
	transition: 500ms;
}

.product .subscribe-form .submit-button {
	border-color: #FFFFFF;
	background-color: #927f54;
}

.product .subscribe-form .submit-button:hover {
	border-color: #927f54;
}

.formee {
	position: relative;
}


.formee .mail {
	position: relative;
	background-color: #F9F9F9;
	box-shadow: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	transition: all .3s;
}

.formee input {
	color: #222222;
	font-family: Poppins;
	padding: 0;
	font-size: 0.9em;
	height: 49px;
	border: 2px solid #FFF;
	border-radius: 5px 0 0 5px;
	border-color: #FFFFFF;
	outline: none;
	padding: 0 150px 0 20px;
}

.formee input:focus {
	border: 2px solid #FFF;
	border-color: #FFFFFF;
}

.formee .right {
	height: 49px;
	border: 2px solid #FFF;
	border-radius: 0 5px 5px 0;
	margin: 0;
	padding: 0 25px 0 25px;
	background-color: #3333CC;
	color: #FFFFFF;
	box-shadow: 0 0 1px transparent;
	outline: none;
	-webkit-transition: 500ms;
	-moz-transition: 500ms;
	transition: 500ms;
}

#email-error {
	position: absolute;
	left: 0;
	top: 150%;
	font-family: 'Poppins';
	font-size: 14px;
	color: #FF0000;
}

#response {
	color: #FFFFFF;
	font-family: 'Poppins';
	margin-top: 30px;
	font-size: 14px;
	line-height: 1.4;
}

.product .formee .right {
	background-color: #927f54;
}

/* ----- CTA Section Styling Ends ----- */

/* ------- Footer Section Styling Starts ------- */

.footer {
	background-color: #F3F3F3;
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding-top: 75px;
	padding-bottom: 20px;
}

.contact {
	text-align: left;
}

.contact i {
	font-size: 42px;
	color: #3333CC;
}

.contact h1 {
	font-family: 'Josefin Sans';
	font-size: 21px;
	font-weight: 400;
	color: #3333CC;
	margin: 10px 0 10px 0;
}

.contact p {
	font-family: 'Josefin Sans';
	font-size: 16px !important;
	font-weight: 400;
	color: #111111;
	line-height: 1.3;
	margin: 10px 0 20px 0 !important;
}

.contact a {
	font-family: 'Josefin Sans';
	font-size: 18px;
	font-weight: 400;
	color: #3333CC;
	text-decoration: none;
	display: inline-block;
}


.footer img {
	margin-bottom: 20px;
}

.footer-menu ul {
	list-style-type: none;
}

.footer-menu li {
	display: inline;
	line-height: 2;
	font-family: Poppins;
	font-size: 14px;
	padding-right: 15px;
	text-transform: capitalize;
}

.footer-menu li a {
	color: #707570;
	text-decoration: none;
}

.footer p {
	font-family: 'Josefin Sans';
	font-size: 16px;
	font-weight: 400;
	color: #A1A1A1;
	line-height: 1.3;
	margin: 10px 0 30px 0;
}

.footer-text p {
	font-family: 'Josefin Sans';
	font-size: 14px;
	color: #3333CC;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 1px;
	margin-top: 10px;
}


.product .footer .contact h1,
.product .contact i,
.product .footer .contact a,
.product .footer-text p {
	color: #927f54;
}


/* -------------------------------------------------------
----------- Bact-to-Top Styling Starts Here --------------
---------------------------------------------------------*/

.back-to-top {
	background: rgba(51, 51, 204, 0.5);
	margin: 0;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	z-index: 90;
	display: none;
	text-decoration: none;
	color: #0E1729;
}

.back-to-top i {
	position: relative;
	left: 13px;
	top: 8px;
	font-size: 24px;
	color: #FFFFFF;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.back-to-top:hover {
	background: rgba(51, 51, 204, 0.9);
	color: #FFFFFF;
}

.back-to-top:hover i {
	top: 6px;
}

.back-to-top:focus {
	color: #FFFFFF;
}


.product .back-to-top {
	background: rgba(146, 127, 84, 0.5);
}

.product .back-to-top:hover {
	background: rgba(146, 127, 84, 0.9);
}



/*----------------------------------------------------
------------- All ------------------------------------
--------------------- Media --------------------------
------------------------------- Queries --------------
-----------------------------------------------------*/

@media only screen and (min-width: 767px) {
	.logo {
		position: absolute;
		top: 20px;
		left: 20px;
	}

	.hero-section {
		padding: 150px 0 100px 0;
	}

	.form .hero-section {
		padding: 150px 0 50px 0;
	}

	.form .hero-content {
		padding: 100px 0 100px 0;
		overflow: hidden;
	}

	.form .hero-content h1 {
		font-size: 54px;
	}

	.product .hero-content {
		padding: 150px 0 100px 0;
		text-align: left;
	}

	.hero-content h1 {
		font-size: 48px;
		margin: 0 0 20px 0;
	}

	.hero-content p {
		font-size: 1.05em;
	}

	.about-content h2 {
		font-size: 38px;
	}

	.software .hero-content h1 {
		font-size: 42px;
	}

	.image-bg .hero-content h1 {
		font-size: 54px;
	}


	.signup .hero-content h1 {
		font-size: 48px;
	}

	.features .features-list {
		padding: 100px 0 0 0;
		text-align: left;
	}

	.features .features-list ul li {
		font-size: 18px;
		display: list-item;
		text-align: left;
	}


	.software .features {
		padding: 100px 0 100px 0;
	}

	.software .features .features-list h1 {
		font-size: 34px;
	}

	.software .features .features-list {
		padding: 30px 0 0 0;
	}


	.software .features .features-list ul li {
		display: list-item;
		font-size: 14px;
		text-align: left;
	}


	.feature-sub {
		padding: 200px 0 200px 0;
	}

	.feature-sub .sub-inner h1 {
		font-size: 42px;
	}

	.software .feature-sub .sub-inner h1 {
		font-size: 42px;
	}

	.split-content {
		padding: 120px 100px 50px 10px;
		text-align: left;
	}

	.split-content h1 {
		font-size: 42px;
	}


	.pricing {
		padding: 100px 0 100px 0;
	}

	.pricing-content {
		text-align: left;
	}

	.cta-sub .cta-inner h1 {
		font-size: 36px;
	}


	.cta-inner {
		max-width: 500px;
		float: right;
	}

	.contact {
		text-align: center;
	}


	.contact h1 {
		font-size: 24px;
	}

	.contact p {
		font-size: 16px !important;
	}

	.contact a {
		font-size: 18px;
	}

}

@media only screen and (min-width: 767px) and (max-width: 1024px) {
	.features .features-list {
		padding: 80px 0 0 0;
	}

	.split-content {
		padding: 100px 100px 50px 50px;
		text-align: left;
	}
}


@media screen and (min-width: 400px) and (max-width: 600px) {

	.formee input {
		padding: 0 30px 0 20px;
		border-radius: 5px 0 0 5px;
	}

	.formee .right {
		padding: 0 5px 0 5px;
		border-radius: 0 5px 5px 0;
	}
}


@media screen and (max-width: 399px) {

	.cta-sub {
		text-align: center;
	}

	.subscribe-form {
		text-align: center;
	}

	.formee input {
		text-align: center;
		padding: 0 0 0 0;
		border-radius: 5px 0 0 5px;
	}

	.formee .right {
		padding: 0 5px 0 5px;
		border-radius: 0 5px 5px 0;
		margin-top: 15px;
	}

	.form .sub-form .subscribe-form {
		text-align: left;
	}


	.form .sub-form .formee input {
		text-align: center;
		padding: 0 0 0 0;
		border-radius: 5px 0 0 5px;
	}

	.form .sub-form .formee .right {
		padding: 0 5px 0 5px;
		border-radius: 0 5px 5px 0;
		margin-top: 15px;
	}

	.back-to-top {
		right: 10px;
	}

}

@media only screen and (min-width: 991px) and (max-width: 1201px) {

	.app-features .features-left,
	.app-features .features-right {
		padding: 0 0 0 0;
	}

	.software .features .features-list {
		padding: 0 0 0 0;
	}

}


/*---------------------------------------------------
------- Media Queries for Split Layout Ends ---------
---------------------------------------------------*/

.vcenter {
	display: inline-block;
	vertical-align: middle;
	float: none;
}

.hero-section {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url(/images/hero-background.jpeg) no-repeat center center;
}

.cta-header {}

.sitesCat {
	background: #fff;
	padding: 15px;
	margin: 15px;
	-webkit-box-shadow: 0px 2px 5px 3px #E9ECF3;
	-moz-box-shadow: 0px 2px 5px 3px #E9ECF3;
	box-shadow: 0px 2px 5px 3px #E9ECF3;
	color: #000;
}

.sitesCat p {
	color: #616161;
}

.siteCatSec {
	margin: 25px 0 0 0;
}

.faq {
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5em;
	color: #71757f;
	background: #fff;
}

.priceNumbers {
	display: block;
	margin-bottom: 15px;
	font-size: 4em;
	line-height: .75;
	font-weight: 700;
}

.innerPricing {
	margin-top: 2em;
	padding: 2.5em 2em;
	font-size: 1em;
	color: #fff;
	background-color: #EFF2F8;
}

.innerPricing p {
	color: #454545;

}

.outerPricing {
	display: inline-block;
	padding-ledft: 24px;
	vertical-align: top;
	box-sizing: border-box;
	letter-spacing: normal;
	word-spacing: normal;
	width: 375px;
}

.pricingPrice {
	margin: 1.6em 0;
	line-height: .75;
	font-size: 1.2em;
	font-weight: 700;
}

.pricingDescription {
	padding: 0 2em;
	margin-bottom: 1em;
	line-height: 1.5;
	color: #000;
	font-size: 1.4em;
}

p.pricingDescription {
	font-size: 20px;
}

.pricingButton {
	color: #fff;
	background-color: #f90;
	border-color: #f90;
	border-radius: 99em;

}

.o-Button {
	border-radius: 99em;
	-webkit-appearance: none;
	box-sizing: border-box;
	color: inherit;
	cursor: pointer;
	display: inline-block;
	font: inherit;
	line-height: normal;
	margin: 0;
	padding: .75em 2em .6em;
	position: relative;
	text-align: center;
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: normal;
}

a.pricingButton.o-Button {
	font-size: 1.2em;
}

.pricingDescriptionB {
	margin-top: 20px
}

p.pricingDescriptionB {
	font-style: italic;
}

p.logosText {
	margin-top: 3em;
	color: #00bfff;
	font-size: 1.4em;
}


width: 150px;
float: left;
padding: 20px;
border: #dcdcdc solid 1px;
margin: 10px;


.brandSpace {
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.merchandise img {}

.pricingFeatures {
	width: 375px;

}

.pricingFeatures table {
	width: 100%;
	text-align: left;
}

.pricingFeatures h3 {
	margin: .666em 0;
	font-size: 1.1em;
	font-weight: 400;
}

.pricingFeatures td:nth-child(1),
.pricingTable-firstTable_table td:nth-child(1) {
	text-align: center;
	width: 20%;
}

.pricingFeatures td,
.pricingTable-firstTable_table td {
	padding: .25em .5em;
}

.Grid__element {
	display: inline-block;
	padding-lefdt: 24px;
	vertical-align: top;
	box-sizing: border-box;
	letter-spacing: normal;
	word-spacing: normal;
}


@media only screen and (min-width: 765px) {
	.G-1-2 {
		width: 50%;
	}
}


.pricingSpace {
	max-width: 55pc;
	margin: 0em auto 1em;
}

.c-pricingFeatures__checkmark {
	display: inline-block;
	height: 22px;
	width: 22px;
	background-image: url(/images/checkmark.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

span.everything {
	font-size: 30px;
}

a.secondary {
	margin-top: 42px;
}

.portfolio p {
	margin-top: 20px;
}

.separator {
	height: 1px;
	background-color: rgba(208, 211, 220, 0.4);
	position: relative;
	z-index: 0;
}

.separator button {
	position: absolute;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	left: 50%;
	width: 250px;
	height: 60px;
	font-size: 20px;
}

.separator button.primary {
	cursor: pointer !important;
	border-radius: 100px;
	border: 0;
	background: linear-gradient(45deg, #F4A06E 0%, #EE687B 100%);
	box-shadow: 0 10px 20px 0 rgba(239, 107, 123, 0.2);
	font-family: 'Poppins', Helvetica, sans-serif;
	font-size: 20px;
	text-align: center;
	color: #ffffff;
	padding: 15px 30px;
}

.pricingSpace button {
	position: absolute;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	left: 50%;
	width: 250px;
	height: 60px;
	font-size: 20px;
}

.pricingSpace button.primary,
.footer button.primary,
.hero-content button.primary,
.priceGuarantee button {
	cursor: pointer !important;
	border-radius: 100px;
	border: 0;
	background: linear-gradient(45deg, #F4A06E 0%, #EE687B 100%);
	box-shadow: 0 10px 20px 0 rgba(239, 107, 123, 0.2);
	font-family: 'Poppins', Helvetica, sans-serif;
	font-size: 20px;
	text-align: center;
	color: #ffffff;
	padding: 15px 30px;
}

.pricingButton {
	display: inline-block;
	margin: 20px 0;
}

.pricingArea {
	background: #f9f9f9;
}

.portfolioImages ul {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

.portfolioImages li {
	width: 20%;
	text-align: center;
	/* height: 100px; */
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	padding: 5px;
}

.portfolioImages img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.portfolioImages {
	width: 100%;
	margin: 0 auto 25px;
}

.footer .portfolioImages li {
	width: 25%;
	text-align: center;
	/* height: 100px; */
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	padding: 5px;
}

.footer h2 {
	font-size: 1.6em;
}

.footer p {
	font-size: 17px;
	margin: 10px 0 20px 0;
}

.footer .pricingButton {
	margin-bottom: 3em;
}

.footer-text p {
	color: #676767;
	font-size: 14px;
}

.past-main .cta-header {
	cursor: pointer !important;
	border-radius: 100px;
	border: 0;
	background: linear-gradient(45deg, #F4A06E 0%, #EE687B 100%);
	box-shadow: 0 10px 20px 0 rgba(239, 107, 123, 0.2);
	font-size: 14px;
	text-align: center;
	color: #fff!important;
	padding: 13px 20px;
}

.hero-content .pricingButton {
	margin: 10px 0;
}

.past-main a.cta-contact {
	color: #717171!important;
}

p.prePlaces {
	color: #824bc4;
	font-size: 1.4em;
}

.portfolio .pitch-intro h1 {
	margin: 0 0 10px 0;
	background-image: linear-gradient(to right, #eb4783, #824bc4);
	font-size: 3.5em;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.iconImage img {
	margin: 0 auto;
	bottom: 0;
}

.iconImage {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	height: 120px;
	margin: 0 0 20px;
}

.navbar .navbar-brand img {
	width: 125px;
}

.past-main .navbar-brand img {
	width: 125px;
}

p.portfolioBelow {
	color: #eb4783;
	font-size: 1.4em;
	margin: 0 auto;
	line-height: 1.4;
	padding: 0 1.5em;
}

.logo-fix {
	display: none;
}

.navbar-default.past-main .logo-scroll {
	display: none;
}

.navbar-default.past-main .logo-fix {
	display: block;
}





.input1 {
	padding: 15px;
	font-size: 15px;
	display: inline-block;
	width: 60%;
	border: none;
	height: 60px;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

.submit_button {
	box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);
	-moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);
	-webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);

	border: none;
	display: inline-block;
	padding: 15px;
	float: right;
	background-color: #68cff5;
	width: 40%;
	height: 60px;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

.inner {
	width: 95%;
	max-width: 95%;
}


.fsp-wrapper {}

.fsp-close {

	font-size: 40px !important;
}


@media screen and (min-width: 120px) and (max-width: 768px) {
	.input1 {
		display: block;
		width: 100%;

	}

	.submit_button {

		box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);
		-moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);
		-webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);

		border: none;
		display: block;
		padding: 15px;
		float: none;
		background-color: #68cff5;
		width: 100%;
		height: 60px;
		font-size: 15px;
		font-weight: bold;
		color: #FFF;






	}

	.inner {
		width: 95%;
		max-width: 600px;
	}



}





input.input1 {
	padding: 15px;
	font-size: 15px;
	display: inline-block;
	width: 60%;
	border: none;
	height: 60px;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

input[type="text"],
textarea,
textarea.form-control {
	margin: 0;
	vertical-align: middle;
	background: #F8F8F8;
	font-weight: 300;
	line-height: 50px;
	color: #888888;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}

form#w0 {
	margin: 1.12em 0;
}

.inner {
	width: 95%;
	max-width: 95%;
}

input.submit_button {
	font-family: 'Poppins';
	font-weight: 600;
}

.submit_button {
	box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);
	-moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);
	-webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .27);
	border: none;
	display: inline-block;
	padding: 15px;
	float: right;
	background-color: #68cff5;
	width: 40%;
	height: 60px;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

h2.popup-header {
	font-size: 25px;
	color: #111111;
	font-weight: 600;
	line-height: 1.;
}

input[type=submit] {
	-webkit-appearance: button;
	cursor: pointer;
}

a.fsp-close {
	text-decoration: none;
}




.merchandise-section {
	background: url(/images/hand-design-bg.jpg);
	background-size: cover;
	box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.85);
	padding: 100px 0 100px 0;
}

.fiverr {
	margin-bottom: 40px;
}

.portfolioSlider {
	margin-bottom: 25px
}

.footercarousel {
	margin-bottom: 25px
}



/*-------------------------------------------------------
------------- Pricing table ------------
--------------------------------------------------------*/

@charset "UTF-8";
.pricingTable {
	margin: 10px auto 40px;
}

.pricingTable > .pricingTable-title {
	text-align: center;
	color: #6e768d;
	font-size: 3em;
	font-size: 300%;
	margin-bottom: 20px;
	letter-spacing: 0.04em;
}

.pricingTable > .pricingTable-subtitle {
	text-align: center;
	color: #b4bdc6;
	font-size: 1.8em;
	letter-spacing: 0.04em;
	margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
	.pricingTable > .pricingTable-subtitle {
		margin-bottom: 30px;
	}
}

.pricingTable-firstTable {
	list-style: none;
	padding-left: 2em;
	padding-right: 2em;
	text-align: center;
}

.pricingTable-firstTable_table {
	vertical-align: middle;
	width: 31%;
	background-color: #ffffff;
	display: inline-block;
	padding: 0px 30px 40px;
	text-align: center;
	max-width: 320px;
	transition: all 0.3s ease;
	border-radius: 5px;
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table {
		display: block;
		width: 90%;
		margin: 0 auto;
		max-width: 90%;
		margin-bottom: 20px;
		padding: 10px;
		padding-left: 20px;
	}
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table > * {
		display: inline-block;
		vertical-align: middle;
	}
}

@media screen and (max-width: 480px) {
	.pricingTable-firstTable_table > * {
		display: block;
		float: none;
	}
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table:after {
		display: table;
		content: '';
		clear: both;
	}
}



@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table:hover {
		transform: none;
	}
}

.pricingTable-firstTable_table:not(:last-of-type) {
	margin-right: 2.5%;
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table:not(:last-of-type) {
		margin-right: auto;
	}
}

.pricingTable-firstTable_table:nth-of-type(2) .pricingTable-firstTable_table__getstart {
	background: linear-gradient(45deg, #F4A06E 0%, #EE687B 100%);
	border: none;
	color: #fff;
}

.pricingTable-firstTable_table:nth-of-type(2) {
	position: relative;
	-webkit-box-shadow: 0px 2px 5px 3px #dcdcdc;
	-moz-box-shadow: 0px 2px 5px 3px #dcdcdc;
	box-shadow: 0px 8px 17px 12px #dcdcdc;
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table:nth-of-type(2) h1 {
		padding-top: 8%;
	}
}

.pricingTable-firstTable_table:nth-of-type(2):before {
	content: 'Most Popular';
	position: absolute;
	color: white;
	display: block;
	background-color: #3bbdee;
	text-align: center;
	right: 15px;
	top: -25px;
	font-weight: bold;
	height: 65px;
	width: 65px;
	border-radius: 50%;
	box-sizing: border-box;
	font-size: 0.6em;
	padding-top: 22px;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	transition: all 0.5s ease;
}

@media screen and (max-width: 988px) {
	.pricingTable-firstTable_table:nth-of-type(2):before {
		font-size: 0.6em;
	}
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table:nth-of-type(2):before {
		left: 10px;
		width: 45px;
		height: 45px;
		top: -10px;
		padding-top: 13px;
	}
}

@media screen and (max-width: 480px) {
	.pricingTable-firstTable_table:nth-of-type(2):before {
		font-size: 0.45em;
	}
}


.pricingTable-firstTable_table__header {
	font-size: 1.6em;
	padding: 40px 0px 0px;
	font-weight: 600;
	background-image: linear-gradient(to right, #ea0056, #ff5200);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1068px) {
	.pricingTable-firstTable_table__header {
		font-size: 1.45em;
	}
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table__header {
		padding: 0px;
		border-bottom: none;
		float: left;
		width: 33%;
		padding-top: 3%;
		padding-bottom: 2%;
	}
}

@media screen and (max-width: 610px) {
	.pricingTable-firstTable_table__header {
		font-size: 1.3em;
	}
}

@media screen and (max-width: 480px) {
	.pricingTable-firstTable_table__header {
		float: none;
		width: 100%;
		font-size: 1.8em;
		margin-bottom: 5px;
	}
}

.pricingTable-firstTable_table__pricing {
	font-size: 3em;
	padding: 20px 0px;
	border-bottom: 2px solid #ebedec;
	line-height: 0.7;
}

@media screen and (max-width: 1068px) {
	.pricingTable-firstTable_table__pricing {
		font-size: 2.8em;
	}
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table__pricing {
		border-bottom: none;
		padding: 0;
		float: left;
		clear: left;
		width: 33%;
	}
}

@media screen and (max-width: 610px) {
	.pricingTable-firstTable_table__pricing {
		font-size: 2.4em;
	}
}

@media screen and (max-width: 480px) {
	.pricingTable-firstTable_table__pricing {
		float: none;
		width: 100%;
		font-size: 3em;
		margin-bottom: 10px;
	}
}

.pricingTable-firstTable_table__pricing span:first-of-type {
	font-size: 0.35em;
	vertical-align: top;
	letter-spacing: 0.15em;
}

@media screen and (max-width: 1068px) {
	.pricingTable-firstTable_table__pricing span:first-of-type {
		font-size: 0.3em;
	}
}

.pricingTable-firstTable_table__pricing span:last-of-type {
	vertical-align: bottom;
	font-size: 0.30em;
	letter-spacing: 0.04em;
	padding-left: 0.2em;
}

@media screen and (max-width: 1068px) {
	.pricingTable-firstTable_table__pricing span:last-of-type {
		font-size: 0.25em;
	}
}

.pricingTable-firstTable_table__options {
	list-style: none;
	padding: 15px;
	font-size: 0.9em;
}

@media screen and (max-width: 1068px) {
	.pricingTable-firstTable_table__options {
		font-size: 0.9em;
	}
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table__options {
		border-bottom: none;
		padding: 0;
		margin-right: 10%;
	}
}

@media screen and (max-width: 610px) {
	.pricingTable-firstTable_table__options {
		font-size: 0.7em;
		margin-right: 8%;
	}
}

@media screen and (max-width: 480px) {
	.pricingTable-firstTable_table__options {
		font-size: 1.3em;
		margin-right: none;
		margin-bottom: 10px;
	}
}

.pricingTable-firstTable_table__options > li {
	padding: 13px 0px;

}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table__options > li {
		text-align: left;
	}
}

@media screen and (max-width: 610px) {
	.pricingTable-firstTable_table__options > li {
		padding: 5px 0;
	}
}

@media screen and (max-width: 480px) {
	.pricingTable-firstTable_table__options > li {
		text-align: center;
	}
}

.pricingTable-firstTable_table__options > li:before {
	content: '✓';
	display: inline-block;
	margin-right: 15px;
	color: white;
	background-color: #74ce6a;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	font-size: 0.8em;
	padding: 2px;
	text-align: center;
}

@media screen and (max-width: 1068px) {
	.pricingTable-firstTable_table__options > li:before {
		width: 14px;
		height: 14px;
		padding: 1.5px;
	}
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table__options > li:before {
		width: 12px;
		height: 12px;
	}
}

.pricingTable-firstTable_table__getstart {
	color: #585858;
	margin-top: 30px;
	border-radius: 100px;
	cursor: pointer;
	padding: 15px;
	letter-spacing: 0.07em;
	transition: all 0.4s ease;
	border: solid #e4e4e4 1px;
}

@media screen and (max-width: 1068px) {
	.pricingTable-firstTable_table__getstart {
		font-size: 0.95em;
	}
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table__getstart {
		margin-top: 0;
	}
}

@media screen and (max-width: 610px) {
	.pricingTable-firstTable_table__getstart {
		font-size: 0.9em;
		padding: 10px;
	}
}

@media screen and (max-width: 480px) {
	.pricingTable-firstTable_table__getstart {
		font-size: 1em;
		width: 50%;
		margin: 10px auto;
	}
}



@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table__getstart:hover {
		transform: none;
		box-shadow: none;
	}
}

.pricingTable-firstTable_table__getstart:active {
	box-shadow: inset 0 0 10px 1px #66a564, 0px 40px 29px -19px rgba(102, 172, 100, 0.95);
	transform: scale(0.95) translateY(-9px);
}

@media screen and (max-width: 767px) {
	.pricingTable-firstTable_table__getstart:active {
		transform: scale(0.95) translateY(0);
		box-shadow: none;
	}
}

body .pricingArea {
	font-family: 'Montserrat', sans-serif;
	font-size: 100%;
	background-color: #f9f9f9;
	color: #717787;
}


.pricingArea {

	padding: 100px 0 100px 0;
}

.pricingPitch h1 {
	font-size: 34px;
	font-weight: 600;
	margin: 0 0 30px 0;
}

.pricingPitch p {
	font-weight: 400;
	font-size: 17px;
	line-height: 1.65;
	color: #686c82;
	mkargin: 10px 0 50px 0;
}

.pricingTable-firstTable_table span {
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -1px;
}

span.currency {
	display: inline-block;
	color: #000;
}

span.amount {
	display: inline-block;
	line-height: 1em;
	font-size: 1.1em;
	color: #000;
}

span.period {
	display: block;
	text-transform: uppercase;
	margin-top: 5px;
	opacity: .8;
	letter-spacing: 2px;
	color: #777;
}

.priceGuarantee h1 {
	margin: 20px 0 20px 0;
	background-image: linear-gradient(to right, #eb4783, #824bc4);
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.priceGuarantee p {
	margin-bottom: 20px;
	line-height: 1.5em;
}

p.spotsLeft {
	font-weight: 400;
	font-size: 1.25em;
	line-height: 1.65;
	font-style: italic;
	color: #454545;
}

.pricingTable-firstTable_table td {
	text-align: left;
}

.pricingTable-firstTable_table td h3 {
	font-size: 0.95em;
	line-height: 1.3em;
}


.sliderLogo {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
}


.logoContainer {
	width: 120px;
}

.logoContainer img {
	height: 100%;
}

@media screen and (max-width: 992px) {
	.brands {
		display: none;
	}
	.faq h3 {
		font-weight: 500;
		margin-bottom: 1em;
	}
}

@media screen and (min-width: 993px) {
	.sliderLogo {
		display: none;
	}
}


.pricingTable-firstTable_table table {
	margin: 15px 0;
	border-bottom: 2px solid #ebedec;
}

h3.boldFeature {
	font-weight: bold;
}


.c-PricingTooltip {
	position: relative;
}

.c-PricingTooltip__label {
	border-bottom: 1px dotted;
	cursor: pointer;
}

.c-PricingTooltip--bottom .c-PricingTooltip__text {
	top: 100%;
}

.c-PricingTooltip__text {
	position: absolute;
	margin: 0;
	padding: .8em 1em;
	font-size: .9em;
	color: #fff;
	background-color: #365257;
	border-radius: 2px;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	letter-spacing: 0.5px;
	line-height: 1.1em;
	transition: .15s ease-in-out;
}

.c-PricingTooltip--bottom .c-PricingTooltip__text:before {
	top: -9pt;
	left: 9pt;
	border: 6px solid transparent;
	border-bottom-color: #365257;
}

.c-PricingTooltip__text:before {
	content: '';
	position: absolute;
}

.c-PricingTooltip__label:active + .c-PricingTooltip__text,
.c-PricingTooltip__label:hover + .c-PricingTooltip__text {
	opacity: 1;
}




.portfolio-wrap {
	overflow: hidden;
	margin-bottom: 100px;
}

.box {
	float: left;
	position: relative;
	width: 25%;
	padding-bottom: 25%;
}

.boxInner {
	position: absolute;
	left: 5px;
	right: 5px;
	top: 5px;
	bottom: 5px;
	overflow: hidden;
}

.boxInner img {
	width: 100%;
}

.boxInner .titleBox {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: -50px;
	background: #000;
	background: rgba(0, 0, 0, 0.5);
	color: #FFF;
	padding: 10px;
	text-align: center;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

body.no-touch .boxInner:hover .titleBox,
body.touch .boxInner.touchFocus .titleBox {
	margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
	/* Smartphone view: 1 tile */
	.box {
		width: 100%;
		padding-bottom: 100%;
	}
}

@media only screen and (max-width: 650px) and (min-width: 481px) {
	/* Tablet view: 2 tiles */
	.box {
		width: 50%;
		padding-bottom: 50%;
	}
}

@media only screen and (max-width: 1050px) and (min-width: 651px) {
	/* Small desktop / ipad view: 3 tiles */
	.box {
		width: 33.3%;
		padding-bottom: 33.3%;
	}
}

@media only screen and (max-width: 1290px) and (min-width: 1051px) {
	/* Medium desktop: 4 tiles */
	.box {
		width: 25%;
		padding-bottom: 25%;
	}
}


.hero-portfolio-section {
	height: 100%;
	background: url(/images/hero-portfolio-background.jpg) no-repeat center center;
	background-size: cover!important;
	box-shadow: inset 0 0 0 2000px rgba(41, 41, 41, 0.85);
	padding: 100px 0 0 0;
}

.hero-portfolio-section .hero-content {
	padding: 60px 0 40px 0;
	overflow: hidden;
	text-align: center;
}

.active-menu {
	font-weight: bold;
}

.contactTeam {
	background: #f0f4f7;
	padding: 20px 0 20px 0;
}

.contactTeam h1,
.contactTeam p {
	color: #000;
}

button#teamChat {
	cursor: pointer !important;
	border-radius: 100px;
	font-family: 'Poppins', Helvetica, sans-serif;
	font-size: 20px;
	text-align: center;
	color: #EE687B;
	padding: 15px 30px;
	border: 4px solid #EE687B;
	margin-top: 30px;
	background: #f0f4f7;
}

.testimonialBox {
	background: #f0f4f7;
	padding: 80px 0 80px 0;
}



.testimonialBox h1,
.testimonialBox p {
	color: #000;
}

.testimonialBox .pitch-intro {
	padding: 0;
}

.content {
	padding: 0px 0 20px 0;
}

.clientName {
	font-weight: bold
}

.content {
	background: url(/images/icon_testimonial_before.png) 0 0 no-repeat;
	left: 0;
}

.content:before,
.content:after {
	content: "";
	height: 15px;
	width: 19px;
	position: absolute;
}

.author h3 {
	font-size: 15px;
	color: #333;
	font-weight: bold;
	padding: 0 0 5px;
	line-height: 1.3em;
}

.author h4 {
	color: #333;
	font-size: 15px;
	font-weight: 400;
	padding: 0 0 5px;
}

.testimonialImage {
	margin-bottom: 20px;
}


.pricingTable .pricingButton button {
	cursor: pointer !important;
	border-radius: 100px;
	border: 0;
	background: #f08275;
	font-size: 15px;
	text-align: center;
	color: #fff!important;
	padding: 16px 50px;
}

.pricingTable .pricingButton {
	display: inline-block;
	margin: 10px 0 0 0;
}

p.singleJob {
	font-size: 14px;
}

.priceFooter {
	margin-top: 50px;
}

.pricingArea .priceGuarantee {
	border: solid #d0d0d0 1px;
	border-radius: 20px;
	width: fit-content;
	padding: 20px 40px;
	margin: 0 auto;
}

.singleJob a {
	color: #f08275;
}

.singleJob a:focus,
.singleJob a:hover {
	color: #b7665d;
	text-decoration: underline;
}


.container-lg {
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

#customer ul {
	justify-content: space-between;
	will-change: transform;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
}

#customer li {
	display: inline-block;
	margin: 20px;
}

#customer a {
	display: block;
}

.customer-logo {
	max-width: 125px;
	max-height: 65px;
}

.testimonialSlider.owl-theme .owl-nav {
	display: none;
}

.testimonialSlider .owl-theme .owl-dots {
	margin-top: 1.2em;
}
