html {
    -webkit-text-size-adjust: none;
}

body, div {
  margin: 0;
  padding: 0;
}


/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-family: 'Capriola', Arial, sans-serif;
	font-size: 19px;
	font-weight: normal;
	overflow: hidden;
}

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

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1000000;
	-webkit-transition: background-color 0.3s, -webkit-filter 0.3s;
	transition: background-color 0.3s, -webkit-filter 0.3s;
	-o-transition: background-color 0.3s, filter 0.3s;
	transition: background-color 0.3s, filter 0.3s;
	transition: background-color 0.3s, filter 0.3s, -webkit-filter 0.3s;
}

#header:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 25px;
	bottom: -24px;
	opacity: 0;
	background: url(../images/white-curve-bottom.svg) no-repeat center bottom;
	background-size: 100% 100%;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

body.scrolled #header {
	background-color: rgba(255,255,255,1);
	-webkit-filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2));
	        filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2))
}

body.scrolled #header:after {
	opacity: 1;
}

#header .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 90%;
	height: 156px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
}

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

#header .logo {
	display: block;
	width: 142px;
	margin-top: 7px;
	-webkit-transition: width 0.3s;
	-o-transition: width 0.3s;
	transition: width 0.3s;
}

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

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

#header .options {
	margin-left: auto;
	margin-top: 27px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-transition: margin-top 0.3s;
	-o-transition: margin-top 0.3s;
	transition: margin-top 0.3s;
}

body.scrolled #header .options {
	margin-top: 15px;
}

#header .options .btns {
	display: flex;
	align-items: flex-start;
}

#header .login .toggleBtn {
	display: block;
}

#header .login .dropdown {
	position: absolute;
	right: 0;
	top: 39px;
	width: 441px;
	padding: 30px 39px;
	background: #e9762e;
	color: #fff;
	z-index: 1;
	border-radius: 30px;
}

#header .login .dropdown .title {
	font-size: 26px;
}

#header .login .dropdown .field {
	margin-bottom: 17px;
}

#header .login .dropdown .field label {
	display: block;
	font-size: 14px;
	margin: 0;
	padding: 0 0 6px;
}

#header .login .dropdown .field .textbox {
	display: block;
	margin: 0;
	padding: 0 10px;
	border: 0;
	width: 100%;
	height: 42px;
	background: #fff;
	color: #000;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-appearance: none;
	box-shadow: 0 1px 8px 0 rgba(0,0,0,0.1);
}

#header .login .dropdown .submitBtn {
	display: block;
	width: 100%;
	box-shadow: 0 1px 8px 0 rgba(0,0,0,0.1);
}

#header .login .dropdown .submitBtn:hover {
	background-color: #fe3482;
}

#header .login .forgotPassword {
	font-size: 14px;
	margin: 0;
}

#header .login .forgotPassword a {
	color: #fff;
}

#header .login .forgotPassword a:hover {
	text-decoration: underline;
}

#header .options .login {
	position: relative;
}

#header .options .phone,
#header .options .login .toggleBtn {
	position: relative;
	font-family: 'Catamaran', Arial, sans-serif;
	font-size: 23px;
	color: #fff;
	padding: 0.1304347826086957em 1.304347826086957em 0.391304347826087em 2.608695652173913em;
	line-height: 1;
	background: #7fa37c;
	border-radius: 1.304347826086957em;
	margin-bottom: 0.8695652173913043em;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#header .options .login .toggleBtn {
	width: auto;
	margin-left: 10px;
	padding-left: 1.304347826086957em;
}

#header .options .phone:before {
	content: "";
	position: absolute;
	left: 1.304347826086957em;
	width: 1em;
	height: 100%;
	background: url(../images/phone-ico.svg) no-repeat 0 0.1304347826086957em;
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
	background-size: 100%;
}

#header .options .phone:hover,
#header .options .login .toggleBtn:hover {
	background: #87ad85;
}

#header .options #navigation ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	-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 49px;
	padding: 0;
	list-style: none;
	font-family: 'Myriad Pro', Arial, sans-serif;
	font-size: 23px;
}

#header .options #navigation ul li a {
	position: relative;
	display: inline-block;
	color: #624b31;
}

#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 #d8661f;
	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: #7fa37c;
	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: #e9762e;
	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: #624b31 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: #624b31 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: #624b31 transparent transparent transparent;
}


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

#header .dropdown li a {
	display: inline-block;
	color: #fff;
}

/* Intro */

#intro {
	position: relative;
	background: url(../images/intro-bg.jpg) no-repeat center top fixed;
	background-size: cover;
}

#intro:after,
#banner:after,
#footer:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 51px;
	background: url(../images/white-curve-top.svg) no-repeat center top;
	background-size: 100% 100%;
}

#intro:after,
#banner:after {
	-webkit-animation: curvesAnim 2s;
	animation: curvesAnim 2s;
}

#intro .section {
	position: relative;
	padding-top: 150px;
	padding-bottom: 100px;
}

#intro .rainbow {
	position: absolute;
	left: 68px;
	bottom: -20px;
	width: 707px;
}

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

#intro .slides li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

#intro .slides li .text {
	width: 530px;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

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

#intro .slides li .text .heading {
	font-size: 50px;
}

#intro .slides li .image {
	position: relative;
	font-size: 19px;
	width: 33.78947368421053em;
	margin-left: auto;
	margin-top: 3.421052631578947em;
	padding-bottom: 3.421052631578947em;
	--mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjY0MiIgaGVpZ2h0PSI0ODUuNTYiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHZpZXdCb3g9IjAgMCA2NDIgNDg1LjU2Ij48cGF0aCBkPSJNNzMuOC4wNWMxMi44OC0uNTMsMjUuNzQsMy4wMSwzNi43Miw5LjcxLDEzNS4wNiw4My4xNSwyOTguODYsNTUuMTgsNDQ3LjUyLDM2Ljg4LDM5LjcxLDEuNDYsNjcuMDIsMzkuODksNzEuNjMsNzYuNzEsOC43Myw3Mi42NSwxMi42NSwxNDYuMDUsMTIuMzEsMjE5LjI0LS41LDE5LjEyLS4wNiwzOC4zNi0xLjk4LDU3LjQxLTQuMjYsNDEuNTUtMzkuOSw4NS4zMS04NS4xMiw3Ni43LTE1NC4zLTI3Ljk0LTMxMi4yNy0xOC44Mi00NjUuNjYsOC44Ny0zNi43NS0yLjE1LTYzLjA5LTM1LjktNjkuNS03MC4xQzQuNzQsMzMzLjQ4LS4zOCwyNDkuNy4wMiwxNjYuNDMuODcsMTA1LjYyLTYuOTgsOS42Niw3My44LjA1WiIvPjwvc3ZnPg==");
}

#intro .slides li .image .frame {
	height: 25.52631578947368em;
	padding-top: 1px;
	background: #7fa77d url(../images/frame-bg.jpg) no-repeat;
	background-size: cover;
	-webkit-mask-image: var(--mask);
	mask-image: var(--mask);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

#intro .slides li .image img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 94.0809968847352%;
	margin-left: 4.049844236760125%;
	margin-top: 4.517133956386293%;
	-webkit-mask-image: var(--mask);
	mask-image: var(--mask);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

#intro .slides li .image .books {
	position: absolute;
	right: 0.2631578947368421em;
	bottom: 0;
	width: 10.89473684210526em;
	aspect-ratio: 207/112;
	background: url(../images/books.png) no-repeat;
	background-size: 100%;
	pointer-events: none;
}

#intro .slides li .image .glass {
	position: absolute;
	left: -2.684210526315789em;
	bottom: 1.052631578947368em;
	width: 4.684210526315789em;
	aspect-ratio: 89/94;
	background: url(../images/magnifier-glass.png) no-repeat;
	background-size: 100%;
	pointer-events: none;
}

#intro .slides li .image .bug {
	position: absolute;
	left: 2.789473684210526em;
	bottom: 0;
	width: 2.947368421052632em;
	aspect-ratio: 56/57;
	background: url(../images/ladybug.png) no-repeat;
	background-size: 100%;
	pointer-events: none;
}

#intro .slides li .image .stars {
	position: absolute;
	right: -0.4210526315789474em;
	top: -1.263157894736842em;
	width: 5.684210526315789em;
	aspect-ratio: 108/124;
	background: url(../images/stars-ico.png) no-repeat;
	background-size: 100%;
	pointer-events: none;
}

/* Banner */

#banner {
	position: relative;
}

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

/* Content */

#content {
    padding-bottom: 80px;
}


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

/* Footer */

#footer {
	position: relative;
  /*	background: #f2f2f2; */
    background:#FEF9F6;
}

#footer:before {
	top: -50px;
	background-image: url(../images/bottom-curve-top.svg);
	z-index: 1;
}

#footer .top .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 65px;
	padding-bottom: 17px;
	font-family: 'Catamaran', Arial, sans-serif;
	font-size: 21px;
	color: #624b31;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#footer .top .logo {
	display: block;
	width: 157px;
	margin-top: 5px;
}

#footer .top .title {
	font-family: 'Capriola', Arial, sans-serif;
	font-size: 23px;
	color: #e9762e;
	margin: 0 0 7px;
}

#footer .top .links {
	margin-left: 160px;
}

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

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

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

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

#footer .top .links ul li ul {
	display: none;
}

#footer .top .contact {
	margin-left: auto;
}

#footer .top .contact ul {
	margin: 0;
	padding: 0;
}

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

#footer .top .contact ul li a {
	position: relative;
	display: inline-block;
	color: #624b31;
	padding-left: 1.619047619047619em;
}

#footer .top .contact ul li a:before {
	content: "";
	position: absolute;
	background-size: 100%;
}

#footer .top .contact ul li.phone a:before {
	left: 0.2380952380952381em;
	top: 0.3333333333333333em;
	width: 1em;
	height: 1em;
	background: url(../images/phone-ico.svg) no-repeat;
	background-size: 100%;
}

#footer .top .contact ul li.email a:before {
	left: 0.2857142857142857em;
	top: 0.4761904761904762em;
	width: 0.9047619047619048em;
	height: 0.619047619047619em;
	background: url(../images/email-ico.svg) no-repeat;
	background-size: 100%;
}

#footer .top .contact ul li.address a:before {
	left: 0.3333333333333333em;
	top: 0.380952380952381em;
	width: 0.8571428571428571em;
	height: 1.142857142857143em;
	background: url(../images/location-ico.svg) no-repeat;
	background-size: 100%;
}

#footer .bottom {
	background: url(../images/footer-bg.jpg) no-repeat center top;
	background-size: cover;
}

#footer .bottom .section {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	font-family: 'Myriad Pro', Arial, sans-serif;
	font-size: 23px;
}

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

#footer a {
    color: #624b31;
}

/* Mobile Navigation */

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

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

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

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

.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: #e9762e !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 .form-group{
	margin-left: 0;
	margin-right: 0;
}

#faqlist .faq .faq_question {
    color: #87AD85 !important;
    border: 4px solid #87AD85 !important;
    border-radius: 30px;
    background-color: #e6f2e6 !important;
}
#faqlist .faq .faq_question.active {
    background-color:#87AD85!important;
    color: #ffffff!important;
}
#faqlist .faq .faq_question::after {
    filter: brightness(0) saturate(100%) invert(67%) sepia(25%) saturate(359%) hue-rotate(69deg) brightness(92%) contrast(90%);
}
#faqlist .faq .faq_question.active::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7439%) hue-rotate(122deg) brightness(110%) contrast(116%);

}
.isRequired {
    font-size: 10px;
    color: #dc3545;
    vertical-align: super;
    margin-left: 2px;
}
label.error {
   font-size: 10px;
    color: red;
    font-weight: normal;
}
select.error {
    border: 1px solid red;
}
.grecaptcha-badge {
    z-index: 9999; /* Use a high value to ensure it is on top */
}
#ContactForm .form-group {
   margin-bottom: 1rem !important;
}
#ContactForm label {
   margin-bottom: .5rem;
}


