
/* Main Wrapper */

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

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 130px;
	font-size: 16px;
	background: #fff;
	letter-spacing: 0.05em;
	-webkit-filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
	        filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
	z-index: 100000;
	-webkit-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

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

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

#header a {
	color: #000000;
}

#header .logo {
	position: absolute;
	left: 32px;
	top: 19px;
	width: 327px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

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

body.scrolled #header .logo {
	top: 53px;
	width: 291px;
}

#header .contacts {
	position: absolute;
	right: 0;
	top: 0;
	padding: 13px 30px 13px 17px;
	background: #d0d1e3;
	-webkit-border-top-left-radius: 30px;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-radius-topleft: 30px;
	-moz-border-radius-bottomleft: 30px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	-webkit-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

#header .contacts li {
	float: left;
	margin: 0 0 0 40px;
	padding: 0;
	list-style: none;
}

#header .contacts li a {
	position: relative;
	display: inline-block;
}

#header .contacts li a:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
}

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

#header .contacts li.phone a {
	font-weight: bold;
	padding-left: 2.125em;
}

#header .contacts li.phone a:after {
	width: 1.5625em;
	height: 1.5625em;
	border-radius: 100%;
	border: 0.125em solid #1b63b6;
	background: url(../images/phone-ico.svg) no-repeat center;
	background-size: 0.8125em;
}

#header .contacts li.email a {
	padding-left: 2em;
}

#header .contacts li.email a:after {
	top: 0.25em;
	width: 1.25em;
	height: 1em;
	background: url(../images/email-ico.svg) no-repeat;
	background-size: 100%;
}

#header .contacts li.follow a {
	padding-left: 1.375em;
}

#header .contacts li.follow a:after {
	top: 1px;
	width: 0.625em;
	height: 1.5625em;
	background: url(../images/facebook-ico.svg) no-repeat;
	background-size: 100%;
}

#header #navigation {
	position: absolute;
	right: 30px;
	top: 79px;
}

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

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

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

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

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

#header #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: 0;
	padding: 27px 0 0;
	min-width: 100%;
	border-radius: 5px;
}

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

#header #navigation ul li ul li a {
	display: block;
	padding: 10px 29px;
	line-height: 1.2;
	white-space: nowrap;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 0.05em;
	color: #000000 !important;
	min-width: 100%;
}

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

#header #navigation ul li ul li:hover a {
	color: #1b63b6 !important;
}

#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>a {
	padding-right: 1.125em;
}

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

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

#header #navigation ul li ul li:last-child {
	padding-bottom: 5px;
	-webkit-border-bottom-right-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-bottomright: 8px;
	-moz-border-radius-bottomleft: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}

/* Main Banner */

#mainBanner .slider {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 548px;
	background-repeat: repeat-x;
	background-position: center top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}
#mainBanner .slider .container {
	height: 100%;
}
#mainBanner .slider .overlay {
	position: relative;
	height: 100%;
}
#mainBanner .slider .overlay p {
	position: absolute;
	left: 0;
	top: 90px;
	margin: 0;
	padding: 0;
	font-family: 'ralewayregular', cursive;
	font-size: 36px;
	color: #fff;
	line-height: 2;
	text-shadow: 0 0 5px rgba(255,255,190, 0.75);
	text-align: center;
	padding-bottom: 95px;
	background: url(../images/leaf.png) no-repeat center bottom;
}
#mainBanner .slider .overlay p span {
	display: block;
	font-family: 'ralewaybold', Arial, sans-serif;
	font-size: 80px;
	color: #fff;
	margin-bottom: 22px;
	line-height: 0.8;
	text-shadow: 0 0 20px rgba(24,24,25,0.75);
}

#mainBanner .slides .owl-prev,
#mainBanner .slides .owl-next {
	position: absolute;
	top: 50%;
	margin-top: -26.5px;
	width: 30px;
	height: 53px;
	text-indent: -9999em;
	background: url(../images/slider-arrows.png) no-repeat left top;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	background-size: 100%;
	opacity: 0.8;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

#mainBanner .slides .owl-prev {
	left: 1%;
}

#mainBanner .slides .owl-next {
	right: 1%;
	background-position: left bottom;
}

#mainBanner .slides .owl-prev:hover,
#mainBanner .slides .owl-next:hover {
	opacity: 1;
}
#mainBanner .slides {
	margin: 0;
	padding: 0;
}

#mainBanner .slides li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
#mainBanner .slides li p {
	margin: 0;
	padding: 0;
}
#slider .slides li .overlay {
	position: absolute;
	left: 4.5em;
	top: 4.857142857142857em;
	color: #fff;
}

#slider .slides li .overlay .title {
	font-size: 4.142857142857143em; /* 58px */
	margin: 0 0 0.2586206896551724em;
	line-height: 1.1;
	text-shadow: 0 0 0.3448275862068966em rgba(0,0,0,0.75);
	letter-spacing: -1px;
}

#slider .slides li .overlay .subtitle {
	font-size: 1.285714285714286em; /* 18px */
	margin: 0 0 1.388888888888889em;
	line-height: 1.1;
	text-shadow: 0 0 1.111111111111111em rgba(0,0,0,0.75);
}

#slider .slides li .overlay .link {
	display: inline-block;
	line-height: 3.3em;
	padding: 0 1.05em 0 3.15em;
	background: #f7921e url(../images/enrol-ico.png) no-repeat 1.15em center;
	font-size: 1.428571428571429em; /* 20px */
	color: #fff;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
	-webkit-background-size: 1.5em;
	-moz-background-size: 1.5em;
	background-size: 1.5em;
	-ms-behavior: url(backgroundsize.min.htc);
}

#slider .slidePagi {
	position: absolute;
	left: -3.428571428571429em;
	top: 0;
	width: 3.428571428571429em;
	height: 100%;
	transition: all 0.5s;
}

#slider .slidePagi .inner {
	display: table;
	height: 100%;
	width: 100%;
}

#slider .slidePagi .surround {
	display: table-cell;
	vertical-align: middle;
}

#slider .slidePagi .pagi {
	padding: 1px 0;
	background: #ec1e79;
	-webkit-border-top-left-radius: 0.7142857142857143em;
	-webkit-border-bottom-left-radius: 0.7142857142857143em;
	-moz-border-radius-topleft: 0.7142857142857143em;
	-moz-border-radius-bottomleft: 0.7142857142857143em;
	border-top-left-radius: 0.7142857142857143em;
	border-bottom-left-radius: 0.7142857142857143em;
}

#slider .slidePagi .owl-dot {
	display: block;
	width: 1em;
	height: 1em;
	margin: 1.285714285714286em auto;
	border: 0.2142857142857143em solid #fff;
	cursor: pointer;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

#slider .slidePagi .owl-dot.active {
	background: #fff;
}


/* Banner */

#banner .image {
	float: left;
	width: 56.04166666666667%;
	-webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS4yMWluIiBoZWlnaHQ9IjlpbiIgdmlld0JveD0iMCAwIDgwNyA2NDgiPjxwYXRoIGQ9Ik0uNSwwSDQ5MUEzMjQuMDgsMzI0LjA4LDAsMCwxLDgwNy41LDMyMS4zdjkuMjhBMzI0LjA3LDMyNC4wNywwLDAsMSw0ODYuMjUsNjQ4SC41WiIvPjwvc3ZnPg==");
	mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS4yMWluIiBoZWlnaHQ9IjlpbiIgdmlld0JveD0iMCAwIDgwNyA2NDgiPjxwYXRoIGQ9Ik0uNSwwSDQ5MUEzMjQuMDgsMzI0LjA4LDAsMCwxLDgwNy41LDMyMS4zdjkuMjhBMzI0LjA3LDMyNC4wNywwLDAsMSw0ODYuMjUsNjQ4SC41WiIvPjwvc3ZnPg==");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

#mainBanner .text {
	float: right;
	width: 665px;
	margin-right: 7.6vw;
	text-align: right;
}

#mainBanner .text .inner {
	position: relative;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 40px;
}
#mainBanner .text .inner p {
        background-color: rgba(255,255,255,0.5);
    padding: 15px 20px;
 }
#mainBanner .text .inner :last-child {
	margin-bottom: 0;
}

#mainBanner .text .inner:before {
	content: "";
	position: absolute;
	left: -9999em;
	right: -9999em;
	top: 0;
	bottom: 0;
	z-index: -1;
	background: #d0d1e3;

}

#mainBanner .text .links {
	padding: 0;
}

#mainBanner .text .links .linkBtn {
	position: relative;
	display: inline-block;
	min-width: 13em;
	cursor: pointer;
	margin: 0 0 0 3.0625em;
	padding: 1.21875em 0.625em;
	border: 0;
	border-radius: 3.125em;
	outline: none;
	text-align: center;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	background: #2e8f1d;
}

#mainBanner .text .links .linkBtn:first-child {
	margin-left: 0;
}

#mainBanner .text .links .linkBtn.blueBtn {
	background-color: #1b63b6;
}

#mainBanner .text .links .linkBtn:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: 0.17em solid #2e8f1d;
	border-radius: 3.125em;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

#mainBanner .text .links .linkBtn.blueBtn:after {
	border-color: #1b63b6;
}

#mainBanner .text .links .linkBtn:hover:after {
	top: -0.5em;
	bottom: -0.5em;
	left: -0.5em;
	right: -0.5em;
	opacity: 1;
}

/* Sub Banner */

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

/* Content */

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

/* Info */

#info {
	background: #eaf4e8;
}

#info .section {
	padding-top: 90px;
	padding-bottom: 90px;
}

#info .text {
	max-width: 934px;
	margin: 0 auto;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
}

#info .text .title {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 40px;
}

#info .text :last-child {
	margin-bottom: 0;
}

/* Footer */

#footer {
	color: #fff;
	font-size: 16px;
}

#footer a {
	color: #fff;
}

#footer .top {
	background: #1b63b6;
}

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

#footer .top .links {
	float: left;
	padding-right: 20px;
}

#footer .top .links.left {
	width: 400px;
}

#footer .top .links.middle {
	width: 300px;
}

#footer .top .links.right {
	float: right;
	width: 470px;
	padding-right: 0;
}

#footer .top .links .title {
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 24px;
	font-weight: bold;
}

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

#footer .top .links ul li {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

#footer .top .links ul li a {
	display: inline-block;
}

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

#footer .top .links ul li.phone a,
#footer .top .links ul li.email a {
	padding-left: 36px;
	background: no-repeat left center;
	background-size: 20px;
}

#footer .top .links ul li.phone a {
	background-image: url(../images/phone-white-ico.svg);
}

#footer .top .links ul li.email a {
	background-image: url(../images/email-white-ico.svg);
}

#footer .top .links .map iframe {
	width: 100%;
}

#footer .bottom {
	background: #171c68;
}

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

#footer .bottom .copyright {
	color: rgba(255,255,255,0.5);
	font-size: 14px;
	font-weight: 300;
	margin: 0;
}

/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	left: 8px;
	top: 37px;
    width: 25px;
	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: #2e3192;
	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;
}

.menuTitle {
	border-bottom: 1px solid red;
	padding-bottom: 20px;
}

.menu_week {
	margin: 0 -15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.menu_day {
	width: 20%;
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	border: 0;
}
.menu_item {
	border: 1px solid #d1cbc5;
	text-align: center;
	background-color: #f5f5f9;
	margin-bottom: 10px;
	padding-bottom: 8px;
}

.menu_item .menu_item_name {
	margin-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

.menu_item .menu_item_cat {
	padding: 5px;
	margin-bottom: 7px;
}

.menu_item .menu_buttons {
	margin: 0;
}

#quantity {
	width: 100%;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
}
.menu_item .input-group {
	margin:0 40px 5px;
}
.menu_item_cat {
	background-color: #d1cbc5;
	font-size: 15px;

}
#faqlist .faq .faq_question {
    color: #151B73;
    border: 4px solid #151B73;
}
#faqlist .faq .faq_question.active {
    color: #ffffff;
    background-color: #151B73;
}
#faqlist .faq .faq_question.active:after {
    filter: brightness(0) saturate(100%) invert(96%) sepia(12%) saturate(128%) hue-rotate(334deg) brightness(115%) contrast(100%);
}
label.error {
    font-weight: normal;
    font-size: 11px;
    color: red;
}
