/* Main Wrapper */

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

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

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 146px;
	border-bottom: 7px solid #979d79;
	background: #f8f7f6 url(../images/header-bg.jpg) center top;
	background-size: cover;
	-webkit-filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
	z-index: 100000;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

body.scrolled #header {
	top: -46px;
}

#header .logo {
	position: absolute;
	left: 40px;
	top: 8px;
	width: 130px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

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

body.scrolled #header .logo {
	top: 51px;
	width: 89px;
}

#header .email {
	position: absolute;
	top: 16px;
	right: 62px;
	font-weight: 600;
	padding-left: 1.8em;
	color: #979d79;
}

#header .email:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0.1666666666666667em;
	width: 1.222222222222222em;
	height: 1em;
	opacity: 0.5;
	background: url(../images/email-ico.svg) no-repeat;
	background-size: 100%;
}

#header .phone {
	position: absolute;
	top: 16px;
	right: 282px;
	font-weight: 600;
	padding-left: 1.8em;
	color: #979d79;
}

#header .phone:after {
	content: "";
	position: absolute;
	left: 0;
	width: 1.222222222222222em;
	height: 1.3em;
	opacity: 0.5;
	background: url(../images/phone-ico.svg) no-repeat;
	background-size: 100%;
}

#header .socials {
	position: absolute;
	right: 62px;
	top: 52px;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s; 
}

#header .socials li a img {
filter: brightness(0) saturate(100%) invert(92%) sepia(62%) saturate(2528%) hue-rotate(312deg) brightness(101%) contrast(87%);
}

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

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

#header .socials li a {
	display: inline-block;
	-webkit-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
}

#header .socials li img {
	display: block;
	height: 30px;
}

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

#header #navigation {
	position: absolute;
	right: 62px;
	top: 100px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

body.scrolled #header #navigation {
	top: 108px;
}

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

#header #navigation ul li {
	position: relative;
	float: left;
	margin: 0 0 0 55px;
	padding: 0;
	list-style: none;
	letter-spacing: 0.05em;
	font-size: 17px;
	font-weight: 600;
	//text-transform: uppercase;
}

#header #navigation ul li a {
	display: inline-block;
	color: #992609;
	-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: #969c79;
}

#header #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: -15px;
	padding: 28px 0 0;
	min-width: 100%;
	border-radius: 5px;
	z-index: 1;
}

body.scrolled #header #navigation ul li ul {
	padding-top: 20px;
}

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

#header #navigation ul li ul li a {
	display: block;
	padding: 12px 15px;
	line-height: 1.2;
	white-space: nowrap;
	color: #000000 ;
	min-width: 100%;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	text-transform: none;
	background-color: #F4F3F1;
	color: #992609!important;
}

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

#header #navigation ul li ul li:hover a {
	background-color: #969c79;
	color: #fff !important;
}

#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>a {
	padding-right: 1.125em;
}

#header #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.25em;
	content: "";
	display: inline-block;
	width: 0.8125em;
	height: 0.5em;
	background: url(../images/menu-arrow.svg) no-repeat;
	opacity: 0.7;
	background-size: 100%;
	pointer-events: none;
	-webkit-transition: transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

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

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

/* Banner */

#banner {
	position: relative;
}

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

#banner .overlay {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 145px;
	color: #fff;
	text-align: center;
}

#banner .overlay .title {
	font-size: 60px;
	font-weight: 800;
	text-shadow: 0 0 0.1333333333333333em rgba(0,0,0,0.4);
	margin: 0 0 0.2166666666666667em;
}

#banner .overlay .title span {
	display: block;
	font-size: 0.8em; /* 48px */
}

#banner .overlay :last-child {
	margin-bottom: 0;
}

#banner .overlay .enrolNow {
	display: inline-block;
	background: #979d79;
	color: #fff;
	font-size: 13.61px;
	font-weight: bold;
	min-width: 10.43350477590007em;
	padding: 0 1.102130786186627em;
	line-height: 3.159441587068332em;
	text-align: center;
	border: 0.1469507714915503em solid #fff;
	border-radius: 2.204261572373255em;
	-webkit-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
}

#banner .overlay .enrolNow:hover {
	background-color: #a5ac87;
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

/* Sub Banner */

#subBanner 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;
}

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

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

/* Gallery */

#gallery .section {
	padding-top: 74px;
	padding-bottom: 13px;
	text-align: center;
}

#gallery .listing {
	margin: 54px -15px 10px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#gallery .listing li {
	margin: 0 0 30px;
	padding: 0 15px;
	list-style: none;
	width: 25%;
}

#gallery .listing li a {
	display: block;
	overflow: hidden;
	border-radius: 7px;
}

#gallery .listing li img {
	display: block;
	width: 100%;
	-webkit-transition: all 3s;
	-o-transition: all 3s;
	transition: all 3s;
}

#gallery .listing li a:hover img {
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}

#gallery .viewAll {
	display: inline-block;
	font-size: 13.61px;
	color: #992609;
	background: #f0bc5d;
	min-width: 138px;
	padding: 0 10px;
	font-weight: bold;
	line-height: 39px;
	border-radius: 30px;
	-webkit-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
	margin-bottom: 36px;
}

#gallery .viewAll:hover {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
	background-color: #fdc869;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
	        box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}

#gallery .info {
	max-width: 1062px;
	margin: 0 auto;
	font-weight: 500;
	font-style: italic;
	color: #969c79;
}

#gallery .member {
	display: block;
	max-width: 505px;
	margin: 0 auto;
	-webkit-transition: -webkit-transform 2s;
	transition: -webkit-transform 2s;
	-o-transition: transform 2s;
	transition: transform 2s;
	transition: transform 2s, -webkit-transform 2s;
}

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

#gallery .member:hover {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

/* Footer */

#footer {
	border-top: 9px solid #d5d8c9;
}

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

#footer .top .section {
	padding-top: 23px;
	padding-bottom: 23px;
	min-height: 277px;
}

#footer .top .logo {
	position: absolute;
	width: 168px;
	left: 50%;
	top: 60px;
	margin-left: -84px;
}

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

#footer .top .contacts {
	float: left;
	margin: 54px 0 0;
	padding: 0;
}

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

#footer .top .contacts li a {
	position: relative;
	display: block;
	color: #979d79;
	padding-left: 40px;
}

#footer .top .contacts li a:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 21px;
}

#footer .top .contacts li.phone a:after {
	background: url(../images/phone-ico.svg) no-repeat 0 2px;
	background-size: 100%;
	height: 25px;
}

#footer .top .contacts li.email a:after {
	background: url(../images/email-ico.svg) no-repeat 0 3px;
	height: 18px;
	background-size: 100%;
}

#footer .top .contacts li.location a:after {
	background: url(../images/location-ico.svg) no-repeat 0 0;
	height: 31px;
	background-size: 100%;
}

#footer .top #fLinks {
	float: right;
	margin-top: 52px;
}

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

#footer .top #fLinks ul li {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	font-size: 16px;
	text-align: right;
}

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

#footer .bottom {
	background: #c0c4af;
}

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

#footer .bottom .copyright {
	float: left;
	font-size: 14px;
	margin: 8px 0 0;
	color: rgba(255,255,255,0.5);
}

#footer .bottom .socials {
	float: right;
	margin: 5px 0 0;
	padding: 0;
}

#footer .bottom .socials li {
	float: left;
	margin: 0 0 0 35px;
	padding: 0;
	list-style: none;
}

#footer .bottom .socials li a {
	display: inline-block;
	-webkit-transition: -webkit-transform 0.6s;
	transition: -webkit-transform 0.6s;
	-o-transition: transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
}

#footer .bottom .socials li img {
	display: block;
	height: 23px;
}

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

#footer .bottom .socials li a img {
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(311deg) brightness(101%) contrast(101%);
}

/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	left: 13px;
	top: 15px;
    width: 30px;
	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: #9a2920;
	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;
}
label.error {
	color: red;
	font-weight: normal;
	font-size: 11px;
}
.errorStrip {
	color: red;
	padding: 15px;
	background-color: #eee;
	text-align: center;
	margin-bottom: 15px;
}
.staffHeading.centered {
	text-align: left!important;
	color: #f2bd5f;
	font-weight: normal;
	font-size: 30px;
	margin-bottom: 20px;
}
.staffHeading span:after {
	background: #ffffff;
}
.staffListv2 li .wrap {
	background: #ebede6;
}
.staffListv2 li .text .title {
	color: #99260b;
}

.staffListv2 li .text {
  font-size: 14px;
  color: #000000;
  text-align: justify;
}
.left {
	text-align: left!important;
}

.btn-success {
	background-color: #9a2920!important;
}
.grecaptcha-badge {
	z-index: 999;
}