/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-family: 'Myriad Pro', Arial, sans-serif;
	font-size: 17px;
	font-weight: normal;
	overflow: hidden;
	padding-top: 179px;
	-webkit-transition: padding-top 0.3s;
	-o-transition: padding-top 0.3s;
	transition: padding-top 0.3s;
}

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

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

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	z-index: 1000000;
	-webkit-filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
	        filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
}

#header:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -57px;
	height: 58px;
	background: url(../images/white-curve01.svg) no-repeat center top;
	background-size: 100% 100%;
	z-index: -1;
	pointer-events: none;
	-webkit-transition: height 0.3s, bottom 0.3s;
	-o-transition: height 0.3s, bottom 0.3s;
	transition: height 0.3s, bottom 0.3s;
}

body.scrolled #header:after {
	height: 33px;
	bottom: -32px;
}

#header .section {
	position: relative;
	height: 180px;
	padding-top: 23px;
	-webkit-transition: height 0.3s, padding-top 0.3s;
	-o-transition: height 0.3s, padding-top 0.3s;
	transition: height 0.3s, padding-top 0.3s;
}

body.scrolled #header .section {
	height: 126px;
	padding-top: 13px;
}

#header .tree {
	position: absolute;
	top: 4px;
	left: -16px;
	width: 201px;
	-webkit-transition: width 0.3s;
	-o-transition: width 0.3s;
	transition: width 0.3s;
}

body.scrolled #header .tree {
	width: 143px;
}

#header .logo {
	display: block;
	width: 641px;
	margin: 0 auto 18px;
	-webkit-transition: width 0.3s;
	-o-transition: width 0.3s;
	transition: width 0.3s;
}

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

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

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

#header #navigation ul li {
	position: relative;
	margin: 0 13px;
	padding: 0;
	list-style: none;
}

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


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

#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: 5px 0 0;
	min-width: calc(100% + 15px);
	border-bottom: 0.2105263157894737em solid #35560d;
	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: #426219;
	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: #507129;
	color: #fff;
}

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

#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.29em;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5789473684210526em 0.3157894736842105em 0 0.3157894736842105em;
	border-color: #426219 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: #a08d6d 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: #a08d6d transparent transparent transparent;
}

#header .socials {
	position: absolute;
	right: 0;
	top: 7px;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#header .socials li {
	margin: 0 0 0 7px;
	padding: 0;
	list-style: none;
}

#header .socials li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 36px;
	height: 36px;
	background: #000;
	border-radius: 100%;
}

#header .socials li a img {
	display: block;
	height: 20px;
	margin: 0 auto;
}

#header .socials li:nth-child(3n+1) a {
	background: #4e6940;
}

#header .socials li:nth-child(3n+2) a {
	background: #6a4c2c;
}

#header .socials li:nth-child(3n+3) a {
	background: #b8b08d;
}

#header .socials li a:hover {
	-webkit-transform: scale(1.07);
	    -ms-transform: scale(1.07);
	        transform: scale(1.07);
}

/* Slider */

#slider {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#slider .slides {
	position: relative;
	z-index: 2;
	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:before {
	content: "";
	position: absolute;
	right: -100px;
	bottom: -100px;
	width: 482px;
	height: 475px;
	background: url(../images/tree-image.svg) no-repeat;
	background-size: 100% 100%;
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
	opacity: 0.5;
	pointer-events: none;
	-webkit-animation: rotationAnimation 1.5s 0.1s forwards infinite alternate;
	animation: rotationAnimation 1.5s 0.1s forwards infinite alternate; 
}

#slider .slides li:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 58px;
	background: url(../images/white-curve01.svg) no-repeat center top;
	background-size: 100% 100%;
	pointer-events: none;
	-webkit-transform: scaleY(-1);
	    -ms-transform: scaleY(-1);
	        transform: scaleY(-1);
	z-index: 1;
}

#slider .slides li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#slider .slides li .overlay .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
}

#slider .slides li .overlay .text {
	position: relative;
	font-size: 17px;
	width: 30.94117647058824em;
	min-height: 31em;
	line-height: 1.5;
	padding: 7.764705882352941em 4.705882352941176em 1.764705882352941em 3.529411764705882em;
	margin-left: auto;
	text-align: center;
	z-index: 1;
}

#slider .slides li .overlay .text p {
	margin-bottom: 1.117647058823529em;
}

#slider .slides li .overlay .text:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	background: url(../images/slider-overlay-bg.svg) no-repeat;
	background-size: 100% 100%;
	z-index: -1;
	-webkit-animation: rotationAnimation 1.5s 0.9s forwards infinite alternate;
	animation: rotationAnimation 1.5s 0.9s forwards infinite alternate;
}

#slider .slides li .overlay .text:after {
	content: "";
	position: absolute;
	left: 6.058823529411765em;
	top: -0.8823529411764706em;
	width: 8.235294117647059em;
	height: 6.588235294117647em;
	background: url(../images/green-leaf.svg) no-repeat center top;
	background-size: 100% 100%;
	-webkit-animation: rotationAnimation 1.3s 0.19s forwards infinite alternate;
	animation: rotationAnimation 1.3s 0.19s forwards infinite alternate;
}

#slider .slides li .overlay .text .heading {
	font-size: 2.411764705882353em; /* 41px */
	margin-bottom: 0.4634146341463415em;
}

#slider .slides li .overlay .text .linkBtn {
	margin: 0 auto;
	font-size: 1.235294117647059em;
	background: #765c40;
}

#slider .slides li .overlay .text .linkBtn:hover {
	background: #82684c;
}

#slider .slides li .overlay .text .greenCurve {
	position: absolute;
	left: -1.941176470588235em;
	bottom: 1.529411764705882em;
	width: 6.823529411764706em;
	height: 15.88235294117647em;
	background: url(../images/green-small-curve.svg) no-repeat;
	background-size: 100% 100%;
	opacity: 0.9;
	-webkit-animation: rotationAnimation 1.1s 0.1s forwards infinite alternate;
	animation: rotationAnimation 1.1s 0.1s forwards infinite alternate;
}

#slider .slides li .overlay .text .brownCurve {
	position: absolute;
	right: -1.235294117647059em;
	top: 2.529411764705882em;
	width: 7.235294117647059em;
	height: 15.58823529411765em;
	background: url(../images/brown-small-curve.svg) no-repeat;
	background-size: 100% 100%;
	opacity: 0.9;
	-webkit-animation: rotationAnimation 1.3s 0.15s forwards infinite alternate;
	animation: rotationAnimation 1.3s 0.15s forwards infinite alternate;
}

/* Sub Banner */

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

body.subPage #content .section:last-child {
    padding-bottom: 60px;
}

/* Content */
#content {
    padding-bottom: 60px;
}

#content .section {
	padding-top: 40px;
}
#content .section.Header {
    padding-bottom: 0;
}
#content .section.Header .PageHeader {
    margin-bottom: 0;
}
/* Contact Us */

#contactUs {
	position: relative;
	background: #dbd7c6;
	z-index: 1;
}

#contactUs:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -2px;
	width: 100%;
	height: 40px;
	background: url(../images/white-curve-top.svg) no-repeat center top;
	background-size: 100% 100%;
	z-index: -1;
}

#contactUs .topCurve {
	position: absolute;
	width: 37.84722222222222%;
	height: 29px;
	top: -7px;
	left: 24.58333333333333%;
	-webkit-filter: brightness(0) saturate(100%) invert(30%) sepia(59%) saturate(539%) hue-rotate(44deg) brightness(95%) contrast(90%);
	        filter: brightness(0) saturate(100%) invert(30%) sepia(59%) saturate(539%) hue-rotate(44deg) brightness(95%) contrast(90%);
	opacity: 0.6;
	-webkit-animation: upDown 1.3s 0.4s forwards infinite alternate;
	animation: upDown 1.3s 0.4s forwards infinite alternate;
}

#contactUs .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 110px;
	padding-bottom: 85px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
#contactUs .facebook {
	width: 474px;
	margin-left: 56px;
	margin-bottom: 20px;
	text-align: center;
	min-height: 300px;
	background: #fff url(../images/loading-fb.gif) no-repeat center;
}

#contactUs .form {
	width: 630px;
	padding-bottom: 70px;
	margin-left: auto;
}

#contactUs .form .fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -17.5px;
}

#contactUs .form .fields .field {
	width: 100%;
	padding: 0 17.5px;
	margin-bottom: 16px;
}

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

#contactUs .form .fields .field .textbox {
	margin: 0;
	padding: 14px 19px;
	border: 0;
	width: 100%;
	height: 50px;
	background: #fff;
	font-family: 'Myriad Pro', Arial, sans-serif;
	font-size: 17px;
	color: #393939;
	outline: none;
	border: 1px solid #7d7d7d;
	border-radius: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

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

#contactUs .form .fields .field label.error {
	display: block;
	color: #f00;
	font-weight: normal;
	margin: 0;
	padding-top: 5px;
}

#contactUs .form .submitBtn {
	margin: 0;
	min-width: 130px;
}

/* enrolmentForm */

#enrolmentForm .section {
    padding-bottom: 85px;
}

/* Footer */

#footer {
	position: relative;
	background: #426219;
	color: #fff;
	z-index: 1;
}

#footer:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -66px;
	width: 100%;
	height: 68px;
	background: url(../images/green-curve-top.svg) no-repeat center top;
	background-size: 100% 100%;
}

#footer .section {
	padding-top: 1px;
	padding-bottom: 15px;
	text-align: center;
}

#footer .logo {
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
	display: inline-block;
	margin-bottom: 40px;
}

#footer .logo img:first-child {
	margin: 0 auto 10px;
	display: block;
	width: 109px;
}

#footer .logo img:last-child {
	display: block;
	width: 253px;
	margin: 0 auto;
}

#footer .contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: 'Playpen Sans', cursive;
	font-size: 21px;
	margin-bottom: 50px;
}

#footer .contacts a {
	display: inline-block;
	color: #b8b08d;
}

#footer .contacts .phone  {
	padding-left: 1.571428571428571em;
	background: url(../images/phone-ico.svg) no-repeat 0 0.0952380952380952em;
	background-size: 1.095238095238095em;
	margin-right: 0.9523809523809524em;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

#footer .contacts .email  {
	padding-left: 1.904761904761905em;
	background: url(../images/email-ico.svg) no-repeat 0 0.0952380952380952em;
	background-size: 1.428571428571429em;
	margin-right: 0.9523809523809524em;
}

#footer .contacts .socials {
	margin: 0 0 0 35px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

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

#footer .contacts .socials li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 50px;
	height: 50px;
	background: #b8b08d;
	border-radius: 100%;
}

#footer .contacts .socials li img {
	display: block;
	margin: 0 auto;
	height: 28px;
	-webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(15%) saturate(2074%) hue-rotate(44deg) brightness(86%) contrast(86%);
	        filter: brightness(0) saturate(100%) invert(35%) sepia(15%) saturate(2074%) hue-rotate(44deg) brightness(86%) contrast(86%);
}

#footer .contacts .socials li a:hover {
	-webkit-transform: scale(1.07);
	    -ms-transform: scale(1.07);
	        transform: scale(1.07);
}

#footer .copyright {
	font-size: 12.5px;
}
#footer .copyright a {
	color: #fff;
}
/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	width: 30px;
	outline: none;
	z-index: 10;
	top: 13px;
	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: #6a4d2d;
	border-radius: 10px;
}

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

.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: #435e35;
}

.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: #6a4d2d !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;
}

label.error {
    color: red;
    font-weight: normal;
    font-size: 12px;
}
.fieldRequired {
    color: red;
    font-size: 10px;
    vertical-align: super;
    ]
}
