@-webkit-keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);
		transition-timing-function:cubic-bezier(.215,.61,.355,1);
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}

	40%,
	43% {
		-webkit-transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		-webkit-transform:translate3d(0,-30px,0);
		transform:translate3d(0,-30px,0);
	}

	70% {
		-webkit-transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		-webkit-transform:translate3d(0,-15px,0);
		transform:translate3d(0,-15px,0);
	}

	90% {
		-webkit-transform:translate3d(0,-4px,0);
		transform:translate3d(0,-4px,0);
	}
}

@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);
		-o-transition-timing-function:cubic-bezier(.215,.61,.355,1);
		transition-timing-function:cubic-bezier(.215,.61,.355,1);
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}

	40%,
	43% {
		-webkit-transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		-o-transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		-webkit-transform:translate3d(0,-30px,0);
		transform:translate3d(0,-30px,0);
	}

	70% {
		-webkit-transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		-o-transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		transition-timing-function:cubic-bezier(.755,.05,.855,.06);
		-webkit-transform:translate3d(0,-15px,0);
		transform:translate3d(0,-15px,0);
	}

	90% {
		-webkit-transform:translate3d(0,-4px,0);
		transform:translate3d(0,-4px,0);
	}
}

@keyframes shake {
	0%,
	to {
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform:translate3d(-10px,0,0);
		transform:translate3d(-10px,0,0);
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform:translate3d(10px,0,0);
		transform:translate3d(10px,0,0);
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity:0;
	}

	to {
		opacity:1;
	}
}

@keyframes fadeIn {
	0% {
		opacity:0;
	}

	to {
		opacity:1;
	}
}

@-webkit-keyframes pulse {
	0%,
	to {
		-webkit-transform:scale3d(1,1,1);
		transform:scale3d(1,1,1);
	}

	50% {
		-webkit-transform:scale3d(1.05,1.05,1.05);
		transform:scale3d(1.05,1.05,1.05);
	}
}

@keyframes pulse {
	0%,
	to {
		-webkit-transform:scale3d(1,1,1);
		transform:scale3d(1,1,1);
	}

	50% {
		-webkit-transform:scale3d(1.05,1.05,1.05);
		transform:scale3d(1.05,1.05,1.05);
	}
}

@-webkit-keyframes shake {
	0%,
	to {
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform:translate3d(-10px,0,0);
		transform:translate3d(-10px,0,0);
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform:translate3d(10px,0,0);
		transform:translate3d(10px,0,0);
	}
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform:rotate3d(0,0,1,15deg);
		transform:rotate3d(0,0,1,15deg);
	}

	40% {
		-webkit-transform:rotate3d(0,0,1,-10deg);
		transform:rotate3d(0,0,1,-10deg);
	}

	60% {
		-webkit-transform:rotate3d(0,0,1,5deg);
		transform:rotate3d(0,0,1,5deg);
	}

	80% {
		-webkit-transform:rotate3d(0,0,1,-5deg);
		transform:rotate3d(0,0,1,-5deg);
	}

	to {
		-webkit-transform:rotate3d(0,0,1,0deg);
		transform:rotate3d(0,0,1,0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform:rotate3d(0,0,1,15deg);
		transform:rotate3d(0,0,1,15deg);
	}

	40% {
		-webkit-transform:rotate3d(0,0,1,-10deg);
		-ms-transform:rotate3d(0,0,1,-10deg);
		transform:rotate3d(0,0,1,-10deg);
	}

	60% {
		-webkit-transform:rotate3d(0,0,1,5deg);
		transform:rotate3d(0,0,1,5deg);
	}

	80% {
		-webkit-transform:rotate3d(0,0,1,-5deg);
		transform:rotate3d(0,0,1,-5deg);
	}

	to {
		-webkit-transform:rotate3d(0,0,1,0deg);
		transform:rotate3d(0,0,1,0deg);
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity:0;
		-webkit-transform:translate3d(0,50px,0);
		transform:translate3d(0,50px,0);
	}

	to {
		opacity:1;
		-webkit-transform:none;
		transform:none;
	}
}

@keyframes fadeInUp {
	0% {
		opacity:0;
		-webkit-transform:translate3d(0,50px,0);
		transform:translate3d(0,50px,0);
	}

	to {
		opacity:1;
		-webkit-transform:none;
		transform:none;
	}
}

html {
	font-family:sans-serif;
	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}

body {
	margin:0;
}

.reviews-wrapper cite span,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display:block;
}

audio,
canvas,
progress,
video {
	display:inline-block;
	vertical-align:baseline;
}

audio:not([controls]) {
	display:none;
	height:0;
}

[hidden],
template {
	display:none;
}

a {
	background-color:transparent;
	color:#814dcb;
	text-decoration:none;
	-webkit-transition:all .3s ease;
	-o-transition:all .3s ease;
	transition:all .3s ease;
}

a:active,
a:hover {
	outline:0;
}

abbr[title] {
	border-bottom:1px dotted;
}

b,
strong {
	font-weight:700;
}

dfn {
	font-style:italic;
}

h1 {
	font-size:2em;
}

mark {
	background:#ff0;
	color:#000;
	background:rgba(255,238,182,.5);
	padding:2px;
}

small {
	font-size:80%;
}

sub,
sup {
	font-size:75%;
	line-height:0;
	position:relative;
	vertical-align:baseline;
}

sup {
	top:-.5em;
}

sub {
	bottom:-.25em;
}

img {
	border:0;
	max-width:100%;
	height:auto;
	vertical-align:top;
}

svg:not(:root) {
	overflow:hidden;
}

figure {
	margin:1em 40px;
}

hr {
	-webkit-box-sizing:content-box;
	box-sizing:content-box;
	height:0;
}

pre {
	overflow:auto;
}

code,
kbd,
pre,
samp {
	font-family:monospace,monospace;
	font-size:1em;
}

button,
input,
optgroup,
select,
textarea {
	color:inherit;
	font:inherit;
	margin:0;
}

button {
	overflow:visible;
}

button,
select {
	text-transform:none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance:button;
	cursor:pointer;
}

button[disabled],
html input[disabled] {
	cursor:default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border:0;
	padding:0;
}

input {
	line-height:normal;
}

input[type=checkbox],
input[type=radio] {
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	padding:0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	height:auto;
}

input[type=search] {
	-webkit-appearance:textfield;
	-webkit-box-sizing:content-box;
	box-sizing:content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance:none;
}

fieldset {
	border:1px solid silver;
	margin:0 2px;
	padding:.35em .625em .75em;
}

legend {
	border:0;
}

textarea {
	overflow:auto;
}

dl dt,
optgroup {
	font-weight:700;
}

table {
	border-collapse:collapse;
	border-spacing:0;
	width:100%;
	margin-bottom:15px;
}

legend,
td,
th {
	padding:0;
}

.clearfix:after,
.person-tittle:after {
	content:"";
	display:block;
	clear:both;
}

body,
html {
	height:100%;
}

#wrapper {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-direction:column;
	flex-direction:column;
	height:100vh;
	z-index:-1;
}

#main {
	-webkit-box-flex:1;
	-ms-flex:1 0 auto;
	flex:1 0 auto;
}

#footer {
	-ms-flex-negative:0;
	flex-shrink:0;
}

html {
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	font-size:100%;
}

*,
:after,
:before {
	-webkit-box-sizing:inherit;
	box-sizing:inherit;
}

* {
	max-height:1000000px;
}

body {
	color:#1e1e1e;
	background:#fff;
	font:20px/1.2 "Open Sans","Arial","Helvetica Neue","Helvetica",sans-serif;
	min-width:320px;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

.h1,
.h2,
h1,
h2,
h4 {
	font-family:inherit;
	text-align:center;
}

.h1,
h1 {
	color:inherit;
}

.h2,
h2,
h4 {
	font-weight:400;
}

.h3,
h3,
h5 {
	color:inherit;
}

.h,
.h3,
.h4,
.h5,
.h6,
h3,
h5,
h6 {
	font-family:inherit;
	font-weight:400;
	text-align:center;
}

.h,
.h5,
.h6,
h6 {
	color:inherit;
}

.h a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color:inherit;
	font-size:inherit;
}

.h a:hover,
.h1 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
	color:inherit;
}

.h1,
h1 {
	font-size:5rem;
	line-height:5.4375rem;
	font-weight:700;
	margin:0 0 .713em;
}

.h2,
.h3,
.h4,
h2,
h3,
h4 {
	line-height:4.0625rem;
	letter-spacing:-1px;
}

.h2,
h2 {
	color:#192b37;
	font-size:3.4375rem;
	margin:0 0 .855em;
}

.h3,
.h4,
h3,
h4 {
	font-size:3.125rem;
	margin:0 0 .94em;
}

.h4,
h4 {
	font-size:2.5rem;
	line-height:3.4375rem;
	margin:0 0 1.125em;
	color:#192b37;
}

.h5,
h5 {
	font-size:17px;
	margin:0 0 .9em;
}

.h6,
h6 {
	font-size:15px;
	margin:0 0 1em;
}

blockquote,
p {
	font-size:20px;
}

blockquote {
	color:inherit;
	margin:0;
	padding:0;
}

blockquote cite {
	font-style:normal;
}

p {
	line-height:2.1875rem;
	margin-bottom:2.188rem;
	margin-top:0;
}

dl dt {
	float:left;
	clear:left;
	padding-right:.3em;
}

dl dd {
	margin-left:0;
}

em,
i {
	font-style:italic;
	font-weight:400;
}

a:focus {
	outline:0;
}

a:hover {
	color:#ab88dc;
	text-decoration:none;
}

ol,
ul {
	padding-left:0;
	margin-top:0;
	margin-bottom:0;
}

ol,
ol li,
ul,
ul li {
	list-style:none;
}

.list-style,
ol:not([class]),
ul:not([class]) {
	padding-left:20px;
	margin-bottom:15px;
}

.list-style li,
ol:not([class]) li,
ul:not([class]) li {
	list-style:none;
	font-size:20px;
	line-height:normal;
	color:#1e1e1e;
	padding-left:20px;
	position:relative;
}

.list-style li+ li,
ol:not([class]) li+ li,
ul:not([class]) li+ li {
	margin-top:60px;
}

ol:not([class]) li:before {
	position:absolute;
}

.list-style li:before,
ul:not([class]) li:before {
	color:#814dcb;
	position:absolute;
}

.list-style li:before {
	top:2px;
	left:0;
}

.list-style ol,
.list-style ul,
ol:not([class]) ol,
ol:not([class]) ul,
ul:not([class]) ol,
ul:not([class]) ul {
	margin-bottom:0;
	margin-top:60px;
}

ul.list-style li:before,
ul:not([class]) li:before {
	content:"";
	font-size:20px;
	width:30px;
	height:22px;
	background-image:url(../img/ico48.svg);
	background-size:100%;
	top:6px;
	left:-23px;
}

ul.list-style ul li:before,
ul:not([class]) ul li:before {
	content:"+";
	color:#5c2e9d;
}

ol.list-style,
ol:not([class]) {
	counter-reset:li;
}

ol.list-style li:before,
ol:not([class]) li:before {
	content:counter(li) ".";
	counter-increment:li;
	font-style:normal;
	font-weight:700;
	font-size:20px;
	color:#1e1e1e;
	top:0;
	left:-18px;
}

ol.list-style ol li:before,
ol:not([class]) ol li:before {
	color:#5c2e9d;
}

.list-off ol li:before,
.list-off ol ol li:before,
.list-off ol ul li:before,
.list-off ul li:before,
.list-off ul ol li:before,
.list-off ul ul li:before {
	color:transparent;
	visibility:hidden;
	display:none;
}

.list-off ol,
.list-off ol li,
.list-off ol ol,
.list-off ol ol li,
.list-off ol ul,
.list-off ol ul li,
.list-off ul,
.list-off ul li,
.list-off ul ol,
.list-off ul ol li,
.list-off ul ul,
.list-off ul ul li {
	padding-left:0;
}

table th {
	letter-spacing:2px;
	text-align:left;
}

table td+ td,
table th+ th {
	text-align:center;
}

table td,
table th {
	padding:10px 15px;
	color:#1e1e1e;
	font-size:20px;
	border-bottom:1px solid #979797;
}

pre {
	max-width:100%;
	background:rgba(0,0,0,.1);
	padding:.5em;
}

.container {
	max-width:944px;
	width:100%;
	margin:0 auto;
	padding-left:50px;
	padding-right:50px;
}

.fixed-position-top {
	-ms-flex-negative:0;
	flex-shrink:0;
}

.bg-stretch {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:-1;
}

.bg-stretch img {
	width:100%;
	max-width:none;
	height:100%;
	-o-object-fit:cover;
	object-fit:cover;
}

.bac-tria {
	position:absolute;
	top:100%;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}

.bac-tria:after,
.bac-tria:before {
	content:"";
	display:block;
	width:0;
	height:0;
	border-style:solid;
	border-width:30px 30px 0;
	border-color:#000 transparent transparent;
}

.bac-tria:after {
	position:absolute;
	left:50%;
	top:0;
	border-color:#fff transparent transparent;
	border-width:22px 22px 0;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}

.text-orange {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:1.625rem;
	text-align:inherit;
	letter-spacing:1px;
	text-transform:uppercase;
	color:#ff8155;
	margin-bottom:1.154em;
}

.track-wrapper.track-green .text-orange {
	color:#4fcdbf;
	margin-bottom:18px;
}

.access .text-orange {
	color:#f96b39;
}

.emerald .text-orange,
.steps-wrapper .text-orange,
.text .text-orange {
	text-align:center;
}

.accordion,
.container-small,
.emerald-wrapper p,
.foto-wrapper p,
.gray-wrapper p,
.key-wrapper p,
.pale-wrapper p,
.person-wrapper p,
.slogan-wrapper p,
.steps,
.steps-wrapper p,
.teachers-text p,
.text-wrapper p,
.text-wrapper ul {
	max-width:585px;
	margin-left:auto;
	margin-right:auto;
}

#main {
	overflow:hidden;
	width:100%;
}

.accordion,
.accordion ul {
	list-style:none;
}

#main,
.accordion li {
	position:relative;
}

.accordion li:before {
	content:"";
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	height:1px;
	background-color:#dadee5;
}

.accordion .opener {
	display:block;
	height:1%;
	text-decoration:none;
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:28px;
	color:#192b37;
	position:relative;
}

.accordion .opener:before {
	content:"";
	position:absolute;
	right:0;
	width:25px;
	height:25px;
	background-image:url(../img/ico43.png);
	background-size:100%;
	background-repeat:no-repeat;
}

.accordion .active .opener:before {
	width:25px;
	height:25px;
	background-image:url(../img/ico42.png);
	background-position:50% 50%;
}

.accordion p {
	margin:0;
}

.accordion ul {
	padding:0 0 0 20px;
	margin:0;
}

.a-hidden {
	opacity:0;
}

.a-visible {
	opacity:1;
}

.animated {
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
}

.animated.infinite {
	-webkit-animation-iteration-count:infinite;
	animation-iteration-count:infinite;
}

.animated.hinge {
	-webkit-animation-duration:2s;
	animation-duration:2s;
}

.bounce {
	-webkit-animation-name:bounce;
	animation-name:bounce;
	-webkit-transform-origin:center bottom;
	-ms-transform-origin:center bottom;
	transform-origin:center bottom;
}

.shake {
	-webkit-animation-name:shake;
	animation-name:shake;
}

.fadeIn {
	-webkit-animation-name:fadeIn;
	animation-name:fadeIn;
}

.pulse {
	-webkit-animation-name:pulse;
	animation-name:pulse;
}

.swing {
	-webkit-transform-origin:top center;
	-ms-transform-origin:top center;
	transform-origin:top center;
	-webkit-animation-name:swing;
	animation-name:swing;
}

.fadeInUp {
	-webkit-animation-name:fadeInUp;
	animation-name:fadeInUp;
}

#header {
	width:100%;
	background:#814dcb;
	padding:5px 0;
	text-align:center;
	z-index:999;
	position:fixed;
	top:0;
	left:0;
}

#custom-counter {
	font-family:"Montserrat";
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	color:#fff;
	text-shadow:0 4px 4px rgba(0,0,0,.25),0 4px 4px rgba(0,0,0,.25);
}

#custom-counter .time-field {
	min-width:24px;
}

#custom-counter .time-field:nth-child(n+2) {
	margin-left:12px;
}

#custom-counter .num,
#custom-counter .time-text {
	display:block;
	font-style:normal;
	font-weight:700;
	line-height:1;
	font-size:18px;
}

#custom-counter .time-text {
	font-size:10px;
	text-transform:uppercase;
}

.video-block {
	position:relative;
}

.btn-play {
	width:32px;
	height:32px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-16px 0 0 -16px;
}

.btn-play a {
	display:block;
	width:0;
	height:0;
	text-indent:-9999px;
	border-style:solid;
	border-width:16px 0 16px 32px;
	border-color:transparent transparent transparent rgba(255,255,255,.7);
}

.btn-play.lg {
	width:50px;
	height:50px;
	margin:-25px 0 0 -25px;
}

.btn-play.lg a {
	border-width:25px 0 25px 50px;
}

.btn-play.gray a {
	border-color:transparent transparent transparent rgba(203,203,203,.7);
}

.btn-play.md {
	width:40px;
	height:40px;
	margin:-20px 0 0 -20px;
}

.btn-play.md a {
	border-width:20px 0 20px 40px;
}

#footer {
	text-align:center;
	font-size:14px;
	line-height:1.4;
	opacity:.58;
	padding:27px 0 45px;
}

#footer .container {
	max-width:1400px;
}

.footer-address {
	font-size:14px;
	line-height:normal;
	margin-top:30px;
}

.footer-address p {
	font-size:inherit;
	line-height:inherit;
	margin-bottom:0;
}

.hero-wrapper {
	position:relative;
	z-index:1;
	text-align:center;
	padding:110px 20px 50px;
	background:url(../img/bg-intro.svg) no-repeat 100% 100%;
	background-size:100% auto;
	margin:-20px -20px 40px;
}

.hero-wrapper h1 {
	color:#fff;
}

.hero-wrapper .container {
	max-width:1015px;
	z-index:100;
}

.hero-down {
	margin-top:2px;
}

.person-wrapper {
	padding:0 0 77px;
}

.person-tittle {
	max-width:473px;
	margin-left:auto;
	margin-right:auto;
	vertical-align:top;
	padding:0 44px;
	margin-bottom:34px;
}

.person-left {
	float:left;
	font-style:normal;
	font-weight:700;
	font-size:80px;
	line-height:66px;
	letter-spacing:-1.45455px;
	margin-right:17px;
}

.person-block,
.person-text {
	font-style:normal;
	font-weight:700;
	font-size:20px;
	line-height:35px;
}

.person-block {
	border:1px solid #ffac00;
	max-width:473px;
	margin-left:auto;
	margin-right:auto;
	padding:27px 43px 36px 45px;
	margin-bottom:96px;
}

.person-block:before {
	content:"";
	position:absolute;
	width:23px;
	height:38px;
	top:100%;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	background-image:url(../img/ico49.svg);
	background-repeat:no-repeat;
}

.person-block,
.person-line {
	position:relative;
}

.gray-wrapper {
	padding:65px 0 66px;
	background-color:#fcfbf8;
}

.key-wrapper {
	padding:35px 0;
}

.key-container {
	max-width:638px;
	margin-left:auto;
	margin-right:auto;
}

.key-container p {
	max-width:none;
}

.key-block {
	border:5px solid #9365d5;
	text-align:center;
	padding:30px 99px 25px;
	margin-bottom:68px;
	margin-top:53px;
	background-color:#fff;
	position:relative;
}

.key-block .bac-tria:before {
	border-color:#9365d5 transparent transparent;
	border-width:30px 30px 0;
}

.key-block .bac-tria:after {
	border-color:#fff transparent transparent;
	border-width:22px 22px 0;
}

.key-ico {
	margin-bottom:36px;
}

.key-tittle {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	font-size:1.625rem;
	line-height:1.875rem;
	text-align:center;
	margin-bottom:20px;
	color:#9365d5;
}

.introducing-wrapper {
	background:#f5f2fb;
	position:relative;
	z-index:-1;
	padding:20px 0 40px;
	margin-bottom:46px;
}

.introducing-wrapper:after,
.introducing-wrapper:before {
	content:"";
	position:absolute;
	z-index:-1;
	left:0;
	right:0;
	background-color:#fff;
}

.introducing-wrapper:before {
	top:0;
	height:66px;
}

.introducing-wrapper:after {
	bottom:224px;
	height:389px;
	-webkit-transform:translateY(100%);
	-ms-transform:translateY(100%);
	transform:translateY(100%);
	background-image:url(../img/bac2.png);
	background-repeat:no-repeat;
	background-position:50% 100%;
	background-size:100% 100%;
}

.introducing-wrapper .container {
	max-width:840px;
}

.introducing {
	border:5px solid #dba751;
	background-color:#fff;
	border-radius:20px;
	padding:47px 76px 10px;
	text-align:center;
	position:relative;
}

.introducing .bac-tria:before {
	border-color:#dba751 transparent transparent;
	border-width:40px 40px 0;
}

.introducing .bac-tria:after {
	border-color:#fff transparent transparent;
	border-width:32px 32px 0;
}

.introducing-pre-tittle {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:800;
	line-height:normal;
	font-size:27px;
	text-align:center;
	letter-spacing:1.03846px;
	opacity:.83;
	color:#303434;
	margin-bottom:10px;
}

.introducing-logo {
	margin-bottom:45px;
}

.introducing-tittle {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:600;
	font-size:1.75rem;
	line-height:2.1875rem;
	margin-bottom:20px;
	text-align:center;
}

.foto-wrapper {
	padding:40px 0 47px;
}

.foto-wrapper p+ h3 {
	margin-top:1.74em;
	margin-bottom:1.52em;
}

.foto-tittle {
	font-style:normal;
	font-weight:400;
	font-size:2.5rem;
	line-height:3.25rem;
	text-align:center;
	letter-spacing:-.833333px;
	margin-bottom:80px;
}

.foto-img {
	text-align:center;
	margin-bottom:75px;
}

.foto-img .mob {
	display:none;
}

.trainer-wrapper .text-orange {
	margin-bottom:.6em;
}

.trainer {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	background-color:#000;
}

.trainer-left {
	-webkit-box-flex:0;
	-ms-flex:0 0 514px;
	flex:0 0 514px;
	max-width:514px;
	padding:82px 60px 18px 15px;
	margin-left:auto;
	color:#fff;
}

.trainer2-wrapper .trainer-left {
	padding:65px 38px 23px 15px;
}

.trainer-name {
	font-style:normal;
	font-weight:400;
	font-size:3.75rem;
	line-height:4.0625rem;
	letter-spacing:-1px;
	margin-bottom:16px;
}

.trainer2-wrapper .trainer-name {
	margin-bottom:27px;
}

.trainer-right {
	-webkit-box-flex:0;
	-ms-flex:0 0 43.85066%;
	flex:0 0 43.85066%;
	max-width:43.85066%;
}

.trainer-img {
	position:relative;
	z-index:1;
	min-height:790px;
	height:100%;
}

.reviews-wrapper {
	padding:35px 0 45px;
}

.reviews-wrapper .container {
	max-width:915px;
}

.reviews-wrapper cite {
	display:block;
	font-family:"Montserrat";
	font-style:normal;
	line-height:normal;
	font-size:15px;
	margin-top:2.813rem;
	opacity:.56;
}

.reviews-orange .reviews-wrapper {
	padding:35px 0 56px;
}

.reviews-wrapper.reviews-green {
	padding:42px 0 56px;
}

.reviews {
	padding:40px 0;
}

.review {
	background-color:#f8f5fc;
	position:relative;
	-webkit-box-shadow:24px 24px 0 #e6dbf5;
	box-shadow:24px 24px 0 #e6dbf5;
	min-height:200px;
	padding:107px 60px 49px 141px;
	margin-right:25px;
}

.review:nth-child(n+2) {
	margin-top:98px;
}

.reviews-orange .review {
	background-color:#fefaf8;
	-webkit-box-shadow:24px 24px 0 #feece6;
	box-shadow:24px 24px 0 #feece6;
}

.reviews-green .review {
	background-color:#f6faf9;
	-webkit-box-shadow:24px 24px 0 #e0efea;
	box-shadow:24px 24px 0 #e0efea;
	padding-left:280px;
	padding-right:44px;
}

.reviews-green .review:nth-child(n+2) {
	margin-top:176px;
}

.review-img {
	position:absolute;
	top:87px;
	left:0;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	width:150px;
	height:150px;
	border-radius:50%;
	overflow:hidden;
}

.review-img img {
	width:100%;
	height:100%;
}

.reviews-green .review-img {
	top:0;
	left:68px;
	-webkit-transform:translateX(0%);
	-ms-transform:translateX(0%);
	transform:translateX(0%);
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.review-tittle,
.reviews-block {
	position:relative;
}

.reviews-block:before {
	content:"";
	position:absolute;
	top:-63px;
	left:0;
	width:54px;
	height:42px;
	background:url(../img/ico3.svg) no-repeat;
}

.reviews-orange .reviews-block:before {
	background:url(../img/ico4.svg) no-repeat;
}

.reviews-green .reviews-block:before {
	background:url(../img/ico50.svg) no-repeat;
}

.review-tittle {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:28px;
	letter-spacing:1px;
	color:#1e1e1e;
	padding-bottom:39px;
	margin-bottom:26px;
}

.review-tittle:after {
	content:"";
	position:absolute;
	bottom:0;
	left:0;
	width:150px;
	height:1px;
	background-color:#1e1e1e;
}

.teachers-wrapper {
	background:#fcfbf8;
	padding:83px 0 40px;
}

.teachers h3 {
	font-weight:700;
	margin-bottom:.58em;
}

.teachers-name,
.teachers-site {
	font-family:"Montserrat";
	font-style:normal;
	line-height:1;
	font-size:15px;
	text-align:center;
	opacity:.56;
}

.teachers-name {
	color:#1e1e1e;
	font-weight:700;
}

.teachers-site {
	font-weight:400;
	margin-top:5px;
}

.teachers-img {
	padding:40px 0 30px;
	margin-top:40px;
	position:relative;
	min-height:480px;
	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;
	z-index:1;
}

.teachers-img .container {
	max-width:1096px;
}

.teachers-info p {
	font-family:"Montserrat";
	margin-bottom:0;
	line-height:1.2;
	color:#fff;
	font-style:normal;
	font-weight:700;
	font-size:13px;
}

.teachers-text {
	padding:75px 0 40px;
	background:#fff;
}

.teachers-text h3 {
	margin-top:2.44em;
	margin-bottom:1.5em;
}

.track-wrapper {
	background:#fcfbf8;
}

.track-wrapper .container {
	max-width:898px;
}

.track-wrapper .text-orange {
	margin-bottom:9px;
}

.track-wrapper h4 {
	position:relative;
	text-align:left;
}

.track-wrapper h4:before {
	content:"";
	position:absolute;
	top:18px;
	left:-128px;
	width:60px;
	height:140px;
	background:url(../img/ico5.svg) no-repeat;
}

.track-wrapper.track-green h4:before {
	top:13px;
	left:-158px;
	width:113px;
	height:142px;
	background:url(../img/ico16.svg) no-repeat;
}

.track {
	position:relative;
	z-index:2;
	padding:50px 0 30px;
}

.track p {
	max-width:570px;
}

.track-name {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:900;
	line-height:9.6875rem;
	font-size:11.25rem;
	letter-spacing:3px;
	color:#f4f3f0;
}

.module {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	padding:50px 0 0;
}

.module-l {
	padding-right:15px;
}

.module-after-tittle,
.module-tittle {
	font-style:normal;
	font-weight:700;
	font-size:1.75rem;
	line-height:2.1875rem;
}

.module-tittle {
	color:#f96b39;
}

.track-green .module-tittle {
	color:#4fcdbf;
}

.module-after-tittle {
	margin-bottom:.964em;
}

.module-text {
	font-style:normal;
	font-weight:400;
	line-height:35px;
	font-size:20px;
}

.module-r {
	-webkit-box-flex:0;
	-ms-flex:0 0 393px;
	flex:0 0 393px;
	max-width:393px;
}

.module-img {
	position:relative;
	display:inline-block;
}

.module-img.shadow {
	margin-bottom:-30px;
}

.lessons-wrapper {
	background:#fbbca6;
	position:relative;
	padding:20px 0 24px;
}

.lessons-wrapper .container {
	max-width:1096px;
}

.lessons-wrapper:after,
.lessons-wrapper:before {
	content:"";
	position:absolute;
	left:0;
	right:0;
	background-color:#fcfbf8;
}

.lessons-wrapper:before {
	top:0;
	height:134px;
}

.lessons-wrapper:after {
	bottom:318px;
	height:389px;
	-webkit-transform:translateY(100%);
	-ms-transform:translateY(100%);
	transform:translateY(100%);
	background-image:url(../img/bac3.png);
	background-repeat:no-repeat;
	background-position:50% 100%;
	background-size:100% 100%;
}

.lessons-wrapper.lessons-green {
	background:#6de3d6;
}

.lessons-wrapper.lessons-green:after {
	background-image:url(../img/bac4.png);
	bottom:288px;
	background-color:#fff;
}

.lessons-wrapper ol {
	max-width:600px;
	margin-left:auto;
	margin-right:auto;
}

.lessons-wrapper li {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}

.lessons-wrapper h3 {
	line-height:3.4375rem;
	margin-bottom:1.46em;
}

.lessons {
	padding:72px 60px 97px;
	border:5px solid #dba751;
	background-color:#fff;
	position:relative;
	z-index:2;
}

.lessons-img {
	-webkit-box-flex:0;
	-ms-flex:0 0 120px;
	flex:0 0 120px;
	max-width:120px;
	text-align:center;
	margin-right:35px;
}

.lessons-text {
	line-height:1.875rem;
}

.you-get-wrapper {
	padding:144px 0 120px;
	z-index:2;
	position:relative;
}

.you-get-block {
	position:relative;
	padding:40px 70px 0 94px;
}

.you-get-block:after {
	content:"";
	position:absolute;
	top:100%;
	left:50%;
	z-index:-1;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	width:500px;
	height:30px;
	background-color:#feece6;
}

.tablet-img {
	display:none;
}

.you-get-item {
	background-color:#fff;
	position:relative;
	padding:50px 45px 19px;
	-webkit-box-shadow:0 25px 40px rgba(0,0,0,.3);
	box-shadow:0 25px 40px rgba(0,0,0,.3);
}

.you-get-item:nth-child(n+2) {
	margin-top:30px;
}

.you-get-item:after,
.you-get-item:before {
	content:"";
	position:absolute;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
}

.you-get-item:before {
	top:55px;
	background-image:url(../img/ico27.svg);
	left:0;
	width:46px;
	height:46px;
}

.you-get-item:after {
	bottom:100%;
	left:50%;
	width:500px;
	height:30px;
	z-index:-1;
	background-color:#feece6;
}

.you-get-tittle {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:2.5rem;
	margin-bottom:17px;
	color:#192b37;
}

.emerald-wrapper {
	background:#deefea;
	padding:82px 0 16px;
}

.emerald-wrapper .container {
	max-width:892px;
}

.emerald-wrapper h3 {
	margin-bottom:19px;
}

.emerald-after-tittle {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:1.625rem;
	text-align:center;
	letter-spacing:1px;
	text-transform:uppercase;
	color:#ff8155;
	margin-bottom:20px;
}

.emerald-sert {
	background:#cde9e1;
	padding:35px 105px 40px 97px;
	margin-top:84px;
	margin-bottom:66px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}

.emerald-sert h4 {
	text-align:left;
	margin-bottom:20px;
	font-size:2.375rem;
	line-height:2.8125rem;
	letter-spacing:-.95px;
}

.emerald-sert p {
	margin-bottom:0;
}

.emerald-img {
	-webkit-box-flex:0;
	-ms-flex:0 0 178px;
	flex:0 0 178px;
	max-width:178px;
	margin-right:28px;
	padding-top:20px;
}

.steps-wrapper {
	padding:81px 0 0;
}

.steps-wrapper h3 {
	margin-bottom:1.12em;
}

.steps-wrapper .text-orange,
.steps-wrapper .text-orange+ h3 {
	max-width:659px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:22px;
}

.steps-wrapper .text-orange+ h3 {
	margin-bottom:0;
}

.steps {
	padding-bottom:48px;
}

.steps-block {
	padding:30px 0 77px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin-left:-60px;
	margin-right:-60px;
}

.steps-item {
	padding:40px 20px 32px;
	width:calc(50% - 120px);
	-webkit-box-shadow:0 25px 40px rgba(0,0,0,.3);
	box-shadow:0 25px 40px rgba(0,0,0,.3);
	margin-left:60px;
	margin-right:60px;
}

.steps-num {
	text-align:center;
	margin-bottom:30px;
}

.steps-name {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:28px;
	text-align:center;
	color:#192b37;
}

.steps-1,
.steps-2 {
	position:relative;
}

.steps-1:before {
	content:"";
	position:absolute;
	top:50%;
	left:calc(100% + 60px);
	-webkit-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	width:40px;
	height:32px;
	background-image:url(../img/ico28.svg);
	background-repeat:no-repeat;
}

.steps-2:before {
	top:calc(100% + 50px);
	right:50%;
	-webkit-transform:translate(50%,-50%);
	-ms-transform:translate(50%,-50%);
	transform:translate(50%,-50%);
	width:32px;
	height:42px;
	background-image:url(../img/ico29.svg);
}

.steps-3,
.steps-4 {
	position:relative;
	margin-top:120px;
}

.steps-2:before,
.steps-3:before,
.steps-4:before {
	content:"";
	position:absolute;
	background-repeat:no-repeat;
}

.steps-3:before {
	top:50%;
	-webkit-transform:translate(50%,-50%);
	-ms-transform:translate(50%,-50%);
	transform:translate(50%,-50%);
	right:calc(100% + 60px);
	width:40px;
	height:32px;
	background-image:url(../img/ico30.svg);
}

.steps-4:before {
	bottom:calc(100% + 60px);
	right:50%;
	-webkit-transform:translate(50%,50%) rotate(-180deg);
	-ms-transform:translate(50%,50%) rotate(-180deg);
	transform:translate(50%,50%) rotate(-180deg);
	width:32px;
	height:42px;
	background-image:url(../img/ico29.svg);
}

.steps-orange {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:1.625rem;
	text-align:center;
	letter-spacing:1px;
	text-transform:uppercase;
	color:#ff8155;
	margin-bottom:20px;
}

.review-bg-wrapper {
	padding:89px 0 0;
	background:#f5f2fb;
	margin-bottom:40px;
}

.review-bg-wrapper h4 {
	line-height:4.0625rem;
	margin-bottom:.8em;
	letter-spacing:-.8px;
}

.review-bg-wrapper .container {
	max-width:959px;
}

.review-bg-img {
	position:relative;
	z-index:1;
	min-height:525px;
}

.review-bg-name,
.review-bg-site {
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:15px;
	text-align:center;
	opacity:.56;
}

.review-bg-site {
	font-weight:400;
}

.review-bg-img {
	margin-top:30px;
}

.pale-wrapper {
	padding:40px 0;
}

.pale-wrapper .container {
	max-width:880px;
}

.pale-wrapper h3 {
	margin-bottom:1.5em;
}

.pale a {
	font-size:inherit;
	color:inherit;
}

.pale a:hover,
.pale-purple {
	color:#814dcb;
}

.pale-purple {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:1.625rem;
	text-align:center;
	letter-spacing:1px;
	text-transform:uppercase;
	margin-bottom:23px;
}

.join-wrapper {
	padding:20px 0 40px;
}

.join-tittle {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:600;
	line-height:normal;
	font-size:80px;
	text-align:center;
	letter-spacing:3px;
	text-transform:uppercase;
	color:#814dcb;
	margin-bottom:10px;
}

.join-block {
	border:8px solid #814dcb;
	padding:38px 66px 7px;
	text-align:center;
	position:relative;
	max-width:700px;
	margin-left:auto;
	margin-right:auto;
}

.join-block .bac-tria:before {
	border-color:#814dcb transparent transparent;
	border-width:30px 30px 0;
}

.join-block .bac-tria:after {
	border-color:#fff transparent transparent;
	border-width:18px 18px 0;
}

.join-block-tittle,
.join-choose {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:600;
	font-size:3.125rem;
	line-height:3.4375rem;
	text-align:center;
	letter-spacing:2px;
	text-transform:uppercase;
	color:#814dcb;
}

.join-choose {
	font-weight:700;
	font-size:1.875rem;
	line-height:2.1875rem;
	letter-spacing:1px;
	color:#8e8e8e;
}

.join-logo {
	margin-bottom:30px;
}

.join-desription {
	font-style:normal;
	font-weight:400;
	font-size:2.5rem;
	line-height:3.4375rem;
	text-align:center;
	letter-spacing:-1px;
	color:#192b37;
}

.access-wrapper {
	padding:32px 0 40px;
	position:relative;
}

.access-wrapper:after {
	content:"";
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:40%;
	background:#f5f2fb;
	z-index:-1;
}

.access-wrapper:before {
	content:"";
	position:absolute;
	top:904px;
	left:0;
	right:0;
	min-height:1186px;
	background-image:url(../img/bac5-2.png);
	background-position:50% 100%;
	background-size:100% 100%;
}

.access-wrapper .container {
	max-width:1096px;
}

.access-get {
	font-style:normal;
	font-weight:700;
	text-align:center;
	color:#1e1e1e;
	font-size:1.875rem;
	line-height:2.1875rem;
	margin-bottom:36px;
}

.access {
	max-width:792px;
	margin-left:auto;
	margin-right:auto;
	padding:110px 32px 56px;
	margin-bottom:67px;
	border:5px solid #dba751;
	text-align:center;
	position:relative;
	background:#fff;
	z-index:2;
}

.access:before {
	content:"";
	position:absolute;
	top:31px;
	left:50%;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	width:60px;
	height:60px;
	background-image:url(../img/ico32.svg);
	background-size:cover;
}

.access h3,
.access-prom+ h3 {
	font-weight:700;
	font-size:1.75rem;
}

.access h3 {
	font-style:normal;
	line-height:2.1875rem;
	margin-bottom:40px;
	text-align:center;
}

.access .bac-tria:before {
	border-color:#dba751 transparent transparent;
	border-width:30px 30px 0;
}

.access .bac-tria:after {
	border-color:#fff transparent transparent;
	border-width:22px 22px 0;
}

.access-orange,
.access-tittle {
	font-style:normal;
	font-weight:700;
	text-align:center;
}

.access-orange {
	font-family:"Montserrat";
	line-height:normal;
	text-transform:uppercase;
	margin-bottom:20px;
	font-size:1.625rem;
	letter-spacing:1.08333px;
	color:#f96b39;
}

.access-tittle {
	font-size:3.4375rem;
	line-height:3.75rem;
	letter-spacing:-1px;
	color:#192b37;
	max-width:580px;
	margin-left:auto;
	margin-right:auto;
}

.access-img,
.access-tittle {
	margin-bottom:30px;
}

.access-img .mob {
	display:none;
}

.access-items {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	margin-bottom:44px;
	max-width:610px;
	margin-left:auto;
	margin-right:auto;
}

.access-item {
	text-align:center;
	-webkit-box-flex:0;
	-ms-flex:0 0 33.33%;
	flex:0 0 33.33%;
	max-width:33.33%;
}

.access-item-img {
	margin-bottom:20px;
	min-height:80px;
}

.access-name {
	font-style:normal;
	font-weight:700;
	line-height:24px;
	font-size:18px;
	text-align:center;
	color:#192b37;
}

.access-prom {
	border:1px solid #dcdad7;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	padding:25px 42px;
	margin-bottom:37px;
}

.access-prom+ h3 {
	max-width:550px;
	margin-left:auto;
	margin-right:auto;
}

.access-prom-img {
	-webkit-box-flex:0;
	-ms-flex:0 0 100px;
	flex:0 0 100px;
	max-width:100px;
	margin-right:37px;
}

.access-text {
	font-style:normal;
	font-weight:400;
	line-height:27px;
	font-size:18px;
	color:#192b37;
	text-align:left;
}

.price {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	margin-left:-15px;
	margin-right:-15px;
	z-index:2;
	position:relative;
}

.price-item {
	-webkit-box-shadow:0 25px 40px rgba(0,0,0,.3);
	box-shadow:0 25px 40px rgba(0,0,0,.3);
	background-color:#fff;
	padding:30px 40px;
	margin-left:15px;
	margin-right:15px;
	width:calc(50% - 30px);
	overflow:hidden;
	text-align:center;
}

.price-tittle {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:2.5rem;
	letter-spacing:1px;
	text-transform:uppercase;
	color:#814dcb;
	position:relative;
	padding-bottom:20px;
	margin-bottom:38px;
}

.price-tittle:before {
	content:"";
	position:absolute;
	bottom:0;
	left:-60px;
	right:-60px;
	height:1.2px;
	z-index:3;
	background-color:#dcdad7;
}

.price-desription {
	font-style:normal;
	font-weight:400;
	line-height:2.1875rem;
	font-size:20px;
	color:#000;
	margin-bottom:61px;
}

.price-info {
	font-style:normal;
	font-weight:700;
	font-size:1.5rem;
	line-height:1.875rem;
	text-align:center;
	color:#000;
}

.price-value-new,
.price-value-old {
	font-style:normal;
	font-weight:700;
	line-height:1.2;
	font-size:4.375rem;
	color:#000;
}

.price-value-old {
	font-size:2.5rem;
	color:#8e8e8e;
	text-decoration:line-through;
}

.price-button,
.price-extra {
	margin-top:45px;
}

.price-button a {
	display:block;
	padding:25px 10px;
	white-space:nowrap;
	vertical-align:middle;
	border:1px solid transparent;
	font-family:"Montserrat";
	font-style:normal;
	font-weight:700;
	line-height:normal;
	font-size:21px;
	color:#fff;
	background:#f96b39;
	border:10px solid rgba(255,255,255,.2);
	-webkit-box-shadow:0 15px 15px rgba(249,107,57,.4);
	box-shadow:0 15px 15px rgba(249,107,57,.4);
	border-radius:60px;
}

.price-button a:hover {
	background:#fa7e52;
}

.price-button a span {
	padding:0 20px 0 0;
	display:inline-block;
	/*background:url(../img/ico-arrow.svg) no-repeat 100% 50%;*/
}

.price-extra {
	font-style:normal;
	font-weight:400;
	line-height:26px;
	font-size:18px;
	color:#8e8e8e;
}

.cards-img {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	padding:44px 0 15px;
	max-width:100%;
}

.cards-img img:nth-child(n+2) {
	margin-left:10px;
}

.plus-wrapper {
	background-color:#e2ddec;
	padding:48px 0 40px;
}

.plus-wrapper .container {
	max-width:1050px;
}

.plus {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	text-align:center;
	margin-left:-30px;
	margin-right:-30px;
}

.plus-item {
	padding:0 30px;
	-webkit-box-flex:0;
	-ms-flex:0 0 50%;
	flex:0 0 50%;
	max-width:50%;
}

.plus-img {
	margin-bottom:20px;
}

.plus-tittle {
	font-weight:700;
	margin-bottom:21px;
}

.support-wrapper {
	background:#f5f2fb;
	text-align:center;
	padding:21px 0 26px;
}

.support-wrapper p {
	margin-bottom:0;
	font-style:normal;
	font-weight:400;
	line-height:24px;
	font-size:18px;
}

.support-wrapper+ .reviews-green {
	padding:91px 0 40px;
}

.support a {
	font-size:inherit;
	color:inherit;
}

.support a:hover {
	color:#814dcb;
}

.accordion-wrapper {
	padding:72px 0 40px;
}

.accordion-wrapper .container {
	max-width:850px;
}

.accordion-wrapper h2 {
	margin-bottom:.545em;
}

.accordion li {
	padding:39px 0;
}

.accordion .opener {
	padding-right:127px;
}

.accordion .opener:before {
	top:10px;
}

.accordion .slide {
	padding-top:12px;
}

.slogan-wrapper {
	padding:40px 0;
}

.slogan-wrapper .container {
	max-width:890px;
}

.slogan {
	min-height:220px;
	padding:32px 50px 38px;
	background-image:url(../img/ico44.png),url(../img/ico45.png),url(../img/ico46.png),url(../img/ico47.png);
	background-repeat:no-repeat;
	background-position:top left,top right,bottom right,bottom left;
	text-align:center;
	margin-bottom:73px;
}

.slogan-question {
	font-family:"Montserrat";
	font-style:normal;
	font-weight:400;
	line-height:normal;
	font-size:2.5rem;
	color:#192b37;
	margin-bottom:20px;
}

.slogan-answer {
	font-style:normal;
	font-weight:700;
	text-align:center;
}

.text-wrapper {
	padding:3px 0 30px;
}

.text-wrapper h3 {
	margin-top:1.26em;
	margin-bottom:1.1em;
}

.text-wrapper h3.other-m {
	margin-top:1.74em;
	margin-bottom:.38em;
}

.text-wrapper ul {
	margin-top:79px;
	margin-bottom:46px;
}

.text-wrapper ul li {
	line-height:1.875rem;
	padding-left:27px;
}

.text-wrapper ul li+ li {
	margin-top:40px;
}

.text-wrapper .text-orange {
	margin-bottom:77px;
}

.reviews-without {
	padding:54px 0 45px;
	position:relative;
	z-index:10;
}

.reviews-without .review {
	padding:107px 37px 49px 279px;
	background:#f6faf9;
	-webkit-box-shadow:24px 24px 0 #e0efea;
	box-shadow:24px 24px 0 #e0efea;
}

.reviews-without .review:nth-child(n+2) {
	margin-top:179px;
}

.reviews-without .reviews-block:before {
	display:none;
}

.reviews-without .review-img {
	top:0;
	left:70px;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.reviews-without+ .text-wrapper h3 {
	margin-top:.5em;
	margin-bottom:.76em;
}

.reviews-without+ .text-wrapper ul {
	margin-top:44px;
	margin-bottom:39px;
}

.revenues-wrapper {
	padding:20px 0 101px;
}

.revenues-wrapper .text-orange {
	margin-bottom:23px;
}

.revenues-wrapper .container {
	max-width:956px;
}

.revenues {
	text-align:center;
}

.revenues-block {
	border:8px solid #814dcb;
	padding:40px 15px 12px;
	position:relative;
	max-width:620px;
	margin-left:auto;
	margin-right:auto;
}

.revenues-block .bac-tria:before {
	border-color:#814dcb transparent transparent;
	border-width:30px 30px 0;
}

.revenues-block .bac-tria:after {
	border-color:#fff transparent transparent;
	border-width:19px 19px 0;
}

.revenues-tittle {
	font-style:normal;
	font-weight:700;
	font-size:1.625rem;
	line-height:1.875rem;
	margin-bottom:17px;
	text-align:center;
	color:#9365d5;
}

.six-wrapper {
	padding:70px 0 300px;
	margin:0 0 -200px;
	position:relative;
	background:#fefaf8;
}

.six-wrapper:before {
	content:"";
	background:url(../img/bac6.png) no-repeat;
	background-size:100% 500px;
	position:absolute;
	bottom:0;
	width:100%;
	left:0;
	height:500px;
	z-index:10;
}

.six-wrapper .six {
	position:relative;
	z-index:10;
}

.six-wrapper .container {
	max-width:1115px;
}

.six-wrapper h3 {
	max-width:850px;
	margin:0 auto .94em;
}

.six h3 {
	font-weight:700;
}

.six-block {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

.six-item {
	-webkit-box-flex:0;
	-ms-flex:0 0 620px;
	flex:0 0 620px;
	max-width:620px;
	padding:23px 54px 26px 40px;
	margin-right:auto;
	border-width:8px;
	border-style:solid;
	border-color:#fa9774;
	background:#fff;
	line-height:35px;
	position:relative;
	-webkit-box-shadow:0 25px 40px rgba(0,0,0,.15);
	box-shadow:0 25px 40px rgba(0,0,0,.15);
}

.six-item:nth-child(n+2) {
	margin-top:31px;
}

.six-item:nth-of-type(2n+1) {
	margin-right:auto;
}

.six-item:nth-of-type(2n+1) .bac-t {
	position:absolute;
	top:100%;
	left:-8px;
}

.six-item:nth-of-type(2n+1) .bac-t:after,
.six-item:nth-of-type(2n+1) .bac-t:before {
	content:"";
	display:block;
	width:0;
	height:0;
	border-style:solid;
	border-width:30px 38px 0 0;
	border-color:#fa9774 transparent transparent;
}

.six-item:nth-of-type(2n+1) .bac-t:after {
	position:absolute;
	left:8px;
	top:0;
	border-color:#fff transparent transparent;
	border-width:14px 17px 0 0;
}

.six-item:nth-of-type(2n) {
	margin-left:auto;
	margin-right:0;
}

.six-item:nth-of-type(2n) .bac-t {
	position:absolute;
	top:100%;
	right:-8px;
}

.six-item:nth-of-type(2n) .bac-t:after,
.six-item:nth-of-type(2n) .bac-t:before {
	content:"";
	display:block;
	width:0;
	height:0;
	border-style:solid;
	border-width:0 38px 30px 0;
	border-color:transparent #fa9774 transparent transparent;
}

.six-item:nth-of-type(2n) .bac-t:after {
	position:absolute;
	right:8px;
	top:0;
	border-color:transparent #fff transparent transparent;
	border-width:0 15px 13px 0;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+1).six-orange {
	border-color:#fa9774;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+1).six-orange .bac-t:before {
	border-color:#fa9774 transparent transparent;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+1).six-green {
	border-color:#4fcdbf;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+1).six-green .bac-t:before {
	border-color:#4fcdbf transparent transparent;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+1).six-yellow {
	border-color:#ffc917;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+1).six-yellow .bac-t:before {
	border-color:#ffc917 transparent transparent;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+1).six-purple {
	border-color:#814dcb;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+1).six-purple .bac-t:before {
	border-color:#814dcb transparent transparent;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+2).six-orange {
	border-color:#fa9774;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+2).six-orange .bac-t:before {
	border-color:transparent #fa9774 transparent transparent;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+2).six-green {
	border-color:#4fcdbf;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+2).six-green .bac-t:before {
	border-color:transparent #4fcdbf transparent transparent;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+2).six-yellow {
	border-color:#ffc917;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+2).six-yellow .bac-t:before {
	border-color:transparent #ffc917 transparent transparent;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+2).six-purple {
	border-color:#814dcb;
}

.six-wrapper .six-block .six-item:nth-of-type(2n+2).six-purple .bac-t:before {
	border-color:transparent #814dcb transparent transparent;
}

.join2-wrapper {
	padding:20px 0 40px;
}

.join2-wrapper .join-block {
	padding:38px 40px 29px;
}

.join2-wrapper .join-logo {
	margin-bottom:8px;
}

.cc-banner {
    margin: 20px 100px;
    width: calc(100% - 200px) !important;
}

.cc-banner .cc-dismiss {
    white-space: nowrap;
}

@media (min-width:1024px) {
	.foto-img {
		margin-left:-75px;
		margin-right:-75px;
	}
}

@media (min-width:1366px) {
	.introducing-wrapper .container {
		-webkit-transform:translateX(12px);
		-ms-transform:translateX(12px);
		transform:translateX(12px);
	}

	.reviews-orange .review {
		-webkit-transform:translateX(38px);
		-ms-transform:translateX(38px);
		transform:translateX(38px);
	}

	.track-wrapper .container {
		-webkit-transform:translateX(110px);
		-ms-transform:translateX(110px);
		transform:translateX(110px);
	}
}

@media (max-width:1366px) {
	.track {
		padding:100px 0 30px;
	}
}

@media (max-width:1180px) {
	.track-wrapper.track-green h4 {
		padding-left:135px;
	}
}

@media (max-width:1179px) {
	.track-wrapper.track-green h4:before {
		left:0;
	}
}

@media (max-width:1110px) {
	.track-wrapper h4 {
		padding-left:85px;
	}
}

@media (max-width:1099px) {
	.track-wrapper h4:before {
		left:0;
	}
}

@media (max-width:1024px) {
	html {
		font-size:85%;
	}

	.hero-wrapper {
		padding:60px 20px;
		margin:-10px -20px 40px;
	}

	.key-block {
		padding:30px 70px 25px;
	}

	.introducing-wrapper {
		background:#fff;
	}

	.introducing-wrapper:after {
		display:none;
	}

	.introducing {
		padding:50px 40px 10px;
	}

	.trainer-left,
	.trainer-wrapper.trainer2-wrapper .trainer-left {
		padding:35px 35px 25px;
	}

	.reviews-wrapper {
		padding:75px 0 45px;
	}

	.review:nth-child(n+2) {
		margin-top:140px;
	}

	.reviews-green .review {
		padding:107px 60px 49px 270px;
	}

	.review-img {
		top:0;
		left:50%;
		-webkit-transform:translate(-50%,-50%);
		-ms-transform:translate(-50%,-50%);
		transform:translate(-50%,-50%);
	}

	.module-r {
		-webkit-box-flex:0;
		-ms-flex:0 auto;
		flex:0 auto;
		max-width:none;
		-webkit-box-ordinal-group:2;
		-ms-flex-order:1;
		order:1;
		margin-bottom:28px;
		text-align:center;
		width:100%;
	}

	.module-img.shadow {
		margin-bottom:-15px;
	}

	.access-wrapper:before {
		height:1260px;
	}

	.price-button a {
		font-size:18px;
		padding:20px 5px;
	}

	.six-wrapper {
		padding:70px 0 100px;
		margin:0;
	}
}

@media (max-width:812px) {
	.price-button a {
		font-size:14px;
	}

	.price-button a span {
		background-size:15px 15px;
	}
}

@media (max-width:768px) {
	html {
		font-size:80%;
	}

	.h5,
	.price-button a,
	h5 {
		font-size:16px;
	}

	blockquote {
		font-size:18px;
	}

	p {
		font-size:19px;
		line-height:30px;
		margin-bottom:30px;
	}

	.list-style li,
	ol:not([class]) li,
	ul:not([class]) li {
		font-size:19px;
	}

	ul.list-style li:before,
	ul:not([class]) li:before {
		top:12px;
		left:0;
	}

	ol.list-style li:before,
	ol:not([class]) li:before {
		top:100px;
	}

	table td,
	table th {
		font-size:19px;
	}

	.text-orange {
		letter-spacing:0;
	}

	.access .text-orange {
		font-size:24px;
	}

	#footer {
		padding:0 0 40px;
	}

	.person-wrapper {
		padding:40px 0 20px;
	}

	.person-tittle {
		padding:0;
	}

	.person-block {
		padding:21px 20px 36px;
		margin-bottom:57px;
	}

	.gray-wrapper {
		padding:40px 0;
	}

	.key-block {
		margin-top:34px;
		margin-bottom:48px;
		padding:30px 17px 15px;
	}

	.key-block p {
		text-align:left;
	}

	.key-tittle {
		line-height:30px;
		font-size:26px;
	}

	.introducing {
		padding:50px 20px 18px;
	}

	.introducing-logo,
	.introducing-pre-tittle {
		margin-bottom:20px;
	}

	.foto-wrapper {
		padding:40px 0 9px;
	}

	.foto-wrapper p+ h3 {
		margin-top:40px;
		margin-bottom:28px;
	}

	.foto-tittle {
		line-height:45px;
		font-size:35px;
		margin-bottom:42px;
	}

	.foto-img {
		margin-bottom:30px;
	}

	.trainer {
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}

	.trainer-left,
	.trainer-right {
		-webkit-box-flex:1;
		-ms-flex:1 1 100%;
		flex:1 1 100%;
		max-width:100%;
	}

	.trainer-left {
		padding:35px 35px 25px;
		-webkit-box-ordinal-group:3;
		-ms-flex-order:2;
		order:2;
	}

	.trainer-right {
		-webkit-box-ordinal-group:2;
		-ms-flex-order:1;
		order:1;
	}

	.trainer-img {
		min-height:360px;
	}

	.reviews-wrapper {
		padding:59px 0 45px;
	}

	.reviews-wrapper.reviews-green {
		padding:42px 0 40px;
	}

	.review {
		padding:137px 20px 49px;
		-webkit-box-shadow:10px 10px 0 #e6dbf5;
		box-shadow:10px 10px 0 #e6dbf5;
		margin-right:5px;
	}

	.review:nth-child(n+2) {
		margin-top:110px;
	}

	.reviews-green .review {
		padding:107px 60px 49px 140px;
	}

	.review-img {
		width:130px;
		height:130px;
	}

	.reviews-green .review-img {
		left:50%;
		-webkit-transform:translate(-50%,-50%);
		-ms-transform:translate(-50%,-50%);
		transform:translate(-50%,-50%);
	}

	.review-tittle {
		padding-bottom:29px;
		margin-bottom:19px;
	}

	.teachers-wrapper {
		padding:40px 0 10px;
		background:0 0;
	}

	.teachers-info {
		display:none;
	}

	.teachers-text {
		padding:35px 0 20px;
	}

	.teachers-text h3 {
		margin-top:43px;
		margin-bottom:30px;
		position:relative;
	}

	.track-wrapper .text-orange {
		padding-left:58px;
		font-size:16px;
	}

	.track-wrapper h4,
	.track-wrapper.track-green h4 {
		padding-left:58px;
	}

	.track-wrapper h4:before,
	.track-wrapper.track-green h4:before {
		left:10px;
		top:10px;
		width:26px;
		height:64px;
		background-size:cover;
	}

	.track-wrapper.track-green h4:before {
		width:48px;
		left:-6px;
	}

	.track {
		padding:70px 0 30px;
	}

	.track p {
		padding:0;
	}

	.module {
		padding:40px 0 0;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}

	.module-l {
		-webkit-box-ordinal-group:3;
		-ms-flex-order:2;
		order:2;
		padding-right:0;
		padding-left:0;
	}

	.module-tittle {
		line-height:35px;
		font-size:30px;
	}

	.module-after-tittle {
		line-height:35px;
		font-size:28px;
	}

	.lessons-wrapper:before {
		height:51px;
	}

	.lessons-wrapper.lessons-green:after,
	.lessons-wrapper:after {
		bottom:45px;
		height:56px;
	}

	.lessons-wrapper ol {
		padding-left:30px;
	}

	.lessons-wrapper li {
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		justify-content:center;
	}

	.lessons-wrapper h3,
	.teachers-text h3 {
		line-height:55px;
		font-size:40px;
	}

	.lessons {
		padding:30px 15px 11px;
	}

	.lessons-img {
		min-height:80px;
		margin-bottom:20px;
	}

	.lessons-text {
		line-height:26px;
	}

	.you-get-wrapper {
		padding:40px 0 110px;
	}

	.you-get-wrapper h3 {
		margin-bottom:56px;
	}

	.you-get-block {
		padding:20px 0 0;
	}

	.you-get-block:after {
		height:60px;
	}

	.tablet-img {
		display:block;
	}

	.desktop-img {
		display:none;
	}

	.you-get-item {
		padding:43px 55px 19px;
	}

	.you-get-item:nth-child(n+2) {
		margin-top:60px;
	}

	.you-get-item:before {
		top:0;
		left:50%;
		-webkit-transform:translate(-50%,-50%);
		-ms-transform:translate(-50%,-50%);
		transform:translate(-50%,-50%);
	}

	.you-get-item:after {
		height:60px;
	}

	.you-get-tittle {
		margin-bottom:2px;
	}

	.emerald-wrapper {
		padding:63px 0 16px;
	}

	.emerald-wrapper h3 {
		line-height:55px;
		font-size:40px;
		margin-bottom:9px;
	}

	.emerald-sert {
		padding:44px 10px 40px;
		margin-top:40px;
		margin-bottom:32px;
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
		-webkit-box-align:center;
		-ms-flex-align:center;
		align-items:center;
	}

	.emerald-img {
		-webkit-box-flex:0;
		-ms-flex:0 0 100%;
		flex:0 0 100%;
		max-width:100%;
		margin-right:0;
		padding-top:20px;
		margin-bottom:30px;
	}

	.emerald-text,
	.emerald-text h4 {
		text-align:center;
	}

	.emerald-text p {
		line-height:35px;
		font-size:20px;
	}

	.steps-wrapper {
		padding:39px 0 15px;
	}

	.emerald-text h4,
	.steps-wrapper h3 {
		line-height:55px;
		font-size:40px;
	}

	.steps-wrapper .text-orange+ h3 {
		line-height:45px;
		font-size:35px;
	}

	.steps {
		padding-bottom:11px;
	}

	.steps-block {
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
		-webkit-box-align:center;
		-ms-flex-align:center;
		align-items:center;
		padding:0 0 58px;
		margin-left:0;
		margin-right:0;
	}

	.steps-item {
		width:235px;
		min-height:225px;
	}

	.steps-1:before {
		left:auto;
	}

	.steps-2 {
		margin-top:100px;
	}

	.steps-3,
	.steps-4 {
		-webkit-box-ordinal-group:4;
		-ms-flex-order:3;
		order:3;
		margin-top:100px;
	}

	.steps-1:before,
	.steps-3:before {
		top:calc(100% + 50px);
		right:50%;
		-webkit-transform:translate(50%,-50%);
		-ms-transform:translate(50%,-50%);
		transform:translate(50%,-50%);
		width:32px;
		height:38px;
		background-image:url(../img/ico29.svg);
	}

	.steps-4 {
		-webkit-box-ordinal-group:5;
		-ms-flex-order:4;
		order:4;
	}

	.steps-4:before {
		display:none;
	}

	.review-bg-wrapper {
		padding:50px 0 0;
		margin-bottom:0;
	}

	.review-bg-wrapper h4 {
		line-height:50px;
		font-size:33px;
	}

	.review-bg-img {
		min-height:300px;
	}

	.pale-wrapper {
		padding:25px 0 20px;
	}

	.accordion-wrapper h2,
	.pale-wrapper h3 {
		line-height:50px;
		font-size:40px;
	}

	.join-wrapper {
		padding:5px 0 40px;
	}

	.join-block {
		padding:20px 0;
	}

	.join-logo {
		margin-bottom:15px;
	}

	.join-desription {
		line-height:50px;
		font-size:33px;
	}

	.access h3,
	.access-get,
	.access-prom+ h3 {
		line-height:40px;
		font-size:30px;
	}

	.access {
		padding:110px 15px 8px;
		margin-bottom:90px;
		border-radius:20px;
	}

	.access-tittle {
		line-height:55px;
		font-size:40px;
	}

	.access-items {
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
		-webkit-box-align:center;
		-ms-flex-align:center;
		align-items:center;
	}

	.access-item {
		-webkit-box-flex:0;
		-ms-flex:0 0 65%;
		flex:0 0 65%;
		max-width:65%;
	}

	.access-item:nth-child(n+2) {
		margin-top:20px;
	}

	.access-prom {
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
		padding:25px 31px 35px;
	}

	.access-prom-img {
		margin-right:0;
		-webkit-box-flex:0;
		-ms-flex:0 0 100px;
		flex:0 0 100px;
		max-width:100px;
		margin-bottom:20px;
	}

	.access-text {
		text-align:center;
	}

	.price {
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
	}

	.price-item {
		width:calc(100% - 30px);
		padding:35px 25px 30px;
	}

	.price-item:nth-child(n+2) {
		margin-top:30px;
	}

	.price-tittle {
		font-size:35px;
	}

	.price-desription {
		font-size:19px;
		margin-bottom:30px;
	}

	.price-value-new {
		font-size:5rem;
	}

	.price-button {
		margin-top:20px;
	}

	.cards-img img {
		width:65px;
	}

	.cards-img img:nth-child(n+2) {
		margin-left:5px;
	}

	.plus-wrapper {
		padding:40px 0 54px;
	}

	.plus {
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
		-webkit-box-align:center;
		-ms-flex-align:center;
		align-items:center;
	}

	.plus-item {
		-webkit-box-flex:0;
		-ms-flex:0 0 100%;
		flex:0 0 100%;
		max-width:100%;
	}

	.plus-item:nth-child(n+2) {
		margin-top:60px;
	}

	.accordion-wrapper {
		padding:52px 0;
		margin-bottom:30px;
	}

	.accordion {
		padding-right:0;
		padding-left:0;
	}

	.accordion .opener {
		padding-right:65px;
		font-size:22px;
		margin-bottom:10px;
	}

	.accordion .opener:before {
		top:5px;
	}

	.accordion .slide {
		padding-right:54px;
	}

	.slogan-wrapper {
		padding:0;
	}

	.slogan {
		padding:30px 0 40px;
		margin-bottom:38px;
	}

	.slogan-question {
		line-height:50px;
		font-size:33px;
		margin-bottom:30px;
	}

	.text-wrapper h3.other-m {
		line-height:50px;
		font-size:40px;
		margin-top:0;
		margin-bottom:15px;
	}

	.text-wrapper ul {
		margin-top:66px;
		margin-bottom:30px;
	}

	.text-wrapper ul li {
		padding-left:60px;
		line-height:30px;
	}

	.text-wrapper .text-orange {
		margin-bottom:17px;
	}

	.reviews-without {
		padding:0;
	}

	.reviews-without .review {
		padding:100px 20px 49px 22px;
		-webkit-box-shadow:10px 10px 0 #e0efea;
		box-shadow:10px 10px 0 #e0efea;
	}

	.reviews-without .review:nth-child(n+2) {
		margin-top:125px;
	}

	.reviews-without .review-img {
		left:50%;
		-webkit-transform:translate(-50%,-50%);
		-ms-transform:translate(-50%,-50%);
		transform:translate(-50%,-50%);
	}

	.reviews-without+ .text-wrapper h3,
	.six h3 {
		line-height:50px;
		font-size:40px;
	}

	.revenues-wrapper {
		padding:10px 0 48px;
	}

	.revenues-block {
		padding:39px 13px 13px;
	}

	.revenues-tittle {
		line-height:30px;
		font-size:26px;
	}

	.six-wrapper {
		padding:40px 0 97px;
	}

	.six h3 {
		font-weight:400;
	}

	.six-block {
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
	}

	.six-item {
		padding:24px 27px 29px 25px;
		-webkit-box-flex:1;
		-ms-flex:1 1 100%;
		flex:1 1 100%;
		max-width:100%;
	}

	.six-item:nth-child(n+2) {
		margin-top:77px;
	}

	.join2-wrapper {
		padding:0 0 24px;
	}

	.join2-wrapper .join-block {
		padding:46px 5px 29px;
	}

	.join2-wrapper .join-block-tittle {
		line-height:40px;
		font-size:33px;
		letter-spacing:1px;
		margin-bottom:20px;
	}

	.join2-wrapper .join-choose {
		line-height:35px;
		font-size:30px;
	}

	.join2-wrapper .join-logo {
		margin-bottom:28px;
	}
}

@media (max-width:767px) {
	.container {
		padding:0 30px;
	}

	#custom-counter {
		text-shadow:none;
	}

	#custom-counter .time-field {
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-align:end;
		-ms-flex-align:end;
		align-items:flex-end;
		min-width:42px;
	}

	#custom-counter .num {
		font-size:15px;
	}

	#custom-counter .time-text {
		font-size:8px;
		margin-left:3px;
	}

	.reviews-orange .review {
		-webkit-box-shadow:10px 10px 0 #feece6;
		box-shadow:10px 10px 0 #feece6;
	}

	.reviews-green .review {
		-webkit-box-shadow:10px 10px 0 #e0efea;
		box-shadow:10px 10px 0 #e0efea;
		padding-left:22px;
		padding-right:20px;
	}

	.reviews-green .review:nth-child(n+2) {
		margin-top:120px;
	}

	.track-name {
		font-size:66px;
		text-align:center;
		letter-spacing:.970588px;
		background-color:#fff;
	}

	.access-wrapper:before {
		background-image:url(../img/bac5-2-mobile.png);
		background-position:50% 100%;
		background-size:100% 100%;
	}

	.price-extra {
		font-size:15px;
	}

	br {
		display:none;
	}
}

@media (max-width:667px) {
	html {
		font-size:75%;
	}

	table th {
		padding:10px 5px;
	}

	table td {
		padding:7px 5px;
	}

	.review-bg-img {
		min-height:239px;
	}

	.access-wrapper:after {
		height:0;
	}

	.access-wrapper:before {
		top:250px;
		min-height:56%;
	}
}

@media (max-width:666px) {
	.container {
		padding:0 20px;
	}

	.you-get-block:after {
		width:227px;
		height:60px;
	}

	.you-get-item:nth-child(n+2) {
		margin-top:40px;
	}

	.you-get-item:after {
		width:227px;
		height:40px;
	}
}

@media (max-width:375px) {
	.h2,
	h2 {
		margin-bottom:21px;
	}

	.h2,
	.h3,
	h2,
	h3 {
		line-height:45px;
		font-size:35px;
	}

	p,
	table td,
	table th {
		font-size:18px;
	}

	.list-style li,
	ol:not([class]) li,
	ul:not([class]) li {
		font-size:18px;
	}

	.accordion,
	.container-small,
	.emerald-wrapper p,
	.foto-wrapper p,
	.gray-wrapper p,
	.key-wrapper p,
	.pale-wrapper p,
	.person-wrapper p,
	.slogan-wrapper p,
	.steps,
	.steps-wrapper p,
	.teachers-text p,
	.text-wrapper p,
	.text-wrapper ul {
		padding-left:15px;
		padding-right:15px;
	}

	.hero-wrapper {
		padding:60px 20px 40px;
	}

	.hero-wrapper .container {
		padding:0 10px;
	}

	.key-wrapper {
		padding:35px 0 0;
	}

	.introducing-wrapper {
		padding:0 0 16px;
		margin-bottom:0;
	}

	.introducing-tittle {
		line-height:30px;
		font-size:24px;
		margin-bottom:1px;
	}

	.foto-img .mob {
		display:block;
		width:100%;
	}

	.foto-img .pc {
		display:none;
	}

	.access-img .mob {
		display:block;
		width:100%;
	}

	.access-img .pc {
		display:none;
	}

	.price-desription {
		font-size:18px;
	}
}

@media (max-width:374px) {
	.price-button a {
		font-size:10px;
	}

	.price-button a span {
		background-size:10px 10px;
	}
}