/* For old browsers */
@supports (not(--css: variables))
{
	.supports_error
	{
		display: flex !important;
	}
}

/* For IE */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none)
{
	.supports_error
	{
		display: flex !important;
	}
}

/*------------------
Reset styles
------------------*/
*
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

*:before,
*:after
{
	box-sizing: border-box;
}

html
{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body
{
	margin: 0;
	overscroll-behavior-y: contain;
	-webkit-tap-highlight-color: transparent;
	-webkit-overflow-scrolling: touch;
	text-rendering: optimizeLegibility;
	text-decoration-skip: objects;
}

img
{
	border-style: none;
	vertical-align: middle;
}

p {
	padding-bottom: 15px;
}

textarea
{
	overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
	margin: 0;

	-webkit-border-radius: 0;
	border-radius: 0;
	outline: none transparent !important;
	box-shadow: none;

	-webkit-appearance: none;
	appearance: none;
	-moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
	margin: 0;

	-webkit-appearance: none;
}

input[type=number]
{
	-moz-appearance: textfield;
}

:focus
{
	outline: 0;
}

:hover,
:active
{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
}


::-ms-clear
{
	display: none;
}



/*-------------------
Global styles
-------------------*/
:root
{
	--bg: #fff;
	--scroll_width: 17px;
	--text_color: #1a1a1a;
	--font_size: 16px;
	--font_size_title: 30px;
	--font-family: "Open Sans", sans-serif;
}


::selection
{
	color: #fff;
	background: #333333;
}

::-moz-selection
{
	color: #fff;
	background: #333333;
}


.clear
{
	clear: both;
}

.left
{
	float: left;
}

.right
{
	float: right;
}



html
{
	height: 100%;
}

body
{
	color: #000;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	background: #fff;
}
body.popup_open, .locked {
	overflow: hidden;
	padding-right: 17px;
}

button
{
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;

	display: inline-block;

	cursor: pointer;
	vertical-align: top;
	border: none;
	background: none;
}

sup {
	font-size: .5em;
}

strong {
	font-weight: 700;
}


.wrap  {

}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
}

.content {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 50px;
}

h1  {
	font-weight: 600;
	font-size: 42px;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #000;
	padding-bottom: 45px;
}
h2  {
	font-weight: 600;
	font-size: 40px;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #000;
	padding-bottom: 45px;
}
h3  {
	font-weight: 600;
	font-size: 30px;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #000;
	padding-bottom: 15px;
}
h4  {
	font-weight: 600;
	font-size: 22px;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #000;
	padding-bottom: 15px;
}
.btn {
	font-size: 17px;
	letter-spacing: -0.01em;
	color: #fff;
	border-radius: 60px;
	padding: 18px 40px;
	display: inline-flex;
	cursor: pointer;
	text-decoration: none;
}
.btn_link {
	font-size: 17px;
	letter-spacing: -0.01em;
	color: #fff;
	border-radius: 60px;
	display: inline-flex;
	cursor: pointer;
	padding: 0;
	overflow: hidden;
	text-decoration: none;
}
.btn_link a {
	padding: 18px 40px;
	color: #fff;
	text-decoration: none;
	width: 100%;
	text-align: center;
}
.btn_blue {
	background: #00b6e4;
	transition: background .5s;
}
.btn_blue:hover {
	background: #002942;
}
.dark_bg .btn_blue {
	border: 1px solid #00b6e4;
}
.btn_dark_blue {
	background: #002942;
	transition: background .5s;
}
.btn_dark_blue:hover {
	background: #00B6E4;
}
.btn_orange {
	background: #ff6d00;
	transition: background .5s;
}
.btn_orange:hover {
	background: #00B6E4;
}
.btn a {
	color: #fff;
	text-decoration: none;
}
.dark_bg {
	background: #002942;
}

.element-animation {
	opacity: 0;
	transform: translateY(70px);
}
.element-show {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.7s, transform 0.7s;
}

/* Padding */
.pb-0 {
	padding-bottom: 0;
}
.pb-15 {
	padding-bottom: 15px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-25 {
	padding-bottom: 25px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-45 {
	padding-bottom: 45px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-55 {
	padding-bottom: 55px;
}
.pb-85 {
	padding-bottom: 85px;
}
.pb-100 {
	padding-bottom: 100px;
}
.pb-150 {
	padding-bottom: 150px;
}
.pb-250 {
	padding-bottom: 250px;
}
.pt-50 {
	padding-top: 50px;
}
.pt-100 {
	padding-top: 100px;
}
.pt-150 {
	padding-top: 150px;
}
.pt-250 {
	padding-top: 250px;
}
.mt-25 {
	margin-top: 25px;
}
.mb-100 {
	margin-bottom: 100px;
}
/* Padding The End */

/* Font Size */
.fs-35 {
	font-size: 35px;
}
.fs-27 {
	font-size: 27px;
}
/* Font Size The End */

header {
	width: 100%;
	background: #002942;
	color: #fff;
}

.header {
	display: flex;
	width: 100%;
	align-items: center;
	padding: 20px 0;
}

.logo_wrapper {
	display: flex;
    align-items: center;
    gap: 10px;
}
.logo_wrapper a {
	text-decoration: none;
	color: #fff;
}
.logo {
	width: 68px;
}
.logo img, .logo svg {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.logo_text {
	/*font-size: 15px;*/
	font-size: 18px;
	font-weight: 300;
}
.logo_text a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.logo_text span {
	font-weight: 600;
	font-size: 18px;
}
.header_inner {
	display: flex;
	align-items: center;				 
	margin-left: auto;
	gap: 44px;
}
.header_city, .footer_city {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
}
.header_city img, .footer_city img {
	width: 12px;
	height: auto;
	vertical-align: middle;
}
.header_address, .header_phone, .footer_address, .footer_phone, .footer_email {
	display: flex;
	flex-direction: column;
}
.header_phone_mobile {
	display: none;
}
.header_phone_mobile img, .header_phone_mobile svg {
	width: 30px;
	height: auto;
	border-style: none;
	vertical-align: middle;
}
.header_address span, .header_phone span, .footer_address span, .footer_phone span, .footer_email span {
	font-weight: 300;
	font-size: 14px;
	color: #00b6e4;
}
.header_phone a, .footer_phone a, .footer_email a {
	color: #fff;
	text-decoration: none;
}
.header_phone span a, .footer_phone span a {
	color: #00b6e4;
}
.social_network_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}
.social_network_label {
	color: #b2bfc6;
	text-decoration: none;
	font-weight: 300;
	font-size: 12px;
}
.social_network_icon {
	display: flex;
	align-items: center;
	gap: 10px;
}
.social_network_icon svg {
	vertical-align: middle;
}

.top_menu_btn {
	display: none;
	background: #fff;
	background-clip: content-box;
	width: 30px;
	height: 29px;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	cursor: pointer;
	transform: rotate(0deg);
	transition: .4s;
}
.top_menu_btn:before, .top_menu_btn:after {
	content: '';
	position: absolute;
	background: #fff;
	height: 1px;
	width: 100%;
	will-change: rotate;
	transform: rotate(0deg);
	transition: all .4s;
}
.top_menu_btn:before {
	top: -10px;
}
.top_menu_btn:after {
	bottom: -10px;
	width: 100%;
}
.top_menu_btn.active_menu {
	background: transparent;
	background-clip: content-box;
	transform: rotateZ(180deg);
	z-index: 9;
}
.top_menu_btn.active_menu:before {
	top: 0;
	transform: rotate(135deg);
	background: #fff;
	width: 120%;
}
.top_menu_btn.active_menu:after {
	bottom: 0;
	transform: rotate(-135deg);
	background: #fff;
	width: 120%;
}

/* Menu */
.top_menu {
	background: #001e30;
	padding: 20px 0;
}
.top_menu_flex .logo_wrapper {
	display: none;
	opacity: 0;
	visibility: hidden;
}
.menu {
	display: flex;
	justify-content: space-between;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
}
.menu_item.parent {
	padding-right: 5px;
	position: relative;
}
.menu_item.parent .menu_parent_link:after {
	content: url('../images/icon/icon_menu_arrow.svg');
	width: 15px;
	height: 15px;
}
.menu_item a, .menu_parent_link {
	color: #fff;
	text-decoration: none;
	line-height: 1.3;
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}
.sub_menu {
	position: absolute;
	left: 0;
	width: max-content;
	margin: 20px auto 0;
	background: #002942;
	color: #fff;
	border-radius: 0 0 15px 15px;
	padding: 25px 20px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.menu .menu_item:nth-last-child(1 of .parent) .sub_menu {
	left: auto;
	right: 0;
}
.parent.sub_menu_open .sub_menu {
	opacity: 1;
	visibility: visible;
}
.submenu_item {
	padding-bottom: 7px;
}
.submenu_item.menu_item_active a {
	color: #00b6e4;
}
/* Menu The End */

.mobile_contacts_inner {
	display: none;
	margin-top: auto;
	gap: 40px;
}

/* Main First Screen */
.section_first_screen {
	position: relative;
	background: url('../images/main_img.jpg') no-repeat 50% 50%;
	background-size: cover;
	padding: 85px 0 190px;
}
.section_first_screen:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(17, 36, 48, 0.5);
}
.section_first_screen .content {
	position: relative;
}
.first_screen_content_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}
.first_screen_text_wrapper {
	/*width: 60%;*/
	width: 100%;
	max-width: 720px;
	padding-right: 25px;
}
.first_screen_content_inner h1 {
	font-size: 60px;
	line-height: 1.0;
	color: #fff;
	padding-bottom: 30px;
}
.first_screen_content_inner h1 span {
	color: #00b6e4;
}
.first_screen_text {
	color: #fff;
	font-size: 30px;
	line-height: 1.3;
	width: 100%;
	/*max-width: 600px;*/
}
.fs_slider {
	width: 100%;
	max-width: 407px;
	position: relative;
}
.fs_slider.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.fs_slider_item {
	display: flex;
	flex-direction: column;
	border-radius: 40px;
	overflow: hidden;
}
.fs_slider_image {
	position: relative;
}
.fs_slider_image img {
	width: 100%;
}
.fs_slider_image:before {
	content: '';
	background: linear-gradient(180deg, rgba(0, 41, 66, 0) 53%, #002942 100%);
	width: 100%;
	height: 170px;
	position: absolute;
	bottom: 0;
}
.fs_slider_info {
	background: linear-gradient(160deg, #012b44 50%, #014563 100%);
	padding: 30px;
	color: #fff;
}
.fs_slider_title {
	font-weight: 600;
	font-size: 25px;
	padding-bottom: 30px;
}
.fs_slider_title span {
	color: #00b6e4;
}
.slider_title_attention {
	font-weight: 700;
}
.slider_title_attention span {
	color: #ff6d00;
}
.fs_slider_text {
	padding-bottom: 30px;
}
.fs_slider_text span {
	color: #00b6e4;
}
.fs_slider_btn a {
	border: 1px solid #00b6e4;
}
.fs_slider .slick-dots {
	width: auto;
	top: 20px;
	right: 35px;
	bottom: auto;
	display: flex;
	background: rgba(106, 106, 106, 0.7);
	padding: 9px 10px;
	border-radius: 15px;
}
.fs_slider .slick-dots li {
	width: 7px;
	height: 7px;
	margin: 0 3px;
	background: #d9d9d9;
	border-radius: 50%;
}
.fs_slider .slick-dots li.slick-active {
	background: #00b6e4;
}
.slick-dots li button {
	display: none;
}
/* Main First Screen The End */

/* Founder */
.section_founder {
	background: url('../images/about_school_text.svg') no-repeat 50% 50%, #fff;
	background-size: contain;
}
.founder_wrapper {
	display: flex;
	align-items: center;
	gap: 45px;
}
.founder_info {
	width: 43%;
	display: flex;
	flex-direction: column;
}
.founder_image {
	width: 57%;
	display: flex;
	justify-content: end;
}
.founder_image img {
	width: 100%;
	max-width: 630px;
}
.founder_num_info {
	width: 50%;
}
.founder_img {
	width: 100%;
	max-width: 190px;
}
.founder_img img {
	width: 100%;
}
.founder_text {
	color: #636363;
}
.founder_sign {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-top: 20px;
}
.founder_name {
	font-weight: 400;
	color: #636363;
}
.founder_sign_image {
	width: 100%;
	max-width: 250px;
}
.founder_sign_image img {
	width: 100%;
}
.founder_desc {
	font-size: 15px;
	color: #636363;
	padding-bottom: 15px;
}
.founder_num_info {
	display: flex;
	align-items: start;
	align-self: center;
	gap: 25px;
}
.founder_num_info_item {
	width: calc(100% / 3);
}
.founder_number {
	font-weight: 600;
	font-size: 30px;
	padding-bottom: 10px;
}
.founder_number_first {
	color: #00b6e4;
}
.founder_num_title {
	font-weight: 600;
	font-size: 18px;
	padding-bottom: 5px;
}
.founder_num_text {
	color: #636363;
}
/* Founder The End */

/* Main License */
.main_licenses {

}
.main_licenses_inner {
	display: flex;
	padding: 50px 0;
}
.main_licenses_image, .main_licenses_info {
	width: 50%;
}
.main_licenses_image_mob {
	display: none;
}
.main_licenses_image {
	padding-right: 70px;
}
.main_licenses_image img {
	width: 100%;
	max-width: 560px;
}
.main_licenses_info h2 {
	color: #fff;
}
.main_licenses_text {
	color: #fff;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}
.main_license_images_wrapper {
	position: relative;
}
.main_license_images {
	padding: 0 95px;
}
.main_license_images .slick-track:before, .reviews .slick-track:after {
	content: none;
}
.main_license_images .slick-slide {
	height: auto;
	padding: 0 10px;
}
.main_license_images .slick-slide > div {
	height: 100%;
}
.main_license_images_item {
	max-height: 255px;
	/*border-radius: 20px;*/
	overflow: hidden;
}
.main_license_images_item img {
	width: 100%;
}
.ml_left, .ml_right {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f3f3;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
	transition: background 0.5s;
}
.ml_left {
	left: 0;
}
.ml_right {
	right: 0;
}
.ml_left path, .ml_right path {
	fill: #000;
	transition: fill 0.5s;
}
.ml_left:hover, .ml_right:hover {
	background: #00b6e4;
}
.ml_left:hover path, .ml_right:hover path {
	fill: #fff;
}
/* Main License The End */

/* Main Courses */
.main_courses_text {
	color: #636363;
	width: 100%;
	/*max-width: 50%;*/
}
.main_courses_content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#pdopage {
	opacity: 1 !important;
}
.main_courses_wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 50px;
}
.main_courses_item {
	width: calc(100% / 4 - 15px);
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.main_courses_img {
	width: 100%;
}
.main_courses_img img {
	width: 100%;
}
.main_courses_img:before {
	content: '';
	background: rgba(17, 36, 48, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
}
.main_course_info {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 30px;
	display: flex;
	flex-direction: column;
}
.main_course_count {
	background: #fff;
	font-size: 14px;
	border-radius: 6px;
	padding: 3px 7px;
	overflow: hidden;
	position: absolute;
}
.main_course_bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	/*transform: translate(0, 85px);*/
	transition: transform 0.5s;
}
.main_courses_item:hover .main_course_bottom {
	/*transform: translate(0, 0);*/
}
.main_course_name {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: #fff;
	padding-bottom: 30px;
}
.main_course_name a {
	color: #fff;
	text-decoration: none;
}
.main_courses_item .btn {
	padding: 0;
	overflow: hidden;
	transition: background 0.5s;
}
.main_courses_item .btn:hover {
	background: #002942;
}
.main_courses_item .btn a {
	padding: 15px;
	width: 100%;
	text-align: center;
}
/* Main Courses The End */

/* Category Courses */
.category_courses_content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.category_courses_wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 50px;
}
.category_courses_item {
	width: 100%;
	position: relative;
	display: flex;
	gap: 20px;
}
.category_courses_img_wrapper {
	width: calc(100% / 3 - 10px);
	max-height: 300px;
	flex-shrink: 0;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.category_courses_img {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.category_courses_img img {
	width: 100%;
}
.category_courses_img:before {
	content: '';
	background: rgba(17, 36, 48, 0.4);
	width: 100%;
	height: 100%;
	position: absolute;
}
.category_course_info {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 30px;
	display: flex;
	flex-direction: column;
}
.category_course_count {
	background: #002942;
	color: #fff;
	font-size: 14px;
	border-radius: 6px;
	padding: 3px 7px;
	overflow: hidden;
	position: absolute;
}
.category_course_bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: start;
	/*transform: translate(0, 85px);*/
	transition: transform 0.5s;
}
.category_courses_item:hover .category_course_bottom {
	/*transform: translate(0, 0);*/
}
.category_course_name {
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2;
	color: #fff;
	padding-bottom: 30px;
}
.category_course_name a {
	color: #fff;
	text-decoration: none;
}
.category_courses_item .btn {
	padding: 0;
	overflow: hidden;
	transition: background 0.5s;
}
.category_courses_item .btn:hover {
	background: #002942;
}
.category_courses_item .btn a {
	padding: 15px 30px;
	width: 100%;
	text-align: center;
}
.category_course_desc_wrapper {
	width: 100%;
	max-height: 300px;
	display: flex;
	background: #002942;
	color: #fff;
	border-radius: 20px;
	overflow: hidden;
}
.category_course_desc {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	width: 100%;
	padding: 30px;
	gap: 15px;
}
.category_course_desc_title {
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2;
}
.category_course_desc_text {
	font-size: 14px;
}
.category_course_action {
	width: 100%;
	max-width: 235px;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	text-align: center;
}
.category_course_action:before {
	content: '';
	background: rgba(17, 36, 48, 0.4);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}
.category_course_action:after {
	content: '';
	background: linear-gradient(270deg, rgba(0, 41, 66, 0) 50%, #002942 100%);
	height: 100%;
	width: 100px;
	position: absolute;
	left: 0;
	z-index: 1;
}
.category_course_action img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.category_course_action_text {
	position: absolute;
	padding: 20px;
	z-index: 2;
}
.btn_mobile {
	display: none;
}
/* Category Courses The End */

/* Trial Lesson */
.trial_lesson {
	background-color: #002942;
	background-image: url('../images/trial_lesson_v.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 115px;
	border-radius: 30px;
	height: 235px;
	display: flex;
	align-items: center;
	gap: 50px;
	padding: 50px 75px 50px 350px;
}
.trial_lesson_text {
	color: #ccd4d9;
}
.trial_lesson_text h3 {
	color: #fff;
}
.trial_lesson_text p {
	padding-bottom: 0;
}
.trial_lesson_btn {
	border: 1px solid #00b6e4;
	flex-shrink: 0;
}
/* Trial Lesson The End */

/* Main Partners */
.main_partners {
	text-align: center;
}
.main_partners_text {
	color: #636363;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}
.main_partners_images_wrapper {
	position: relative;
}
.main_partners_images {
	padding: 0 50px;
}
.main_partners_images .slick-track:before, .reviews .slick-track:after {
	content: none;
}
.main_partners_images .slick-slide {
	height: auto;
	padding: 0 10px;
}
.main_partners_images .slick-slide > div {
	height: 100%;
}
.main_partners_images_item {
	flex-direction: column;
	/*max-height: 255px;
	overflow: hidden;*/
}
.partner_logo {
	/*width: 100%;
	height: 75px;
	padding-bottom: 20px;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;*/
}
.partner_logo img {
	/*width: auto;
	max-width: 140px;
	max-height: 75px;*/
}
.partner_name {
	/*font-size: 14px;
	text-align: center;
	color: #636363;*/
}
.mp_left, .mp_right {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f3f3;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
	transition: background 0.5s;
}
.mp_left {
	left: 0;
}
.mp_right {
	right: 0;
}
.mp_left path, .mp_right path {
	fill: #000;
	transition: fill 0.5s;
}
.mp_left:hover, .mp_right:hover {
	background: #00b6e4;
}
.mp_left:hover path, .mp_right:hover path {
	fill: #fff;
}
/* Main Partners The End */

/* Services */
.services {
	display: flex;
	gap: 20px;
}
.services_item {
	width: 50%;
	display: flex;
	flex-direction: column;
}
.services_img {
	width: 100%;
	padding-bottom: 35px;
}
.services_img img {
	width: 100%;
	border-radius: 30px;
}
.services_item h3 {
	padding-bottom: 5px;
}
.services_text {
	color: #808080;
	padding-bottom: 30px;
}
.services_price_title {
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 20px;
}
.services_price .services_price_title {
	padding-bottom: 0;
}
.services_price {
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;
}
.services_price_item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 10px;
	padding: 16px;
	background: #f3f3f3;
	gap: 10px;
}
.services_price_item:nth-child(even) {
	background: #fff;
}
.services_price_item:last-child {
	position: relative;
}
.services_price_item:last-child:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0.75;
}
.page_service_price .services_price_item:last-child:before {
	content: none;
}
.page_service_price .services_price_th {
	background: #f3f3f3;
	font-weight: 600;
}
.sp_duration {
	text-align: right;
	width: 100%;
	max-width: 100px;
}
.page_service_price .sp_duration {
	max-width: 250px;
}
.sp_cost {
	margin-left: auto;
	width: 100%;
	max-width: 100px;
	text-align: center;
}
.page_service_price .sp_cost {
	max-width: 250px;
}
.services_price_deposites .sp_cost {
	max-width: 40%;
}
.services_btn_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 0 15px 15px 0;
	padding: 12px 15px 12px 10px;
}
.services_link a, .services_btn {
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	font-size: 14px;
	border-radius: 60px;
	cursor: pointer;
	transition: color 0.5s, background 0.5s;
}
.services_link a {
	background: #002942;
}
.services_link a:hover {
	background: #00b6e4;
}
.services_link img, .services_link svg {
	height: 15px;
	margin-right: 10px;
}
.services_btn {
	background: #00b6e4;
}
.services_btn:hover {
	background: #002942;
}
/* Services The End */

/* Own Cosmetics */
.section_cosmetics {
	position: relative;
	background: url('../images/cosmetics_bg.jpg') no-repeat 50% 50%;
	background-size: cover;
}
.own_cosmetics {
	display: flex;
	position: relative;
	padding: 150px 0;
	color: #fff;
	gap: 60px;
}
.own_cosmetics_text_wrapper, .own_cosmetics_product {
	width: 50%;
}
.own_cosmetics_text_wrapper h2 {
	color: #fff;
}
.cosmetics_logo {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	transform: translate(0, -50%);
}
.own_cosmetics_text {
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
}
.own_cosmetics_product {
	display: flex;
	justify-content: end;
}
.own_cosmetics_item {
	width: 100%;
	max-width: 407px;
	position: relative;
	flex-direction: column;
	border-radius: 40px;
	overflow: hidden;
}
.own_cosmetics_image {
	position: relative;
}
.own_cosmetics_image img {
	width: 100%;
}
.own_cosmetics_image:before {
	content: '';
	background: linear-gradient(180deg, rgba(0, 41, 66, 0) 53%, #002942 100%);
	width: 100%;
	height: 170px;
	position: absolute;
	bottom: 0;
}
.own_cosmetics_info {
	background: linear-gradient(160deg, #012b44 50%, #014563 100%);
	padding: 30px;
	color: #fff;
}
.own_cosmetics_name {
	font-weight: 600;
	font-size: 22px;
	padding-bottom: 15px;
}
.own_cosmetics_price {
	display: flex;
	font-weight: 700;
	font-size: 22px;
	color: #f81155;
}
.own_cosmetics_old_price {
	color: #6c6d71;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	margin: 0 10px;
}
.own_cosmetics_old_price:before {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	transform: rotate(-2deg);
	position: absolute;
	background: #f81155;
}
.own_cosmetics_btn {
	padding: 0;
	overflow: hidden;
}
.own_cosmetics_btn a {
	text-decoration: none;
	border: 1px solid #00b6e4;
}

.oil_images {
	display: flex;
	gap: 20px;
}
.oil_images_item {
	width: 25%;
}
.oil_images_item img {
	width: 100%;
	border-radius: 10px;
}
.oil_images_single {
	width: 100%;
	max-width: 400px;
}
.oil_images_single img {
	width: 100%;
}
/* Own Cosmetics The End */

/* Breadcrumbs */
.breadcrumbs_wrapper {
	background: #f1f1f1;
	padding: 20px 0;
}
.breadcrumbs_inner {
	display: flex;
}
.breadcrumbs {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	/*margin-left: auto;*/
	font-weight: 300;
	font-size: 14px;
	color: #000;
}
.breadcrumbs li {
	margin-right: 10px;
	display: flex;
}
.breadcrumbs li:last-child {
	margin-right: 0;
}
.breadcrumbs li:after {
	content: '/';
	margin-left: 10px;
}
.breadcrumbs li:last-child:after {
	content: none;
}
.breadcrumbs a {
	text-decoration: none;
	color: #000;
}
/* Breadcrumbs The End */

/* Page Content */
.section_content_wrapper {
	padding-top: 90px;
}
.section_course_img {
	padding-bottom: 75px;
}
.section_course_duration {
	width: 100%;
	display: flex;
	gap: 30px;
	padding-bottom: 35px;
}
.course_duration_item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.course_duration_img {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #002942;
}
.course_duration_item:first-child .course_duration_img {
	background: #00B6E4;
}
.course_duration_img img {
	width: 19px;
	height: auto;
	vertical-align: middle;
}
.course_duration_info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.course_duration_title {
	font-weight: 600;
	font-size: 17px;
	line-height: 1.2;
}
.course_duration_text {
	font-size: 14px;
}
.course_image_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.course_image {
	width: 62%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.course_image img {
	width: 100%;
	vertical-align: middle;
	border-radius: 50px;
}
.course_free {
	width: calc(100% - 62% - 20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #002942;
	color: #fff;
	border-radius: 50px;
	padding: 60px 30px;
}
.course_free_label {
	font-size: 12px;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}
.course_free_title {
	font-weight: 600;
	font-size: 25px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	padding-top: 25px;
	text-align: center;
}
.course_free_text {
	color: rgba(255, 255, 255, 0.7);
	padding-top: 15px;
	text-align: center;
	line-height: 1.35;
}
.course_free_btn {
	margin-top: 35px;
}
.section_after_learning {
	padding-bottom: 65px;
}
.after_learning {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.after_learning_item {
	width: calc(100% / 3 - 30px);
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}
.al_num {
	color: #00b6e4;
	margin-bottom: 15px;
}
.al_label {
	font-weight: 600;
	font-size: 21px;
	margin-bottom: 10px;
}
.al_text {
	color: #636363;
}
.section_gallery {
	text-align: center;
	padding-bottom: 80px;
}
.gallery {
	display: flex;
	gap: 20px;
}
.gallery_item {
	width: 25%;
	border-radius: 30px;
	overflow: hidden;
}
.gallery_item img {
	width: 100%;
	vertical-align: middle;
}
.section_course_include {
	padding-bottom: 55px;
}
.section_course_include h2 {
	padding-bottom: 25px;
}
.course_include {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.course_include_label {
	border: 1px solid #c4c4c4;
	margin-bottom: 10px;
	padding: 12px 27px;
	border-radius: 60px;
	color: #636363;
	cursor: pointer;
}
.course_include_label img, .course_include_label svg {
	vertical-align: middle;
	margin-left: 10px;
}
.course_include_text {
	display: none;
	padding: 50px;
	border-radius: 30px;
	max-width: 465px;
	position: relative;
	overflow: visible;
}
.course_include_text h3 {
	font-size: 24px;
}
.course_include_text p {
	color: #4c4c4c;
}
.course_include_text .fancybox-close-small, .popup_form .fancybox-close-small {
	width: 40px;
	height: 40px;
	background: #fff;
	opacity: 1;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: -55px;
	transform: translate(-50%, 0);
}
.section_course_program {
	padding-bottom: 60px;
}
.course_pretitle {
	font-size: 17px;
	color: #636363;
	padding-bottom: 10px;
}
.course_program {
	list-style: none;
	counter-reset: num;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	column-gap: 20px;
	padding-bottom: 25px;
}
ul.course_program {
	counter-reset: none;
}
.course_program > li {
	border-radius: 15px;
	padding: 16px 18px;
}
.course_program > li:before {
	content: counter(num) '.';
	counter-increment: num;
	margin-right: 5px;
}
ul.course_program > li:before {
	content: '-';
	counter-increment: none;
}
.course_program > li::marker {

}
.course_program > li:nth-child(2n-1) {
	background: #f3f3f3;
}
.course_program > span {
	padding: 16px 18px;
	display: block;
}
.course_program ul, .course_program ol, .course_program > li.no-break {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	break-inside: avoid-column;
}
.course_program ul, .course_program ol {
	margin-left: 18px;
	margin-top: 15px;
}
.course_program ul li::marker {
	content: '- ';
}
.course_program > li span {
	display: block;
	padding: 15px 0;
}
.course_program_list h2, .course_program_list h3 {
	padding-top: 30px;
	padding-bottom: 25px;
}
.section_course_format {

}
.section_course_format h2 {
	padding-bottom: 15px;
}
.course_format {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	padding-top: 30px;
}
.course_format_item {
	width: calc(100% / 3 - 15px);
	display: flex;
	flex-direction: column;
	background: #f7f7f7;
	border-radius: 30px;
	padding: 40px;
}
.course_format_item:nth-child(even) {
	background: #fff;
}
.course_format_item.course_format_theory, .course_format_item:first-child {
	background: #002942;
}
.course_format_img {
	width: 50px;
	margin-bottom: 13px;
}
.course_format_img img, .course_format_img svg {
	width: 100%;
	vertical-align: middle;
}
.course_format_name {
	font-weight: 600;
	font-size: 21px;
	margin-bottom: 10px;
}
.course_format_theory .course_format_name, .course_format_item:first-child .course_format_name {
	color: #fff;
}
.course_format_text {
	color: #4a4a4a;
}
.course_format_theory .course_format_text, .course_format_item:first-child .course_format_text {
	color: #a6b2b9;
}
.section_course_price {
	padding-bottom: 65px;
}
.section_course_price h2 {
	text-align: center;
}
.course_price_wrapper {
	display: flex;
	gap: 20px;
}
.price_img_wrapper {
	width: 70%;
	display: flex;
	align-items: start;
	background: #f3f3f3;
	padding: 30px;
	border-radius: 50px;
	gap: 50px;
}
.course_price_img {
	border-radius: 30px;
	max-width: 340px;
	overflow: hidden;
	position: relative;
}
.course_price_img img {
	width: 100%;
	vertical-align: middle;
	border-radius: 30px;
}
.course_price_img_label {
	position: absolute;
	top: 15px;
	right: 15px;
	border-radius: 60px;
	padding: 5px 12px;
	background: #fff;
	font-size: 14px;
	color: #000;
}
.course_price_text {
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: center;
}
.course_price_name {
	font-weight: 600;
	font-size: 27px;
	line-height: 1.1;
}
.course_price_text_list {
	color: #353535;
	margin-left: 17px;
}
.course_price_text_list li {
	position: relative;
	padding-bottom: 10px;
}
.course_price_text_list li::marker {
	color: #00b6e4;
}
.course_price_info {
	width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f3f3f3;
	border-radius: 50px;
	padding: 40px;
}
.course_price_title {
	color: #353535;
	padding-bottom: 5px;
	padding-top: 15px;
}
.course_price {
	/*font-weight: 600;
	font-size: 35px;*/
	text-align: center;
	font-weight: 400;
	font-size: 20px;
	line-height: 1;
	/*padding-bottom: 40px;*/
	padding-top: 10px;
}
.course_price span {
	display: flex;
	padding-top: 5px;
	font-size: 16px;
	color: #353535;
}
.course_price_full {
	display: flex;
	padding-top: 15px;
	text-align: center;
	font-size: 16px;
	color: #353535;
	padding-bottom: 30px;
}
.course_price_null {
	font-weight: 600;
	font-size: 35px;
	line-height: 1;
	padding-bottom: 40px;
}
.course_price_duration {
	font-weight: 600;
	color: #353535;
	padding-top: 15px;
}
.section_instructors .course_pretitle {
	max-width: 660px;
	padding-bottom: 45px;
}
.instructors_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.instructors_slider {
	display: flex;
	gap: 20px;
	width: 75%;
}
.instructors_item {
	width: calc(25% - 15px);
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f3f3f3;
	border-radius: 40px;
	padding: 15px;
}
.instructor_image {
	width: 100%;
	height: 260px;
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	background: #fff;
	transition: background 0.5s;
}
.instructors_item:hover .instructor_image {
	background: #002942;
}
.main_instructor .instructor_image {
	background: #002942;
}
.main_instructor:hover .instructor_image {
	background: #fff;
}
.instructor_image a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: end;
}
.instructor_image img {
	vertical-align: middle;
}
.instructor_image_zoom_icon {
	position: absolute;
	top: 10px;
	right: 10px;
}
.instructor_image_zoom_icon svg rect {
	fill: #00b6e4;
	transition: fill 0.5s;
}
.instructor_image_zoom_icon svg path {
	fill: #fff;
	transition: fill 0.5s;
}
.instructors_item:hover .instructor_image_zoom_icon svg rect {
	fill: #fff;
}
.instructors_item:hover .instructor_image_zoom_icon svg path {
	fill: #000;
}
.main_instructor .instructor_image_zoom_icon svg rect {
	fill: #fff;
}
.main_instructor .instructor_image_zoom_icon svg path {
	fill: #000;
}
.main_instructor:hover .instructor_image_zoom_icon svg rect {
	fill: #00b6e4;
}
.main_instructor:hover .instructor_image_zoom_icon svg path {
	fill: #fff;
}
.instructor_name {
	font-weight: 600;
	font-size: 20px;
	color: #000;
	padding-top: 30px;
	text-align: center;
}
.instructor_name a {
	color: #000;
	text-decoration: none;
}
.instructor_post {
	font-size: 15px;
	text-align: center;
	color: #636363;
	padding-top: 7px;
}
.instructor_exp {
	color: #636363;
	padding-top: 15px;
	padding-bottom: 15px;
}
.instructor_exp strong {
	color: #000;
}
.all_instructors_inner {
	width: 100%;
	height: 260px;
	padding: 15px;
	border-radius: 25px;
	background: #00b6e4;
	overflow: hidden;
}
.all_instructors_inner a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	text-decoration: none;
}
.all_instructors_inner svg {
	flex-shrink: 0;
}
/* Page Content The End */

/* Section Form */
.form_begin_learn {
	color: #fff;
	background: #002942;
	border-radius: 50px;
}
.begin_learn_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	padding: 65px 110px 90px;
}
.begin_learn_inner h2 {
	color: #fff;
}
.form_text {
	font-size: 17px;
	text-align: center;
	max-width: 475px;
}
.box_field_row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	align-self: stretch;
	position: relative;
}
.box_field {
	display: flex;
	align-items: center;
	gap: 0;
	flex: 1 0 0;
}
.box_field input {
	padding: 20px;
	border-radius: 12px;
	background: #fff;
	font-size: 16px;
	border: 0;
	color: #8e8e8e;
	width: 100%;
}
.feedback_last_input {
	display: none;
}
.feedback_last_input input[name="feedback_city"] {
	display: block;
	width: 2px;
	height: 3px;
	margin-bottom: -3px;
	opacity: 0.01;
}
.box_field_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.ajax_form .error_g-recaptcha-response {
	position: absolute;
	bottom: -30px;
}
.sec_mes_wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.form .af-message-success {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: auto;
	height: auto;
	font-size: 35px;
	text-align: center;
	margin: 20px;
	padding: 0;
	border-radius: 10px;
	z-index: 999;
	opacity: 0.95;
	background-color: #002942 !important;
	color: #fff;
}
.suc_mes_info {
	font-size: 20px;
	margin-top: 25px;
}
.suc_mes_info span {
	display: block;
	font-size: 30px;
	margin-top: 10px;
}
.form .af-message-error {
	background-color: brown !important;
	color: #fff;
	width: 100%;
	margin: 10px 0;
}
.form .af-message-info {
	background-color: #001e30 !important;
	color: #fff;
}
.form.ajax_form .error {
	color: brown;
}
/* Section Form The End */

/* Popup Form */
.popup_form {
	display: none;
	padding: 50px;
	border-radius: 30px;
	width: 100%;
	max-width: 500px;
	position: relative;
	overflow: visible;
}
.popup_form .box_field_row {
	flex-direction: column;
	align-items: center;
}
.popup_form .box_field {
	width: 100%;
}
.popup_form .box_field input {
	border: 1px solid #002942;
}
/* Popup Form The End */

/* Education Docs */
.section_education_doc {

}
.education_doc_wrapper {
	display: flex;
	align-items: start;
	gap: 20px;
}
.education_doc_info {
	width: 38%;
}
.section_education_doc h2 {
	color: #fff;
}
.education_doc_img_mob {
	display: none;
}
.education_doc_text {
	font-size: 17px;
	color: #fff;
}
.education_doc_img {
	width: 62%;
	display: flex;
	justify-content: end;
}
.education_doc_img img {
	width: 100%;
	max-width: 660px;
}
.education_doc_img_item img {
	max-height: 310px;
	width: 100%;
}
/* Education Docs The End */

/* Free Education */
.section_free_education {

}
.free_education {
	display: flex;
	align-items: start;
	gap: 60px;
	padding: 30px 0;
}
.free_education_image {
	width: 50%;
	align-self: center;
}
.free_education_image img {
	width: 100%;
}
.free_education_inner {
	width: 50%;
}
.free_education_inner h2 {
	color: #fff;
}
.free_education_text {
	color: #fff;
}
.free_edu_img_mob {
	display: none;
}
.free_edu_list {
	list-style: none;
	padding-bottom: 25px;
}
.free_edu_list span {
	color: #00b6e4;
}
/* Free Education The End */

/* Reviews */
.reviews_top {
	display: flex;
	justify-content: space-between;
}
.reviews_arrow {
	display: flex;
	gap: 10px;
}
.ra_left, .ra_right {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f3f3;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.5s;
}
.ra_left path, .ra_right path {
	fill: #000;
	transition: fill 0.5s;
}
.ra_left:hover, .ra_right:hover {
	background: #00b6e4;
}
.ra_left:hover path, .ra_right:hover path {
	fill: #fff;
}
.reviews {
	margin: 0 -7px;
}
.reviews .slick-track {
	display: flex;
	align-items: stretch;
	gap: 20px;
}
.reviews .slick-track:before, .reviews .slick-track:after {
	content: none;
}
.reviews .slick-slide {
	height: auto;
}
.reviews .slick-slide > div {
	height: 100%;
}
.reviews_item {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #f3f3f3;
	border-radius: 30px;
	padding: 25px 30px 35px;
}
.review_text {
	font-size: 15px;
	color: #494949;
	padding-bottom: 20px;
}
.review_info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-top: auto;
}
.review_author {
	display: flex;
	align-items: center;
	gap: 10px;
}
.review_img {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 600;
	font-size: 15px;
	color: #fff;
}
.pic_blue {
	background: #00b6e4;
}
.pic_pink {
	background: #ed6cc9;
}
.pic_green {
	background: #71c164;
}
.review_name {
	font-weight: 600;
}
.review_date {
	font-size: 13px;
	color: #aaa;
}
.review_rating {
	display: flex;
	gap: 3px;
	padding-top: 10px;
}
.reviews_more {
	display: flex;
	align-items: center;
	gap: 40px;
}
.reviews_logo {
	display: flex;
	align-items: center;
	gap: 30px;
}
.reviews_logo_item img {
	max-width: 80px;
	max-height: 50px;
}
.reviews_btn {
	margin-left: auto;
	display: inline-flex;
	border-radius: 60px;
}
.reviews_btn a {
	color: #fff;
	padding: 18px 40px;
	text-decoration: none;
}
/* Reviews The End */

/* Free Bonus */
.free_bonus_wrapper {
	display: flex;
	align-items: center;
	gap: 55px;
	background: #f3f3f3;
	border-radius: 50px;
	padding: 50px 70px;
}
.free_bonus_gallery {
	display: flex;
	gap: 10px;
}
.bonus_gallery_thumb {
	margin-top: -5px;
	width: 70px;
}
.bonus_gallery_thumb.slick-vertical .slick-slide {
	border: 0;
	padding: 5px 0;
}
.bg_thumb_item {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.bg_thumb_item:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.slick-current + .slick-active .bg_thumb_item:before {
	background: #fff;
	opacity: 0.4;
}
.slick-current + .slick-active + .slick-active .bg_thumb_item:before {
	background: #fff;
	opacity: 0.6;
}
.slick-current + .slick-active + .slick-active + .slick-active .bg_thumb_item:before {
	background: #fff;
	opacity: 0.8;
}
.bonus_gallery {
	width: 325px;
}
.bg_item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}
.bg_play_btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.free_bonus_text {
	color: #636363;
	padding-bottom: 30px;
}
/* Free Bonus */

/* About School */
.section_about_school {
	background: url('../images/about_school_text.svg') no-repeat 50% 50%, #fff;
	background-size: contain;
}
.about_school_wrapper {
	display: flex;
	align-items: start;
	gap: 50px;
}
.about_school, .about_school_video_wrapper {
	width: 50%;
}
.about_school_text {
	color: #636363;
	padding-bottom: 40px;
}
.about_school_btn a {
	text-decoration: none;
}
.about_school_video_wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.about_school_video {
	width: 100%;
	position: relative;
}
.about_school_video_btn {
	align-content: end;
	padding-bottom: 25px;
	position: absolute;
}
.about_school_video img {
	width: 100%;
	border-radius: 30px;
}
.about_school_video_btn a {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #fff;
	text-decoration: none;
	transition: color .5s;
}
.about_school_video_btn:hover a {
	color: #00b6e4;
}
.main_about_school {
	/*border-radius: 30px 30px 0 0;
	position: relative;*/
}
/* About School The End */

/* License */
.license_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 50px;
}
.license_info {
	width: 100%;
	max-width: 360px;
}
.license_text {
	color: #636363;
}
.license_images {
	display: flex;
	justify-content: end;
	gap: 20px;
}
.license_images_item {
	max-height: 255px;
	/*border-radius: 20px;*/
	overflow: hidden;
}
.license_images_item img {
	width: 100%;
}

.docs_page .license_info {
	max-width: 100%;
}
.docs_page .license_images {
	flex-wrap: wrap;
	justify-content: start;
}
.docs_page .license_images_item {
	width: calc(100% / 6 - 20px);
}
/* License The End */

/* Timetable */
.timetable_tabs {
	list-style: none;
	display: flex;
	gap: 10px;
}
.timetable {
	display: none;
}
.timetable.is-active {
	display: block;
}
.timetable_tabs li {
	font-size: 14px;
	padding: 8px 21px;
	background: #f2f2f2;
	border-radius: 50px;
	cursor: pointer;
	transition: color 0.5s, background 0.5s;
}
.timetable_tabs li.is-active {
	background: #002942;
	color: #fff;
}
.timetable_row {
	display: flex;
	width: 100%;
	padding-bottom: 10px;
}
.timetable_row:last-child {
	padding-bottom: 0;
}
.timetable_instructor, .timetable_date, .timetable_course, .timetable_btn {
	background: #fbfbfb;
}
.timetable_row:nth-child(2n) .timetable_instructor,
.timetable_row:nth-child(2n) .timetable_date,
.timetable_row:nth-child(2n) .timetable_course,
.timetable_row:nth-child(2n) .timetable_btn {
	background: #f3f3f3;
}
.timetable_header > div {
	font-weight: 600;
	font-size: 17px;
	padding: 0;
	background: none;
}
.timetable_instructor {
	display: flex;
	align-items: center;
	gap: 15px;
	border-radius: 15px;
	padding: 12px 15px 12px 18px;
	width: 100%;
	max-width: 295px;
}
.timetable_instructor_img {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: start;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	background: #00b6e4;
	overflow: hidden;
}
.timetable_instructor_img img {
	width: 100%;
}
.timetable_instructor_name a {
	color: #000;
	text-decoration: none;
}
.timetable_date {
	border-radius: 15px;
	padding: 12px 15px;
	align-content: center;
	margin: 0 10px;
	width: 100%;
	max-width: 160px;
}
.timetable_course {
	border-radius: 15px 0 0 15px;
	padding: 12px 15px;
	align-content: center;
	flex: 1 0 0;
}
.timetable_course a {
	color: #000;
	text-decoration: none;
}
.timetable_btn {
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 0 15px 15px 0;
	padding: 12px 15px 12px 10px;
}
.timetable_btn_item a, .btn_form {
	color: #000;
	text-decoration: none;
	padding: 10px 20px;
	font-size: 14px;
	border-radius: 60px;
	cursor: pointer;
	background: #e4e4e4;
	transition: color 0.5s, background 0.5s;
}
.timetable_btn_item:hover a, .btn_form:hover {
	color: #fff;
}
.timetable_btn_item:nth-child(1):hover a {
	background: #002942;
}
.timetable_btn_item.btn_form:hover {
	background: #00b6e4;
}
.timetable_more_btn {
	text-align: center;
}
.timetable_more_btn a {
	text-decoration: none;
}
.timetable_more_btn img, .timetable_more_btn svg {
	margin-left: 10px;
}
/* Timetable The End */

/* Discount */
.discount_wrapper {
	padding: 100px 80px;
	border-radius: 50px;
	background: #002942 url('../images/sale20.svg') no-repeat 0 0;
}
.discount {
	padding-left: 30%;
}
.discount h2 {
	color: #fff;
}
.discount h2 span {
	color: #00b6e4;
}
.discount_info {
	display: flex;
	align-items: start;
	gap: 40px;
}
.discount_text {
	font-size: 17px;
	color: #fff;
}
.discount_btn {
	flex: 0 0 auto;
}
/* Discount The End */

/* Other Courses */
.other_courses {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.other_courses .slick-track {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.other_courses .slick-track:before, .other_courses .slick-track:after {
	content: none;
}
.other_courses_item {
	display: flex;
	flex-direction: column;
	width: 33%;
}
.other_course_image {
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}
.other_course_image a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.other_course_image a:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #000;
	position: absolute;
	opacity: 0.07;
}
.other_course_image img {
	width: 100%;
}
.oc_label_wrapper {
	display: flex;
	gap: 5px;
	position: absolute;
	top: 15px;
	right: 15px;
}
.oc_label_dur {
	border: 1px solid #fff;
	border-radius: 60px;
	padding: 5px 12px;
	color: #fff;
	font-size: 13px;
}
.oc_label_vol {
	border: 1px solid #fff;
	border-radius: 60px;
	padding: 5px 12px;
	color: #000;
	background: #fff;
	font-size: 13px;
}
.other_course_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 35px;
}
.other_course_name {
	font-weight: 600;
	font-size: 21px;
	color: #000;
}
.other_course_name a {
	color: #000;
	text-decoration: none;
}
.other_course_text {
	color: #4d4d4d;
}
.other_course_price {
	font-weight: 600;
	font-size: 19px;
}
.other_courses_btn {
	text-align: center;
}
.other_courses_btn a {
	text-decoration: none;
}
.other_courses_btn img, .other_courses_btn svg {
	margin-left: 10px;
	transform: rotate(270deg);
}
/* Other Courses The End */

/* Excursion */
.excursion_wrapper {
	display: flex;
	gap: 20px;
}
.excursion_image {
	width: 100%;
	max-width: 425px;
	border-radius: 50px;
	overflow: hidden;
}
.excursion_image img {
	width: 100%;
}
.excursion {
	padding: 40px 50px 50px;
	border-radius: 50px;
	background: #f3f3f3;
}
.excursion_text {
	color: #636363;
	padding-bottom: 25px;
}
.excursion_btn_wrapper {
	display: flex;
	gap: 15px;
}
/* Excursion The End */

/* Page Content */
.page_content {
	font-size: 17px;
	color: #636363;
}
.page_content ol, .page_content ul {
	padding-left: 20px;
	padding-bottom: 15px;
}
.page_content h2 {
	padding-top: 30px;
}
.page_content img {
	max-width: 100%;
}

.content_text_hidden {
	display: none;
}
/* Page Content The End */

/* Instructor Page */
.instructor_full {
	display: flex;
	gap: 50px;
}
.instructor_full_image {
	width: 33%;
	max-width: 360px;
	height: 100%;
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	background: #002942;
}
.instructor_full_image img {
	width: 100%;
}
/* Instructor Page The End */

/* News Page */
.news_content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.news_wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 50px;
}
.news_item {
	width: calc(100% / 2 - 15px);
	position: relative;
	overflow: hidden;
}
.news_item_img {
	width: 100%;
}
.news_item_img img {
	width: 100%;
	border-radius: 20px;
}
.news_item_name {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: #000;
	padding-top: 20px;
	padding-bottom: 30px;
}
.news_item_name a {
	color: #000;
	text-decoration: none;
}
/* News Page The End */

/* Gallery Page */
.photo_gallery_content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.photo_gallery_wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 50px;
}
.photo_gallery_item {
	width: calc(100% / 4 - 15px);
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.photo_gallery_img {
	width: 100%;
}
.photo_gallery_img img {
	width: 100%;
}
.photo_gallery_img:before {
	content: '';
	background: rgba(17, 36, 48, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
}
.photo_gallery_info {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 30px;
	display: flex;
	flex-direction: column;
}
.photo_gallery_bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	transform: translate(0, 85px);
	transition: transform 0.5s;
}
.photo_gallery_item:hover .photo_gallery_bottom {
	transform: translate(0, 0);
}
.photo_gallery_name {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: #fff;
	padding-bottom: 30px;
}
.photo_gallery_name a {
	color: #fff;
	text-decoration: none;
}
.photo_gallery_item .btn {
	padding: 0;
	overflow: hidden;
	transition: background 0.5s;
}
.photo_gallery_item .btn:hover {
	background: #002942;
}
.photo_gallery_item .btn a {
	padding: 15px;
	width: 100%;
	text-align: center;
}

.gallery_2 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 50px;
}
.gallery_2_item {
	width: calc(100% / 2 - 15px);
	position: relative;
	overflow: hidden;
}
.gallery_2_item img, .gallery_2_item iframe, .gallery_2_item video {
	width: 100%;
}
.gallery_3_item {
	width: calc(100% / 3 - 15px);
	position: relative;
	overflow: hidden;
}
.gallery_3_item iframe, .gallery_3_item video {
	max-height: 250px;
}
/* Gallery Page */

/* Franchise Page */
.section_franchise {
	display: flex;
	gap: 20px;
}
.franchise_info {
	width: 65%;
	position: relative;
	background: url('../images/franchise_bg.jpg') no-repeat 50% 50%;
	background-size: cover;
	padding: 30px 30px;
	color: #002942;
	border-radius: 10px;
}
.franchise_info h1 {
	color: #002942;
}
.franchise_text {
	width: 80%;
	padding-bottom: 20px;
}
.franchise_partner {
	display: flex;
	align-items: center;
	gap: 10px;
}
.franchise_partner img, .franchise_partner svg {
	width: 20px;
}
.franchise_contacts {
	display: flex;
	flex-direction: column;
	position: absolute;
	background: #fff;
	border-radius: 5px;
	margin-top: 20px;
	padding: 10px;
	color: #002942;
}
.franchise_contacts a {
	color: #002942;
	text-decoration: none;
	transition: color .5s;
}
.franchise_contacts a:hover {
	color: #00b6e4;
}
.franchise_map {
	width: 90%;
	padding-top: 20px;
}
.franchise_map img {
	width: 100%;
}
.franchise_cities {
	width: 35%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.franchise_cities h1 {
	display: none;
}
.franchise_cities_item {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background: #002942;
	border-radius: 10px;
}
.franchise_cities_info {
	width: 60%;
	display: flex;
	flex-direction: column;
	color: #fff;
	padding: 10px;
}
.franchise_cities_name {
	font-size: 22px;
}
.franchise_cities_desk {
	font-size: 12px;
	font-weight: 300;
}
.franchise_cities_btn {
	margin-top: 25px;
}
.franchise_cities_btn a {
	font-size: 14px;
	padding: 10px 30px;
}
.franchise_cities_image {
	width: 40%;
	position: relative;
}
.franchise_cities_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 10px 10px 0;
}
.franchise_cities_image:before {
	content: '';
	background: linear-gradient(270deg, rgba(0, 41, 66, 0) 50%, #002942 100%);
	height: 100%;
	width: 100px;
	position: absolute;
	left: 0;
	z-index: 1;
}
/* Franchise Page The End */

/* Partners */
.partners_wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.partners_item {
	display: flex;
	align-items: start;
	background: #f3f3f3;
	padding: 30px;
	border-radius: 50px;
	gap: 50px;
}
.partner_image {
	border-radius: 30px;
	width: 100%;
	max-width: 340px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}
.partner_image img, .partner_image svg {
	width: 100%;
	vertical-align: middle;
	border-radius: 30px;
}
.partner_info {
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: center;
}
.partner_name {
	font-weight: 600;
	font-size: 27px;
	line-height: 1.1;
	color: #000;
}
.partner_text {
	color: #353535;
}
/* Partners The End */

/* Docs/License */
.docs_page_section {
	background: #002942;
	color: #fff;
	padding: 50px 0 150px;
}
.docs_page_section h1, .docs_page_section h2, .docs_page_section h3 {
	color: #fff;
}
.docs_page_top_text {
	width: 50%;
}
.docs_page_gallery {
	width: 100%;
	margin-top: 80px;
	display: flex;
	gap: 20px;
}
.docs_page_gallery_item {
	width: calc(100% / 6);
}
.docs_page_gallery_item.double_size_docs {
	width: calc((100% / 6) * 2);
}
.docs_page_gallery_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}
/* Docs/License The End */

/* Online School */
.section_online_school {
	background: url('../images/online_school_text.svg') no-repeat 50% 50%, #fff;
	background-size: contain;
}
.online_school {
	display: flex;
	align-items: center;
	gap: 60px;
}
.online_school_image {
	width: 50%;
}
.online_school_image img {
	width: 100%;
}
.online_school_inner {
	width: 50%;
}
.online_school_label {
	font-weight: 800;
	font-size: 96px;
	color: #ff6d00;
	line-height: 1;
}
.online_school_text {
	color: #636363;
}
.online_school_btn_mob {
	display: none;
}
/* Online School The End */

/* Telegram */
.telegram {
	display: flex;
	padding: 0;
	background: #002942;
	border-radius: 20px;
	color: #fff;
}
.telegram_image_1 {
	width: 20%;
	align-content: end;
	padding-left: 50px;
}
.telegram_image_1 img {
	width: 100%;
}
.telegram h2 {
	color: #fff;
}
.telegram_inner {
	width: 45%;
	display: flex;
	flex-direction: column;
	align-items: start;
	align-content: start;
	gap: 0;
	padding: 20px 0 20px 40px;
}
.telegram_info_top img, .telegram_info_top svg {
	width: 30px;
	margin-left: 10px;
}
.telegram_text {
	font-size: 14px;
}
.telegram_btn, .telegram_btn.btn {
	text-decoration: none;
	padding: 10px 30px;
	margin-top: 20px;
}
.telegram_btn img, .telegram_btn svg {
	width: 20px;
	margin-left: 10px;
}
.telegram_image_2 {
	position: relative;
	width: 35%;
	background: url('../images/telegram_bg.png') no-repeat 100% 50%;
	background-size: cover;
	align-content: center;
	text-align: center;
	padding-right: 50px;
	border-radius: 0 20px 20px 0;
}
.telegram_image_2 img {
	width: 70%;
	position: relative;
}
.telegram_image_2:before {
	content: '';
	background: linear-gradient(270deg, rgba(0, 41, 66, 0) 50%, #002942 100%);
	height: 100%;
	width: 50%;
	position: absolute;
	left: 0;
	top: 0;
}
/* Telegram The End */

/* Footer */
footer {
	background: #002942;
	color: #fff;
}
.footer {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: start;
	padding: 40px 0;
}
.footer_license {
	padding-top: 20px;
}
.footer_license_item {
	color: #b2bfc6;
	font-weight: 300;
	font-size: 14px;
	padding-bottom: 10px;
}
.footer_menu_wrapper {
	display: flex;
	align-items: start;
	gap: 50px;
	padding-top: 35px;
}
.footer_menu {
	list-style: none;
	font-size: 15px;
	color: #fff;
}
.footer_menu li {
	padding-bottom: 7px;
}
.footer_menu li a {
	color: #fff;
	text-decoration: none;
}
.footer_contacts {
	display: flex;
	align-items: start;
	gap: 20px;
	padding-top: 35px;
}
.footer_contacts_left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.footer_contacts_right {
	display: flex;
	flex-direction: column;
}
/* Footer The End */

/* Copyright */
.section_copyright {
	padding: 13px 0;
	background: #001e30;
}
.copyright_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.copyright_text {
	display: flex;
	font-weight: 300;
	font-size: 12px;
	color: #b2bfc6;
}
.copyright_text a {
	color: #b2bfc6;
	text-decoration: none;
}
.privacy_policy {
	margin-left: 40px;
}
/* Copyright The End */

/* Scroll to top */
#up {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 15px;
	bottom: 100px;
	z-index: 100;
	width: 50px;
	height: 50px;
	background: #ececec;
	transition: all .5s;
	transform: translate3d(0,150px,0);
	cursor: pointer;
	border-radius: 50%;
}
#up.active {
	transform: translate3d(0,0,0);
}
#up:hover {
	background-color: #00b6e4;
	color: #fff;
}
#up svg {
	height: 18px;
	width: auto;
}
#up svg path {
	fill: #002942;
	transition: fill .5s;
}
#up:hover svg path {
	fill: #fff;
}
/* Scroll to top The End */

/* ReCaptcha */
.grecaptcha-badge {
	display: none;
}
/* ReCaptcha The End */

/* Cookie */
.cookie_notice {
	display: none;
	position: fixed;
	z-index: 9;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	padding: 13px 0;
	background: #001e30;
}
.cookie_text a {
	color: #00b6e4;
	text-decoration: none;
}
.cookie_btn {
	padding-top: 25px;
}
/* Cookie The End */



