/* START TAGS-CSS */

:root {
    --theme-color: rgb(112, 203, 84);
    --color-A: #e6a1e0;
    --color-B: #ecbde7;
	
	--color-full: #02ccd8;
	--color-opacity: #b7dbcd;
}

.top-header {
	box-shadow: 0px 0px 4px 0px rgba(222, 225, 227, 0.8);
	background: #FFF;
	/*background: linear-gradient(0deg, var(--color-opacity) 0%, var(--color-full) 100%);*/
}

.header {
    position: relative;
    height: 80px;
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 2;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header::before {
    content: "";
    display: none;
    position: absolute;
    top: 10%;
    left: 40px;
    height: 80%;
    max-height: 80%;
    width: 100px;   
    background: url(../pic/tsvetok-zhizni-header.png);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    transform: scale(-1, 1);
}

.header::after {
    content: "";
    display: none;
    position: absolute;
    top: 10%;
    right: 40px;
    height: 80%;
    max-height: 80%;
    width: 100px;   
    background: url(../pic/tsvetok-zhizni-header.png);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    font-family: Yoga;
    text-transform: uppercase;
    font-size: 32px;
    color: #6969b3;
    text-decoration: none;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
}

.header__info {
    width: 30%;
    font-family: Montserrat-Regular;
	font-size: 18px;
}

.header__info a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: var(--color-full);
	text-transform: uppercase;
	font-family: Montserrat-Bold;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	font-size: 22px;
	transition: 0.3s;
}

.header__info a:hover {
	text-decoration: none;
	color: var(--color-full);
	transition: 0.3s;
}

.header__info img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	background: var(--color-A);
	border-radius: 50%;
	padding: 2px;
}

.header__socials {
    display: flex;
    justify-content: center;
    width: 40%;
}

.header__social-link {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0px 5px;
}

.header__social-link img {
    width: 100%;
    height: auto;
}

.header__search {
    width: 30%;
	display: flex;
    justify-content: flex-end;
}

.header__cabinet {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	padding: 10px 20px;
	background: var(--color-full);
    font-family: Montserrat-Medium;
	font-size: 18px;
	color: #FFF;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s;
}

.header__cabinet:hover {
	background: var(--color-opacity);
	color: #FFF;
	text-decoration: none;
	cursor: pointer;
	transition: 0.3s;
}



.nav {
    
}

.nav__wrapper {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.menu-item {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin: 0px 16px;
}

.menu-item a {
    position: relative;
    padding: 20px 10px;
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
    font-family: Montserrat-Medium;
	color: #000;
	transition: 0.3s;
}

.menu-item a::before {
    content: "";
	display: block;
	height: 1px;
	width: 0px;
	background: var(--color-full);
	position: absolute;
	left: 0px;
	bottom: 18px;
	transition: 0.3s;
}

.menu-item:hover a {
    color: #444;
	transition: 0.3s;
}

.menu-item:hover ul a {
    color: #000;
	transition: 0.3s;
}

.menu-item:hover a::before {
    width: 100%;
	transition: 0.3s;
}

.footer .menu-item span::before {
    background: #000;
}

.current_page_item span {
    position: relative;
    padding: 20px 10px;
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
    font-family: Montserrat-Medium;
    color: #000;
	cursor: pointer;
    transition: 0.3s;
}

.current_page_item span::before {
    display: none;
}

.nav__wrapper li ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 110;
	width: 220px;
}
.nav__wrapper li:hover ul {
	display: block;
}
.nav__wrapper li ul .current-post-parent a {
	background: #6969b3
}
.nav__wrapper li ul li {
	font-size: 16px;
	line-height: 20px;
	margin: 0px;
	height: auto;
}
.nav__wrapper li ul li a,
.nav__wrapper li ul li span {
	display: block;
	font-size: 14px;
	color: #000;
	padding: 12px 10px;
	background: var(--color-full);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	width: 100%;
}
.nav__wrapper li ul li a:hover,
.nav__wrapper li ul li span:hover {
	text-decoration: none;
	background: var(--color-B);
	color: #000;
}
.nav__wrapper li ul li span {
	background: var(--color-B);
}

.sub-menu li a::before {
    display: none;
}

.sub-menu .current_page_item span::before {
    display: none;
}


.offer {
    position: relative;
    background: #fff;
	margin-top: 20px;
    margin-bottom: 20px;
}

.offer__wrapper {
    position: relative;
    z-index: 2;
}

.offer__img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.offer__title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-family: Montserrat-SemiBold;
    color: #000;
    padding-top: 20px;
    padding-bottom: 10px;
}

.offer__title:hover {
    color: #6969b3;
}

.offer__sub-title {
    text-align: center;
    font-size: 36px;
    text-shadow: 2px 1px 3px #000;
    margin-bottom: 70px;
    font-family: Montserrat-Medium;
    color: #fff;
}




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

.content {
    width: calc(100% - 300px);
    background: #fff;
}

.content_fullpage {
	width: 100%;
	padding: 0px;
}

.sidebar {
    width: 275px;
	padding-left: 25px;
	border-left: 1px solid var(--color-full);
}

.sidebar .menu-item {
	height: auto;
	margin-bottom: 10px;
	margin-left: 10px;
	justify-content: flex-start;
}

.sidebar .menu-item a {
	padding: 0px;
	font-size: 16px;
}

.sidebar .menu-item a::before {
    bottom: -2px;
}

.page .content {
	width: 100%;
    box-shadow: none;
	float: none;
	padding: 0px;
}

.page .sidebar {
	display: none !important;
}



.cat-item {
	margin-bottom: 10px;
	margin-left: 10px;
	transition: 0.3s;
}

.cat-item  a{
	position: relative;
	text-decoration: none;
	font-size: 16px;
	line-height: 20px;
	font-family: Montserrat-Regular;
	color: #000;
	transition: 0.3s;
}

.cat-item a::before {
    content: "";
    display: block;
    height: 1px;
    width: 0px;
    background: var(--color-full);
    position: absolute;
    left: 0px;
    bottom: -2px;
    transition: 0.3s;
}

.cat-item a:hover::before {
    width: 100%;
	transition: 0.3s;
}

.tagcloud {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.tagcloud a,
.tag-cloud-link {
	border: 1px solid var(--color-full);
	border-radius: 4px;
	padding: 6px;
	display: block;
	margin-left: 10px;
	margin-bottom: 10px;
	color: #000;
	font-size: 10px !important;
}


 /*start banner*/
.banner {
    
}

.banner.parallax {
	position: relative;
}


.banner__wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 50px 0px;
	min-height: calc(100vh - 170px);
	z-index: 2;
	box-shadow: inset 0px 0px 5px 0px #000;
	background: url(https://koronova-space.com/wp-content/themes/mnogomernost/images/Ca3fqPpgV5E.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: 30% center;
}



.banner__wrapper::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.0);
	z-index: 1;
}

.banner__item {
    width: 500px;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-family: Montserrat-Bold;
    font-size: 1.5rem;
    margin-bottom: 50px;
    text-shadow: 0px 1px 4px #666;
}

.banner__flower {
	position: relative;
	width: 250px;
	height: auto;
	margin-bottom: 20px;
	opacity: 0.9;
	z-index: 2;
	background: rgba(247, 255, 0, 0.63);;
	border-radius: 50%;
	z-index: 2;
}

.banner__title {
	position: relative;
	text-align: center;
    font-size: 70px;
	line-height: 1.2;
    margin-bottom: 80px;
    font-family: Montserrat-Medium;
    color: #fff;
	text-transform: uppercase;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.7);
	z-index: 2;
}

.banner__sub-title {
	position: relative;
    text-align: center;
    font-size: 34px;
	line-height: 1.2;
    color: #fff;
	font-family: Montserrat-Medium;
	margin-bottom: 50px;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.7);
	z-index: 2;
}

.banner__sub-title span {
	padding-bottom: 2px;
    border-bottom: 2px solid #FFF;
	font-size: 40px;
}

.banner__button {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 15px 30px;
    background: rgba(247, 255, 0, 0.63);
    font-family: Montserrat-Bold;
    font-size: 20px;
    color: #FFF;
	text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	opacity: 0.9;
    transition: 0.3s;
	z-index: 2;
}

.banner__button:hover {
	background: var(--color-A);
    color: #FFF;
	text-decoration: none;
    transition: 0.3s;
}
    /*stop banner*/




	/* start callback */

.callback {
    position: relative;
    padding: 100px 0px;
    box-shadow: inset 0px 0px 5px 0px #000;
	background: url(../images/form__background.jpg);
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
}

.callback::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.callback__wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    position: relative;
    z-index: 2;
}


.callback__main-title {
	width: 100%;
	position: relative;
	text-align: center;
	font-size: 50px;
	line-height: 1.2;
	margin-bottom: 80px;
	font-family: Montserrat-Bold;
	color: #fff;
	text-transform: uppercase;
	z-index: 2;
}

.callback__contacts {
	width: calc(50% - 25px);
}

.callback__sub-title {
	position: relative;
	text-align: left;
	font-size: 18px;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 40px;
}

.callback__contact {
	display: block;
	color: #fff;
	font-size: 18px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: 0.3s;
}

.callback__contact:hover {
	color: var(--color-A);
	transition: 0.3s;
}

.callback__contact span {
	display: inline-block;
	width: 120px;
	font-family: Montserrat-SemiBold;
}

.callback__callback {
    display: flex;
    justify-content: center;
}

.callback__callback-button {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    padding: 20px 40px;
    background: var(--main-color-A);
    color: #fff;
    font-family: Montserrat-SemiBold;
    font-size: 26px;
    text-shadow: 2px 1px 1px #000;
    box-shadow: 3px 3px 7px 0 #000;
    text-decoration: none;
    transition: 0.5s;
}

.callback__socials {
	display: flex;
	align-items: center;
	margin-top: 40px;
}

.callback__social {
	width: 40px;
	height: 40px;
	margin-right: 16px;
}

.callback__social img {
	width: 100%;
	height: 100%;
	border-radius: 6px;
}

.callback__form,
.callback form {
	width: calc(50% - 25px);
}

.hf-message {
	border: 1px solid var(--color-full);
	padding: 15px;
	margin-top: 10px;
	color: #FFF;
}

.callback__input {
    background: #fff;
    width: 100%;
    padding: 12px 25px;
	margin-bottom: 10px;
	border: 0px !important;
	border-radius: 10px;
    font-family: Montserrat-Regular;
    font-size: 16px;
    box-shadow: 1px 1px 4px 1px #000;
}

.callback__textarea {
    background: #fff;
    min-width: 100%;
	width: 100%;
	max-width: 100%;
	min-height: 120px;
	height: 120px;
	max-height: 120px;
    padding: 12px 25px;
	margin-bottom: 10px;
	border: 0px !important;
	border-radius: 10px;
    font-family: Montserrat-Regular;
    font-size: 16px;
    box-shadow: 1px 1px 4px 1px #000;
}

.callback__input[type="submit"] {
	width: 100%;
    padding: 12px 25px;
	background: var(--color-full);
	font-family: Montserrat-Medium;
	font-size: 18px;
	color: #FFF;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s;
}

.callback__input[type="submit"]:hover {
    background: var(--color-A);
    transition: 0.5s;
}

.callback__label {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 6px 0px;
	margin-bottom: 10px;
	color: #FFF;
	font-size: 14px;
}

.callback__label input {
	margin-right: 5px;
}


.pum-theme-663 .pum-title, .pum-theme-lightbox .pum-title {
	color: #FFF !important;
	text-align: center !important;
	font-family: Montserrat-Bold !important;
	text-shadow: 2px 2px 0px rgba(0,0,0,0.5) !important;
}

.pum-theme-663 .pum-container, .pum-theme-lightbox .pum-container {
	background: url(https://koronova-space.com/wp-content/themes/mnogomernost/images/form__background.jpg);
    background-size: cover;
}
	/* stop callback */



.post-password-form {
	border: 1px solid var(--color-full);
	border-radius: 20px;
	padding: 20px;
	background: var(--color-full);
	margin-bottom: 50px;
}

.post-password-form input {
	border-radius: 5px;
	border: 0px;
	padding: 5px;
	margin-left: 5px;
	margin-right: 5px;
	background: #f8f8f8;
}

.post-password-form input[type="submit"] {
	border-radius: 5px;
	border: 0px;
	padding: 5px 15px;
	background: var(--color-A);
	color: #fff;
	font-family: Montserrat-Medium;
}




figure.wp-block-image {display: none;}

.about-us {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border: 1px solid var(--color-full);
	padding: 15px;
	margin-bottom: 30px;
}

.about-us img {
	width: 140px;
	height: auto;
	margin-right: 15px;
	border-radius: 5px;
}

/*MEDIA SCREEN START*/

@media screen and (max-width: 1200px){
	.header {height: auto;}
	.header__wrapper {flex-wrap: wrap; padding-left: 50%; position: relative;}
	.header__info {position: absolute; top: 0; left: 0; width: 50%; height: 100%; display: flex; align-items: center; justify-content: center;}
	.header__info a {font-size: 22px;}
	.header__info img {width: 70px; height: 70px;}
	.header__socials {width: 100%; justify-content: flex-end; margin-bottom: 10px;}
	.header__cabinet {width: 340px;}
	.header__search {width: 100%;}
	.search-form {border: 1px solid var(--color-full);}
	.search-form__field::placeholder {color: #333; opacity: 1;}
	
	.content_fullpage {padding: 0px 5vw;}
	.page {padding: 0px 5vw;}
	.breadcrumbs {padding: 30px 5vw;}
	.zapisi, .single-zapis {padding: 30px 5vw;}
	.banner {margin: 0px -5vw;}
	.callback {padding: 100px 5vw;}
}


@media screen  and (max-width: 1200px){ 

}


@media screen  and (max-width: 1100px) {

}


@media screen  and (max-width: 1000px) {
	.header {padding: 20px 5%;}
	.header__wrapper {padding-left: 0px;}
	.header__info {position: relative; width: 100%; margin-bottom: 25px;}
	.header__info img {width: 40px; height: 40px;}
	.header__socials {width: 50%; margin-bottom: 0px; justify-content: flex-start;}
	.header__search {width: 50%;}
	
	.about p {font-size: 18px;}
	.about-title p {font-size: 32px;}
	
	
	.nav__wrapper {flex-direction: column; justify-content: flex-start; overflow-y: scroll;}
	.menu-item {flex-direction: column; height: auto; justify-content: flex-start; align-items: flex-start;}
	.nav__wrapper li ul {display: block; position: relative; padding-left: 20px; width: auto;}
	.current_page_item span {padding: 10px 0px;}
	.menu-item a {padding: 10px 0px;}
	.menu-item a::before {display: none;}
	
	.uslugi-title p,
	.statyi-title p {font-size: 32px;}
	
	.content {width: 100%;}
	.posts {max-width: 100%;}
	
	.zapisi, .single-zapis {flex-direction: column;}
	.sidebar {width: 100% !important; padding-right: 26px;}
}


@media screen  and (max-width: 800px) {
	.header__socials {width: 100%; justify-content: center; margin-bottom: 15px;}
	.header__search {width: 100%; justify-content: center;}
	
	
	.banner__flower {max-width: 90%;}
	.banner__title {font-size: 32px; margin-bottom: 40px;}
	.banner__sub-title {font-size: 18px;}
	.banner__sub-title span {font-size: 22px;}
	.banner__button {font-size: 16px;}
	
	.about:not(.not-about) {padding: 50px 5vw !important; background-image: none !important;}
	.about:not(.not-about) img {opacity: 1 !important; border-radius: 10px; margin-top: 30px;}
	.about-title p::after {margin: 25px 0px;}
	.about-link p {width: 100%;}
	.about-link p a {display: block; width: 90%; margin: 0 auto;}
	
	.vc_custom_1609768819246,
	.vc_custom_1608502059084 {padding-top: 20px !important; padding-bottom: 20px !important;}
	
	.vc_custom_1609050773530 {padding-top: 20px !important; margin-bottom: 20px !important;}
	
	.not-about img {max-width: 60%; margin-bottom: 30px;}
	.not-about .wpb_single_image .vc_single_image-wrapper {text-align: center;}
	
	.callback {padding: 50px 5vw;}
	.callback__main-title {font-size: 26px; margin-bottom: 40px;}
	.callback__contacts {width: 100%; margin-bottom: 30px;}
	.callback__contact {text-align: center; padding-bottom: 20px; border-bottom: 1px solid #fff; margin-bottom: 20px;}
	.callback__contact span {display: block; width: auto; margin-bottom: 10px; }
	.callback__socials {justify-content: center;}
	.callback__social {margin: 0px auto;}
	.callback__form {width: 100%;}
	
	.footer {margin: 0 auto; padding: 0px 5vw;}
	.footer .menu-item {justify-content: center; align-items: center;}
	
	.adventage {padding-left: 5vw !important; padding-right: 5vw !important;}
	.treners-main-title p {font-size: 24px;}
	.treners img {max-width: 100%;}
	
	.about-us {flex-direction: column; justify-content: center; align-items: center;}
	.about-us img {margin-bottom: 30px;}
}


@media screen  and (max-width: 700px) {

}


@media screen  and (max-width: 600px) {

}


@media screen  and (max-width: 550px) {

}

@media screen  and (max-width: 500px) {

}

@media screen  and (max-width: 400px) {

}