/** 
 * ===================================================================
 * webfonts and iconfonts 
 *
 * ------------------------------------------------------------------- 
 */

@import url("fonts.css");


/** 
 * ===================================================================
 * base style overrides
 *
 * ------------------------------------------------------------------- 
 */

html {
	font-size: 10px;
}
@media only screen and (max-width:1024px) {
	html {
		font-size: 9.375px;
	}
}
@media only screen and (max-width:768px) {
	html {
		font-size: 10px;
	}
}
@media only screen and (max-width:400px) {
	html {
		font-size: 9.375px;
	}
}

html, body {
	height: 100%;
}
body {
	background: #0E2127;
	font-family: "bariol-regular", sans-serif;
	font-size: 1.6rem;
	line-height: 3rem;
/* color: #737373; */
}

/*
p img {
	margin: 0;
}
*/
p.lead {
	font-family: "bariol-light", serif;
	font-size: 1.8rem;
	line-height: 1.8;
	color: #737373;
}
@media only screen and (max-width:768px) {
	p.lead {
		font-size: 1.7rem;
	}
}


hr {
	border: solid #cfcfd5;
	border-width: 1px 0 0;
	clear: both;
	margin: 2.4rem 0 1.5rem;
	height: 0;
}

/**
 * Spacing  
 * -
 */

button, .button {
	margin-bottom: 1.2;
}
fieldset {
	margin-bottom: 1.5rem;
}
input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.fluid-video-wrapper,
.iw-custom-select {
	margin-bottom: 3rem;
}



/**
 * block grids paddings 
 * -
 */

.bgrid {
	padding: 0 20px;
}
@media only screen and (max-width:1024px) {
	.bgrid {
		padding: 0 18px;
	}
}
@media only screen and (max-width:768px) {
	.bgrid {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	.bgrid {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	.bgrid {
		padding: 0;
	}
}


/** 
 * ===================================================================
 * preloader
 *
 * ------------------------------------------------------------------- 
 */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0F1215;
	z-index: 9999999;
	height: 100%;
	width: 100%;
}
.no-js #preloader, .oldie #preloader {
	display: none;
}
#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	margin-top: -30px;
	padding: 0;
	background-color: #00FF33;
	border-radius: 100%;
	-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}
@keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}


/** 
 * ===================================================================
 * forms
 *
 * ------------------------------------------------------------------- 
 */

fieldset {
	border: none;
}

/**
 * Style Placeholder Text  
 * -
 */

::-webkit-input-placeholder {
	color: #a1a1a1;
}
:-moz-placeholder {
	/* Firefox 18- */
	color: #a1a1a1;
}
::-moz-placeholder {
	/* Firefox 19+ */
	color: #a1a1a1;
}
:-ms-input-placeholder {
	color: #a1a1a1;
}
.placeholder {
	color: #a1a1a1 !important;
}


/** 
 * ===================================================================
 * buttons
 *
 * ------------------------------------------------------------------- 
 */

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: "bariol-bold", sans-serif;
	font-size: 2rem;
	height: 5rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 .3rem 1rem 0;
	background: #00E537;
	color: #132833;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: none;
	/* border-radius: 1000px; */
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: #00E537;
	color: #132833;
	outline: 0;
}


button.full-width, .button.full-width {
	width: 100%;
	margin-right: 0;
}
button.medium, .button.medium {
	height: 5.5rem !important;
	line-height: 5.5rem !important;
	padding: 0 1.8rem !important;
}
button.large, .button.large {
	height: 6rem !important;
	line-height: 6rem !important;
	padding: 0rem 3rem !important;
}
button.round, .button.round {
	padding-left: 3rem !important;
	padding-right: 3rem !important;
	border-radius: 1000px;
}
button.stroke, .button.stroke {
	background: transparent !important;
	border: 3px solid transparent;
	line-height: 4.4rem;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/** 
 * ===================================================================
 * common styles 
 *
 * ------------------------------------------------------------------- 
 */

.section-intro {
	max-width: 700px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5.2rem;
	position: relative;
}
.section-intro h1 {
	font-family: "bariol-bold", serif;
	font-size: 4.8rem;
	color: #252525;
	line-height: 1.25;
	margin-bottom: 1.2rem;
}
.section-intro h5 {
	color: rgba(56, 66, 78, 0.5);
	font-size: 1.6rem;
	line-height: 1.875;
	margin-bottom: 0.3rem;
	letter-spacing: .4rem;
}
.section-intro .lead {
	color: rgba(0, 0, 0, 0.45);
}
.section-intro .with-bottom-line {
	position: relative;
	overflow: hidden;
}
.section-intro .with-bottom-line::after {
	display: block;
	background-color: #00E537;
	width: 120px;
	height: 3px;
	content: '\0020';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -60px;
}
@media only screen and (max-width:600px) {
	section .h01 {
		font-size: 2.5rem;
	}
}

/**
 * responsive:
 * common styles
 * - 
 */

@media only screen and (max-width:768px) {
	.section-intro {
		max-width: 650px;
	}
	.section-intro h1 {
		font-size: 4.2rem;
	}
}
@media only screen and (max-width:600px) {
	.section-intro h1 {
		font-size: 3.8rem;
	}
	.section-intro h5 {
		font-size: 1.5rem;
		letter-spacing: .3rem;
	}
}
@media only screen and (max-width:400px) {
	.section-intro h1 {
		font-size: 3.6rem;
	}
}


/** 
 * ===================================================================
 * header styles 
 *
 * ------------------------------------------------------------------- 
 */

header {
	width: 100%;
	position: absolute;
	left: 0;
	top: 24px; 
	z-index: 600;
	background: transparent;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
header .row {
	width: auto;
	height: 66px;
	position: relative;
}

header .logo {
	margin-top: 2px;
	z-index: 600;
	position: absolute;
	left: 35px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
header .logo a {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	width: 80px;
	height: 80px;
	background: url("../images/logo.png") no-repeat center;
	background-size: 80px 80px;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.sticky {
	position: fixed;
	background: #132833;
	top: 0;
}
.sticky .logo a {
	width: 38px;
	height: 38px;
	background-size: 38px 38px;
}

/**
 * responsive:
 * header section
 * - 
 */

@media only screen and (max-width:768px) {
	header {
		top: 0;
		padding: 6px 0;
	}
	header .logo a {
		width: 38px;
		height: 38px;
		background-size: 38px 38px;
	}
}

/**
 * primary navigation
 * - 
 */

#main-nav-wrap, .main-navigation {
	margin: 0;
	padding: 0;
}

/* hide toggle button */
a.menu-toggle {
	display: none;
}

/* main-nav-wrap */
#main-nav-wrap {
	font-family: "bariol-regular", sans-serif;
	font-size: 22px;
	/* text-transform: lowercase; */
	/* letter-spacing: 1px; */
	position: absolute;
	top: 0;
	right: 30px;
}
.main-navigation {
	min-height: 66px;
	display: inline-block;
	width: auto;
	text-align: left;
}
.main-navigation li {
	position: relative;
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
	height: 66px;
}
.main-navigation li.current a {
	color: #FFFFFF;
}
.main-navigation li.current a::after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 80%;
	height: 3px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #0F3;
	content: '\0020';
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.main-navigation li.highlight a {
	color: #00FF33;
}
.main-navigation li.with-sep a {
	position: relative;
	padding-left: 22px;
	margin-left: 8px;
}
.main-navigation li.with-sep a::before {
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 20px;
	margin-top: -10px;
	background-color: rgba(255, 255, 255, 0.2);
	content: '\0020';
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* navigation links */
.main-navigation li a {
	display: block;
	padding: 18px 7px;
	line-height: 30px;
	text-decoration: none;
	text-align: left;
	color: #90A1AA;
	position: relative;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	-webkit-transition: color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}
.main-navigation li a:active {
	background-color: transparent !important;
}
.main-navigation li a:hover {
	color: #FFFFFF;
}

/**
 * mobile view - primary navigation
 * - 
 */

@media only screen and (max-width:768px) {
	#main-nav-wrap {
		display: block;
		width: 100%;
		position: absolute;
		top: 69px;
		right: 0;
	}
	a.menu-toggle {
		display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 50%;
		right: 30px;
		margin-top: -20px;
	}
	a.menu-toggle span {
		display: block;
		width: 24px;
		height: 3px;
		margin-top: -1.5px;
		position: absolute;
		right: 8px;
		top: 50%;
		bottom: auto;
		left: auto;
		background-color: white;
		-moz-transition: background 0.2s ease-in-out;
		-o-transition: background 0.2s ease-in-out;
		-webkit-transition: background 0.2s ease-in-out;
		-ms-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
		font: 0/0 a;
		text-shadow: none;
		color: transparent;
	}
	a.menu-toggle span::before, a.menu-toggle span::after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		background-color: inherit;
		left: 0;
		-moz-transition-duration: 0.2s, 0.2s;
		-o-transition-duration: 0.2s, 0.2s;
		-webkit-transition-duration: 0.2s, 0.2s;
		-ms-transition-duration: 0.2s, 0.2s;
		transition-duration: 0.2s, 0.2s;
		-moz-transition-delay: 0.2s, 0s;
		-o-transition-delay: 0.2s, 0s;
		-webkit-transition-delay: 0.2s, 0s;
		-ms-transition-delay: 0.2s, 0s;
		transition-delay: 0.2s, 0s;
	}
	a.menu-toggle span::before {
		top: -8px;
		-moz-transition-property: top, transform;
		-o-transition-property: top, transform;
		-webkit-transition-property: top, transform;
		-ms-transition-property: top, transform;
		transition-property: top, transform;
	}
	a.menu-toggle span::after {
		bottom: -8px;
		-moz-transition-property: bottom, transform;
		-o-transition-property: bottom, transform;
		-webkit-transition-property: bottom, transform;
		-ms-transition-property: bottom, transform;
		transition-property: bottom, transform;
	}
	.menu-toggle.is-clicked span {
		background-color: rgba(255, 255, 255, 0);
	}
	.menu-toggle.is-clicked span::before, .menu-toggle.is-clicked span::after {
		background-color: white;
		-moz-transition-delay: 0s, 0.2s;
		-o-transition-delay: 0s, 0.2s;
		-webkit-transition-delay: 0s, 0.2s;
		-ms-transition-delay: 0s, 0.2s;
		transition-delay: 0s, 0.2s;
	}
	.menu-toggle.is-clicked span::before {
		top: 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.menu-toggle.is-clicked span::after {
		bottom: 0;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.main-navigation {
		background: #132833;
		padding: 48px 42px 54px 42px;
		margin: 0;
		width: 100%;
		height: auto;
		clear: both;
		display: none;
	}
	.main-navigation > li {
		display: block;
		height: auto;
		text-align: left;
		border-bottom: 1px dotted rgba(200, 200, 200, 0.08);
		padding: 0;
	}
	.main-navigation > li:first-child {
		border-top: 1px dotted rgba(200, 200, 200, 0.08);
	}
	.main-navigation li a {
		display: block;
		color: #90A1AA;
		width: auto;
		padding: 18px 0;
		line-height: 16px;
		border: none;
	}
	.main-navigation li a:hover {
		color: #00FF33;
	}
	.main-navigation li.with-sep a {
		padding-left: 0;
		margin-left: 0;
	}
	.main-navigation li.with-sep a::before {
		display: none;
	}
	.main-navigation li.current > a {
		background: none;
		color: #00FF33;
	}
	.main-navigation li.current > a:after {
		display: none;
	}
}

/**
 * make sure the menu is visible on larger screens
 * -
 */

@media only screen and (min-width:769px) {
	#main-nav-wrap ul.main-navigation {
		display: block !important;
	}
}


/** 
 * ===================================================================
 * WHAT section
 *
 * ------------------------------------------------------------------- 
 */

#what {
	background: #0E2127 url(../images/what-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 100%;
	min-height: 750px;
	display: table;
	position: relative;
	margin-top: -30px;
}
.shadow-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#73000000', endColorstr='#00000000', Gradiype=0);  /* IE6-9 */
}
.what-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	-webkit-transform: translateY(-1.2rem);
	-ms-transform: translateY(-1.2rem);
	transform: translateY(-1.2rem);
}
.what-content h1 {
	color: #FFFFFF;
	font-family: "bariol-light", serif;
	font-size: 6rem;
	line-height: 1;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: normal;
}
.what-content h5 {
	color: rgba(255, 255, 255, 0.6);
	font-family: "bariol-regular", sans-serif;
	font-size: 1.8rem;
	line-height: 1.667;
	margin-bottom: 0.6rem;
	text-transform: uppercase;

}

.what-content  .col-twelve {
	position: relative;
	top: 50px;
}

.what-content .video-link a {
	display: inline-block;
	width: 130px;
	height: 130px;
	margin-bottom: 2.2rem;
	outline: none;
}
.what-content .button {
	border-color: #FFFFFF;
	color: #FFFFFF;
	height: 6.6rem;
	line-height: 6rem;
	padding: 0 3rem !important;
	margin-top: 1.8rem;
	font-family: "bariol-regular", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .4rem;
}
.what-content .button:hover, .what-content .button:focus {
	color: #05bca9;
	border-color: #05bca9;
}

h1.title-green {
color: #0F3;
}

.video-btn {
cursor: pointer;
}

#app-btn-wrapper {
		position: relative;
		float: right;
		margin-top: 100px;
		vertical-align: middle;
}


#app-btn-ios {
	position: relative;
	float: left; 
	vertical-align: middle; 
	margin-right: 10px;
}

#app-btn-android {
	position: relative; 
	float: left; 
	vertical-align: middle;
}

 #app-btn  {
		position: relative;
		float: left;
		vertical-align: middle;
		width: 160px;
		height: 47px;
	}


/**
 * responsive:
 * WHAT
 * -
 */

@media only screen and (max-width:1024px) {
	.what-content {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.what-content h1 {
		font-size: 6rem;
		max-width: 700px;
	}
	.what-content h5 {
		font-size: 1.6rem;
	}
	.what-content .video-link a {
		width: 72px;
		height: 72px;
		margin-bottom: 3rem;
	}
	#app-btn-wrapper {
		position: relative;
		float: right;
		margin-top: 100px;
		vertical-align: middle;
	}
	#app-btn-ios {
	position: relative;
	float: left; 
	vertical-align: middle; 
	margin-right: 10px;
}

#app-btn-android {
	position: relative; 
	float: left; 
	vertical-align: middle;
}

}
@media only screen and (max-width:768px) {
	#what {
		min-height: 660px;
	}
	.what-content h1 {
		font-size: 4.2rem;
		max-width: 550px;
	}
	.what-content h5 {
		font-size: 1.5rem;
	
	}
#app-btn-wrapper {
		position: relative;
		float: right;
		margin-top: 100px;
		vertical-align: middle;
	}
	#app-btn-ios {
	position: relative;
	float: left; 
	vertical-align: middle; 
	margin-right: 10px;
}

#app-btn-android {
	position: relative; 
	float: left; 
	vertical-align: middle;
	}
}

@media only screen and (max-width:600px) {
	#what {
		min-height: 550px;
	}
	.what-content h1 {
		font-size: 3.4rem;
	}
	.what-content h5 {
		font-size: 1.4rem;
	
	}
	.what-content  .col-twelve {
	position: relative;
	top: 30px;
}
	.what-content .video-link a {
		width: 60px;
		height: 60px;
	}


	#app-btn-wrapper {
		position: relative;
		float: right;
		margin-top: 100px;
		vertical-align: middle;
	}
	#app-btn-ios {
	position: relative;
	float: left; 
	vertical-align: middle; 
	margin-right: 10px;
}

#app-btn-android {
	position: relative; 
	float: left; 
	vertical-align: middle;
}

	#app-btn  {
		position: relative;
		float: left; 
		vertical-align: middle;
		width: 120px;
		height: 35px;
	}
}

@media only screen and (max-width:400px) {
	#what {
		min-height: 550px;
	}
	.what-content h1 {
		font-size: 2.8rem;
		letter-spacing: 0rem;
	}
	.what-content h5 {
		font-size: 1.4rem;
	
	}
	.what-content  .col-twelve {
	position: relative;
	top: 30px;
}
	.what-content .video-link a {
		width: 60px;
		height: 60px;
	}
	.what-content .play {
		width: 30px;
		height: 30px;
	}
	#app-btn-wrapper {
	
		position: relative;
		margin-top: 50px;
		text-align: center;
		width: 100%;

		}
	
#app-btn-ios {
	position: relative;
	float: left; 
	vertical-align: middle; 
		width: 120px;
		height: 35px;
		margin-left: 22px;
}

#app-btn-android {
	position: relative; 
	float: right; 
	vertical-align: middle;
			width: 120px;
		height: 35px;
		margin-right: 22px;
}


		.video-btn {
	cursor: pointer;


		}
	}
}

@media only screen and (max-width:320px) {
	#what {
		min-height: 550px;
	}
	.what-content h1 {
		font-size: 2.8rem;
		letter-spacing: 0rem;

	}
	.what-content h5 {
		font-size: 1.4rem;
	
	}

	.what-content  .col-twelve {
	position: relative;
	top: 30px;
}
	.what-content .video-link a {
		width: 60px;
		height: 60px;
	}
	#app-btn-wrapper {
	
		position: relative;
	
		margin-top: 50px;
		text-align: center;
		width: 90%;
		}
	
#app-btn-ios {
	position: relative;
	float: left; 
	vertical-align: middle; 
	margin-right: 10px;
	margin-left: 10px;
}

#app-btn-android {
	position: relative; 
	float: left; 
	vertical-align: middle;
}

	#app-btn  {
		position: relative;
		float: left; 
		vertical-align: middle;
		width: 120px;
		height: 35px;
	}

	.video-btn {
	cursor: pointer;
	border: 1px solid #EEF;
	width: 30px;
	height: 30px;
	}
}

/**
 * video popup modal
 * - 
 */

.popup-modal {
	max-width: 800px;
	background: #FFFFFF;
	position: relative;
	margin: 0 auto;  /* close */
}
.popup-modal .close-popup {
	position: absolute;
	right: 0;
	top: -42px;
	cursor: pointer;
	display: block;
	width: 30px;
	height: 30px;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}
.popup-modal .close-popup::before {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	/* font-family: "Ionicons"; 
	content: "\f2d7"; */
	font-family: sans-serif;
	content: "x";
	font-size: 21px;
	color: rgba(255, 255, 255, 0.5);
}

/**
 * responsive:
 * video popup modal
 * - 
 */

@media only screen and (max-width:900px) {
	.popup-modal {
		max-width: 700px;
	}
}
@media only screen and (max-width:768px) {
	.popup-modal {
		width: auto;
		margin: 0 20px;
	}
}

/**
 * transition effect for modal popup
 * - 
 */

/* overlay at start */
.mfp-fade.mfp-bg {
	opacity: 0;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* content animate in */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}


/** 
 * ===================================================================
 * process section
 *
 * ------------------------------------------------------------------- 
 */

#how {
	background: #FFFFFF;
	padding-top: 10rem;
	padding-bottom: 5rem;
	overflow: hidden;
}
.how-content {
	position: relative;
	text-align: center;
}

#how h1 {
	color: #132833;
	font-family: "bariol-regular", sans-serif;
	font-size: 3.8rem;
	line-height: 1;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
letter-spacing: 0;
}

.how-content .right-side,
.how-content .left-side
 {
	width: 35%;
	font-size: 15px;
	line-height: 27px;
	margin-top: 100px;
	padding: 0 6% 24px;
	position: absolute;
	top: 0;
}

.how-content .image-part {
	width: 30%;
	font-size: 15px;
	line-height: 27px;

}

.how-content .right-side {
	right: 0;

}
.how-content .left-side {
	left: 0;
}
.how-content .image-part {
	margin: 0 auto;
	height: 636px;
	background-image: url("../images/SnappthisOnPhone.png");
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
	margin-top: 0px;
}
.how-content .item[data-item]::before {
	background: #00E537;
	color: #FFFFFF;
	border-radius: 100%;
	font-family: "bariol-bold", sans-serif;
	content: attr(data-item);
	display: inline-block;
	font-size: 18px;
	height: 48px;
	width: 48px;
	line-height: 48px;
	text-align: center;
	vertical-align: middle;
	margin-bottom: 1.5rem;
}
.how-content h5 {
	color: #132833;
	font-size: 2.4rem;
	line-height: 1.2;

	margin-bottom: .3rem;
	text-transform: none;
}

.how-content p {
	color: #132833;
	font-family: "bariol-regular", serif;
	font-size: 2rem;
	line-height: 1.2;
}

/**
 * responsive:
 * process
 * -
 */

@media only screen and (max-width:1024px) {
	.how-content .right-side, .how-content .left-side {
		padding: 0 3% 24px;
		width: 35%;
	}
	.how-content .image-part {
		height: 600px;
		width: 30%;
	}
}
@media only screen and (max-width:768px) {
	
	#process {
		padding-bottom: 27rem;
	}
	.how-content .left-side {
		position: static;
		width: 100%;
		max-width: 480px;
		font-size: 1.6rem;
		line-height: 3rem;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 0;
		margin-top: -10px;
	}

	.how-content .right-side {
		position: static;
		width: 100%;
		max-width: 480px;
		font-size: 1.6rem;
		line-height: 3rem;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 0;
		margin-top: 0px;
	}
	.how-content .image-part {
		height: 600px;
		width: 50%;
	}
}
@media only screen and (max-width:400px) {
	#how {
	padding-bottom: 10rem; 
margin-top: -50px;
	}
	.how-content {
		margin-top: -10rem;
	}
.how-content .right-side {
	right: 0;
margin-top: 6rem;
}

	.how-content .image-part {
		height: 400px;
		width: 80%;
	}
}


/** 
 * ===================================================================
 * WHY section
 *
 * ------------------------------------------------------------------- 
 */

#why {
	background: #FFFFFF;
	padding-top: 1rem;
	padding-bottom: 1rem;
	overflow: hidden;
	margin-bottom: -5rem;
}

#why h1 {
	color: #132833;
	font-family: "bariol-regular", serif;
	font-size: 3.8rem;
	line-height: 1;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.why-content h5 {
	color: #132833;
	font-size: 2.4rem;
	line-height: 1.2;

	margin-bottom: .3rem;
	text-transform: none;
}

.why-content p {
	color: #132833;
	font-family: "bariol-regular", serif;
	font-size: 2rem;
	line-height: 1.2;
}


#why .section-intro p {
	color: #132833;
}
.why-content {
	max-width: 1200px;
}
.why-list {
	margin-top: 1.2rem;
	text-align: center;
}
.why-list .feature {
	margin-bottom: 1.2rem;
	padding: 0 32px;
}
.why-list .icon {
	display: inline-block;
	margin-bottom: 2.1rem;
}
.why-list .icon i {
	font-size: 4.8rem;
}
.why-list .h05 {
	font-size: 1.7rem;
	line-height: 1.765;
	color: #05bca9;
	margin-bottom: 1.8rem;
}



/**
 * responsive:
 * why
 * -
 */

@media only screen and (max-width:768px) {
	.why-content {
		max-width: 600px;
	}
	.why-list .feature {
		padding: 0 15px;
	}
}
@media only screen and (max-width:600px) {
	.why-list .feature {
		padding: 0 10px;
	}
}
@media only screen and (max-width:400px) {
	#why {
		margin-top: -100px;
	}
	.why-list .feature {
		padding: 0;
	}
}

.q-and-a {
	text-align: center;
}

/** 
 * ===================================================================
 * WHO section
 *
 * ------------------------------------------------------------------- 
 */

#who {
	background: #FFFFFF;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

#who h1 {
	color: #132833;
	font-family: "bariol-regular", serif;
	font-size: 3.8rem;
	line-height: 1;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.who-content {
	margin-top: 5.4rem;
	max-width: 1200px;
		margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.who-content h5 {
	color: #132833;
	font-size: 2.4rem;
	line-height: 1.2;

	margin-bottom: .3rem;
	text-transform: none;
}

.who-content p {
	color: #132833;
	font-family: "bariol-regular", serif;
	font-size: 2rem;
	line-height: 1.2;
}

@media only screen and (max-width:400px) {
	#who {
		margin-top: -150px;
	}
	.who-content {
width: 90%;
	}
}

/** 
 * ===================================================================
 * why section
 *
 * ------------------------------------------------------------------- 
 */

#why {
	background: #FFF;
	padding-top: 10rem;
	padding-bottom: 8rem;
}
.why-content {
	margin-top: 5.4rem;
	max-width: 1020px;
}


.green-line {
	color: #00E537;
width: 80%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
	border: 0;
	height: 3px;
	border-bottom: 3px solid #00E537;
}

.blue-line {
	color: #132833;
width: 80%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
	border: 0;
	height: 3px;
	border-bottom: 3px solid #132833;
}


/**
 * responsive:
 * faq
 * -
 */

@media only screen and (max-width:768px) {
	.why-content {
		max-width: 650px;
	}
}
@media only screen and (max-width:480px) {
	.why-content .bgrid {
		padding: 0 20px;
	}
}
@media only screen and (max-width:400px) {
	.why-content .bgrid {
		padding: 0;
	}
}


/** 
 * ===================================================================
 * footer
 *
 * ------------------------------------------------------------------- 
 */

footer {
/*	font-size: 1.5rem;
	line-height: 2.7rem;
	font-family: "bariol-light", sans-serif;
	color: #FFFFFF;
	*/
}
footer a, footer a:visited {
	color: #FFFFFF;
}
footer a:hover, footer a:focus {
	color: #FFFFFF;
}
footer h4 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
	padding-bottom: 1.2rem;
	margin-bottom: 1.2rem;
	color: #FFFFFF;
}
footer ul {
	margin-left: 0;
}
footer ul li {
	padding-left: 0;
}


.footer-main .row {
	width: 100%;
}

.footer-main a {
	display: block;
	text-align: center;
	height: 100px;
	line-height: 100px;
}

.footer-bottom {
	border-top: 2px solid #fff;
	background: #0E2127;
}

.footer-bottom .footer-text {
	color: #fff;
	font-size: 1.3em;
	font-family: "bariol-regular";
	padding-top: 1em;
}

.footer-text {
	color: #fff;
	font-size: 1em;
	font-family: "bariol-regular";
}

.footer-text a {
	text-decoration: underline;
}

.footer-bottom .col-one-span-two {
	height: 200px;
	background: #214454;
}

.btn-mob {
	background: #214454;
}



/**
 * responsive:
 * footer
 * -
 */

@media only screen and (max-width:768px) {
	
	.footer-main .footer-info {
		text-align: center;
	}
	.footer-text {
	color: #fff;
	font-size: .8em;
	font-family: "bariol-regular";
}
}
@media only screen and (max-width:600px) {
	.footer-bottom .col-one-span-two {
	width: 100%;
	background: #0E2127;
	font-size: .8em;
	height: 70px;

	}
	.footer-bottom .col-one-span-two .footer-text {
margin-top: -30px;
font-size: .8em;
	}
	.footer-bottom #footer-text-download {
		display: none;
	}
	.footer-bottom .col-one-span-four {
	width: 100%;
	font-size: .8em;
	margin-bottom: 1em;
	}

.footer-bottom .col-one-span-four .footer-text {
	margin-top: -30px;
}

}
@media only screen and (max-width:400px) {
	.footer-bottom .col-one-span-two {
	width: 100%;
	background: #0E2127;
	font-size: .8em;
	height: 70px;

	}
	.footer-bottom .col-one-span-two .footer-text {
margin-top: -30px;
font-size: 1.3em;
	}
	.footer-bottom #footer-text-download {
		display: none;
	}
	.footer-bottom .col-one-span-four {
	width: 100%;

	margin-bottom: 1em;
	}

.footer-bottom .col-one-span-four .footer-text {
	margin-top: -30px;
	}

}

/**
 * go to top
 * -
 */

#go-top {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 600;
	display: none;
}
#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	height: 66px;
	width: 60px;
	line-height: 66px;
	text-align: center;
	background: #048a7c;

	color: #FFFFFF;
	text-align: center;
	text-transform: uppercase;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#go-top a i {
	font-size: 20px;
	line-height: inherit;
}
#go-top a:hover {
	background: #ff7b29;
	color: #FFFFFF;
}


.fb-page {
border:none!important;
}

/** video launch settings **/

* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}


/* Fullscreen Overlay */
.overlay {
  width: 100%;
  height: 100vh;
  /* 50% opacity black */
  background: rgba(0,0,0,.5);
  /* Stays locked on scroll */
  position: fixed;
  /* On top of the rest*/
  z-index: 99999;
  /* Hidden */
  opacity: 0;
  /* No interference */
  left: -100%;
  /* CSS3 Transition */
  transition: opacity .5s;
  -webkit-transition: opacity .5s;
}

/* 90% width container */
.video-container {
  width: 95%;
  /* Centering */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.close {
  width: 20px;
  fill: white;
  position: absolute;
  right: 0;
  /* Bring above video */
  top: -30px;
}

.close:hover {
  /* 50% opacity white */
  fill: rgba(255,255,255,0.5);
  cursor: pointer;
}

/* Class to fade in overlay */
.show {
  opacity: 1;
}

.play {
	cursor: pointer;
}


/** BUTTON EFFECTS **/


.btn-mob {
  display: inline-block;
  
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0); 
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.btn-mob:hover, .btn-mob:focus, .btn-mob:active {
  background-color: #00E537;
  color: white;
}

.btn-soc {
  display: inline-block;
 	-webkit-transform: translateZ(0);
  	transform: translateZ(0);
  	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  	-webkit-backface-visibility: hidden;
  	backface-visibility: hidden;
  	-moz-osx-font-smoothing: grayscale;
  	overflow: hidden;
  	-webkit-transition-duration: 0.3s;
  	transition-duration: 0.3s;
  	-webkit-transition-property: color, background-color;
  	transition-property: color, background-color;
}
.btn-soc:hover, .btn-soc:focus, .btn-soc:active {
  background-color: #00E537;
  color: white;
}


/* Icon Fade */
.icon-Android {
  	display: inline-block;
  	vertical-align: middle;
	position: relative;
	font-size: 2.4em;
}

.icon-Android:before {
 font-family: "icomoon" !important;
  content: "\e900";
}
.icon-Android:hover:before, .icon-Android:focus:before, .icon-Android:active:before {
  color: #FFFFFF;
}

.icon-iOS {
  	display: inline-block;
	position: relative;
	font-size: 2.4em;
}

.icon-iOS:before {
 font-family: "icomoon"!important;
  content: "\e901";

}
.icon-iOS:hover:before, .icon-iOS:focus:before, .icon-iOS:active:before {
  color: #FFFFFF;
}

.icon-post-facebook {
  	display: inline-block;
	position: relative;
	font-size: 2.4em;
}

.icon-post-facebook:before {
 font-family: "icomoon" !important;
  content: "\e903";
  
}
.icon-post-facebook:hover:before, .icon-post-facebook:focus:before, .icon-post-facebook:active:before {
  color: #FFFFFF;
}

.icon-post-twitter {
  	display: inline-block;
	position: relative;
	font-size: 2.4em;
}

.icon-post-twitter:before {
 font-family: "icomoon" !important;
  content: "\e905";
 
}
.icon-post-twitter:hover:before, .icon-post-twitter:focus:before, .icon-post-twitter:active:before {
  color: #FFFFFF;
}

.icon-post-linkedin {
  	display: inline-block;
	position: relative;
	font-size: 2.4em;
}

.icon-post-linkedin:before {
 font-family: "icomoon" !important;
  content: "\e904";
 
}
.icon-post-linkedin:hover:before, .icon-post-linkedin:focus:before, .icon-post-linkedin:active:before {
  color: #FFFFFF;
}

.icon-mail {
  display: inline-block;
/*
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  */
  position: relative;

font-size: 2.4em;
}

.icon-mail:before {
 font-family: "icomoon" !important;
  content: "\e902";
 }
.icon-mail:hover:before, .icon-mail:focus:before, .icon-mail:active:before {
  color: #FFFFFF;
}

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

	.footer-main a {
	display: block;
	text-align: center;
	height: 60px;
	line-height: 60px;
	}

	.icon-mail, .icon-post-linkedin, .icon-post-twitter, .icon-post-facebook, .icon-iOS, .icon-Android  {
  	display: inline-block;
  	position: relative;
	font-size: 1.8em;
	}

}