@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root{--theme-color-1:#8EB84A}
:root{--theme-color-2:#EBA031}

::-moz-selection{background:var(--theme-color-1);color:#FFF}
::selection{background:var(--theme-color-1);color:#FFF}

::-webkit-scrollbar {
	background: #FFF;
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #FFF;
	border-radius: 2px;
	box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.3)
}
::-webkit-scrollbar-thumb {
	background-color: #CCC;
	border-radius: 2px;
	box-shadow: inset 0 0 1px 1px #888;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #AAA;
}

html {
    background: transparent;
    color: #000;
    font: normal 400 16px/1.5 Roboto, Arial, sans-serif;
	scrollbar-color: #AAA #FFF;
	scrollbar-width: thin;
}

img {
    border: 0;
    display: inline-block;
    height: auto;
    max-width: 100%;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
    display: block;
	font-size: 1rem;
    margin: 10px 0;
}
h1,.h1{font-size:1.25rem}
h2,.h2{font-size:1.125rem}

.page-content {
    min-height: 100%;
	min-width: 360px;
    width: 100%;
}

.container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1220px;
	padding: 0 10px;
	width: 100%;
}

.button {
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.button.button--light {
    background-color: var(--theme-color-1);
    color: #FFF;
}
.button.button--dark {
    background-color: var(--theme-color-2);
    color: #FFF;
}
.button.button--white {
    background-color: #FFF;
    color: #242424;
}
.button--gray {
    background-color: #ebebeb;
    box-shadow: 0 0 0 1px #cacaca, inset 0 8px 15px -1px #FFF;
    color: #242424;
    text-shadow: 0 1px 2px #FFF;
    text-transform: none;
}
.button.button__fw {
    display: block;
    width: 100%;
}

.modal-dialog {
    border-radius: 8px 4px 8px 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    box-sizing: border-box;
    cursor: default;
    display: none;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 500px;
}
.modal-dialog>.md__close {
    cursor: pointer;
}
.modal-dialog>.md__close {
    background: rgba(0, 0, 0, .2);
    border-radius: 0 3px 0 3px;
    height: 35px;
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
}
.modal-dialog>.md__close::before,
.modal-dialog>.md__close::after {
    background: #FFF;
    border-radius: 2px;
    content: '';
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 22px;
}
.modal-dialog>.md__close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-dialog>.md__close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal-dialog>.md__title {
    color: #FFF;
    margin: 15px 20px;
    text-align: center;
}
.modal-dialog>.md__content {
    padding: 15px;
}

.simple-form .sf__field,
.simple-form .sf__note,
.simple-form .sf__footnote {
    margin-bottom: .75rem
}
.simple-form .sf__field {
    position: relative
}
.simple-form .sf__input,
.simple-form .sf__textarea {
    -webkit-appearance: none;
            appearance: none;
    background-color: transparent;
    border: 0 none;
    -webkit-box-shadow: inset 0 0 0 2px #FFF;
            box-shadow: inset 0 0 0 2px #FFF;
    box-sizing: border-box;
    border-radius: 3px;
    color: #FFF;
    display: block;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1rem;
    outline: none;
    padding: .5rem;
    width: 100%;
}
.simple-form input::placeholder,
.simple-form textarea::placeholder {
    color: #FFF;
    font-size: .75rem;
    font-weight: 400;
    opacity: .7;
}
.simple-form .sf__textarea {
    height: 100px
}
.simple-form .required {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAJUlEQVR42mM4q2zUCsSfQTQTAwNDCRDzAHEeiNMDxF8ZGBgmAQDLKghpAOazgQAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-position: right 6px top 6px
}
.simple-form .sf__footnote {
    color: #FFF;
    font-size: .75rem
}
.simple-form .sf__footnote > a {
	color: #FFF;
}
.simple-form .input-right{box-shadow:inset 0 0 0 1px #3F3,inset 0 0 4px 2px rgba(51,255,51,.6)!important}
.simple-form .input-wrong{box-shadow:inset 0 0 0 1px #F33,inset 0 0 4px 2px rgba(255,51,51,.6)!important}

.feedback-form {
    background-color: var(--theme-color-1);
}

.pagination {
    display: block;
    margin: 20px 0;
}
.pagination > div {
    display: inline-block;
    margin: 0 2px;
}
.pagination > div > a {
    border-radius: 8px;
    box-sizing: border-box;
    color: var(--theme-color-2);
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    min-width: 30px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
}
.pagination > div:not(.active) > a:hover {
    background-color: #e0e0e0;
}
.pagination > div.active > a {
    background-color: var(--theme-color-2);
    color: #FFF;
}

.header,
.footer {
	flex: 0 0 auto;
	width: 100%;
}
.main {
	flex: 1 0 auto;
}

.header {
	background-color: #FFF;
	border-top: 4px solid var(--theme-color-1);
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .2);
	padding: 10px 0;
}
.header__container {
	align-items: center;
	display: flex;
	justify-content: center;
	position: relative;
}

.header__logo {
	display: none;
}
.header__logo > img {
	display: block;
	max-height: 60px;
}

.main-nav__list {
	align-items: center;
	column-gap: 25px;
	display: flex;
	justify-content: center;
}
.main-nav__item {
	color: #000;
	font-size: .875rem;
	padding: 15px 8px;
	text-decoration: none;
}
.main-nav__item:hover {
	background-color: #E0E9D3;
}

.main-nav__logo {
	flex: 0 0 auto;
}
.main-nav__logo > img {
	display: block;
}

.header__menu-button {
	display: none;
	width: 35px;
	height: 35px;
	position: relative;
	border-radius: 50%;
	background-color: #F0F0F0;
}
.header__menu-button::before,
.header__menu-button > i,
.header__menu-button::after {
	width: 15px;
	background-color: #888;
	border-radius: 1px;
	content: '';
	height: 2px;
	left: 50%;
	position: absolute;
	transition: .3s;
	transform: translate(-50%, -50%);
}
.header__menu-button::after {
	top: calc(50% + 5px);
}
.header__menu-button::before {
	top: calc(50% - 5px);
}
.header__menu-button > i {
	top: 50%;
}
.main-nav.active .header__menu-button::after {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.main-nav.active .header__menu-button::before {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.main-nav.active .header__menu-button > i {
	opacity: 0;
}

.header__phone {
	background-color: var(--theme-color-1);
	border-radius: 25px 8px 8px 25px;
	color: #FFF;
	font-size: .875rem;
	font-weight: 700;
	line-height: 1;
	padding: 12px 12px;
	position: absolute;
	right: 10px;
	text-decoration: none;
	top: 50%;
	transform: translateY(-50%);
}
.header__phone::before {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAANCAMAAABBwMRzAAAANlBMVEUAAAD////////////////////////////////////////////////////////////////////xY8b8AAAAEnRSTlMAv/+AEN9/748gcM+vn0Bfbz+JWcPwAAAAT0lEQVR42l2MSxaAIAzE2giUKvi5/2Vd2EUlu2TeGxFFJbEBJXkFWnIAW/aevEGVRDHMc9ih/kL/gh86mkdgngNA45Mgrn2GXxL4rYY+8gJ1zQGalO8O1AAAAABJRU5ErkJggg==');
	content: '';
	margin-right: 8px;
	height: 13px;
	width: 15px;
}

.footer {
	box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, .2);
	padding: 10px 0;
}
.footer .main-nav {
	margin-bottom: 20px;
}

.footer__informer {
	color: #555;
	font-size: .75rem;
	text-align:center;
}
.footer__informer a {
	color: inherit;
	text-decoration: underline;
}

.main__aside {
	margin-right: 20px;
	width: 220px;
}

.breadcrumbs {
	color: #AAA;
	font-size: .75rem;
	font-weight: 700;
	margin: 10px 0;
}
.breadcrumbs a {
	color: var(--theme-color-2);
	line-height: 1.5rem;
	text-decoration: underline;
}
.breadcrumbs a::after {
	content: '/';
	display: inline-block;
	margin: 0 5px;
	vertical-align: middle;
}

.about-us {
	align-items: center;
	column-gap: 25px;
	display: flex;
	margin: 40px 0;
}
.about-us__img {
	max-width: 40%;
}
.about-us__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.about-us__list > li {
	display: flex;
	align-items: center;
	font-size: 1.25rem;
	margin: 10px 0;
	min-height: 48px;
	padding-left: 65px;
	position: relative;
}
.about-us__list > li::before {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAw1BMVEUAAAB/r0CPr0CPt0iMvUqUvUqPt1CHt0iKukqPukqPtUqKtUWLt0iOukmPt0yOu0qOu0eMuUmMtkmMtkaPtkmMuUyOuUuNt0qNt0iOuUiMuUiPt0qMuEeNtkmNuEuPuUqNuUiNt0qNuEmOuEqPuEmPuUmPuUuNuUuNuEqOt0mNuEiPuEqPuEqPuUqPuEmNuEmNuUqOuEmPuEuPuEqOuEqOuUqOuUuOuUmOuEmOuEmOuEqPuEqOuUqOuUuOt0qPv1COuEq0fBy2AAAAQHRSTlMAEBAgHx8gIDAwMDBAP0BPT1BQUFBQX2BgX19gb3Bwf3+Aj5CPj4+Pn6Cfn6+vr6+vv7/Pz8/Pz8/f39/v7+8QvPSRRQAAAfxJREFUeNqNlel22jAQhS9yW5OlTZcUQ1swdklCQjaTFQcTvf9TJTOSkZzxwvfL53Bnk+4gCNTf2eVLobV+Wc4GATpQyVJXuGuNUUmhJYvGECuXJKgjuNeGLD361AN6/aM404a8pkhk0q+nPXiEw5UmNr9EO0b+DwIbktTpU8ouCOcy4qcmbHrJWBMjb96C2vmKRvok2LjJc0rQRwuHpHjeDtDaj9dVbBui7zk6OKOmFIjF++cqRAevRVkiMCfQybgsEVEB7EBZ4nG3AkBMPrMdNU6Q6OtgOwUpFSKOa+C88iN5d4DTcniJutL+fCydgVbyO+pQ92xg54DfWusbtsUBaghyzu/0PG4OnsRL6+ndhbqpNxwAuDU9AbMn9WBtNYBUN4r0BdszhAwo/JaMLEBkPtwCuovgpJ+3i8L7m5uFvcAH9nnoy8qxhhzBpHC4Y83sbciIKQQxSYU1wocmPd/xyFrKH40i/gi1s2kmzHS2lnq7OE+2sw12IOeO7LKO0UlkO7IlFDpgb83d/8EJOljYAqZEd1OTylnz0R+ihb3q7oX8X3uARr6RYO15d6hbu5poovIITVveS/W/NIuMyAcQTAqhZ34UNsRV8V5uzyzS2Mv4eF8B6svxjPz5YVdlW5L1FBL3Xkp5D82Ew4eqPGuV25g0W1Hm1W06kuo3mpGmHxnGMHoAAAAASUVORK5CYII=')
				no-repeat;
	background-size: contain;
	content: '';
	height: 48px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
}

.delivery-stages {
	column-gap: 15px;
	display: flex;
}
.delivery-stages__item {
	background-color: #F7F7F7;
	border-radius: 5px;
	box-shadow: 1px 1px 7px -1px rgba(0, 0, 0, .35);
	box-sizing: border-box;
	flex: 1 1;
	padding: 15px 20px;
}
.delivery-stages__num {
	color: #AAA;
	font-size: 3rem;
	margin-right: 20px;
}
.delivery-stages__title {
	color: var(--theme-color-1);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}
.delivery-stages__descr {
	font-size: .875rem;
}

.products {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	margin-bottom: 50px;
}
.products-item {
	height: 350px;
	position: relative;
	width: 575px;
}
.products-item::before {
	background-color: var(--theme-color-2);
	border-radius: 6px;
	bottom: 0;
	content: '';
	left: 0;
	opacity: .2;
	position: absolute;
	right: 0;
	top: 0;
	transition: .2s;
	z-index: 2;
}
.products-item:not(:hover)::before {
	opacity: 0;
}
.products-item__image {
	background-position: 50%;
	border-radius: 6px;
	box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .35);
	height: 100%;
	object-fit: cover;
	object-position: 50%;
	transition: .2s;
	width: 100%;
}
.products-item:hover .products-item__image {
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
}
.products-item__label {
	background-color: var(--theme-color-1);
	border-radius: 4px 10px 10px 4px;
	color: #FFF;
	font-size: 1.25rem;
	left: -8px;
	line-height: 1;
	padding: 5px 20px 5px 10px;
	position: absolute;
	top: 20px;
	transition: .3s;
}
.products-item:hover .products-item__label {
	background-color: var(--theme-color-2);
}
.products-item__edit_btns {
	background-color: rgba(255, 255, 255, .9);
	border-radius: 3px;
	bottom: 8px;
	left: 8px;
	padding: 8px;
	position: absolute;
	z-index: 4;
}

.product {
	display: flex;
	column-gap: 40px;
	justify-content: space-between;
	position: relative;
	row-gap: 10px;
}
.product__content {
	max-width: 700px;
}
.product__image {
	flex: 0 0 auto;
	height: 400px;
	position: relative;
	width: 400px;
}
.product__image > img {
	border-radius: 50%;
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .3);
	height: 100%;
	object-fit: cover;
	object-position: 50%;
	width: 100%;
}
.product__image::after {
	background: url("/static/img/product_image_decor.png") no-repeat;
	background-size: contain;
	content: '';
	height: 416px;
	left: 0;
	position: absolute;
	top: -8px;
	width: 400px;
}

.text-content {
    font-size: .875rem;
}
.text-content p,
.text-content pre {
    margin: 1em 0;
}
.text-content a,
.link {
    color: var(--theme-color-2);
}
.text-content img {
    height: auto !important;
    max-width: 100%;
}
.text-content table {
    border-collapse: collapse;
    max-width: 100%;
}
.text-content table td {
    font-size: .75rem;
    padding: 5px 10px;
    vertical-align: top;
}
.text-content blockquote {
    border-left: 2px solid var(--theme-color-2);
    color: var(--theme-color-2);
    font-style: italic;
    margin: 20px 0 20px 20px;
    padding: 10px 0 10px 20px;
}
.text-content hr {
    border: 0;
    border-top: 2px solid var(--theme-color-2);
    margin: 20px 0;
}
.text-content ul,
.text-content ol {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}
.text-content ul li,
.text-content ol li {
    margin: 5px 0;
    padding: 0 0 0 30px;
    position: relative;
}
.text-content ul li::before {
    background-color: var(--theme-color-2);
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 10px;
    position: absolute;
    top: 5px;
    width: 10px;
}
.text-content ol {
    counter-reset: textContentOlCounter;
}
.text-content ol li::before {
    color: var(--theme-color-2);
    counter-increment: textContentOlCounter;
    content: counter(textContentOlCounter) '.';
    font-size: 1rem;
    font-weight: 700;
    left: 5px;
    top: 0;
    position: absolute;
}
.text-content iframe {
	display: block;
	max-width: 100%;
}

.contacts {
	display: flex;
	justify-content: space-between;
}
.contacts__left {
	width: 26%;
}
.contacts__right {
	width: 72%;
}

.contacts-map {
	margin-bottom: 30px;
    max-height: 75vh;
    width: 100%;
    overflow: hidden;
}

.contacts-map iframe {
	border:0 !important;
	display: block;
}

.product-declaration {
    color: #41B0D3;
    display: flex;
    align-items: center;
}
.product-declaration::before {
    content: '';
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEcSURBVHgBtVPbccIwELzVmH+VQAWZ0IHoIK4gSQdJBZlUwKQCkgoMFcQdkBnnP+4gzjfEi848hgFZGBj2y5L39nR3e3DZrA8kYxFxchQoyfkwTwfl5sYIklG3YAU12cxlxZZvIHInp8EC8umm3/fNm4aTgnImSKYmShC8e/VJ238AY3MkxYdw8Rxh2LhAByTBW8obhdY/cudcl4AZdRLQuvP0Jt+5evJ+udWp7yNYgjZHDbY5r8zWy4Lc9jGuXCfN3DWY/RAr3IMGjet+1t+trGtMgZXXrcL0WidjYwIV+T/wEyhD4b6Zvh/Jb0zAGvRe3LT4kpp/+wIIbO1BCd5AD9CeAdIFFzdRBXI5E7qthlw8xla2JbSiJub8dQmvJ2Qz6ls8/QAAAABJRU5ErkJggg==');
    width: 16px;
    height: 20px;
    display: block;
    margin-right: 5px;
}
.declaration-block {
   height: 240px;
}
.declaration-block__abs {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* DESKTOP first */

@media (max-width: 1219px) {
	.main-nav__list {
		column-gap: 5px;
	}
	.main-nav__item {
		font-size: .875rem;
		padding: 10px 8px;
	}

	.main-nav__logo {
		max-width: 90px;
	}

	.footer .main-nav__item {
		font-size: .75rem;
	}

	.header__phone {
		border-radius: 25px 8px 8px 25px;
		font-size: .75rem;
		padding: 10px 10px;
	}

	.products {
		gap: 20px;
	}
	.products-item {
		height: 240px;
		width: 420px;
	}
	.products-item__label {
		font-size: 1.125rem;
		left: -5px;
	}

	.contacts__left {
		width: 38%;
	}
	.contacts__right {
		width: 60%;
	}

	.contacts-map {
		height: 400px;
	}
}

@media (max-width: 1023px) {
	.header__container {
		justify-content: space-between;
	}

	.header__phone {
		position: relative;
		transform: none;
	}

	.header .main-nav__list {
		justify-content: flex-start;
	}

	.about-us__img {
		max-width: 30%;
	}
	.about-us__list > li {
		font-size: 1rem;
		padding-left: 50px;
	}
	.about-us__list > li::before {
		height: 40px;
		width: 40px;
	}

	.product {
		flex-direction: column-reverse;
	}
}

@media (max-width: 919px) {
	.text-content iframe {
		max-height: 300px;
	}

	.products-item {
		height: 210px;
		max-width: 350px;
		width: 100%;
	}

	.delivery-stages {
		column-gap: 10px;
	}
	.delivery-stages__item {
		padding: 12px 15px;
	}
	.delivery-stages__num {
		font-size: 2.75rem;
		margin-right: 15px;
	}
	.delivery-stages__title {
		font-size: 1rem;
	}
	.delivery-stages__descr {
		font-size: .75rem;
	}

	.contacts {
		flex-direction: column;
		row-gap: 20px;
	}
	.contacts__left,
	.contacts__right {
		width: 100%;
	}

	.about-us__img {
		display: none;
	}

	.delivery-stages {
		flex-direction: column;
		row-gap: 15px;
	}
}

@media (max-width: 767px) {
	.header__menu-button {
		display: block;
	}

	.main-nav__logo {
		display: none;
	}

	.header__logo {
		display: block;
	}

	.header .main-nav__list {
		display: block;
		background-color: #FFF;
		box-shadow: 0 3px 5px -2px rgba(0, 0, 0, .3);
		left: 0;
		position: absolute;
		right: 0;
		top: 100%;
		z-index: 10;
	}
	.header .main-nav__item {
		display: block;
	}
	.header .main-nav:not(.active) .main-nav__list {
		display: none;
	}

	.footer .main-nav {
		display: none;
	}

	.product__image {
		height: 340px;
		width: 340px;
	}
	.product__image::after {
		height: 355px;
		width: 340px;
	}
}