/*!
Theme Name: Kristina Gorbach
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kristinagorbach
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Kristina Gorbach is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--container: 1280px;
	--container-sm: calc(var(--container) * 0.83);

	--text-size: 16px;
	--text-size-sm: 14px;
	--h1-size: 36px;
	--h2-size: 32px;
	--h3-size: 28px;
	--h4-size: 24px;
	--h5-size: 20px;
	--h6-size: 18px;

	--black: #252525;
	--white: #ffffff;
	--green: #434F45;
	--rose: #F5D7F1;
	--grey: #F4F3EF;
}


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

body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.5;
	color: var(--black);
	background: var(--white);
}
a {
	text-decoration: none;
	color: var(--green);
	transition: .25s;
}
img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	vertical-align: middle;
}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 20px;
}
h1, .h1 {
	font-size: var(--h1-size);
}
h2, .h2 {
	font-size: var(--h2-size);
}
h3, .h3 {
	font-size: var(--h3-size);
}
h4, .h4 {
	font-size: var(--h4-size);
}
h5, .h5 {
	font-size: var(--h5-size);
}
h6, .h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 15px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
b, strong {
	font-weight: 600;
}


.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.form-field {
	position: relative;
	margin-bottom: 20px;
}
.form-field.center {
	text-align: center;
	display: flex;
	justify-content: center;
}
.form-field-50,
.form-field-100 {
	padding: 0 10px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-100 {
	flex: 0 0 100%;
	max-width: 100%;
}
.form-field > label {
	display: block;
	line-height: 1.22;
	margin-bottom: 10px;
	font-weight: 600;
	color: var(--black);
}
.form-field > label sup {
	color: #D70909;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="password"],
select,
textarea {
	width: 100%;
	outline: none;
	background: var(--white);
	border: 1px solid #89969F;
	border-radius: 10px;
	font-size: var(--text-size-sm);
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.5;
	padding: 16px 25px;
}
select {
	appearance: none;
	cursor: pointer;
	background: transparent url(images/caret-down.svg) no-repeat right top;
	background-size: 18px;
	padding-right: 24px;
}
textarea {
	height: 160px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	border-color: var(--green);
}

input[type="text"].error,
input[type="tel"].error,
input[type="email"].error,
input[type="date"].error,
input[type="password"].error,
select.error,
textarea.error {
	border-color: #E10000;
}
input[type="text"].wpcf7-not-valid,
input[type="tel"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
input[type="date"].wpcf7-not-valid,
input[type="password"].wpcf7-not-valid,
select.wpcf7-not-valid,
textarea.wpcf7-not-valid {
	border-color: #E10000;
}
.wpcf7-not-valid-tip {
	display: block;
	margin-top: 2px;
	font-size: 12px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	font-size: var(--text-size-sm);
}
.wpcf7-spinner {
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
}
.form-field-policy {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.16;
	color: var(--black);
	margin-top: -5px;
	margin-left: -10px;
	width: calc(100% + 20px);
	margin-left: 0px;
	width: 100%;
	max-width: 360px;
}
.form-field-policy a {
	text-decoration: underline;
	color: var(--black);
}
.form-field-policy a:hover {
	color: var(--green);
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: block;
	padding-left: 30px;
	cursor: pointer;
}
.wpcf7-acceptance input[type="checkbox"] {
	margin: 1px 0 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #89969F;
	width: 20px;
	height: 20px;
	outline: 0;
	padding: 4px;
	margin-right: 0;
	border-radius: 5px;
	position: absolute;
	left: 0;
	top: 13px;
	cursor: pointer;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
	content: "";
    width: 7px;
    height: 10px;
    border-bottom: 1px solid var(--green);
    border-right: 1px solid var(--green);
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    transform: rotate(45deg);
}
.form-field-btn {
	margin-top: 30px;
}

.wpcf7-response-output {
	display: none !important;
}


.important-block-editor,
.question-block-editor {
	position: relative;
	margin-left: 40px;
	background-color: var(--grey);
	padding: 25px 35px 25px 65px;
	font-weight: 500;
	margin-bottom: 25px;
	z-index: 1;
}
.important-block-editor:last-child,
.question-block-editor:last-child {
	margin-bottom: 0;
}
.important-block-editor:before,
.question-block-editor:before {
	content: '';
	position: absolute;
	background-color: var(--green);
	width: 80px;
	height: 80px;
	left: -40px;
	top: calc(50% - 40px);
	z-index: 1;
}
.important-block-editor:after,
.question-block-editor:after {
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 50px;
	height: 50px;
	left: calc(-40px + (80px - 50px) / 2);
	top: calc(50% - 25px);
	z-index: 2;
}
.important-block-editor:after {
	background-image: url(images/ep_warning.svg);
}
.question-block-editor:after {
	background-image: url(images/codicon_question.svg);
}


.container {
	position: relative;
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.container-sm {
	position: relative;
	width: 100%;
	max-width: var(--container-sm);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 70px;
	padding-bottom: 70px;
	z-index: 1;
}

.heading {
	position: relative;
	margin-bottom: 50px;
}
.heading.center {
	text-align: center;
}
.heading h2,
.heading h3 {
	margin-bottom: 15px;
}
.heading h2:last-child,
.heading h3:last-child {
	margin-bottom: 0;
}
.heading p {
	font-size: var(--h6-size);
	line-height: 1.2;
}

.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}



.btn {
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 16px 34px 14px;
    border-radius: 30px;
    font-size: var(--text-size);
    font-weight: 500;
    outline: none;
    min-width: 200px;
    line-height: 1.5;
    cursor: pointer;
    transition: .25s;
}
.btn.disabled,
.btn:disabled {
	opacity: .45;
}
.btn-sm {
	font-size: var(--text-size-sm);
	padding: 6.5px 25px 5.5px;
	min-width: 130px;
}
.btn-md {
    font-size: var(--text-size);
	padding: 10px 25px;
}
.btn-icon-left,
.btn-icon-right {
	position: relative;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	margin-top: -2px;
	transition: .25s;
}
.btn-icon-left {
	margin-right: 10px;
}
.btn-icon-right {
	margin-left: 10px;
}
.btn-icon-left:before,
.btn-icon-right:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.btn-primary {
	background-color: var(--green);
	color: var(--white);
	border-color: var(--green);
}
.btn-primary:hover {
	background-color: var(--black);
	color: var(--white);
	border-color: var(--black);
}
.btn-primary .btn-icon-left:before,
.btn-primary .btn-icon-right:before {
	background-color: var(--white);
}
.btn-secondary {
	background-color: var(--white);
	color: var(--black);
	border-color: var(--white);
}
.btn-secondary:hover {
	background-color: var(--grey);
	color: var(--black);
	border-color: var(--grey);
}
.btn-secondary .btn-icon-left:before,
.btn-secondary .btn-icon-right:before {
	background-color: var(--black);
}
.btn-thirdy {
	background-color: var(--black);
	color: var(--white);
	border-color: var(--black);
}
.btn-thirdy:hover {
	background-color: var(--green);
	color: var(--white);
	border-color: var(--green);
}
.btn-thirdy .btn-icon-left:before,
.btn-thirdy .btn-icon-right:before {
	background-color: var(--white);
}
.btn-outline-secondary {
	background-color: transparent;
	color: var(--white);
	border-color: var(--white);
}
.btn-outline-secondary:hover {
	background-color: var(--green);
	color: var(--white);
	border-color: var(--green);
}
.btn-outline-secondary .btn-icon-left:before,
.btn-outline-secondary .btn-icon-right:before {
	background-color: var(--white);
}
.btn-outline-thirdy {
	background-color: var(--white);
	color: var(--black);
	border-color: #454646;
}
.btn-outline-thirdy:hover {
	background-color: var(--green);
	color: var(--white);
	border-color: var(--black);
}
.btn-outline-thirdy .btn-icon-left:before,
.btn-outline-thirdy .btn-icon-right:before {
	background-color: var(--black);
}
.btn-outline-thirdy:hover .btn-icon-left:before,
.btn-outline-thirdy:hover .btn-icon-right:before {
	background-color: var(--white);
}
.btn-icon-arrow-left:before {
    -webkit-mask-image: url(images/arrow-left-alt-rounded.svg);
    mask-image: url(images/arrow-left-alt-rounded.svg);
}
.btn-icon-arrow-right:before {
    -webkit-mask-image: url(images/arrow-left-alt-rounded.svg);
    mask-image: url(images/arrow-left-alt-rounded.svg);
    transform: scale(-1, 1);
}
.btn-icon-double-arrow-right:before {
    -webkit-mask-image: url(images/double-arrow-right.svg);
    mask-image: url(images/double-arrow-right.svg);
}
.btn-icon-copy:before {
    -webkit-mask-image: url(images/material-symbols_link.svg);
    mask-image: url(images/material-symbols_link.svg);
}
.btn-icon-download:before {
    -webkit-mask-image: url(images/download-sharp.svg);
    mask-image: url(images/download-sharp.svg);
}
.btn-icon-circle:after {
	content: '';
	background-image: url(images/btn-circle.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	top: -5px;
	left: -5px;
	z-index: 1;
}
.btn-secondary .btn-icon-circle:after {
	background-image: url(images/btn-circle-green.svg);
}
.btn-link {
	font-size: var(--h6-size);
	padding: 0;
	border: none;
	min-width: auto !important;
	color: var(--black);
	font-weight: 500;
	padding-left: 23px;
}
.btn-link:hover {
	color: var(--green);
}
.btn-link:before {
	content: '';
	background-color: var(--black);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 8px;
	transition: .25s;
	z-index: 1;
}
.btn-link:hover:before {
	background-color: var(--green);
}



.modal:not(#online-start) {
	position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    /*transition: opacity .15s linear;*/
}
.modal#online-start {
	border-radius: 20px;
}
body.modal-open {
	overflow: hidden;
	/*padding-right: 17px;*/
}
.modal-dialog {
    position: relative;
    width: auto;
    max-width: calc(500px + 30px);
    margin: 1.75rem auto;
    pointer-events: none;
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
    padding: 30px 15px;
    /*transition: transform .3s ease-out;*/
}
.modal-dialog.modal-md {
	max-width: calc(700px + 30px);
}
.modal-dialog.modal-lg {
	max-width: calc(850px + 30px);
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--grey);
    background-clip: padding-box;
    outline: 0;
    padding: 65px 40px 45px;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #080808;
    opacity: 0;
    z-index: -1;
}
.modal-backdrop.show {
    opacity: .35;
    z-index: 1049;
}
.modal-title {
	text-align: center;
	font-size: var(--h4-size);
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 20px;
}
.modal-login .modal-title {
	margin-bottom: 35px;
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/close-bold.svg);
    mask-image: url(images/close-bold.svg);
    background-color: var(--black);
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: .25s;
    z-index: 9;
}
.modal-close:hover {
	background-color: var(--green);
}


.owl-nav {
	position: absolute;
	width: 100%;
	top: calc(50% - 15px);
	z-index: 99;
}
.owl-nav button {
	position: absolute;
	background-color: var(--green) !important;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .25s;
}
.owl-nav button:hover {
	background-color: var(--black) !important;
}
.owl-nav button.owl-prev {
	left: -15px;
}
.owl-nav button.owl-next {
	right: -15px;
	transform: rotate(180deg);
}
.owl-nav button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/mingcute_left-fill.svg);
    mask-image: url(images/mingcute_left-fill.svg);
    background-color: var(--white);
    flex: 0 0 20px;
    max-width: 20px;
    height: 20px;
    transition: .25s;
}


.owl-dots {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}
.owl-dots button {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	border: 1px solid var(--green) !important;
	border-radius: 50%;
	margin-right: 15px;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button:hover,
.owl-dots button.active {
	background-color: var(--green) !important;
}



.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: grid;
	grid-gap: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}
.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}
.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}



.wrapper {
	position: relative;
	z-index: 1;
}


.modal-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .25s;
}
.modal-header.show {
	z-index: 9999;
	opacity: 1;
}
.modal-header-bg {
	background: transparent;
	position: absolute;
	opacity: 0;
	transition: .25s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-header.show .modal-header-bg {
	opacity: 1;
}
.modal-header-wrap {
	position: relative;
	background: var(--green);
	height: 100%;
	width: 100%;
	max-width: calc((100% - var(--container)) / 2 + 550px);
	max-width: 550px;
	transform: translateX(-100%);
	padding: 40px;
	transition: .25s;
	overflow: auto;
	z-index: 1;
}
.modal-header.show .modal-header-wrap {
	transform: translateX(0);
}
.modal-header-wrap::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: var(--white);
}
.modal-header-wrap::-webkit-scrollbar {
	width: 10px;
	background-color: var(--white);
}
.modal-header-wrap::-webkit-scrollbar-thumb {
	background-color: var(--green);
	border: 1px solid var(--white);
}
.modal-header-top {
	display: flex;
	align-items: center;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--white);
	margin-bottom: 30px;
}
.modal-header-close {
	position: relative;
    flex: 0 0 30px;
    max-width: 30px;
	width: 30px;
	height: 30px;
	border: 1px solid var(--white);
	border-radius: 50%;
	background: none;
	margin-right: 25px;
	padding: 0;
	outline: none !important;
	cursor: pointer;
	z-index: 1;
	transition: .25s;
}
.modal-header-close:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/close-bold.svg);
    mask-image: url(images/close-bold.svg);
    background-color: var(--white);
	transition: .25s;
}
.modal-header-close:hover {
	background: var(--white);
}
.modal-header-close:hover:before {
	background-color: var(--green);
}
.modal-header-logo {
	flex: auto;
	max-width: 100%;
}
.modal-header-line {
	position: relative;
	width: 470px;
	height: 1px;
	background-color: var(--white);
}
@media(min-width:992px) {
	.modal-header-top .header-button,
	.modal-header-top .header-cart,
	.modal-header-soc {
		display: none !important;
	}
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1.21;
}
.main-menu > li {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 25px;
}
.main-menu > li:last-child {
	margin-bottom: 0;
}
.main-menu li a {
	color: var(--white);
}
.main-menu li a:hover {
	color: var(--grey);
}
.main-menu > li > a {
	flex: 0 0 calc(100% - 25px);
	max-width: calc(100% - 25px);
	padding-right: 20px;
	font-weight: 600;
	order: 1;
}
.main-menu-chevrone {
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-up.svg);
	mask-image: url(images/arrow-up.svg);
	background-color: var(--white);
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	transform: rotate(180deg);
	cursor: pointer;
	order: 2;
	transition: .25s;
	z-index: 1;
}
.main-menu li:hover > .main-menu-chevrone {
	background-color: var(--grey);
}
.main-menu li.active > .main-menu-chevrone {
	transform: rotate(0deg);
}
.main-menu ul {
	display: none;
	flex: 0 0 100%;
	max-width: 100%;
	margin: 20px 0 0 20px;
	padding: 0;
	list-style: none;
	order: 3;
}
.main-menu li.active > ul {
	display: block;
}
.main-menu ul li {
	margin-bottom: 20px;
}
.main-menu ul li:last-child {
	margin-bottom: 0;
}




.header {
	position: relative;
	top: 0;
	width: 100%;
	background: var(--green);
	z-index: 99;
}
.header.header-absolute {
	position: absolute;
	background: none;
}
.header.header-fixed {
	position: fixed;
	background: var(--green);
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
}
.header-toggle {
	flex: 0 0 30px;
	max-width: 30px;
	margin-right: 78px;
	display: flex;
	align-items: center;
}
.header-toggle button {
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: var(--white);
	flex: 0 0 30px;
	max-width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .25s;
}
.header-toggle button:hover {
	background-color: var(--grey);
}
.header-logo {
	flex: auto;
	max-width: 100%;
	margin-right: 30px;
}
.header-soc,
.modal-header-soc {
	margin: 0 30px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.header-soc li,
.modal-header-soc li {
	margin-right: 20px;
}
.header-soc li:last-child,
.modal-header-soc li:last-child {
	margin-right: 0;
}
.header-soc li a,
.modal-header-soc li a {
	display: flex;
	align-items: center;
}
.header-soc li a svg,
.modal-header-soc li a svg {
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
}
.header-soc li a svg path,
.modal-header-soc li a svg path {
	fill: var(--white);
	transition: .25s;
}
.header-soc li a:hover svg path,
.modal-header-soc li a:hover svg path {
	fill: var(--grey);
}
.header-button {
	position: relative;
	margin-right: 30px;
}
.header-button a {
	display: inline-block;
	border: 1px solid var(--white);
	text-align: center;
	padding: 8.5px 20px;
	font-size: var(--text-size-sm);
	border-radius: 8px;
	color: var(--white);
	cursor: pointer;
}
.header-button a:hover {
	background: var(--white);
	color: var(--green);
}
.header-cart {
	position: relative;
	display: flex;
}
.header-cart a {
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
}
.header-cart a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/shopping-bag.svg);
	mask-image: url(images/shopping-bag.svg);
	background-color: var(--white);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.header-cart a:hover:before {
	background-color: var(--grey);
}
.header-cart a span {
	background: var(--rose);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-size-sm);
    font-weight: 500;
    border-radius: 50%;
    z-index: 9;
}


.main-content {
	position: relative;
	overflow: hidden;
}


.page-header {
	position: relative;
	padding: 80px 0;
	z-index: 1;
}
.page-title {
	position: relative;
	text-align: center;
	font-size: calc(var(--h1-size) * 1.33);
	font-weight: 500;
}
.page-content-inner ul,
.page-content-inner ol {
	margin-top: -5px;
}
.page-content-inner li {
	margin-bottom: 10px;
}
.page-content-inner li:last-child {
	margin-bottom: 0;
}
.page-content-inner a {
	text-decoration: underline;
	color: var(--black);
}
.page-content-inner a:hover {
	color: var(--green);
}





.footer {
	position: relative;
	background-color: var(--green);
	padding: 80px 0 30px;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -15px 75px;
}
.footer-widget {
	position: relative;
	padding: 0 15px;
	flex: 0 0 calc(100% / 3);
	max-width: 300px;
}
.footer-widget:nth-child(2) {
	text-align: center;
	margin-top: -12px;
}
.footer-link {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 25px;
}
.footer-link a {
	color: var(--white);
}
.footer-link a:hover {
	color: var(--grey);
}
.footer-menu-1 {
	margin: 0 0 35px;
	padding: 0;
	list-style: none;
}
.footer-menu-1 li {
	position: relative;
	margin-bottom: 25px;
}
.footer-menu-1 li:last-child {
	margin-bottom: 0;
}
.footer-menu-1 li a {
	font-weight: 600;
	color: var(--white);
}
.footer-menu-1 li a:hover {
	color: var(--grey);
}
.payment-logo {
	position: relative;
}
.payment-logo img {
	max-height: 60px;
}
.footer-photo {
	position: relative;
	width: 175px;
	height: 175px;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto 45px;
}
.footer-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.footer-email {
	margin-bottom: 25px;
	line-height: 1.2;
}
.footer-email a {
	color: var(--white);
}
.footer-email a:hover {
	color: var(--grey);
}
.footer-soc {
	margin: 0 0 25px 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.footer-soc li {
	margin-right: 20px;
}
.footer-soc li:last-child {
	margin-right: 0;
}
.footer-soc li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--white);
	border-radius: 50%;
}
.footer-soc li a:hover {
	background-color: var(--white);
}
.footer-soc li a svg {
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
}
.footer-soc li a svg path {
	fill: var(--white);
	transition: .25s;
}
.footer-soc li a:hover svg path {
	fill: var(--green);
}
.footer-menu-2 {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-menu-2 li {
	position: relative;
	margin-bottom: 25px;
}
.footer-menu-2 li:last-child {
	margin-bottom: 0;
}
.footer-menu-2 li a {
	line-height: 1.2;
	color: var(--white);
}
.footer-menu-2 li a:hover {
	color: var(--grey);
}
.copyright {
	position: relative;
	text-align: center;
	color: var(--grey);
	font-size: var(--text-size-sm);
	line-height: 1.2;
}


.modal-consultation-form {
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}
.modal-consultation .modal-content {
	padding-left: 65px;
	padding-right: 65px;
}




.error-404-image {
	text-align: center;
	margin-bottom: 100px;
}
.error-404-image img {
	max-height: 200px;
}
.error-404-title {
	font-size: var(--h2-size);
	text-align: center;
	font-weight: 500;
	color: #000000;
	margin-bottom: 60px;
}
.error-404-button {
	text-align: center;
}



/*----- Modal Cart Start -----*/
.modal-cart .modal-content {
	padding: 0;
	border-radius: 15px;
	overflow: hidden;
}
.modal-cart .modal-title {
	background-color: var(--green);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	font-size: var(--h5-size);
	font-weight: 600;
	padding: 0 60px;
	margin-bottom: 0;
}
.modal-cart .modal-close {
	top: 15px;
	right: 15px;
	background-color: var(--white);
}
.modal-cart .modal-close:hover {
	background-color: var(--grey);
}
.cart-wrap {
	position: relative;
	padding: 40px 90px;
}
.cart-block {
	position: relative;
	margin-bottom: 30px;
}
.cart-block:last-child {
	margin-bottom: 0;
}
.cart-title {
	font-size: var(--h6-size);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 30px;
}
.cart-items {
	position: relative;
	margin-bottom: 23px;
}
.cart-item {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #D9D9D9;
	display: flex;
	align-items: center;
}
.cart-item:last-child {
	margin-bottom: 0;
}
.cart-item__image {
	flex: 0 0 55px;
	max-width: 55px;
	margin-right: 20px;
	height: 55px;
}
.cart-item__image img {
	border-radius: 50%;
	width: 100%;
	max-height: 55px;
	height: 100%;
}
.cart-item__title {
	position: relative;
	flex: auto;
	max-width: 100%;
	color: #000000;
	margin-right: 30px;
}
.cart-item__price {
	position: relative;
	flex: 0 0 155px;/*90*/
  	max-width: 155px;
	color: #000000;
	margin-right: 20px;
	text-align: right;
}
.cart-item__price .old {
	font-size: 13px;
  	color: var(--account-black-40);
  	text-decoration: line-through;
  	margin-right: 12px;
}
.cart-item__remove {
	position: relative;
	flex: 0 0 34px;
	max-width: 34px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.cart-item__remove:before {
	content: '';
	background: #ADADAD;
	width: 1px;
	height: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	z-index: 1;
}
.cart-item__remove button {
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/delete-outline.svg);
    mask-image: url(images/delete-outline.svg);
    background-color: var(--green);
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 0;
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
    transition: .25s;
}
.cart-item__remove button:hover {
	background-color: var(--black);
}
.cart-total {
	position: relative;
	display: flex;
  	justify-content: space-between;
  	align-items: flex-start;
}
.cart-summ {
	display: inline-block;
	background-color: var(--green);
	color: var(--white);
	border-radius: 5px;
	padding: 7px 10px;
	font-weight: 600;
}

.cart-total .promocode {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cart-total .promocode input {
	height: 38px;
	max-width: 175px;
	padding: 0 12px;
}

.cart-total .promocode .btn {
	padding: 0 12px;
	min-width: 10px;
	height: 38px;
	font-size: 14px;
}
/*----- Modal Cart End -----*/





.mainBlock-section {
	position: relative;
	z-index: 1;
}
.mainBlock-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.mainBlock-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.mainBlock-bg-overlay {
	position: absolute;
	background-color: #080808;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.mainBlock-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 855px;
	height: 100vh;
	padding: 100px 0;
	z-index: 1;
}
.home .mainBlock-wrap {
	padding-bottom: 60px;
}
.page-template-page-about .mainBlock-wrap {
	padding-bottom: 200px;
	max-width: 760px;
    margin-left: auto;
}
.page-template-page-group .mainBlock-wrap,
.page-template-page-food .mainBlock-wrap,
body.archive .mainBlock-wrap {
	padding-bottom: 150px;
}
.page-template-page-course .mainBlock-wrap {
	padding-bottom: 40px;
}
.mainBlock-title {
	position: relative;
	font-size: calc(var(--h1-size) * 1.33);
	font-weight: 700;
	text-align: center;
	color: var(--white);
	margin-bottom: 0px;
}
.mainBlock-title:last-child {
	margin-bottom: 0;
}
.mainBlock-content {
	position: relative;
	font-size: var(--h5-size);
	margin-top: 30px;
	color: var(--white);
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
.home .mainBlock-content {
	position: absolute;
	left: 0;
	bottom: 65px;
	margin-top: 0;
	z-index: 2;
}
.page-template-page-online-fitness .mainBlock-content {
	margin-top: 40px;
}
.page-template-page-online-fitness .mainBlock-content strong {
	font-size: calc(var(--h4-size) / 1.09);
}
.mainBlock-actions {
	position: relative;
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-template-page-online-fitness .mainBlock-actions {
	margin-top: 75px;
}
.mainBlock-actions > div {
	margin-right: 40px;
}
.mainBlock-actions > div:last-child {
	margin-right: 0;
}
.mainBlock-video a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid var(--white);
	border-radius: 50%;
	animation: pulse 2s infinite;
	z-index: 1;
}
.mainBlock-video a:hover {
	background-color: var(--white);
}
.mainBlock-video a:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/play-arrow-rounded.svg);
    mask-image: url(images/play-arrow-rounded.svg);
    background-color: var(--white);
    flex: 0 0 17px;
    max-width: 17px;
    width: 17px;
    height: 17px;
    transition: .25s;
}
.mainBlock-video a:hover:before {
	background-color: var(--green);
}
.fancybox__container {
	--fancybox-bg: rgba(37, 37, 37, 0.35);
}
@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
	}
	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}





.about-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.about-images {
	position: relative;
	flex: 0 0 46%;
	max-width: 46%;
	height: 615px;
	z-index: 1;
}
.about-image-1 {
	position: relative;
	width: 77%;
	height: 100%;
	overflow: hidden;
	border-radius: 5px 5px 0 5px;
	z-index: 1;
}
.about-image-2 {
	position: absolute;
	overflow: hidden;
	width: 61%;
	height: calc(100% - 93px);
	bottom: 60px;
	right: 0;
	border-radius: 5px 5px 0 5px;
	z-index: 2;
}
.about-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.about-video {
	position: absolute;
	width: 23%;
	height: 60px;
	right: 0;
	bottom: 0;
	z-index: 3;
}
.about-video a {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #E0E0D9;
}
.about-video a:hover {
	background-color: var(--green);
}
.about-video a:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/play-arrow-rounded.svg);
    mask-image: url(images/play-arrow-rounded.svg);
    background-color: var(--black);
    flex: 0 0 25px;
    max-width: 25px;
    width: 25px;
    height: 25px;
    transition: .25s;
}
.about-video a:hover:before {
	background-color: var(--white);
}
.about-info {
	flex: 0 0 calc(54% - 110px);
	max-width: calc(54% - 110px);
}
.about-info .heading {
	margin-bottom: 30px;
}
.about-button {
	margin-top: 35px;
}




.help-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.help-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.help-bg:after {
	content: '';
	position: absolute;
	background-color: var(--black);
	opacity: .2;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.help-section .heading {
	text-align: center;
	color: var(--white);
}
.help-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -22px -44px;
}
.help-item {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	padding: 0 22px;
	margin-bottom: 44px;
}
.help-item__wrap {
	position: relative;
	height: 100%;
	border-radius: 20px;
	background: rgba(127, 162, 189, 0.50);
	padding: 40px;
}
.help-item__image {
	text-align: center;
	margin-bottom: 25px;
}
.help-item__image img {
	max-height: 80px;
}
.help-item__text {
	font-size: var(--h6-size);
	text-align: center;
	line-height: 1.22;
	color: var(--white);
	font-weight: 600;
}





.services-item {
	position: relative;
	margin-bottom: 50px;
}
.services-item:last-child {
	margin-bottom: 0;
}
.services-item__wrap {
	position: relative;
	background-color: transparent;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-radius: 20px;
	padding: 50px;
}
.services-item__wrap.purple {
	background-color: #F5D7F1;
}
.services-item__wrap.blue {
	background-color: #D7E8F5;
}
.services-item__wrap.orange {
	background-color: #F5D0BF;
}
.services-item__wrap.green {
	background: rgba(40, 59, 10, 0.40);
}
.services-item__wrap.brown {
	background: rgba(151, 123, 99, 0.60);
}
.services-item__image {
	text-align: center;
	flex: 0 0 42%;
	max-width: 42%;
}
.services-item__image img {
	max-width: 325px;
	border-radius: 50%;
}
.services-item__info {
	flex: 0 0 calc(58% - 80px);
	max-width: calc(58% - 80px);
}
.services-item__title {
	font-weight: 700;
}
.services-item__content {
	font-size: var(--h6-size);
}
.services-item__button {
	margin-top: 35px;
}
.btn-purple {
	background-color: #CA96C3;
	color: var(--white);
}
.btn-blue {
	background-color: #7FA2BD;
	color: var(--white);
}
.btn-orange {
	background-color: #CA8B6E;
	color: var(--white);
}
.btn-green {
	background: #505842;
	color: var(--white);
}
.btn-brown {
	background: #977B63;
	color: var(--white);
}
.services-item__button .btn:hover {
	opacity: .75;
}




.reviews-section {
	background-color: var(--grey);
}
.page-template-page-online-fitness .reviews-section,
.page-template-page-meditations-2 .reviews-section,
.page-template-page-group .reviews-section,
.page-template-page-food .reviews-section,
.page-template-page-course .reviews-section {
	background-color: var(--white);
	padding: 100px 0;
}
/*.reviews-items {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.owl-reviews .owl-item {
	opacity: 0;
	z-index: -1;
    transition: .25s;
}
.owl-reviews .owl-item.active {
	opacity: 1;
}
.owl-reviews .owl-item:nth-child(1 of div.active),
.owl-reviews .owl-item:nth-child(5 of div.active) {
	transform: scale(.55);
	opacity: 1;
	z-index: 1;
}
.owl-reviews .owl-item:nth-child(2 of div.active),
.owl-reviews .owl-item:nth-child(4 of div.active) {
	transform: scale(.77);
	opacity: 1;
	z-index: 2;
}
.owl-reviews .owl-item.active.center {
	opacity: 1;
	z-index: 3;
}*/
.reviews-item {
	text-align: center;
    /*width: 400px;*/
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 8px;
    padding: 5px;
    transition: .25s;
}
.reviews-item img {
	width: auto !important;
	max-width: 100%;
	max-height: 360px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
    transition: .25s;
}
.reviews-button {
	position: relative;
	text-align: center;
	margin-top: 50px;
}





.blog-heading {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}
.blog-heading .heading {
	margin-bottom: 0;
	flex: auto;
	max-width: 100%;
}
.blog-button {
	margin-left: 40px;
	flex: 0 0 auto;
}
.blog-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -40px;
}
.relatedBlog-items {
	margin: 0;
}
.blog-items.owl-carousel {
	margin: 0;
}
.blog-item {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 40px;
	padding: 0 10px;
}
.owl-carousel .blog-item {
	margin: 0;
	padding: 2px 10px 18px;
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.relatedBlog-items .blog-item {
	padding: 0;
	margin: 0 0 40px;
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
@media(min-width:992px) {
	.relatedBlog-items .blog-item:last-child {
		margin-bottom: 0;
	}
}
.blog-item__wrap {
	position: relative;
	box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.owl-carousel .blog-item__wrap {
	box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.15);
}
.blog-item__image {
	position: relative;
	flex: 0 0 calc((var(--container) - 20px * 2) / 3 / 1.475);
	max-height: calc((var(--container) - 20px * 2) / 3 / 1.475);
}
.blog-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.blog-item__info {
	position: relative;
	flex: auto;
	max-height: 100%;
	padding: 25px 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.blog-item__title,
.blog-item__hover-title {
	font-size: var(--h6-size);
	font-weight: 600;
	line-height: 1.25;
}
.blog-item__title {
	min-height: 69px;
	margin-bottom: 14px;
}
.blog-item__hover-title {
	margin-bottom: 23px;
}
.blog-item__title a,
.blog-item__hover-title a {
	color: var(--black);
}
.blog-item__title:hover a,
.blog-item__hover-title:hover a {
	color: var(--green);
}
.blog-item__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.blog-item__date {
	font-size: var(--text-size-sm);
	margin-bottom: 0;
	color: var(--black);
	text-transform: lowercase;
	opacity: .6;
}
.blog-item__more {
	display: none;
}
.blog-item__hover {
	position: absolute;
	background-color: var(--rose);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	transition: .25s;
	z-index: 2;
}
.blog-item__wrap:hover .blog-item__hover {
	opacity: 1;
	visibility: inherit;
}
.blog-item__hover-excerpt {
	margin-bottom: 32px;
}
.blog-nav {
	margin-left: 40px;
	display: flex;
	align-items: center;
}
.blog-nav.disabled {
	display: none;
}
.blog-nav button {
	flex: 0 0 35px;
	max-width: 35px;
	width: 35px;
	height: 35px;
	margin-right: 10px;
	background-color: var(--white);
	border: 1px solid #89969F;
	border-radius: 50%;
	padding: 0;
	outline: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .25s;
}
.blog-nav button:last-child {
	margin-right: 0;
}
.blog-nav button:hover {
	background-color: var(--green);
}
.blog-nav button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-left-alt-rounded.svg);
    mask-image: url(images/arrow-left-alt-rounded.svg);
    background-color: var(--black);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    transition: .25s;
}
.blog-nav button.owl-next:before {
	transform: scale(-1, 1);
}
.blog-nav button:hover:before {
	background-color: var(--white);
}


.pageAboutAbout-section {
	margin: 23px 0;
}
.pageAboutAbout-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 37px 42% 37px 20px;
	min-height: 494px;
	z-index: 1;
}
.pageAboutAbout-wrap:before {
	content: '';
	background-color: var(--grey);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
	z-index: -1;
}
.pageAboutAbout-image {
	position: absolute;
	width: 32%;
	height: calc(100% + 46px);
	top: -23px;
	right: 85px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	z-index: 1;
}
.pageAboutAbout-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pageAboutAbout-info {

}
.pageAboutAbout-content {
	font-size: var(--h6-size);
}
.pageAboutAbout-content p:first-child strong {
	font-size: var(--h5-size);
}
.pageAboutAbout-content blockquote {
	position: relative;
	padding: 17px 0 5px 59px;
	font-size: calc(var(--h4-size) / 1.09);
}
.pageAboutAbout-content blockquote:before {
	content: '';
	background: url(images/double-quotes-l.svg) no-repeat center;
	background-size: contain;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


.goal-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.goal-items {
	position: relative;
	display: flex;
	align-content: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	flex: 0 0 calc(43% - 110px);
	max-width: calc(43% - 110px);
	margin-top: 35px;
}
.goal-item {
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
	margin-bottom: 30px;
}
.goal-item__wrap {
	position: relative;
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
	height: 100%;
	padding: 25px 30px;
}
.goal-item__value {
	color: #FFA0F2;
	font-size: var(--h1-size);
	font-weight: 700;
	text-align: center;
	margin-bottom: 10px;
	line-height: 1.22;
}
.goal-item__value sup {
	font-size: var(--h2-size);
}
.goal-item__text {
	font-size: var(--h5-size);
	text-align: center;
	line-height: 1.2;
}
.goal-content {
	flex: 0 0 57%;
	max-width: 57%;
	font-size: var(--h6-size);
}
.goal-content ul {
	padding: 0;
	list-style: none;
}
.goal-content ul li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 10px;
	z-index: 1;
}
.goal-content ul li:last-child {
	margin-bottom: 0;
}
.goal-content ul li:before {
	content: '';
	background: url(images/check-circle.svg) no-repeat center;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.goal-content blockquote {
	position: relative;
	background-color: var(--grey);
	padding: 20px;
	border-radius: 20px;
}





.programInfo-section .heading {
	margin-bottom: 65px;
}
.programInfo-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	/*margin: 0 -25px -70px;*/
	gap: 70px 0;
}
.programInfo-item {
	position: relative;
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 25px;
}
.programInfo-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.programInfo-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 2px solid #7FA2BD;
	border-radius: 50%;
	flex: 0 0 70px;
	max-width: 70px;
	height: 70px;
	margin-right: 20px;
}
.programInfo-item__image img {
	max-height: 45px;
}
.programInfo-item__text {
	flex: auto;
	max-width: 100%;
	font-size: var(--h6-size);
	line-height: 1.25;
}




.pageOnlineFitnessAbout-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	min-height: 380px;
	z-index: 1;
}
.pageOnlineFitnessAbout-image {
	position: relative;
	flex: 0 0 40%;
	max-width: 40%;
	height: calc(100% - 40px);
	margin-top: 20px;
	border-radius: 30px;
	overflow: hidden;
	z-index: 1;
}
.pageOnlineFitnessAbout-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pageOnlineFitnessAbout-info {
	position: relative;
	flex: 0 0 calc(60% - 100px);
	max-width: calc(60% - 100px);
	padding: 54px 0;
}
.pageOnlineFitnessAbout-info:before {
	content: '';
	background-color: var(--grey);
	position: absolute;
	width: calc(100% + ((100vw - var(--container)) / 2) + 100px + 200px);
	height: 100%;
	top: 0;
	left: calc(-100px - 200px);
	border-radius: 100px 0 0 100px;
	z-index: -1;
}
.pageOnlineFitnessAbout-info .heading {
	margin-bottom: 25px;
}
.pageOnlineFitnessAbout-content {
	font-size: var(--h5-size);
}
.pageOnlineFitnessAbout-button {
	margin-top: 35px;
}
.pageOnlineFitnessAbout-video {
	position: absolute;
	width: 65px;
	height: 65px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}
.pageOnlineFitnessAbout-video a {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--grey);
    border-radius: 50%;
}
.pageOnlineFitnessAbout-video a:hover {
	background-color: var(--green);
}
.pageOnlineFitnessAbout-video a:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/play-arrow-rounded.svg);
    mask-image: url(images/play-arrow-rounded.svg);
    background-color: var(--black);
    flex: 0 0 23px;
    max-width: 23px;
    width: 23px;
    height: 23px;
    transition: .25s;
}
.pageOnlineFitnessAbout-video a:hover:before {
	background-color: var(--white);
}




.forWhom-section .heading {
	margin-bottom: 40px;
}
.forWhom-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.forWhom-item {
	position: relative;
	flex: 0 0 25%;
	max-width: 25%;
	margin-bottom: 30px;
	padding: 0 15px;
}
.forWhom-item__wrap {
	position: relative;
	background-color: var(--rose);
	border-radius: 20px;
	padding: 30px 25px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.forWhom-item__image {
	width: 70px;
	flex: 0 0 70px;
	max-height: 70px;
	margin-bottom: 20px;
	border-radius: 50%;
	overflow: hidden;
}
.forWhom-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.forWhom-item__title {
	flex: auto;
	max-height: 100%;
	font-size: var(--h6-size);
	font-weight: 500;
	margin-bottom: 10px;
	line-height: 1.22;
}
.forWhom-item__text {
	font-size: var(--text-size-sm);
	line-height: 1.22;
}

.forWhom-block {
	position: relative;
	margin-top: 50px;
	background-color: var(--grey);
	padding: 40px 0;
	z-index: 1;
}
.forWhom-block-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.forWhom-block-content {
	flex: auto;
	max-width: 100%;
	font-size: calc(var(--h4-size) / 1.09);
	font-weight: 500;
	line-height: 1.25;
}
.forWhom-block-button {
	flex: 0 0 220px;
	max-width: 220px;
	margin-left: 40px;
}




.schedule-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -13px -26px;
}
.schedule-item {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 26px;
	padding: 0 13px;
}
.schedule-item__wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	padding: 32px 50px;
	height: 100%;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 1;
}
.schedule-item__bgimage {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.schedule-item__bgimage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.schedule-item__bgimage:after {
	content: '';
	position: absolute;
	background-color: var(--black);
	opacity: .6;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.schedule-item__title {
	flex: auto;
	max-height: 100%;
	font-size: calc(var(--h3-size) / 1.07);
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1.22;
	color: var(--white);
}
.schedule-item__days {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.schedule-item__days p {
	margin: 0 10px 0 0;
	padding: 8px;
	font-size: calc(var(--h4-size) / 1.09);
	font-weight: 700;
	color: #FFA0F2;
}
.schedule-item__days p:last-child {
	margin-right: 0;
}
.schedule-item__time {
	text-align: center;
}
.schedule-item__time span {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	border: 2px solid var(--white);
	padding: 12px 18px;
	font-size: var(--h5-size);
	font-weight: 500;
	color: var(--white);
	z-index: 1;
}
.schedule-item__time span:before {
	content: '';
	background: url(images/clock-time-four-outline.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}






.abonements-section {
	background-color: var(--grey);
}
.abonements-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -50px;
}
.abonements-item {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 50px;
	padding: 0 10px;
}
.abonements-item.disabled {
	opacity: 0.5;
}
.abonements-item__wrap {
	position: relative;
	z-index: 1;
}
.abonements-item__image {
	position: relative;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	height: calc((var(--container) - 2 * 20px) / 3 / 1.239);
	z-index: 1;
}
.abonements-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.abonements-item__image span {
	z-index: 2;
	left: 20px;
	top: 20px;
	position: absolute;
	display: flex;
	width: 45px;
	height: 45px;
	background: var(--white);
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	border-radius: 50%;
}
.abonements-item__meta {

	position: relative;
	display: flex;
}
.abonements-item__meta p {
	flex: 0 0 50%;
	max-width: 50%;
	margin-bottom: 0;
	min-height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 10px;
	font-size: var(--h5-size);
	font-weight: 600;
	position: relative;
}
.abonements-item__meta p.with-old {
	justify-content: flex-end;
}

.abonements-item__meta p.with-old .cur {
	text-align: right;
}
.abonements-item__meta p.abonements-item__price .old {
	font-size: 16px;
	color: #252525;
	text-decoration: line-through;
	position: absolute;
	left: 10px;
	top: 10px;
	font-weight: 400;
}
.abonements-item__time {
	background-color: #D7E8F5;
	border-radius: 0 0 0 20px;
}
.abonements-item__price {
	background-color: var(--grey);
	border-radius: 0 0 20px 0;
}
.abonements-item__button {
	position: relative;
	margin-top: 20px;
}
.abonements-item__button .btn {
	width: 100%;
}
.abonements-item__button span.btn {
	background-color: #ABABAB;
	color: #fff;
}



.inventory-section {
	padding-bottom: 60px;
}
.inventory-items {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 0 -30px;
}
.inventory-item {
	position: relative;
	margin-bottom: 30px;
	flex: 0 0 200px;
	max-width: 200px;
	height: 200px;
	border: 1px dashed var(--black);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}
.inventory-item__wrap {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
	background-color: #D7E8F5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inventory-item img {
	max-width: 150px;
	max-height: 150px;
}
.inventory-item__count {
	position: absolute;
    top: 11px;
    left: 5px;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: #7FA2BD;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--h5-size);
    font-weight: 600;
}
.inventory-video {
	position: relative;
	padding: 50px 0;
	background-color: var(--grey);
	z-index: 1;
}
.video-player {
	width: 100%;
	height: calc(var(--container-sm) / 2.2);
}
.video-player-radius {
	border-radius: 20px;
	overflow: hidden;
}
.video-player-preview {
	position: relative;
	height: 100%;
	cursor: pointer;
	z-index: 1;
}
.video-player-play {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--grey);
    border-radius: 50%;
    z-index: 3;
}
.video-player-play:hover {
	background-color: var(--green);
}
.video-player-play:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/play-arrow-rounded.svg);
    mask-image: url(images/play-arrow-rounded.svg);
    background-color: var(--black);
    flex: 0 0 28px;
    max-width: 28px;
    width: 28px;
    height: 28px;
    transition: .25s;
}
.video-player-play:hover:before {
	background-color: var(--white);
}
.video-player img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.video-player iframe {
	width: 100%;
	height: 100%;
}




.faq-section {
	background-color: var(--grey);
}
.faq-items {
	position: relative;
}
.faq-item {
	position: relative;
	margin-bottom: 13px;
}
.faq-item:last-child {
	margin-bottom: 0;
}
.faq-item__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--white);
	padding: 30px;
	border-radius: 10px;
	cursor: pointer;
}
.faq-item__title:hover {
	color: var(--green);
}
.faq-item__title p {
	font-size: var(--h5-size);
	font-weight: 500;
	margin-bottom: 0;
}
.faq-item__title:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-up.svg);
	mask-image: url(images/arrow-up.svg);
	background-color: var(--black);
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	margin-left: 20px;
	transform: rotate(180deg);
	transition: .25s;
}
.faq-item__title:hover:after {
	background-color: var(--green);
}
.active > .faq-item__title:after {
	transform: rotate(0deg);
}
.faq-item__content {
	display: none;
	padding: 25px 30px;
}






.pageMeditationsAbout-section {
	margin: 33px 0;
}
.pageMeditationsAbout-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 37px calc(42% + 30px) 37px 25px;
	min-height: 360px;
	z-index: 1;
}
.pageMeditationsAbout-wrap:before {
	content: '';
	background-color: var(--grey);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
	z-index: -1;
}
.pageMeditationsAbout-image {
	position: absolute;
	width: 42%;
	height: calc(100% + 66px);
	top: -33px;
	right: 0;
	border-radius: 5px;
	overflow: hidden;
	z-index: 1;
}
.pageMeditationsAbout-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pageMeditationsAbout-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pageMeditationsAbout-info .heading {
	margin-bottom: 20px;
}



.pageMeditationsAbout2-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	min-height: 360px;
	z-index: 1;
}
.pageMeditationsAbout2-image {
	flex: 0 0 42%;
	max-width: 42%;
	border-radius: 5px;
	overflow: hidden;
	z-index: 1;
}
.pageMeditationsAbout2-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pageMeditationsAbout2-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 calc(58% - 100px);
	max-width: calc(58% - 100px);
}
.pageMeditationsAbout2-info .heading {
	margin-bottom: 20px;
}
.pageMeditationsAbout2-content > * {
	margin-bottom: 24px;
}
.pageMeditationsAbout2-content > *:last-child {
	margin-bottom: 0;
}
.pageMeditationsAbout2-content ul {
	font-size: var(--h6-size);
	padding: 0;
	list-style: none;
}
.pageMeditationsAbout2-content ul li {
	position: relative;
	padding-left: 45px;
	margin-bottom: 19px;
	line-height: 1.22;
	z-index: 1;
}
.pageMeditationsAbout2-content ul li:last-child {
	margin-bottom: 0;
}
.pageMeditationsAbout2-content ul li:before {
	content: '';
	background: url(images/lotus-li.png) no-repeat center;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: -7px;
	left: 0;
	z-index: 1;
}



.subscribe-section {
	margin-bottom: 100px;
}
.subscribe-bgimage {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.subscribe-bgimage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.subscribe-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.subscribe-content {
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
	font-size: var(--h5-size);
	line-height: 1.25;
	font-weight: 500;
}
.subscribe-form {
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
}
.subscribe-form-inner {
	max-width: 410px;
	margin-left: auto;
	margin-right: auto;
}
.subscribe-form input[type="email"] {
	text-align: center;
}



.pageMeditationsAdvantages-bgimage {
	position: absolute;
	width: 50%;
	bottom: 0;
	right: 0;
	height: 100%;
	opacity: .08;
	z-index: -1;
}
.pageMeditationsAdvantages-bgimage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pageMeditationsAdvantages-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -35px -50px;
}
.pageMeditationsAdvantages-item {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	padding: 0 35px;
	margin-bottom: 50px;
}
.pageMeditationsAdvantages-item__wrap {
	display: flex;
	align-items: center;
}
.pageMeditationsAdvantages-item__icon {
	flex: 0 0 70px;
	max-width: 70px;
	height: 70px;
	border: 2px dashed #7E896C;
	border-radius: 50%;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pageMeditationsAdvantages-item__icon:before {
	content: '';
	flex: 0 0 30px;
	max-width: 30px;
	height: 30px;
	background: url(images/lotus-icon.png) no-repeat center;
	background-size: contain;
}
.pageMeditationsAdvantages-item__text {
	flex: auto;
	max-width: 100%;
	font-size: var(--h6-size);
	line-height: 1.25;
}



.meditations-bgimage {
	position: absolute;
	width: 100%;
	bottom: 0;
	right: 0;
	height: 100%;
	z-index: -1;
}
.meditations-bgimage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.meditations-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -30px;
}
.meditations-item {
	position: relative;
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	padding: 0 10px;
	margin-bottom: 30px;
}
.meditations-item__wrap {
	position: relative;
	height: calc((var(--container) - 3 * 20px) / 4 * 1.2459);
	overflow: hidden;
	border-radius: 20px;
	min-height: 300px;
	z-index: 1;
}
.meditations-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.meditations-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.meditations-item__image:after {
	content: '';
	background: #353535;
	opacity: .2;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: .25s;
	z-index: 1;
}
.meditations-item__wrap:hover .meditations-item__image:after {
	opacity: .6;
}
.meditations-item__info {
	position: relative;
	padding: 30px 25px 40px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.meditations-item__title {
	font-size: calc(var(--h4-size) / 1.09);
	color: var(--white);
	text-align: center;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 0;
}
.meditations-item__title:before {
	content: '';
	background: url(images/lotus-white.png) no-repeat center;
	background-size: contain;
	width: 40px;
	height: 40px;
	margin: 0 auto 15px;
	display: block;
}
.meditations-item__content {
	display: none;
	flex: auto;
	max-height: 100%;
	font-size: 12px;
	color: var(--white);
	margin-top: 15px;
}
.meditations-item__button {
	text-align: center;
	display: none;
	margin-top: 15px;
}
.meditations-item__wrap:hover .meditations-item__content,
.meditations-item__wrap:hover .meditations-item__button {
	display: block;
}

.meditations-item__button span {
	color: #fff;
}

.meditations-item__button span a {
	color: #fff;
	text-decoration: underline;
}

.portfolio-items {
	position: relative;
	overflow: hidden;
}
.portfolio-item {
	--sizePortfolioItem: calc((var(--container) - 4 * 10px) / 5);
	position: relative;
	float: left;
	margin: 0 10px 10px 0;
	width: var(--sizePortfolioItem);
	height: var(--sizePortfolioItem);
	display: none;
	overflow: hidden;
}
.portfolio-item:nth-child(1),
.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3),
.portfolio-item:nth-child(4),
.portfolio-item:nth-child(5),
.portfolio-item:nth-child(6),
.portfolio-item:nth-child(7),
.portfolio-item:nth-child(8),
.portfolio-item:nth-child(9),
.portfolio-item:nth-child(10),
.active .portfolio-item {
	display: block;
}
.portfolio-item:nth-child(10n+3) {
	width: calc(var(--sizePortfolioItem) * 2 + 10px);
}
.portfolio-item:nth-child(10n+4) {
	margin-right: 0;
}
.portfolio-item:nth-child(10n+5) {
	width: calc(var(--sizePortfolioItem) * 2 + 10px);
	height: calc(var(--sizePortfolioItem) * 2 + 10px);
}
.portfolio-item:nth-child(10n+10) {
	height: calc(var(--sizePortfolioItem) * 2 + 10px);
	margin-right: 0;
	margin-top: calc((var(--sizePortfolioItem) + 10px) * -1);
}
.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .25s;
}
.portfolio-item:hover img {
	transform: scale(1.05);
}
.portfolio-buttons {
	position: relative;
	text-align: center;
	margin-top: 30px;
	z-index: 9;
}
.active .portfolio-btn-more {
	display: none;
}
.portfolio-btn-hide {
	display: none;
}
.active .portfolio-btn-hide {
	display: inline-flex;
}
.portfolio-item__video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--grey);
    border-radius: 50%;
    transition: .25s;
    z-index: 2;
}
.portfolio-item__video:hover {
	background-color: var(--green);
}
.portfolio-item__video:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/play-arrow-rounded.svg);
    mask-image: url(images/play-arrow-rounded.svg);
    background-color: var(--black);
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    transition: .25s;
}
.portfolio-item__video:hover:before {
	background-color: var(--white);
}




.results-section {
	background-color: var(--grey);
}
.results-item {
	height: calc((var(--container) - 20px * 2) / 3);
	overflow: hidden;
	border-radius: 10px;
}
.results-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .25s;
}
.results-item:hover img {
	transform: scale(1.05);
}


.page-ArchiveBlog-wrapper {
	position: relative;
	margin-top: -178px;
	z-index: 2;
}


.navigation.pagination {
	position: relative;
	display: block;
	margin-top: 50px;
	z-index: 9;
}
.nav-links {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	border: 1px solid transparent;
	height: 28px;
	min-width: 28px;
	line-height: 1.25;
	border-radius: 50%;
	opacity: .7;
	transition: .25s;
}
.page-numbers:last-child {
	margin-right: 0;
}
.page-numbers:hover,
.page-numbers.current {
	border-color: var(--green);
	opacity: 1;
}
.page-numbers.prev,
.page-numbers.next {
	font-size: 0;
}
.page-numbers.prev {
	transform: rotate(180deg);
}
.page-numbers.prev:before,
.page-numbers.next:before {
	content: '';
	background: url(images/chevrons-left.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 16px;
	max-width: 16px;
	height: 16px; 	
}






.pageFoodAbout-section {
	margin: 10px 0;
}
.pageFoodAbout-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 10px calc(42% + 30px) 10px 30px;
	min-height: 360px;
	z-index: 1;
}
.pageFoodAbout-wrap:before {
	content: '';
	background-color: var(--grey);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
	z-index: -1;
}
.pageFoodAbout-image {
	position: absolute;
	width: 42%;
	height: calc(100% + 20px);
	top: -10px;
	right: 0;
	border-radius: 5px;
	overflow: hidden;
	z-index: 1;
}
.pageFoodAbout-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pageFoodAbout-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pageFoodAbout-info .heading {
	margin-bottom: 20px;
}



.pageFoodAbout2-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}
.pageFoodAbout2-image {
	flex: 0 0 42%;
	max-width: 42%;
	border-radius: 5px;
	overflow: hidden;
	z-index: 1;
}
.pageFoodAbout2-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pageFoodAbout2-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 calc(58% - 100px);
	max-width: calc(58% - 100px);
}
.pageFoodAbout2-info .heading {
	margin-bottom: 20px;
}
.pageFoodAbout2-content > * {
	margin-bottom: 24px;
}
.pageFoodAbout2-content > *:last-child {
	margin-bottom: 0;
}
.pageFoodAbout2-content ul {
	font-size: var(--h6-size);
	padding: 0;
	list-style: none;
}
.pageFoodAbout2-content ul li {
	position: relative;
	padding-left: 45px;
	margin-bottom: 19px;
	line-height: 1.22;
	z-index: 1;
}
.pageFoodAbout2-content ul li:last-child {
	margin-bottom: 0;
}
.pageFoodAbout2-content ul li:before {
	content: '';
	background: url(images/eco.png) no-repeat center;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: -7px;
	left: 0;
	z-index: 1;
}



.reasons-bgimage {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.reasons-bgimage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: .2;
}
.reasons-bgimage:after {
	content: '';
	background-color: var(--grey);
	opacity: .6;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.reasons-section .heading {
	margin-bottom: 40px;
}
.reasons-items {
	column-count: 2;
    column-gap: 120px;
}
.reasons-item {
	margin-bottom: 15px;
	width: 100%;
	float: left;
	page-break-inside: avoid;
	break-inside: avoid;
}
.reasons-item__wrap {
	position: relative;
	padding-left: 34px;
	line-height: 1.22;
	z-index: 1;
}
.reasons-item__wrap:before {
	content: '';
	background: url(images/uim_check.svg) no-repeat center;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	top: -2px;
	left: 0;
	z-index: 1;
}




.menuFood-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -30px;
}
.menuFood-item {
	position: relative;
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	padding: 0 10px;
	margin-bottom: 30px;
}
.menuFood-item__wrap {
	position: relative;
	height: calc((var(--container) - 3 * 20px) / 4 * 1.2459);
	overflow: hidden;
	border-radius: 20px;
	min-height: 300px;
	z-index: 1;
}
.menuFood-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.menuFood-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.menuFood-item__image:after {
	content: '';
	background: #353535;
	opacity: .6;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: .25s;
	z-index: 1;
}
.menuFood-item__info {
	position: relative;
	padding: 30px 25px 40px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.menuFood-item__title {
	font-size: calc(var(--h4-size) / 1.09);
	color: var(--white);
	text-align: center;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 0;
}
.menuFood-item__title:before {
	content: '';
	background: url(images/eco-white.png) no-repeat center;
	background-size: contain;
	width: 30px;
	height: 30px;
	margin: 0 auto 15px;
	display: block;
}
.menuFood-item__content {
	display: none;
	flex: auto;
	max-height: 100%;
	font-size: 12px;
	color: var(--white);
	margin-top: 20px;
}
.menuFood-item__button {
	text-align: center;
	display: none;
	margin-top: 15px;
}
.menuFood-item__wrap:hover .menuFood-item__content,
.menuFood-item__wrap:hover .menuFood-item__button {
	display: block;
}

.menuFood-item__button span {
	color: #fff;
}

.menuFood-item__button span a {
	color: #fff;
	text-decoration: underline;
}



.pageFoodInfo-block {
	position: relative;
	background-color: var(--grey);
	padding: 40px 0;
	z-index: 1;
}
.pageFoodInfo-block-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pageFoodInfo-block-content {
	flex: auto;
	max-width: 100%;
	font-size: calc(var(--h4-size) / 1.09);
	line-height: 1.25;
}
.pageFoodInfo-block-content p {
	margin-bottom: 10px;
}
.pageFoodInfo-block-content p:last-child {
	margin-bottom: 0;
}
.pageFoodInfo-block-content strong {
	font-weight: 500;
}
.pageFoodInfo-block-button {
	flex: 0 0 220px;
	max-width: 220px;
	margin-left: 40px;
}




.pageThanks-image {
	text-align: center;
	margin-bottom: 50px;
}
.pageThanks-image img {
	max-height: 230px;
}
.pageThanks-title {
	font-size: var(--h2-size);
	text-align: center;
	font-weight: 500;
	color: #000000;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.pageThanks-content {
	position: relative;
	margin-bottom: 50px;
	max-width: 630px;
	margin-left: auto;
	margin-right: auto;
	font-size: var(--h6-size);
}
.pageThanks-button {
	text-align: center;
}



.pageCourseAbout-section .heading {
	margin-bottom: 30px;
}
.pageCourseAbout-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}
.pageCourseAbout-image {
	flex: 0 0 50%;
	max-width: 50%;
	border-radius: 5px;
	overflow: hidden;
	z-index: 1;
}
.pageCourseAbout-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pageCourseAbout-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 calc(50% - 100px);
	max-width: calc(50% - 100px);
}
.pageCourseAbout-content > * {
	margin-bottom: 24px;
}
.pageCourseAbout-content > *:last-child {
	margin-bottom: 0;
}

.pageCourseAbout-content {
	counter-reset: mycounter;
}

.pageCourseAbout-content ol {
	font-size: var(--h6-size);
	padding: 0;
	list-style: none;
}
.pageCourseAbout-content ol li {
	position: relative;
	margin-bottom: 20px;
	line-height: 1.22;
	display: flex;
	align-items: center;
	z-index: 1;
	counter-increment: mycounter;
}
.pageCourseAbout-content ol li:last-child {
	margin-bottom: 0;
}
.pageCourseAbout-content ol li:before {
	content: "0" counter(mycounter);
  	flex: 0 0 40px;
  	max-width: 40px;
  	width: 40px;
  	height: 40px;
  	border: 2px dashed #7FA2BD;
  	border-radius: 50%;
  	z-index: 1;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	text-align: center;
  	font-size: var(--h6-size);
  	font-weight: 600;
  	color: #7FA2BD;
  	margin-right: 15px;
}

.pageCourseAbout-content ol li:nth-child(n+10):before {
	content: "" counter(mycounter);
}

.pageCourseInfo-block {
	position: relative;
	background: var(--grey);
	padding: 40px 0;
	z-index: 1;
}
.pageCourseInfo-block-content {
	font-size: var(--h1-size);
	line-height: 1.25;
	color: #000000;
}
.pageCourseInfo-block-button {
	position: relative;
	text-align: center;
	margin-top: 25px;
}



.pageCourseContraindication-section .heading {
	margin-bottom: 40px;
}
.pageCourseContraindication-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -25px -30px;
}
.pageCourseContraindication-item {
	position: relative;
	margin: 0 0 30px;
	padding: 0 25px;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.pageCourseContraindication-item__wrap {
	position: relative;
}
.pageCourseContraindication-item__wrap:before {
	content: '';
	width: 30px;
	height: 30px;
	display: block;
	margin: 0 auto 15px;
	background: url(images/ban.svg) no-repeat center;
	background-size: contain;
}
.pageCourseContraindication-item__text {
	text-align: center;
	font-size: var(--h6-size);
	line-height: 1.25;
}





.process-section {
	background: var(--grey);
}
.process-section .heading {
	margin-bottom: 40px;
}
.process-section .heading > * {
	font-weight: 700;
}
.process-items {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -35px -40px;
}
.process-item {
	position: relative;
	margin-bottom: 40px;
	padding: 0 35px;
	flex: 0 0 25%;
	max-width: 25%;
}
.process-item__wrap {
	position: relative;
}
.process-item__image {
	position: relative;
	margin: 0 auto 18px;
	width: 190px;
	height: 190px;
	border: 1px dashed var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}
.process-item__image-inner {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.process-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}
.process-item__count {
	position: absolute;
    top: 12px;
    left: 2px;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--h5-size);
    font-weight: 500;
}
.process-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	text-align: center;
	margin-bottom: 18px;
	line-height: 1.2;
}
.process-item__text {
	font-size: var(--text-size-sm);
	text-align: center;
	line-height: 1.2;
}





.tariffs-section .heading > h2 {
	font-size: calc(var(--h1-size) * 1.111);
}
.tariffs-wrap {
	max-width: 900px;
	margin: 0 auto;
}
.tariffs-items {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -15px -40px;
}
.tariffs-item {
	position: relative;
	margin-bottom: 40px;
	padding: 0 15px;
	flex: 0 0 50%;
	max-width: 50%;
}
.tariffs-item.disabled {
	opacity: 0.5;
}
.tariffs-item__wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: var(--grey) url(images/tariff-bg.png) no-repeat center;
	background-size: cover;
	box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
	z-index: 1;
}
.tariffs-item__head {
	position: relative;
	background-color: #D7E8F5;
	padding: 18px 20px 14px;
}
.tariffs-item:nth-child(2n) .tariffs-item__head {
	background-color: var(--rose);
}
.tariffs-item__title {
	font-size: var(--h3-size);
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 7px;
}
.tariffs-item__subtitle {
	font-size: var(--text-size-sm);
	text-align: center;
	line-height: 1.2;
	color: #000000;
}
.tariffs-item__body {
	position: relative;
}
.tariffs-item__duration {
	position: relative;
	text-align: center;
}
.tariffs-item__duration span {
	position: relative;
	display: inline-block;
	background: var(--green);
	padding: 5px 25px;
	border-radius: 0 0 20px 20px;
	color: var(--white);
	text-align: center;
	line-height: 1.2;
}
.tariffs-item__list {
	position: relative;
	padding: 30px 25px;
}
.tariffs-item__list p {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: var(--text-size-sm);
	color: #777777;
	line-height: 1.2;
}
.tariffs-item__list p:last-child {
	margin-bottom: 0;
}
.tariffs-item__list p.s1 {
	color: #000000;
}
.tariffs-item__list p:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	margin-right: 7px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/round-close.svg);
    mask-image: url(images/round-close.svg);
    background-color: #777777;
}
.tariffs-item__list p.s1:before {
    -webkit-mask-image: url(images/uim_check.svg);
    mask-image: url(images/uim_check.svg);
    background-color: #977B63;
}
.tariffs-item__price {
	position: relative;
	text-align: center;
}
.tariffs-item__price > span {
	position: relative;
	display: inline-block;
	background: #D7E8F5;
	padding: 9px 25px;
	min-width: 200px;
	border-radius: 20px 20px 0 0;
	font-size: calc(var(--h4-size) / 1.09);
	font-weight: 600;
	text-align: center;
	line-height: 1.25;
}
.tariffs-item__price > span .old {
	font-size: 16px;
	font-weight: 400;
	text-decoration: line-through;
	padding-right: 16px;
}
.tariffs-item:nth-child(2n) .tariffs-item__price span {
	background-color: var(--rose);
}
.tariffs-item__button {
	position: relative;
}
.tariffs-item__button a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--green);
	color: var(--white);
	font-size: var(--h6-size);
	font-weight: 600;
	min-height: 70px;
	border: none;
	border-radius: 0;
	outline: none;
	cursor: pointer;
}
.tariffs-item__button a:hover {
	background-color: var(--black);
}
.tariffs-item__button span {
	min-height: 70px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ABABAB;
  	color: #fff;
	border-radius: 0;
}


.pageCourseInventory-section {
	background-color: var(--grey);
}
.pageCourseInventory-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px -40px;
	justify-content: center;
}
.pageCourseInventory-item {
	position: relative;
	flex: 0 0 20%;
	max-width: 20%;
	margin-bottom: 40px;
	padding: 0 25px;
}
.pageCourseInventory-item__wrap {
	position: relative;
}
.pageCourseInventory-item__image {
	margin: 0 auto 20px;
	width: 198px;
	height: 192px;
	background-color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.pageCourseInventory-item__image img {
	max-width: 170px;
	max-height: 170px;
}
.pageCourseInventory-item__title {
	font-size: var(--h6-size);
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
	color: #000000;
}


.blogSingle {
	padding-top: 50px;
}
.blogSingle-header {
	position: relative;
	min-height: 300px;
	background: var(--green);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 45px;
	z-index: 1;
}
.blogSingle-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.blogSingle-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.blogSingle-image:after {
	content: '';
	background-color: #000000;
	opacity: .6;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.blogSingle-title {
	font-size: calc(var(--h1-size) * 1.333);
	color: var(--white);
	text-align: center;
	padding: 40px 150px;
}
.blogSingle-meta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}
.blogSingle-prevlink {
	position: relative;
	margin-bottom: 0;
}
.blogSingle-prevlink a {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: var(--text-size-sm);
	color: var(--black);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.blogSingle-prevlink a:hover {
	color: var(--green);
	text-decoration: none;
}
.blogSingle-prevlink a:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-left-alt-rounded.svg);
    mask-image: url(images/arrow-left-alt-rounded.svg);
    background-color: var(--green);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    transition: .25s;
}
.blogSingle-date {
	position: relative;
	margin-bottom: 0;
	font-weight: 500;
	line-height: 1.25;
	color: var(--green);
}
.blogSingle-selectContent {
	display: none;
	margin-bottom: 30px;
}
.blogSingle-selectContent select {
	background: var(--grey) url(images/mingcute_down-line.svg) no-repeat calc(100% - 18px) center;
	background-size: 25px;
	border: none;
	font-size: var(--h6-size);
	font-weight: 600;
	text-align: center;
	border-radius: 0;
	padding: 10px 45px;
	min-height: 60px;
}
.blogSingle-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.blogSingle-body {
	flex: 0 0 calc(100% / 3 * 2 - 125px);
	max-width: calc(100% / 3 * 2 - 125px);
}
.blogSingle-info {
	position: relative;
	padding-bottom: 50px;
	border-bottom: 2px solid #D9D9D9;
	margin-bottom: 30px;
}
.blogSingle-content {
	position: relative;
	margin-bottom: 35px;
}
.blogSingle-content:last-child {
	margin-bottom: 0;
}
.blogSingle-content h1 {
	font-size: var(--h3-size);
}
.blogSingle-content h2 {
	font-size: var(--h4-size);
}
.blogSingle-content h3 {
	font-size: var(--h5-size);
}
.blogSingle-content h4,
.blogSingle-content h5,
.blogSingle-content h6 {
	font-size: var(--h6-size);
}
.blogSingle-content p + ul,
.blogSingle-content p + ol {
	margin-top: -5px;
}
.blogSingle-content ul {
	padding: 0 0 0 20px;
	list-style: none;
}
.blogSingle-content ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
}
.blogSingle-content ul li:last-child {
	margin-bottom: 0;
}
.blogSingle-content ol li {
	margin-bottom: 10px;
}
.blogSingle-content ol li:last-child {
	margin-bottom: 0;
}
.blogSingle-content ul li:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/uim_check.svg);
    mask-image: url(images/uim_check.svg);
    background-color: var(--black);
	width: 20px;
	height: 20px;
	position: absolute;
	top: 2px;
	left: 0;
	z-index: 1;
}
.blogSingle-content blockquote {
	position: relative;
	margin-bottom: 25px;
	background-color: var(--rose);
	min-height: 98px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 25px 30px 25px 105px;
	font-weight: 500;
	font-style: italic;
	z-index: 1;
}
.blogSingle-content blockquote:last-child {
	margin-bottom: 0;
}
.blogSingle-content blockquote:before {
	content: '';
	position: absolute;
	width: 85px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--black);
}
.blogSingle-content blockquote:after {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/double-quotes-l.svg);
    mask-image: url(images/double-quotes-l.svg);
    background-color: var(--rose);
	width: 50px;
	height: 50px;
	position: absolute;
	top: calc(50% - 25px);
	left: calc((85px - 50px) / 2);
	z-index: 1;
}
.blogSingle-copy .btn {
	border-radius: 5px;
	min-height: 40px;
}
.blogSingle-sidebar {
	flex: 0 0 calc(100% / 3 - 13px);
	max-width: calc(100% / 3 - 13px);
}
.blogSingle-sections {
	position: relative;
	margin-bottom: 60px;
	background-color: var(--grey);
	padding: 30px 0 40px;
	z-index: 1;
}
.blogSingle-sections:last-child {
	margin-bottom: 0;
}
.blogSingle-sections-heading {
	font-size: var(--h4-size);
	font-weight: 600;
	text-align: center;
	padding: 0 22px;
	margin-bottom: 25px;
}
.blogSingle-sections ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.blogSingle-sections li {
	position: relative;
	margin-bottom: 8px;
}
.blogSingle-sections li:last-child {
	margin-bottom: 0;
}
.blogSingle-sections li a {
	position: relative;
	display: block;
	padding: 9px 22px;
	font-size: var(--h6-size);
	color: var(--black);
	line-height: 1.25;
}
.blogSingle-sections li a:hover {
	background-color: var(--green);
	color: var(--white);
}
.relatedBlog-heading {
	font-size: var(--h4-size);
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
}

/*other styles*/
.other-actions {
	margin-top: 24px;
	padding-top: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.header-logo .mobile {
	display: none;
}

.accountVideo-meditation-section {
	padding-top: 0px;
  	padding-bottom: 80px !important;
}

.accountVideo-meditation-section .accountVideo-item__meta {
	max-width: 1060px;
  	margin-left: auto;
  	margin-right: auto;
}

.cartForm .btn {
	gap: 0;
  	display: flex;
  	align-items: center;
	transition: all 0.25s ease-out;
}

.cartForm .btn.waiting {
	gap: 15px;
	transition: all 0.25s ease-in;
}

.cartForm .btn::after {
  	width: 0px;
  	height: 0px;
  	opacity: 0;
  	content: "";
  	border-radius: 50%;
  	border: 2px solid transparent;
  	transition: all 0.25s ease-out;
}

.cartForm .btn.waiting::after {
  	width: 16px;
  	height: 16px;
  	opacity: 1;
  	border-radius: 50%;
  	border: 2px solid rgba(255,255,255,0.5);
    border-left-color: white;
  	border-top-color: white;
  	animation: spin .6s infinite linear;
  	transition: all 0.25s ease-in;
}

.cartForm .btn.btn:disabled {
	cursor: no-drop;
}

@keyframes spin { 
    to {
        transform: rotate(359deg);
    }
}

@media (max-width: 1399px) {
	:root {
		--container: 1140px;
		--container-sm: calc(var(--container) * 0.83);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.modal-header-wrap {
		max-width: 480px;
	}
	.mainBlock-wrap {
		min-height: 600px;
	}
	.about-images {
		height: 540px;
	}
	.services-item__image img {
	    max-width: 300px;
	}
	.error-404-image {
		margin-bottom: 60px;
	}
	.error-404-image img {
	    max-height: 160px;
	}
	.error-404-title {
		margin-bottom: 40px;
	}
	.blogSingle-body {
	    flex: 0 0 calc(100% / 3 * 2 - 90px);
	    max-width: calc(100% / 3 * 2 - 90px);
	}
	.pageThanks-image {
		margin-bottom: 40px;
	}
	.pageThanks-image img {
    	max-height: 200px;
	}
	.pageThanks-content {
		margin-bottom: 40px;
	}
	.page-header {
		padding: 60px 0;
	}
	.reviews-item {
		height: 320px;
	}
	.reviews-item img {
		max-height: 320px;
	}
}



@media (max-width: 1199px) {
	:root {
		--container: 930px;
		--container-sm: calc(var(--container) * 0.9);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.btn {
		min-width: 160px;
	}
	.section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.section-md {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.heading {
		margin-bottom: 35px;
	}
	.header-toggle {
		margin-right: 40px;
	}
	.about-images {
    	height: 450px;
	}
	.about-info {
    	flex: 0 0 calc(54% - 80px);
    	max-width: calc(54% - 80px);
	}
	.help-items {
		margin: 0 -15px -30px;
	}
	.help-item {
		margin: 0 0 30px;
		padding: 0 15px;
	}
	.help-item__wrap {
		padding: 30px;
	}
	.services-item {
		margin-bottom: 40px;
	}
	.services-item__wrap {
		padding: 40px;
	}
	.services-item__info {
	    flex: 0 0 calc(58% - 60px);
	    max-width: calc(58% - 60px);
	}
	.reviews-item {
		height: 300px;
	}
	.reviews-item img {
		max-height: 300px;
	}
	.blog-item__hover-title {
    	margin-bottom: 15px;
	}
	.blog-item__hover-excerpt {
    	margin-bottom: 20px;
	}
	.footer-photo {
		width: 160px;
		height: 160px;
		margin-bottom: 30px;
	}
	.footer-wrap {
		margin-bottom: 50px;
	}
	.programInfo-items {
		margin: 0 -10px -40px;
	}
	.programInfo-item {
		margin: 0 0 40px;
		padding: 0 10px;
	}
	.programInfo-item__image {
		flex: 0 0 60px;
		max-width: 60px;
		height: 60px;
		border-width: 1px;
	}
	.programInfo-item__image img {
    	max-height: 36px;
	}
	.pageOnlineFitnessAbout-info {
	    flex: 0 0 calc(60% - 80px);
	    max-width: calc(60% - 80px);
	}
	.pageOnlineFitnessAbout-info:before {
		width: calc(100% + ((100vw - var(--container)) / 2) + 80px + 200px);
		left: calc(-80px - 200px);
	}
	.forWhom-item__wrap {
		padding: 25px 20px;
	}
	.forWhom-item__title {
		font-size: var(--text-size);
	}
	.forWhom-block-content br {
		display: none;
	}
	.schedule-item__wrap {
		padding: 30px;
	}
	.schedule-item__title {
		font-size: var(--h4-size);
	}
	.schedule-item__time span {
		font-size: var(--h6-size);
	}
	.inventory-item {
		flex: 0 0 170px;
		max-width: 170px;
		height: 170px;
		padding: 8px;
	}
	.inventory-item img {
	    max-width: 120px;
	    max-height: 120px;
	}
	.inventory-item__count {
		width: 42px;
		height: 42px;
		font-size: var(--h6-size);
	}
	.faq-item__title {
		padding: 20px 25px;
	}
	.faq-item__content {
		padding: 25px;
	}
	.pageFoodAbout2-info,
	.pageMeditationsAbout2-info {
		flex: 0 0 calc(58% - 80px);
    	max-width: calc(58% - 80px);
	}
	.menuFood-item__title,
	.meditations-item__title {
	    font-size: calc(var(--h5-size));
	}
	.subscribe-section {
		margin-bottom: 60px;
	}
	.mainBlock-title {
	    font-size: calc(var(--h1-size) * 1.1666);
	}
	.mainBlock-content {
		font-size: var(--h6-size);
	}
	.pageMeditationsAdvantages-items {
		margin: 0 -20px -40px;
	}
	.pageMeditationsAdvantages-item {
		margin: 0 0 40px;
		padding: 0 20px;
	}
	.pageMeditationsAdvantages-item__text {
		font-size: var(--text-size);
	}
	.pageCourseAbout-info {
	    flex: 0 0 calc(50% - 80px);
	    max-width: calc(50% - 80px);
	}
	.pageCourseInfo-block-content {
		font-size: var(--h2-size);
	}
	.process-items {
		margin: 0 -15px -30px;
	}
	.process-item {
		margin: 0 0 30px;
		padding: 0 15px;
	}
	.pageCourseInventory-items {
		margin: 0 -15px -35px;
	}
	.pageCourseInventory-item {
		margin: 0 0 35px;
		padding: 0 15px;
	}
	.pageCourseInventory-item__image {
		width: 160px;
		height: 156px;
	}
	.pageCourseInventory-item__image img {
		max-width: 140px;
		max-height: 140px;
	}
	.page-template-page-about .mainBlock-wrap {
		max-width: 620px;
	}
	.pageAboutAbout-image {
		width: 35%;
		right: 20px;
	}
	.pageAboutAbout-wrap {
		padding: 35px 40% 35px 20px;
	}
	.goal-items {
		flex: 0 0 calc(43% - 80px);
    	max-width: calc(43% - 80px);
	}
	.goal-item {
	    flex: 0 0 calc(50% - 10px);
	    max-width: calc(50% - 10px);
	    margin-bottom: 20px;
	}
	.goal-item__wrap {
		padding: 20px;
	}
	.goal-item__text {
		font-size: var(--h6-size);
	}
	.page-template-page-online-fitness .reviews-section, .page-template-page-meditations-2 .reviews-section, .page-template-page-group .reviews-section, .page-template-page-food .reviews-section, .page-template-page-course .reviews-section {
		padding: 80px 0;
	}
	.blogSingle {
		padding-top: 40px;
	}
	.blogSingle-title {
	    font-size: calc(var(--h1-size) * 1.1666);
	}
	.blogSingle-header {
		min-height: 240px;
		margin-bottom: 35px;
	}
	.blogSingle-meta {
		margin-bottom: 40px;
	}
	.blogSingle-body {
    	flex: 0 0 calc(100% / 3 * 2 - 60px);
    	max-width: calc(100% / 3 * 2 - 60px);
	}
	.blogSingle-content {
		margin-bottom: 30px;
	}
	.important-block-editor, .question-block-editor {
		padding: 20px 30px 20px 60px;
	}
	.blogSingle-info {
		padding-bottom: 35px;
		margin-bottom: 25px;
	}
}





@media (max-width: 991px) {
	:root {
		--container: 710px;
		--container-sm: var(--container);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 30px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 18px;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.section-md {
		padding-top: 36px;
		padding-bottom: 36px;
	}
	.heading p {
		font-size: var(--text-size);
	}
	.heading p br {
		display: none;
	}
	.header-soc {
		display: none;
	}
	.header-button {
		display: flex;
		margin-right: 15px;
	}
	.header-button a,
	.header-button a:hover {
		font-size: 0;
	    background: url(images/user-profile.png) no-repeat center;
	    background-size: contain;
	    border: none;
	    padding: 0;
	    flex: 0 0 30px;
	    max-width: 30px;
	    width: 30px;
	    height: 30px;
	}
	.header-cart a {
	    flex: 0 0 30px;
	    max-width: 30px;
	    width: 30px;
	    height: 30px;
	}
	.header-cart a span {
		width: 16px;
		height: 16px;
		font-size: 10px;
		right: -1px;
		bottom: -1px;
	}
	.header-toggle,
	.modal-header-close {
    	margin-right: 20px;
	}
	.modal-header-wrap {
		padding: 20px;
	}
	.modal-header-top {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.modal-header-wrap {
    	max-width: 100%;
	}
	.modal-header-top,
	.main-menu,
	.modal-header-soc {
		max-width: var(--container);
		margin-left: auto;
		margin-right: auto;
	}
	.modal-header-soc {
		display: flex;
		margin-bottom: 20px;
	}
	.modal-header-soc li a svg {
		flex: 0 0 30px;
		max-width: 30px;
		width: 30px;
		height: 30px;
	}
	.mainBlock-wrap {
		min-height: 550px;
		padding: 80px 0 50px !important;
	}
	.mainBlock-title {
		font-size: var(--h1-size);
	}
	.mainBlock-content {
		font-size: var(--text-size);
	}
	.home .mainBlock-content {
		position: relative;
		bottom: 0;
		margin-top: 30px;
		text-align: center;
	}
	.home .mainBlock-content strong {
		font-weight: 400;
	}
	.page-template-page-online-fitness .mainBlock-content {
    	margin-top: 30px;
	}
	.page-template-page-online-fitness .mainBlock-content p {
    	margin-bottom: 10px;
	}
	.page-template-page-online-fitness .mainBlock-content p:last-child {
		margin-bottom: 0;
	}
	.mainBlock-actions {
		margin-top: 45px;
		flex-direction: column;
	}
	.mainBlock-actions > div {
		margin-right: 0;
		margin-top: 20px;
	}
	.mainBlock-actions > div:first-child {
		margin-top: 0;
	}
	.page-template-page-online-fitness .mainBlock-actions {
	    margin-top: 35px;
	}
	.home .mainBlock-bg img {
		object-position: left center;
	}
	.page-template-page-online-fitness .mainBlock-video {
		display: none;
	}
	.about-wrap {
		flex-wrap: wrap;
	}
	.about-info {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
		margin-bottom: 32px;
	}
	.about-images {
		flex: 0 0 100%;
		max-width: 100%;
		height: calc(var(--container) / 1.2);
		order: 2;
	}
	.about-info .heading {
    	margin-bottom: 25px;
	}
	.about-button {
		margin-top: 25px;
		text-align: center;
	}
	.help-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.services-item__wrap {
		padding: 40px 25px;
	}
	.services-item__image {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 35px;
	}
	.services-item__image img {
		max-width: 270px;
	}
	.services-item__info {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.services-item__title {
		text-align: center;
	}
	.services-item__button {
		margin-top: 30px;
		text-align: center;
	}
	.services-item__content {
		font-size: var(--text-size);
		text-align: justify;
	}
	.blog-heading {
		flex-wrap: wrap;
	}
	.blog-heading .heading {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}
	.blog-button {
		margin-left: 0;
	}
	.blog-item__info {
		padding: 20px 15px;
	}
	.blog-item__image {
	    flex: 0 0 calc((var(--container) - 20px) / 2 / 1.475);
	    max-height: calc((var(--container) - 20px) / 2 / 1.475);
	}
	.blog-item__hover {
		display: none !important;
	}
	.blog-item__title {
		font-size: var(--text-size);
		min-height: 60px;
		margin-bottom: 10px;
	}
	.blog-item__more {
		display: block;
	}
	.blog-item__more .btn {
		min-width: 130px !important;
	}
	.blog-item__date {
		font-size: 12px;
	}
	.footer {
		padding: 40px 0 20px;
	}
	.footer-wrap {
	    margin-bottom: 0px;
	}
	.footer-widget {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 40px;
		font-size: var(--h6-size);
	}
	.footer-widget:last-child {
		margin-bottom: 40px;
	}
	.footer-menu-1 {
		text-align: center;
		margin-bottom: 20px;
	}
	.footer-menu-1 li {
		margin-bottom: 20px;
	}
	.payment-logo {
		text-align: center;
	}
	.footer-link {
		margin-bottom: 20px;
		text-align: center;
	}
	.footer-email {
		text-align: center;
		margin-bottom: 20px;
	}
	.footer-soc {
		margin-bottom: 20px;
		justify-content: center;
	}
	.footer-menu-2 {
		text-align: center;
	}
	.footer-menu-2 li {
		margin-bottom: 20px;
	}
	.footer-soc li a {
		width: 50px;
		height: 50px;
	}
	.footer-soc li a svg {
		flex: 0 0 32px;
		max-width: 32px;
		width: 32px;
		height: 32px;
	}

	body.page-template-page-online-fitness .mainBlock-bg img {
		object-position: 90% center;
	}

	body.page-template-page-about .mainBlock-bg img {
		object-position: 20% center;
	}
	.page-template-page-about .mainBlock-wrap {
    	max-width: 100%;
    	padding-bottom: 50px;
	}
	.pageAboutAbout-section {
		margin: 43px 0 0;
		background-color: var(--grey);
		padding: 0;
	}
	.pageAboutAbout-wrap:before {
		display: none;
	}
	.pageAboutAbout-wrap {
	    padding: 35px 0;
	    min-height: auto;
	    display: block;
	}
	.pageAboutAbout-image {
		position: relative;
		width: 100%;
		right: 0;
		text-align: center;
		height: inherit;
		top: 0;
		box-shadow: none;
		border-radius: 0;
	}
	.pageAboutAbout-info {
		margin-bottom: 35px;
		overflow: inherit;
	}
	.pageAboutAbout-image img {
		width: auto;
		height: inherit;
		border-radius: 5px;
		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
		max-height: 440px;
	}
	.pageAboutAbout-content {
		font-size: var(--text-size);
	}
	.pageAboutAbout-content blockquote {
		font-size: var(--h4-size);
	}
	.goal-wrap {
		display: block;
	}
	.goal-items {
		max-width: 100%;
		margin-top: 0;
		margin-bottom: 15px;
	}
	.goal-item__text {
		font-size: var(--text-size);
	}
	.goal-content {
		max-width: 100%;
		font-size: var(--text-size);
	}
	.pageMeditationsAbout-section {
		margin: 27px 0 0;
		background-color: var(--grey);
		padding: 0;
	}
	.pageMeditationsAbout-wrap {
		padding: 15px 0 0;
		min-height: auto;
		display: block;
	}
	.pageMeditationsAbout-wrap:before {
		display: none;
	}
	.pageMeditationsAbout-info {
		margin-bottom: 30px;
	}
	.pageMeditationsAbout-image {
		position: relative;
		width: 100%;
		text-align: center;
		height: inherit;
		top: 0;
		right: 0;
		border-radius: 0;
		overflow: inherit;
	}
	.pageMeditationsAbout-image img {
		max-height: 320px;
		border-radius: 5px;
		width: auto;
		height: auto;
	}
	.pageMeditationsAbout2-wrap {
		flex-wrap: wrap;
		min-height: auto;
	}
	.pageMeditationsAbout2-info {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
		margin-bottom: 35px;
	}
	.pageMeditationsAbout2-image {
		flex: 0 0 100%;
		max-width: 100%;
		border-radius: 0;
		text-align: center;
		order: 2;
	}
	.pageMeditationsAbout2-image img {
		width: auto;
		height: auto;
		border-radius: 5px;
		max-height: 320px;
	}
	.pageMeditationsAbout2-content > * {
    	margin-bottom: 20px;
	}
	.pageMeditationsAbout2-content ul {
		font-size: var(--text-size);
	}
	.pageMeditationsAbout2-content ul li {
		margin-bottom: 17px;
		padding-left: 35px;
	}
	.pageMeditationsAbout2-content ul li:before {
		top: -3px;
		width: 20px;
		height: 20px;
	}
	.subscribe-wrap {
		display: block;
	}
	.subscribe-content {
		max-width: 100%;
		margin-bottom: 40px;
		font-size: var(--text-size);
	}
	.subscribe-content img {
		max-width: 105px;
	}
	.subscribe-form {
		max-width: 100%;
	}
	.form-field-policy {
		margin-left: 0;
	}
	.subscribe-section {
		margin-bottom: 50px;
	}
	.pageMeditationsAdvantages-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.pageMeditationsAdvantages-item__icon {
		flex: 0 0 60px;
		max-width: 60px;
		height: 60px;
	}
	.pageMeditationsAdvantages-item__icon:before {
		flex: 0 0 25px;
		max-width: 25px;
		height: 25px;
	}
	.pageMeditationsAdvantages-bgimage {
		width: auto;
		height: auto;
	}
	.menuFood-item,
	.meditations-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.menuFood-item__wrap,
	.meditations-item__wrap {
		height: calc((var(--container) - 20px) / 2 * 1.2459);
		min-height: 380px;
	}
	.menuFood-item__title,
	.meditations-item__title {
		font-size: var(--h3-size);
	}
	.pageCourseAbout-wrap {
		flex-wrap: wrap;
	}
	.pageCourseAbout-info {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
		margin-bottom: 35px;
	}
	.pageCourseAbout-image {
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
		border-radius: 0;
	}
	.pageCourseAbout-image img {
		border-radius: 5px;
		width: auto;
		height: auto;
		max-height: 280px;
	}
	.pageCourseAbout-content ol {
		font-size: var(--text-size);
	}
	.pageCourseAbout-content ol li:before {
		font-size: var(--text-size);
	}
	.pageCourseContraindication-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pageCourseContraindication-item__text {
		font-size: var(--text-size);
	}
	.process-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.tariffs-item__title {
		font-size: var(--h4-size);
	}
	.tariffs-item__duration {
		font-size: 12px;
	}
	.tariffs-item__list {
    	padding: 24px 20px;
	}
	.tariffs-item__list p {
		font-size: 12px;
		margin-bottom: 9px;
	}
	.tariffs-item__price span {
		font-size: var(--h4-size);
	}
	.tariffs-item__button a {
		min-height: 55px;
	}
	.pageCourseInventory-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.faq-item__title p {
		font-size: var(--text-size);
	}
	.faq-item__content {
		font-size: var(--text-size-sm);
	}
	.faq-item__title {
    	padding: 15px 20px;
	}
	.faq-item__content {
		padding: 15px 20px;
	}
	.faq-item__title:after {
		flex: 0 0 24px;
		max-width: 24px;
		width: 24px;
		height: 24px;
	}
	.programInfo-section .heading {
		margin-bottom: 30px;
	}
	.programInfo-items {
		margin-bottom: -30px;
	}
	.programInfo-item {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 30px;
	}
	.programInfo-item__image {
		flex: 0 0 50px;
		max-width: 50px;
		height: 50px;
	}
	.programInfo-item__image img {
    	max-height: 32px;
	}
	.programInfo-item__text {
		font-size: var(--text-size-sm);
	}

	.pageOnlineFitnessAbout-wrap {
		display: block;
	}
	.pageOnlineFitnessAbout-image {
		max-width: 100%;
		height: auto;
		margin-top: 0;
	}
	.pageOnlineFitnessAbout-info {
    	max-width: 100%;
    	padding: 30px 0;
	}
	.pageOnlineFitnessAbout-info:before {
	    width: 100vw;
	    right: calc((100vw - var(--container)) / -2);
	    left: auto;
	    border-radius: 0;
	    height: calc(100% + 150px);
	    bottom: 0;
	    top: auto;
	}
	.pageOnlineFitnessAbout-content {
		font-size: var(--text-size);
	}
	.pageOnlineFitnessAbout-button {
		margin-top: 25px;
		text-align: center;
	}
	.forWhom-items {
		margin: 0 -10px -20px;
	}
	.forWhom-item {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.forWhom-item__title {
		font-size: var(--h6-size);
		min-height: 30px;
	}
	.forWhom-block {
		margin-top: 40px;
		padding: 30px 0;
	}
	.forWhom-block-wrap {
		display: block;
	}
	.forWhom-block-content {
		max-width: 100%;
		font-size: var(--text-size);
		margin-bottom: 20px;
		text-align: center;
	}
	.forWhom-block-button {
		max-width: 100%;
		margin-left: 0;
		text-align: center;
	}
	.schedule-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.schedule-item__wrap {
    	padding: 25px;
    	min-height: 210px;
	}
	.schedule-item__days {
		margin-bottom: 20px;
	}
	.schedule-item__days p {
		padding: 0;
		font-size: var(--h4-size);
	}
	.schedule-item__time span {
		font-size: var(--text-size);
		padding: 8px 14px;
	}
	.abonements-items {
		margin-bottom: -30px;
	}
	.abonements-item {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 30px;
	}
	.abonements-item__image {
	    height: calc((var(--container) - 20px) / 2 / 1.239);
	}
	.abonements-item__meta p {
		font-size: var(--text-size);
		min-height: 45px;
		padding: 5px 10px;
	}
	.abonements-item__button {
		margin-top: 15px;
	}
	.inventory-items {
		display: block;
	}
	.inventory-item {
	    max-width: 200px;
	    height: 200px;
	    margin-left: auto;
	    margin-right: auto;
	}
	.page-template-page-group .mainBlock-wrap, .page-template-page-food .mainBlock-wrap, body.archive .mainBlock-wrap {
	    padding-bottom: 50px;
	}

	.pageFoodAbout-section {
		margin: 40px 0 0;
		background-color: var(--grey);
		padding: 0;
	}
	.pageFoodAbout-wrap {
		padding: 0;
		display: block;
		min-height: auto;
	}
	.pageFoodAbout-wrap:before {
		display: none;
	}
	.pageFoodAbout-image {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		border-radius: 0;
		text-align: center;
	}
	.pageFoodAbout-image img {
		border-radius: 5px;
		max-height: 320px;
		width: auto;
		height: auto;
	}
	.pageFoodAbout-info {
		padding: 30px 0 35px;
	}

	.pageFoodAbout2-wrap {
		flex-wrap: wrap;
	}
	.pageFoodAbout2-info {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
		margin-bottom: 35px;
	}
	.pageFoodAbout2-image {
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
		border-radius: 0;
		text-align: center;
	}
	.pageFoodAbout2-image img {
		max-height: 360px;
		width: auto;
		height: auto;
		border-radius: 5px;
	}
	.pageFoodAbout2-content ul {
		font-size: var(--text-size);
	}
	.pageFoodAbout2-content ul li {
		margin-bottom: 15px;
		padding-left: 35px;
	}
	.pageFoodAbout2-content ul li:before {
		width: 25px;
		height: 25px;
		top: -3px;
	}
	.reasons-items {
		column-count: 1;
	}
	.pageFoodInfo-block {
		padding: 30px 0;
	}
	.pageFoodInfo-block-wrap {
		display: block;
	}
	.pageFoodInfo-block-content {
		font-size: var(--h6-size);
		text-align: center;
		margin-bottom: 30px;
	}
	.pageFoodInfo-block-button {
		max-width: 100%;
		text-align: center;
		margin-left: 0;
	}
	.page-template-page-online-fitness .reviews-section, .page-template-page-meditations-2 .reviews-section, .page-template-page-group .reviews-section, .page-template-page-food .reviews-section, .page-template-page-course .reviews-section {
		padding: 50px 0;
	}
	.portfolio-item {
		--sizePortfolioItem: calc((var(--container) - 10px) / 2);
		height: calc(var(--sizePortfolioItem) * 1.087);
	}
	.portfolio-item:nth-child(10n+2),
	.portfolio-item:nth-child(10n+3),
	.portfolio-item:nth-child(10n+5),
	.portfolio-item:nth-child(10n+7),
	.portfolio-item:nth-child(10n+9),
	.portfolio-item:nth-child(10n+10) {
		margin-right: 0;
	}
	.portfolio-item:nth-child(10n+4) {
		margin-right: 10px;
	}
	.portfolio-item:nth-child(10n+5),
	.portfolio-item:nth-child(10n+10) {
		width: var(--sizePortfolioItem);
		height: calc(var(--sizePortfolioItem) * 1.087);
		margin-top: 0;
	}
	.portfolio-item:nth-child(10n+3),
	.portfolio-item:nth-child(10n+10) {
	    width: calc(var(--sizePortfolioItem) * 2 + 10px);
	}
	.portfolio-buttons {
		margin-top: 20px;
	}
	.results-item {
	    height: calc((var(--container) - 20px) / 2);
	}

	body.archive .mainBlock-bg img {
		object-position: 80% center;
	}
	.blog-items {
		margin-bottom: -30px;
	}
	.blog-item {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 30px;
	}
	.page-ArchiveBlog-wrapper {
		margin-top: -100px;
	}
	.blogSingle {
		padding-top: 30px;
	}
	.blogSingle-header {
		min-height: 170px;
		margin-bottom: 30px;
	}
	.blogSingle-title {
	    font-size: calc(var(--h1-size) / 1.0714);
	    padding: 30px;
	}
	.blogSingle-date {
		font-size: var(--text-size-sm);
	}
	.blogSingle-selectContent {
		display: block;
	}
	.blogSingle-body {
	    flex: 0 0 100%;
	    max-width: 100%;
	    margin-bottom: 50px;
	}
	.blogSingle-content {
	    margin-bottom: 25px;
	}
	.blogSingle-content h1 {
	    font-size: calc(var(--h1-size) / 1.0714);
	}
	.blogSingle-content h2 {
		font-size: var(--h2-size);
	}
	.blogSingle-content h3 {
		font-size: var(--h3-size);
	}
	.blogSingle-content h4 {
		font-size: var(--h4-size);
	}
	.blogSingle-content h5,
	.blogSingle-content h6 {
		font-size: var(--h6-size);
	}
	.blogSingle-sidebar {
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.blogSingle-sections {
		display: none;
	}
	.relatedBlog-heading {
		font-size: var(--h3-size);
		margin-bottom: 30px;
	}
	.relatedBlog-items {
		margin: 0 -10px -30px;
		justify-content: center;
	}
	.relatedBlog-items .blog-item {
		flex: 0 0 50%;
	    max-width: 50%;
	    margin-bottom: 30px;
	    padding: 0 10px;
	    height: auto;
	}
	.blogSingle-content blockquote {
		padding: 25px 20px 25px 94px;
	}
	.blogSingle-content blockquote:before {
		width: 74px;
	}
	.blogSingle-content blockquote:after {
		width: 40px;
		height: 40px;
		top: calc(50% - 20px);
		left: calc((74px - 40px) / 2);
	}
	.important-block-editor, .question-block-editor {
	    padding: 25px 20px 25px 57px;
	}
	.important-block-editor:before, .question-block-editor:before {
		width: 74px;
		height: 74px;
		left: -37px;
		top: calc(50% - 37px);
	}
	.important-block-editor:after, .question-block-editor:after {
		width: 40px;
	    height: 40px;
	    left: calc(-37px + (74px - 37px) / 2);
	    top: calc(50% - 20px);
	}
	.blogSingle-copy {
		text-align: center;
	}
	.pageThanks-image img {
		max-height: 187px;
	}
	.pageThanks-title {
	    font-size: calc(var(--h1-size) / 1.0714);
	}
	.pageThanks-content {
		font-size: var(--text-size-sm);
		margin-bottom: 30px;
	}
	.error-404-image img {
	    max-height: 120px;
	}
	.error-404-title {
		font-size: var(--h4-size);
	}

	.modal-dialog {
		margin: 0 auto;
		padding: 0;
	}
	.modal-title {
		font-size: var(--h6-size);
	}
	.modal-cart .modal-content {
		border-radius: 0;
	}
	.modal-cart .modal-title {
		min-height: 60px;
	}
	.modal-cart .modal-close {
		top: 10px;
	}
	.cart-wrap {
		padding: 30px 16px;
	}
	.cart-item__title,
	.cart-item__price {
		font-size: var(--text-size-sm);
	}
	.modal-consultation .modal-content {
		padding-left: 30px;
		padding-right: 30px;
	}

	.page-header {
		padding: 35px 0;
	}
	.page-title {
	    font-size: calc(var(--h1-size) / 1.1538);
	}
	.heading br {
		display: none;
	}
	.pageCourseInfo-block-content br {
		display: none;
	}
	.reviews-button {
		margin-top: 35px;
	}
	.tariffs-section .heading > h2 {
		font-size: var(--h2-size);
	}
	.blogSingle-info {
		margin-top: 0;
	}
}



@media (max-width: 767px) {
	:root {
		--container: 510px;
		--container-sm: var(--container);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 30px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 18px;
	}
	.owl-dots {
		margin-top: 20px;
	}
	.owl-dots button {
		flex: 0 0 15px;
		max-width: 15px;
		width: 15px;
		height: 15px;
	}
	.header-logo,
	.modal-header-logo {
		margin-right: 50px;
	}
	.pageOnlineFitnessAbout-video,
	.portfolio-item__video,
	.video-player-play {
		width: 48px;
		height: 48px;
	}
	.pageOnlineFitnessAbout-video a:before,
	.portfolio-item__video:before,
	.video-player-play:before {
		flex: 0 0 20px;
		max-width: 20px;
		width: 20px;
		height: 20px;
	}

	.header-logo .mobile {
		display: block;
		max-width: 140px;
	}

	.header-logo .desktop {
		display: none;
	}
}





@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 40px);
		--container-sm: var(--container);

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 30px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 18px;
	}
	.header-wrap {
		padding: 10px 0;
	}
	.footer-wrap {
		margin: 0;
	}
	.footer-widget {
		padding: 0;
	}
	.help-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.help-bg img {
		object-position: 41% center;
	}
	.home .mainBlock-bg img {
	    object-position: 15% center;
	}
	.blog-item__image {
	    flex: 0 0 calc(var(--container) / 1.475);
	    max-height: calc(var(--container) / 1.475);
	}
	.modal-header-wrap {
	    padding: 10px 0;
	}
	.modal-header-top {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 15px;
	}
	.modal-title br {
		display: none;
	}
	.mainBlock-actions {
		margin-top: 35px;
	}
	body.page-template-page-online-fitness .mainBlock-bg img {
	    object-position: 74% center;
	}
	.mainBlock-button .btn {
		min-width: 265px;
	}
	.programInfo-item__image {
		margin-right: 10px;
	}
	.programInfo-item__text {
		font-size: 12px;
	}
	.forWhom-item {
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.forWhom-item__wrap {
		max-width: 240px;
		margin: 0 auto;
	}
	.help-item__text {
		font-weight: 400;
	}
	.help-item__text br {
		display: none;
	}
	.abonements-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.abonements-item__image {
	    height: calc(var(--container) / 1.239);
	}
	.video-player {
		border-radius: 10px;
		height: calc(var(--container-sm) / 2);
		overflow: hidden;
	}
	.faq-item__title p {
		font-size: var(--text-size-sm);
	}
	.pageMeditationsAdvantages-items {
		margin: 0 -15px -30px;
	}
	.pageMeditationsAdvantages-item {
		margin-bottom: 30px;
		padding: 0 15px;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.menuFood-item, .meditations-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.menuFood-item__wrap, .meditations-item__wrap {
	    height: calc(var(--container) * 1.2459);
	}
	.mainBlock-content br {
		display: none;
	}
	.results-item {
	    height: var(--container);
	}
	.owl-nav button.owl-prev {
	    left: -12px;
	}
	.owl-nav button.owl-next {
	    right: -12px;
	}
	.process-item {
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.tariffs-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	body.archive .mainBlock-bg img {
	    object-position: 75% center;
	}
	.blog-item,
	.relatedBlog-items .blog-item {
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.cart-item__title {
		margin-right: 20px;
	}
	.cart-item__price {
		margin-right: 10px;
		flex: 0 0 80px;
		max-width: 80px;
	}
}