/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 18px;
	overflow: hidden;
	padding-top: 156px;
	-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;
	z-index: 100000;
	-webkit-box-shadow: 0 1px 8px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 8px rgba(0,0,0,0.2);
	box-shadow: 0 1px 8px rgba(0,0,0,0.2);
	border-bottom: 4px solid #333333;
}

#header .section {
	max-width: 100%;
	height: 156px;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

#header .logo {
	position: absolute;
	left: 2.562225475841874%;
	top: 7px;
	width: 428px;
	-webkit-transition: width 0.3s;
	-moz-transition: width 0.3s;
	transition: width 0.3s;
}

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

#header .socials {
	position: absolute;
	right: 7.540263543191801%;
	top: 66px;
	margin: 0;
	padding: 0;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	transition: top 0.3s;
}

body.scrolled #header .socials {
	top: 13px;
}

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

#header .socials li a {
	display: inline-block;
	width: 27px;
	height: 27px;
	padding-top: 1px;
	background: #9eb952;
	text-align: center;
	border-radius: 100%;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
}

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

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

#header .contacts {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 6px;
	right: 7.540263543191801%;
	text-align: right;
	line-height: 1.1;
	-webkit-transition: top 0.3s, opacity 0.3s;
	-moz-transition: top 0.3s, opacity 0.3s;
	transition: top 0.3s, opacity 0.3s;
}

body.scrolled #header .contacts {
	top: -60px;
	opacity: 0;
}

#header .contacts li {
	margin: 0;
	padding: 0 0 7px 0;
	list-style: none;
	font-size: 24px;
}

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

#header .contacts li.phone a {
	color: #d060a5;
}

#header .contacts li.email a {
	color: #86b4ba;
}

#header .contacts li a:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1.083333333333333em;
	height: 1.083333333333333em;
	background: currentColor no-repeat center;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-background-size: auto 0.75em;
	-moz-background-size: auto 0.75em;
	background-size: auto 0.75em;
}

#header .contacts li.phone a:after {
	background-image: url(../images/phone-ico.svg);
}

#header .contacts li.email a:after {
	background-image: url(../images/email-ico.svg);
}

/* Navigation */

#navigation {
	position: absolute;
	right: 7.540263543191801%;
	top: 120px;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	transition: top 0.3s;
}

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

#navigation ul li {
	position: relative;
	float: left;
	margin: 0 0 0 40px;
	padding: 0;
	list-style: none;
	font-size: 18px;
}

#navigation ul li a {
	color: #666666;	
}

#header #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: 0;
	padding: 18px 0 0;
	border-bottom: 4px solid #729017;
	-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 ul li ul li {
	float: none;
	position: static;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	background: #93b03b;
	color: #fff;
}

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

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

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

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

#header #navigation ul 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 ul 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: 0.7777777777777778em;
}

#header #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.17em;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.4444444444444444em 0.25em 0 0.25em;
	border-color: #666666 transparent transparent transparent;
	pointer-events: none;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
}

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

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

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

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

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

body.scrolled #navigation {
	top: 60px;
}

/* Gallery */

#gallery {
	position: relative;
	margin: 0 0 25px 25px;
}

#gallery:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -35px;
	height: 36px;
	z-index: 2;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
	-ms-behavior: url(/backgroundsize.min.htc);
}

#gallery .top {
	position: relative;
	margin-bottom: -30px;
	padding: 10px 0 15px;
	background: url(../images/gallery-top-edge.png) no-repeat center bottom;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
	-ms-behavior: url(/backgroundsize.min.htc);
	z-index: 2;
}


#gallery h1 {
	font-family: 'Roboto Slab', Arial, sans-serif;
	color: #4a1e04;
	margin: 0;
}

#gallery .owl-carousel {
	margin: 0;
	padding: 0;
}

#gallery .owl-carousel li {
	float: left;
	margin: 10px 0 0;
	padding: 0 0 0 5px;
	list-style: none;
}

#gallery .owl-carousel li a {
	display: block;
	overflow: hidden;
}

#gallery .owl-carousel li img {
	display: block;
	width: 100%;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
}

#gallery .owl-carousel li a:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05);
}

#gallery .owl-prev,
#gallery .owl-next {
	position: absolute;
	top: 50%;
	margin-top: -13.5px;
	width: 17px;
	height: 27px;
	background: url(../images/slider-arrows.png) no-repeat;
	text-indent: -9999em;
}

#gallery .owl-prev {
	left: 15px;	
	background-position: left top;
}

#gallery .owl-next {
	right: 35px;	
	background-position: left bottom;
}

/* Slider */

#slider,
.slider {
	position: relative;
	background-position: right top;
	background-repeat: no-repeat;
	background-size: auto 100%;
	margin-bottom: -5%;
	z-index: 1;
}

#slider:after,
#banner:after,
.slider:after {
	content: "";
	position: absolute;
	left: -2px;
	right: -2px;
	bottom: -2px;
	height: 13%;
	background: url(../images/slider-curve.svg) no-repeat center top;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
	z-index: 1;
}

#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,
.slider .overlay {
	position: absolute;
	width: 40.26354319180088vw;
	left: 5.197657393850659vw;
	top: 0;
	bottom: 0;
}

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

#slider .slides li .overlay .inner .text,
.slider .overlay .inner .text {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 2.635431918008785vw; /* 36px */
	color: #333333;
	line-height: 1.389;
	padding-bottom: 4vw;
}

#slider .slides li .overlay .inner .text p:not(.title),
.slider .overlay .inner .text p:not(.title) {
	text-shadow: 0 0 0.3611111111111111em rgba(255,255,255,0.75), 0 0 0.3611111111111111em rgba(255,255,255,0.75), 0 0 0.3611111111111111em rgba(255,255,255,0.75), 0 0 0.3611111111111111em rgba(255,255,255,0.75), 0 0 0.3611111111111111em rgba(255,255,255,0.75), 0 0 0.3611111111111111em rgba(255,255,255,0.75), 0 0 0.3611111111111111em rgba(255,255,255,0.75), 0 0 0.3611111111111111em rgba(255,255,255,0.75), 0 0 0.3611111111111111em rgba(255,255,255,0.75);	
}

#slider .slides li .overlay .inner .text .title,
.slider .overlay .inner .text .title {
	font-family: 'Pacifico', cursive;
	font-size: 4.256222547584187vw; /* 58.14px */
	color: #fce08d;
	margin-bottom: 0.4em;
}

.orangeColor {
	color: #f06a48;
}

.pinkColor {
	color: #d060a5;
}

.greenColor {
	color: #9db851;
}

#slider .slides li .overlay .inner .text .linkBtns,
.slider .overlay .inner .text .linkBtns {
	margin-top: 1.8vw;
}

#slider .slides li .overlay .inner .text .linkBtn,
.slider .overlay .inner .text .linkBtn {
	font-size: 1.756954612005857vw;
	margin: 0 1.464128843338214vw;
}

.slider .overlay .inner .text .linkBtn {
	margin-left: 0.8vw;
	margin-right: 0.8vw;
}

#slider .slides .owl-prev,
#slider .slides .owl-next,
.slider .owl-prev,
.slider .owl-next {
	position: absolute;
	top: 50%;
	margin-top: -4vw;
	width: 1.976573938506589vw;
	height: 4.392386530014641vw;
	text-indent: -9999em;
	background: url(../images/slider-arrows.svg) no-repeat left top;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	background-size: 100%;
	outline: none;
}

#slider .slides .owl-prev,
.slider .owl-prev {
	left: 1.5vw;	
}

#slider .slides .owl-next,
.slider .owl-next {
	right: 1.5vw;	
	background-position: left bottom;
}

/* Banner */

#banner {
	position: relative;
}

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

/* Content */

#content {
	position: relative;
	z-index: 1;
    padding-bottom: 55px;

}

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

/* Footer */

#footer {
	color: #fff;
	background: #333333;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

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

#footer .copyright {
	margin: 0;
	text-align: center;
	font-family: 'Nunito', Arial, sans-serif;
	font-size: 16px;
}

#footer .copyright a {
	color: #fff;
}

#footer .copyright a:hover {
	text-decoration: underline;
}

/* Mobile Navigation */

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

#menuBtn span {
	display: block;
	height: 3px;
	margin-bottom: 4px;
	background: #4d6625;
	-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;
}
.errorStrip span {
	display: block;
	width: 800px;
}
.errorStrip {
	color: red;
	margin: 10px 0;
	text-align: center;
}