/*
Theme name: LoveFlover
Description: Комнатные растения
Author: Aleksandrlao
Author URI: https://aleksandrlao.com
*/



:root {
	--black: #000;
	--white: #fff;
	--blue: #2c7ca6;
	--green: #7bb72b;
	--main_bg: #f6f8fa;
}


@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--white);
	color: var(--black);
	font: 0.9rem/1.5 'IBM Plex Sans', Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1200px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container:after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: #000;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, textarea {
	font-family: Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: #000;
}
input::-webkit-input-placeholder {
	color: #000;
}
input::-moz-placeholder {
	color: #000;
}
input:-moz-placeholder {
	color: #000;
}
input:-ms-input-placeholder {
	color: #000;
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 24px;
}
.text h2, .text h3, .text h4, .text h5 {
	margin-bottom: 22px;
	color: #000;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.3;
}
.text h3 {
	font-size: 24px;
}
.text h4, .text h5 {
	font-size: 22px;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid #373737;
	padding: 10px;
}
.text ul, .text ol {
	margin: 0 0 25px 20px;
}
.text li {
	margin-bottom: 7px;
}
.text img {
	max-width: 100%;
	height: auto;
}




.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}




.head {
	margin-bottom: 2rem;
	font-size: 42px;
	font-weight: bold;
	line-height: 1.2;
}
.head span {
	font-weight: 300;
}










	/* Header ----------------------------------------------------------------------------- */
.header {
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	z-index: 40;
}
.header .container {
	align-items: center;
}
.header__logo {
	display: block;
	width: 164px;
	height: 30px;
	background: url('i/bg-logo.png') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	font-size: 0;
}

.header__nav {
	flex: 1;
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
}
.header__nav li {
	margin: 0.2rem 0.8rem;
	position: relative;
}
.header__nav a {
	display: block;
	padding: 4px 12px;
	border-radius: 8px;
	color: var(--black);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all .3s ease;
}
.header__nav a:hover {
	background: var(--green);
	color: var(--white);
}
.header__nav li .sub-menu {
	position: absolute;
	top: -20px;
	left: 0;
	display: block;
	background: var(--green);
	padding: 5px;
	border-radius: 8px;
	opacity: 0;
	pointer-events: none;
}
.header__nav li:hover .sub-menu {
	top: 32px;
	opacity: 1;
	pointer-events: auto;
}
.header__nav li .sub-menu a {
	color: var(--white);
}

.header__nav-btn {
	display: none;
	width: 30px;
	height: 30px;
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: 3px;
	border-radius: 3px;
	background: var(--black);
	margin: 7px 0 0;
	position: relative;
}
.header__nav-btn span::before, .header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 30px;
	height: 3px;
	border-radius: 3px;
	background: var(--black);
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -8px;
}
.header__nav-btn span::after {
	bottom: -8px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}











/* Breadcrumbs ----------------------------------------------------------------------------- */
.breadcrumbs {
	padding-top: 0.8rem;
	padding-bottom: 1rem;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.2;
}
.breadcrumbs a {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
	position: relative;
	color: var(--blue);
	text-decoration: none;
	transition: all .3s ease;
}
.breadcrumbs a::before {
	content: '';
	position: absolute;
	top: calc(50% - 4px);
	right: -16px;
	width: 8px;
	height: 8px;
	border: 2px solid #eef1f5;
	border-radius: 50%;
	pointer-events: none;
}
.breadcrumbs a:hover {
	color: var(--green);
}
.breadcrumbs span.current {
	font-weight: normal;
}








	/* Hero ----------------------------------------------------------------------------- */
.hero {
	padding-top: 0;
	padding-bottom: 2rem;
}
.hero .container {
	align-items: center;
}
.hero__info {
	width: 56%;
}
.hero__head {
	margin-bottom: 1.5rem;
	font-size: 42px;
	font-weight: bold;
	line-height: 1.3;
}
.hero__head span {
	font-weight: 300;
}
.hero__desc {
	max-width: 560px;
	margin-bottom: 1.5rem;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}
.hero-search {
	width: 100%;
	max-width: 560px;
	background: rgba(0, 0, 0, .01);
	border: 1px solid rgba(0, 0, 0, .01);
	padding: 12px;
	border-radius: 8px;
}
.hero-search__head {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
}
.hero-search__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.hero-search__input {
	display: block;
	width: calc(100% - 48px);
	height: 44px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	background: #fff;
	padding-left: 20px;
	padding-right: 8px;
	font-size: 16px;
}
.hero-search__submit {
	display: block;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--green);
	border: none;
	cursor: pointer;
}

.hero__thumb {
	width: 32%;
	margin-right: -30px;
}
.hero__thumb img {
	display: block;
	width: 100%;
	height: auto;
}











/* Word filter ----------------------------------------------------------------------------- */
.word-filter {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.word-filter__block {
	padding: 1.5rem 1rem 0.5rem;
	background-color: #fff;
	box-shadow: 0 0 24px 0 rgba(184,201,181,.36);
	border-radius: 20px;
	position: relative;
}
.word-filter__head {
	margin-top: -0.5rem;
	margin-bottom: 1rem;
	color: var(--black);
	font-size: 18px;
	font-weight: normal;
	line-height: 1.2;
}
.word-filter__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: calc(100% + 1rem);
	margin-left: -0.5rem;
}
.word-item {
	position: relative;
	margin: 0 12px 20px;
	cursor: pointer;
	transition: .3s;
}
.word-item:hover {
    z-index: 40;
}
.word-item__title {
    display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
    border: 1px solid #eaefec;
	border-radius: 10px;
    position: relative;
    font-size: 36px;
	font-weight: 300;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}
.word-item__title:hover {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.word-item__title span {
	position: absolute;
	top: 2px;
	right: 5px;
	font-size: 12px;
	color: var(--blue);
}
.word-item__title:hover span {
	color: var(--white);
}
.word-item__body {
    position: absolute;
    top: 58px;
    left: calc(50% - 120px);
    width: 240px;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #eaefec;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-event: none;
    transition: all .3s ease;
}
.word-item:hover .word-item__body {
    opacity: 1;
    pointer-event: auto;
}
.word-item__name {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
}
.word-item__name:hover {
    color: var(--blue);
}











/* Middle ----------------------------------------------------------------------------- */
.main-cat {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.main-cat__head {
	margin-bottom: 1.2rem;
}
.main-cat__list {
	justify-content: flex-start;
	align-items: stretch;
	width: calc(100% + 2rem);
	margin-left: -1rem;
}
.main-cat-item {
	width: 16.6%;
	margin-bottom: 8px;
	display: block;
	padding: 1.2rem 1rem;
	border-radius: 16px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
}
.main-cat-item:hover {
	color: var(--blue);
	box-shadow: 0 0 24px 0 rgba(188,199,220,.36);
}
.main-cat-item__thumb {
	display: block;
	width: 100%;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}
.main-cat-item__thumb-ins {
	display: block;
	padding-top: 120%;
	position: relative;
}
.main-cat-item__thumb-ins img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-cat-item__title {
	display: block;
}











/* New ----------------------------------------------------------------------------- */
.new {
	padding-top: 1rem;
	padding-bottom: 1.5rem;
}
.new__list {
	justify-content: flex-start;
	align-items: stretch;
	width: calc(100% + 2rem);
	margin-left: -1rem;
}

.item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	width: calc(33.3% - 2rem);
	margin: 0 1rem 2rem;
	padding: 1.5rem;
	background-color: var(--main_bg);
	border-radius: 20px;
}
/*.item:hover {*/
	/*background-color: #fff;*/
	/*box-shadow: 0 0 24px 0 rgba(188,199,220,.36);*/
/*}*/
.item__link {
	display: block;
	width: calc(100% + 3rem);
	margin-top: -1.5rem;
	margin-left: -1.5rem;
	margin-right: -1.5rem;
	text-decoration: none;
}
.item__thumb {
	display: block;
	width: 100%;
	padding-bottom: 1.5rem;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
.item__thumb-ins {
	display: block;
	width: 100%;
	padding-top: 80%;
	position: relative;
}
.item__thumb-ins img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item__title {
	display: block;
	width: 100%;
	padding: 0 1.5rem;
	margin-bottom: 1rem;
	font-size: 22px;
	font-weight: 300;
	line-height: 1.4;
	transition: all .3s ease;
}
.item__link:hover .item__title {
	color: var(--blue);
}
.item__excerpt {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
	font-size: 14px;
	line-height: 1.3;
}
.item__more {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 4px 20px;
	margin-left: -20px;
	border-radius: 5px;
	color: var(--blue);
	font-size: 15px;
	font-weight: 300;
	line-height: 1.2;
	text-decoration: none;
	transition: all .3s ease;
}
.item__more::after {

}
.item__more:hover {
	transform: translateX(20px);
	background: var(--blue);
	color: var(--white);
	transition: all .3s ease;
}






.popular {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.popular-box {
	width: 38%;
	padding: 40px 30px;
	background-color: var(--main_bg);
	border-radius: 20px;
	overflow: hidden;
}
.popular-box__head {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e1e8e4;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.2;
}
.popular-box__list {
	overflow: hidden;
}
.popular-box-item {
	float: left;
	display: block;
	width: 100%;
	text-decoration: none;
}
.popular-box-item__title {
	display: block;
	margin-bottom: 1.5rem;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.2;
	transition: all .3s ease;
}
.popular-box-item__thumb {
	display: block;
	width: 100%;
	border-radius: 20px;
	margin-bottom: 1.5rem;
}
.popular-box-item__thumb-ins {
	display: block;
	width: 100%;
	padding-top: 56%;
	position: relative;
}
.popular-box-item__thumb-ins img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.popular-box-item__more {
	display: block;
	padding: 4px 20px;
	margin-left: auto;
	margin-right: -20px;
}
.popular-box-item__more:hover {

}


.most-popular {
	width: 58%;
}
.most-popular__head {
	margin-bottom: 1.5rem;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
}
.most-popular__head span {
	display: block;
	font-weight: 300;
}
.most-popular__list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.most-popular-item {
	margin-bottom: 5px;
	position: relative;
	padding: 8px 20px 10px 55px;
	background-color: transparent;
	border-radius: 10px;
	font-size: 16px;
	color: #000;
	line-height: 1.2;
	text-decoration: none;
	transition: all .3s ease;
}
.most-popular-item::before {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	left: 15px;
	width: 20px;
	height: 1px;
	background: #000;
}
.most-popular-item:hover {
	background: var(--main_bg);
	color: var(--blue);
}






.main-about {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.main-about .container {
	align-items: stretch;
}
.main-about__info {
	width: 40%;
}

.main-about__thumb {
	width: 18%;
}
.main-about__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-read {
	width: 32%;
}
.main-read__head {
	margin-bottom: 1.5rem;
	margin-left: 20px;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
}
.main-read__list {

}
.main-read-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	line-height: 1.56;
	border-radius: 10px;
	text-decoration: none;
	transition: all .3s ease;
}
.main-read-item:hover {
	background: var(--main_bg);
}
.main-read-item__thumb {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
.main-read-item__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-read-item__title {
	display: block;
	width: calc(100% - 110px);
	color: var(--blue);
	font-size: 16px;
	line-height: 1.2;
	transition: all .3s ease;
}
.main-read-item__title {
	color: var(--black);
}








/* Single page ----------------------------------------------------------------------------- */
.single-page {
	padding-top: 1rem;
	padding-bottom: 4rem;
}
.single-page__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding: 1.5rem;
	background-color: #fff;
	border: 1px solid #eef1f5;
	border-radius: 24px;
	margin-bottom: 2.5rem;
}
.single-page__info {
	width: 60%;
}
.single-page__info .head {
	margin-bottom: 1rem;
}
.single-page__top-desc {
	margin-bottom: 1.5rem;
	font-size: 18px;
	line-height: 1.3;
}
.single-page__data {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.single-page__data-title {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	font-size: 14px;
	opacity: .5;
}
.single-page__author {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin-right: 20px;
}
.single-page__author-about {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding: 4px 8px 4px 4px;
	border: 1px solid transparent;
	border-radius: 30px 8px 8px 30px;
	color: #000;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	transition: all .3s ease;
}
.single-page__author-about:hover {
	border-color: #eef1f5;
}
.single-page__author-photo {
	display: inline-block;
	vertical-align: middle;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 8px;
}
.single-page__author-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single-page__author-name {
	color: #000;
	font-size: 15px;
	line-height: 1;
}
.single-page__date {
	font-size: 15px;
}
.single-page__cat {

}
.single-page__cat a {
	font-size: 14px;
	line-height: 1.2;
	text-decoration: none;
}
.single-page__cat a:hover {

}
.single-page__view {
	opacity: .4;
	padding-left: 20px;
	position: relative;
	font-size: 14px;
}
.single-page__view::before {
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	left: 0;
	width: 16px;
	height: 10px;
	background: url('i/bg-icon-view.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.single-page__thumb {
	width: 38%;
	position: relative;
}
.single-page__thumb img {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
	object-fit: cover;
}





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

.content {
	width: calc(100% - 400px);
}

.sidebar {
	width: 320px;
}
.sidebar__box {
	position: relative;
	z-index: 1;
	padding-top: 1.2rem;
	padding-bottom: 0.4rem;
	border: 1px solid #e7eaef;
	background-color: #fff;
	border-radius: 20px;
	margin-bottom: 2rem;
}
.sidebar__head {
	padding: 0 1.4rem 1rem 1.4rem;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}
.sidebar__body {
}
.sidebar__body ul {
	list-style: none;
}
.sidebar__body ul li {
	border-top: 1px solid #e7eaef;
}
.sidebar__body ul li.sub_1 {
	border-top: none;
	margin-left: 20px !important;
}
.sidebar__body ul li a {
	display: block;
	padding: 0.6rem 1.4rem;
	font-size: 16px;
	color: #000;
	font-weight: 600;
	line-height: 1.5;
	background-color: transparent;
	border-radius: 5px;
	text-decoration: none;
}
.sidebar__body ul li.sub_1 a {
	padding: 0.4rem 1rem;
	font-size: 14px;
}
.sidebar__body ul li a:hover {
	color: var(--blue);
}




























	/* Footer ----------------------------------------------------------------------------- */
.footer {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background: var(--main_bg);
}
.footer-top {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.footer__info {
	width: 30%;
	margin-right: auto;
}
.footer__logo {
	margin-bottom: 1rem;
}
.footer__copy {
	opacity: .8;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
}

.footer__box {
	width: 25%;
	margin-left: 2%;
}
.footer__head {
	margin-bottom: 1.4rem;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
}
.footer__nav ul {
	list-style: none;
}
.footer__nav li {
	margin-bottom: 2px;
}
.footer__nav a {
	display: inline-block;
	padding: 8px 12px 8px 24px;
	margin-left: -5px;
	border-radius: 4px;
	position: relative;
	color: var(--blue);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;
	text-decoration: none;
	transition: all .3s ease;
}
.footer__nav a::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid var(--green);
}
.footer__nav a:hover {
	background: var(--white);
}


.footer-bottom {
	align-items: center;
	padding-top: 2rem;
}
.footer__contact a {
	color: var(--blue);
	text-decoration: none;
}
.footer__attention {
	flex: 1;
	opacity: .6;
	padding-left: 2rem;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.2;
}





/* Всплывающие окна */
.overlay {
	display: none;
	background-color: #000;
	opacity: .7;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999
}
.overlay.active {
	display: block;
}

.popup {
	display: none;
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 25px;
	background: #fff;
	text-align: center;
	z-index: 9999;
}
.popup__close {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 100%;
		  border-radius: 100%;
	position: absolute;
	background: #000;
	color: #FFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #363636;
	top: -11px;
	right: -11px;
	cursor: pointer;
}
.popup__close:hover {
	background: #FFF;
	color: #000;
}
.popup__title {
	margin-bottom: 5px;
	font-size: 30px;
	font-weight: 300;
	line-height: 34px;
	color: #000;
}
.popup__subtitle {
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 21px;
	text-align: center;
	color: #000;
}
.popup__label {
	position: relative;
}
.popup__body input,
.popup__body textarea {
	width: 100%;
	height: 40px;
	margin-top: 12px;
	padding-left: 12px;
	border: 1px solid #eee;
	background-color: #FFF;
	outline: none;
}
.popup-body textarea {
	height: 120px;
	resize: none;
	padding-top: 5px;
}
.popup-body input[type="submit"] {
	height: 46px;
	padding-left: 0;
	background-color: #FC0;
	border: 1px solid #FC0;
	color: #000;
	font-size: 17px;
	font-weight: bold;
	line-height: 44px;
	cursor: pointer;
}



/* Форма */


input.hide_input {
	display: none;
}
span.wpcf7-not-valid-tip, div.wpcf7-validation-errors {
	display: none !important;
}
.popup-body input.wpcf7-not-valid {
	border: 1px solid #c00;
}

.popup-thy {
	position: fixed;
	top: calc(50% - 160px);
	left: calc(50% - 200px);
}




/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1200px) {

	

}











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

	.header__nav li {
		margin: 0.2rem 0.4rem;
	}


	.hero__head {
		max-width: 500px;
		margin-bottom: 1.2rem;
		font-size: 32px;
	}


	.main-cat-item {
		width: 20%;
		padding: 1rem;
	}


	.popular-box {
		width: 40%;
		padding: 32px 24px;
	}
	.most-popular {
		width: 56%;
	}


	.item {
		padding: 1rem;
	}
	.item__link {
		width: calc(100% + 2rem);
		margin-top: -1rem;
		margin-left: -1rem;
		margin-right: -1rem;
	}
	.item__title {
		padding: 0 1rem;
		font-size: 20px;
	}


	.single-page__author {
		order: 10;
		width: 100%;
		margin-right: 0;
		margin-top: 1rem;
	}


	.content {
		width: calc(100% - 320px);
	}


	.sidebar {
		width: 280px;
	}



	.footer__box {
		width: 30%;
		margin-left: 2%;
	}

}












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

	html {
		font-size: 18px;
	}
	body {
		font-size: 1rem;
	}


	.head {
		font-size: 36px;
	}


	.header__nav {
		position: absolute;
		top: 0;
		right: 0;
		width: 240px;
		background: var(--white);
		border-radius: 10px;
		box-shadow: 0 0 8px rgba(0, 0, 0, .4);
		opacity: 0;
		pointer-events: none;
		z-index: 80;
	}
	.nav-active .header__nav {
		top: 48px;
		opacity: 1;
		pointer-events: auto;
	}
	.header__nav ul {
		display: block;
	}

	.header__nav-btn {
		display: block;
	}


	.hero {
		padding-top: 1.5rem;
	}
	.hero__head {
		margin-bottom: 1rem;
		line-height: 1.2;
	}


	.main-cat-item {
		width: 33.3%;
	}


	.new__list {
		width: calc(100% + 1.6rem);
		margin-left: -0.8rem;
	}
	.item {
		width: calc(50% - 1.6rem);
		margin: 0 0.8rem 1.6rem;
	}


	.main-read {
		order: -5;
		width: 100%;
		padding-bottom: 2.4rem;
	}
	.main-about__info {
		width: 64%;
	}
	.main-about__thumb {
		width: 30%;
	}


	.single-page__top {
		padding: 1rem;
		border-radius: 20px;
		margin-bottom: 2rem;
	}
	.single-page__thumb {
		order: -10;
		width: 100%;
		height: 240px;
		margin-bottom: 1.2rem;
	}
	.single-page__info {
		width: 100%;
	}

	.single-page__author {
		order: -10;
		width: auto;
		margin-right: 20px;
		margin-top: 0;
	}


	.content {
		width: 100%;
	}
	.sidebar {
		width: 100%;
		max-width: 320px;
		margin: 1.5rem auto 0;
	}



}












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

	.popular-box {
		width: 100%;
		margin-bottom: 3rem;
	}
	.most-popular {
		width: 100%;
	}


	.single-page__author {
		order: 10;
		width: 100%;
		margin-right: 0;
		margin-top: 1rem;
	}


	.footer__info {
		width: 100%;
		padding-bottom: 3rem;
	}
	.footer__box {
		width: 48%;
		margin-left: 0;
	}

}












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

	html {
		font-size: 16px;
	}


	.head {
		font-size: 32px;
	}


	.hero__info {
		width: 100%;
		position: relative;
		z-index: 20;
	}
	.hero__head {
		font-size: 28px;
	}
	.hero__desc {
		padding-right: 32%;
	}
	.hero__thumb {
		position: absolute;
		top: 64px;
		right: -2%;
	}


	.main-cat-item {
		width: 50%;
	}



	.single-page__top-desc {
		margin-bottom: 1.5rem;
		font-size: 20px;
	}


	.footer__attention {
		font-size: 13px;
	}

}












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

	.head {
		font-size: 28px;
	}


	.hero__head {
		padding-right: 16%;
		text-shadow: 0 0 4px rgba(255, 255, 255, .9), 2px 2px 0 rgba(255, 255, 255, 1);
		font-size: 24px;
	}
	.hero__desc {
		padding-right: 8%;
		text-shadow: 0 0 4px rgba(255, 255, 255, .9), 1px 1px 0 rgba(255, 255, 255, 1), -1px -1px 0 rgba(255, 255, 255, 1);
	}
	.hero__thumb {
		top: -24px;
		right: -2%;
		width: 45%;
	}


	.item {
		width: calc(100% - 1.6rem);
	}


	.main-read-item {
		padding: 12px;
		line-height: 1.4;
	}
	.main-read-item__title {
		width: calc(100% - 96px);
	}
	.main-about__thumb {
		order: -2;
		width: 100%;
		height: 240px;
		margin-bottom: 1rem;
	}
	.main-about__info {
		width: 100%;
	}


	.single-page__top {
		width: calc(100% + 0.8rem);
		margin-left: -0.4rem;
		padding: 1rem;
		border-radius: 16px;
	}
	.single-page__date {
		font-size: 14px;
	}
	.single-page__data-title {
		margin-right: 4px;
	}



	.footer__box {
		width: 100%;
		padding-bottom: 1.5rem;
	}

	.footer__contact {
		width: 100%;
		padding-bottom: 0.5rem;
		text-align: center;
	}
	.footer__attention {
		width: 100%;
		padding-left: 0;
		font-size: 12px;
		text-align: center;
	}

}












/* END ============================================================= */

