/* Main Wrapper */

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

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

/* Section */

.section {
	position: relative;
	max-width: 1125px;
	margin: 0 auto;
}

/* Header */
 
#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	z-index: 10000000;
	-webkit-box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.1);
}

#header .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1290px;
	height: 105px;
	margin: 0 auto;
	padding-top: 15px;
	padding-bottom: 15px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
}

body.scrolled #header .section {
	height: 70px;
}

#header .logo {
	display: block;
	width: 187px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-webkit-transition: width 0.3s;
	-o-transition: width 0.3s;
	transition: width 0.3s;
}

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

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

#header #navigation {
	margin-left: auto;
}

#header #navigation ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#header #navigation ul li {
	position: relative;
	margin: 0 0 0 30px;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: 'Montserrat', Arial, serif;
	font-size: 12px;
	font-weight: 500;
}

#header #navigation ul li a {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #7f8c91;
}

#header #navigation>ul>li:hover>a,
#header #navigation>ul>li.Current>a,
#header #navigation>ul>li.Parent>a {
	color: #00b0f0; 
}

#header #navigation>ul>li>a {
	display: inline-block;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

#header #navigation ul li ul {
	position: relative;
	margin: 0;
	text-align: left;
	position: absolute;
	left: -65.5px;
	padding: 58px 0 0;
	width: 219px;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(-2%);
	    -ms-transform: translateY(-2%);
	        transform: translateY(-2%);
	-webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, padding-top 0.3s;
	-o-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, padding-top 0.3s;
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, padding-top 0.3s;
}

#header #navigation ul li ul:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 43px;
	bottom: -16px;
	border-radius: 10px;
	background: rgba(0,176,240,0.75);
	z-index: -1;
	transition: top 0.3s;
}

#header #navigation ul li ul:after {
	content: "";
	position: absolute;
	top: 23px;
	width: 0;
	height: 0;
	left: 50%;
	margin-left: -38px;
	border-style: solid;
	border-width: 0 38px 20px 38px;
	border-color: transparent transparent rgba(0,176,240,0.75);
	transition: top 0.3s;
}

body.scrolled #header #navigation ul li ul {
	padding-top: 42px;
}

body.scrolled #header #navigation ul li ul:before {
	top: 26px;
}

body.scrolled #header #navigation ul li ul:after {
	top: 6px;
}

#header #navigation ul li ul li {
	float: none;
	position: static;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	color: #000;
	font-family: 'Montserrat', Arial, serif;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.2;
}

#header #navigation ul li ul li a {
	display: block;
	padding: 0.375em 0.7894736842105263em;
	line-height: 1.2;
	white-space: nowrap;
	color: #333333 !important;
	min-width: 100%;
}

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

#header #navigation ul li ul li:hover {
	background-color: #00b0f0;
	color: #fff;
}

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

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

#header #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.4166666666666667em;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5833333333333333em 0.5416666666666667em 0 0.5416666666666667em;
	border-color: #7f8c91 transparent transparent transparent;

	pointer-events: none;
	-webkit-transition: transform 0.3s, border-color 0.3s;
	-webkit-transition: border-color 0.3s, -webkit-transform 0.3s;
	transition: border-color 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, border-color 0.3s;
	transition: transform 0.3s, border-color 0.3s;
	transition: transform 0.3s, border-color 0.3s, -webkit-transform 0.3s;
}

#header #navigation ul li.hasSub:hover>a:before {
	border-color: #00b0f0 transparent transparent transparent;
	background-position: left bottom;
	-webkit-transform: rotate(180deg);	
	-ms-transform: rotate(180deg);	
	    transform: rotate(180deg);	
}

#header #navigation ul li.Current>a:before,
#header #navigation ul li.Parent>a:before {
	border-color: #00b0f0 transparent transparent transparent;	
}

/* Products */

#products .product {
	margin-bottom: 15px;
}

#products .product .name {
	position: relative;
	margin: 0;
	padding: 13px 50px 13px 20px;
	border: 4px solid #00b0f0;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	color: #00b0f0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
	-moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
	 -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

#products .product .name:after {
	content: "";
	position: absolute;
	right: 20px;
	top: 21px;
	width: 22px;
	height: 13px;
	pointer-events: none;
	background: url(../images/product-arrow.png) no-repeat left top;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	background-size: 100%;
	-ms-behavior: url(/backgroundsize.min.htc);
	transition: transform 0.5s;
}

#products .product .name.active {
	background-color: #00b0f0;
	color: #fff;
}

#products .product .name.active:after {
	background-position: left bottom;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

#products .product .desc {
	display: none;
	padding: 20px;
}

/* Slider */

#slider {
	position: relative;
}

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

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

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

#slider .slides .owl-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50px;
	text-align: center;
	pointer-events: none;
}

#slider .slides .owl-dots .owl-dot {
	margin: 0 14px;
	padding: 0;
	width: 12px;
	height: 12px;
	background: #bcbabc;
	pointer-events: auto;
	border-radius: 100%;
	outline: none;
}

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

.hotdoc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	left: 0;
	top: 122px;
	width: 270px;
	height: 60px;
	-webkit-box-pack: right;
	    -ms-flex-pack: right;
	        justify-content: right;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #28bb66;
	-webkit-border-top-right-radius: 30px;
	-webkit-border-bottom-right-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	-webkit-transition: width 0.6s, background-color 0.6s, top 0.3s;
	-o-transition: width 0.6s, background-color 0.6s, top 0.3s;
	transition: width 0.6s, background-color 0.6s, top 0.3s;
	z-index: 1;

}

body.scrolled .hotdoc {
	top: 84px;
}

.hotdoc img {
	display: block;
	width: 81.48148148148148%;
	margin-left: auto;
	margin-right: 9.62962962962963%;
}

.hotdoc:hover {
	background-color: #41cb75;
}

/* Banner */

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

/* Content */

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

#content .section:after {
	content: "";
	position: absolute;
	right: -103px;
	bottom: 104px;
	width: 75px;
	height: 69px;
	background: url(../images/logo.svg) no-repeat;
	background-size: auto 100%;
	z-index: -1;
}

/* Services */

#services .listing {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#services .listing li {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 25%;
}

#services .listing li a {
	position: relative;
	display: block;
	font-size: 1.587115666178624vw; /* 21.68px */
	color: #fff;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
	overflow: hidden;
}

#services .listing li span {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	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: rgba(0,0,0,0.33);
	-webkit-transition: background-color 1s;
	-o-transition: background-color 1s;
	transition: background-color 1s;
}

#services .listing li img {
	display: block;
	width: 100%;
	opacity: 0.4;
	-webkit-transition: -webkit-transform 1.5s;
	transition: -webkit-transform 1.5s;
	-o-transition: transform 1.5s;
	transition: transform 1.5s;
	transition: transform 1.5s, -webkit-transform 1.5s;
}

#services .listing li a:hover span {
	background: rgba(0,0,0,0.60);
}

#services .listing li a:hover img {
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}

/* Appointment */

#appointment .section {
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: center;
}

#appointment .title {
	font-family: 'Montserrat', Arial, serif;
	font-weight: 500;
	font-size: 30px;
	color: #1d1d1d;
}

#appointment .subtitle {
	font-family: 'Nunito Sans', Arial, serif;
	font-size: 16px;
	margin-bottom: 35px;
}

#appointment .bookBtn {
	display: block;
	width: 278px;
	background: #28bb66;
	border-radius: 50px;
	padding: 5px;
	margin: 0 auto;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

#appointment .bookBtn img {
	display: block;
	width: 75.17985611510791%;
	margin: 0 auto;
}

#appointment .bookBtn:hover {
	background-color: #41cb75;
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

/* Footer */

#footer {
	font-family: 'Nunito Sans', Arial, serif;
	font-size: 15px;
}

#footer .section {
	max-width: 1235px;
}

#footer .top {
	background: #f5f5f5;
}

#footer .top .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 40px;
	padding-bottom: 30px;
}

#footer .top .right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
	padding-left: 20px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#footer .top .left>:last-child {
	margin-bottom: 0;
}

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

#footer .top .links li {
	margin: 0 0 2px;
	padding: 0;
	list-style: none;
	text-align: right;
}

#footer .top a {
	display: inline-block;
	color: #787878;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}

#footer .top a:hover {
	color: #00b0f0;
}

#footer .top .socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#footer .top .socials li {
	margin: 0 0 9px 9px;
	padding: 0;
	list-style: none;
}

#footer .top .socials li a {
	display: inline-block;
	-webkit-filter: grayscale(100%);
	        filter: grayscale(100%);
	-webkit-transition: -webkit-filter 0.6s;
	transition: -webkit-filter 0.6s;
	-o-transition: filter 0.6s;
	transition: filter 0.6s;
	transition: filter 0.6s, -webkit-filter 0.6s;
}

#footer .top .socials li img {
	display: block;
	height: 30px;
}

#footer .top .socials li a:hover {
	-webkit-filter: grayscale(0);
	        filter: grayscale(0);
}

#footer .top .hours,
#footer .top .hours th,
#footer .top .hours td,
#footer .top .hours caption {
	margin: 0;
	padding: 0;
	font-weight: normal;
	text-align: left;
	border-collapse: collapse;
	border-spacing: 0;
}

#footer .top .hours caption {
	text-align: center;
	font-weight: bold;
	padding-bottom: 3px;
}

#footer .top .hours th {
	padding-right: 20px;
	text-align: right;
}

#footer .top .contacts {
	margin-top: 8px;
	margin-right: 35px;
}

#footer .top .contacts .listing {
	margin: 0;
	padding: 0;
	text-align: right;
}

#footer .top .contacts .listing li {
	margin: 0 0 19px;
	padding: 0;
	list-style: none;
}

#footer .top .contacts .listing li:last-child {
	margin-bottom: 0;
}

#footer .bottom {
	background: #54666c;
	color: #e8e7fa;
}

#footer .bottom a {
	color: #e8e7fa;	
}

#footer .bottom .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 18px;
	padding-bottom: 30px;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

#footer .bottom .logo {
	display: block;
	width: 174px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 20px;
}

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

#footer .bottom .agpal {
	position: absolute;
	top: -28px;
	width: 164px;
	left: 50%;
	margin-left: -82px;
}

#footer .bottom .copyright {
	margin: 0 0 13px auto;
	text-align: right;
}

/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	left: 11px;
	top: 13px;
	width: 27px;
	outline: none;
	z-index: 10;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#menuBtn span {
	display: block;
	height: 4px;
	margin-bottom: 4px;
	background: #000;
	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;
	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-size: 11px;
	font-weight: normal;
}
.errorStrip {
	background-color: #eee;
	text-align: center;
	color: red;
	margin-bottom: 15px;

}
