@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
	--main-font: "Inter", sans-serif;
	--header-bg-color: #1E1E1E;
	--main-text-color:#1E1E1E;
	--light-text-color: #7B7B7B;
	--menu-item-bg: #1A8CFF;
	--transition-way: all .3s ease-out;
	--accent-color: #3066F1;
	--light-gray: #BEBEBE;
	--dark-gray: #3A3A3A;
	--hover-accent-color: #3066F1;
	--light-accent-color: #00E2BC;
	--text-black-color: #1B1B1B;
	--gray-bg: #F8F8F8;
}
body {
	font-family: var(--main-font);
	font-weight: 400;
	color: var(--main-text-color);
	line-height: 1.2;
}
p {
	font-size: 16px;
}

.preloader {
	background: var(--accent-color);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	margin-left: auto;
	margin-right: auto;
	z-index: 9999;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-ms-transform: all 0.7s ease;
	transition: all 0.7s ease;
}
.page-loaded .preloader {
	opacity: 0;
	visibility: hidden;
}
.preloader svg {
	margin-left: auto;
	margin-bottom: 40px;
	display: block;
	margin-right: auto;
}
.preloader-wrapper {
	height: 4px;
	width: 500px;
	position: relative;
	margin: 400px auto;
	margin: 50vh auto;
}
.preloader .line {
	position: absolute;
	height: 4px;
	width: 100%;
}
.preloader .line.odd:before {
	position: absolute;
	content: "";
	left: 0;
	height: 4px;
	-webkit-animation: line-left 2500ms linear 0ms infinite;
	animation: line-left 2500ms linear 0ms infinite;
}
.preloader .line.odd:after {
	position: absolute;
	content: "";
	right: 0;
	height: 4px;
	-webkit-animation: line-right 2500ms linear 0ms infinite;
	animation: line-right 2500ms linear 0ms infinite;
}

.preloader .line.odd:before,
.preloader .line.odd:after {
	background-color: var(--accent-color);
}
.preloader .line.even:before {
	position: absolute;
	content: "";
	left: 0;
	height: 4px;
	-webkit-animation: line-left 2500ms linear 625ms infinite;
	animation: line-left 2500ms linear 625ms infinite;
}
.preloader .line.even:after {
	position: absolute;
	content: "";
	right: 0;
	height: 4px;
	-webkit-animation: line-right 2500ms linear 625ms infinite;
	animation: line-right 2500ms linear 625ms infinite;
}
.preloader .line.even:before,
.preloader .line.even:after {
	background-color: #fff;
}
.preloader .line.odd-1:before {
	position: absolute;
	content: "";
	left: 0;
	height: 4px;
	-webkit-animation: line-left 2500ms linear 1250ms infinite;
	animation: line-left 2500ms linear 1250ms infinite;
}
.preloader .line.odd-1:after {
	position: absolute;
	content: "";
	right: 0;
	height: 4px;
	-webkit-animation: line-right 2500ms linear 1250ms infinite;
	animation: line-right 2500ms linear 1250ms infinite;
}
.preloader .line.odd-1:before,
.preloader .line.odd-1:after {
	background-color: var(--accent-color);
}

.preloader .line.even-1:before {
	position: absolute;
	content: "";
	left: 0;
	height: 4px;
	-webkit-animation: line-left 2500ms linear 1875ms infinite;
	animation: line-left 2500ms linear 1875ms infinite;
}

.preloader .line.even-1:after {
	position: absolute;
	content: "";
	right: 0;
	height: 4px;
	-webkit-animation: line-right 2500ms linear 1875ms infinite;
	animation: line-right 2500ms linear 1875ms infinite;
}
.preloader .line.even-1:before,
.preloader .line.even-1:after {
	background-color: #fff;
}

@-webkit-keyframes line-right {
	0% {
		width: 0;
		margin-right: 50%;
	}
	25% {
		width: 35%;
		margin-right: 15%;
	}
	50% {
		width: 15%;
		margin-right: 0;
	}
	75% {
		width: 0;
		margin-right: 0;
	}
}

@-moz-keyframes line-right {
	0% {
		width: 0;
		margin-right: 50%;
	}
	25% {
		width: 35%;
		margin-right: 15%;
	}
	50% {
		width: 15%;
		margin-right: 0;
	}
	75% {
		width: 0;
		margin-right: 0;
	}
}

@-ms-keyframes line-right {
	0% {
		width: 0;
		margin-right: 50%;
	}
	25% {
		width: 35%;
		margin-right: 15%;
	}
	50% {
		width: 15%;
		margin-right: 0;
	}
	75% {
		width: 0;
		margin-right: 0;
	}
}

@keyframes line-right {
	0% {
		width: 0;
		margin-right: 50%;
	}
	25% {
		width: 35%;
		margin-right: 15%;
	}
	50% {
		width: 15%;
		margin-right: 0;
	}
	75% {
		width: 0;
		margin-right: 0;
	}
}

@-webkit-keyframes line-left {
	0% {
		width: 0;
		margin-left: 50%;
	}
	25% {
		width: 35%;
		margin-left: 15%;
	}
	50% {
		width: 15%;
		margin-left: 0;
	}
	75% {
		width: 0;
		margin-left: 0;
	}
}

@-moz-keyframes line-left {
	0% {
		width: 0;
		margin-left: 50%;
	}
	25% {
		width: 35%;
		margin-left: 15%;
	}
	50% {
		width: 15%;
		margin-left: 0;
	}
	75% {
		width: 0;
		margin-left: 0;
	}
}

@-ms-keyframes line-left {
	0% {
		width: 0;
		margin-left: 50%;
	}
	25% {
		width: 35%;
		margin-left: 15%;
	}
	50% {
		width: 15%;
		margin-left: 0;
	}
	75% {
		width: 0;
		margin-left: 0;
	}
}

@keyframes line-left {
	0% {
		width: 0;
		margin-left: 50%;
	}
	25% {
		width: 35%;
		margin-left: 15%;
	}
	50% {
		width: 15%;
		margin-left: 0;
	}
	75% {
		width: 0;
		margin-left: 0;
	}
}
.breadcrumb {
	color: var(--light-gray);
}

.header {
	width: 100%;
/*	position: fixed;*/
top: 0;
z-index: 999;
transition: var(--transition-way);
/*background: var(--header-bg-color);*/
color: #fff;
border-bottom: 1px solid #BEBEBE;
}
.header.sticky {
	position: sticky;
	background-color: #fff;
}
.header .container {
	display: flex;
/*	justify-content: space-between;*/
align-items: center;
padding: 12px 0;
}
.container {
	width: 1260px;
	margin-left: auto;
	margin-right: auto;
}
.navigation_menu {
	margin-left: auto;
	margin-right: 60px;
}
.crumbs {
	padding: 32px 0;
	color: #fff;
}

.page-template-manufacturers_catal .crumbs_section,
.page-template-products_catal .crumbs_section {
/*	background: linear-gradient(88.03deg, #F5F5F5 1.66%, #EEFCF9 91.81%);*/
background: var(--accent-color);
}
.menu-menu-1-container,
.menu-menu-1-ua-container {
	display: flex;
}
.logo svg path {
	fill: #000;
}
.nav_menu {
	display: flex;
	align-items: center;
}
.nav_menu .menu-item {
	padding: 10px 12px;
	display: flex;
	align-items: center;
	line-height: 1.5;
	transition: var(--transition-way);
	color: var(--text-black-color);
	border: 1px solid transparent;
	border-radius: 8px;
}
.nav_menu .menu-item:first-child {
	margin-right: 18px;
}
.nav_menu .menu-item:hover,
.nav_menu .menu-item:focus {
	border: 1px solid var(--text-black-color);
}
.nav_menu .menu-item + .menu-item {
	margin-left: 15px;
}
.nav_menu .contacts_menu {
	background-color: transparent;
	border: 1px solid #4E5567;
	border-radius: 6px;
	transition: var(--transition-way);
}
.nav_menu .contacts_menu:hover {
	border: 1px solid #fff;
	background: transparent;
}
.products_menu::before,
.manufacturers_menu::before {
	content: '';
	width: 22px;
	height: 22px;
	display: block;
	margin-right: 10px;
}
.products_menu::before {
	background: center / cover no-repeat url(../img/prod_cat_icon.svg);
}
.manufacturers_menu::before {
	background: center / cover no-repeat url(../img/manufact_menu_icon.svg);
}
.menu-button {
	display: none;
}
.menu-button span {
	position: relative;
	display: block;
	width: 30px;
	height: 4px;
	border-radius: 4px;
	background-color: var(--text-black-color);
	transition: var(--transition-way);
}
.menu-button span::before,
.menu-button span::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background-color: var(--text-black-color);
}
.menu-button span::after {
	width: 80%;
	right: 0;
}
.menu-button span::before {
	top: -10px;
	right: 0;
	height: 4px;
}
.menu-button span::after {
	bottom: -10px;
}
.menu-button.is-open span {
	transform: rotate(-45deg);
	background-color: #fff;
}
.menu-button.is-open span::before {
	opacity: 0;
}
.menu-button.is-open span::after {
	opacity: 1;
	transform: rotate(91deg);
	top: 0;
	width: 100%;
	background-color: #fff;
}
.fb_wrap.mob {
	display: none;
}
a[href="#pll_switcher"] {
	display: flex;
	align-items: center;
	padding-bottom: 8px;
}
/*a[href="#pll_switcher"]::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background: center / contain no-repeat url(../img/lang.svg);
	transition: var(--transition-way);
}*/
a[href="#pll_switcher"]:hover::before {
	background: center / contain no-repeat url(../img/lang_w.svg);
}
a[href="#pll_switcher"]::after {
	content: '';
	display: block;
	width: 10px;
	height: 5px;
	margin-left: 10px;
	background: center / contain no-repeat url(../img/lang_arr_b.svg);
	transition: var(--transition-way);
}
.lang_menu .sub-menu {
	padding: 8px 16px;
	border-radius: 6px;
	background: var(--main-text-color);
	opacity: 0;
	visibility: hidden;
	transform: scaleY(0);
	transition: var(--transition-way);
}
.lang-item {
	transition: var(--transition-way);
}
.lang-item:hover {
	color: var(--accent-color);
}
.lang_menu .menu.opened .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
}
.lang_menu .menu.opened a[href="#pll_switcher"]::after {
	transform: rotate(180deg);
}
.fb_wrap {
	display: flex;
	align-items: flex-start;
}
header .fb_wrap {
	align-items: center;
}
.lang_menu {
	padding-top: 9px;
	margin-left: 34px;
}
.lang_menu > ul {
	position: relative;
	color: var(--main-text-color);
}
.lang_menu .sub-menu {
	position: absolute;
}
.lang_menu .sub-menu .lang-item a {
	color: #fff;
}
.fb {
	transition: var(--transition-way);
}
.fb:hover img {
	filter: brightness(.85);
}
/*footer*/
.footer {
	padding: 80px 0;
	background-color: #001428;
	color: #fff;
}
.footer .container,
.top_footer,
.bottom_footer {
	display: flex;
}
.footer_logo {
	margin-right: 39px;
}
.footer_content {
	width: 100%;
}
.top_footer {
	justify-content: space-between;
	margin-bottom: 78px;
}
.bottom_footer {
	justify-content: space-between;
}
.bottom_footer .wp-block-column {
	display: flex;
	align-items: center;
}
.bottom_footer #block-8 .wp-block-image, 
.bottom_footer #block-9 .wp-block-image {
	margin: 0 8px 0 0;
}
.bottom_footer #block-8 .wp-block-columns, 
.bottom_footer #block-9 .wp-block-columns {
	margin: 0;
}
.bottom_footer #block-8 .wp-block-column, 
.bottom_footer #block-9 .wp-block-column {
	flex-basis: content;
}
#block-7,
#block-10 {
	color: #FFFFFF99;
}
.footer_mob_logo {
	display: none;
}
.logo_text {
	height: 43px;
}






/*home page*/
.home .header {
/*	position: fixed;*/
background-color: var(--gray-bg);
}
.hero {
	position: relative;
	padding: 164px 0 89px 0;
	background: linear-gradient(180deg, rgba(31, 48, 94, 0.7) 0%, rgba(31, 48, 94, 0.3) 100%);
	color: #fff;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	display: inline-block;
	width: 512px;
	height: 466px;
	background: center / contain no-repeat url(../img/hero_bg_after.png);
}
.hero .bg_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.hero .container {
	display: flex;
	flex-direction: column;
}
.chestnut_subtitle {
	display: flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 1px;
	margin-bottom: 6px;
}
.chestnut_subtitle img {
	margin-right: 6px;
}
.chestnut_subtitle p {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
}
.made_in span {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid #fff;
	border-radius: 10px;
	margin-right: 3px;
	font-size: 46px;
	font-weight: 500;
}
.hero h1 {
	margin-bottom: 140px;
	font-size: 66px;
	font-weight: 500;
	line-height: 1.2;
	width: fit-content;
	padding: 5px 17px;
	background-color: var(--accent-color);
	border-radius: 10px;
}
.hero h3 {
	margin-bottom: 12px;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
}
.exhibition_info {
	width: 64%;
	display: flex;
	align-items: center;
	position: relative;
}
.exhibition_info li {
	width: calc(100% / 4);
}

.exhibition_info li:not(:first-child) {
	padding: 0 20px;
}
.exhibition_info li:not(:last-child) {
	border-right: 1px solid #FFFFFF66;
}
.exhibition_info li:first-child {
	max-width: 164px;
	border: none;
}
.exhibition_info li:nth-child(2) {
	border-left: 1px solid #FFFFFF66;
}
.cont_info_wrap {
	display: flex;
	align-items: center;
}
.cont_info_wrap a {
	text-decoration: underline;
}
.cont_info_wrap:hover > img {
	filter: url(../img/lang_w.svg);
}
.cont_info_wrap + .cont_info_wrap {
	margin-top: 6px;
}
.exhibition_info p,
.exhibition_info span {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: -.7px;
	line-height: 1.15;
}
.exhibition_info .bold_text {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -.9px;
	line-height: 1.2;
}
.exhibition_info li:nth-child(2) .bold_text {
	margin-bottom: 6px;
}
.cont_info_wrap img {
	margin-right: 8px;
	filter: brightness(.8);
	transition: var(--transition-way);
}
.cont_info_wrap:hover > img {
	filter: brightness(1.0);
}
.about_event {
	position: relative;
	padding: 74px 0;
	background: linear-gradient(270deg, rgba(27, 27, 27, 0.1) -69.76%, #1B1B1B 100%);
}
.about_event video {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	object-fit: cover;
}
.about_event .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.about_event .img_wrap {
	width: 31%;
}
.about_content_wrap {
	width: 58%;
	padding: 46px 56px 56px 56px;
	border: 1px solid var(--accent-color);
	border-radius: 16px;
	backdrop-filter: blur(12px);
	box-shadow: 0px 0px 50px 2px #3066F1 inset;
	color: #fff;
}
.about_event h2 {
	margin-bottom: 32px;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.5;
}
.about_content_wrap .content {
	margin-bottom: 60px;
}
.about_content_wrap p {
	font-weight: 400;

}
.about_content_wrap p + p {
	margin-top: 20px;
}
.counters_wrap h3 {
	margin-bottom: 22px;
	font-size: 28px;
	font-weight: 700;
}
.counters {
	display: flex;
}
.counters li {
	width: 33%;
	padding: 0 0 0 16px;
	border-left: 1px solid #fff;
}
.counters li + li {
	margin-left: 38px;
}
.counters h4 {
	font-size: 46px;
	font-weight: 600;
}
.counters p {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -.4px;
}
.products_catalog_section {
	position: relative;
	padding: 80px 0;
	background-color: var(--accent-color);
}
.heading {
	display: flex;
	justify-content: space-between;
	margin-bottom: 86px;
	color: #fff;
}
.heading h2 {
	font-size: 56px;
	font-weight: 500;
}
.heading p {
	font-weight: 500;
	max-width: 50%;
}
.cat_link_wrap {
	display: inline-flex;
	align-items: center;
	padding: 16px 14px;
	background-color: var(--main-text-color);
	border-radius: 6px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	transition: var(--transition-way);
	border: 1px solid var(--main-text-color);
}
.cat_link_wrap:hover,
.cat_link_wrap:focus {
	background-color: var(--accent-color);
	border: 1px solid #fff;
}
.cat_link_wrap img {
	margin-right: 10px;
}
.rand_prods_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.rand_prods_list {
	position: relative;
}
.products_catalog_section::after {
	content: '';
	display: block;
	width: 100%;
	height: 285px;
	position: absolute;
	bottom: 30px;
	pointer-events: none;
	z-index: 99;
	background: linear-gradient(181.15deg, rgba(48, 102, 241, 0) 5.01%, #3066F1 74.07%);
}
.random.prods_wrapper {
	padding: 0;
	column-gap: 20px;
}
.random.prods_wrapper .prod_name {
	font-size: 17px;
	line-height: 1.36;
}
.random.prods_wrapper .prod_text {
	margin: 13px 0 20px 0;
	font-size: 11px;
	line-height: 1.36;
}
.rand_prods_wrap .swiper-slide.product {
	height: 100%;
}
.swiper-wrapper.random {
	box-sizing: border-box;
}
.swiper-wrapper.random .prod_descr_thumb {
	width: 100%;
}
.btn_wrapper {
	display: flex;
	align-items: center;
}
.btn_wrapper > p {
	margin-right: 16px;
	font-weight: 500;
	font-size: 22px;
}
.producers_section {
	padding: 60px 0 68px 0;
}
.producers_section h2 {
	margin-bottom: 60px;
	font-size: 56px;
	font-weight: 500;
	text-align: center;
}
.gallery_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 44px;
}
.gallery_wrapper .slide  {
	margin: 0 55px 16px 0;
	width: calc((100% - 275px) / 6);
}
.gallery_wrapper .slide:nth-child(6),
.gallery_wrapper .slide:last-child {
	margin: 0 0 16px 0;
}
.slider_link_btn {
	text-align: center;
}
.slider_link_btn a {
	display: inline-block;
	padding: 21px 83px;
	background-color: var(--text-black-color);
	color: #fff;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 500;
	transition: var(--transition-way);
}
.slider_link_btn a:hover,
.slider_link_btn a:focus {
	background-color: var(--accent-color);
}
.about_organizer {
	position: relative;
	padding: 47px 0;
	background-color: #F8F8F8;
	overflow: hidden;
}
.about_organizer .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.about_organizer .img_wrap {
	width: 44%;
}
.about_organizer .text_content_wrap {
	width: calc(56% - 90px);
}
h2 {
	font-size: 56px;
	font-weight: 500;
}
.about_organizer h2 {
	margin-bottom: 24px;
	font-size: 66px;
	font-weight: 500;
	letter-spacing: -2px;
}
p {
	font-weight: 400;
}
.about_text {
	margin-bottom: 40px;
}
.about_text p:not(:last-child) {
	margin-bottom: 16px;
}
.site_link_wrap,
.site_link_btn {
	display: flex;
	align-items: center;
}
.site_link_btn {
	padding: 11px 10px;
	margin-left: 16px;
	background-color: var(--text-black-color);
	color: #fff;
	border-radius: 6px;
	font-weight: 600;
	transition: var(--transition-way);
}
.site_link_btn:hover {
	background-color: var(--hover-accent-color);
}
.site_link_btn img {
	margin-right: 10px;
}
.about_text ul li {
	display: flex;
	align-items: flex-start;
}
.about_text ul li::before {
	content: '\2022';
	font-size: 20px;
	margin-right: 12px;
}

/*product single page*/
.product_info {
	padding: 44px 0 110px 0;
	font-size: 16px;
}
.product_info .description_info {
	padding: 32px;
	border: 1px solid var(--light-gray);
	border-radius: 16px;
}
.product_info .container {
	display: flex;
	justify-content: space-between;
}
.product_info .description_info,
.product_info .product_slider_wrap {
	width: calc((100% - 80px)/2);
}
.product_slider .swiper-slide {
	max-height: 482px;
}
.card_title {
	font-size: 36px;
	font-weight: 500;
}
.prod_text_content {
	margin-bottom: 22px;
	padding: 22px 0;
	border-top: 1px solid rgba(0, 0, 0, .14);
	border-bottom: 1px solid rgba(0, 0, 0, .14);
}
.prod_text_content .prod_descr {
	margin-bottom: 32px;
}
.prod_text_content p {
	font-size: 14px;
	font-weight: 400;
}
.prod_text_content .subtitle {
	margin-bottom: 12px;
	font-weight: 500;
}
.contact_subtitle {
	margin-bottom: 22px;
	font-size: 22px;
	font-weight: 500;
}
.prod_contacts ul li {
	display: flex;
	align-items: center;
}
.prod_contacts ul li + li {
	margin-top: 16px;
}
.prod_contacts ul li img {
	margin-right: 10px;
}
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	border-radius: 12px;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.swiper-slide {
	background-size: cover;
	background-position: center;
}
.main-product-gallery {
	height: 100%;
	width: 100%;
	position: relative;
}
.main-product-thumbs {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
}
.main-product-thumbs .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.4;
}
.main-product-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}
.main-product-gallery .swiper-wrapper img {
	height: 100%;
}
.main-product-gallery .swiper-slide img {
	width: 90%;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.swiper.main-product-gallery,
.inner .modal-gallery-swiper {
	margin-bottom: 16px;
	border-radius: 8px;
}
.swiper.main-product-gallery {
/*	cursor: zoom-in;*/
cursor: url(../img/zoom.svg), auto;	;
}
.main-product-thumbs .swiper-wrapper .swiper-slide {
	margin-right: 16px!important;
	max-width: 165px;
	height: 96px;
	overflow: hidden;
	border-radius: 6px;
}
.main-product-thumbs .swiper-wrapper .swiper-slide img {
	max-height: 100%;
	height: 100%!important;
}
.swiper-pagination {
	display: flex;
	align-items: center;
	color: var(--text-white-color);
	font-family: var(--open-sans);
}
.swiper-pagination .current-img {
	font-size: 20px;
	font-weight: 600;
}
.product_slider .swiper-button-next:after, 
.product_slider .swiper-button-prev:after {
	position: absolute;
	font-size: 20px;
	color: #7B7B7B;
}
.product_slider .swiper-button-next {
	right: 0;
}
.product_slider .swiper-button-prev {
	left: 0;
}
/*.rand_prods_list .product {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}*/
/*.rand_prods_list .product.visible {
	opacity: 1;
	transform: translateY(0);
}*/

/*modal gallery*/
.backdrop.is-hidden,
.form-modal.is-hidden {
	opacity: 0;
	pointer-events: none;
}
.backdrop,
.form-modal {
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.9);
	padding: 104px 40px;
	overflow-y: scroll;
}
.inner .modal-gallery-swiper {
	max-width: 870px;
	height: 578px;
}
.modal-gallery-thumb .swiper-wrapper .swiper-slide {
	margin-right: 12px!important;
	max-width: 150px;
	height: 100px;
	overflow: hidden;
	border-radius: 4px;
}
.inner .modal-gallery-swiper {
	margin-bottom: 29px;
}
.gallery-modal {
	position: relative;
}
.gallery-modal-nav {
	position: absolute;
	right: 0;
	z-index: 99;
}
.close-modal svg path {
	transition: var(--transition-way);
}
a.close-modal:hover svg path,
.close-form-modal:hover svg path  {
	stroke: var(--accent-color);
}
.modal-gallery-swiper .swiper-button-next,
.modal-gallery-swiper .swiper-button-prev {
	top: 289px!important;
	width: 64px!important;
	height: 64px!important;
}
.modal-gallery-swiper .swiper-button-next::after,
.modal-gallery-swiper .swiper-button-prev::after {
	width: 32px;
	height: 32px;
}
.modal-gallery-swiper .swiper-pagination {
	bottom: auto;
	top: 0;
}
.modal-gallery-thumb {
	max-height: 100px;
}
.similar_products {
	padding: 64px 0 80px 0;
	background: var(--accent-color);
	overflow: hidden;
}
.similar_products .container,
.similar_manufacturers .container {
	position: relative;
}
.similar_title {
	margin-bottom: 32px;
}
.similar_swiper_wrap {
	position: absolute;
	display: flex;
	justify-content: flex-end;
	top: 30px;
	right: 0;
}
.similar_swiper_wrap .swiper-slide {
	text-align: center;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	height: auto;
	box-sizing: border-box;
}
.similar-product-thumbnail img {
	max-width: 100%;
	height: auto;
}
.similar_swiper_wrap .swiper-controls {
	display: flex;
	justify-content: flex-end;
	position: absolute;
	top: -65px; 
	width: 100%;
}
.similar_swiper_wrap .swiper-button-prev,
.similar_swiper_wrap .swiper-button-next {
	position: static;
	display: flex;
	width: 50px;
	height: 50px;
	border: 1px solid #DBDBDB;
	border-radius: 6px;
	cursor: pointer;
	transition: var(--transition-way);
}
.similar_swiper_wrap .swiper-button-prev {
	margin-right: 12px;
}
.similar_swiper_wrap .swiper-button-prev:hover,
.similar_swiper_wrap .swiper-button-next:hover {
	background-color: #fff;
}
.similar_swiper_wrap .swiper-button-prev:hover svg path ,
.similar_swiper_wrap .swiper-button-next:hover svg path {
	stroke: var(--accent-color);
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 14px;
	color: #fff;
}
.similar_swiper_wrap .swiper-button-next:after, 
.similar_swiper_wrap .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after {
	display: none;
}
.producer_wrap {
	padding: 22px 0;
}
.product_manufacturer_subtitle {
	font-size: 16px;
	font-weight: 500;
}
.product_manufacturer_subtitle a {
	font-weight: 600;
	color: var(--accent-color);
}
.similar_swiper_wrap .swiper-controls {
	display: none;
}
.products_empty {
	display: none;
	visibility: hidden;
	transform: scale(0);
	transition: var(--transition-way);
}
.prod_catalog .products_empty {
	display: block;
	visibility: visible;
	transform: scale(1);
	width: 400%;
}
.similar_products .swiper-button-prev:after, .similar_products .swiper-rtl .swiper-button-next:after,
.similar_products .swiper-button-next:after, .similar_products .swiper-button-prev:after {
	display: none;
}
.similar_swiper_wrap .swiper-button-prev svg, .similar_swiper_wrap .swiper-button-next svg {
	width: 28px;
	height: 28px;
}

/*products_catalog*/
.catalog_title {
	margin-bottom: 32px;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	color: #fff;
}
.prod_catalog .prods_grid {
	padding-bottom: 110px;
}
.prods_wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr); 
	column-gap: 9px; 
	row-gap: 32px; 
	padding: 64px 0;
	grid-auto-rows: 1fr;
}
.product {
	background-color: #fff;
	overflow: hidden;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: var(--transition-way);
}
.product:hover {
	overflow: hidden;
	box-shadow: 0px 0px 20px 0px #00000029;
}
.prod_thumbnail {
	max-height: 222px;
	width: 100%;
}
.prod_thumbnail img {
	width: 100%;
	max-height:100%;
	height: 222px;
	object-fit: contain;
}
.prod_descr_thumb {
	padding: 24px 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	background-color: var(--gray-bg);
}
.prod_name {
	font-size: 22px;
	font-weight: 800;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
}
.prod_text {
	margin: 16px 0 24px 0;
	font-size: 14px;
}
.prod_text p {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3; 
	-webkit-box-orient: vertical;
}
.prod_link a {
	display: block;
	padding: 11px;
	text-align: center;
	color: var(--text-black-color);
	border: 1px solid var(--text-black-color);
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	transition: var(--transition-way);
}
.prod_link a:hover {
	background-color: var(--accent-color);
	color: #fff;
	border: 1px solid #fff;
}
.prod_pagination {
	text-align: center;
}
.page-numbers {
	display: inline-block;
	width: 50px;
	height: 50px;
	padding: 10px;
	margin: 4px;
	font-size: 22px;
	font-weight: 400;
	color: var(--light-gray);
	border: 1px solid var(--light-gray);
	border-radius: 6px;
	transition: var(--transition-way);
	line-height: 1.2;
}
.page-numbers.current {
	color: #fff;
	background-color: var(--main-text-color);
	border-color: var(--main-text-color);
}
.page-numbers:hover {
	border-color: var(--main-text-color);
	color: var(--main-text-color);
}
.catalog.crumbs,
.top_sidebar {
/*	background: linear-gradient(88.03deg, #F5F5F5 1.66%, #EEFCF9 91.81%);*/
background: var(--accent-color);
}
.top_sidebar {
	padding-bottom: 50px;
}
.top_sidebar .sidebar_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.top_sidebar  [class$="filter"] {
	width: calc((100% - 42px) / 2);
}
.custom_dropdown {
	position: relative;
	display: inline-block;
}
.dropdown_toggle {
	display: flex;
	align-items:center;
	justify-content: space-between;
	background-color: #fff;
	padding: 10px 14px;
	cursor: pointer;
	border: 1px solid #7B7B7B;
	border-radius: 6px;
	color: #8A8A8A;
	transition: var(--transition-way);
}
.dropdown_toggle.active {
	border: 1px solid var(--accent-color);
}
.dropdown_toggle.active .placeholder {
	display: none;
}
.dropdown_toggle .arrow {
	margin-left: 15px;
}
.dropdown_toggle .arrow svg path {
	stroke: var(--accent-color);
}
.placeholder {
	width: 100%;
	line-height: 2.5;
}
.selected_categories {
	display: flex;
	width: 100%;
	overflow: hidden;
	overflow-x: scroll;
}
.selected_category {
	display: flex;
	align-items: center;
	padding: 10px 8px;
	border: 1px solid #D0D5DD;
	border-radius: 6px;
	color: var(--main-text-color);
	line-height: 1.2;
}
.selected_cat {
	max-width: 123px;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	white-space: nowrap;
}
.selected_category + .selected_category {
	margin-left: 6px;
}
.remove_category {
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #98A2B3;
}
.dropdown_toggle.active .counter {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	margin: 0 14px 0 20px;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background-color: var(--accent-color);
	color: #fff;
}
.dropdown_toggle.active .clear_all {
	width: 26px;
	height: 26px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	transition: var(--transition-way);
}
.clear_all svg {
	width: 100%;
	height: 100%;
}
.prod_cats_list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #ccc;
	display: none; 
	position: absolute;
	width: 100%;
	background-color: white;
	max-height: 383px;
	overflow-y: auto;
	z-index: 1;
	top: 110%;
	border-radius: 6px;
	box-shadow: 0px 4px 6px 0px #00000038;
}
.prod_cats_list li {
	padding: 14px 8px;
}
.prod_cats_list li:hover {
	background-color: #F9FAFB;
}
.f-checkbox {
	position: relative;
	appearance: none;
	margin: 0 8px 0 0;
}
.f-checkbox::before {
	content: " ";
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid #C6C6C6;
	background: transparent;
	background-size: 0;
	transition: var(--transition-way);
}
.f-checkbox:checked::before {
	background-image: url(../img/check.svg);
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--accent-color);
}
.prod_cats_list li label {
	display: flex;
	align-items: center;
}
.other_products_of_manufacturer {
	padding-bottom: 80px;
}
.other_title{
	margin-bottom: 29px;
}
.search_field {
	padding: 20.5px 17px 21px 52px;
	width: 100%;
	font-size: 16px;
	border-radius: 6px;
	border: none;
}
.search_form  input:-internal-autofill-selected {
	background-color: #fff!important;
}
.search_form {
	position: relative;
	border: 1px solid #7B7B7B;
	border-radius: 6px;
	color: #8A8A8A;
} 
.search_submit {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	padding: 0;
	background: center / cover no-repeat url(../img/search-sm.svg);
	border: none;
}
.search_form ::placeholder {
	color: #8A8A8A;
	font-size: 16px;
	font-weight: 400;
	font-family: var(--main-font);
}
.products_empty {
	margin-bottom: 20px;
	text-align: center;
}
.clear_search {
	display: none;
	transition: var(--transition-way);
}
.search_form.active .clear_search {
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 18px;
	width: 26px;
	height: 26px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: none;
	transition: var(--transition-way);
/*    cursor: pointer;*/
border-radius: 50%;
}
.search_form.active .clear_search:hover svg path,
.dropdown_toggle.active .clear_all:hover svg path {
	stroke: #101828;
}
.search_form {
	position: relative;
	transition: var(--transition-way);
}
.search_form.active {
	border: 1px solid var(--accent-color);
}
.search_form input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}
.search_form input[type="search"]::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

/*manufacturer-single*/
.manufacturer_info .container,
.main_manuf_info {
	display: flex;
	justify-content: space-between;
}
.main_manuf_info {
	padding-bottom: 40px;
	border-bottom: 1px solid #00000024;
}
.manufacturer_info .descr_wrap {
	width: calc(70% - 16px);
	padding: 36px;
	border-radius: 16px;
	background-color: #F8F8F8;
}
.manufacturer_info .m_contacts_wrap {
	width: 30%;
	padding: 36px;
	background-color: #fff;
	border-radius: 16px;
	border: 1px solid var(--accent-color);
}
.manufacturer_info .m_contacts_wrap ul li + li {
	margin-top: 22px;
}
.main_manuf_info > img {
	width: 160px;
	height: 160px;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	object-fit: contain;
}
.manuf_text_content {
	width: calc(80% - 32px);
}
.manuf_text_content .card_title {
	margin-bottom: 12px;
}
.location {
	display: flex;
	align-items: center;
	margin-bottom: 22px;
}
.location p {
	margin-left: 10px;
	font-weight: 500;
}
.manuf_text_content .descr_text {
	font-weight: 400;
}
.export_dep {
	padding-top: 32px;
}
.export_dep ul,
.export_dep ul li {
	display: flex;
}
.export_dep h2 {
	margin-bottom: 17px;
	font-size: 22px;
	font-weight: 500;
}
.export_dep ul li + li {
	margin-left: 40px;
}
.export_dep ul li p,
.export_dep ul li a {
	margin-left: 10px;
	font-weight: 400;
}
.export_dep ul li img {
	max-width: 24px;
	max-height: 24px;
}
/*.m_contacts_wrap ul li + li {
	margin-top: 18px;
}*/
.manufacturer_info .m_contacts_wrap > ul {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	height: 100%;
}
.c_subtitle {
	margin-bottom: 4px;
	font-size: 14px;
	color: var(--light-gray);
}
.c_text {
	display: block;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: -.95px;
}
.manufacturers_products,
.similar_manufacturers {
	padding: 64px 0 80px 0;
}
.similar_manufacturers {
	background: var(--accent-color);
	overflow: hidden;
}
.mob_lang {
	display: none;
}
@media screen and (max-width: 1260px) {
	.container {
		width: 92%;
	}
	.random.prods_wrapper {
		column-gap: 5px;
	}
	.btn_wrapper {
		width: auto;
	}
	.hero::after {
		z-index: -1;
	}
	.exhibition_info {
		width: 100%;
	}

}
@media screen and (max-width: 1200px) {
	.counters h4 {
		font-size: 48px;
	}
	.about_content_wrap {
		width: calc(69% - 40px);
	}
	.bottom_footer {
		flex-direction: column;
	}
	#block-7,
	#block-10 {
		order: 1;
		margin-top: 32px;
	}
	#block-7 p,
	#block-10 p {
		text-align: center;
	}
	.manufacturer_info .descr_wrap {
		width: calc(76% - 30px);
	}
	.manufacturer_info .m_contacts_wrap {
		width: 26%;
	}
	.export_dep ul li + li {
		margin-left: 20px;
	}
}
@media screen and (max-width: 1100px) {
	.navigation_menu {
		width: 55%;
	}
	.manufacturer_info .container {
		flex-direction: column;
	}
	.manufacturer_info .descr_wrap,
	.manufacturer_info .m_contacts_wrap {
		width: 100%;
	}
	.m_contacts_wrap {
		margin-top: 36px;
	}
	.m_contacts_wrap ul li + li {
		margin-top: 18px;
	}
	.gallery_wrapper .slide  {
		width: calc((100% - 165px) / 4);
	}
	.gallery_wrapper .slide:nth-child(6) {
		margin: 0 55px 16px 0;
	}
	.gallery_wrapper .slide:nth-child(4n),
	.gallery_wrapper .slide:last-child {
		margin: 0 0 16px 0;
	}
}
@media screen and (max-width: 1024px) {
	.navigation_menu {
		width: 60%;
	}
	.product_info .description_info, .product_info .product_slider_wrap {
		width: calc((100% - 50px) / 2);
	}
	.hero::after {
		display: none;
	}
	.btn_wrapper > p {
		display: none;
	}
}
@media screen and (max-width: 922px) {
	.menu-button {
		top: 20px;
		right: 16px;
		z-index: 99;
		display: inline-block;
		width: 40px;
		height: 40px;
		background-color: transparent;
		border: none;
		padding: 0;
		margin-left: auto;
	}
	.fb_wrap.desktop {
		display: none;
	}
	.fb_wrap.mob {
		display: flex;
		justify-content: center;
		margin-top: 90px;
	}
	.navigation_menu {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: fit-content;
		display: block;
		padding: 135px 0 76px 0;
		transition: var(--transition-way);
		opacity: 0;
		visibility: hidden;
		transform: scaleY(0);
	}
	.navigation_menu.is-open,
	.fb_wrap.is-open {
		z-index: 9;
		background: var(--accent-color);
		opacity: 1;
		visibility: visible;
		transition: var(--transition-way);
		transform: scaleY(1);
	}
	.menu-menu-1-container::before,
	.menu-menu-1-ua-container::before {
		display: none;
	}
	.nav_menu {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	.nav_menu .menu-item + .menu-item {
		margin: 2px 0 0 0;
	}
	.nav_menu .menu-item {
		background-color: #D9D9D91A;
		padding: 25px;
		width: 100%;
		color: #fff;
	}
	.products_menu::before, .manufacturers_menu::before {
		display: none;
	}
	.contacts_menu {
		border: none;
	}
	.hero h3 {
		align-self: center;
		margin-bottom: 22px;
	}
	.exhibition_info {
		flex-direction: column;
		position: relative;
	}
	.exhibition_info li {
		width: 100%;
	}
	.exhibition_info li:not(:first-child){
		padding: 20px 0;
	}
	.exhibition_info li:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid #FFFFFF66;
	}
	.exhibition_info li:first-child {
		border: none;
		top: 32px;
		padding: 0;
	}
	.exhibition_info li:nth-child(2) {
		border-left: none;
	}
	.cont_info_wrap:first-child {
		margin-bottom: 6px;
	}
	.about_event .container {
		flex-direction: column;
	}
	.about_event .img_wrap {
		width: 100%;
		display: none;
	}
	.about_content_wrap {
		width: 100%;
	}
	.rand_prods_wrap {
		flex-direction: column;
	}
	.rand_prods_list {
		max-width: 100%;
	}
	.random.prods_wrapper {
		display: flex;
		position: relative;
		width: 100%;
	}
	.rand_prods_list .prod_descr_thumb {
		padding: 20px 14px;
	}
	.rand_prods_wrap .btn_wrapper {
		margin-top: 32px;
	}
	.cat_link_wrap {
		position: absolute;
		bottom: 60px;
		z-index: 999;
		left: 50%;
		transform: translateX(-50%);
	}
	.heading {
		margin-bottom: 56px;
	}
	.products_catalog_section {
		padding: 56px 0 134px 0;
		overflow: hidden;
	}
	.products_catalog_section::after {
		bottom: 60px;
	}
	.about_organizer {
		padding: 56px 0;
	}
	.about_organizer .text_content_wrap {
		width: calc(62% - 90px);
	}
	.about_organizer h2 {
		font-size: 56px;
		letter-spacing: 0;
	}
	.footer {
		padding: 56px 0 63px 0;
	}
	.footer .container {
		flex-direction: column;
	}
	.top_footer {
		margin: 50px 0 0 0;
	}
	.footer_logo {
		order: 1;
		display: flex;
		margin: 50px 0 0 0;
	}
	.footer_mob_logo {
		display: block;
		margin-left: 43px;
	}
	.bottom_footer #block-7,
	.bottom_footer #block-10,
	.logo_text {
		display: none;
	}
	#block-7,
	#block-10 {
		margin-top: 57px;
	}
	.prod_catalog .prods_grid {
		padding-bottom: 90px;
	}
	.prods_wrapper {
		padding: 38px 0 42px 0;
		grid-template-columns: repeat(3, 1fr);
	}
	.product_info {
		padding: 44px 0 96px 0;
	}
	.container.descr {
		flex-direction: column;
	}
	.product_info .description_info, .product_info .product_slider_wrap {
		width: 100%;
	}
	.product_slider_wrap {
		margin-bottom: 32px;
	}
	.prod_catalog .products_empty {
		width: 300%;
	}
}
@media screen and (max-width: 768px) {
	.hero {
		padding: 126px 0 92px 0;
	}
	.hero .container,
	.exhibition_info {
		align-items: center;
	}
	.exhibition_info li {
		text-align: center;
	}
	.exhibition_info li:not(:first-child) {
		padding: 12px 0;
	}
	.cont_info_wrap {
		justify-content: center;
	}
	.hero h1 {
		font-size: 40px;
		margin-bottom: 62px;
		text-align: center;
	}
	.made_in span {
		font-size: 26px;
	}
	.chestnut_subtitle img {
		width: 74px;
	}
	.about_organizer .container {
		flex-direction: column;
	}
	.about_organizer .text_content_wrap {
		width: 100%;
	}
	.about_organizer .img_wrap {
		width: 100%;
		order: 1;
		margin-top: 42px;
	}
	.bottom_footer .wp-block-column,
	.footer_logo,
	.top_footer {
		justify-content: center;
	}
	.prods_wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.sidebar_wrapper {
		flex-direction: column;
	}
	.top_sidebar [class$="filter"] {
		width: 100%;
		margin-top: 18px;
	}
	.swiper-slide img {
		object-fit: contain;
	}
	.inner .modal-gallery-swiper {
		height: auto;
	}
	.modal-gallery-swiper .swiper-button-next, .modal-gallery-swiper .swiper-button-prev {
		top: 50%!important;
	}
	.backdrop {
		padding: 94px 20px;
	}
	.manufacturer_info {
		padding: 46px 0 60px 0;
	}
	.export_dep ul {
		flex-direction: column;
	}
	.export_dep ul li + li {
		margin: 20px 0 0 0;
	}
	.main_manuf_info {
		flex-direction: column;
	}
	.manuf_text_content {
		width: 100%;
		margin-top: 26px;
	}
	.main_manuf_info > img {
		align-self: center;
	}
	.prod_catalog .products_empty {
		width: 200%;
	}
	.footer_content {
		display: flex;
		flex-direction: column;
	}
	.top_footer {
		order: 1;
	}
}
@media screen and (max-width: 650px) {
	.producers-gallery.swiper {
		padding-bottom: 32px;
	}
	.producers-gallery .swiper-pagination,
	.similar_swiper_wrap .swiper-controls {
		display: flex;
		bottom: 0;
		width: 100%;
		justify-content: center;
	}
	.swiper-controls {
		padding-top: 32px;
	}
	.producers-gallery .swiper-pagination .swiper-pagination-bullet,
	.swiper-controls .swiper-pagination-bullet {
		width: calc(100% / 8);
		height: 4px;
		border-radius: 3px;
		background: #E3E3E3;
		margin: 0;
		transition: var(--transition-way);
	}
	.swiper-controls .swiper-pagination-bullet {
		width: 20%;
	}
	.producers-gallery .swiper-pagination .swiper-pagination-bullet-active,
	.swiper-controls .swiper-pagination-bullet-active {
		background: var(--main-text-color);
		height: 6px;
		border-radius: 4px;
	}
	.similar_swiper_wrap {
		display: none;
	}
	.rand_prods_list.swiper {
		overflow: visible;
		width: 90%;
	}
	.products_catalog_section::after {
		height: 215px;
	}
	h2,
	.heading h2,
	.producers_section h2,
	.about_organizer h2 {
		font-size: 42px;
	}
	.heading {
		margin-bottom: 36px;
	}
	.gallery_wrapper .slide  {
		width: calc((100% - 55px) / 2);
	}
	.gallery_wrapper .slide:nth-child(4n) {
		margin: 0 55px 16px 0;
	}
	.gallery_wrapper .slide:nth-child(2n),
	.gallery_wrapper .slide:last-child {
		margin: 0 0 16px 0;
	}
	.gallery_wrapper .slide img {
		width: 100%;
	}
}
@media screen and (max-width: 560px) {
	.about_event {
		padding: 32px 0 86px 0;
	}
	.counters {
		flex-direction: column;
	}
	.counters li {
		padding: 0 22px;
		width: 100%;
	}
	.counters li + li {
		margin: 36px 0 0 0;
	}
	.about_content_wrap .content {
		margin-bottom: 46px;
	}
	.producers_section h2 {
		margin-bottom: 12px;
	}
	.producers_section .container {
		width: 95%;
	}
	.producers_section .container .swiper::before, .producers_section .container .swiper::after {
		width: 107px;
	}
	.prods_wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.prod_catalog .products_empty {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.logo svg {
		max-width: 100%;
	}
	.about_event .img_wrap {
		display: block;
		margin-bottom: 46px;
	}
	.heading h2,
	.producers_section h2 {
		text-align: center;
	}
	.about_organizer .img_wrap {
		display: block;
		margin-top: 60px;
	}
	#block-7 p,
	#block-10 p {
		font-size: 14px;
	}
	header .logo img {
		max-width: 250px;
	}
	.preloader-wrapper {
		width: auto;
	}
	.fb_wrap.mob {
		flex-direction: column;
	}
	.fb_wrap.mob .fb {
		order: 1;
		align-self: center;
		margin-top: 100px;
	}
	header a[href="#pll_switcher"]::after {
		display: none;
	}
	header [href="#pll_switcher"] {
		color: var(--accent-color);
		padding: 25px 0 25px 34px;
		border-bottom: 2px solid var(--header-bg-color);
	}
	header .mob .lang_menu .sub-menu {
		padding: 0;
		visibility: visible;
		opacity: 1;
		transform: scale(1);
		display: flex;
		align-items: center;
		padding: 25px 0 25px 34px;
		transition: var(--transition-way);
		background: transparent;
	}
	header .mob .lang_menu .sub-menu:hover::before {
		background: var(--accent-color);
	}
	header a[href="#pll_switcher"]::before,
	header .mob .lang_menu .sub-menu::before {
		content: '';
		width: 10px;
		height: 10px;
		display: block;
		margin-right: 10px;
		border-radius: 50%;
		background: #585858;
	}
	header a[href="#pll_switcher"]::before {
		background: var(--accent-color);
	}
	header .mob .lang_menu {
		padding-top: 0;
		margin-left: 0;
		width: 100%;
		background: #D9D9D91A;
	}
	header .mob_lang {
		display: flex;
		align-items: center;
		margin: 0 0 16px 34px;
		color: #FFFFFF80;
		font-size: 14px;
		font-weight: 600;
	}
	header .mob_lang svg {
		margin-right: 10px;
	}
	header .fb_wrap {
		align-items: flex-start;
	}
	.about_content_wrap {
		padding: 26px 23px 40px 23px;
	}
	h2,
	.heading h2,
	.producers_section h2,
	.about_organizer h2 {
		font-size: 32px;
	}
}
@media screen and (max-width: 375px) {
	.exhibition_info p,
	.cont_info_wrap span, .cont_info_wrap a {
		font-size: 16px;
	}
	.site_link_wrap {
		flex-direction: column;
	}
	.site_link_btn {
		margin: 32px 0 0 0;
		width: 100%;
		justify-content: center;
	}
	.rand_prods_wrap .btn_wrapper {
		width: 100%;
	}
	.cat_link_wrap {
		width: 75%;
		justify-content: center;
	}
}
@media screen and (max-width: 355px) {
	.exhibition_info {
		padding: 20px 20px 34px 20px;
	}
	.made_in span {
		font-size: 20px;
		margin-right: 0;
	}
	.chestnut_subtitle img {
		width: 64px;
	}
}



