/*===================================================================================*/
/*	GENERAL
/*===================================================================================*/

body {
	font-family: 'Roboto', sans-serif;
	color: #222;
	font-size: 18px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	overflow-x: hidden !important;
}

.navbar,
main {
	background-color: #fff;
}

main:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	background: #fff;
	transition: 0.4s ease-out 0.2s;
	transition-property: opacity, visibility;
	-webkit-transform: translateZ(0); /* Enables hardware accelerated transitions for transform, opacity and filter properties on browsers with webkit engines — optionally will-change */
	-webkit-backface-visibility: hidden; /* Fixes transition flickering in Chrome and Safari */
}

main.js-reveal:before {
	opacity: 0;
	visibility: hidden;
}

a {
	color: inherit;
	transition: all 0.2s ease-out;
	-webkit-transform: translateZ(0); /* Enables hardware accelerated transitions for transform, opacity and filter properties on browsers with webkit engines — optionally will-change */
	-webkit-backface-visibility: hidden; /* Fixes transition flickering in Chrome and Safari */
}

a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	color: #333;
	margin-top: 0;
}

h1 span {
	font-weight: 600;
}

img {
	max-width: 100%;
}

img[src*=".svg"] {
	height: 100%; 
}

.container {
	padding-left: 20px;
	padding-right: 20px;
}

.container > :first-child:not(.row),
[class*="col-"]:not([class*="flex"]) > :first-child {
	margin-top: 0 !important;
	margin-left: 0 !important;
}

.container > :last-child:not(.row),
[class*="col-"]:not([class*="flex"]) > :last-child {
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}

.subline {
	color: #aeaeae;
	margin-bottom: 0;
}

.inner {
	padding-top: 120px;
	padding-bottom: 120px;
}

.inner-md {
	padding-top: 100px;
	padding-bottom: 100px;
}

.inner-sm {
	padding-top: 60px;
	padding-bottom: 60px;
}

.inner-xs {
	padding-top: 40px;
	padding-bottom: 40px;
}

.inner-top {
	padding-top: 120px;
}

.inner-top-md {
	padding-top: 100px;
}

.inner-top-sm {
	padding-top: 80px;
}

.inner-top-xs {
	padding-top: 40px;
}

.inner-bottom {
	padding-bottom: 120px;
}

.inner-bottom-md {
	padding-bottom: 100px;
}

.inner-bottom-sm {
	padding-bottom: 80px;
}

.inner-bottom-xs {
	padding-bottom: 40px;
}

.height-xs {
	height: 30vh;
}

.height-sm {
	height: 44vh;
}

.height-md {
	height: 61vh;
}

.height-lg {
	height: 90vh;
}

.light-bg {
	background-color: #f2f2f2;
}

.dark-bg {
	background-color: #e9e9e9;
}


/*===================================================================================*/
/*	HEADER
/*===================================================================================*/

.navbar {
	border: none;
	margin-bottom: 0;
}

.container-fluid > .navbar-collapse,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container > .navbar-header {
	margin-left: 0;
	margin-right: 0;
}

.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
	margin-left: 0;
}

.navbar-brand {
	height: 30px;
	padding: 0;
}

.navbar-brand:focus,
.navbar-brand:hover {
	opacity: 0.6;
	transform: scale(0.93);
}

.navbar-nav > li > a {
	padding: 5px 10px;
}

.navbar-default .navbar-nav > li > a {
	font-size: 14px;
	color: #aeaeae;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
	color: inherit;
}

.navbar-nav {
	padding-top: 10px;
}

.navbar-right {
	margin-right: -10px;
}

.navbar-toggle {
	padding: 0;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 20px;
	border: none;
	border-radius: 0;
}

.navbar-default .navbar-toggle.collapsed .icon-bar {
	background: #aeaeae;
	transition: background 0.2s ease-out;
}

.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle .icon-bar {
	background: #222;
}

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

.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 7px;
}

.navbar-toggle .icon-bar {
	width: 30px;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	border-color: #e9e9e9;
}

.navbar-collapse {
	padding-left: 20px;
	padding-right: 20px;
}


/*===================================================================================*/
/*	FOOTER
/*===================================================================================*/

footer p {
	font-size: 12px;
	line-height: 1.2;
	color: #aeaeae;
}

footer .inner-xs {
	padding-top: 30px;
	padding-bottom: 30px;
}


/*===================================================================================*/
/*	BUTTONS
/*===================================================================================*/

.btn {
	width: 160px;
	background: #0abf7a;
	padding: 0;
	margin: 5px;
	font-size: 16px;
	line-height: 50px;
	color: #fff;
	border: none;
	border-radius: 5px;
	box-shadow: inset 0 -1px 0 rgba(0,0,0,0.20);
}

.btn-secondary {
	background: #f2f2f2;
	color: inherit;
	box-shadow: inset 0 -1px 0 rgba(0,0,0,0.10);
}

.btn:hover,
.btn:focus,
.btn:active {
	background: #00ab69;
	color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
	background: #e9e9e9;
	color: inherit;
}


/*===================================================================================*/
/*	FLEX(BOX)
/*===================================================================================*/

.row-eq-height,
.flex-align-container {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-ms-flexbox-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* Legancy Safari Fix for breaking columns correctly */
.row-eq-height:before {
	content: none;
}

.flex-align-container {
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;

	-ms-flex-line-pack: start;
	-webkit-align-content: flex-start;
	align-content: flex-start;

	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;

	padding-left: 10px;
	padding-right: 10px;
}

.flex-content-align-center {
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.flex-content-align-right {
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.flex-content-valign-center {
	-ms-flex-line-pack: center;
	-webkit-align-content: center;
	align-content: center;
}

.flex-content-valign-bottom {
	-ms-flex-line-pack: end;
	-webkit-align-content: flex-end;
	align-content: flex-end;
}

.flex-item-valign-center {
	-ms-flex-item-align: center;
	-webkit-align-self: center;
	align-self: center;
}

.flex-item-valign-bottom {
	-ms-flex-item-align: end;
	-webkit-align-self: flex-end;
	align-self: flex-end;
}


/*===================================================================================*/
/*	MEDIA QUERIES | BREAKPOINTS (DESKTOP FIRST)
/*===================================================================================*/

@media (max-width: 1199px) { 
	
}

@media (max-width: 991px) {
	
}

@media (max-width: 767px) {

	.inner-sm {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.inner-top-sm {
		padding-top: 60px;
	}

	.inner-bottom-sm {
		padding-bottom: 60px;
	}

	.inner-top-xs-xs {
		padding-top: 20px;
	}

	.navbar-nav > li > a {
		padding: 15px 20px;
	}

	.navbar-default .navbar-nav > li > a {
		font-size: 18px;
	}

	.flex-align-container {
		width: 100%;
	}

	.flex-content-align-right {
		-ms-flex-pack: start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
	}
	
}

@media (max-width: 419px) {
	
	.btn {
		width: 100%;
	}
}


/*===================================================================================*/
/*	MEDIA QUERIES | BREAKPOINTS (MOBILE FIRST)
/*===================================================================================*/

body:before {
	content: 'xs';
	display: none;
}

@media (min-width: 768px) {

	body:before {
		content: 'sm';
	}

	.container {
		padding-left: 30px;
		padding-right: 30px;
	}

}

@media (min-width: 992px) {

	body:before {
		content: 'md';
	}

}

@media (min-width: 1200px) {

	body:before {
		content: 'lg';
	}

}