/*-------------
 	General
-------------*/

#particle-canvas {
  width: 100%;
  height: 100%;
}

#cover {
    background: white;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html{
	font: normal 16px sans-serif;
	color: #555;
}

ul, nav{
	list-style: none;
}

img {
	max-width: 200px;
}

.modal-container {
    position: fixed;
    display: none;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 9999;
}

.modal-background {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    width: 100%;
    height: 110%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 300;
    position: relative;
    float: none;
    clear: both;
    width: 80%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div.info {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    font-weight: 800;
}

button.btn {
    border-radius: 4px;
    color: #fff;
    background-color: #2586b7;
    letter-spacing: 1px;
    text-transform: initial;
    font-size: 16px;
    border: none;
}


.particles-overlay {
	position: absolute;
	top: 20%;
	width: 80%;
	color: #FFF;
	font-family: sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	/*background: rgba(0,0,0,0.5);*/
	height: 400px;
	border-radius: 10px;
}

.particles-overlay a.btn {
	margin-top: 25px;
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	opacity: 0.9;
    font-family: 'Quicksand', sans-serif;
}

a:hover{
	opacity: 1;
}

a.btn{
	color: #fff;
	border-radius: 4px;
    color: #fff;
    background-color: #2586b7;
	letter-spacing: 1px;
	text-transform: initial;
	padding: 5px;
}


.hero a.btn:first-of-type {
	margin-right: 50px;
}

a.btn.circle {
	font-weight: 400;
	border-radius: 50px;
	padding: 15px;
}

a.btn-watch {
	border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px 15px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-transform: initial;

}

a.btn-watch:hover {
	background: rgba(255,255,255,0.8);
	color: rgba(0,0,0,0.9);
	-webkit-transition: color, background 0.3s;
	-o-transition: color, background 0.3s;
	transition: color, background 0.3s;
}

a.btn-watch:hover .fa {
	color: rgba(0,0,0,0.9);
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}

.btn-watch i {
	margin-right: 10px;
}

hr{
	width: 150px;
	height: 2px;
	background-color: #2196F3;
	border: 0;
	margin-bottom: 80px;
}

section{
	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-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-bottom: 50px;
}

section h3.title{
	color: #414a4f;
	text-transform: capitalize; 
	font: bold 32px 'Open Sans', sans-serif;
	margin-bottom: 15px;
	margin-top: 15px;
	text-align: center;
}

section p{
	max-width: 800px;
	text-align: center;
	margin-bottom: 15px;
	padding: 0 20px;
	line-height: 2;
}

ul.grid{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}


/*-------------
 	Header
-------------*/

header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
/*	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;*/
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	padding: 35px 100px 0;
}

header h2{
	font-family: 'Quicksand', sans-serif;
}

header nav {
	margin-top: 5px;
    margin-left: 25px;
    width: 75%;
}

header nav ul {
	display: flex;
	width: 100%;
}

header nav ul li {
	width: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}

header nav ul li:nth-child(4) {
	margin-left: auto;
}

header nav ul li:nth-child(4), header nav ul li:nth-child(5) {
	width: 12%;
}

header h2 a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	min-width: 236px;
	white-space: nowrap;
}

header nav li a:hover {
	color: #2196F3;
	-webkit-transition: color, -webkit-text-decoration 0.3s;
	transition: color, -webkit-text-decoration 0.3s;
	-o-transition: color, text-decoration 0.3s;
	transition: color, text-decoration 0.3s;
	transition: color, text-decoration 0.3s, -webkit-text-decoration 0.3s;
}

#mobile-nav {
	display: none;
}

#mobile-nav-icon {
	display: none;
}

nav ul {
	display: inline-flex;
}

header h2 img {
	margin-right: 5px;
}

header nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

header nav li{
	margin: 0 15px;
}

header nav li:first-child{
	margin-left: 0;	
}

header nav li:last-child{
	margin-right: 0;	
}

#mobile-nav-icon {
	display: none;
}

@media (min-width: 1300px) and (max-width: 2000px) {
	header nav ul li:nth-child(4), header nav ul li:nth-child(5) {
		width: 5% !important;
	}
}

@media (max-width: 1000px) {
	header nav ul li {
		width: 12%;
	}
}

@media (max-width: 900px){
	header {
		padding-left: 5px !important
	}

	header h2 a {
		justify-content: left;
	}

	#desktop-nav {
		display: none;
	}

	#mobile-nav-icon {
		display: block;
		position: absolute;
		right: 5%;
		top: 30%;
	}

	header{
		padding: 20px 50px;
	}

	#mobile-nav h2 {
		width: 285px;
		margin: 0 auto;
	}

	#mobile-nav h2 a {
	    flex-direction: column;
	    min-width: 285px
	}

	#mobile-nav {
	    display: none;
	    position: fixed;
	    width: 100%;
	    flex-direction: column;
	    height: 100%;
        background-color: #00aeff;
	    background-image: linear-gradient(331deg, #00aeff, #3369e6 56%, #3f95e6);
	    top: 0;
	    left: 0;
	    right: 0;
	    margin: 0;
	    border: 0;
	    overflow: hidden;
	}

	.mobile-nav-close {
	    width: 2%;
	    position: absolute;
	    right: 12%;
	    top: 2%;
	}

	#mobile-nav ul {
		display: flex;
		width: 100%;
		height: 100vh;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	#mobile-nav ul li {
		margin: 50px 0px;
		font-size: 20px;
		font-weight: 500;
		width: 50% !important;
		font-weight: 800;
	}

	#mobile-nav ul li a.btn{
		padding: 10px 15px;
	}
}


@media (max-width: 700px){
	header{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;		
	}

	header h2{
		margin-bottom: 15px;
	    width: 70%;
		margin-left: -25%;
	}

	#mobile-nav ul li {
		margin: 25px 0px;
	}
}



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

.hero{
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	min-height: 77.5vh;
	max-height: 77.5vh;
	color: #fff;
	text-align: center;
}

.hero-demo {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	min-height: 30vh;
	max-height: 30vh;
    background: #3E396B;
	text-align: center;
	color: white;
}

.hero .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #2196F3;
	z-index: -1;
}

.hero .background-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.75;
}

.hero h1{
    font: bold 36px 'Quicksand', sans-serif;
    margin-bottom: 25px;
    width: 80%;
    margin: 0 auto;
}

.hero h4{
	font: normal 20px 'Quicksand', sans-serif;
	margin-bottom: 40px;
	text-transform: none;
}

.hero a.btn{
    padding: 15px 47.5px;
    border-radius: 50px;
}

.hero a.btn:hover {
	margin-top: -5px;
}

.sign-up-btn {
	background-image: -webkit-linear-gradient(10deg, #00aeff, #3369e7);
	background-image: -o-linear-gradient(10deg, #00aeff, #3369e7);
	background-image: linear-gradient(80deg, #00aeff, #3369e7);
}

a.log-in-btn {
	background: -webkit-linear-gradient(166deg, #1cc7d0, #2dde98);
	background: -o-linear-gradient(166deg, #1cc7d0, #2dde98);
	background: linear-gradient(284deg, #1cc7d0, #2dde98);
}

.video-thumbnail {
	margin-top: -50px;
	position: relative;
}

.video-thumbnail i{
	position: absolute;
	top: -325%;
	bottom: 0;
	right: 0;
	left: 0;
	font-size: 60px;
	color: black;
	display: none;
}

.video-thumbnail h5 {
	position: absolute;
	top: -450%;
	bottom: 0;
	right: 0;
	left: 0;
	font-size: 24px;
	color: black;
	display: none;
	height: 100%
}

.video-thumbnail img:hover .video-thumbnail i {
	display: block;
}

@media (max-width: 1300px) {

	.particles-overlay h1 {
	    width: 95%;
	}
}

@media (min-width: 1000px) and (max-height: 650px) {

	.hero {
		min-height: 90vh;
	}
}

@media (min-width: 1250px) {

	.particles-overlay h1 {
		width: 60%;
	}
}

@media (max-width: 1100px){

	.particles-overlay {
		width: 100%;
		margin-top: -40px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: wrap;
		    flex-wrap: nowrap;
	}

}


@media (max-width: 800px){

	.hero{
		min-height: 600px;
	}

	.hero h1{
		font-size: 44px;
	}

	.hero h4 {
		font-size: 16px;
	}

	.hero a.btn{
		padding: 15px 40px;
	}

	.mobile-hide {
		display: none;
	}

}

@media (max-width: 600px) {

	.hero {
		/*padding-top: 50px !important;*/
		padding-bottom: 75px;
	}

	.hero h1 {
		font-size: 30px;
		margin-top: 50px;
	}

	.hero h4 {
		font-size: 14px;
		width: 80%;
	}

	a.btn-watch {
		border: none;
	}

	.process img.sm-left-20 {
		margin-left: -30px;
	}

	.cta-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-bottom: 50px;
	}

	.hero a.btn:first-of-type {
	    margin-right: 0px;
	}

}

/*--------------------
 	Trusted By Section
---------------------*/

.trusted-by {
	background: #ececec;
	margin-top: -25px;
	padding-top: 15px;
	padding-bottom: 15px;
	height: 200px;
}

.trusted-by li {
	font-family: Montserrat;
	text-transform: uppercase;
	color: #363636;
}

.trusted-by .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 100%;
}

.trusted-by .grid li {
	-ms-flex-preferred-size: 15.5%;
	    flex-basis: 15.5%;
}

.trusted-by .grid li img {
	width: 85%;
	max-height: 100px;
}

@media (min-width: 1400px) {
	.trusted-by {
		height: 250px;
		margin-top: -75px;
	}
}

@media (max-width: 600px) {

	.trusted-by {
		height: 150px;
	}

	.trusted-by .grid li.trusted-text {
	flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	}

	.trusted-by .grid li {
	    flex-basis: 33%;
		-ms-flex-preferred-size: 33%;
	}

}

/*--------------------
 	Our Work Section
---------------------*/

.оur-work{
	background-color: #fff;
}

.our-work .grid li{
	padding: 20px;
	height: 350px;
	border-radius: 3px;

	background-clip: content-box;
	background-size: cover;
	background-position: center;
	background-color: #333;
}

.our-work .grid li.small{
	-ms-flex-preferred-size: 40%;
	    flex-basis: 40%;
}

.our-work .grid li.large{
	-ms-flex-preferred-size: 60%;
	    flex-basis: 60%;
}


@media (max-width: 1000px){

	.our-work .grid li.small,
	.our-work .grid li.large{
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}

}



/*----------------------
 	Features Section
----------------------*/

.features{
	background-color: #f7f7f7;
}

.features img {
    max-width: 250px;
    max-height: 60px;
}

.press img {
    max-width: 200px;
    max-height: 80px;
}

.features .grid li{
	padding: 30px;
    -ms-flex-preferred-size: 28%;
    flex-basis: 28%;
    text-align: center;
    background: white;
    margin: 2%;
    -webkit-box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62,57,107,0.06);
    box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62,57,107,0.06);
    border-radius: 6px;
    -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    -o-transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    will-change: transform, box-shadow;
}

.features .grid li:hover {
    -webkit-transform: translateY(-5px) translateZ(0);
    transform: translateY(-5px) translateZ(0);
    -webkit-box-shadow: 0 16px 32px 0 rgba(62,57,107,0.28), 0 0 0 transparent;
    box-shadow: 0 16px 32px 0 rgba(62,57,107,0.28), 0 0 0 transparent;
}

.features .grid li i{
    font-size: 50px;
    color: #2196F3;
    margin-bottom: 25px;
}

.press .grid li i {
	font-size: 20px;
    color: white;
}

.features .grid li h4{
    font-size: 20px;
    color: #414a4f;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    margin-bottom: 25px;
}

.features .grid li p{
    margin: 0;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    color: #868686;
}

.press .grid li {
	flex-basis: 27%;
}


@media (max-width: 1000px){

	.features .grid li{
		-ms-flex-preferred-size: 70%;
		    flex-basis: 70%;
		margin-bottom: 65px;
	}

	.features .grid li:last-child{
		margin-bottom: 0;
	}

	.press .grid li{
		-ms-flex-preferred-size: 70%;
		    flex-basis: 70%;
		margin-bottom: 65px;
	}

	.press .grid li:last-child{
		margin-bottom: 0;
	}

}


@media (max-width: 600px){

	.features .grid li{
		-ms-flex-preferred-size: 85%;
		    flex-basis: 85%;
	}

	.press .grid li{
		-ms-flex-preferred-size: 85%;
		    flex-basis: 85%;
	}

}


/*--------------------
 	Process Section
--------------------*/

.process ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	padding: 20px 0;
}

/*.process ul li.reverse {
	flex-direction: row-reverse;
}*/

.process ul li div {
	text-align: center;
}

.process h4 {
    background: black;
    color: white;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    margin: 0 auto;
    text-align: center;
    padding: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.img-container {
    width: 10%;
    margin-left: 12.5%;
}

.process h5 {
	margin: 10px 0;
	font-size: 20px;
	color: #2196F3;
	text-align: left;
	font: bold 24px 'Open Sans', sans-serif;
}

.process p {
	text-align: left;
	padding-left: 0;
	font-size: 18px;
}

.process img {
	max-height: 150px;
    margin-left: 25%;
}

.process .gutter {
	width: 15%;
}

@media (max-width: 1200px){

	.img-container {
	    width: 25%;
	    margin-left: 5%;
	}

	.gutter {
		width: 10%;
	}
}

@media (max-width: 800px){

	.img-container {
		margin-left: 0;
	}

.process img {
    max-height: 150px;
    margin-left: 0%;
}

	.process ul li {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.process h5, .process p {
		text-align: center;
		padding: 0 10%;
	}

}

@media (min-width: 400px) and (max-width: 800px) {
	.process img.sm-left-20 {
		margin-left: -30px;
	}
} 

/*--------------------
 	Product Section
--------------------*/

.laptop {
    display: block;
    background: url('../img/laptop.png') 0 0 no-repeat;
    position: relative;
    top: 0;
    left: 0;
    max-width: 952px !important;
    z-index: 1;
    background-size: 100% auto;
    /* padding-bottom: 60%; */
    width: 100%;
    height: 550px;
    text-align: center;
}

.our-product video {
	max-width: 75%;
	margin-top: 5%;
}

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

.reviews{
	background-color: #fff;
    padding-bottom: 0;
}

.reviews .quote{
	text-align: center;
	width: 80%;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0;
}

.reviews .author{
    font-size: 18px;
    margin-bottom: 50px;
}

.reviews .author:last-child{
    margin-bottom: 0;
}

@media (max-width: 1000px){

	.reviews .quote{
		font-size: 20px;
	}

	.reviews .author{
	    font-size: 16px;
	}

}


/*---------------------
 	Stats Section
---------------------*/

.stats {
	width: 100%;
	height: 300px;
	background: #ccc;
}

.stats canvas{
    background-color: #000;
    opacity: 0.75;
	position: absolute !important;
    height: 100%;
    width: 100%;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


.stats ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	z-index: 999;
	height: 300px;
}

.stats li {
	width: 25%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
    height: 170px;
    margin-top: 65px;
}

.stats h5, .stats h6 {
	width: 100%;
	text-align: center;
	color: white;
}

.stats span {
	margin-bottom: 26px;
	max-height: 70px;
}

.stats h5 {
    margin-bottom: 13px;
    letter-spacing: 1px;
    font-size: 36px;
    font-family: "Montserrat",sans-serif;
}

.stats h6 {
    font-size: 16px;
}

.stats span {
	display: block;
    margin-bottom: 26px;
    font-size: 70px;
    color: #f6a006;
}

@media (max-width: 800px){

	.stats {
		height: 550px;
	}

	.stats ul {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}


	.stats li {
		width: 50%;
	}

}



/*---------------------
 	Testimonials Section
---------------------*/

.reviews {
	background: #fff;
}

.reviews p {
	text-align: center;
	padding: 14px 20px;
	margin-bottom: 0;
}

.reviews .gallery {
	width: 100%;
	height: 400px;
}

.testimonial-text {
	color: white;
	font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    position: relative;
    quotes: "\201C""\201D""\2018""\2019";
}

blockquote {
	margin-bottom: 20px;
}

blockquote:after {
	color:#ccc;
	font-family:Source Sans Pro;
	content: open-quote;
	font-size:80px;
	position:absolute;
	left:50%;
	bottom:calc(100% - 20px);
	background:#4d87e2;
	height:55px;
	width: 55px;
	line-height:normal;
	text-align:center;
	-webkit-transform:translateX(-50%);
	    -ms-transform:translateX(-50%);
	        transform:translateX(-50%);
}

.item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	/*background: #2196F3 !important;*/
}

.item img.testimonial-logo {
    max-height: 50px;
    margin-bottom: 35px;
}

.item .chevron-left-container {
	position: absolute;
	left: 3%;
}

.item .chevron-right-container {
	position: absolute;
	right: 3%;
}


.item .fa-chevron-circle-left {
	color: white;
	opacity: 0.75;
	transition: opacity 0.3s;
}

.item .fa-chevron-circle-right {
	color: white;
	opacity: 0.75;
	transition: opacity 0.3s;
}

.item .fa-chevron-circle-left:hover {
	opacity: 1;
}

.item .fa-chevron-circle-right:hover {
	opacity: 1;
}

.testimonial-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 25px;
}

.testimonial-body img {
	height: 50px;
	border-radius: 50px;
}

.testimonial-gutter {
	width: 10%;
}

.reviews h5 {
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-size: 16px;
	margin-bottom: 20px;
}

@media (max-width: 600px) {

	.chevron-left-container, .chevron-right-container {
		top: 7%;
		z-index: 9999;
	}

	.reviews .gallery {
		width: 100%;
		height: 550px;
	}
}

/*---------------------
Individual Feature Section
---------------------*/

.individual-feature {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.reverse {
	flex-direction: row-reverse;
}

.individual-feature .laptop {
    background-size: 90%;
    margin-top: 25px;
    max-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: center center;
}

.laptop1 {
	background: url('../img/mockup1.png') 0 0 no-repeat;
}

.laptop2 {
	background: url('../img/mockup2.png') 0 0 no-repeat;	
}

.laptop3 {
	background: url('../img/mockup3.png') 0 0 no-repeat;
}

.laptop4 {
	background: url('../img/mockup4.png') 0 0 no-repeat;
}

.individual-feature:nth-child(7) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}

.individual-feature:nth-child(4) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}

.individual-feature > div {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.individual-feature > div > h2 {
	margin-bottom: 25px;
	width: 60%;
    color: #2196F3;
    text-align: left;
    font: bold 38px 'Open Sans', sans-serif;
}

.individual-feature > div > p {
	width: 60%;
	text-align: left;
	padding-left: 0;
}

.bullet {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}


.fa-circle-o {
    color: #2196F3;
    font-size: 20px;
    margin-right: 20px;
}

p > span {
	line-height: 20px;
}

@media (max-width: 800px){

	.individual-feature {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.reverse {
		flex-direction: column;
	}

	.individual-feature:nth-child(7) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.individual-feature:nth-child(4) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.individual-feature > div {
		width: 80%
	}

	.individual-feature > div > h2 {
		text-align: center;
	}

	.laptop {
		height: 350px
	}


	.individual-feature > div > h2, .individual-feature > div > p {
		width: 85%;
	}

}



/*---------------------
 	Contact Section
---------------------*/

.contact{
	background-color: #f7f7f7;
}

.contact form{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;

	max-width: 800px;
	width: 80%;
}

.contact form input{
	padding: 15px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin-right: 30px;
	font-size: 18px;
	color: #555;
}

.contact form .btn{
	padding: 18px 42px;
}


@media (max-width: 800px){

	.contact form input{
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
		margin: 0 0 20px 0;
	}

}




/*-------------
 	Footer
-------------*/

footer{
	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-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	color: #fff;
	background-color: #414a4f;
	padding: 60px 0;
}

footer ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 25px;
	font-size: 32px;
}

footer ul li{
	margin: 0 8px;	
}

footer ul li:first-child{
	margin-left: 0;	
}

footer ul li:last-child{
	margin-right: 0;	
}

footer p{
	text-transform: uppercase;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

footer p a{
	color: #fff;
}

@media (max-width: 700px){

	footer{
		padding: 80px 15px;
	}

}


/* -- Demo ads -- */

@media (max-width: 1200px) {
	#bsaHolder{ display:none;}
}

.gallery .control-operator:target ~ .controls .control-button {
  color: #ccc;
  color: rgba(255, 255, 255, 0.4);
}

.gallery .control-button:first-of-type,
.gallery .control-operator:nth-of-type(1):target ~ .controls .control-button:nth-of-type(1),
.gallery .control-operator:nth-of-type(2):target ~ .controls .control-button:nth-of-type(2),
.gallery .control-operator:nth-of-type(3):target ~ .controls .control-button:nth-of-type(3),
.gallery .control-operator:nth-of-type(4):target ~ .controls .control-button:nth-of-type(4),
.gallery .control-operator:nth-of-type(5):target ~ .controls .control-button:nth-of-type(5) {
  color: white;
  color: rgba(255, 255, 255, 0.8);
}

.gallery .item:first-of-type {
  position: static;
  pointer-events: auto;
  opacity: 1;
}

.gallery .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.gallery .control-operator {
  display: none;
}

.gallery .control-operator:target ~ .item {
  pointer-events: none;
  opacity: 0;
  -webkit-animation: none;
  -o-animation: none;
  animation: none;
}

.gallery .control-operator:target ~ .controls .control-button {
  -webkit-animation: none;
  -o-animation: none;
  animation: none;
}

@-webkit-keyframes controlAnimation-2 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  14.3%, 50% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  64.3%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@-o-keyframes controlAnimation-2 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  14.3%, 50% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  64.3%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@keyframes controlAnimation-2 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  14.3%, 50% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  64.3%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@-webkit-keyframes galleryAnimation-2 {
  0% {
    opacity: 0;
  }

  14.3%, 50% {
    opacity: 1;
  }

  64.3%, 100% {
    opacity: 0;
  }
}

@-o-keyframes galleryAnimation-2 {
  0% {
    opacity: 0;
  }

  14.3%, 50% {
    opacity: 1;
  }

  64.3%, 100% {
    opacity: 0;
  }
}

@keyframes galleryAnimation-2 {
  0% {
    opacity: 0;
  }

  14.3%, 50% {
    opacity: 1;
  }

  64.3%, 100% {
    opacity: 0;
  }
}

.gallery .control-operator:nth-of-type(1):target ~ .item:nth-of-type(1) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(2):target ~ .item:nth-of-type(2) {
  pointer-events: auto;
  opacity: 1;
}

.items-2.autoplay .control-button {
  -webkit-animation: controlAnimation-2 14s infinite;
  -o-animation: controlAnimation-2 14s infinite;
  animation: controlAnimation-2 14s infinite;
}

.items-2.autoplay .item {
  -webkit-animation: galleryAnimation-2 14s infinite;
  -o-animation: galleryAnimation-2 14s infinite;
  animation: galleryAnimation-2 14s infinite;
}

.items-2 .control-button:nth-of-type(1),
.items-2 .item:nth-of-type(1) {
  -webkit-animation-delay: -2s;
  -o-animation-delay: -2s;
  animation-delay: -2s;
}

.items-2 .control-button:nth-of-type(2),
.items-2 .item:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  -o-animation-delay: 5s;
  animation-delay: 5s;
}

@-webkit-keyframes controlAnimation-3 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  9.5%, 33.3% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  42.9%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@-o-keyframes controlAnimation-3 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  9.5%, 33.3% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  42.9%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@keyframes controlAnimation-3 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  9.5%, 33.3% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  42.9%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@-webkit-keyframes galleryAnimation-3 {
  0% {
    opacity: 0;
  }

  9.5%, 33.3% {
    opacity: 1;
  }

  42.9%, 100% {
    opacity: 0;
  }
}

@-o-keyframes galleryAnimation-3 {
  0% {
    opacity: 0;
  }

  9.5%, 33.3% {
    opacity: 1;
  }

  42.9%, 100% {
    opacity: 0;
  }
}

@keyframes galleryAnimation-3 {
  0% {
    opacity: 0;
  }

  9.5%, 33.3% {
    opacity: 1;
  }

  42.9%, 100% {
    opacity: 0;
  }
}

.gallery .control-operator:nth-of-type(1):target ~ .item:nth-of-type(1) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(2):target ~ .item:nth-of-type(2) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(3):target ~ .item:nth-of-type(3) {
  pointer-events: auto;
  opacity: 1;
}

.items-3.autoplay .control-button {
  -webkit-animation: controlAnimation-3 21s infinite;
  -o-animation: controlAnimation-3 21s infinite;
  animation: controlAnimation-3 21s infinite;
}

.items-3.autoplay .item {
  -webkit-animation: galleryAnimation-3 21s infinite;
  -o-animation: galleryAnimation-3 21s infinite;
  animation: galleryAnimation-3 21s infinite;
}

.items-3 .control-button:nth-of-type(1),
.items-3 .item:nth-of-type(1) {
  -webkit-animation-delay: -2s;
  -o-animation-delay: -2s;
  animation-delay: -2s;
}

.items-3 .control-button:nth-of-type(2),
.items-3 .item:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  -o-animation-delay: 5s;
  animation-delay: 5s;
}

.items-3 .control-button:nth-of-type(3),
.items-3 .item:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}

@-webkit-keyframes controlAnimation-4 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  7.1%, 25% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  32.1%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@-o-keyframes controlAnimation-4 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  7.1%, 25% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  32.1%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@keyframes controlAnimation-4 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  7.1%, 25% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  32.1%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@-webkit-keyframes galleryAnimation-4 {
  0% {
    opacity: 0;
  }

  7.1%, 25% {
    opacity: 1;
  }

  32.1%, 100% {
    opacity: 0;
  }
}

@-o-keyframes galleryAnimation-4 {
  0% {
    opacity: 0;
  }

  7.1%, 25% {
    opacity: 1;
  }

  32.1%, 100% {
    opacity: 0;
  }
}

@keyframes galleryAnimation-4 {
  0% {
    opacity: 0;
  }

  7.1%, 25% {
    opacity: 1;
  }

  32.1%, 100% {
    opacity: 0;
  }
}

.gallery .control-operator:nth-of-type(1):target ~ .item:nth-of-type(1) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(2):target ~ .item:nth-of-type(2) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(3):target ~ .item:nth-of-type(3) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(4):target ~ .item:nth-of-type(4) {
  pointer-events: auto;
  opacity: 1;
}

.items-4.autoplay .control-button {
  -webkit-animation: controlAnimation-4 28s infinite;
  -o-animation: controlAnimation-4 28s infinite;
  animation: controlAnimation-4 28s infinite;
}

.items-4.autoplay .item {
  -webkit-animation: galleryAnimation-4 28s infinite;
  -o-animation: galleryAnimation-4 28s infinite;
  animation: galleryAnimation-4 28s infinite;
}

.items-4 .control-button:nth-of-type(1),
.items-4 .item:nth-of-type(1) {
  -webkit-animation-delay: -2s;
  -o-animation-delay: -2s;
  animation-delay: -2s;
}

.items-4 .control-button:nth-of-type(2),
.items-4 .item:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  -o-animation-delay: 5s;
  animation-delay: 5s;
}

.items-4 .control-button:nth-of-type(3),
.items-4 .item:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}

.items-4 .control-button:nth-of-type(4),
.items-4 .item:nth-of-type(4) {
  -webkit-animation-delay: 19s;
  -o-animation-delay: 19s;
  animation-delay: 19s;
}

@-webkit-keyframes controlAnimation-5 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  5.7%, 20% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  25.7%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@-o-keyframes controlAnimation-5 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  5.7%, 20% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  25.7%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@keyframes controlAnimation-5 {
  0% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }

  5.7%, 20% {
    color: white;
    color: rgba(255, 255, 255, 0.8);
  }

  25.7%, 100% {
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
  }
}

@-webkit-keyframes galleryAnimation-5 {
  0% {
    opacity: 0;
  }

  5.7%, 20% {
    opacity: 1;
  }

  25.7%, 100% {
    opacity: 0;
  }
}

@-o-keyframes galleryAnimation-5 {
  0% {
    opacity: 0;
  }

  5.7%, 20% {
    opacity: 1;
  }

  25.7%, 100% {
    opacity: 0;
  }
}

@keyframes galleryAnimation-5 {
  0% {
    opacity: 0;
  }

  5.7%, 20% {
    opacity: 1;
  }

  25.7%, 100% {
    opacity: 0;
  }
}

.gallery .control-operator:nth-of-type(1):target ~ .item:nth-of-type(1) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(2):target ~ .item:nth-of-type(2) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(3):target ~ .item:nth-of-type(3) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(4):target ~ .item:nth-of-type(4) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(5):target ~ .item:nth-of-type(5) {
  pointer-events: auto;
  opacity: 1;
}

.items-5.autoplay .control-button {
  -webkit-animation: controlAnimation-5 35s infinite;
  -o-animation: controlAnimation-5 35s infinite;
  animation: controlAnimation-5 35s infinite;
}

.items-5.autoplay .item {
  -webkit-animation: galleryAnimation-5 35s infinite;
  -o-animation: galleryAnimation-5 35s infinite;
  animation: galleryAnimation-5 35s infinite;
}

.items-5 .control-button:nth-of-type(1),
.items-5 .item:nth-of-type(1) {
  -webkit-animation-delay: -2s;
  -o-animation-delay: -2s;
  animation-delay: -2s;
}

.items-5 .control-button:nth-of-type(2),
.items-5 .item:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  -o-animation-delay: 5s;
  animation-delay: 5s;
}

.items-5 .control-button:nth-of-type(3),
.items-5 .item:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}

.items-5 .control-button:nth-of-type(4),
.items-5 .item:nth-of-type(4) {
  -webkit-animation-delay: 19s;
  -o-animation-delay: 19s;
  animation-delay: 19s;
}

.items-5 .control-button:nth-of-type(5),
.items-5 .item:nth-of-type(5) {
  -webkit-animation-delay: 26s;
  -o-animation-delay: 26s;
  animation-delay: 26s;
}

.items-5 .control-button:nth-of-type(5),
.items-5 .item:nth-of-type(5) {
  -webkit-animation-delay: 26s;
  -o-animation-delay: 26s;
  animation-delay: 26s;
}

.gallery .control-button {
  color: #ccc;
  color: rgba(255, 255, 255, 0.4);
}

.gallery .control-button:hover {
  color: white;
  color: rgba(255, 255, 255, 0.8);
}

/*
	Theme controls how everything looks in Gallery CSS.
*/

.gallery {
  position: relative;
}

.gallery .item {
  height: 400px;
  overflow: hidden;
  text-align: center;
  background: #4d87e2;
}

.gallery .controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.gallery .control-button {
  display: inline-block;
  margin: 0 .02em;
  font-size: 3em;
  text-align: center;
  text-decoration: none;
  -webkit-transition: color .1s;
  -o-transition: color .1s;
  transition: color .1s;
}

@media (max-width: 600px) {
  .gallery .item {
    height: 550px !important;
  }
}

.schedule-demo form {
	display: flex;
	flex-direction: column;
	width: 100%;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

.schedule-demo form div {
	width: 80%;
	margin: 20px auto;
	display: flex;
	flex-direction: column;
	max-width: 600px;
}

.schedule-demo form input {
	color: #555555;
	display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #a2a2a2;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15
}

.schedule-demo form input:focus {
	border-color: #66afe9;
    border-top-color: rgb(102, 175, 233);
    border-right-color: rgb(102, 175, 233);
    border-bottom-color: rgb(102, 175, 233);
    border-left-color: rgb(102, 175, 233);
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}

.schedule-demo button {
	padding: 10px 20px;
	min-width: 20%;
	max-width: 50%;
	margin: 0 auto;
}

body {
  -webkit-font-smoothing: antialiased;
}

.pricing-section {
  background: #647df9;
  color: #7a90ff;
  padding: 2em 0 2em;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.pricing {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 3em;
}
.pricing-item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-flex: 0 1 330px;
  flex: 0 1 330px;
}
.pricing-action {
  color: inherit;
  border: none;
  background: none;
}
.pricing-action:focus {
  outline: none;
}

.pricing-feature-list {
  text-align: left;
}

.pricing-palden .pricing-item {
  font-family: 'Open Sans', sans-serif;
  cursor: default;
  color: #84697c;
  background: #fff;
  box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
  border-radius: 20px 20px 10px 10px;
  margin: 1em;
}

@media screen and (min-width: 66.25em) {
  .pricing-palden .pricing-item {
    margin: 1em -0.5em;
  }

  .pricing-palden .pricing__item--featured {
    margin: 0;
    z-index: 10;
    box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
  }
}
.pricing-palden .pricing-deco {
  border-radius: 10px 10px 0 0;
  background: rgba(76, 70, 101, 0.99);
  padding: 4em 0 6.5em;
  position: relative;
}
.pricing-palden .pricing-deco-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}
.pricing-palden .pricing-title {
  font-size: 0.75em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
}
.pricing-palden .deco-layer {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.pricing-palden .pricing-item:hover .deco-layer--1 {
  -webkit-transform: translate3d(15px, 0, 0);
  transform: translate3d(15px, 0, 0);
}
.pricing-palden .pricing-item:hover .deco-layer--2 {
  -webkit-transform: translate3d(-15px, 0, 0);
  transform: translate3d(-15px, 0, 0);
}
.pricing-palden .icon {
  font-size: 2.5em;
}
.pricing-palden .pricing-price {
  font-size: 5em;
  font-weight: bold;
  padding: 0;
  color: #fff;
  margin: 0 0 0.25em 0;
  line-height: 0.75;
}
.pricing-palden .pricing-currency {
  font-size: 0.65em;
  vertical-align: top;
}
.pricing-palden .pricing-period {
  font-size: 0.15em;
  padding: 0 0 0 0.5em;
  font-style: italic;
}
.pricing-palden .pricing__sentence {
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 0 0 0.5em;
}
.pricing-palden .pricing-feature-list {
  margin: 0;
  padding: 0.25em 0 2.5em;
  list-style: none;
  text-align: center;
}
.pricing-palden .pricing-feature {
  font-size: 2em;
}

.pricing-feature-list-main {
  color: white;
  line-height: 2em;
  font-size: 2em;
  text-align: center;
}

.pricing-palden .pricing-action {
  font-weight: bold;
  margin: auto 3em 2em 3em;
  padding: 1em 2em;
  color: #fff;
  border-radius: 30px;
  background: #4d4766;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.pricing-palden .pricing-action:hover, .pricing-palden .pricing-action:focus {
  background-color: #100A13;
}

.pricing-palden .pricing-item--featured .pricing-deco {
  padding: 5em 0 8.885em 0;
}

.sign-up-special {
    padding: 22px 58.5px !important;
    border-radius: 50px !important;
    font-size: 1.5em;
}

.cta-container-special {
	margin: 50px 0px;
}