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, menu, 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
*[hidden],
.hidden {
    display: none;
}
menu, 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;
}
body {
	background-color: #fff;
	color: #3c3c3c;
	font-size: 16px;
	line-height: 1.6;
	font-family: 'Noto Sans',sans-serif;
	-webkit-font-smoothing: antialiased !important;
}
a {
	color: #3c3c3c;
}
a,a:hover,a:focus {
	text-decoration: none;
	outline: none;
}
a:hover,a:focus {
	color: #12ca99;
	transition: all 0.2s ease-in-out;
}
em {
	font-style: italic;
}
.wrapper {
	width: 1024px;
	max-width: 94%;
	margin: 0 auto;
}
.text-center {
	text-align: center;
}
.text-green {
	color: #21ca99;
}
.strong {
	font-weight: 700;
}
.italic {
	font-style: italic;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #12ca99;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
}
.btn.small {
	font-size: 12px;
	line-height: 16px;
}
.btn.white {
	color: #fff;
	border-color: #fff;
}
.btn:hover ,
.btn.active {
	background-color: #11d5a1;
	color: #fff;
}
.btn:disabled,
.btn.disabled {
	background-color: #e2e2e2;
    cursor: default;
}
.btn.orange {
	background-color: #fcbb33;
}
.btn.orange:hover {
	background-color: #fdc551;
}
.btn.red {
	background-color: #ff5d5d;
}
.btn.red:hover {
	background-color: #ff6f6f;
}
.btn.blue {
	background-color: #4592f7;
}
.btn.blue:hover {
	background-color: #5a9df4;
}
.btn:focus {
	color: #fff;
}
.m-t-30 {
	margin-top: 30px;
}
.notif-holder {
	position: fixed;
    right: -270px;
    top: 65px;
    width: 260px;
    opacity: 0;
    z-index: 0;
    animation-name: notif;
    animation-duration: 5000ms;
}
.notif {
    width: 100%;
    padding: 20px 20px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    text-align: right;
    border-radius: 6px;
}
.notif + .notif {
	margin-top: 10px;
}
.notif.error {
	background-color: #ff5252;
}
.notif.success {
	background-color: #4CAF50;
}
@keyframes notif {
	0% {
		right: -270px;
		opacity: 0;
		z-index: 101;
	}
	10% {
		right: 15px;
		opacity: 1;
		z-index: 101;
	}
	90% {
		right: 15px;
		opacity: 1;
		z-index: 101;
	}
	100% {
		right: -270px;
		opacity: 0;
		z-index: 0;
	}
}
#header {
	border-bottom: 1px solid #e2e2e2;
	padding: 30px 0;
	background-color: #fff;
    box-shadow: 0px 2px 6px -6px #000;
}
#header .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#header .logo img {
	height: 50px;
	display: block;
	margin: 0 auto;
}
#header h3 {
	color: #12ca99;
	font-weight: 600;
	text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 10px;
}
#header .navbar {
	margin-top: 35px;
}
#header .navbar li {
	display: inline-block;
}
#header .navbar a {
	text-transform: uppercase;
	font-weight: 500;
	padding: 5px 20px;
}
#header.fixed {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	padding: 10px 0;
	transition: all 0.2s ease-in-out;
	z-index: 9;
}
#header.fixed .inner {
    flex-direction: row;
    justify-content: space-between;
}
#header.fixed .logo img {
	height: 30px;
}
#header.fixed h3 {
	display: none;
}
#header.fixed .navbar {
	margin-top: 0;
}
#header.fixed + #content {
	padding-top: 200px;
}
.footer {
	background-color: #3c3c3c;
	color: #b2b2b2;
	padding: 30px 0;
}
.footer .inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.footer .logo img {
	height: 50px;
	display: block;
	margin: 0 auto;
}
.footer .navbar {
	margin-left: auto;
    border-right: 1px solid #6a6a6a;
    padding: 5px 30px 5px 0;
}
.footer .social {
	padding: 5px 30px 5px 30px;
}
.footer a {
	color: #b2b2b2;
    padding: 5px 0;
    display: block;
}
.footer a:hover{
	color: #12ca99;
}
.footer .logo a {
	padding: 0;
}
.footer .social a {
	display: flex;
    align-items: center;
    justify-content: center;
}
.footer .social a i {
	width: 30px;
    height: 22px;
    display: inline-block;
    background-size: auto 22px;
    background-repeat: no-repeat;
    background-position: center center;
}
.footer .social a.linkedin i {
	background-image: url('/assets/icons/linkedin_gray.svg');
}
.footer .social a.linkedin:hover i {
	background-image: url('/assets/icons/linkedin_green.svg');
}
.footer .social a.twitter i {
	background-image: url('/assets/icons/twitter_gray.svg');
}
.footer .social a.twitter:hover i {
	background-image: url('/assets/icons/twitter_green.svg');
}
.footer .address {
	padding: 5px 30px;
	border-left: 1px solid #6a6a6a;
}
.footer .address p {
	padding: 8px 0;
	line-height: 20px;
}
.bottombar {
	background-color: #3c3c3c;
	color: #b2b2b2;
	font-size: 14px;
	border-top: 1px solid #6a6a6a;
	padding: 10px 0;
}
.bottombar .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bottombar li {
	display: inline-block;
	margin-left: 30px;
}
.bottombar a {
	color: #b2b2b2;
}
.bottombar a:hover {
	color: #12ca99;
}
.cookie {
	background-color: rgba(0,0,0,0.8);
	color: #fff;
	font-size: 14px;
	padding: 10px 0;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}
.cookie .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cookie p {
	margin-right: 30px;
}
.cookie p a {
	color: #fff;
	text-decoration: underline;
}
.cookie p a:hover {
	color: #12ca99;
}
.section {
	padding: 60px 0;
}
.section h2 {
	font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 40px;
    position: relative;
}
.section h2:after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #12ca99;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.section p {
	text-align: justify;
}
#intro .inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#intro .left {
	flex: 1;
	margin-right: 60px;
}
#intro .right {
	flex: 0 0 280px;
}
#intro .right img {
    height: 390px;
    width: auto;
    display: block;
    margin: 20px auto 0 auto;
}
#quote .inner {
	background-color: #3c3c3c;
	padding: 50px 0 10px 0;
}
#quote h4 {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}
#quote h4:before {
	content: '"';
	font-size: 40px;
    position: relative;
    top: 26px;
    left: -4px;
    line-height: 20px;
    color: #12ca99;
}
#quote h4:after {
	content: '"';
	font-size: 40px;
    position: relative;
    top: 6px;
    right: -4px;
    line-height: 20px;
    color: #12ca99;
}
#quote .art {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#quote .left {
	flex: 0 0 50%;
	height: 40px;
	background-color: #3c3c3c;
	border-radius: 0 0 40px 0;
}
#quote .right {
	flex: 0 0 50%;
	height: 40px;
	background-color: #3c3c3c;
	border-radius: 0 0 0 40px;
}
#services {
	border-top: 1px solid #e2e2e2;
	background-color: #fcfcfc;
}
#services .inner {
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#services .left {
	flex: 0 0 50%;
	padding-right: 30px;
    box-sizing: border-box;
}
#services .right {
	flex: 0 0 50%;
	padding-left: 30px;
    box-sizing: border-box;
}
#services ul {
	border: 1px solid #12ca99;
	border-radius: 6px;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}
#services ul li:not(:last-child) {
	border-bottom: 1px solid #12ca99;
}
#services ul a {
	padding: 10px 20px;
	display: block;
	position: relative;
}
#services ul i {
	background-image: url('/assets/icons/arrow_right_green.svg');
	background-repeat: no-repeat;
    background-position: left center;
    background-size: 18px auto;
    width: 18px;
    height: 18px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.2s ease-in-out;
}
#services ul a:hover i {
	opacity: 1;
	transform: translateX(0);
}
#testimonials {
	border-bottom: 1px solid #e2e2e2;
}
#testimonials .item {
	font-style: italic;
	font-size: 14px;
}
#testimonials .item p:first-child:before {
	content: '"';
	color: #12ca99;
}
#testimonials .item p:first-child:after {
	content: '"';
	color: #12ca99;
}
#testimonials .item p:last-child {
	text-align: right;
	color: #12ca99;
}
#page-about .inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#page-about .left {
	flex: 1;
	margin-right: 60px;
}
#page-about h4 {
	color: #12ca99;
	text-transform: uppercase;
	margin-bottom: 10px;
}
#page-about .right {
	flex: 0 0 280px;
}
#page-about .right img {
    height: 390px;
    width: auto;
    display: block;
    margin: 20px auto 0 auto;
}
#page-contact .inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#page-contact .left {
	flex: 1;
	margin-right: 60px;
	padding-right: 60px;
	border-right: 1px solid #e2e2e2;
}
#page-contact .right {
	flex: 0 0 300px;
}
#page-contact .right img {
	width: 150px;
	display: block;
}
#page-contact .form-group {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
    flex-direction: row-reverse;
    position: relative;
}
#page-contact .form-group.submit-group {
	justify-content: center;
	margin-bottom: 0;
}
#page-contact .form-control {
	flex: 1;
	height: 44px;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	padding: 0 20px;
	font-family: 'Noto Sans',sans-serif;
	font-size: 15px;
	color: #3c3c3c;
	background-color: #fff;
	outline: none;
	box-shadow: none;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	filter: none;
}
#page-contact textarea.form-control {
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	padding: 10px 20px;
	height: 140px;
	resize: none;
}
#page-contact .form-control:focus {
	border-color: #12ca99;
}
#page-contact .response {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: -16px;
	font-size: 14px;
	line-height: 14px;
}
#page-contact .response.bottom {
	left: 0;
	right: 0;
	bottom: -20px;
	text-align: center;
}
#page-contact .response.success {
	color: #12ca99;
}
#page-contact .response.error {
	color: #ff5252;
}
.page-contact #contact .btn-holder {
	display: none;
}
#page-services .subsection {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #e2e2e2;
}
#page-services .subsection h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #12ca99;
    text-transform: uppercase;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #3c3c3c !important;
}
::-moz-selection {
	background-color: #12ca99;
	color: #fff;
}
::selection {
	background-color: #12ca99;
	color: #fff;
}

@media only screen and (max-width: 800px)  {
	#header .navbar a {
		padding: 5px 15px;
	}
	#header.fixed {
		position: inherit;
	}
	#header.fixed + #content {
		padding-top: 0;
	}
	.section {
	    padding: 30px 0;
	}
	.section h2 {
		margin-bottom: 30px;
	}
	#intro .inner {
		flex-wrap: wrap;
	}
	#intro .left {
		margin-right: 0;
	}
	#intro .right {
		display: none;
	}
	#services .inner {
		margin-top: 30px;
		flex-wrap: wrap;
	}
	#services .left,
	#services .right {
		flex-basis: 100%;
		padding: 0;
	}
	#services .right {
		margin-top: 30px;
	}
	#services ul i {
		opacity: 1;
		right: 0;
	}
	#services ul a {
		padding: 10px 40px 10px 20px;
	}
	#quote .inner {
		padding-top: 30px;
	}
	#quote .left,
	#quote .right {
		height: 20px;
	}
	.footer {
		padding-bottom: 5px;
	}
	.footer .inner {
		flex-wrap: wrap;
	}
	.footer .logo {
		flex-basis: 100%;
	}
	.footer .navbar {
		display: none;
	}
	.footer .address,
	.footer .social {
		flex-basis: 100%;
	    padding: 5px 10px;
	    text-align: center;
	    border: none;
	}
	.footer .social {
		margin: 25px 0 10px 0;
	}
	.bottombar .copyright {
		flex: 0 0 130px;
	}
	.bottombar .links li {
		margin-left: 10px;
		text-align: right;
	}
	#page-about .inner {
		flex-wrap: wrap;
	}
	#page-about .left {
		margin-right: 0;
	}
	#page-about .right {
		flex: 0 0 100%;
	}
	#page-about .right img {
		max-width: 100%;
		margin: 0 auto 30px auto;
	}
	#page-contact .inner {
		flex-wrap: wrap;
	}
	#page-contact .left {
		margin-right: 0;
		padding-right: 0;
		border-right: none;
	}
	#page-contact .right {
		flex: 0 0 100%;
		margin-top: 30px;
		padding-top: 30px;
		border-top: 1px solid #e2e2e2;
	}
	#page-contact .right p {
		text-align: center;
	}
}
@media only screen and (max-width: 540px) {
	.bottombar .links li {
		display: block;
	}
}











