/* Main Wrapper */

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

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


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

/* Header */

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

#header:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/texture-bg.svg) no-repeat center bottom;
	background-size: cover;
	opacity: 0.15;
	pointer-events: none;
	z-index: -1;
}

#header .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 139px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	transition: height 0.3s;
}

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

#header .logo {
	width: 13.44827586206897em;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	text-align: center;
	color: #4b3fd8;
	font-family: 'Cheerful Notes', cursive;
	font-size: 29px;
	background: #ff9933;
	padding: 0.2413793103448276em 1.071428571428571em 0;
	border-radius: 22px;
	letter-spacing: 0.05em;
	line-height: 1;
	transition: all 0.3s;
}

body.scrolled #header .logo {
	font-size: 22px;
}

#header .logo img {
	display: block;
	width: 100%;
	margin-bottom: 0.2758620689655172em;
}

#header .options {
	margin-left: auto;
}

#header .options .top {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 15px;
}

#header .options .top ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	filter: brightness(0) invert(1);
}

#header .options .top ul li {
	margin: 0 0 0 13px;
	padding: 0;
	list-style: none;
}

#header .options .top ul li a {
	display: inline-block;
}

#header .options .top ul li img {
	display: block;
}

#header .options .top ul li a:hover img {
	transform: scale(1.1);
}

#header .options .top ul.socials li img {
	height: 24px;
}

#header .options .bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

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

#header .options #navigation ul li {
	margin: 0 0 0 45px;
	padding: 0;
	list-style: none;
	position: relative;
}

#header .options #navigation ul li a {
	display: inline-block;
	position: relative;
	color: #fff;
	transition: color 0.3s;
}

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

#header .options #navigation ul li.hasSub.Current>a:before,
#header .options #navigation ul li.hasSub.Parent>a:before,
#header .options #navigation ul li.hasSub:hover>a:before {
	background-position: left bottom;
}

#header .options #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: -15px;
	padding: 35px 0 0;
	min-width: calc(100% + 15px);
	border-bottom: 0.2105263157894737em solid #3330c5;
	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;
}

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

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

#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: #786fe2;
	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: #fff 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: #ffcc99 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: #ffcc99 transparent transparent transparent;
}

#header .options .enrolNow {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-left: 39px;
	margin-top: 0;
	margin-bottom: 0;
	background-color: #ff9933;
}

/* Slider */

#slider {
	position: relative;
}

#slider .bubbles {
	position: absolute;
	z-index: 2;
}

#slider .bubbles.one {
	left: -42px;
	top: -90px;
	width: 206px;
}

#slider .bubbles.two {
	right: -158px;
	bottom: -27px;
	width: 262px;
}

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

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

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

#slider .slides li img:first-of-type {
	display: block !important;
}

#slider .slides li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}

#slider .slides li .overlay .section {
	text-align: center;
	height: 100%;
	padding-bottom: 70px;
}

#slider .slides li .overlay .title {
	font-family: 'Cheerful Notes', cursive;
	font-size: 42px;
	color: #fff;
	width: 100%;
	text-shadow: 0 0 5px #333333, 0 0 5px #333333, 0 0 5px #333333, 0 0 5px #333333, 0 0 5px #333333, 0 0 5px #333333;
}

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

/* Banner */

#banner {
	position: relative;
}

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

/* Content */

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

body.subPage #content .section {
   padding-bottom: 0;
}

/* Footer */

#footer .layers {
	position: relative;
}

#footer .layers .bubbles {
	position: absolute;
}

#footer .layers .bubbles.one {
	left: -52px;
	top: -100px;
	width: 293px;
}

#footer .layers .bubbles.two {
	right: -12px;
	top: -68px;
	width: 225px;
	z-index: 1;
}

#footer .orangeLayer {
	background: #ff9933;
	height: 8vw;
	margin-bottom: -6.6vw;
	--mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTAiIGhlaWdodD0iMTUwMCIgdmlld0JveD0iMCAwIDc1MCAxNTAwIj48cGF0aCBkPSJNMCwuMTFjMTU4LjQzLDI3LjcyLDMyMS4xMiw0Ni41Nyw0ODEuNjQsMjcuNDIsODguMy0xMy4wMiwxNzkuMjItMzYuMTQsMjY4LjM2LTE3Ljk0djE0OTAuNDFIMFYuMTFaIi8+PC9zdmc+");
	-webkit-mask-image: var(--mask);
	mask-image: var(--mask);
	-webkit-mask-size: 100%;
	mask-size: 100%;
}

#footer .purpleLayer {
	position: relative;
	--mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTAiIGhlaWdodD0iMTU2MyIgdmlld0JveD0iMCAwIDc1MCAxNTYzIj48cGF0aCBkPSJNNjkxLjI1LjVjMTkuMjYtLjE1LDM5Ljk5LjI4LDU4Ljc1LDQuNzF2MTU1OC4yOUgwVjkuNWMxNjEuMjIsMjcuMzgsMzI3LjI3LDQ0Ljg1LDQ5MC4wNCwyMS40MkM1NTYuNzcsMTguNzQsNjIzLjAyLDEuNjksNjkxLjI1LjVaIi8+PC9zdmc+");
	-webkit-mask-image: var(--mask);
	mask-image: var(--mask);
	-webkit-mask-size: 100%;
	mask-size: 100%;
	background: #786fe2;
	z-index: 1;
}

#footer .purpleLayer:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/texture-bg.svg) no-repeat center;
	background-size: cover;
	opacity: 0.15;
	pointer-events: none;
	z-index: -1;
	-webkit-animation: zoomAnimation 9s forwards infinite alternate linear;
	animation: zoomAnimation 9s forwards infinite alternate linear;
}

#footer .purpleLayer .top .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 7vw;
	padding-bottom: 25px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#footer .purpleLayer .top .logo {
	width: 390px;
	padding: 16px 25px;
	background: #ff9933;
	border-radius: 25px;
}

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

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

#footer .purpleLayer .top .contacts .socials {
	margin: 0 0 5px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#footer .purpleLayer .top .contacts .socials li {
	margin: 0 20px 10px 0;
	padding: 0;
	list-style: none;
}

#footer .purpleLayer .top .contacts .socials li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 25px;
	height: 25px;
	background: #fff;
	border-radius: 100%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

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

#footer .purpleLayer .top .contacts .socials li img {
	display: block;
	height: 15px;
	-webkit-filter: brightness(0) saturate(100%) invert(41%) sepia(87%) saturate(926%) hue-rotate(217deg) brightness(94%) contrast(88%);
	        filter: brightness(0) saturate(100%) invert(41%) sepia(87%) saturate(926%) hue-rotate(217deg) brightness(94%) contrast(88%);
}

#footer .purpleLayer .top .contacts .more {
	margin: 0;
	padding: 0;
}

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

#footer .purpleLayer .top .contacts .more li a {
	position: relative;
	display: inline-block;
	color: #fff;
	padding-left: 35px;
}

#footer .purpleLayer .top .contacts .more li a:before {
	content: "";
	position: absolute;
	background: no-repeat;
	background-size: 100%;
}

#footer .purpleLayer .top .contacts .more li.phone a:before {
	left: 1px;
	top: 2px;
	width: 19px;
	height: 19px;
	background-image: url(../images/phone-ico.svg);
}

#footer .purpleLayer .top .contacts .more li.email a:before {
	left: 0;
	top: 3px;
	width: 24px;
	height: 18px;
	background-image: url(../images/email-ico.svg);
}

#footer .purpleLayer .bottom {
	background: #5a53ae;
}

#footer .purpleLayer .bottom .section {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	font-size: 17px;
	color: #fff;
}

#footer .purpleLayer .bottom .section>: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: #fff;
	border-radius: 10px;
}

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

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

.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: #ffa851 !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;
}
.copyright a, .copyright a:hover {
    color: #fff;
}
/* Move reCAPTCHA v3 badge in front */
.grecaptcha-badge {
z-index:999;
}
#contactForm label {
    font-size: 16px;
}
#contactForm label.error {
    color: red;
    font-size: 12px;
    font-weight: normal;
}
.fieldRequired {
    color: red;
    vertical-align: super;
    font-size: smaller;
}
