/*
Theme Name: Pochemuchki
Theme URI: https://wordpress.org/
Description: Тема для Wordpress
Author: Divster
Author URI: https://divster.name/
Version: 100.0
*/

@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Regular'), local('Montserrat-Regular'),
		url('fonts/Montserrat-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Medium'), local('Montserrat-Medium'),
		url('fonts/Montserrat-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
		url('fonts/Montserrat-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Bold'), local('Montserrat-Bold'),
		url('fonts/Montserrat-Bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat Alternates';
	src: local('Montserrat Alternates Regular'), local('MontserratAlternates-Regular'),
		url('fonts/MontserratAlternates-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat Alternates';
	src: local('Montserrat Alternates Medium'), local('MontserratAlternates-Medium'),
		url('fonts/MontserratAlternates-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat Alternates';
	src: local('Montserrat Alternates Bold'), local('MontserratAlternates-Bold'),
		url('fonts/MontserratAlternates-Bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
}

/* Eric Meyer's CSS 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
	list-style-type: none;
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */
*{
	box-sizing: border-box;
}
html {
	height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body{
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.55;
	color: #000;
	height: 100%;
}
body.not-scroll{
	overflow-y: hidden;
	padding-right: 17px;
}
textarea,input[type=text],input[type=email],input[type=password],input[type=search],input[type=tel],input[type=number]{
	font-family: 'Montserrat', sans-serif;
	border: 1px solid #666;
	background: #fff;
	color: #000;
	outline: none;
}
input[type=submit], button{
	margin: 0;
	-webkit-appearance: none;
	font-family: 'Montserrat', sans-serif;
	outline: none;
	cursor: pointer;
}
button::-moz-focus-inner{
	border: 0;
}
.inner {
	min-width: 280px;
	max-width: 1160px;
	margin: 0 auto;
}
:root{
	--color-pink: #f64a63;
}
a {
	color: #000;
	text-decoration: underline;
	outline: none;
}
a:hover {
	text-decoration: none;
}
.slick-slide{
	outline: none !important;
}
img,svg{
	max-width: 100%;
	height: auto;
}
:invalid {
	box-shadow: none;
}
strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
.site-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	position: relative;
}
.site-container{
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}
/* Header
-----------------------------------------------------------------------------*/
.home-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transition: background 0.4s;
	z-index: 10;
}
.home-header.fixed{
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
body.not-scroll .home-header,
body.not-scroll .site-header{
	padding-right: 17px;
}
.admin-bar .home-header,
.admin-bar .site-header{
	top: 32px;
}
.home-header__container {
	width: 1230px;
	max-width: 100%;
	min-width: 320px;
	margin: 0 auto;
	padding: 22px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.home-header__left {
	display: flex;
	align-items: center;
}
.header-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	margin-right: 23px;
}
.header-logo__image {
	width: 60px;
	flex-shrink: 0;
	margin-right: 20px;
}
.header-logo__image svg{
	fill: var(--color-pink);
}
.header-logo__text {
	color: var(--color-pink);
	font-size: 22px;
	font-weight: 700;
}
.home-header__desc {
	color: #383838;
	font-size: 14px;
}
.home-header__right{
	display: flex;
	align-items: center;
}
.header-social {
	display: flex;
	line-height: 0;
	flex-shrink: 0;
}
.header-social a{
	display: block;
	margin-left: 10px;
}
.header-social a svg{
	fill: var(--color-pink);
}
.header-contacts {
	text-align: center;
	margin-left: 75px;
	flex-shrink: 0;
}
.header-contacts__phone {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 2px;
}
.header-contacts__phone a{
	color: var(--color-pink);
	text-decoration: none;
}
.header-contacts__btn a{
	display: inline-block;
	padding: 5px 18px;
	font-size: 10px;
	font-weight: 600;
	border-width: 1px solid var(--color-pink);
	border-radius: 30px;
	background: var(--color-pink);
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.header-contacts__btn a:hover{

}
.touch-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: var(--color-pink);
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
	margin-left: 25px;
}
.touch-menu svg{
	fill: #fff;
}


.top-menu{
	display: flex;
	margin: 0 -20px;
}
.top-menu li{
	width: 100%;
}
.top-menu li a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 7px 10px 6px;
	color: #fff;
	text-decoration: none;
	font-family: 'Montserrat Alternates';
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	transition: background 0.4s;
}
body.not-scroll .site-header{
	padding-right: 17px;
}
.site-header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 0;
	margin: 0 -20px;
}
.site-header__left {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	padding-right: 10px;
}
.site-header .header-logo {
	margin-right: 16px;
}
.site-header .header-logo__image {
	margin-right: 10px;
}
.site-header__right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-grow: 1;
}
.site-header .header-contacts {
	margin-left: 10px;
}
.site-header .touch-menu {
	display: none;
}
.header-home{
	flex-shrink: 0;
}
.header-home a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-pink);
}
.header-home a svg{
	fill: #fff;
}
.header-nav{
	flex-grow: 1;
	border-radius: 100px;
	background-color:  var(--color-pink);
}
.header-nav ul{
	display: flex;
	justify-content: space-around;
}
.header-nav li{
	padding: 0 5px;
}
.header-nav li a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 5px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	position: relative;
	transition: all 0.2s;
}
.header-nav li a:hover{
	transform: translateY(-5px);
}
.header-nav li a:hover:after{
	content: '';
	display: block;
	height: 5px;
	position: absolute;
	left: 0;
	bottom: -5px;
	right: 0;
}





/* Common
-----------------------------------------------------------------------------*/
.button{
	display: inline-block;
	padding: 17px 40px;
	border: 1px solid var(--color-pink);
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	background: var(--color-pink);
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.button:hover{
	background: #fff;
	color: var(--color-pink);
}
.section-title{
	position: relative;
	text-align: center;
	margin-bottom: 25px;
}
.section-title h2{
	font-family: 'Montserrat Alternates';
	font-size: 42px;
	line-height: 1.35;
	font-weight: 700;
}
.section-title i{
	width: 200px;
	display: block;
	line-height: 0;
	margin: 15px auto 0;
}
.section-title i svg{
	fill:#6c80ff;
}
.section-title__container{
	display: inline-flex;
	align-items: center;
}
.section-title__eyes {
	display: flex;
}
.section-title__eyes:first-child{
	margin-right: 88px;
}
.section-title__eyes:last-child{
	margin-left: 88px;
}
.section-title__eye{
	width: 43px;
	height: 43px;
	position: relative;
	margin: 0 2px;
}
.section-title__eye:before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 5px solid #000;
	border-radius: 50%;
	animation: eyeAnim1 2s ease 0s infinite;
}
.section-title__eye:after{
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 8px);
	left: calc(50% - 8px);
	animation: eyeAnim2 2s ease 0s infinite;
}
.section-title__eyes:last-child .section-title__eye:after{
	animation: eyeAnim3 2s ease 0s infinite;
}
@keyframes eyeAnim1{
	from {transform: scaleY(1);}
	50% {transform: scaleY(0.5);}
	to {transform: scaleY(1);}
}
@keyframes eyeAnim2{
	from {transform: translateX(0px);}
	50% {transform: translateX(8px);}
	to {transform: translateX(0px);}
}
@keyframes eyeAnim3{
	from {transform: translateX(0px);}
	50% {transform: translateX(-8px);}
	to {transform: translateX(0px);}
}
.section-desc{
	width: 560px;
	max-width: 100%;
	font-size: 20px;
	text-align: center;
	margin: 0 auto 40px;
}
.page-desc{
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
}
.parallax-up,.parallax-down,.parallax-left,.parallax-right{
	transition: all 0.1s;
}
.video-wrap{
	position: relative;
	padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
	height: 0;
	overflow: hidden;
}
.video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-width: 0;
	outline-width: 0;
}
.post-body{
	font-size: 20px;
}
.post-body h2{
	font-size: 32px;
	margin-bottom: 15px;
}
.post-body h3{
	font-size: 24px;
	margin-bottom: 10px;
}
.post-body p{
	margin-bottom: 31px;
}
.post-body ul{
	list-style: disc inside;
	margin-bottom: 31px;
}
.post-body ol{
	list-style: decimal inside;
	margin-bottom: 31px;
}
/* Middle
-----------------------------------------------------------------------------*/
.section-welcome__container {
	position: relative;
}
.section-welcome__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	line-height: 0;
}
.section-welcome__bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-welcome__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 650px;
	height: 87.44vh;
	padding: 200px 0 100px;
	position: relative;
	margin-left: 60%;
}
.section-welcome__title {
	font-family: 'Montserrat Alternates';
	font-weight: bold;
	color: var(--color-pink);
	font-size: 48px;
	line-height: 1.1;
	margin-bottom: 18px;
}
.section-welcome__text {
	color: #6b6b6b;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 47px;
}
.section-welcome__nav{
	display: flex;
	height: 12.56vh;
}
.section-welcome__nav li{
	width: 100%;
}
.section-welcome__nav li a{
	height: 100%;
	padding: 10px 1vw;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: 'Montserrat Alternates';
	font-weight: 500;
	font-size: 1.35vw;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
}
.section-welcome__nav li a span{
	transition: all 0.2s;
}
.section-welcome__nav li a:hover span{
	transform: scale(1.05);
}
.section-news {
	background: #fafafa;
	padding: 110px 0 100px;
	position: relative;
}
.section-news__decor-1{
	width: 280px;
	height: 203px;
	position: absolute;
	top: 20px;
	right: -110px;
	pointer-events: none;
}
.section-news__decor-2{
	width: 400px;
	height: 290px;
	position: absolute;
	bottom: 320px;
	left: -160px;
	pointer-events: none;
}
.section-news__container {
	display: flex;
	flex-wrap: wrap;
	padding: 7px 0 0;
	margin: 0 -20px;
	position: relative;
}
.section-news__col {
	width: 33.3333333333333%;
	flex-shrink: 0;
	padding: 20px;
}
.post-item {
	display: block;
	height: 100%;
	padding: 36px 31px 114px;
	position: relative;
	text-decoration: none;
	background: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}
.post-item__title {
	font-family: 'Montserrat Alternates';
	font-size: 18px;
	font-weight: 500;
	color: var(--color-pink);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.post-item__text{
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 10px;
}
.post-item__category {
	position: absolute;
	left: 31px;
	right: 31px;
	bottom: 29px;
}
.post-item__category span{
	display: inline-block;
	padding: 12px 32px;
	background-color: #e8e8e8;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
}
.section-news__more{
	width: 100%;
	text-align: center;
	padding: 40px 0 20px;
}
.section-news__more ~ .section-news__col{
	display: none;
}
.section-reviews {
	padding: 113px 0 139px;
	background: var(--color-current-page);
	color: #fff;
	position: relative;
}
.section-reviews__container {
	width: 762px;
	max-width: 100%;
	padding: 19px 0 0;
	margin: 0 auto;
	position: relative;
}
.section-reviews__item {
	display: flex;
	color: #000;
	margin-bottom: 59px;
}
.section-reviews__item:last-child{
	margin-bottom: 0;
}
.section-reviews__icon {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	margin-right: 37px;
}
.section-reviews__content {
	flex-grow: 1;
	padding: 38px 32px 40px;
	border-radius: 15px;
	background: #fff;
	position: relative;
}
.section-reviews__name {
	color: var(--color-pink);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}
.section-reviews__title {
	font-size: 15px;
}
.section-reviews__item:nth-child(odd) .section-reviews__content:before{
	content: '';
	display: block;
	position: absolute;
	top: 50px;
	left: -26px;
	border-top: 30px solid #fff; 
	border-left: 30px solid transparent;
}
.section-reviews__item:nth-child(even){
	flex-direction: row-reverse;
}
.section-reviews__item:nth-child(even) .section-reviews__icon{
	margin: 0 0 0 37px;
}
.section-reviews__item:nth-child(even) .section-reviews__content:before{
	content: '';
	display: block;
	position: absolute;
	top: 50px;
	right: -26px;
	border-top: 30px solid #fff; 
	border-right: 30px solid transparent;
}
.section-reviews__decor-1{
	width: 300px;
	height: 217px;
	position: absolute;
	top: 50%;
	left: calc((100vw - 1460px) / 2);
	pointer-events: none;
}
.section-reviews__decor-2{
	width: 340px;
	height: 247px;
	position: absolute;
	top: 30%;
	right: calc((100vw - 1460px) / 2);
	pointer-events: none;
}
.section-join {
	padding: 120px 0;
}
.section-join__form {
	width: 960px;
	max-width: 100%;
	display: flex;
	padding-top: 47px;
	margin: 0 auto;
}
.section-join__input {
	width: 100%;
	padding-right: 20px;
}
.section-join__input input{
	width: 100%;
	height: 60px;
	padding: 0 10px;
	border: 1px solid #fff;
	border-bottom-color: var(--color-pink);
	font-size: 16px;
	line-height: 1.33;
}
.section-join__submit {
	position: relative;
	flex-shrink: 0;
}
.section-join__submit .button {
	padding: 19px 59px;
}
.section-join__submit .wpcf7-spinner{
	right: -35px;
	top: calc(50% - 12px);
}
.section-join .wpcf7 form.invalid .wpcf7-response-output,
.section-join .wpcf7 form.sent .wpcf7-response-output{
	width: 960px;
	max-width: 100%;
	margin: 30px auto;
	padding: 20px 20px;
	border-color: #F95D51;
	background: #F95D51;
	font-size: 20px;
	font-weight: 300;
	text-align: center;
	color: #fff;
}
.section-join .wpcf7 form.sent .wpcf7-response-output{
	background: var(--color-pink);
	margin: 0 auto;
}
.section-contacts {
	background: var(--color-current-page);
	color: var(--color-current-font);
}
.section-contacts__container {
	display: flex;
	min-height: 80vh;
}
.section-contacts__left{
	width: 50%;
}
.section-contacts__map {
	height: 100%;
	background: #000;
	margin-left: calc((100vw - 1160px)/-2);
	overflow: hidden;
}
.section-contacts__right{
	width: 50%;
}
.section-contacts__content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	margin-right: calc((100vw - 1160px)/-2);
	padding: 88px 100px 100px 90px;
}
.section-contacts__title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	margin-bottom: 39px;
}
.section-contacts__block {
	font-family: 'Montserrat Alternates';
	font-size: 18px;
	margin-bottom: 28px;
}
.section-contacts__block h3{
	font-weight: 700;
}
.section-contacts__social {
	display: flex;
	padding-top: 20px;
}
.section-contacts__social a{
	display: block;
	border-radius: 50%;
	margin-right: 7px;
}
.section-contacts__social svg{
	fill: var(--color-current-font);
}






/* Page
-----------------------------------------------------------------------------*/
.page-welcome {
	position: relative;
	padding: 100px 0;
	margin-bottom: 100px;
}
.page-welcome__image{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 30px;
}
.page-welcome__image img{
	height: 100%;
	object-fit: cover;
}
.page-welcome__container {
	width: 50%;
	margin-left: 50%;
	position: relative;
}
.page-welcome__cloud {
	position: absolute;
	top: -297px;
	left: -95px;
	right: -737px;
}
.page-welcome__cloud svg{
	width: 100%;
}
.page-welcome__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 600px;
	position: relative;
	color: #fff;
	padding: 0 0 10px;
	margin: 0 -20px 0 115px;
}
.page-welcome__title {
	font-family: 'Montserrat Alternates';
	font-size: 48px;
	line-height: 1.25;
	font-weight: 600;
	margin-bottom: 19px;
}
.page-welcome__desc {
	width: 230px;
	max-width: 100%;
	color: #f9cb2a;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 14px;
}
.page-welcome__blocks {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
	color: var(--color-current-font);
}
.page-welcome__block {
	width: 50%;
	padding: 0 15px 28px;
}
.page-welcome__border {
	width: 100px;
	height: 5px;
	margin-bottom: 25px;
}

.page-advant {
	padding: 100px 0 0;
	position: relative;
}
.page-advant__decor-1{
	width: 380px;
	height: 47px;
	position: absolute;
	top: 30%;
	right: -450px;
	pointer-events: none;
}
.page-advant__decor-2{
	width: 680px;
	height: 84px;
	position: absolute;
	top: 40%;
	left: -550px;
	pointer-events: none;
}
.page-advant__decor-3{
	width: 470px;
	height: 58px;
	position: absolute;
	top: 70%;
	right: -450px;
	pointer-events: none;
}
.page-advant__container {
	width: 1000px;
	max-width: 100%;
	padding: 47px 0 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.page-advant__col {
	width: 33.333333333333%;
	padding: 0 15px 105px;
}
.page-advant__text {
	min-height: 88px;
	padding: 6px 0 6px 77px;
	position: relative;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
}
.page-advant__text:before{
	content: '';
	display: block;
	width: 88px;
	height: 88px;
	box-sizing: border-box;
	background: #f9cb2a;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 44px);
	left: 40px;
}
.page-advant__col:nth-child(odd) .page-advant__text:before{
	border: 18px solid #f9cb2a;
	background: #fff;
}
.page-advant__text span{
	position: relative;
}
.education-about {
	padding: 70px 0 50px;
	position: relative;
}
.education-about__decor-1{
	width: 300px;
	height: 217px;
	position: absolute;
	top: 5%;
	left: -50px;
	pointer-events: none;
}
.education-about__decor-2{
	width: 380px;
	height: 273px;
	position: absolute;
	top: 20%;
	right: 50px;
	pointer-events: none;
}
.education-about__desc {
	color: var(--color-pink);
	font-size: 28px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
	margin: 46px 0;
}
.education-about__content {
	width: 657px;
	max-width: 100%;
	font-size: 16px;
	margin: 0 auto 38px;
}
.education-about__container {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px 77px;
}
.education-about__col {
	width: 50%;
	padding: 0 20px 40px;
}
.education-about__item {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 42px 47px 50px;
	border: 2px solid var(--color-pink);
	background: #fff;
	position: relative;
}
.education-about__name {
	color: var(--color-pink);
	font-size: 18px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.35;
	font-weight: 500;
	margin-bottom: 9px;
}
.education-about__text p{
	margin-bottom: 7px;
}
.education-about__list {
	display: flex;
	flex-wrap: wrap;
	border-top: 2px solid var(--color-pink);
	background-color: #fafafa;
	padding: 18px 5px 24px 20px;
	margin: 25px 0;
}
.education-about__list li{
	width: 50%;
	font-size: 13px;
	line-height: 1;
	font-weight: 600;
	padding: 7px 10px 6px;
}
.education-about__list li span:before{
	content: '•';
	margin-right: 4px;
}
.education-about__date{
	display: flex;
	align-items: center;
	font-weight: 600;
	margin-bottom: 17px;
}
.education-about__date i{
	display: block;
	flex-shrink: 0;
	margin-right: 20px;
}
.education-about__date i svg{
	fill: var(--color-pink);
}
.education-about__times {
	display: flex;
	justify-content: space-around;
	margin-top: 18px;
}
.education-about__time-item{
	margin: 0 10px;
}
.education-about__day{
	font-weight: 600;
	text-align: center;
}
.education-about__time {
	font-size: 20px;
}
.education-about__time strong{
	font-weight: 500;
}
.education-about__kitchen {
	width: 700px;
	max-width: 100%;
	font-size: 28px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.3px;
	margin-bottom: 49px;
}
.education-about__gallery {
	display: flex;
	margin: 0 calc((100vw - 1160px) / -2);
}
.education-about__gallery-item a{
	display: block;
	line-height: 0;
	transition: all 0.2s;
}
.education-about__gallery-item a:hover{
	transform: scale(1.02);
	box-shadow: 0 2px 20px 2px rgba(0,0,0,.45);
}


.education-about_second{
	padding: 38px 0 50px;
}
.education-about_second .education-about__content {
	width: 750px;
	font-size: 18px;
	margin: 0 auto 51px;
}
.education-about_second .education-about__text p {
	margin-bottom: 18px;
  }




.education-studio {
	padding: 20px 0 70px;
}
.education-studio__container {
	display: flex;
	flex-wrap: wrap;
	padding: 34px 0 0;
	margin: 0 -20px;
}
.education-studio__col {
	width: 25%;
	padding: 0 20px 40px;
}
.education-studio__item {
	border: 2px solid var(--color-pink);
	padding: 22px 27px 31px;
}
.education-studio__name {
	color: var(--color-pink);
	font-size: 18px;
	min-height: 49px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.35;
	font-weight: 500;
	margin-bottom: 13px;
}
.education-studio__day {
	font-size: 13px;
	font-family: 'Montserrat',Arial,sans-serif;
	line-height: 1;
	font-weight: 600;
	margin-bottom: 16px;
}
.education-studio__time {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: #fafafa;
	padding: 10px 0;
}
.education-studio__time li{
	width: 50%;
	font-size: 14px;
	font-weight: 500;
	padding: 0 15px;
}
.site-gallery{
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc((100vw - 1160px) / -2);
	position: relative;
	z-index: 1;
}
.site-gallery__item{
	width: 25%;
}
.site-gallery__item span{
	display: block;
	padding-top: 74.37%;
	position: relative;
}
.site-gallery__item a{
	display: block;
	line-height: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: all 0.2s;
}
.site-gallery__item a:hover{
	transform: scale(1.02);
	box-shadow: 0 2px 20px 2px rgba(0,0,0,.45);
	z-index: 1;
}
.site-gallery__item a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.site-gallery_big .site-gallery__item{
	width: 50%;
}
.education-lego {
	padding: 50px 0;
	position: relative;
}
.education-lego__decor-1{
	width: 380px;
	height: 47px;
	position: absolute;
	top: 30%;
	right: -450px;
	pointer-events: none;
}
.education-lego__decor-2{
	width: 680px;
	height: 84px;
	position: absolute;
	top: 40%;
	left: -550px;
	pointer-events: none;
}
.education-lego__decor-3{
	width: 470px;
	height: 58px;
	position: absolute;
	top: 50%;
	right: -450px;
	pointer-events: none;
}
.education-lego__content {
	width: 640px;
	max-width: 100%;
	padding: 13px 0 0;
	margin: 0 auto;
}
.education-lego__subtitle{
	font-size: 28px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 32px;
}
.education-lego__desc{
	font-size: 16px;
	margin-bottom: 36px;
}
.education-lego__container {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0 -20px 40px;
}
.education-lego__col {
	width: 33.333333333%;
	padding: 0 20px 20px;
}
.education-lego__item {
	height: 100%;
	padding: 30px 30px 40px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;
	background: #fff;
}
.education-lego__text {
	font-size: 16px;
}


.education-fito {
	padding: 25px 0;
	position: relative;
}
.education-fito__decor-1{
	width: 380px;
	height: 47px;
	position: absolute;
	top: 30%;
	right: -450px;
	pointer-events: none;
}
.education-fito__decor-2{
	width: 680px;
	height: 84px;
	position: absolute;
	top: 40%;
	left: -550px;
	pointer-events: none;
}
.education-fito__decor-3{
	width: 470px;
	height: 58px;
	position: absolute;
	top: 50%;
	right: -450px;
	pointer-events: none;
}
.education-fito__content {
	width: 556px;
	max-width: 100%;
	padding: 14px 0 0;
	position: relative;
	margin: 0 auto 101px;
}
.education-fito__subtitle {
	font-size: 28px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	position: relative;
	margin-bottom: 33px;
}
.education-fito__listtitle{
	color: #6381ff;
	font-size: 34px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
	margin-bottom: 29px;
}
.education-fito__desc {
	font-size: 16px;
}
.education-fito__container {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0 -20px;
}
.education-fito__col {
	width: 50%;
	padding: 0 20px;
}
.education-fito__item {
	height: 100%;
	border-top: 2px solid var(--color-pink);
	padding: 48px 60px 25px;
	background: #fafafa;
	font-size: 13px;
	font-family: 'Montserrat',Arial,sans-serif;
	line-height: 1;
	font-weight: 600;
}
.education-fito__item ul li{
	margin-bottom: 13px;
}
.education-fito__item ul li:before{
	content: '•';
	margin-right: 4px;
}
.education-fito__subtitle_second{
	width: 1040px;
	max-width: 100%;
	margin: 69px auto 62px;
}
.education-fito__container_second{
	margin-bottom: 80px;
}
.education-fito__container_second .education-fito__item {
	border-top: 2px solid #6381ff;
	font-size: 15px;
}
.education-fito__item ul li{
	margin-bottom: 15px;
}
.education-ritor {
	padding: 48px 0;
	position: relative;
}
.education-ritor__decor-1{
	width: 380px;
	height: 47px;
	position: absolute;
	top: 30%;
	right: -450px;
	pointer-events: none;
}
.education-ritor__decor-2{
	width: 680px;
	height: 84px;
	position: absolute;
	top: 40%;
	left: -550px;
	pointer-events: none;
}
.education-ritor__decor-3{
	width: 470px;
	height: 58px;
	position: absolute;
	top: 50%;
	right: -450px;
	pointer-events: none;
}
.education-ritor__content {
	width: 594px;
	max-width: 100%;
	padding: 14px 0 0;
	position: relative;
	margin: 0 auto 71px;
}
.education-ritor__subtitle {
	font-size: 28px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 25px;
}
.education-ritor__listtitle{
	color: #6381ff;
	font-size: 34px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
	margin-bottom: 29px;
}
.education-ritor__desc {
	font-size: 16px;
}
.education-ritor__container {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px 75px;
	position: relative;
}
.education-ritor__col {
	width: 50%;
	padding: 0 20px;
}
.education-ritor__item {
	height: 100%;
	border-top: 2px solid #41bab5;
	padding: 48px 60px 25px;
	background: #fafafa;
	font-size: 15px;
	line-height: 1;
	font-weight: 600;
}
.education-ritor__item ul li{
	margin-bottom: 15px;
}
.education-ritor__item ul li:before{
	content: '•';
	margin-right: 4px;
}




.education-art {
	padding: 27px 0 0;
}
.education-art__content {
	width: 542px;
	max-width: 100%;
	padding: 14px 0 0;
	margin: 0 auto 50px;
}
.education-art__subtitle {
	font-size: 28px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 33px;
}
.education-art__listtitle{
	color: #6381ff;
	font-size: 34px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
	margin-bottom: 29px;
}
.education-art__desc {
	font-size: 16px;
}
.education-art__container {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px 40px;
}
.education-art__col {
	width: 33.333333333%;
	padding: 0 20px 20px;
}
.education-art__item {
	height: 100%;
	padding: 30px 30px 40px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;
	background: #fff;
}
.education-art__text {
	font-size: 16px;
}
.page-info{
	background: #8a81bd;
	color: #fff;
	position: relative;
	padding: 110px 0 188px;
}
.page-info__decor-1{
	width: 265px;
	height: 190px;
	position: absolute;
	top: 2%;
	left: 17%;
	pointer-events: none;
}
.page-info__decor-2{
	width: 245px;
	height: 176px;
	position: absolute;
	top: 29%;
	left: 45%;
	pointer-events: none;
}
.page-info__decor-3{
	width: 196px;
	height: 140px;
	position: absolute;
	top: 75%;
	left: 46%;
	pointer-events: none;
}
.page-info__container {
	display: flex;
	flex-wrap: wrap;
}
.page-info__col {
	width: 33.33333333333%;
	position: relative;
}
.page-info__item {
	padding-left: 105px;
}
.page-info__head {
	width: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 150px;
	padding-left: 32px;
	position: relative;
	margin-bottom: 50px;
}
.page-info__head:before{
	content: '';
	display: block;
	width: 150px;
	height: 150px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: -38px;
}
.page-info__title {
	color: var(--color-pink);
	font-size: 24px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.4;
	font-weight: 700;
	position: relative;
	margin-bottom: 5px;
}
.page-info__text {
	font-size: 16px;
	color: #000;
	position: relative;
}
.page-info__link a{
	color: #fff;
}
.page-block{
	padding: 76px 0 51px;
}
.page-block__container {
	padding: 19px 30px 64px;
	border: 16px solid #f9cb2a;
	text-align: center;
}
.page-block__text {
	width: 560px;
	max-width: 100%;
	color: #6c80ff;
	font-size: 24px;
	font-weight: 500;
	margin: 0 auto 18px;
}
.page-block__text span{
	color: var(--color-pink);
}
.education-mont {
	padding: 37px 0;
	position: relative;
}
.education-mont__decor-1{
	width: 380px;
	height: 275px;
	position: absolute;
	top: 2%;
	right: 4%;
	pointer-events: none;
}
.education-mont__decor-2{
	width: 560px;
	height: 420px;
	position: absolute;
	top: 37%;
	left: 1%;
	pointer-events: none;
}
.education-mont__desc {
	width: 620px;
	max-width: 100%;
	font-size: 18px;
	text-align: center;
	position: relative;
	margin: 0 auto 58px;
}
.education-mont__container {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0 -20px 94px;
}
.education-mont__col {
	width: 33.333333333%;
	padding: 0 20px 45px;
}
.education-mont__col_large {
	width: 66.666666666%;
}
.education-mont__item {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.education-mont__title {
	display: flex;
	align-items: center;
	min-height: 80px;
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}
.education-mont__text {
	flex-grow: 1;
	border: 2px solid #b6d6d6;
	background: #fff;
	padding: 32px 38px 3px;
	font-size: 16px;
	line-height: 1.35;
}
.education-mont__text p{
	margin-bottom: 22px;
}
.mont-contact {
	height: 100%;
	padding: 63px 34px 55px;
	background: var(--color-pink);
	line-height: 1.35;
	color: #fff;
}
.mont-contact__text-1 {
	font-size: 16px;
	margin-bottom: 7px;
}
.mont-contact__phone {
	font-size: 23px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 55px;
}
.mont-contact__phone a{
	color: #fff;
	text-decoration: none;
}
.mont-contact__text-2 {
	font-size: 14px;
	margin-bottom: 24px;
}
.mont-contact__text-2 a{
	color: #fff;
	text-decoration: none;
	margin-bottom: 24px;
}
.mont-contact__btn a{
	display: block;
	padding: 17px 20px;
	font-size: 14px;
	line-height: 1.55;
	font-weight: 600;
	background: #fff;
	border-radius: 30px;
	text-decoration: none;
	text-align: center;
	color: var(--color-pink);
}
.education-interior {
	padding: 23px 0 0;
	position: relative;
}
.education-interior__decor-1{
	width: 344px;
	height: 344px;
	background: #6c80ff;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: -130px;
	pointer-events: none;
}
.education-interior__decor-2{
	width: 400px;
	height: 400px;
	border: 20px solid #f9cb2a;
	border-radius: 50%;
	position: absolute;
	top: 14%;
	left: -200px;
	pointer-events: none;
}
.education-interior__container {
	display: flex;
	flex-wrap: wrap;
	padding-top: 25px;
	margin: 0 -20px;
	position: relative;
}
.education-interior__col {
	width: 50%;
	padding: 0 20px 40px;
}
.education-interior__item {
	display: block;
	text-decoration: none;
}
.education-interior__image {
	line-height: 0;
	margin-bottom: 27px;
}
.education-interior__name {
	font-size: 20px;
	font-weight: 600;
}
.education-interior__btn{
	text-align: center;
	margin: 50px 0;
}
.education-interior .site-gallery{
	margin-top: 220px;
}
.garden-info{
	padding: 70px 0 50px;
	position: relative;
}
.garden-info__decor-1{
	width: 300px;
	height: 217px;
	position: absolute;
	top: 5%;
	left: -50px;
	pointer-events: none;
}
.garden-info__decor-2{
	width: 380px;
	height: 273px;
	position: absolute;
	top: 20%;
	right: 50px;
	pointer-events: none;
}
.garden-info__container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	padding: 14px 0 0 0;
	margin: 0 -20px;
}
.garden-info__col {
	width: 50%;
	padding: 0 20px 41px;
}
.garden-info__item {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 42px 59px 56px;
	border: 2px solid var(--color-pink);
	position: relative;
}
.gardeninfo-fields{
	display: none;
}
.garden-info__name {
	color: var(--color-pink);
	font-size: 18px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.35;
	font-weight: 500;
	margin-bottom: 9px;
}
.garden-info__text{
	font-size: 16px;
	line-height: 1.85;
	margin-bottom: 12px;
}
.garden-info__text p{
	margin-bottom: 7px;
}
.garden-info__adress{
	font-size: 14px;
	line-height: 1.85;
	font-weight: 700;
	margin-bottom: 12px;
}
.garden-info__btn .button{
	padding: 12px 37px;
	font-size: 12px;
	line-height: 1.55;
}
.aboutpopup {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 100px;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-y: auto;
	z-index: 100;
	transition: all 0.2s;
	visibility: hidden;
	opacity: 0;
}
.aboutpopup.opened{
	visibility: visible;
	opacity: 1;
}
.aboutpopup__overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
}
.aboutpopup__close {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}
.aboutpopup__close svg{
	width: 100%;
	fill: #fff;
}
.aboutpopup__popup {
	width: 760px;
	max-width: calc(100% - 30px);
	background: #fff;
	position: relative;
	transition: all 0.2s;
	visibility: hidden;
	opacity: 0;
	transform: scale(0.8);
}
.aboutpopup.opened .aboutpopup__popup{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}
.aboutpopup__popup:after{
	content: '';
	display: block;
	height: 50px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -50px;
}
.aboutpopup__image {
	line-height: 0;
}
.aboutpopup__content {
	padding: 30px 45px;
}
.aboutpopup__title {
	font-size: 32px;
	line-height: 1.17;
	font-weight: 500;
	color: var(--color-pink);
	margin-bottom: 20px;
}
.aboutpopup__text {
	font-size: 16px;
}
.aboutpopup__text p{
	margin-bottom: 25px;
}
.aboutpopup__text ul{
	list-style: disc inside;
}
.aboutpopup__text ol{
	list-style: decimal inside;
}
.page-advant_garden{
	padding: 30px 0 0;
}
.garden-schedule {
	padding: 38px 0 0;
	position: relative;
}
.garden-schedule__decor-1{
	width: 380px;
	height: 275px;
	position: absolute;
	top: 0%;
	right: 4%;
	pointer-events: none;
}
.garden-schedule__decor-2{
	width: 560px;
	height: 420px;
	position: absolute;
	top: 37%;
	left: 1%;
	pointer-events: none;
}
.garden-schedule__container {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0 0;
	position: relative;
	margin: 0 -20px 71px;
}
.garden-schedule__col {
	width: 33.333333333%;
	padding: 0 20px 45px;
}
.garden-schedule__item {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.garden-schedule__title {
	display: flex;
	align-items: center;
	min-height: 80px;
	padding: 10px 20px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}
.garden-schedule__list{
	flex-grow: 1;
	background: #fff;
	border: 2px solid #b6d6d6;
	padding: 30px 38px 10px;
	font-size: 16px;
	line-height: 1.35;
}
.garden-schedule__list li{
	margin-bottom: 19px;
}
.garden-schedule__list li:before{
	content: '•';
	color: var(--color-pink);
	font-size: 18px;
	margin-right: 5px;
}

.garden-teacher {
	padding: 74px 0 90px;
	background: #f9cb2a;
	position: relative;
}
.garden-teacher__decor-1{
	width: 265px;
	height: 190px;
	position: absolute;
	top: 7%;
	left: 17%;
	pointer-events: none;
}
.garden-teacher__decor-2{
	width: 245px;
	height: 176px;
	position: absolute;
	top: 36%;
	left: 45%;
	pointer-events: none;
}
.garden-teacher__decor-3{
	width: 196px;
	height: 140px;
	position: absolute;
	top: 81%;
	left: 46%;
	pointer-events: none;
}
.garden-teacher__container {
	display: flex;
	flex-wrap: wrap;
	padding-top: 50px;
	position: relative;
	margin: 0 -20px;
}
.garden-teacher__col {
	width: 25%;
	padding: 0 20px 50px;
}
.garden-teacher__image {
	width: 200px;
	height: 200px;
	line-height: 0;
	margin: 0 auto 29px;
}
.garden-teacher__image img{
	border-radius: 50%;
}
.garden-teacher__item{
	text-align: center;
}
.garden-teacher__name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 13px;
}
.garden-teacher__status {
	font-size: 16px;
	margin-bottom: 10px;
}
.garden-teacher__btn {
	width: 100%;
	padding: 55px 20px 0;
	text-align: center;
}
.garden-teacher__btn ~ .garden-teacher__col{
	display: none;
}
.garden-video {
	padding: 64px 0 30px;
}
.garden-video__container {
	display: flex;
	flex-wrap: wrap;
	padding-top: 25px;
	margin: 0 -20px;
}
.garden-video__col {
	width: 50%;
	padding: 0 20px 40px;
}
.garden-video__video {
	line-height: 0;
	margin-bottom: 16px;
}
.garden-video__name {
	font-size: 20px;
	font-weight: 600;
}




.club-shedule {
	padding: 100px 0 0;
	position: relative;
}
.club-shedule__decor-1{
	width: 400px;
	height: 287px;
	position: absolute;
	top: 60%;
	left: -200px;
	pointer-events: none;
}
.club-shedule__decor-2{
	width: 310px;
	height: 224px;
	position: absolute;
	top: 0%;
	right: -130px;
	pointer-events: none;
}
.club-shedule__container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 46px 0 0;
	margin: 0 -20px;
}
.club-shedule__col {
	width: 33.333333333333336%;
	padding: 0 20px 40px;
}
.club-shedule__item {
	height: 100%;
	padding: 22px 38px 43px;
	border: 2px solid var(--color-pink);
}
.club-shedule__name {
	color: var(--color-pink);
	font-size: 18px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 19px;
}
.club-shedule__list {
	font-size: 16px;
	line-height: 1.85;
}

.page-block_club{
	padding: 0 0 26px;
}

.club-content {
	padding: 50px 0 25px;
	position: relative;
}
.club-content_1 .club-content__decor-1{
	width: 380px;
	height: 47px;
	position: absolute;
	top: 14%;
	right: -450px;
	pointer-events: none;
}
.club-content_1 .club-content__decor-2{
	width: 680px;
	height: 84px;
	position: absolute;
	top: 22%;
	left: -550px;
	pointer-events: none;
}
.club-content_1 .club-content__decor-3{
	width: 470px;
	height: 58px;
	position: absolute;
	top: 35%;
	right: -450px;
	pointer-events: none;
}
.club-content_2 .club-content__decor-1{
	width: 344px;
	height: 344px;
	background: #00cfc9;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: -130px;
	pointer-events: none;
}
.club-content_2 .club-content__decor-2{
	width: 400px;
	height: 400px;
	border: 20px solid #f9cb2a;
	border-radius: 50%;
	position: absolute;
	top: 25%;
	left: -200px;
	pointer-events: none;
}
.club-content_3 .club-content__decor-1{
	width: 287px;
	height: 287px;
	background: #00cfc9;
	position: absolute;
	top: 0;
	right: -130px;
	pointer-events: none;
}
.club-content_3 .club-content__decor-2{
	width: 400px;
	height: 400px;
	border: 20px solid #f9cb2a;
	position: absolute;
	top: 25%;
	left: -200px;
	pointer-events: none;
}
.club-content_4 .club-content__decor-1{
	width: 400px;
	height: 287px;
	position: absolute;
	top: 60%;
	left: -200px;
	pointer-events: none;
}
.club-content_4 .club-content__decor-2{
	width: 310px;
	height: 224px;
	position: absolute;
	top: 0%;
	right: -130px;
	pointer-events: none;
}
.club-content_5 .club-content__decor-1{
	width: 380px;
	height: 47px;
	position: absolute;
	top: 14%;
	right: -450px;
	pointer-events: none;
}
.club-content_5 .club-content__decor-2{
	width: 680px;
	height: 84px;
	position: absolute;
	top: 22%;
	left: -550px;
	pointer-events: none;
}
.club-content_5 .club-content__decor-3{
	width: 470px;
	height: 58px;
	position: absolute;
	top: 35%;
	right: -450px;
	pointer-events: none;
}
.club-content_6 .club-content__decor-1{
	width: 344px;
	height: 344px;
	background: #00cfc9;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: -130px;
	pointer-events: none;
}
.club-content_6 .club-content__decor-2{
	width: 400px;
	height: 400px;
	border: 20px solid #f9cb2a;
	border-radius: 50%;
	position: absolute;
	top: 25%;
	left: -200px;
	pointer-events: none;
}
.club-content .page-desc{
	color: var(--color-pink);
	margin: 40px 0 62px;
}
.club-content__content {
	width: 660px;
	max-width: 100%;
	margin: 60px auto 70px;
	position: relative;
}
.club-content__subtitle {
	font-size: 28px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.4px;
	margin-bottom: 20px;
}
.club-content__text {
	font-size: 16px;
}
.club-content__text p{
	margin-bottom: 25px;
}
.club-content__text h3{
	color: var(--color-pink);
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin: 87px 0 18px;
}
.club-content__text ul li:before{
	content: '•';
	display: inline-block;
	color: var(--color-pink);
	font-size: 28px;
	line-height: 0;
	transform: translateY(3px);
	margin-right: 4px;
}
.club-content__text blockquote{
	border: 10px solid #f9cb2a;
	padding: 20px 26px 73px;
	color: #6c80ff;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	margin: 32px -41px;
}
.club-content__text blockquote p{
	margin-bottom: 0;
}
.club-content__text blockquote span{
	color: var(--color-pink);
}


.camp-program{
	padding: 100px 0 0;
	position: relative;
}
.camp-program__decor-1{
	width: 400px;
	height: 287px;
	position: absolute;
	top: 60%;
	left: -200px;
	pointer-events: none;
}
.camp-program__decor-2{
	width: 310px;
	height: 224px;
	position: absolute;
	top: 0%;
	right: -130px;
	pointer-events: none;
}
.camp-program .page-desc{
	color: var(--color-pink);
}
.camp-program__container {
	display: flex;
	width: 710px;
	max-width: 100%;
	border: 2px solid var(--color-pink);
	padding: 26px 10px;
	margin: 55px auto 96px;
}
.camp-program__list {
	width: 50%;
	font-size: 14px;
	line-height: 1.85;
	padding: 0 20px;
}
.camp-program__list li{
	position: relative;
}
.camp-program__list li:before{
	content: '•';
	display: inline-block;
	color: var(--color-pink);
	font-size: 28px;
	line-height: 0;
	transform: translateY(3px);
	margin-right: 4px;
}
.camp-shedule {
	padding: 75px 0 83px;
	background: #f9cb2a;
	position: relative;
}
.camp-shedule__decor-1{
	width: 265px;
	height: 190px;
	position: absolute;
	top: 2%;
	left: 17%;
	pointer-events: none;
}
.camp-shedule__decor-2{
	width: 245px;
	height: 176px;
	position: absolute;
	top: 29%;
	left: 45%;
	pointer-events: none;
}
.camp-shedule__decor-3{
	width: 196px;
	height: 140px;
	position: absolute;
	top: 75%;
	left: 46%;
	pointer-events: none;
}
.camp-shedule__container {
	display: flex;
	position: relative;
	margin: 0 40px;
}
.camp-shedule__col {
	width: 50%;
	padding: 0 20px;
}
.camp-shedule__item {
	font-size: 16px;
}
.camp-shedule__name {
	font-weight: 700;
}
.camp-video {
	padding: 65px 0;
	position: relative;
}
.camp-video__decor-1{
	width: 344px;
	height: 344px;
	background: #6c80ff;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: -130px;
	pointer-events: none;
}
.camp-video__decor-2{
	width: 400px;
	height: 400px;
	border: 20px solid var(--color-pink);
	border-radius: 50%;
	position: absolute;
	top: 25%;
	left: -200px;
	pointer-events: none;
}
.camp-video .page-desc{
	color: var(--color-pink);
}
.camp-video__container {
	width: 845px;
	max-width: 100%;
	padding: 40px;
	border-radius: 50px;
	background: #ffc800;
	margin: 35px auto 117px;
}
.video-wrap{
	display: block;
	overflow: hidden;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
}
.video-wrap iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}



.camp-plan {
	padding: 50px 0;
}
.camp-plan__tabs {
	display: flex;
	border: 2px solid var(--color-pink);
	margin: 37px 0 41px;
}
.camp-plan__tabs li{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 52px;
	color: #f64a63;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}
.camp-plan__tabs li:not(:last-child){
	border-right: 2px solid var(--color-pink);
}
.camp-plan__tabs li.active{
	cursor: default;
	background: var(--color-pink);
	color: #fff;
}
.camp-plan__select{
	display: none;
}
.camp-plan__head {
	display: flex;
	align-items: center;
	background: #000;
	color: #fff;
	padding: 26px 30px 23px;
	margin-bottom: 9px;
}
.camp-plan__dates {
	width: 230px;
	display: flex;
	font-size: 20px;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
}
.camp-plan__title {
	font-size: 18px;
}
.camp-plan__container {}
.camp-plan__item {
	border: 2px solid #ffc800;
	margin-bottom: 8px;
}
.camp-plan__top {
	height: 56px;
	display: flex;
	font-size: 16px;
	font-weight: 600;
	background: #f5f5f5;
}
.camp-plan__date {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 238px;
	background: #ffc800;
	padding: 12px 25px 10px;
	flex-shrink: 0;
}
.camp-plan__name {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 12px 30px 10px;
}
.camp-plan__body {
	display: flex;
	border-top: 2px solid #ffc800;
	padding: 18px 8px;
}
.camp-plan__list{
	width: 38.6%;
	padding: 0 20px;
	font-size: 14px;
	font-family: 'Montserrat',Arial,sans-serif;
	line-height: 2;
}
.camp-content {
	padding: 50px 0 0;
	position: relative;
}
.camp-content__decor-1{
	width: 300px;
	height: 217px;
	position: absolute;
	top: 5%;
	left: -50px;
	pointer-events: none;
}
.camp-content__decor-2{
	width: 380px;
	height: 273px;
	position: absolute;
	top: 20%;
	right: 50px;
	pointer-events: none;
}
.camp-content__desc{
	color: var(--color-pink);
	font-size: 18px;
	text-align: center;
	margin: 40px 0 62px;
}
.camp-content__content {
	width: 590px;
	max-width: 100%;
	margin: 60px auto 70px;
}
.camp-content__subtitle {
	font-size: 28px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.4px;
	margin-bottom: 20px;
}
.camp-content__text {
	font-size: 16px;
}
.camp-content__text p{
	margin-bottom: 25px;
}
.camp-content__text h3{
	color: var(--color-pink);
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin: 87px 0 18px;
}
.camp-content__text ul li:before{
	content: '•';
	display: inline-block;
	color: var(--color-pink);
	font-size: 28px;
	line-height: 0;
	transform: translateY(3px);
	margin-right: 4px;
}
.camp-content__text blockquote{
	border: 10px solid #f9cb2a;
	padding: 20px 26px 73px;
	color: #6c80ff;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	margin: 32px -41px;
}
.camp-content__text blockquote p{
	margin-bottom: 0;
}
.camp-content__text blockquote span{
	color: var(--color-pink);
}




.tabs__block:not(.show){
	display: none;
}



/* Contacts
-----------------------------------------------------------------------------*/
.page-content {
	padding: 211px 0 65px;
	position: relative;
}
.page-content__decor-1{
	width: 400px;
	height: 287px;
	position: absolute;
	top: 80%;
	left: -200px;
	pointer-events: none;
}
.page-content__decor-2{
	width: 310px;
	height: 224px;
	position: absolute;
	top: 0%;
	right: -130px;
	pointer-events: none;
}
.page-contact {
	width: 1000px;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0 auto;
}
.page-contact__col {
	width: 50%;
	padding: 0 20px 40px;
}
.page-contact__item {
	background: #fff;
	border: 2px solid var(--color-pink);
	padding: 32px 28px 47px;
}
.page-contact__name {
	color: var(--color-pink);
	font-size: 18px;
	font-family: 'Montserrat Alternates',Arial,sans-serif;
	line-height: 1.35;
	font-weight: 500;
	margin-bottom: 19px;
}
.page-contact__text {
	font-size: 14px;
	line-height: 1.85;
	font-weight: 700;
	margin-bottom: 22px;
}
.page-contact__btn .button{
	padding: 12px 38px;
	font-size: 12px;
}



/* Popup
-----------------------------------------------------------------------------*/
.popup{
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	transition: all 0.2s;
}
.popup.opened{
	visibility: visible;
	opacity: 1;
}
.popup__overlay{
	position: absolute;
	top: 100px;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.popup__overlay-close{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 101;
}
.popup__window{
	position: relative;
	width: 560px;
	box-sizing: border-box;
	padding: 40px 45px;
	background: #766fff;
	color: #fff;
	z-index: 102;
	transform: scale(1.3);
	transition:  all 0.3s ease-out 0s;
	opacity: 0;
}
.popup__window.opened{
	opacity: 1;
	transform: scale(1);
}
.popup__close{
	width: 44px;
	height: 44px;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}
.popup__close svg{
	width: 100%;
	fill: #fff;
}
.popup__title {
	font-weight: 700;
	font-size: 36px;
	line-height: 1.23;
	text-align: center;
	margin-bottom: 26px;
}
.popup-form__input{
	margin-bottom: 27px;
}
.popup-form__input input{
	width: 100%;
	height: 60px;
	padding: 0 20px;
	font-size: 16px;
	line-height: 1.33;
	color: #000;
	border: 1px solid #fff;
	border-radius: 30px;
	background: #fff;
}
.popup-form__input input::placeholder{
	opacity: 0.5;
	color: #000;
}
.wpcf7-spinner{
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
}
.wpcf7-not-valid{
	border-color: #F95D51 !important;
}
.wpcf7-not-valid-tip{
	display: none !important;
}
.popup-form__btn .button{
	width: 100%;
}
.popup-form__btn{
	margin-bottom: 17px;
}
.popup-form__text {
	font-size: 15px;
	text-align: center;
}


.popup-form .wpcf7-spinner{
	right: 10px;
	top: auto;
	bottom: 10px;
}
.popup-form .wpcf7 form.invalid .wpcf7-response-output,
.popup-form .wpcf7 form.sent .wpcf7-response-output{
	margin: 20px 0;
	padding: 20px 20px;
	border-color: #F95D51;
	background: #F95D51;
	font-size: 20px;
	font-weight: 300;
	text-align: center;
	color: #fff;
}
.popup-form .wpcf7 form.sent .wpcf7-response-output{
	background: none;
	border-color: transparent;
}

/* Mobile
-----------------------------------------------------------------------------*/
.mobile-panel-overlay{
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	z-index: 40;
	overflow-y: scroll;
	transition: all 0.2s;
}
.mobile-panel-overlay.show{
	visibility: visible;
	opacity: 1;
}
.mobile-panel{
	top: 0;
	right: -360px;
	opacity: 0;
	width: 360px;
	max-width: 95%;
	height: 100%;
	position: fixed;
	padding: 48px 10px 30px;
	background: #6381ff;
	color: #fff;
	-webkit-transition: all 0.2s ease-out 0s;
	-o-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
	z-index: 101;
}
.mobile-panel__close{
	width: 36px;
	height: 36px;
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
}
.mobile-panel__close svg{
	fill: #fff;
}
.mobile-panel.show{
	right: 0;
	opacity: 1;
}
.mobile-panel__container{
	height: calc(100vh - 78px);
	padding: 0 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow-y: auto;
}
.mobile-panel__container::-webkit-scrollbar {
	width: 5px;
}
.mobile-panel__container::-webkit-scrollbar-thumb {
	background-color: #fff;
	border-radius: 3px;
}
.mobile-logo{
	width: 100px;
	height: auto;
	margin-bottom: 17px;
}
.mobile-logo svg{
	width: 100%;
	height: auto;
	fill: var(--color-pink);
}
.mobile-menu{
	margin-bottom: 30px;
}
.mobile-menu > ul > li{
	font-size: 24px;
	line-height: 1.25;
	margin-bottom: 14px;
}
.mobile-menu > ul > li > a{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	position: relative;
}
.mobile-menu > ul > li > a:after{
	content: '';
	display: block;
	height: 2px;
	background: #fff;
	opacity: 0;
	transition: all 0.2s;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
}
.mobile-menu > ul > li > a:hover:after{
	opacity: 1;
	bottom: -1px;
}
.mobile-panel__text {
	font-size: 13px;
	margin-bottom: 27px;
}
.mobile-panel__social {
	display: flex;
}
.mobile-panel__social a{
	display: block;
	border-radius: 50%;
	margin-right: 8px;
}
.mobile-panel__social a svg{
	fill: #fff;
}





.secions-nav {
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	right: 20px;
	bottom: 0;
	z-index: 5;
}
.secions-nav li{
	padding: 12px 0;
}
.secions-nav li a{
	display: block;
	width: 13px;
	height: 13px;
	border: 2px solid #f9cb2a;
	border-radius: 50%;
	position: relative;
}
.secions-nav li a.active{
	border-color: var(--color-pink);
	background: var(--color-pink);
}
.secions-nav li a span{
	visibility: hidden;
	opacity: 0;
	transform: translateX(10px);
	display: flex;
	align-items: center;
	height: 35px;
	padding: 0 18px;
	background: var(--color-pink);
	border-radius: 3px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	position: absolute;
	right: 30px;
	top: calc(50% - 18px);
	transition: all 0.2s;
}
.secions-nav li a span:before{
	content: '';
	display: block;
	border-top: 8px solid transparent;
	border-left: 10px solid var(--color-pink);
	border-bottom: 8px solid transparent;
	position: absolute;
	top: 10px;
	right: -9px;
}
.secions-nav li a span:after{
	content: '';
	position: absolute;
	top: 0;
	right: -30px;
	bottom: 0;
	left: 0;
}
.secions-nav li a:hover span{
	visibility: visible;
	opacity: 1;
	transform: translateX(0px);
}

/* Info Popups
-----------------------------------------------------------------------------*/
.infopopup{
	visibility: hidden;
	opacity: 0;
	transform: scale(0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	background: #fff;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: all 0.2s;
	z-index: 50;
}
.infopopup.opened{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}
.infopopup__close{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border: 2px solid #f64a63;
	border-radius: 50%;
	position: absolute;
	top: 20px;
	right: 20px;
	transition: all 1s;
	cursor: pointer;
}
.infopopup__close:hover{
	transform: rotate(360deg);
}
.infopopup__close svg{
	fill: #f64a63;
	stroke: #f64a63;
	stroke-width: 2;
}
.infopopup__container{
	width: 100%;
	max-height: 100vh;
	padding: 30px 0;
	overflow-y: auto;
}
.infopopup-schedule{
	padding-top: 42px;
}
.infopopup-schedule__table{
	overflow-x: auto;
}
.infopopup-schedule__table table{
	width: 100%;
}
.infopopup-schedule__table table thead td{
	padding: 20px;
	background: #6c80ff;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.infopopup-schedule__table table tbody td{
	padding: 19px 25px;
	font-size: 18px;
	border: 1px solid #ccc;
	border-top: none;
}
.infopopup-group {
	padding-top: 10px;
	position: relative;
}
.infopopup-group__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -20px
}
.infopopup-group__col {
	width: 33.333333333333%;
	padding: 0 20px 20px;
}
.infopopup-group__item{
	height: 100%;
	display: flex;
	flex-direction: column;
}
.infopopup-group__title {
	display: flex;
	align-items: center;
	min-height: 80px;
	padding: 15px 25px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	flex-shrink: 0;
	margin-bottom: 15px;
}
.infopopup-group__text {
	flex-grow: 1;
	font-size: 16px;
	line-height: 1.35;
	background: #fff;
	padding: 32px 17px 2px;
	border: 2px solid #b6d6d6;
}
.infopopup-group__text p{
	margin-bottom: 22px;
}
.infopopup-group__text strong{
	color: var(--color-pink);
}
.infopopup-group__text ul li{
	font-weight: 700;
}
.infopopup-group__text ul li:before{
	content: '•';
	color: var(--color-pink);
	margin-right: 4px;
}
.infopopup-regime {
	padding: 67px 0;
}
.infopopup-regime__list {
	width: 570px;
	max-width: 100%;;
	margin: 0 auto;
	font-size: 20px;
}
.infopopup-regime__list li{
	margin-bottom: 5px;
}
.infopopup-menu{
	padding-top: 10px;
	position: relative;
}
.infopopup-menu__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -20px
}
.infopopup-menu__col {
	width: 25%;
	padding: 0 20px 20px;
}
.infopopup-menu__item{
	height: 100%;
	display: flex;
	flex-direction: column;
}
.infopopup-menu__title {
	display: flex;
	align-items: center;
	min-height: 80px;
	padding: 15px 25px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	flex-shrink: 0;
	margin-bottom: 15px;
}
.infopopup-menu__text {
	flex-grow: 1;
	font-size: 16px;
	line-height: 1.35;
	background: #fff;
	padding: 32px 17px 2px;
	border: 2px solid #b6d6d6;
}
.infopopup-menu__text ul li{
	margin-bottom: 22px;
}
.infopopup-menu__text ul li:before{
	content: '•';
	color: var(--color-pink);
	font-weight: 700;
	margin-right: 4px;
}
/* Animate
-----------------------------------------------------------------------------*/
.animated{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animated.hinge{
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
  
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.wow{
	visibility: hidden;
}
/* Redactor Styles
-----------------------------------------------------------------------------*/
.alignnone {
	margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
	margin: auto;
	text-align: center;
}
.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin: 5px 20px 20px 0;
}
.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}
a img.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}
a img.alignnone {
	margin: 5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin: 5px 20px 20px 0;
}
a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto
}
.wp-caption {
	max-width: 100%;
	padding: 0 0 10px;
	text-align: center;
	margin-top:20px !important;
	margin-bottom:20px !important;
}
.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}
.wp-caption img {
	border:3px solid #dbdddd;
	height: auto;
	margin:0 0 5px 0;
	max-width: 98.5%;
	padding:0;
	width: auto;
}
.wp-caption p.wp-caption-text {
	font-size:12pt;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}

/* Responsive
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 1500px){
	.page-welcome__content{
		height: 500px;
	}
	.page-content {
		padding: 180px 0 65px;
	}
}
@media only screen and (max-width: 1190px){
	.inner{
		margin-left: 15px;
		margin-right: 15px;
	}
	body.not-scroll,
	body.not-scroll .home-header,
	body.not-scroll .site-header{
		padding-right: 0;
	}
	.site-header__container{
		margin: 0;
	}
	.section-news {
		padding: 60px 0;
	}
	.section-reviews{
		padding: 60px 0;
	}
	.section-join {
		padding: 60px 0;
	}
	.section-contacts__map{
		margin-left: -15px;
	}
	.section-contacts__content{
		height: auto;
		padding: 40px;
		margin-right: -15px;
	}
	.section-contacts__block{
		font-size: 16px;
	}

	.page-welcome{
		padding: 50px 0;
		margin-bottom: 0;
	}
	.page-welcome__container {
		margin-left: 40%;
	}
	.page-welcome__title{
		font-size: 36px;
	}
	.education-about__list li{
		width: 100%;
	}
	.site-gallery{
		margin: 0 -15px;
	}
	.education-studio__container{
		width: 640px;
		max-width: 100%;
		margin: 0 auto;
	}
	.education-studio__col{
		width: 50%;
		padding: 0 10px 20px;
	}
	.education-lego__container{
		margin: 0 -10px;
	}
	.education-lego__col{
		padding: 0 10px 20px;
	}
	.education-fito__listtitle{
		font-size: 30px;
	}
	.page-info{
		padding: 100px 0;
	}
	.page-info__item {
		padding-left: 60px;
	}
	.education-mont__container{
		width: 800px;
		max-width: 100%;
		margin: 0 auto;
	}
	.education-mont__col{
		width: 50%;
	}
	.education-interior__container{
		margin: 0 -10px;
	}
	.education-interior__col {
		padding: 0 10px 40px;
	}
	.education-interior__btn {
		margin: 0 0 50px;
	}
	.education-interior .site-gallery{
		margin-top: 50px;
	}
	.garden-schedule__container{
		width: 800px;
		max-width: 100%;
		margin: 0 auto;
	}
	.garden-schedule__col{
		width: 50%;
	}
	.garden-video__container{
		margin: 0 -10px 50px;
	}
	.garden-video__col {
		padding: 0 10px 40px;
	}
	.club-shedule__container{
		width: 800px;
		max-width: 100%;
		margin: 0 auto;
	}
	.club-shedule__col{
		width: 50%;
	}
	.page-contact__col{
		padding: 0 10px 20px;
	}


	.infopopup-schedule__table table thead td{
		padding: 18px;
		font-size: 16px;
	}
	.infopopup-schedule__table table tbody td{
		padding: 17px 22px;
		font-size: 16px;
	}
	.infopopup-group__container{
		margin: 0 -10px;
	}
	.infopopup-group__col{
		padding: 0 10px 20px;
	}
	.infopopup-menu__container{
		margin: 0 -10px;
	}
	.infopopup-menu__col{
		padding: 0 10px 20px;
	}






}
@media only screen and (max-width: 992px){
	.home-header__desc{
		display: none;
	}
	.header-contacts {
		margin-left: 25px;
	}
	.section-welcome__content {
		margin-left: 50%;
	}
	.section-news__container{
		flex-wrap: nowrap;
		overflow-y: auto;
	}
	.section-news__col{
		width: auto;
		min-width: 38%;
		max-width: 38%;
	}


	.top-menu,.header-nav,.header-home{
		display: none;
	}
	.site-header .touch-menu{
		display: flex;
	}
	.site-header__left{
		width: 50%;
	}
	.site-header__right{
		width: 50%;
		position: relative;
	}
	.site-header__right .header-social{
		position: absolute;
		left: -40px;
		top: calc(50% - 15px);
	}
	.education-about__container {
		width: 620px;
		max-width: 100%;
		margin: 0 auto 30px;
	}
	.education-about__col {
		width: 100%;
		padding: 0 20px 20px;
	}
	.education-about__item{
		padding: 30px;
	}
	.education-lego__container{
		width: 600px;
		max-width: 100%;
		margin: 0 auto;
	}
	.education-lego__col{
		width: 100%;
		padding: 0 0 20px;
	}
	.education-fito__container{
		width: 520px;
		max-width: 100%;
		margin: 0 auto;
	}
	.education-fito__col{
		width: 100%;
		padding: 0 0 20px;
	}
	.education-fito__item {
		padding: 25px;
	}
	.education-ritor__container{
		width: 520px;
		max-width: 100%;
		margin: 0 auto;
	}
	.education-ritor__col{
		width: 100%;
		padding: 0 0 20px;
	}
	.education-ritor__item {
		padding: 25px;
	}
	.education-art__container{
		width: 600px;
		max-width: 100%;
		margin: 0 auto;
	}
	.education-art__col{
		width: 100%;
		padding: 0 0 20px;
	}
	.education-interior__container{
		width: 460px;
		max-width: 100%;
		margin: 0 auto;
	}
	.education-interior__col {
		width: 100%;
		padding: 0 0 40px;
	}
	.garden-info__container {
		width: 620px;
		max-width: 100%;
		margin: 0 auto;
	}
	.garden-info__col {
		width: 100%;
		padding: 0 20px 20px;
	}
	.garden-info__item{
		padding: 30px;
	}
	.garden-teacher__container{
		width: 500px;
		max-width: 100%;
		margin: 0 auto;
	}
	.garden-teacher__col{
		width: 50%;
	}
	.garden-video__container{
		width: 460px;
		max-width: 100%;
		margin: 0 auto 50px;
	}
	.garden-video__col {
		width: 100%;
		padding: 0 0 40px;
	}
	.camp-plan__tabs{
		display: none;
	}
	.camp-plan__select{
		display: block;
		width: 620px;
		max-width: 100%;
		margin: 0 auto 20px;
		position: relative;
	}
	.camp-plan__select select{
		width: 100%;
		display: block;
		border: 2px solid #f64a63;
		color: #ffffff !important;
		background-color: #f64a63 !important;
		-webkit-appearance: none;
		padding: 16px 20px;
		font-family: 'Montserrat', sans-serif;
		font-size: 16px;
		font-weight: 700;
		margin: 0;
	}
	.camp-plan__tabcontent{
		width: 620px;
		max-width: 100%;
		margin: 0 auto;
	}
	.camp-plan__head {
		padding: 20px 30px;
	}
	.camp-plan__title{
		font-size: 12px;
	}
	.camp-plan__body{
		flex-direction: column;
	}
	.camp-plan__list{
		width: 100%;
	}
	.page-content{
		padding: 140px 0 35px;
	}
	.infopopup-group__col {
		width: 50%;
	}
	.infopopup-menu__col {
		width: 50%;
	}
	


	
}
@media only screen and (max-width: 767px){
	.home-header__container {
		padding: 10px 15px;
	}
	.header-logo{
		flex-direction: column;
	}
	.header-logo__image{
		margin: 0 auto 5px !important;
	}
	.header-logo__text {
		font-size: 10px;
	}
	.home-header__right{
		width: calc(50% + 60px);
		justify-content: space-between;
	}
	.header-social{
		display: none;
	}
	.header-contacts{
		margin: 0;
	}
	.header-contacts__btn a{
		padding: 5px 15px;
	}


	.site-header__left{
		width: auto;
		padding: 0;
	}
	.site-header__right{
		width: calc(50% + 60px);
		justify-content: space-between;
		flex-grow: 0;
	}

	.page-welcome {
		padding: 0;
	}
	.page-welcome__image{
		position: relative;
		bottom: auto;
	}
	.page-welcome__image img{
		width: 100%;
	}
	.page-welcome__container{
		width: 100%;
		margin: 0;
	}
	.page-welcome__content{
		width: 500px;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 20px 0 0;
	}
	.page-welcome__title{
		font-size: 24px;
	}
	.page-welcome__desc{
		width: 155px;
		font-size: 12px;
	}
	.page-welcome__border {
		margin-bottom: 15px;
	}
	.page-welcome__text{
		font-size: 12px;
	}
	.page-welcome__cloud{
		top: -56px;
		right: -54px;
		bottom: 0;
		left: -166px;
		overflow: hidden;
	}
	.page-welcome__cloud:before{
		content: '';
		display: block;
		height: 60%;
		background: var(--color-current-page);
		position: absolute;
		left: 0;
		bottom: 0;
		right: 0;
	}
	.page-welcome__cloud svg{
		transform: scale(-1);
	}









	.section-title {
		margin-bottom: 20px;
	}
	.section-title h2{
		font-size: 28px;
	}
	.section-title i{
		width: 100px;
		margin: 8px auto 0;
	}
	.section-title__eyes{
		display: none;
	}
	.section-desc{
		font-size: 14px;
	}
	.section-welcome__bg:after{
		content: '';
		display: block;
		background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.section-welcome__content{
		width: 300px;
		max-width: 100%;
		min-height: 0;
		height: auto;
		padding: 187px 0 100px;
		margin: 0 auto;
		text-align: center;
	}
	.section-welcome__title{
		font-size: 36px;
		margin-bottom: 28px;
	}
	.section-welcome__text{
		color: #000;
		font-size: 16px;
		margin-bottom: 75px;
	}
	.section-welcome__nav{
		height: auto;
		flex-direction: column;
	}
	.section-welcome__nav li a {
		height: 115px;
		font-size: 5.35vw;
	}
	.section-news {
		padding: 40px 0;
	}
	.section-news__col{
		min-width: 66%;
		max-width: 66%;
	}
	.post-item {
		padding: 25px 25px 114px;
	}
	.section-reviews{
		padding: 40px 0;
	}
	.section-reviews__container {
		padding: 5px 0 0;
	}
	.section-reviews__icon{
		width: 40px;
		height: 40px;
		margin-right: 20px;
	}
	.section-reviews__content {
		padding: 20px;
	}	
	.section-reviews__name{
		font-size: 14px;
		margin-bottom: 5px;
	}
	.section-reviews__title{
		font-size: 14px;
		line-height: 1.45;
	}
	.section-reviews__item:nth-child(2n+1) .section-reviews__content::before {
		top: 20px;
		left: -15px;
	}
	.section-reviews__item:nth-child(2n) .section-reviews__icon {
		margin: 0 0 0 20px;
	}
	.section-reviews__item:nth-child(2n) .section-reviews__content::before{
		top: 20px;
		right: -15px;
	}
	.section-join {
		padding: 40px 0;
	}
	.section-join__form{
		padding-top: 30px;
		flex-direction: column;
	}
	.section-join__input{
		width: 100%;
		padding: 0 0 25px;
	}
	.section-join__submit .button{
		width: 100%;
	}
	.section-contacts__container{
		flex-direction: column;
	}
	.section-contacts__left{
		width: 100%;
	}
	.section-contacts__map{
		height: 300px;
		margin: 0 -15px;
	}
	.section-contacts__right{
		width: 100%;
	}
	.section-contacts__content{
		padding: 30px 20px;
		margin: 0 -15px;
	}
	.section-contacts__title{
		margin-bottom: 20px;
	}
	.page-advant{
		padding: 50px 0 0;
	}
	.page-advant__col{
		width: 50%;
	}
	.education-about{
		padding: 50px 0 30px;
	}
	.education-about__desc{
		font-size: 16px;
		margin: 20px 0;
	}
	.education-about__content{
		font-size: 14px;
	}
	.education-about__time{
		font-size: 16px;
	}
	.education-about__name{
		font-size: 14px;
	}
	.education-about__list{
		padding: 15px;
	}
	.education-about__list li {
		font-size: 12px;
	}
	.education-about__date{
		align-items: flex-start;
		font-size: 12px;
	}
	.education-about__date i{
		width: 30px;
		height: 30px;
	}
	.education-about__times{
		font-size: 10px;
	}
	.education-about__kitchen{
		font-size: 16px;
		text-align: center;
		margin-bottom: 20px;
	}
	.education-studio {
		padding: 20px 0;
	}
	.education-lego {
		padding: 30px 0;
	}
	.education-lego__content{
		width: 380px;
	}
	.education-lego__subtitle{
		font-size: 18px;
		text-align: center;
	}
	.education-lego__desc{
		font-size: 14px;
	}
	.education-fito {
		padding: 10px 0;
	}
	.education-fito__content{
		width: 380px;
		margin: 0 auto 50px;
	}
	.education-fito__subtitle{
		font-size: 18px;
		text-align: center;
		margin: 20px auto 50px;
	}
	.education-fito__desc{
		font-size: 14px;
	}
	.education-fito__listtitle{
		font-size: 24px;
	}
	.education-ritor{
		padding: 10px 0;
	}
	.education-ritor__content{
		width: 380px;
		margin: 0 auto 50px;
	}
	
	.education-ritor__subtitle{
		font-size: 18px;
		text-align: center;
		margin: 0 auto 20px;
	}
	.education-ritor__desc{
		font-size: 14px;
		margin-bottom: 36px;
	}


	.education-art {
		padding: 30px 0 0;
	}
	.education-art__content{
		width: 380px;
	}
	.education-art__subtitle{
		font-size: 18px;
		text-align: center;
	}
	.education-art__desc{
		font-size: 14px;
	}
	.page-info {
		padding: 50px 0;
	}
	.page-info__container{
		flex-direction: column;
		width: 500px;
		max-width: 100%;
		margin: 0 auto;
	}
	.page-info__col{
		display: flex;
		width: 100%;
		padding: 20px 0;
	}
	.page-info__col:nth-child(even){
		justify-content: flex-end;
	}
	.page-info__head{
		margin-bottom: 30px;
	}
	.page-block{
		padding: 40px 0 20px;
	}
	.page-block__container{
		border-width: 10px;
		padding: 20px;
	}
	.page-block__text{
		font-size: 16px;
	}
	.education-mont__desc{
		font-size: 14px;
		margin-bottom: 30px;
	}
	.education-about{
		padding: 10px 0 30px;
	}
	.education-about_second .education-about__content {
		font-size: 14px;
	}
	.education-interior {
		padding: 10px 0 0;
	}
	.education-interior__container{
		width: 300px;
		padding-top: 10px;
		margin: 0 auto;
	}
	.education-interior .site-gallery{
		margin-top: 0;
	}
	.education-interior__image {
		margin-bottom: 10px;
	}
	.education-interior__name{
		font-size: 16px;
	}






	.garden-info {
		padding: 50px 0 0;
	}
	.garden-info__name{
		font-size: 14px;
	}
	.garden-info__text{
		font-size: 14px;
	}
	.aboutpopup {
		padding-top: 30px;
	}
	.aboutpopup__content{
		padding: 20px 15px;
	}
	.aboutpopup__title{
		font-size: 26px;
	}
	.aboutpopup__text{
		font-size: 12px;
		line-height: 1.45;
	}
	.aboutpopup__text p{
		margin-bottom: 20px;
	}
	.garden-teacher {
		padding: 50px 0;
	}
	.garden-teacher__container{
		padding-top: 10px;
	}
	.garden-teacher__col{
		padding: 0 20px 50px;
	}
	.garden-teacher__btn {
		padding-top: 0;
	}
	.garden-video__container{
		width: 300px;
		padding-top: 10px;
		margin: 0 auto;
	}
	.garden-video__video{
		margin-bottom: 10px;
	}
	.garden-video__name{
		font-size: 16px;
	}
	.club-shedule {
		padding: 50px 0 0;
	}
	.club-shedule__container{
		width: 300px;
		padding: 20px 0 0;
	}
	.club-shedule__col{
		width: 100%;
		padding: 0 0 20px;
	}
	.club-shedule__item{
		padding: 20px;
	}
	.club-content {
		padding: 20px 0;
	}
	.club-content .page-desc{
		margin: 30px 0 0;
	}
	.club-content__content{
		width: 380px;
		margin: 50px auto;
	}
	.club-content__subtitle{
		font-size: 18px;
		text-align: center;
	}
	.club-content__text{
		font-size: 14px;
	}
	.club-content__text blockquote {
		padding: 20px;
		margin: 32px 0;
		font-size: 20px;
	}
	.club-content__text h3{
		font-size: 16px;
		margin: 60px 0 18px;
	}



	.camp-program{
		padding: 50px 0 0;
	}
	.camp-program__container{
		flex-direction: column;
		margin: 30px auto;
	}
	.camp-program__list{
		width: 100%;
		padding: 0 10px;
	}
	.camp-shedule {
		padding: 50px 0;
	}
	.camp-shedule__container{
		flex-direction: column;
		margin: 0;
	}
	.camp-shedule__col{
		width: 100%;
		padding: 0;
	}
	.camp-video {
		padding: 50px 0 0;
	}
	.camp-video__container {
		padding: 30px;
		margin: 35px auto 50px;
	}



	.camp-content {
		padding: 20px 0 0;
	}
	.camp-content .page-desc{
		margin: 30px 0 0;
	}
	.camp-content__content{
		width: 380px;
		margin: 30px auto;
	}
	.camp-content__subtitle{
		font-size: 18px;
		text-align: center;
	}
	.camp-content__text{
		font-size: 14px;
	}
	.camp-content__text h3{
		font-size: 16px;
		margin: 60px 0 18px;
	}
	.page-contact__item{
		padding: 25px;
	}
	
	
	
	.page-content {
		padding: 110px 0 35px;
	}



	.button {
		padding: 12px 20px;
		font-size: 14px;
	}
	.page-desc{
		font-size: 16px;
	}







}
@media only screen and (max-width: 640px){
	.page-advant__container{
		width: 300px;
		max-width: 100%;
		margin: 0 auto;
	}
	.page-advant__col{
		padding: 0 15px 50px;
	}
	.page-advant__col:nth-child(even) .page-advant__text{
		transform: translateY(50px);
	}
	.page-advant__text{
		font-size: 14px;
		padding: 6px 0 6px 27px;
	}
	.page-advant__text:before{
		width: 68px;
		height: 68px;
		left: 0;
	}
	.education-studio__container{
		width: 300px;
		padding-top: 15px;
	}
	.education-studio__col{
		width: 100%;
		padding: 0 0 20px;
	}
	.education-studio__item {
		padding: 22px 27px 12px;
	}
	.education-studio__name{
		min-height: 0;
		font-size: 14px;
	}
	.education-studio__day{
		font-size: 12px;
	}
	.education-studio__time li{
		font-size: 14px;
	}
	.site-gallery__item{
		width: 50%;
	}
	.education-mont__container{
		width: 300px;
	}
	.education-mont__col{
		width: 100%;
		padding: 0 0 30px;
	}
	.education-mont__title{
		font-size: 16px;
	}
	.education-mont__text{
		padding: 25px 15px 3px;
	}
	.mont-contact {
		padding: 30px 15px 35px;
	}
	.mont-contact__text-1{
		font-size: 14px;
	}
	.mont-contact__text-2{
		font-size: 12px;
		text-align: center;
	}
	.mont-contact__phone{
		font-size: 21px;
	}
	.garden-schedule__container{
		width: 300px;
	}
	.garden-schedule__col{
		width: 100%;
		padding: 0 0 30px;
	}
	.garden-schedule__title{
		font-size: 16px;
	}
	.garden-schedule__list{
		padding: 30px 20px 10px;
	}
	.garden-teacher__container {
		width: 400px;
	}
	.garden-teacher__image{
		width: 100px;
		height: 100px;
		margin-bottom: 10px;
	}
	.garden-teacher__name{
		font-size: 16px;
		margin-bottom: 7px;
	}
	.garden-teacher__status {
		font-size: 14px;
	}
	.page-desc{
		font-size: 14px;
	}
	.camp-plan__head{
		height: auto;
		padding: 20px;
		flex-direction: column;
		align-items: flex-start;
	}
	.camp-plan__dates {
		width: auto;
		font-size: 16px;
		margin: 0 0 5px;
	}
	.camp-plan__top{
		height: auto;
		flex-direction: column;
	}
	.camp-plan__date{
		width: 100%;
		padding: 12px 20px 10px;
		font-size: 14px;
	}
	.camp-plan__name{
		padding: 12px 20px 10px;
		font-size: 14px;
	}
	.camp-plan__list{
		font-size: 12px;
		padding: 0 12px;
	}
	.page-contact{
		width: 500px;
		max-width: 100%;
		margin: 0 auto;
	}
	.page-contact__col{
		width: 100%;
	}

	.infopopup__container{
		padding: 60px 0 30px;
	}
	.infopopup__close{
		width: 40px;
		height: 40px;
	}
	.infopopup-schedule{
		padding: 0;
	}
	.infopopup-schedule__table table thead td{
		padding: 15px;
		font-size: 14px;
	}
	.infopopup-schedule__table table tbody td{
		padding: 15px;
		font-size: 14px;
	}
	.infopopup-group__col {
		width: 100%;
	}
	.infopopup-group__title{
		min-height: 40px;
		padding: 10px 20px;
		justify-content: center;
		text-align: center;
		font-size: 16px;
	}
	.infopopup-group__text{
		font-size: 14px;
	}
	.infopopup-regime{
		padding: 20px 0;
	}
	.infopopup-regime__list {
		font-size: 14px;
	}
	.infopopup-regime__list li{
		margin-bottom: 3px;
	}
	.infopopup-menu__col {
		width: 100%;
	}
	.infopopup-menu__title{
		min-height: 40px;
		padding: 10px 20px;
		justify-content: center;
		text-align: center;
		font-size: 16px;
	}
	.infopopup-menu__text{
		font-size: 14px;
	}
	
	
}
@media only screen and (max-width: 480px){
	.section-news__col{
		min-width: 78%;
		max-width: 78%;
	}
	.education-about__time{
		font-size: 12px;
	}
}
@media only screen and (max-width: 360px){
	
}

