/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 18px;
	overflow: hidden;
	padding-top: 168px;
	-webkit-transition: padding-top 0.3s;
	-moz-transition: padding-top 0.3s;
	transition: padding-top 0.3s;
}

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	height: 168px;
	z-index: 100000;
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 4px rgba(0,0,0,0.2);
	box-shadow: 0 1px 4px rgba(0,0,0,0.2);
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

body.scrolled #header {
	height: 140px;
}

body.scrolled #mainWrapper {
	padding-top: 140px;
}

#header .logo {
	position: absolute;
	width: 269px;
	top: 6px;
	left: 7.027027027027027%;
	-webkit-transition: width 0.3s, top 0.3s;
	-moz-transition: width 0.3s, top 0.3s;
	transition: width 0.3s, top 0.3s;
}

#header .logo img {
	display: block;
	width: 100%;
}

body.scrolled #header .logo {
	width: 218px;
}

#header .contact {
	position: absolute;
	top: 27px;
	right: 2.702702702702703%;
}

#header .contact ul {
	float: left;
	margin: 8px 23px 0 0;
	padding: 0;
	font-size: 20px;
}

#header .contact ul li {
	float: left;
	margin: 0 0 0 1.45em;
	padding: 0;
	list-style: none;
}

#header .contact ul li:first-child {
	margin-left: 0;
}

#header .contact ul li a {
	display: inline-block;
	color: #999;
	padding-left: 1.55em;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
	background: no-repeat;
	-webkit-background-size: 1em;
	-moz-background-size: 1em;
	background-size: 1em;
	-ms-behavior: url(/backgroundsize.min.htc);
}

#header .contact ul li a:hover {
	color: #333;
}

#header .contact ul li.email a {
	background-image: url(../images/email-ico.svg);
	background-position: 0 0.2em;
}

#header .contact ul li.phone a {
	background-image: url(../images/phone-ico.svg);
	background-position: 0 0.15em;
}

#header .contact .applyBtn {
	float: left;
	padding: 0.5em 1.5em 0.4444444444444444em;
	font-size: 18px;
	color: #f9f6f0;
	background: #76c5f0;
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
}

#header .contact .applyBtn:hover {
	background-color: #87d4ff;
}

#header #navigation {
	position: absolute;
	right: 7.027027027027027%;
	bottom: 27px;
	font-size: 18px;
}

#header #navigation ul {
	margin: 0;
	padding: 0;
}

#header #navigation ul li {
	position: relative;
	float: left;
	margin: 0 0 0 35px;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}

#header #navigation ul li a {
	display: inline-block;
	font-size: 0.8888888888888889em; /* 16px */
	color: #1ca9de;
}

#header #navigation li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: 0;
	padding: 10px 0 0;
	border-bottom: 4px solid #0086d5;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

#header #navigation li ul li {
	float: none;
	position: static;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	background: #1990e0;
	color: #fff;
}

#header #navigation li ul li:first-child {
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

#header #navigation li ul li a {
	display: block;
	padding: 8px 15px;
	line-height: 1.2;
	text-transform: capitalize;
	white-space: nowrap;
	color: #fff !important;
}

#header #navigation li ul li a:before  {
	display: none;
}

#header #navigation li ul li:hover {
	background-color: #0b52ba;
	color: #fff;
}

#header #navigation ul li ul li a:after {
	display: none;
}

#header #navigation li ul { 
	visibility: hidden;
	opacity: 0;
	margin-left: 0;
	-webkit-transform: translateY(-5%);
	-moz-transform: translateY(-5%);
	transform: translateY(-5%);
	-webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	-moz-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;*/
}

#header #navigation li:hover ul {
	visibility: visible; 
	opacity: 1;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition-delay: 0s, 0s, 0.3s;
	-moz-transition-delay: 0s, 0s, 0.3s;
	transition-delay: 0s, 0s, 0.3s;
}

#header #navigation ul li.hasSub>a {
	padding-right: 1.1em;
}

#header #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.25em;
	content: "";
	display: inline-block;
	width: 0.6875em;
	height: 0.375em;
	background: url(../images/menu-arrow.svg) no-repeat;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	background-size: 100%;
	pointer-events: none;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
}

#header #navigation ul li.hasSub:hover>a:before {
	-webkit-transform: rotate(180deg);	
	-moz-transform: rotate(180deg);	
	transform: rotate(180deg);	
}

/* Slider */

#slider {
	margin-bottom: 22px;
}

#slider .slides {
	margin: 0;
	padding: 0;
}

#slider .slides li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

#slider .slides li img {
	display: block;
	width: 100%;
}

#slider .slides li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

#slider .slides li .overlay .text {
	display: table;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	height: 100%;
}

#slider .slides li .overlay .text .inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 15px;
}

#slider .slides li .overlay .text .inner .title {
	font-family: 'Chocolate Covered Raindrops', Arial, sans-serif;
	font-size: 72px;
	font-weight: bold;
	color: #f9f6f0;
	line-height: 0.8;
	margin-left: -0.25em;
	text-shadow: 6px 10px 24.57px rgba(0, 0, 0, 1); 
}

#slider .slides li .overlay .text .applyBtn {
	display: inline-block;
	background: #ec008c;
	color: #f9f6f0;
	font-size: 16px;
	margin-top: 0.625em;
	padding: 0.6875em 1.875em;
	border: 2px solid #f9f6f0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
}

#slider .slides li .overlay .text .applyBtn:hover {
	background-color: #ff329e;
}

/* Banner */

#banner img {
	display: block;
	width: 100%;
}

/* Content */

#content .section {
	padding-top: 40px;
	padding-bottom: 40px;
}

/* Testimonials */

#testimonials {
	background: #d9d9d9;
	color: #fff;
	text-align: center;
	margin-bottom: 120px;
}

#testimonials .section {
	position: relative;
	max-width: 1400px;
	padding-top: 70px;
	padding-bottom: 80px;
}

#testimonials .heading {
	margin-left: -0.35em;
	color: #fff;
}

#testimonials .listing {
	position: relative;
	margin: 40px 0 0;
	padding: 0 258px;
}

#testimonials .listing:before,
#testimonials .listing:after {
	content: "";
	position: absolute;
	left: 25px;
	top: -30px;
	width: 168px;
	height: 130px;
	background: url(../images/left-quotes.svg) no-repeat;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
	-ms-behavior: url(/backgroundsize.min.htc);
}

#testimonials .listing:after {
	left: auto;
	right: 25px;
	background-image: url(../images/right-quotes.svg);
}

#testimonials .listing li {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 2;
}

#testimonials .owl-dots .owl-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 9px;
	background: rgba(255,255,255,0.5);
	outline: none;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

#testimonials .owl-dots {
	margin-top: 20px;
}

#testimonials .owl-dots.disabled {
	display: block;
}

#testimonials .owl-dots .owl-dot.active {
	background-color: #fff;
}

#testimonials .moreBtn {
	position: absolute;
	left: 50%;
	width: 207px;
	margin-left: -103.5px;
	bottom: -20px;
	line-height: 43px;
	background: #55bbeb;
	font-size: 16px;
	color: #f9f6f0;
	border: 2px solid #f9f6f0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
}

#testimonials .moreBtn:hover {
	background-color: #64c8f8;
}

/* Footer */

#footer {
	font-size: 14px;
}

#footer a {
	color: rgba(255,255,255,0.8);
}

#footer .top {
	background: #e6e6e6;
	border-top: 4px solid #e8e8e8;
	border-bottom: 4px solid #e8e8e8;
	text-align: center;
}

#footer .top .section {
	padding-top: 23px;
	padding-bottom: 23px;
}

#footer .top #links {
	line-height: 1;
}

#footer .top #links ul {
	margin: 0;
	padding: 0;
}

#footer .top #links ul li {
	margin: 0 -4px 0 0;
	padding: 0 13px;
	list-style: none;
	display: inline-block;
	font-size: 16px;
	text-transform: uppercase;
}

#footer .top #links ul li a {
	display: inline-block;
	vertical-align: top;
	color: #55bbeb;
}

#footer .top #links ul li ul {
	display: none;
}

#footer .bottom {
	background: #55bbeb;
	color: rgba(255,255,255,0.8);
}

#footer .bottom .section {
	padding-top: 22px;
	padding-bottom: 22px;
}

#footer .bottom .applyBtn {
	display: inline-block;
	padding: 6px 30px;
	background: #ccc;
	color: #fff;
	margin-top: 20px;
	font-size: 16px;
	border: 2px solid #f9f6f0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
}

#footer .bottom .applyBtn:hover {
	background-color: #d4d4d4;
}

#footer .bottom .right {
	float: right;
	width: 700px;
	margin-top: 27px;
	line-height: 1.714285714285714;
}

#footer .bottom .right .title {
	font-size: 18px;
	line-height: 1.2;
	margin-bottom: 25px;
}

#footer .bottom .right .location {
	float: left;
	width: 265px;
}

#footer .bottom .right .contact {
	float: right;
	width: 300px;
}

#footer .bottom .right .contact .options {
	margin: 0;
	padding: 0;
}

#footer .bottom .right .contact .options li {
	margin: 0;
	padding: 0;
	list-style: none;
}

#footer .bottom .left {
	float: left;
	width: 374px;
}

#footer .bottom .left .logo {
	display: block;
	width: 100%;
	margin-bottom: 8px;
}

#footer .bottom .left .logo img {
	display: block;
	width: 100%;
}

#footer .bottom .left .copyright {
	text-align: center;
	color: rgba(255,255,255,0.5);
	margin: 0 0 14px;
}

#footer .bottom .left .links {
	margin: 0;
	color: rgba(255,255,255,0.5);
	font-weight: bold;
	text-align: center;
}

#footer .bottom .left .links a {
	color: rgba(255,255,255,0.5);
}

/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	left: 12px;
	top: 15px;
    width: 26px;
	outline: none;
	z-index: 1;
}

#menuBtn span {
	display: block;
	height: 4px;
	margin-bottom: 4px;
	background: #333;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.mm-menu {
	text-align: left;
}

.mm-menu ul {
	color: #000;
	color: rgba(0, 0, 0, 0.3);
}

.mm-menu ul li.Current,
.mm-menu ul li.active {
	background: #fff;
	background: rgba(255,255,255,0.8);
}

.mm-menu *:after, .mm-menu *:before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.mm-menu .mm-listview img {
	display: block;
	width: 100%;
}

.mm-menu .mm-listview p span {
	display: block;
}


/* Styling MMenu */

.mm-menu .mm-listview img {
	float: left;
	width: 95px;
}

.mm-menu .mm-listview p {
	position: relative;
	margin: 0 0 0 110px;
	font-size: 12px;
	min-height: 103px;
	padding-bottom: 30px;
}

.mm-menu .mm-listview p:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 8px;
	border-color: transparent transparent transparent #f03f28;
}

.mm-menu .mm-listview p span {
	display: block;
	font-size: 14px;
	font-weight: bold;
}

#ContactForm {
	max-width: 400px;
}

#ContactForm .form-group{
	margin-left: 0;
	margin-right: 0;
}
label.error {
	color: red;
	font-weight: normal;
	font-size: 11px;
}
.grecaptcha-badge {
	z-index: 999!important;
}
#content .section.Header {
    padding-top:0;
    padding-bottom:0;
}