@charset "UTF-8";
@import "css/fonts/Circe/stylesheet.css";
/*
Theme Name: Kitchen
Theme URI: 
Author: Mikol42 (Factory of projects)
Author URI: https://fpro.by/
Description: 
Version: 1.0.0
License: Commercial software
License URI:
Tags: kitchen
Text Domain: kitchen
*/

/**
 * 1.0 - General styles
**/

:root {
	--main_color: #48b2ff;
	--alt_color: #f5b775;
	--text_color: #474e52;
}

*,
*::after,
*::before {
	box-sizing: border-box;
    padding: 0;
    border: 0;
    outline: 0;
    margin: 0;
}

html,
body {
	width: 100%;
	min-width: 320px;
	color: var(--text_color);
	font: normal normal 400 18px/1.3 'Circe', sans-serif;
	background: #fff;
}

iframe {
	max-width: 100%;
}

input,
select,
textarea,
button {
	color: inherit;
	font: inherit;
	resize: none;
}

figure {
	margin: 0;
}

p {
	margin: 1em 0;
}

blockquote {
	position: relative;
	padding-left: 30px;
	margin: 1em 0;
	color: var(--main_color);
	font-style: italic;
}

blockquote::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	border-left: 5px solid var(--main_color);
}

hr {
	border-bottom: 1px solid;
}

b,
strong {
	font-weight: 700;
}

.none, 
.hide {
    display: none;
}

a {
	color: var(--main_color);
	text-decoration: underline;
    transition: 0.5s;
}

a:hover {
	color: var(--alt_color);
}

em {
	font-weight: 400;
}

/**
 * 1.1 - Captions
**/

h1,
h2,
h3,
h4,
h5,
h6,
.caption {
	display: block;
	position: relative;
	margin: 1em 0 0.5em;
	color: var(--text_color);
	line-height: 1.1;
	font-weight: 600;
	text-decoration: none;
	text-align: inherit;
}
 
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.caption:first-child {
	margin-top: 0;
}

h1, h6 {
	margin-bottom: 1em;
	font-size: 36px;
}

h2{
	font-size: 28px;
}

h3 {
	font-size: 26px;
}

h4,
.caption  {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}

h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b,
.caption b {
	color: var(--main_color);
	font-weight: inherit;
}
@media (max-width: 1200px) {
	h1, h6 {
		font-size: 32px;
	}

	h2{
		font-size: 26px;
	}

	h3 {
		font-size: 24px;
	}
}

@media (max-width: 600px) {
	h1, h6 {
		font-size: 28px;
	}

	h2{
		font-size: 24px;
	}

	h3 {
		font-size: 22px;
	}
}

/**
 * 1.2 - Lists
**/ 

ol, 
ul {
    list-style-type: none;
    counter-reset: ol;
	position: relative;
	margin: 1.25em 0;
}

ol > li, 
ul > li {
	position: relative;
	padding-left: 1.6em;
	margin: 0;
	min-height: 1.2em;
}

ul > li::before,
ol > li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--main_color);
}	
	
ul >li::before {
	content: "";
	display: inline-block;
	border: 3px solid;
	margin: 0.6em 0 0 0;
}

li ol li {
	padding-left: 2em;
}

ul ul > li::before {
	padding: 2px;
	border: 1px solid;
	border-radius: 50%;
}

ol ol {	
    counter-reset: ol_2;
}

ol > li::before {
	content: counter(ol) ".";
	counter-increment: ol;
	font-weight: 500;
}

ol ol > li::before {
	content: counter(ol) "." counter(ol_2);
	counter-increment: ol_2;
}

/**
 * 1.3 - Table
**/ 
 
.table-box {
	margin: 1.25em 0;
	overflow: auto;
	max-height: 550px;
}

table {
	border: 1px solid;
	width: 100%;
	border-color: var(--text_color);
	border-collapse: collapse;
	border-spacing: 0;
	font-weight: 400;
	font-style: normal;
}

tbody {
	border-color: inherit;
}

tr {	
	border-color: inherit;
}

tr:nth-child(2n) {	
	background: #eee;
}

td,
th,
caption {
	position: relative;
	padding: 12px;
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: inherit;
	color: var(--text_color);
	font: inherit;
	text-align: left;
	background-clip: border-box;
}

td:last-child,
th:last-child {
	border-right-width: 1px;
}

tr:last-child td,
tr:last-child th {
	border-bottom-width: 1px;
}

th {
	background-color: var(--main_color);
	color: #fff;
}

thead th,
tfoot th {
	border-color: transparent;
}

th + th {
	border-right-color: transparent;
	border-left-color: transparent;
}

caption {
	caption-side: bottom;
	text-align: center;
} 

thead,
tfoot,
caption{
	font-weight: 400;
	font-style: normal;
	font-size: 100%;
	background-color: var(--main_color);
}

thead td,
tfoot td,
caption {
	border-color: transparent;
	color: #fff;;
}

caption{
	background: transparent;
	color: var(--main_color);
	font-style: italic;
}

th + th::before,
thead td + td::before,
tfoot td + td::before {
	content: "";
	position: absolute;
	top: 0;
	right: 100%;
	bottom: 0;
	left: -1px;
	background: #fff;;
}

thead td::after,
thead th::after,
tfoot tr:not(:first-child) td::after,
tfoot tr:not(:first-child) th::after {
	content: "";
	position: absolute;
	top: -1px;
	right: 0;
	bottom: 100%;
	left: -1px;
	background: #fff;;
}

th:first-child::after,
thead td:first-child::after,
tfoot tr:not(:first-child) td:first-child::after {
	left: 0px;
}

table img,
table svg {
	max-width: none;
    max-height: none;
}

@media (max-width: 880px) {
	.table-box {
		margin: 1.25em 0;
		overflow: auto;
		max-height: 550px;
	}
}

/**
 * 1.4 - Images
**/ 

#cboxTitle {
	color: #eee;
	font-style: italic;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
.wp-caption-dd {
	margin: 5px 0;
	color: var(--text_color);
	font-size: 0.8rem;
	font-style: italic;
	text-align: center;
}

img,
svg {
	position: relative;
	max-width: 100%;
	height: auto;
}

.alignleft {
	float: left;
	margin: 5px 10px 5px 0;
	max-width: 50%;
}

.alignright {
	float: right;
	margin: 5px 0 5px 10px;
	max-width: 50%;
}

.aligncenter {
    display: block;
	margin: 5px auto;
}

.alignnone {
	margin: 5px 0 5px;
}

/**
 * 1.5 - Gallery
**/

.gallery {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 1em 0;
	gap: 30px;
	font-size: 0;
}

.gallery .gallery-item {
	display: inline-block;
	position: relative;
	width: calc((100% + 30px) / 4 - 30px);
	max-width: 270px;
}

.gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.gallery-item .gallery-icon {
	display: flex;
	position: relative;
	padding-top: 100%;
	width: 100%;
	overflow: hidden;
	transition: inherit;
}

.gallery-item .gallery-icon::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: var(--main_color);
	opacity: 0;
	transition: inherit;
}

.gallery-item a:hover .gallery-icon::before {
	opacity: 0.2;
}

.gallery-item .gallery-icon::after {
	content: "";
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;	
	background: url('css/img/img-hover.svg') 50% 50%/60px  no-repeat;	
	opacity: 0;
	transition: inherit;
}

.gallery-item a:hover .gallery-icon::after {
	opacity: 1;
}

.gallery-item svg,
.gallery-item img {	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.gallery-item .gallery-caption {
	margin: 0.5em 0 0;
	max-width: 100%;
	color: inherit;
	font-style: italic;
	font-size: 0.8rem;
	word-wrap: break-word;
	text-align: center;
}

@media (max-width: 1140px) {	
	.gallery {
		gap: 12px;
	}
	.gallery .gallery-item {
	width: calc((100% + 12px) / 4 - 12px);
	}
}	

@media (max-width: 858px) {	
	.gallery .gallery-item {
	width: calc((100% + 12px) / 3 - 12px);
	}
}

@media (max-width: 576px) {		
	.gallery .gallery-item {
	width: calc((100% + 12px) / 2 - 12px);
	}
}

@media (max-width: 576px) {		
	.gallery .gallery-item {
	width: calc((100% + 12px) / 2 - 12px);
	}
}

/**
 * 1.6 - Button
**/

.button-block {
	padding: 15px 0;
	width: 100%;
	font-size: 0;
	text-align: center;
}

.button,
input[type="submit"] {
    display: inline-block;
    position: relative;
    z-index: 1;
	padding: 18px 36px;
	max-width: 100%;
	background: linear-gradient(to right, #56c7fa, #5aace7);
	color: #fff;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1;
	text-decoration: none;
	text-transform: none;
    text-align: center;
	transition: 0.5s;
    cursor: pointer;
	user-select: none;
}

.button:hover,
input[type="submit"]:hover {
	background: linear-gradient(to left, #59aee8, #f5b775);
	color: #fff;
}

.button:active,
input[type="submit"]:active {
    top: 3px;
}

/**
 * 1.7 - Contacts
**/

.shedules-block,
.adresses-block,
.phones-block {
	display: flex;
	flex-direction: column;
	margin: 1em 0;
}

.shedule,
.adress,
.phone {
	position: relative;
	color: inherit;
	text-decoration: none;
}

.phone {
	white-space: nowrap;
}

.shedule .label,
.adress .label{
	display: block;
	font-weight: 700;
}

.phone .code {
}

.phone .number {
}

.socials-block {
	display: flex;
	margin: 0.5em 0;
}

.socials-block .social {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 12px;
	width: 28px;
	height: 28px;
	mask: center center /contain no-repeat;
	background: var(--main_color);
	opacity: 0.8;
}

.socials-block :first-child .social {
	margin-left: 0;
}

.socials-block .social:hover {
	background: var(--main_color);
	opacity: 1;
}

.socials-block .social img,
.socials-block .social svg {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

/**
 * 1.13 - Menu
**/

.menu {
	padding: 0;
	margin: 0;
}

.menu-item {
	padding: 0;
	margin: 0;
}

.menu-item::before {
	content: none;
}

.menu-item a {
	display: block;
	padding: 10px;
	color: inherit;
	text-decoration: none;
}

.menu-item.current-menu-item > a,
.menu-item a:hover {
	color: var(--main_color);
}

/**
 * 2.1 - To top button
**/
	
.totop {
	position: fixed;
	right: 20px;
	bottom: -100px;
	z-index: 100;
	border: 1px solid;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.5);
	color: var(--main_color);
	cursor: pointer;
}

.totop:hover {
	color: var(--main_color);
}

.totop::after {
	content: "";
	position: absolute;
	top: 27px;
	left: 35px;
	z-index: 1;
	border-left: 4px solid;
	border-bottom: 4px solid;
	width: 15px;
	height: 15px;
	transform: rotate(135deg);
	transform-origin: 0 0;
}

@media (max-width: 1300px) {
	.totop {
		display: none;
	}	
}

/**
 * 6.1 - Phone Form
**/

#cboxOverlay {
	background: #000;
}

#cboxContent,
#cboxLoadedContent {
	padding: 0;
	background: #fff;
}

.request-form {
	padding: 42px;
	border: 8px solid var(--alt_color);
	background: #fff;
}

#colorbox.form .request-form {
    max-width: 400px;
}

.request-form .caption {
	position: relative;
	font-size: 40px;
}

.request-form .description {
}

.request-form .field .title {
	display: none;
	margin-top: 1em;
	color: #545454;
}

.request-form .field.not-valid .title {
	color: #d91d1d;
}

.request-form select,
.request-form textarea,
.request-form input[type="text"] {
	padding: 12px;
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .2);
	margin: 12px 0;
	width: 100%;
	background: #fff;
	color: #617380;
	font-weight: 400;
	font-family: inherit;
}

.request-form input[type="radio"] {	
	margin: 10px 0;
}

.request-form.not-valid .field.not-valid select,
.request-form.not-valid .field.not-valid textarea,
.request-form.not-valid .field.not-valid input[type="text"] {
	border-color: #d91d1d;
}

.request-form .field-personal {
	border-color: #d91d1d;
}

.request-form .btn-field {
	position: relative;
	margin: 24px 0;
	min-height:  30px;
}

.request-form .button {
	width: 100%;
}

.request-form .button:hover {
}

.phone-form .button::after {
}

.request-form .success-message,
.request-form .error-message {
	position: absolute;
	bottom: -20px;
	right: -10px;
	left: -10px;
	margin-top: 10px;
	height: 50px;
	text-align: center;
}

.request-form .error-message {
	color: #d91d1d;
	font-size: 14px;
}

.request-form .success-message {
	color:  var(--main_color);
	font-size: 20px;
	line-height: 1.1;
}

.request-form .success-message .big {
	text-transform: uppercase;
	font-weight: 700;
}

.request-form.success .button,
.request-form:not(.not-valid) .error-message,
.request-form:not(.success)  .success-message{
	display: none;
}

@media (max-width: 560px) {
	.request-form {
		padding: 15px;
		overflow: hidden;
	}

	.request-form .success-message {
		font-size: 18px;
	}
}

/**
 * 1.11 - Bx-Slider
**/
 
body .bx-wrapper {
	position: relative;
	border: none;
	box-shadow: none;
	padding-bottom: 50px;
	margin: 0 auto;
	background: transparent;
	width: 100%;
}

body .bx-wrapper .bx-viewport {
}

body .bx-wrapper .bx-pager {
	bottom: 0;
	text-align: center;
}

body .bx-wrapper .bx-pager.bx-default-pager a {
	margin: 0 7px;
	width: 12px;
	height: 12px;
	background: var(--main_color);
	opacity: 0.4;
}

body .bx-wrapper .bx-pager.bx-default-pager a.active,
body .bx-wrapper .bx-pager.bx-default-pager a:focus,
body .bx-wrapper .bx-pager.bx-default-pager a:hover {
	background: var(--main_color);
	opacity: 1;
}

.bx-wrapper .bx-controls-direction .bx-prev,
.bx-wrapper .bx-controls-direction .bx-next {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 6px;
	right: auto;
	bottom: auto;
	left: 0;
	border-radius: 50%;
	margin: 0;
	width: 48px;
	height: 48px;
	background: #c3c3c3;
	color: #444;
	opacity: 0.4;
	font-size: 0;
	transition: 0.3s;
}

.bx-wrapper .bx-controls-direction .bx-next {
	left: 52px;
}

.bx-wrapper .bx-controls-direction .bx-prev:hover,
.bx-wrapper .bx-controls-direction .bx-next:hover {
	opacity: 1;
}

.bx-wrapper .bx-controls-direction .bx-prev::after,
.bx-wrapper .bx-controls-direction .bx-next::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 12px;
	height: 12px;
	margin-left: -8px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-radius: 1px;
	transform-origin: top right;
	transform: rotate(45deg);
}

.bx-wrapper .bx-controls-direction .bx-prev::after {
	margin-left: -20px;
	transform: rotate(-135deg);
}

@media (max-width: 768px) {
	
}

/**
 * 2.0 - Wrapper
**/

#wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	min-width: 320px;
	min-height: 100vh;
	overflow: hidden;
}

.page-content {
	flex-grow: 1;
	position: relative;
	z-index: 1;
	margin: 0;
}

.content {
	position: relative;
	z-index: 2;	
	padding: 0 12px;
	margin: 0 auto;
	width: 100%;
	min-width: 320px;
	max-width: 1194px;
}

.page-content > .content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.main-content {
	flex-grow: 1;
	position: relative;
	z-index: 2;
	margin: 30px 0;
	width: 100%;
}

.main-sidebar + .main-content {
	flex-grow: 1;
	width: calc( 100% - 360px - 54px);
}


/**
 * 2.0 - Sidebar
**/

.main-sidebar {
	flex-shrink: 0;
	margin: 30px 40px 30px 0;
	width: 256px;
	color: var(--main_color);
	font-weight: 500;
}

@media (max-width: 1240px) {
	.main-sidebar {
		margin-right: 20px;
		width: 330px;
	}
	
	.main-sidebar + .main-content {		
		width: calc( 100% - 330px - 20px);
	}
}

@media (max-width: 960px) {
	
	.main-sidebar {
		display: none;
		width: 100%;
		background: #fff;
	}
	
	body.active-filter .main-sidebar {
		display: block;
	}	

	.main-sidebar + .main-content {
		width: 100%;
	}
}

/**
 * 2.0 - Breadcrumbs
**/

.breadcrumbs {
	margin: 2em 0;
	width: 100%;
	color: var(--main_color);
	font-size: 14px;
}

.breadcrumbs a {
	color: var(--text_color);
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--main_color);
}

.breadcrumbs .separator {
	position: relative;
	margin: 0 10px;
	color: var(--text_color);
	font-size: 0;
}

.breadcrumbs .separator::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	transform-origin: center;
	transform: rotate(45deg);
}

/**
 * 3.0 - Header
 */

body.admin-bar .fixed-header {
	top: 32px;
}

.main-footer,
.main-header {
	position: relative;
	background: #fff;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
}

.main-header {
	box-shadow: 0 0 1px var(--main_color);
}

.main-footer .content,
.main-header .content {
	display: flex;
	justify-content: space-between;
	padding: 12px 6px;
}

.main-footer .column,
.main-header .column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6px;
}

/**
 * 3.0 - Header Content
 */

.main-header .header-content {	
	display: flex;
	justify-content: space-between;
}

.main-header .column-logo {
	padding-left: 80px;
}

.custom-logo-link {
	font-size: 0;
}

.custom-logo {
	max-width: 360px;
	max-height: 100%;
}

.header-content .menu-item a {
	padding: 6px;
	white-space: nowrap;
	opacity: 0.5;
}

.main-header .phones-block,
.main-header .adresses-block,
.main-header .shedules-block {
	margin: 0;
}

.main-header .shedules-block {
	text-align: right;
}

.main-header .shedule,
.main-header .adress {
}

.main-header .shedule .label,
.main-header .adress .label {
	display: none;
}

.main-header .column-contacts .phone {
	display: flex;
	align-items: center;
	color: var(--main_color);
	font-weight: 600;
}

.main-header .column-contacts .phone:before {
	content: '';
	margin-right: 5px;
	height: 28px;
	width: 28px;
	mask: url("css/img/phone.svg") center left / contain no-repeat;
	background: var(--main_color);
	transition: 0.5s;
}

.main-header .column-button {
	padding: 0;
}

.main-header .column-button .button {
	display: flex;
	align-items: center;
	padding: 40px 80px 40px 40px;
	height: 100%;
	font-weight: 700;
	font-size: 18px;
	text-align: left;
}

/**
 * 3.0 - Header Menu
 */

.menu-block {
	display: flex;
	width: 100%;
	height: 100%;
}

.main-header .menu {
	display: flex;
	align-items: center;
}

.main-header .menu-item {
	position: relative;
}

.main-header .current-menu-item > a,
.main-header .menu-item a:hover {
	color: var(--main_color);
	opacity: 1;
}

.fixed-header {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
	z-index: 12;
}


/**
 * 3.1 - Footer
**/

.main-footer {
	padding: 16px 0 32px;
	margin-bottom: 48px;
	font-size: 14px;
}

.main-footer .content {
	align-items: flex-start;
}

.main-footer .column {
	flex-grow: 1;
}

.main-footer .copyright {
	max-width: 440px;
}

.main-footer .menu-item a {
	padding: 5px 5px 5px 0;
}

.main-footer .column-contacts {
	flex-grow: 0;
}

.main-footer .socials-block {
	justify-content: space-between;
	margin: 16px 0 0;
}

.main-footer .social {
	width: 32px;
	height: 32px;
}

@media (max-width: 1024px) {
	.main-footer .copyright {
		max-width: 300px;
	}
}

@media (max-width: 1024px) {
	.main-footer .column-menu + .column-menu {
		display: none;
	}
}

@media (max-width: 760px) {
	.main-footer .column-menu {
		display: none;
	}
	.fixed-footer .icon-link {
		font-size: 0;
	}
}

@media (max-width: 520px) {
	.footer-content .content {
		flex-direction: column;
		align-items: center;
	}
}

/**
 * 3.1 - Map
**/

.ya-map {
	position: relative;
	margin: 1em 0;
	width: 100%;
	height: 480px;
}

.ya-map [class*="balloon__content"],
.ya-map [class*="balloon_layout"],
.ya-map [class*="balloon-content__header"],
.ya-map [class*="balloon-content__footer"] {
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
}

.ya-map [class*="balloon_layout"] {
	top: -60px !important;
	left: 50px !important;
	box-shadow: none;
	background: var(--main_color);
}

.ya-map [class*="balloon__content"] {
	padding: 20px 25px;
	color: #fff;
	background: var(--main_color);
	font-size: 14px;
	font-family: inherit;
}

.ya-map [class*="balloon-content__header"] {
	font-weight: 700;
}

.ya-map [class*="balloon_layout"] [class*="balloon__tail"] {
	position: absolute;
	background: transparent none repeat scroll 0 0;
	border-left: 15px solid transparent;
	border-top: 15px solid var(--main_color);
	height: 0;
	left: 0;
	margin-left: -15px;
	top: 0;
	width: 0;
	transform: none;
	box-shadow: none;
}

.ya-map [class*="balloon__tail"]:after {
	content: none;
}

.ya-map br {
	display: none;	
}

.ya-map .phone {
	font-size: 18px;
}

.ya-map .phone:hover {
	color: var(--main_color);
}

/**
 * 3.1 - Post Thumbnail
**/

.posts-block {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	flex-wrap: wrap;
	gap: 30px;
	margin: 2em 0;
}

.bx-wrapper .posts-block {
	display: block;
	padding: 0;
	margin: 0;
	height: 100%;
}

.post-item {
	display: flex;
	position: relative;
	flex-direction: column;
	width: calc( ( 100% + 30px ) / 3 - 30px );
	max-width: 370px;
	transition: 0.5s;		
}

.bx-wrapper .post-item {
	box-shadow: none;
	height: 100%;
}

.post-item .post-link {
	display: inherit;
	flex-direction: inherit;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
	overflow: hidden;
}

.post-item .image-box {
	display: flex;
	position: relative;
	padding-top: calc(100% * 270 / 370);
	width: 100%;
	overflow: hidden;
	transition: inherit;
}

.post-item .image-box::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #808080;
	opacity: 0;
	transition: 0.5s;
}

.post-item .post-link:hover .image-box::after {
	opacity: 0.5;
}

.post-item .image-box svg,
.post-item .image-box img {	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
}

.post-item .image-box .more {
	display: flex;
	align-items: center;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding-right: 40px;
	height: 30px;
	color: transparent;
	font-size: 16px;
	transition: 0.5s;
}

.post-item a:hover .image-box .more {
	bottom: 50%;
	right: 50%;
	color: #fff;
	transform: translate(50%, 50%);
}

.post-item .image-box .more::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 30px;
	background: var(--main_color);
	transition: inherit;
}

.post-item a:hover .image-box .more::before {
	background: var(--alt_color);
}

.post-item .image-box .more::after {
	content: '';
	position: absolute;
	top: 12px;
	right: 12px;
	width: 7px;
	height: 7px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-135deg);
}

.post-item .content-block {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: 12px 0 0;
	font-weight: 500;
}

.post-item .caption {
	margin: 0;
	color: var(--text_color);
	text-align: left;
	transition: 0.5s;
}

.category-item .caption {
	text-align: center;
}

.post-item .post-link:hover .caption {
	color: var(--main_color);
}

.post-item .button {
	border: 1px solid;
	margin: 0 16px 40px;
	max-width: 200px;
	background: transparent;
	color: var(--main_color);
}

.post-item .post-link:hover .button {
	background: #353535;
	color: #fff;
}

.post-item .button::before,
.post-item .button::after {
	content: none;
}

.advices-block {
	margin-top: 3em;
}

.advices-block .caption {
	font-size: 26px;
}

.advices-block .posts-block {
	flex-grow: 1;
}

@media (max-width: 1200px) {
	.post-item  {		
		width: calc( (100% + 12px) / 4 - 12px );
	}
	
	.advices-block .post-item:nth-child(4) {
		display: none;
	}
}

@media (max-width: 920px) {
	.post-item {
		width: calc( (100% + 12px) / 3 - 12px );
	}	
	
	.advices-block .post-item:nth-child(3) {
		display: none;
	}
}

@media (max-width: 720px) {
	.post-item {
		width: calc( (100% + 12px) / 2 - 12px );
	}
}

@media (max-width: 460px) {	
	.post-item {
		width: calc(100% - 12px);
	}
}
/**
 * 3.1 - Product
**/

.flags-block {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 10px;
	left: -10px;
	z-index: 5;
	font-size: 10px;
}

.flag {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 5px 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f37021;
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
}

.popular-flag {
	background: 
}

.new-flag {
	background: var(--main_color);
}

.sale-flag {
	border-radius: 0;
	width: auto;
	background: #fff;
	color: var(--main_color);
	font-size: 2em;
}

.main-product-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin: 12px 0;
}

.main-product-block .gallery-block {
	position: relative;
	width: 49%;
	min-height: 100%;
} 

.main-product-block .gallery-block .main-image {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-top: calc(100% * 350 / 480);
	width: 100%;
}

.main-product-block .flags-block {
	font-size: 14px;
}

.main-product-block .new-flag,
.main-product-block .popular-flag {
	width: 50px;
	height: 50px;
}

.main-product-block .gallery-block .main-image svg,
.main-product-block .gallery-block .main-image img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100%;
	max-height: 100%;
	transform: translate(-50%, -50%);
}

.main-product-block .bx-wrapper {
	margin: 24px auto;

}

.main-product-block .gallery-block .previews-block {
	width: 100%;
}

.main-product-block .gallery-block .preview-image {	
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 188px;
	height: 138px;
	border: 1px solid #eee;
	cursor: pointer;
}

.main-product-block .gallery-block .preview-image.active,
.main-product-block .gallery-block .preview-image:hover {
	border-color: var(--main_color);
}

.main-product-block .gallery-block .preview-image img,
.main-product-block .gallery-block .preview-image svg {
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height:auto;
	box-shadow: none;
}

.main-product-block .bx-wrapper .bx-controls-direction .bx-prev,
.main-product-block .bx-wrapper .bx-controls-direction .bx-next {
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
	margin: -30px 0 0 0;
	width: 100%;
	height: 30px;
}

.main-product-block .bx-wrapper .bx-controls-direction .bx-next {
	top: auto;
	bottom: 0;
	margin: 0 0 -30px 0;
}

.main-product-block .bx-wrapper .bx-controls-direction .bx-prev::after {
	margin: -4px 0 0 -8px;
	transform: rotate(-135deg);
}
.main-product-block .bx-wrapper .bx-controls-direction .bx-next::after {
	margin: -11px 0 0 -7px;
	transform: rotate(45deg);
}

.main-product-block .description-block {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 46%;
}

.main-product-block .advantage {
	margin: 6px 0;
}

.main-product-block .advantage .image-block {
	max-width: 60px;
	max-height: 60px;
}

.parameters-block {
	margin: 2em 0;
	font-size: 18px;
}

.parameters-block .caption {
	font-size: 24px;
	margin-bottom: 24px;
}

.parameters-block .parameter {
	display: flex;
	padding: 16px 0;
	border-bottom: 1px solid #aaa;
}

.parameters-block .parameter .title {
	width: 30%;
	font-weight: 700;
}

.parameters-block .parameter .value {
}

/**
 * 3.1 - Front Page
**/

.front-main-content {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.front-page-section {
	position: relative;
	padding: 50px 0;
}

.front-page-section .content {
	display: flex;
	flex-direction: column;	
	overflow: hidden;
}

.front-page-section .section-header .text-block {
}

.front-page-section .section-header .title {
	display: flex;
	position: relative;
	color: var(--alt_color);
	font-size: 22px;
	text-transform: uppercase;
}

.front-page-section .section-header .title::before {
	content: '';
	margin: 6px 12px 0 0;
	width: 14px;
	height: 14px;
	background: var(--alt_color);
}

.front-page-section .section-header h1,
.front-page-section .section-header h2,
.front-page-section .section-header h3,
.front-page-section .section-header h4,
.front-page-section .section-header h5,
.front-page-section .section-header h6,
.front-page-section .section-header .caption {
	font-size: 35px;
	line-height: 34px;
	margin-bottom: 1em;
}

@media (max-width: 600px) {
	.front-page-section .section-header h1,
	.front-page-section .section-header h2,
	.front-page-section .section-header h3,
	.front-page-section .section-header h4,
	.front-page-section .section-header h5,
	.front-page-section .section-header h6,
	.front-page-section .section-header .caption {
		font-size: 24px;
		margin-bottom: 1em;
	}
}

.front-start-section {
	padding: 140px 0;
	height: 830px;
	background-repeat: no-repeat;
	background-size: cover;
}

.front-start-section .request-form {
	max-width: 400px;
}

.front-advantages-section .content {
	flex-direction: row;
	justify-content: space-between;
}

.front-advantages-section .content > .content-block {
	width: 48%;
}

.front-advantages-section .content > .image-block {
	width: 50%;
}

.advantages-block {
	display: flex;
	flex-direction: column;
	margin: 1em 0;
}

.advantage {
	flex: 1;
	display: flex;
	align-items: center;
	margin: 12px 0;
}

.advantage > a {
	display: inherit;
	align-items: inherit;
	color: inherit;
	text-decoration: none;
}

.advantage .image-block {
	margin-right: 10px;
	max-width: 86px;
	max-height: 86px;
}

.advantage .image-block img,
.advantage .image-block svg {
	max-width: 100%;
	max-height: 100%;
}

.advantage .text-block {
	padding: 8px;
	font-size: 16px;
}

.advantage .caption {
	margin: 0;
	color: var(--main_color);
	font-size: 20px;
}

.advantage p {
	margin: 0 0 0.2em;
}

@media (max-width: 980px) {	
	.advantages-block {
		flex-wrap: wrap;
	}
	.advantages-block .advantage {
		width: 50%;
	}
}

@media (max-width: 600px) {
	
	.advantages-block .advantage {
		width: 100%;
	}
}

.front-catalog-section .section-header h1 {
	font-size: 35px;
	text-transform: uppercase;
}

.front-catalog-section .section-header::after {
	content: 'Каталог';
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 121px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 0 2px 14px #2a363f8c;
	opacity: 0.3;
}

.front-catalog-section .category-block {
	margin: 2em 0;
}

.front-catalog-section .category-block > .text-block {
	position: relative;
	padding-left: 100px;
	font-size: 16px;
}

.front-catalog-section .category-block > .text-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	height: 70px;
	background: var(--main_color);
}

.front-catalog-section .category-block > .text-block::after {
	content: '';
	position: absolute;
	top: 30px;
	left: 35px;
	width: 50px;
	height: 50px;
	background: var(--alt_color);
}