html, body {	
	padding: 0;	
	margin: 0;
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden;
}
h1 {font-size: 44px}
h2 {font-size: 32px; text-align: center; margin-bottom: 60px}
.w-100 {
	width: 200px;
}
:root {
	--bg-color: #f1f1f1;
	--grey: #d9d9d9;
	--mg-color: #2c2c2c;
	--white: #ffffff;
	--green: #00862E;
	--black: #000000;

	--bg-text: #2c2c2c;
	--light-text: #f5f5f5;
	--text-button: #CA5908;
}
.container {
	max-width: 1170px;
	padding: 0px 30px 0px;
	margin: 0 auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 100%;
	align-items: center;
}
.justify-content-arround {
	display: flex;
	justify-content: space-around;
}
.align-content-center {
	align-items: center;
}
.container-ptb {
	padding: 60px 0px;
}
.flex-column {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.wraper {
	height: 100%;
	background-color: var(--bg-color);
	color: var(--bg-text);
	font-family: 'RobotoRegular', sans-serif;
	position: relative;
}
.first-monitor {
	background-color: var(--bg-color);
	height: 100vh;
}
#header {
	background-color: var(--bg-color);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--grey);
}
.header {
	padding-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	color: #2c2c2c;
	font-size: 18px;
	position: relative;
}
.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	
}
.logo {
	display: flex;
	align-items: center;
	font-size: 22px;
	margin-right: 15px;
}
.logo img {
	width: 46px; 
	height: 46px;
	margin-right: 10px;
}
/*--Меню гамбургер--*/
.nav-gamburger {
	display: none;
	cursor: pointer;
}
.gamburger {
	width: 30px; 
	height: 30px; 
	display: flex; 
	flex-direction: column; 
	margin-left: 20px; 
	justify-content: center; 
	margin-top: 5px;
}
.gamburger span {background: var(--bg-text); height: 4px; margin-bottom: 4px; border-radius: 2px}
.mobile-header {
	display: none;
	position: absolute;
	top: 70px;
	right: 0;
	width: 100%;
	background-color: var(--white);
	border-radius: 8px;
	border: 1px solid var(--grey);
}
.mobile-menu {
	text-decoration: none;
	text-align: right;
	padding: 15px;
	z-index: 100;
}
.mobile-menu li {
	padding: 10px;
	border-bottom: 1px solid var(--grey);
}
.mobile-menu li:lastchild {
	border-bottom: none;
}
.close-li {
	display: flex;
	align-content: center;
	justify-content: right;
}
.close-menu {
	display: flex;
	align-items: center;
}
.close-menu img{
	margin-left: 10px;
}
.mobile-menu a {
	text-decoration: none;
	color: var(--bg-text);
}
.menu {
	display: flex;
	list-style-type: none;
}
.menu li {
	margin-right: 10px;
}
.menu a {
	color: var(--bg-text);
	text-decoration: none;
}
.phone {
	font-size: 20px;
}
.nav-phone-icon {
	display: none;
}
.nav-phone-icon img {
	width: 20px;
	height: 20px;
}
.nav-button {
	border: 1px solid var(--text-button);
	border-radius: 14px;
	width: 180px;
	height:46px;
	color: var(--text-button);
	font-size: 16px;
	background-color: var(--bg-color);
	text-align: center;
	line-height: 46px;
}
.first-monitor__content {
	margin-top: 140px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}
.offer {
	height: 400px;
	max-width: 580px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.offer__description {
	display: flex;
	flex-direction: column;
	font-size: 20px;
}
.offer__description span {
	margin-bottom: 15px;
}
.offer__button {
	position: relative;
}
.offer__button-a {
	height: 50px;
	width: 270px;
	border-radius: 7px;	
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--mg-color);
}
.offer__button a {    
	color: var(--bg-color);
	font-size: 18px;
	text-decoration: none;
}
.offer__button img {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	left: 10px;
}
.catalog {
	background-color: var(--white);
}
.card {
	display: flex;
	flex-direction: column;
	width: 370px;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 0 8px 0 var(--grey);
	padding: 15px;
	box-sizing: border-box;
}
.card img {
	width: 200px;
	height: 200px;
	margin: 0 auto 10px;
}
.card-content {
	color: var(--bg-text);
}
.card__title {
	font-size: 20px;
	font-weight: bold;
	color: var(--bg-text);
}
.card__descriptions {
	padding: 10px 0px;
}
.card__descriptions-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}
.card__price { 
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.price {
	font-size: 22px;
	color: var(--green);
	font-weight: bold;
}
.card__button {
	text-decoration: none;
	border: 1px solid var(--bg-text);
	border-radius: 8px;
	height: 40px;
	width: 150px;
	text-align: center;
	line-height: 40px;
	background-color: white;
	font-weight: bold;
	font-size: 16px;
	color: var(--bg-text);
}
/*--О станции--*/
.info-septic {
	background-color: var(--bg-color);
}
.info {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.info-septic__image {
	padding-left: 60px;
}
.info-septic__content {
	display: flex;
	flex-direction: column;
	font-size: 18px;
}
.info-septic__item {
	display: flex;
	margin-bottom: 20px;
}
.info-septic__poligon {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
/*--Как заказать и установить Кристалл Био*/
.work {background-color: var(--white);}
.work-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--bg-color);
	padding: 15px;
	max-width: 270px;
	box-sizing: border-box;
	border-radius: 7px;
	box-shadow: 0 0 8px 0 var(--grey);
	background-color: ;
}
.work-card img {
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}
/*--Мы предлагаем--*/
.proposal {
	margin-top: -30px;
	background-color: var(--white);
}
.proposal__content {
	display: flex;
	justify-content: center;
}
.proposal__content-center {
	display: flex;
	flex-direction: column;
}
.proposal__item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 18px;
}
.proposal-item-img {
	margin-right: 10px;
}
/*--Портфолио--*/
.portfolio {
	background-color: var(--bg-color);
}
.fotorama {
 
}
.fotorama__stage {
	box-shadow: 0 0 20px 0 var(--bg-text) !important;
	box-sizing: border-box;
	background-color: var(--white);
	border: 1px solid var(--grey);
}
.fotorama__stage__shaft {
	box-shadow: 5px 5px 8px 0 var(--black);
}
.fotorama__nav-wrap {
	margin-top: 20px;
}
.fotorama__nav__frame {
	
}
.fotorama__thumb-border {
	border: 1px solid var(--green) !important;
	margin: 3px 0px 1px 1px!important;
}
/*--Отзывы--*/
.reviews {
	background-color: var(--white);
}
.review {
	display: flex;
	flex-direction: column;
	justify-self: center;
	max-width: 370px;
	border: 1px solid var(--grey);
	border-radius: 7px;
	min-height: 300px;
	background-color: var(--white);
}
.owl-dots {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}
.owl-dot {
	background-image: url(/static/src/lendings/kristall/img/base/poligon.svg) !important;
	background-size: cover;
	width: 30px;
	height: 30px;
	margin-right: 10px;
}
.owl-carousel {
	position: relative;
}
.owl-nav {
	position: absolute;
	top: calc(50% - 23px);
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.owl-arrow__left {
	margin-left: -11px;
}
.owl-arrow__right {
	margin-right: -11px;
}
.owl-nav {}
.review-header {
	background-color: var(--bg-text);
	height: 93px;
	border-radius: 7px 7px 0 0;
	text-align: center;
	vertical-align: middle;
}
.review-header-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: right;
	color: var(--light-text);
	height: 100%;
	gap: 5px;	
	padding-right: 15px;
}
.review-name {
	
}
.review-polygon {
	position: relative;
}
.poly, .review-avatar {
	position: absolute;
}
.poly {
	top: 15px;
	left: 15px;
	width: 101px !important;
	height: 101px;
}
.review-avatar {
	top: 23px;
	left: 23px;
	width: 86px !important;
	height: 86px;
}
.review-content {
	padding: 25px 15px 15px 25px;
	font-size: 16px;
}
/*--Ответы на вопросы--*/
.response {
	background-color: var(--bg-color);
}
/*--Контакты контент--*/
.contacts {
	background-color: var(--white);
}
.contacts__content span{
	font-size: 18px;
	font-weight: 600;
}
.contacts__content-item	{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.contacts__content-item img {
	margin-right: 15px;
}
/*--форма контактов--*/
.contacts__form {
	max-width: 370px;
	width: 370px;
}
.contacts__form form {
	padding: 24px;
	border-radius: 8px;
	border: 1px solid var(--grey);
}
.form__field {
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
}
.form__field__receive {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}
.form__field__receive input {
	margin-right: 10px;
	width: 20px;
	height: 20px;	
}
.form__field__receive input:checked {
   accent-color: var(--bg-text);
}
.form__field label {
	color: var(--bg-text);
}
.form__field input {
	border-radius: 8px;
	border: 1px solid var(--grey);
	padding: 12px 16px;
	margin-top: 8px;
}
.contacts__form button {
	padding: 12px 0px;
	width: 100%;
	background-color: var(--bg-text);
	color: var(--light-text);
	border: none;
	border-radius: 8px;
}
/*--footer--*/
footer {
	background-color: var(--bg-text);
	color: var(--light-text);
	height: 50px;
}
.footer__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
}
.footer__content a {
	color: var(--light-text);
}
/*--popup--*/
.popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	transition: all 0.8s ease 0s;
}
.popup.open {opacity: 1;visibility: visible;}
.popup.open .popup__content {transform: perspective(600px) translate(0px, 0%) rotate(0deg); opacity: 1;}
.popup__area {position: absolute;width: 100%;height: 100%;top: 0;left: 0;}
.popup__body {min-height: 100%;display: flex;align-items: center;justify-content: center;padding: 30px 10px; }

.popup__body {height: auto;}
.popup__content-form { max-height: 500px; background-color: #f8f8f8 !important; border-radius: 10px}
.popup__title {font-size: 22px; text-align: center; padding: 20px 0px}

.popup__body-response {max-height: 500px;}
.popup__content-response {width: 320px !important; max-height: 500px; background-color: #f8f8f8 !important; border-radius: 5px; padding: 20px}
.popup__title-response {font-size: 24px; text-align: center}
.popup__content-septic {
	overflow-y: auto;
	background-color: var(--white);
	padding: 15px 25px 30px;
	box-sizing: border-box;
	border-radius: 10px;
}
.popup-close {
	display: flex;
	justify-content: end;
}
.popup__title {
	padding-bottom: 20px;
}
.modal-product {

}
.popup__description {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 10px;	
}
.popup__description img {
	height: 300px;
	width: 300px;
}
.popup__description-param {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	width: 350px;
}
.popup__description-item {
	display: flex;
	justify-content: space-between;
}
.popup__description-price {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-items: baseline;
	width: 230px;
	gap: 20px;
}
.popup__price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 10px;
}
.popup__button {
	position: relative;
}
.old-price {
	font-size: 16px;
	text-decoration: line-through;
}
.price {
	display: flex;
	gap: 3px;
}
.tire {
	display: flex;
	flex-grow: 1;
	border-bottom: 1px dashed var(--grey);
	margin-bottom: 3px;
}
.rub {
	position: relative;
}
.rub span {
	position: absolute;
	border-bottom: 1px solid var(--green);
	border-width: 3px;
	width: 11px;
	top: 15px;
	left: 0px;
}
#form-popup {
	z-index: 100000;
}
#modalSeptic {
	z-index: 1000;
}

