

/* Splash Animation */

@-webkit-keyframes rotateAnim {
	to {
        -webkit-transform: rotate(8deg);
                transform: rotate(8deg);
	}
}

@keyframes rotateAnim {
	to {
        -webkit-transform: rotate(8deg);
                transform: rotate(8deg);
	}
}

@-webkit-keyframes splashAnim {
    0% {
        -webkit-transform: scale(0.2);
                transform: scale(0.2);
        opacity:0;
    }
    50% {
        -webkit-transform: scale(1.3);
                transform: scale(1.3);

    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity:1;
    }
}

@keyframes splashAnim {
    0% {
        -webkit-transform: scale(0.2);
                transform: scale(0.2);
        opacity:0;
    }
    50% {
        -webkit-transform: scale(1.3);
                transform: scale(1.3);

    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity:1;
    }
}

.splashAnim {
    opacity:0;
}

.splashAnim.go{
    -webkit-animation: splashAnim 2s 0.2s forwards, rotateAnim 2s 0.1s forwards infinite alternate;
            animation: splashAnim 2s 0.2s forwards, rotateAnim 2s 0.1s forwards infinite alternate;
}


/* Main Wrapper */

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

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

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 10000000;
}

#header .section {
	height: 190px;
	-webkit-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
}


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

#header .logo {
	position: absolute;
	top: 7px;
	left: 0;
	width: 266px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

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

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

#header .contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	right: 0;
	top: 7px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: top 0.3s, opacity 0.2s;
	-o-transition: top 0.3s, opacity 0.2s;
	transition: top 0.3s, opacity 0.2s;
}

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

#header .contacts .reach {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	font-size: 19px;
}

#header .contacts .reach li {
	margin: 0 0 0 0.4em;
	padding: 0;
	list-style: none;
}

#header .contacts .reach li a {
	position: relative;
	display: inline-block;
	color: #58bdb0;
	text-indent: -9999em;
}

#header .contacts .reach li a:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1.578947368421053em;
	background-repeat: no-repeat;
	background-position: auto 1.578947368421053em;
}

#header .contacts .reach li.phone a {
	color: #ef5c65;
	padding-left: 2.105263157894737em;
}

#header .contacts .reach li.phone a:after {
	background-image: url(../images/phone-ico.svg);
	top: -0.1052631578947368em;
	background-size: 1.578947368421053em;
}

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

#header .contacts .reach li.email a:after {
	background-image: url(../images/email-ico.svg);
	top: -0.027em;
	background-size: 1.8em;
}

.socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin: 0;
	padding: 0;
}

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

.socials li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 100%;
	background: #58bdb0;
}

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

.socials li:nth-child(4n+2) a {
	background-color: #feb22a;
}

.socials li:nth-child(4n+3) a {
	background-color: #f15a6f;
}

.socials li:nth-child(4n+4) a {
	background-color: #85be02;
}

.socials li a img {
	display: block;
	height: 70%;
}

#header .btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	position: absolute;
	right: 0;
	bottom: 70px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#header .btns .linkBtn {
	margin-left: 22px;
	margin-bottom: 0;
}

#header #navigation {
	position: absolute;
	right: 0;
	bottom: 15px;
}

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

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

#header #navigation>ul>li:not(:nth-child(1)):after {
	content: "";
	position: absolute;
	left: 50%;
	top: -0.75em;
	width: 3em;
	height: 3em;
	margin-left: -1.5em;
	background: url(../images/green-splash.svg) no-repeat;
	background-size: 100% 100%;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

#header #navigation ul li a {
	display: inline-block;
	color: #333333;
}

#header #navigation>ul>li:first-child a {
	display: inline-block;
	width: 1.5em;
	height: 1.2em;
	background: url(../images/home-ico.svg) no-repeat;
	text-indent: -9999em;
	background-size: 100%;
}

#header #navigation>ul>li.Current:after,
#header #navigation>ul>li.Parent:after,
#header #navigation>ul>li:hover:after {
	opacity: 0.7;
	-webkit-transform: scale(1.1) rotate(15deg);
	    -ms-transform: scale(1.1) rotate(15deg);
	        transform: scale(1.1) rotate(15deg);
}

#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: 15px 0 0;
	min-width: 100%;
	border-bottom: 0.2105263157894737em solid #ef5c65;
	border-radius: 0.2631578947368421em;
}

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

#header #navigation ul li ul li a {
	display: block;
	padding: 0.5263157894736842em 0.7894736842105263em;
	line-height: 1.2;
	white-space: nowrap;
	color: #fff !important;
	min-width: 100%;
}

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

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

#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: 1em;
}

#header #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.35em;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5789473684210526em 0.3157894736842105em 0 0.3157894736842105em;
	border-color: #333333 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: #333333 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: #333333 transparent transparent transparent;
}

/* Banner */

#banner {
	position: relative;
}

#banner:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -28px;
	background: url(../images/red-curvy-line.svg) no-repeat center top;
	height: 64px;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 1;
}

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

#banner .redSplash {
	position: absolute;
	right: 0;
	bottom: -130px;
	width: 300px;
	z-index: -1;
}

/* Gallery */

#gallery .section {
	padding-top: 40px;
	padding-bottom: 40px;
}

#gallery .heading {
	color: #58bcb0;
	text-align: center;
}

#gallery .slider {
	position: relative;
	margin-top: -20px;
	margin-right: -1px;
}

#gallery .slider .redSplash {
	position: absolute;
	left: -20px;
	bottom: -120px;
	width: 463px;
	z-index: -1;
}

#gallery .slider:before {
	content: "";
	position: absolute;
	left: -1px;
	right: -1px;
	top: 26px;
	height: 100%;
	background: #f15a6f;
}

#gallery .slider:before,
#gallery .slides {
	--mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNjY3IiBoZWlnaHQ9IjcyNSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmlld0JveD0iMCAwIDE2NjcgNzI1Ij48cGF0aCBkPSJNMTY1OC4wOCwuNWguNzRjMi42MiwyLjA0LDUuNTQsMy42NSw4LjY4LDQuNzhWNjkwLjg5Yy0xNDguMjEsMTEuMjItMjk1Ljg3LDQyLjU0LTQ0NS4wNCwzMi40OS05NC4zOS03LjQ0LTE4OC4zOC0xOS44NS0yODMtMjQuMzUtMjc4LjU1LDIuNS01NTEuMTUtNTUuNjctODI3Ljg5LTc0LjY0LTM3Ljk1LTMuODgtNzYuMi0xMC43Mi0xMTEuMDctMjYuOFYzNi4xNEMxOTcuMDEtMy42OSw0MDEuOSwxOC45OSw1OTkuNjgsMzkuODdjMzEuNTctMy4xLDYzLjY5LTYuNjYsOTUuNy0yLjY1LDY3LjUyLDcuODksMTM1LjUzLTcuMTUsMjAyLjg2LDIuNDUsMjMuMjEsNC40MSw0Ni45NCwyLjI3LDcwLjM3LDQuMTgsODEuNzEsOS41NywxNjMuODksOS44NSwyNDUuODgsMTQuMDMsMTAuMzYtLjI1LDIwLjg5LTEuNDksMzAuNDgtNS42OS0uMzMsMi4yLS44OCw0LjM0LTEuNTEsNi40NiwxMzguNzEtNC43MywyNzMuMTItNDguMzQsNDEyLjA5LTUxLjE2LDQuMDUsLjA5LDIuNzctNC40MSwyLjUzLTYuOTlaIi8+PC9zdmc+");
	-webkit-mask-image: var(--mask);
	mask-image: var(--mask);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

#gallery .slides {
	margin: 0 -1px;
	padding: 0;
}

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

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

/* Justified Gallery */

.justified-gallery strong {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: #000000;
	line-height: 1.2;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	color: #ffffff;
	font-weight: normal;
}

.justified-gallery strong span {
	display: table;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	height: 100%;
	font-size: 14px;
}

.justified-gallery strong span em {
	display: table-cell;
	vertical-align: middle;
	font-style: normal;
	width: 100%;
	padding: 8px 15px;
	height: 80px;
}

.galleryWrapper .gallery a {
	overflow: hidden;
}

.galleryWrapper .gallery a img {
	-webkit-transition: transform 0.6s;
	-moz-transition: transform 0.6s;
	transition: transform 0.6s;
}

.galleryWrapper .gallery a:hover img {
	-webkit-transform: scale(1.06);
	-moz-transform: scale(1.06);
	transform: scale(1.06);
}

.justified-gallery a:hover strong {
	opacity: 1;
	visibility: visible;
}
.justified-gallery p {
	margin-bottom: 12px;
}

/* Feedback */

#feedback {
	margin-bottom: 170px;
}

#feedback .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 140px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#feedback .text {
	width: 930px;
	margin-top: 90px;
	text-align: center;
}

#feedback .text .heading {
	color: #82bd0a;
}

#feedback .splashImage {
	width: 704px;
	margin-left: auto;
}

#feedback .slides {
	position: relative;
	margin: 0 auto;
	padding: 0 60px;
	max-width: 773px;
}

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

#feedback .slides li blockquote {
	margin: 0;
	padding: 0;
	font-size: 27px;
	font-style: normal;
	border: 0;
	color: #7a7979;
	line-height: 1.493;
}

#feedback .slides li blockquote cite {
	margin: 0;
	padding: 0;
	font-style: normal;
}

#feedback .slides .owl-nav {
	position: absolute;
	left: 20px;
	right: 20px;
	top: 93px;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	pointer-events: none;
}

#feedback .slides .owl-nav button span {
	display: none;
}

#feedback .slides .owl-nav button {
	width: 14px;
	height: 54px;
	outline: none;
	background: url(../images/slider-arrow.svg) no-repeat;
	background-size: 100%;
	pointer-events: auto;
}

#feedback .slides .owl-nav .owl-next {
	-webkit-transform: scaleX(-1);
	    -ms-transform: scaleX(-1);
	        transform: scaleX(-1);
	margin-left: auto;
}

/* Yellow Line */

.yellowLine {
	background: url(../images/yellow-curvy-line.svg) no-repeat center top;
	height: 102px;
	background-size: 100% 100%;
}

/* Enquire */

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

#enquire .left {
	width: 750px;
	padding-bottom: 50px;
}

#enquire .right {
	width: 700px;
	margin-left: auto;
}

#enquire .right .facebook {
	min-height: 300px;
	text-align: center;
	background: #fff url(../images/loading-fb.gif) no-repeat center;
}

#enquire .heading {
	color: #82bd0a;
}

#enquire .fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 70px -20px 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#enquire .fields .field {
	padding: 0 20px;
	width: 100%;
	margin-bottom: 21px;
}

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

#enquire .fields .field .textbox {
	margin: 0;
	padding: 15px 23px;
	border: 1px solid #393939;
	border-radius: 20px;
	background: none;
	color: #393939;
	font-family: 'Quicksand', Arial, sans-serif;
	font-size: 22px;
	outline: none;
	width: 100%;
	height: 64px;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

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

#enquire .fields .field textarea.textbox {
	height: 130px;
	overflow: auto;
	resize: none;
}

#enquire .submitBtn {
	margin-top: 30px;
}

/* Map */

#map {
	position: relative;
	height: 465px;
	background: #f6f5f5;
}

#map:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -28px;
	background: url(../images/red-curvy-line.svg) no-repeat center top;
	height: 64px;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 1;
}

#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

#map .redSplash {
	position: absolute;
	left: 50%;
	margin-left: -600px;
	top: -230px;
	width: 516px;
	z-index: -1;
}

/* Logos */

#logos {
	position: relative;
	background: #58bdb0;
	z-index: 1;
}

#logos:before,
#logos:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -29px;
	height: 64px;
	background: url(../images/green-curvy-line.svg) no-repeat;
	background-size: 100% 100%;
	z-index: -1;
	pointer-events: none;
}

#logos:after {
	top: auto;
	bottom: -35px;
}

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

#logos .greenSplash {
	position: absolute;
	width: 384px;
	right: -143px;
	bottom: -145px;
	pointer-events: none;
	z-index: -1;
}

#logos .listing {
	margin: 0 -47px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	font-size: 20px;
}

#logos .listing li {
	margin: 0;
	padding: 0 47px;
	list-style: none;
}

#logos .listing li:nth-child(4n+3) .inner {
	min-height: 13.4em;
}

#logos .listing li .inner {
	background: #fff !important;
	width: 13.9em;
	min-height: 13.35em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 2em;
	-webkit-mask-image: var(--mask);
	mask-image: var(--mask);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

#logos .listing li:nth-child(4n+2) .inner {
	width: 14.3em;
	min-height: 13.9em;
}

#logos .listing li:nth-child(4n+4) .inner {
	min-height: 14.75em;
}

/* Footer */

#footer .top {
	padding-top: 150px;
	padding-bottom: 26px;
}

#footer .top .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#footer .top .logo {
	position: absolute;
	left: 50%;
	top: -50px;
	margin-left: -300px;
	width: 600px;
}

#footer .title {
	color: #ef5c65;
	font-family: 'Salsa', cursive;
	font-size: 36px;
}

#footer .contactUs ul {
	margin: 0;
	padding: 0;
}

#footer .contactUs ul li {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
	font-size: 22px;
}

#footer .contactUs ul li a {
	position: relative;
	display: inline-block;
	padding-left: 2.727272727272727em;
}

#footer .contactUs ul li.phone a {
	color: #58bdb0;
}

#footer .contactUs ul li.phone a:after {
	position: absolute;
	left: 9px;
	top: 0;
	content: "";
	width: 1.5em;
	height: 1.5em;
	background: url(../images/phone-ico.svg) no-repeat;
	background-size: 100%;
}

#footer .contactUs ul li.email a:after {
	position: absolute;
	left: 0.3181818181818182em;
	top: 0.0909090909090909em;
	content: "";
	width: 1.636363636363636em;
	height: 1.272727272727273em;
	background: url(../images/email-pink-ico.svg) no-repeat;
	background-size: 100%;
}

#footer .contactUs ul li.email a {
	color: #85be02;
}

#footer .contactUs ul li.location a {
	color: #fe911e;
}

#footer .contactUs ul li.location a:after {
	position: absolute;
	left: 0.3181818181818182em;
	top: 0.1818181818181818em;
	content: "";
	width: 1.5em;
	height: 2.136363636363636em;
	background: url(../images/location-ico.svg) no-repeat;
	background-size: 100%;
}

#footer .connectUs {
	margin-left: auto;
}

#footer .connectUs .socials {
	width: 136px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin: 0 auto;
}

#footer .connectUs .socials li {
	margin: 0 0 20px;
}

#footer .connectUs .socials li a {
	width: 57px;
	height: 57px;
}

#footer .bottom {
	padding-top: 45px;
	padding-bottom: 45px;
	background: url(../images/wiggly-line.svg) repeat-x;
}

#footer .bottom .copyright {
	text-align: center;
	margin: 0;
	font-family: 'Quicksand', Arial, sans-serif;
	font-size: 15px;
	color: #464646;
}

/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	left: 11px;
	top: 13px;
	width: 27px;
	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: #82bd0a;
	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;
}
.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    cursor: inherit;
    display: block;
}
.filename {
	border: 0;
	margin-left: 7px;
}

.grecaptcha-badge {
	z-index: 999!important;
}

label.error {
	font-weight: normal;
	font-size: 12px;
	color: red;
}
.fieldRequired {
	font-weight: normal;
	font-size: 12px;
	color: red;
	vertical-align: super;
}
.blogDate {
    display: block;
    color: #8DC71E;
    font-size: 18px;
    margin-top: -15px;
    margin-bottom: 20px;
}
.bloglist .date {
    color: #8DC71E;
    font-size: 18px;
}
