/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 17px;
	font-weight: normal;
	overflow: hidden;
	padding-top: 115px;
	-webkit-transition: padding-top 0.3s;
	-o-transition: padding-top 0.3s;
	transition: padding-top 0.3s;
}

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

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

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100000;
	background: #fff;
	-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.2);
	        box-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

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

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

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

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

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

#header .enrolBtn, #header .phoneBtn {
	position: absolute;
	right: 0;
	top: 5px;
	background: #5fa6db;
	color: #fff;
	font-family: 'Myriad Pro', Arial, sans-serif;
	font-size: 21px;
	padding: 8.5px 25px;
	border-radius: 30px;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

#header .enrolBtn:hover, #header .phoneBtn:hover {
	background-color: #72b6eb;	
}

#header .phoneBtn {
  right: 180px;
}

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

#header #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 #navigation ul li {
	position: relative;
	margin: 0 0 0 14px;
	padding: 0;
	list-style: none;
	font-size: 18px;
}

#header #navigation ul li a {
	position: relative;
	display: inline-block;
	position: relative;
	color: #999999;
}

#header #navigation ul li.Current a,
#header #navigation ul li.Parent a,
#header #navigation ul li:hover a {
	color: #eca9db;
}

#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: calc(100% + 15px);
	border-bottom: 0.2105263157894737em solid #2678a2;
	border-radius: 0.2631578947368421em;
	z-index: 1;
	display: block;
}

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

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

#header #navigation ul li ul li:hover {
	background-color: #3482ac;
	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: 0.9em;
}

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

/* Video Intro */

#videoIntro {
	position: relative;
	height: 500px;
	z-index: 1;
}

#videoIntro video {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	z-index: -1;
}

/* Slider */

#slider {
	margin-bottom: 50px;
}

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

#slider .slides li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	--bg-color: #dceffd;
	background: #dceffd;
	background: var(--bg-color);
	min-height: 486px;
	z-index: 1;
}

#slider .slides li .blob {
	-webkit-animation: zoomAnimation 1s forwards infinite alternate linear;
	animation: zoomAnimation 1s forwards infinite alternate linear;
}

#slider .slides li .text,
#slider .slides li .image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 50%;
}

#slider .slides li .text .inner {
	position: relative;
	width: 635px;
	margin-left: auto;
	text-align: center;
	padding: 30px 15px;
	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: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
}

#slider .slides li .text .inner .blob {
	position: absolute;
	left: 0;
	top: 39px;
	width: 19px;
	height: 19px;
	background: #e676cb;
	border-radius: 100%;
	opacity: 0.6;
	z-index: -1;
}

#slider .slides li .text .inner .blueStar {
	position: absolute;
	left: -51px;
	top: 372px;
	width: 26px;
	height: 26px;
	background: url(../images/blue-star.svg) no-repeat;
	background-size: 100% 100%;
	z-index: -1;
	-webkit-animation: rotateAnim 5s forwards infinite linear;
	animation: rotateAnim 5s forwards infinite linear;
}

#slider .slides li .text .heading {
	color: #5fa6db;
	margin-bottom: 27px;
}

#slider .slides li .text .subheading {
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 21px;
	font-weight: bold;
	color: #eca9db;
}

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

#slider .slides li .text .linkBtn {
	margin: 6px 0;
	min-width: 176px;
}

#slider .slides li .image {
	position: relative;
}

#slider .slides li .image .inner {
	position: relative;
	margin-left: 23px;
	background: var(--bg-color);
	width: 100%;
	overflow: hidden;
}

#slider .slides li .image .lighting {
	left: -25px;
	top: 56px;
}

#slider .slides li .image .inner svg {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 236px;
	height: 100%;
}

#slider .slides li .image .inner svg path {
	fill: var(--bg-color);
}

#slider .slides li .image .inner img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;	
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
    -webkit-transition: -webkit-transform 8s ease;
    transition: -webkit-transform 8s ease;
    -o-transition: transform 8s ease;
    transition: transform 8s ease;
    transition: transform 8s ease, -webkit-transform 8s ease;
}

#slider .slides .owl-item.active .image .inner img {
	 -webkit-transform: scale(1.1);
	     -ms-transform: scale(1.1);
	         transform: scale(1.1);
}

#slider .slides li .image .blueStar {
	position: absolute;
	width: 18px;
	height: 18px;
	background: url(../images/blue-small-star.svg) no-repeat;
	background-size: 100% 100%;
	pointer-events: none;
	-webkit-animation: rotateAnim 6s forwards infinite linear;
	animation: rotateAnim 6s forwards infinite linear;
}

#slider .slides li .image .blueStar.one {
	left: -6px;
	top: 136px;
}

#slider .slides li .image .blueStar.two {
	right: 68px;
	top: 90px;
}

#slider .slides li .image .greenStar {
	position: absolute;
	left: 316px;
	top: 31px;
	width: 26px;
	height: 26px;
	background: url(../images/green-star.svg) no-repeat;
	background-size: 100% 100%;
	opacity: 0.5;
	pointer-events: none;
	-webkit-animation: rotateAnim 8s forwards infinite linear;
	animation: rotateAnim 8s forwards infinite linear;
}

#slider .slides li .image .blob {
	position: absolute;
	width: 19px;
	height: 19px;
	background: #f8cf5a;
	border-radius: 100%;
	opacity: 0.6;
	pointer-events: none;
}

#slider .slides li .image .blob.one {
	left: 24px;
	bottom: 108px;
}

#slider .slides li .image .blob.two {
	right: 17px;
	bottom: 155px;
	background-color: #f8cf5a;
}

/* Banner */

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

/* Content */

.homePage #content .section {
	padding-top: 50px;
	padding-bottom: 0;
}

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

/* Footer */

#footer {
	background: #dceffd;
	border-top-left-radius: 80px 50px;
	border-top-right-radius: 80px 50px;
}

#footer * {
	color: #418db8;
}

#footer .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 90px;
	padding-bottom: 25px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	font-family: 'Myriad Pro', Arial, sans-serif;
	font-size: 19px;
}

#footer .left {
	width: 340px;
	margin-left: 40px;
}

#footer .left .logo {
	display: block;
	width: 340px;
	margin-bottom: 30px;
}

#footer .left .socials {
	margin: 0 0 0 17px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

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

#footer .left .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: 32px;
	height: 32px;
	background: #418db8;
	border-radius: 100%;
}

#footer .left .socials li a img {
    height: 17px;
    filter: invert(94%) sepia(0%) saturate(7470%) hue-rotate(77deg) brightness(106%) contrast(98%);
}

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

#footer .middle {
	margin-left: 63px;
}

#footer .title {
	font-size: 29px;
	margin: 0 0 8px;
}

#footer .links {
	margin: 0 0 0 9px;
	padding: 0;
}

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

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

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

#footer .contacts {
	margin: 12px 0 0;
	padding: 0;
}

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

#footer .contacts li a {
	display: inline-block;
	padding-left: 36px;
	padding-top: 4px;
	padding-bottom: 4px;
}

#footer .contacts li.phone {
	background: url(../images/phone-ico.svg) no-repeat 6px 6px;
}

#footer .contacts li.email {
	background: url(../images/email-ico.svg) no-repeat 6px 7px;
}

#footer .contacts li.location {
	background: url(../images/location-ico.svg) no-repeat 6px 6px;
}

#footer .logos {
	margin: 10px 75px 0 80px;
	padding: 0;
}

#footer .logos .listing {
	margin: 0;
	padding: 0;
	width: 121px;
}

#footer .logos li {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

#footer .logos li:nth-child(2){
	position: relative;
	left: 8px;
}

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

#footer .copyright {
	position: relative;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: 100%;
	text-align: center;
	padding-top: 20px;
	margin-top: 50px;
}

#footer .copyright:before {
	content: "";
	position: absolute;
	top: 0;
	left: 146px;
	right: 146px;
	height: 2px;
	background: #418db8;
}

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


/* Mobile Navigation */

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

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

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

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

.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: #5fa6db !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;
}
#gallery_slider .slides .owl-nav {
   top: 210px!important;
}

/* Feedback */

#feedback {
	margin-bottom: 60px;
}

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

#feedback .introText .heading {
	color: #eab308;
}

/* Feedback */

#feedback {
	text-align: center;
	padding-top: 40px;
	padding-bottom: 20px;
	margin-top: 50px;
	border-bottom: 5px dotted #cccccc;
}

#feedback .title {
	font-family: 'Strippenzieher', 'Bubblegum Sans', cursive;
	font-size: 41px;
	color: #003366;
}

.homePage #feedback {
   border-top: 5px dotted #cccccc;
   border-bottom: 0;
}

.homePage #matters {
    border-bottom: 5px dotted #cccccc;
    padding-bottom: 50px;
}
#feedback .slides {
	margin: 0;
	padding: 0;
}

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

#feedback .slides li blockquote {
	margin: 0 auto;
	padding: 0 15px;
	max-width: 983px;
	font-size: 18px;
	font-style: italic;
	color: #666666;
	border: 0;
}

#feedback .slides li blockquote p {
	margin-bottom: 10px;
}

#feedback .slides .owl-prev,
#feedback .slides .owl-next {
	position: absolute;
	top: 50%;
	width: 18px;
	height: 24px;
	text-indent: -9999em;
	margin-top: -12px;
	background: url(../images/slider-arrow.svg) no-repeat;
	background-size: 100%;
}

#feedback .slides .owl-prev {
	left: 4.861111111111111%;
}

#feedback .slides .owl-next {
	right: 4.861111111111111%;
	transform: rotate(180deg);
}
#ContactForm textarea {
    height: 150px;
}

#ContactForm input[type=text], #ContactForm input[type=email], #ContactForm  textarea, #enrolmentForm input[type=text], #enrolmentForm input[type=email], #enrolmentForm  textarea {
    border-radius: 20px;
    border: 1px solid #2d9fd9;
    color: #a0d18c;
    padding-left: 10px;
}

#ContactForm input[type=text]:focus, #ContactForm input[type=email]:focus, #ContactForm textarea:focus, #enrolmentForm input[type=text]:focus, #enrolmentForm input[type=email]:focus, #enrolmentForm textarea:focus {
    outline: none;
    border: 1px solid #a0d18c;
    color: #2d9fd9;
}

label.error {
    color:red;
    font-weight: normal;
    font-size: 11px;
}
#ContactForm button, #enrolmentForm button {
    background: #5fa6db;
        background-color: rgb(95, 166, 219);
    color: #fff;
    font-family: 'Myriad Pro', Arial, sans-serif;
    font-size: 21px;
    padding: 8.5px 25px;
    border-radius: 30px;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
#ContactForm button:hover, #enrolmentForm button:hover {
    background-color: #72b6eb;
}