/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-family: 'Century Gothic', Arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
	overflow: hidden;
	padding-top: 107px;
}

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

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	z-index: 1000000;
}

#header:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -32px;
	height: 34px;
	background: url(../images/header-curve.svg) no-repeat center top;
	background-size: 100% 100%;
	z-index: -1;
}

#header:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -27px;
	height: 11px;
	background: url(../images/curvy-line01.svg) no-repeat center top;
	background-size: 100% 100%;
	z-index: -1;
}

#header .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 108px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#header .logo {
	display: block;
	width: 159px;
	margin-top: 10px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

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

#header .options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
	margin-top: 16px;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

#header .options .loginBtn {
	position: relative;
	background: #f6e960;
	color: #000;
	font-size: 15px;
	font-weight: bold;
	padding: 0.2em 3.2em 0.2em 1.133333333333333em;
	border-radius: 9px;
	-webkit-perspective: 53.33333333333333em;
	        perspective: 53.33333333333333em;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

#header .options .loginBtn:after {
	content: "";
	position: absolute;
	right: 1.066666666666667em;
	top: 0.3em;
	width: 1.333333333333333em;
	height: 1.333333333333333em;
	background: url(../images/login-ico.svg) no-repeat;
	background-size: 100%;
	-webkit-transition: -webkit-transform 0.6s ease;
	transition: -webkit-transform 0.6s ease;
	-o-transition: transform 0.6s ease;
	transition: transform 0.6s ease;
	transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
}

#header .options .loginBtn:hover {
	background-color: #fff96f;
}

#header .options .loginBtn:hover:after {
   -webkit-transform: rotate3d(1,0,0,180deg);
           transform: rotate3d(1,0,0,180deg);
}

#header .options #navigation {
	margin-top: 18px;
}

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

#header .options #navigation ul li {
	position: relative;
	margin: 0 0 0 30px;
	padding: 0;
	list-style: none;
	font-family: 'Happy Monkey', cursive;
	font-size: 17px;
}

#header .options #navigation ul li a {
	display: inline-block;
	color: #191e17;
	text-shadow: 0 0 1px currentColor;
}

#header .options #navigation ul li svg {
	position: absolute;
	left: 0;
	bottom: -30px;
	pointer-events: none;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s; 
}

#header .options #navigation ul li path {
	-webkit-transition: stroke-dasharray 0.5s, stroke-dashoffset 0.5s, opacity 0.5s;
	-o-transition: stroke-dasharray 0.5s, stroke-dashoffset 0.5s, opacity 0.5s;
	transition: stroke-dasharray 0.5s, stroke-dashoffset 0.5s, opacity 0.5s; 
}
  
#header .options #navigation ul li path:last-child {
	opacity: 0.2; 
}

#header .options #navigation>ul>li:hover>a + svg,
#header .options #navigation>ul>li.Current>a + svg,
#header .options #navigation>ul>li.Parent>a + svg {
	opacity: 1; 
}

#header .options #navigation>ul>li:hover>a + svg path,
#header .options #navigation>ul>li.Current>a + svg path,
#header .options #navigation>ul>li.Parent>a + svg path {
	stroke-dashoffset: 0; 
}

#header .options #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: -15px;
	padding: 11px 0 0;
	min-width: calc(100% + 15px);
	border-bottom: 0.2105263157894737em solid #27a612;
	border-radius: 0.2631578947368421em;
	z-index: 1;
	display: block;
	-webkit-transition: padding-top 0.3s;
	-o-transition: padding-top 0.3s;
	transition: padding-top 0.3s;
}

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

#header .options #navigation ul li ul li:first-child {
	border-top-left-radius: 0.2631578947368421em;
	border-top-right-radius: 0.2631578947368421em;
}

#header .options #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 .options #navigation ul li ul li a:before  {
	display: none;
}

#header .options #navigation ul li ul li:hover {
	background-color: #27a64a;
	color: #fff;
}

#header .options #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 .options #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 .options #navigation ul li.hasSub ul a:after {
	display: none
}

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

#header .options #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.30em;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5789473684210526em 0.3157894736842105em 0 0.3157894736842105em;
	border-color: #191e17 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 .options #navigation ul li.hasSub:hover>a:before {
	border-color: #191e17 transparent transparent transparent;
	background-position: left bottom;
	-webkit-transform: rotate(180deg);	
	-ms-transform: rotate(180deg);	
	    transform: rotate(180deg);	
}

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

/* Slider */

#slider {
	position: relative;
}

#slider:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 17px;
	background: url(../images/waves01.svg) no-repeat;
	background-size: 100% 100%;
	z-index: 1;
	-webkit-animation: curvesAnim 2s;
	animation: curvesAnim 2s;
}

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

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

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

/* Image Slider */
 
#imageSlider {
	position: relative;
	border-top: 2px solid #191e17;
	border-bottom: 2px solid #191e17;
}

#imageSlider:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 27px;
	background: url(../images/curvy-line02.svg) no-repeat center top;
	background-size: 100% 100%;
	z-index: 2;
	pointer-events: none;
}

#imageSlider:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -16px;
	height: 11px;
	background: url(../images/curvy-line01.svg) no-repeat center top;
	background-size: 100% 100%;
	z-index: 2;
	pointer-events: none;
}

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

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

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

#imageSlider .slides .owl-nav {
	position: absolute;
	left: 6.25%;
	right: 6.25%;
	top: 50%;
	margin-top: -30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

#imageSlider .slides .owl-nav {
	pointer-events: none;
}

#imageSlider .slides .owl-nav .owl-prev,
#imageSlider .slides .owl-nav .owl-next {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	text-indent: -9999em;
	outline: none;
	background: rgba(51,51,51,0.6) url(../images/slider-arrow.svg) no-repeat center;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
	pointer-events: auto;
}

#imageSlider .slides .owl-nav .owl-next {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

#imageSlider .slides .owl-nav button:hover {
	background-color: #333333;
}

/* Contact */

#contact .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 60px;
	padding-bottom: 60px;
}

#contact .feeds {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 461px;
	border-radius: 20px;
	-webkit-box-shadow: 0px 0px 14px 0px rgba(25, 30, 23, 0.34);
	        box-shadow: 0px 0px 14px 0px rgba(25, 30, 23, 0.34);
	overflow: hidden;
}

#contact .feeds .facebook {
	width: 100%;
	text-align: center;
	background: #f5f6f7 url(../images/loading-fb.gif) no-repeat center;
}

#contact .form {
	width: 740px;
	padding-top: 40px;
	margin-left: auto;
}

#contact .form .fields {
	--gap: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 calc(var(--gap) * -1);
}

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

#contact .form .fields .field .textbox {
	display: block;
	margin: 0;
	padding: 16px 20px;
	background: #f4f4f4;
	color: #191e17;
	font-family: 'Century Gothic', Arial, sans-serif;
	font-size: 21px;
	border: 0;
	border-radius: 25px;
	width: 100%;
	height: 57px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

#contact .form .fields .field .textbox::-webkit-input-placeholder {
	color: #b3b3b2;
}

#contact .form .fields .field .textbox::-moz-placeholder {
	color: #b3b3b2;
}

#contact .form .fields .field .textbox:-ms-input-placeholder {
	color: #b3b3b2;
}

#contact .form .fields .field .textbox::-ms-input-placeholder {
	color: #b3b3b2;
}

#contact .form .fields .field .textbox::placeholder {
	color: #b3b3b2;
}

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

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

#contact .form .fields .field label.error, label.error {
	display: block;
	width: 100%;
	font-weight: normal;
	color: #f00;
	padding-top: 2px;
    font-size: 12px;
}

#contact .form .submitBtn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 8px 30px;
	background: #3cb456;
	color: #fff;
	border: none;
	font-family: 'Happy Monkey', cursive;
	font-size: 21px;
	margin: 9px auto 0;
	border-radius: 30px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#contact .form .submitBtn:hover {
	background-color: #4ac263;
}

/* Our Blog */

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

#ourBlog .heading {
	font-size: 50px;
}

#ourBlog .listing {
	--gap: 19px;
	margin: 0 calc(var(--gap) * -1);
	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;
}

#ourBlog .listing li {
	margin: var(--gap) 0;
	padding: 0 var(--gap);
	list-style: none;
	width: 33.33333333333333%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: 'Happy Monkey', cursive;
	font-size: 25px;
	line-height: 1.417;
	text-align: center;
}

#ourBlog .listing li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
	background: #c2e4c8;
	color: #191e17;
	border-radius: 35px;
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 14px 0px rgba(25, 30, 23, 0.34);
	        box-shadow: 0px 0px 14px 0px rgba(25, 30, 23, 0.34);
	-webkit-transition: -webkit-transform 0.7s;
	transition: -webkit-transform 0.7s;
	-o-transition: transform 0.7s;
	transition: transform 0.7s;
	transition: transform 0.7s, -webkit-transform 0.7s;
}

#ourBlog .listing li .image {
	overflow: hidden;
}

#ourBlog .listing li img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1.3s;
	transition: -webkit-transform 1.3s;
	-o-transition: transform 1.3s;
	transition: transform 1.3s;
	transition: transform 1.3s, -webkit-transform 1.3s;
}

#ourBlog .listing li .text {
	width: 100%;
	padding: 20px;
}

#ourBlog .listing li a:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

#ourBlog .listing li a:hover .image img {
	-webkit-transform: scale(1.06);
	    -ms-transform: scale(1.06);
	        transform: scale(1.06);
}

/* Content */

#content .section {
	padding-top: 40px;
  /*	padding-bottom: 40px; */
}
#content {
  padding-bottom: 40px;
}

/* Banner */

#banner {
	position: relative;	
}

#banner:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 17px;
	background: url(../images/waves01.svg) no-repeat;
	background-size: 100% 100%;
	z-index: 1;
	-webkit-animation: curvesAnim 2s;
	animation: curvesAnim 2s;
}

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

/* Footer */

#footer {
	position: relative;
	background: #c2e4c8;
	text-align: center;
}

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

#footer:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -5px;
	height: 93px;
	background: url(../images/footer-line.svg) no-repeat center top;
	background-size: 100% 100%;
}

#footer .section {
	padding-top: 30px;
	font-family: 'Happy Monkey', cursive;
	font-size: 17px;
}

#footer .logo {
	display: block;
	width: 157px;
	margin: 0 auto 30px;
}

#footer #links {
	margin-bottom: 16px;
}

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

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

#footer #links ul li a {
	color: #191e17;
	text-shadow: 0 0 1px currentColor;
}

#footer #links ul ul {
	display: none;
}

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

#footer .contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#footer .contacts .methods {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

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

#footer .contacts .methods li a {
	position: relative;
	display: inline-block;
	color: #191e17;
	text-shadow: 0 0 1px currentColor;
}

#footer .contacts .methods li.phone a:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0.1176470588235294em;
	width: 1.294117647058824em;
	height: 1.352941176470588em;
	background: url(../images/phone-ico.svg) no-repeat;
	background-size: 100%;
}

#footer .contacts .methods li.phone a {
	padding-left: 1.647058823529412em;
}

#footer .contacts .methods li.email a {
	padding-left: 2.058823529411765em;
}

#footer .contacts .methods li.email a:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0.1764705882352941em;
	width: 1.588235294117647em;
	height: 1.176470588235294em;
	background: url(../images/email-ico.svg) no-repeat;
	background-size: 100%;
}

#footer .contacts .socials {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

#footer .contacts .socials li {
	display: flex;
	margin: 0 5px;
	padding: 0;
	list-style: none;
	align-items: center;
}

#footer .contacts .socials li a {
	display: inline-block;
}

#footer .contacts .socials li img {
	display: block;
	height: 28px;
}

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

#footer .copyright {
	position: relative;
	margin-top: 25px;
	padding: 15px 0;
	font-size: 15px;
	color: #eeeeee;
	text-shadow: 0 0 1px currentColor;
	z-index: 1;
}

#footer .copyright:before {
	content: "";
	position: absolute;
	left: -9999em;
	right: -9999em;
	top: 0;
	bottom: 0;
	background: #191e17;
	z-index: -1;
}

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

/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	width: 30px;
	outline: none;
	z-index: 10;
	top: 8px;
	left: 6px;
	-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-hasnavbar-top-1 .mm-panels, .mm-navbar-top-2 {
	background: #3cb456;
}

.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: #0b983d;
}

.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: #494ea6 !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;
}