/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	color: #131D0E;
	font-family: "Onest", sans-serif;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {-webkit-font-smoothing: antialiased;}


:focus::-webkit-input-placeholder,
:focus::-moz-placeholder,
:focus:-moz-placeholder,
:focus:-ms-input-placeholder {
	color: transparent
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea,
select,
button,
a {
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {outline: none;}

input[type=submit],
button,
a {
	cursor: pointer;
}


/* mix */
.error {
	box-shadow: inset 0 0 0px 3px #f00 !important;
	/*border: 1px solid #f00;*/
}

.transition {
	-moz-transition:    all 0.2s ease;
	-o-transition:      all 0.2s ease;
    -webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.btn {
	text-align: center;
	display: inline-block;
	cursor: pointer;
	font-size: 17px;
	font-weight: 600;
	padding: 20px 30px;
	border-radius: 100px;
}
.btn:hover {}
.btn:active, .btn:visited, .btn:focus, .btn:hover {
	text-decoration: none;
	color: #131D0E;
}

.btn-prime {
	background-color: #B8F200;
}
.btn-prime:hover {
	background-color: #9bc513
}
.btn-second {
	background-color: #f3f3f3;
}
.btn-second:hover {
	background-color: #e5e3e3;
}

.heading {}
.heading h2 {
	font-weight: 500;
	font-size: 74px;
	line-height: 1;
	margin-top: 40px;
}
.heading h2 span {
	display: inline-block;
	padding: 10px 30px;
}
.heading h2 span.bg-white {
	background-color: #fff;
	transform: rotate(-1deg);
}
.heading h2 span.bg-blue {
	background-color: #6978ff;
	color: #fff;
	position: relative;
	z-index: 5;
	transform: rotate(1deg) translateY(-5px) translateX(25px);
}
.heading h3 {}
.heading h4 {}

@media (min-width: 1200px) {
    .container {
        width: 1400px;
    }
}

/* styles */
#header {
	padding: 10px 0;
}
#header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .logo {
	font-size: 30px;
	font-weight: bold;
	line-height: 1;
}
#header .logo span {
	color: #6978ff;
}
#header .nav {
	margin: 0 auto;
}
#header .nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#header .nav ul li {
	display: inline-block;
	margin: 0 10px;
}
#header .nav ul li a {
	display: block;
	font-size: 18px;
	font-weight: 600;
}
#header .nav ul li a:focus,
#header .nav ul li a:hover {
	text-decoration: none;
	color: #6978ff;
}
#header .phone {
	position: relative;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	vertical-align: middle;
	margin-left: auto;
	margin-right: 20px;
}
#header .phone::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	background: url(../img/icon-phone.svg) center center no-repeat;
	margin-right: 15px;
	transform: translateY(-1px);
}
#header .phone:hover {
	text-decoration: none;
	color: #000;
}
#header .btn {}
#header .soc {
	background-color: #fff;
	border-radius: 100px;
	padding: 5px;
	display: flex;
	gap: 5px;
	margin-left: 5px;
}
#header .soc a {}
#header .soc a img {
	max-width: 50px;
}
#header .soc a:hover {
	opacity: 0.7;
}

#main {}
#main .wrap {
	position: relative;
	height: 700px;
	background: url(../img/bg-main.jpg) center center no-repeat;
	padding: 30px 70px;
	border-radius: 40px;
}
#main .title {}
#main .title h1 {
	color: #fff;
	font-weight: 500;
	font-size: 74px;
	line-height: 1;
	margin-top: 40px;
}
#main .title h1 span {
	display: inline-block;
	padding: 10px 30px;
}
#main .title h1 span.bg-white {
	background-color: #fff;
	transform: rotate(-1deg);
}
#main .title h1 span.bg-blue {
	background-color: #6978ff;
	color: #fff;
	position: relative;
	z-index: 5;
	transform: rotate(1deg) translateY(-5px) translateX(25px);
}
#main ul {}
#main ul li {
	font-size: 22px;
	color: #fff;
	margin: 5px 0;
}
#main .buttons {
	margin-top: 40px;
}
#main .buttons .btn-prime {
	margin-right: 30px;
}
#main .pic {}
#main .pic img {
	display: none;
}
#main .pic .desc {
	text-align: right;
	max-width: 300px;
	position: absolute;
	top:   40px;
	right: 10px;
}
#main .pic .desc p {
	font-size: 22px;
	color: #fff;
	opacity: .6;
	line-height: 1.2;
	margin: 0;
}
#main .pic .desc .expirience {
	display: inline-block;
	font-size: 22px;
	font-weight: 500;
	padding: 5px 15px;
	background-color: #6978ff;
	color: #fff;
	position: relative;
	z-index: 5;
	transform: rotate(2deg);
}
#main .pic .desc .name {
	display: block;
	opacity: 1;
	font-weight: bold;
	font-size: 24px;
	margin: 20px 0 15px;
}

#numbers {
	margin: 90px 0;
	text-align: center;
}
#numbers .items {
	display: flex;
	justify-content: space-between;
	align-items: start;
}
#numbers .items .item {}
#numbers .items .item .number {
	font-size: 128px;
	font-weight: 500;
	margin: 0;
}
#numbers .items .item .text {
	font-size: 22px;
	color: #888;
	margin: 0px 0 0;
	font-weight: 400;
}
#numbers .items .item .text span {
	display: block;
	font-size: 30px;
	color: #000;
	margin-bottom: 10px;
	font-weight: 600;
}

#about {}
#about .wrap {
	/* height: 728px; */
	border-radius: 40px;
	overflow: hidden;
	display: flex;
}
#about .wrap .photo {
	position: relative;
	width: 50%;
}
#about .wrap .text {
	width: 50%;
	background-color: #f5f2fd;
	padding: 50px 60px;
}
#about .photo .pic {
	position: relative;
	height: 100%;
}
#about .photo .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#about .photo .desc {
	max-width: 300px;
	position: absolute;
	z-index: 10;
	top:   20px;
	left:  40px;
}
#about .photo .desc p {
	font-size: 22px;
	color: #fff;
	opacity: .6;
	line-height: 1.2;
	margin: 0;
}
#about .photo .desc .name {
	display: block;
	opacity: 1;
	font-weight: bold;
	font-size: 24px;
	margin: 20px 0 15px;
}
#about .photo .soc {
	background-color: #fff;
	border-radius: 100px;
	padding: 10px;
	position: absolute;
	left:   30px;
	bottom: 30px;
	z-index: 10;
	display: flex;
	gap: 10px;
}
#about .photo .soc a {}
#about .photo .soc a img {
	max-width: 72px;
}
#about .photo .soc a:hover {
	opacity: 0.7;
}
#about .text {}
#about .text .heading {}
#about .text .heading h2 {
	margin-top: 10px;
}
#about .text .heading span {
	transform: rotate(-1deg) translateX(-10px);
}
#about .text p {
	font-size: 22px;
}

#problems {
	margin-top: 90px;
	text-align: center;
}
#problems .heading {}
#problems .items {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-top: 40px;
}
#problems .items .item {}
#problems .items .item img {}
#problems .items .item p {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 500;
}

#features {
	text-align: center;
	margin-top: 90px;
}
#features .heading {}
#features .heading h2 {
	margin-bottom: 0;
}
#features .heading h2 span {
	transform: rotate(-1deg);
}
#features .heading h3 {
	font-weight: 400;
	font-size: 36px;
	margin: 20px 0 0;
}
#features .heading h4 {
	font-size: 46px;
	margin-bottom: 20px;
}
#features .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: start;
	margin-top: 40px;
}
#features .items .item {
	width: 33.333%;
	margin-bottom: 30px;
}
#features .items .item .pic {
	position: relative;
	display: inline-block;
}
#features .items .item .pic img {}
#features .items .item .pic span {
	background-color: #b8f200;
	font-size: 18px;
	font-weight: bold;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 100px;
	display: inline-block;
	position: absolute;
	top:   5px;
	right: 5px;
}
#features .items .item > p {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 500;
	text-wrap: balance;
}

.order {}
.order .wrap {
	position: relative;
	background-color: #6978ff;
	border-radius: 30px;
	overflow: hidden;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.order .wrap::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	position: absolute;
	z-index: 1;
	background: url(../img/pattern.png) center center no-repeat;
	opacity: .2;
}
.order .text {
	display: flex;
	position: relative;
	z-index: 2;
}
.order .text img {
	margin-right: 30px;
}
.order .text p {
	margin: 0;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	line-height: 1.3;
}
.order .buttons {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 2;
}
.order .buttons .btn {}
.order .buttons .soc {
	display: flex;
	gap: 15px;
}
.order .buttons .soc a:hover {
	opacity: 0.7;
}
#order-1 {}
#order-2 {}

#courses {
	margin-top: 90px;
}
#courses .heading {
	text-align: center;
}
#courses .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
#courses .items .item {
	background-color: #e9fbff;
	padding: 45px;
	border-radius: 40px;
	width: calc(50% - 20px);
	margin-bottom: 30px;
}
#courses .items .item .play {
	position: absolute;
	background: url(../img/icon-play.svg) center center no-repeat, rgba(0,0,0,.4);
	border-radius: 40px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	transform: scale(1);
	transition: transform 0.2s ease;
}
#courses .items .item .play:hover {
	opacity: 1;
	background: url(../img/icon-play.svg) center center no-repeat, rgba(0,0,0,0);
	transform: scale(1.4);
}
#courses .items .item .pic {
	position: relative;
	height: 270px;
	overflow: hidden;
	border-radius: 30px;
	margin-bottom: 10px;
}
#courses .items .item .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#courses .items .item .info {
	display: flex;
	flex-direction: column;
}
#courses .items .item .name {
	font-size: 34px;
	font-weight: 500;
	margin: 20px 0 10px;
}
#courses .items .item .name span {
	display: inline-block;
	padding: 10px 20px;
	transform: rotate(3deg);
	font-size: 22px;
	font-weight: bold;
	margin-left: 20px;
}
#courses .items .item:nth-child(1) .name span,
#courses .items .item:nth-child(3) .name span {
	background-color: #6978FF;
	color: #fff;
}
#courses .items .item:nth-child(2) .name span,
#courses .items .item:nth-child(4) .name span {
	background-color: #B8F200;
}
#courses .items .item .desc {
	font-size: 18px;
	line-height: 1.4;
	margin: 0 0 40px;
}
#courses .items .item .buttons {
	margin-top: auto;
}
#courses .items .item .buttons .btn-prime {
	margin-right: 20px;
}
#courses .items .item .buttons .btn-second {
	background-color: #fff;
}
#courses .items .item .buttons .btn-second:hover {
	background-color: #eee;
}

#reviews {
	margin-top: 60px;
}
#reviews .heading {
	text-align: center;
}
#reviews .heading h2 {
	margin-bottom: 20px;
}
#reviews .heading h3 {
	font-weight: 400;
	font-size: 36px;
	margin: 0px 0 0;
}
#reviews .slider {
	position: relative;
	margin-top: 60px;

	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 20px;
}
#reviews .slider .review {
	display: inline-block;
}
#reviews .slider .review.video {
	position: relative;
	width: calc(50% - 10px);
	margin-bottom: 0px;
}
#reviews .slider .review.video .play {
	position: absolute;
	background: url(../img/icon-play.svg) center center no-repeat;
	border-radius: 40px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
#reviews .slider .review.video .play:hover {
	opacity: .6;
}
#reviews .slider .review.video img {
	width: 100%;
	height: auto;
	border-radius: 40px;
	overflow: hidden;
}
#reviews .slider .review.text {
	display: inline-block;
	background-color: #e8fcff;
	border-radius: 40px;
	padding: 30px;
	max-width: 340px;
}
#reviews .slider .review.text .name {
	display: flex;
	align-items: center;
	margin: 0;
}
#reviews .slider .review.text .name img {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	margin-right: 10px;
}
#reviews .slider .review.text .name p {}
#reviews .slider .review.text .name p b {
	display: block;
	font-size: 16px;
}
#reviews .slider .review.text .name p span {
	display: block;
	opacity: 0.5;
	font-size: 14px;
}
#reviews .slider .review.text p.desc {
	margin: 30px 0 0;
	font-weight: 500;
	font-size: 20px;
}
#reviews .slider .owl-nav {}
#reviews .slider .owl-nav .owl-prev,
#reviews .slider .owl-nav .owl-next {}
#reviews .slider .owl-nav .owl-prev {}
#reviews .slider .owl-nav .owl-next {}
#reviews .slider .owl-dots {}
#reviews .slider .owl-dots .owl-dot {}
#reviews .slider .owl-dots .owl-dot.active {}
#reviews .slider .owl-dots .owl-dot span {
	display: none;
}

#tarif {
	margin-top: 90px;
}
#tarif .wrap {
	border-radius: 40px;
	background: url(../img/pattern.png) center no-repeat, #362096;
	padding: 50px 40px;
}
#tarif .heading {}
#tarif .heading h2 {
	text-align: center;
	color: #fff;
	margin: 20px 0 20px;
}
#tarif .tabs {
	text-align: center;
	align-items: center;
	justify-content: center;
	gap: 15px;
	display: flex;
	margin: 20px 0 50px;
}
#tarif .tabs p {
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	margin-right: 20px;
}
#tarif .tabs .tab {
	cursor: pointer;
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	padding: 15px 30px;
	border-radius: 100px;
	background-color: rgba(255, 255, 255, .15);
}
#tarif .tabs .tab.active {
	background-color: #fff;
	color: #000;
}
#tarif .tabs .tab:not(.active):hover {
	background-color: rgba(255, 255, 255, .35);
}
#tarif .items {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
#tarif .items .item {
	background-color: #fff;
	border-radius: 40px;
	padding: 40px 40px;
	display: flex;
	flex-direction: column;
}
#tarif .items .item .name {
	text-align: center;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 600;
	margin: 0 0 0;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
#tarif .items .item .desc {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 500;
	text-align: center;
	text-wrap: balance;
	margin-bottom: 30px;
}
#tarif .items .item ul.text {
	margin-top: 30px;
	margin: 0;
	padding: 0 10px;
}
#tarif .items .item ul.text li {
	font-size: 18px;
	margin: 10px 0;
	line-height: 1.3;
}
#tarif .items .item .who {
	margin-top: 30px;
	margin: 30px -25px;
	padding: 30px 0px;
	border-radius: 20px;
}
#tarif .items .item:nth-child(1) .who {
	background-color: #e9fbff;
}
#tarif .items .item:nth-child(2) .who {
	background-color: #EAFFE9;
}
#tarif .items .item:nth-child(3) .who {
	background-color: #fcffe9;
}
#tarif .items .item .who ul {
	margin: 0;
	padding: 0 50px;
	padding-right: 15px;
}
#tarif .items .item .who ul li {
	font-size: 18px;
	margin: 10px 0;
	line-height: 1.3;
}
#tarif .items .item .who ul li:first-child {
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	color: #362096;
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
#tarif .items .item .price {
	text-align: center;
	margin-top: auto;
}
#tarif .items .item .price span {
	display: block;
	font-size: 30px;
	color: #999;
	font-weight: bold;
	text-decoration: line-through;
}
#tarif .items .item .price p {
	font-size: 50px;
	font-weight: bold;
	margin: 0;
	line-height: 1;
}
#tarif .items .item .price b {
	font-size: 14px;
	font-weight: 500;
}
#tarif .items .item .btn {
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 20px auto 0;
}
#tarif .items .item .link {
	text-decoration: none;
	display: block;
	text-align: center;
	font-size: 18px;
	padding: 15px 0 0;
}
#tarif .items .item .link:hover {
   	color: #362096;
}
#tarif .logos {
	text-align: center;
	margin-top: 30px;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
}
#tarif .logos img {
	margin: 0 10px;
}
#tarif .logos p {
	text-align: left;
	margin-left: 20px;
	font-size: 22px;
}

#steps {
	margin-bottom: 20px;
}
#steps .heading {
	text-align: center;
}
#steps .items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}
#steps .items .item {
	width: calc(33.333% - 20px);
	background-color: #e9fbff;
	padding: 40px;
	border-radius: 30px;
	margin-bottom: 10px;
}
#steps .items .item span {
	display: inline-block;
	color: #fff;
	position: relative;
	z-index: 5;
	transform: rotate(-1deg);
	font-size: 22px;
	padding: 5px 20px;
}
#steps .items .item p {
	font-size: 28px;
	line-height: 1.3;
	font-weight: 500;
	margin-top: 40px;
	margin-bottom: 0;
}
#steps .items .item .btn {
	margin-top: 20px;
}
#steps .items .item:nth-child(1) span { background-color: #6978FF; }
#steps .items .item:nth-child(2) span { background-color: #C969FF; }
#steps .items .item:nth-child(3) span { background-color: #FF688E; }
#steps .items .item:nth-child(4) span { background-color: #12CE34; }
#steps .items .item:nth-child(5) span { background-color: #14C5CC; }
#steps .items .item:nth-child(6) span { background-color: #2D10D2; }

#uni {
	margin-top: 90px;
}
#uni .heading {
	text-align: center;
}
#uni .items {
	display: flex;
	gap: 0px;
	justify-content: space-between;
	align-items: center;
}
#uni .items .item {}
#uni .items .item img {}

#faq {
	margin-top: 90px;
}
#faq .heading {
	text-align: center;
}
#faq .accordion {}
#faq .accordion ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#faq .accordion ul li {
	border: 1px solid #6978FF;
	border-radius: 40px;
	padding: 30px 50px;
	margin-bottom: 20px;
}
#faq .accordion .q {
	cursor: pointer;
	position: relative;
	font-size: 34px;
	font-weight: 500;
	margin: 0;
	display: flex;
	justify-content: space-between;
}
#faq .accordion .q:hover {
	opacity: .5;
}
#faq .accordion .q span {
	font-size: 100px;
	font-weight: 100;
	line-height: .5;
	color: #2d10d2;
	opacity: .3;
	cursor: pointer;
	transform: rotate(0deg);
	transition: transform 0.2s ease;
}
#faq .accordion .a {
	margin: 20px 0 0px;
	font-size: 24px;
	line-height: 1.6;
	display: none;
}
#faq .accordion ul li.active {}
#faq .accordion ul li.active .a {
	/*display: block;*/
}
#faq .accordion ul li.active .q span {
	transform: rotate(315deg);
}

#footer {
	margin-top: 40px;
}
#footer .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#footer .logo {
	font-size: 30px;
	font-weight: bold;
	line-height: 1;
}
#footer .logo span {
	color: #6978ff;
}
#footer .phone {
	position: relative;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	vertical-align: middle;
	margin-left: auto;
	margin-right: 20px;
}
#footer .phone::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	background: url(../img/icon-phone.svg) center center no-repeat;
	margin-right: 15px;
	transform: translateY(-1px);
}
#footer .phone:hover {
	text-decoration: none;
}
#footer .soc {}
#footer .soc a {
	margin-left: 10px;
}
#footer .soc a:hover {
	opacity: 0.6;
}
#footer .bottom {
	padding: 40px 0;
}
#footer .bottom p,
#footer .bottom a.link {
	margin: 0;
	font-size: 16px;
	color: #999;
}
#footer .bottom a.link {
	text-decoration: underline;
}
#footer .bottom a.link:hover {}
#footer .bottom .btn {}
.ta-l { text-align: left; }
.ta-c { text-align: center; }
.ta-r { text-align: right; }

/* modals */
#modals {
	display: none;
}
.modal {
	width: 100%;
    /*height: 775px;*/
}
.modal iframe {
	width: 500px !important;
    height: 100% !important;
}

.modal-programm {
	max-width: 600px;
}
.modal-programm p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 0;
}
.modal-programm p b {
	font-weight: 900;
	color: #6978FF;
}

#politic {}
#politic .wrap {
	max-width: 1000px;
	margin: 60px auto;
}

/* media */
@media (max-width: 1200px) {}
@media (max-width: 992px) {}
@media (max-width: 868px) {
	
	.btn {
		padding: 15px 30px;
		font-size: 18px;
		width: 100%;
		max-width: 420px;
	}

	.heading {
		text-align: center;
	}
	.heading h2 {
		font-size: 26px;
	}
	.heading h2 span {
		padding: 6px 10px;
		transform: rotate(-1deg) !important;
	}
	.heading h3 {}
	.heading h4 {}

	#header {
		padding: 5px 0;
	}
	#header .wrap {}
	#header .logo {
		font-size: 14px;
	}
	#header .nav {
		display: none;
	}
	#header .nav ul {}
	#header .nav ul li {}
	#header .nav ul li a {}
	#header .phone {
		font-size: 14px;
	}
	#header .phone::before {
		width: 12px;
		height: 12px;
		background-size: 12px;
		margin-right: 10px;
	}
	#header .btn {
		display: none;
	}
	#header .soc {
		display: none;
	}

	#main {}
	#main .wrap {
		height: auto;
		background: url(../img/pattern.png) center center no-repeat, #352096;
		border-radius: 20px;
		padding: 30px;
		padding-bottom: 0;
	}
	#main .title {}
	#main .title h1 {
		font-size: 32px;
		margin-top: 0;
	}
	#main .title h1 span {
		padding: 10px 10px !important;
	}
	#main ul {
		padding-left: 15px;
	}
	#main ul li {
		font-size: 16px;
		margin: 0px 0;
	}
	#main .buttons {}
	#main .buttons .btn-prime {
		margin: 0 0 15px;
	}
	#main .pic {}
	#main .pic img {
		display: block;
		width: 100%;
		height: auto;
	}
	#main .pic .desc {
		position: relative;
		top: auto;
		right: auto;
		text-align: center;
		margin: 30px auto 10px;
		max-width: 240px;
	}
	#main .pic .desc p {
		font-size: 14px;
		margin: 0 0 0;
	}
	#main .pic .desc .expirience {
		font-size: 14px;
	}
	#main .pic .desc .name {
		font-size: 16px;
		margin: 5px 0;
	}

	#numbers {
		margin-top: 30px;
		margin-bottom: 0;
	}
	#numbers .items {
		flex-direction: column;
	}
	#numbers .items .item {
		width: 100%;
		margin-bottom: 20px;
	}
	#numbers .items .item .number {
		font-size: 36px;
	}
	#numbers .items .item .text {
		font-size: 12px;
	}
	#numbers .items .item .text span {
		font-size: 16px;
		margin: 0px 0;
		padding: 0;
	}

	#about {
		margin-top: 30px;
	}
	#about .wrap {
		flex-direction: column;
		border-radius: 20px;
	}
	#about .wrap .photo {
		width: 100%;
	}
	#about .wrap .text {
		width: 100%;
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
		padding: 20px;
	}
	#about .photo .pic {}
	#about .photo .pic img {
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}
	#about .photo .desc {
		display: block;
		width: 100%;
		max-width: 100%;
		position: relative;
		top: auto;
		left: auto;
		text-align: center;
		margin-bottom: 20px;
	}
	#about .photo .desc p {
		color: #000;
		line-height: 1.4;
		font-size: 12px;
	}
	#about .photo .desc .name {
		font-size: 26px;
		margin-bottom: 0px;
	}
	#about .photo .soc {
		gap: 5px;
		padding: 5px;
		bottom: 5px;
		left: 50%;
		transform: translateX(-50%);
	}
	#about .photo .soc a {}
	#about .photo .soc a img {
		width: 40px;
	}
	#about .text .heading {
		margin: 0 auto;
		max-width: 200px;
	}
	#about .text .heading span {}
	#about .text p {
		font-size: 16px;
	}
	#about .text p br:last-child {
		display: none;
	}

	#problems {
		margin-top: 30px;
	}
	#problems .heading {
		max-width: 400px;
		margin: 0 auto;
	}
	#problems .items {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 0;
	}
	#problems .items .item {
		width: 50%;
		margin-bottom: 20px;
	}
	#problems .items .item img {
		width: 90%;
	}
	#problems .items .item p {
		font-size: 16px;
	}

	#features {
		margin-top: 0px;
	}
	#features .heading {
		max-width: 400px;
		margin: 0 auto;
	}
	#features .heading h3 {
		font-size: 18px;
	}
	#features .heading h4 {
		font-size: 22px;
	}
	#features .items {
		margin-top: 0;
	}
	#features .items .item {
		width: 50%;
	}
	#features .items .item .pic {}
	#features .items .item .pic img {
		width: 90%;
	}
	#features .items .item .pic span {
		font-size: 14px;
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
	#features .items .item > p {
		font-size: 14px;
	}

	.order {}
	.order .wrap {
		flex-direction: column;
		padding: 20px 15px 30px;
	}
	.order .text {
		margin-bottom: 20px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.order .text img {
		width: 40px;
		margin-right: 10px;
	}
	.order .text p {
		text-align: center;
		margin: 10px 0 0;
		font-weight: 400;
		font-size: 14px;
	}
	.order .text p br {
		display: none;
	}
	.order .buttons {
		flex-direction: column;
	}
	.order .buttons .btn {
		width: 100%;
		max-width: 420px;
	}
	.order .buttons .soc {
		display: none;
	}
	.order .buttons .soc a {}
	.order .buttons .soc a img {
		width: 55px;
	}
	#order-1 {}
	#order-2 {}

	#courses {
		margin-top: 30px;
	}
	#courses .heading {}
	#courses .items {
		gap: 0;
	}
	#courses .items .item {
		width: 100%;
		padding: 20px;
		margin-bottom: 15px;
	}
	#courses .items .item .pic {
		height: 200px;
	}
	#courses .items .item .pic img {
		border-radius: 20px;
	}
	#courses .items .item .name {
		font-size: 24px;
		font-weight: 600;
		text-align: center;
		position: relative;
		z-index: 10;
		transform: translateY(-10px);
	}
	#courses .items .item .name span {
		font-size: 18px;
		padding: 5px 15px;
		margin-left: 0px;
		position: absolute;
		left: 50%;
		top: -100%;
		white-space: nowrap;
		font-weight: 500;
		font-size: 16px;
		transform: translateX(-50%) rotate(3deg);
	}
	#courses .items .item .desc {
		font-size: 14px;
	}
	#courses .items .item .buttons {}
	#courses .items .item .buttons .btn-prime {
		margin-bottom: 10px;
	}

	#reviews {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	#reviews .heading {}
	#reviews .heading h3 {
		font-size: 18px;
		line-height: 1.2;
	}
	#reviews .slider {
		margin-top: 20px;

		flex-direction: column;
	}
	#reviews .slider .review {
		border-radius: 30px;
	}
	#reviews .slider .review.video {
		width: 100%;
	}
	#reviews .slider .review.video .play {}
	#reviews .slider .review.video img {
		width: 100%;
		border-radius: 30px;
	}
	#reviews .slider .review.text {
		padding: 20px;
		border-radius: 30px;
	}
	#reviews .slider .review.text .name {}
	#reviews .slider .review.text .name img {
		width: 50px;
		height: 50px;
	}
	#reviews .slider .review.text .name p {}
	#reviews .slider .review.text .name p b {
		font-size: 14px;
	}
	#reviews .slider .review.text .name p span {
		font-size: 12px;
	}
	#reviews .slider .review.text p.desc {
		font-size: 16px;
		line-height: 1.3;
		margin-top: 10px;
	}

	#tarif {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	#tarif .wrap {
		padding: 20px;
		border-radius: 0px;
		margin-left:  -15px;
		margin-right: -15px;
		padding-bottom: 30px;
	}
	#tarif .heading {}
	#tarif .heading h2 {
		margin-bottom: 0;
	}
	#tarif .tabs {
		flex-wrap: wrap;
		gap: 10px;
		margin-bottom: 20px;
	}
	#tarif .tabs p {
		font-size: 14px;
		width: 100%;
		text-align: center;
		margin-right: 0;
		margin-bottom: 0;
		opacity: .7;
	}
	#tarif .tabs .tab {
		font-size: 14px;
		padding: 10px 20px;
	}
	#tarif .tabs .tab.active {}
	#tarif .items {
		gap: 0px;
		/*display: block !important;*/
		white-space: nowrap;
		overflow-y: scroll;
		margin-left:  -20px;
		margin-right: -20px;
		align-items: center;
	}
	#tarif .items .item {
		flex-shrink: 0;
		/*display: inline-block;*/
		width: 85%;
		border-radius: 30px;
		margin: 0 10px;
		padding: 30px 20px;
		vertical-align: middle;
	}
	#tarif .items .item .name {
		line-height: 1.2;
		font-size: 22px;
		padding-bottom: 10px;
		margin-bottom:  10px;
	}
	#tarif .items .item .desc {
		margin-top: 0;
		margin-bottom: 15px;
		font-size: 16px;
	}
	#tarif .items .item ul.text {}
	#tarif .items .item ul.text li {
		font-size: 12px;
		margin: 5px 0;
	}
	#tarif .items .item .who {
		margin: 20px 0 0;
		padding: 20px 0;
	}
	#tarif .items .item .who ul {
		padding-left: 30px;
	}
	#tarif .items .item .who ul li {
		font-size: 12px;
		margin: 5px 0;
	}
	#tarif .items .item .desc,
	#tarif .items .item ul li,
	#tarif .items .item .who ul li {
		white-space: normal !important;
		text-wrap: auto !important;
	}
	#tarif .items .item .who ul li:first-child {
		font-size: 16px;
		margin-bottom: 15px;
	}
	#tarif .items .item .price {
		/*margin-top: 20px;*/
		margin-top: auto;
	}
	#tarif .items .item .price span {
		font-size: 18px;
		font-weight: 400;
	}
	#tarif .items .item .price p {
		font-size: 24px;
	}
	#tarif .items .item .btn {}
	#tarif .logos {
		flex-wrap: wrap;
		gap: 10px;
	}
	#tarif .logos img {
		width: 60px;
		height: auto;
		order: 2;
	}
	#tarif .logos p {
		width: 100%;
		font-size: 16px;
		order: 1;
		margin: 10px 0;
		text-align: center;
	}

	#steps {
		margin-top: 30px;
	}
	#steps .heading {}
	#steps .items {
		flex-wrap: wrap;
		gap: 10px;
	}
	#steps .items .item {
		width: 100%;
		padding: 20px;
		border-radius: 30px;
		margin-bottom: 0;
	}
	#steps .items .item span {
		font-size: 14px;
		padding: 3px 15px;
	}
	#steps .items .item p {
		font-size: 16px;
		margin-top: 20px;
	}

	#uni {
		margin-top: 30px;
	}
	#uni .heading {}
	#uni .items {
		flex-wrap: wrap;
		justify-content: center;
	}
	#uni .items .item {
		text-align: center;
		width: calc(100% / 3);
	}
	#uni .items .item:last-child {
		display: none;
	}
	#uni .items .item img {
		width: 85%;
	}

	#faq {
		margin-top: 30px;
	}
	#faq .heading {}
	#faq .accordion {}
	#faq .accordion ul {}
	#faq .accordion ul li {
		padding: 20px;
		border-radius: 30px;
		margin-bottom: 10px;
	}
	#faq .accordion .q {
		font-size: 16px;
	}
	#faq .accordion .q span {
		font-size: 30px;
		margin-left: 20px;
	}
	#faq .accordion .a {
		font-size: 14px;
		margin-top: 15px;
		line-height: 1.2;
		opacity: .5;
	}
	#faq .accordion ul li.active {}

	#footer {
		margin-top: 30px;
		padding-bottom: 15px;
	}
	#footer .wrap {
		flex-direction: column;
	}
	#footer .logo {
		font-size: 20px;
	}
	#footer .phone {
		font-size: 20px;
		margin: 0;
	}
	#footer .soc {
		margin-top: 20px;
	}
	#footer .soc a {
		margin: 0 10px;
	}
	#footer .soc a img {
		width: 50px;
	}
	#footer .bottom {
		padding: 20px 0;
	}
	#footer .bottom p,
	#footer .bottom a.link {
		font-size: 14px;
		text-align: center;
	}
	#footer .bottom .btn {
		margin-top: 20px;
		max-width: 400px;
		display: none;
	}

	#politic {}

	.modal-programm {}
	.modal-programm p {}
	.modal-programm p b {}
}