/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 21px;
	font-weight: 500;
	overflow: hidden;
	padding-top: 139px;	
	transition: padding-top 0.3s;
}

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

@supports (overflow:clip) {
	#mainWrapper {
		overflow: clip;
	}
}

/* Header */

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

body.scrolled #header {
	top: -35px;
}

#header .top {
	background: #3e3e3e;
	color: #fff;
	font-size: 17px;
}

#header .top * {
	color: #fff;
}

#header .top .section {
	display: flex;
	padding-top: 5px;
	padding-bottom: 5px;
	height: 40px;
	align-items: center;
}

#header .top a {
	line-height: 1.352941176470588em;
}

#header .top .email {
	padding-left: 1.882352941176471em;
	background: url(../images/email-ico.svg) no-repeat 0 0.1764705882352941em;
	background-size: 1.470588235294118em;
}

#header .top .location {
	padding-left: 1.352941176470588em;
	margin-left: 2.411764705882353em;
	background: url(../images/location-ico.svg) no-repeat;
	background-size: 1em;
}

#header .bottom .section {
	display: flex;
	height: 100px;
	align-items: center;
	padding-top: 9px;
	padding-bottom: 9px;
}

#header .bottom .logo {
	width: 150px;
	flex-shrink: 0;
}

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

#header #navigation {
	margin-left: 167px;
}

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

#header #navigation ul li {
	position: relative;
	margin: 0 36px 0 0;
	padding: 0;
	list-style: none;
	font-size: 20px;
}

#header #navigation ul li a {
	position: relative;
	display: inline-block;
	color: #3e3e3e;
	transition: color 0.3s;
}

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

#header #navigation ul li.hasSub.Current>a:before,
#header #navigation ul li.hasSub.Parent>a:before,
#header #navigation ul li.hasSub:hover>a:before {
	background-position: left bottom;
}

#header #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: -15px;
	padding: 38px 0 0;
	min-width: calc(100% + 15px);
	border-bottom: 0.2105263157894737em solid #e0061b;
	border-radius: 0.2631578947368421em;
	z-index: 1;
	display: block;
}

#header #navigation ul li ul li {
	float: none;
	position: static;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	background: #ff3b32;
	color: #000;
}

#header #navigation ul li ul li a {
	display: block;
	padding: 0.5263157894736842em 15px;
	line-height: 1.2;
	white-space: nowrap;
	color: #fff !important;
	min-width: 100%;
	height: auto;
}

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

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

#header #navigation ul li ul { 
	visibility: hidden;
	opacity: 0;
	margin-left: 0;
	-webkit-transform: translateX(-2%);
	-ms-transform: translateX(-2%);
	    transform: translateX(-2%);
	-webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	-o-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 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 ul a:after {
	display: none;
}

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

#header #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.19em;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5789473684210526em 0.3157894736842105em 0 0.3157894736842105em;
	border-color: #3e3e3e 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: #ef2525 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: #ef2525 transparent transparent transparent;
}

#header .bottom .phone {
	position: relative;
	margin-left: auto;
	padding-left: 2.52em;
	font-size: 25px;
	color: #2e2e2e;
}

#header .bottom .phone:before {
	content: "";
	position: absolute;
	left: 0;
	top: -0.48em;
	width: 2.24em;
	height: 2.24em;
	background: #ef2525 url(../images/phone-ico.svg) no-repeat center;
	border: 0.2em solid #f7baba;
	border-radius: 100%;
	background-size: 1.16em;
}

/* Slider */

#slider {
	position: relative;
	margin-bottom: 90px;
}

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

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

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

#slider .slides li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	color: #fff;
	background: rgba(0,0,0,0.42);
}

#slider .slides li .overlay .section {
	display: flex;
	height: 100%;
	padding-bottom: 100px;
	align-items: center;
}

#slider .slides li .overlay .text {
	position: relative;
	max-width: 620px;
	z-index: 1;
}

#slider .slides li .overlay .text:before {
	content: "";
	position: absolute;
	left: -46px;
	top: 39px;
	width: 97px;
	height: 136px;
	background: url(../images/dotted.svg);
	background-size: 18px;
	z-index: -1;
}

#slider .slides li .overlay .text>:last-child {
	margin-bottom: 0;
}

#slider .starting {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -55px;
	text-align: center;
	z-index: 1;
}

#slider .starting .text {
	display: inline-flex;
	margin: 0;
	padding: 15px 80px;
	font-size: 27px;
	font-weight: 600;
	min-height: 110px;
	background: #fff;
	box-shadow: 0px 0px 38px rgba(0, 0, 0, 0.15);
	border-radius: 100px;
	align-items: center;
}

#slider .starting .text p {
	margin: 0;
}

/* Banner */

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

/* Content */

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

/* Booking */

#booking .heading {
	text-align: center;
	margin-bottom: 35px;
}

#booking .form {
	display: flex;
	border: 1px solid #cacaca;
	background: #f9f8f8;
	padding: 30px 40px;
	border-radius: 35px;
}

#booking .form .left {
	width: 780px;
}

#booking .form .right {
	width: 380px;
	margin-left: auto;
}

#booking .form .fields {
	display: flex;
	flex-wrap: wrap;
	--gap: 10px;
	margin: 0 calc(var(--gap) * -1);
}

#booking .form .fields .field {
	width: 100%;
	padding: 0 var(--gap);
	margin-bottom: 12px;
}

#booking .form .fields .field.half {
	width: 50%;
}

#booking .form .fields .field label {
	display: block;
	margin: 0 0 6px;
	padding: 0;
	font-weight: 500;
}

#booking .form .fields .field label.error {
	font-size: 16px;
	color: #ef2525;
	margin: 4px 0 0;
}

#booking .form .fields .field .textbox {
	display: block;
	margin: 0;
	padding: 15px;
	width: 100%;
	height: 52px;
	outline: none;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 21px;
	border-radius: 0;
	background: #fff;
	border: 1px solid #cacaca;
	-webkit-appearance: none;
	appearance: none;
}

#booking .form .fields .field textarea.textbox {
	height: 242px;
	overflow: auto;
	resize: none;
}

#booking .form .fields .field .submitBtn {
	margin: 7px 0 0;
}

/* Footer */

#footer {
	background: #000;
	color: #fff;
}

#footer .top .section {
	display: flex;
	padding-top: 60px;
	padding-bottom: 60px;
}

#footer .top .left {
	width: 275px;
	text-align: center;
	margin-top: 30px;
}

#footer .top .left .logo {
	display: block;
	filter: brightness(0) invert(1);
	width: 229px;
	margin: 0 auto 5px;
}

#footer .top .left .callUs {
	display: inline-block;
	text-align: center;
	font-size: 37px;
	color: #fff;
	text-align: center;
}

#footer .top .left .callUs span {
	display: block;
	font-size: 0.6756756756756757em; /* 25px */
	font-weight: 600;
	color: #ef2525;
}

#footer .top .middle {
	margin-left: 60px;
}

#footer .title {
	font-size: 27px;
	font-weight: 600;
	margin: 0 0 10px;
}

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

#footer .top .links li {
	margin: 0 0 3px;
	padding: 0;
	list-style: none;
	font-size: 17px;
}

#footer .top .links li a {
	color: #fff;
}

#footer .top .links li a:hover {
	text-decoration: underline;
}

#footer .top .right {
	margin-left: auto;
	padding-left: 20px;
}

#footer .top .right .contacts {
	margin: 0 0 10px;
	padding: 0;
}

#footer .top .right .contacts li {
	margin: 15px 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
}

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

#footer .top .right .contacts li a {
	display: inline-block;
	color: #fff;
	padding-left: 35px;
	padding-top: 2px;
	padding-bottom: 2px;
	line-height: 1.5;
}

#footer .top .right .contacts li.phone a {
	background: url(../images/phone-ico.svg) no-repeat 1px 1px;
	background-size: 23px;
}

#footer .top .right .contacts li.email a {
	background: url(../images/email-ico.svg) no-repeat 0 6px;
	background-size: 26px;
}

#footer .top .right .contacts li.map a {
	background: url(../images/location-ico.svg) no-repeat 2px 4px;
	background-size: 24px;
}

#footer .top .right .socials li a img {
	filter: brightness(0) saturate(100%);
}

#footer .bottom {
	background: #7a7a7a;
	text-align: center;
	border-bottom: 7px solid #fff;
}

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

#footer .bottom .copyright {
	margin: 0;
	font-size: 18px;
}

/* Mobile Navigation */

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

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

.mm-hasnavbar-top-1 .mm-panels, .mm-navbar-top-2 {
	background: #3e3e3e;
}

.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.Parent,
.mm-menu ul li.active {
	background: #966bb9;
}

.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next), .mm-menu .mm-listview>li.mm-selected>span {
	background: none;
}

.mm-menu ul li svg {
	display: none;
}

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

.mm-navbar {
	background: #000 !important;
	font-size: 16px;
}

.mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {
	color: #fff;
}

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
	border-color: #fff;
}

.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>a, .mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>span, .mm-menu.mm-multiline .mm-listview>li>a, .mm-menu.mm-multiline .mm-listview>li>span {
	color: #fff;
	font-size: 16px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.mm-listview .mm-next:before {
	background: #fff;
}

.mm-menu .mm-listview>li .mm-arrow:after, .mm-menu .mm-listview>li .mm-next:after {
	border-color: #fff;
}

.mm-menu em.mm-counter {
	color: #fff;
	font-size: 16px;
}

.mm-listview>li:not(.mm-divider):after {
	background-color: #fff;
}

.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;
}
.LocationTable {
    margin-bottom: 30px;
}
.errorStrip {
    border: 1px solid red;
    color: red;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding: 5px 5px;
    background-color: #F2DEDE;
    width: 100%;
}