/*!
Theme Name: Karst
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: karst
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Karst is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

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

:root {
	--main-color: #C9232A;
	--text-color: #222;
}

body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	letter-spacing: .02em;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	background: url(images/bg.jpg) repeat center;
	background-size: contain;
	color: var(--text-color);
}
a, a:hover {
	color: var(--text-color);
	text-decoration: none;
}
img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	margin-bottom: 15px;
	font-weight: bold;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 32px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 21px;
}
h6 {
	font-size: 18px;
}
p {
	margin-bottom: 15px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child {
	margin-bottom: 0;
}
.form-field {
	position: relative;
	margin-bottom: 15px;
}
.form-field:last-child {
	margin-bottom: 0;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
	font-weight: 400;
	border: 1px solid #E7E5E5;
  background: #fff;
  padding: 15px 30px;
  outline: none;
  width: 100%;
  border-radius: 15px;
  transition: .25s;
}
select {
	cursor: pointer;
}
textarea {
	height: 80px;
}


.btn {
  font-weight: bold;
  color: var(--text-color);
  padding: 15px 35px;
  border-radius: 15px;
  text-transform: uppercase;
}
.btn:hover {
  color: var(--text-color);
  text-decoration: none;
}
.btn:focus, .btn.focus {
  box-shadow: none;
}
.btn-primary,
.btn-primary:focus, .btn-primary.focus,
.btn-primary.disabled, .btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
  box-shadow: none;
}
.btn-primary:hover {
  color: #fff;
  background-color: var(--text-color);
  border-color: var(--text-color);
}
.btn-secondary,
.btn-secondary:focus, .btn-secondary.focus,
.btn-secondary.disabled, .btn-secondary:disabled,
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle,
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  color: var(--text-color);
  background: #FFFFFF;
  border-color: #fff;
  box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.25);
}
.btn-secondary:hover {
  color: #fff;
  background-color: var(--text-color);
  border-color: #fff;
}

.wpcf7-not-valid-tip {
	font-size: 14px;
}
.wpcf7 form .wpcf7-response-output {
	font-size: 14px;
	margin: 20px 0 0;
}
.wpcf7 .ajax-loader {
	position: absolute;
	right: 0;
	bottom: 0;
}




.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	margin-right: 10px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 5px;
	background: var(--text-color);
	transition: .25s;
}
.soc-links li a:hover {
	background: #fff;
}
.soc-links li a:before {
  content: '';
  -webkit-mask-size: 20px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: .25s;
}
.soc-links li a:hover:before {
	background-color: var(--text-color);
}
.soc-links li.soc-links-fb a:before {
	-webkit-mask-image: url(images/facebook.svg);
  mask-image: url(images/facebook.svg);
}
.soc-links li.soc-links-ins a:before {
	-webkit-mask-image: url(images/instagram.svg);
  mask-image: url(images/instagram.svg);
}
.soc-links li.soc-links-tg a:before {
	-webkit-mask-image: url(images/telegram.svg);
  mask-image: url(images/telegram.svg);
}





.header {
	position: relative;
	z-index: 98;
}
.main-header {
	position: relative;
	background: var(--main-color);
}
.main-header-inner {
	position: relative;
	display: flex;
	align-items: center;
}
.header-logo {
	flex: auto;
	max-width: inherit;
  display: flex;
  align-items: center;
}
.header-logo a {
	position: relative;
	display: block;
	padding: 3px 0px;
	z-index: 1;
}
.header-logo a:before {
	content: '';
	position: absolute;
  width: calc(100%);
  height: calc(100%);
  z-index: -1;
  top: 0;
  left: 0px;
  background: #fff;
  transform: skew(-15deg, 0deg);
}
.header-logo img {
	height: 68px;
}
.header-logo span {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	padding-left: 30px;
	display: block;
}
.header-phone {
	position: relative;
	text-align: right;
	display: flex;
	z-index: 1;
}
.header-phone p {
	margin: 0 30px 0 0;
}
.header-phone p:last-child {
	margin-right: 0;
}
.header-phone a {
	position: relative;
	display: inline-block;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding-left: 32px;
	transition: .25s;
}
.header-phone a:hover {
	opacity: .8;
}
.header-phone a:before {
	content: '';
	-webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/phone.svg);
  mask-image: url(images/phone.svg);
  background-color: #fff;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
}
.header-phone-toggle {
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/phone.svg);
  mask-image: url(images/phone.svg);
  background-color: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
  outline: none;
  box-shadow: none;
  transition: .25s;
}
.header-phone-toggle:hover {
	opacity: .8;
}

.header-phone-sub {
	display: none;
	position: absolute;
  right: -15px;
  top: calc(100% + 18px);
  width: 220px;
  margin: 0;
  padding: 15px;
  list-style: none;
  background: #C9232A;
  z-index: 2;
}
.header-phone-sub li {
	margin-bottom: 5px;
}
.header-phone-sub li:last-child {
	margin-bottom: 0;
}
@media (min-width: 992px) {
	.header-phone-sub {
		display: none !important;
	}
}


.header-soc {
	justify-content: flex-end;
	flex: 0 0 180px;
	max-width: 180px;
}

.nav-header {
	position: relative;
	background: #fff;
	padding: 10px 0;
}
.nav-header-inner {
	position: relative;
	display: flex;
	align-items: center;
}
.header-search {
	flex: 0 0 400px;
	max-width: 400px;
}
.searchform {
	position: relative;
	width: 100%;
}
.searchform-field {
	width: 100%;
}
.searchform-field input {
	border-radius: 28px;
}
.searchform-btn {
	position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 56px;
}
.searchform-btn button {
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	border: none;
	outline: none !important;
	transition: .25s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.searchform-btn button:hover {
	background: var(--text-color);
}
.searchform-btn button:before {
	content: '';
	-webkit-mask-size: 24px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/magnifiying-glass.svg);
  mask-image: url(images/magnifiying-glass.svg);
  background-color: var(--main-color);
  width: 100%;
  height: 100%;
  transition: .25s;
}
.searchform-btn button:hover:before {
	background-color: #fff;
}
.main-menu {
	flex: 0 0 calc(100% - 75px - 400px);
	max-width: calc(100% - 75px - 400px);
	margin: 0;
	padding: 0 50px;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.main-menu li {
	margin-right: 50px;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu li a {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	transition: .25s;
}
.main-menu li a:hover {
	color: var(--main-color);
}
.nav-header-lang {
	position: relative;
	flex: 0 0 75px;
	max-width: 75px;
	text-align: right;
}
.nav-header-lang select {
	border-color: var(--main-color);
  padding-left: 12px;
  padding-right: 0;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 8px;
    padding-bottom: 8px;
}


.section {
	position: relative;
	padding: 80px 0;
	z-index: 1;
}


.main-slider__item {
	position: relative;
	height: 500px;
	z-index: 1;
}
.main-slider__item-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.main-slider__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.main-slider__item .container {
	height: 100%;
	display: flex;
	align-items: center;
}
.main-slider__item-info {
	max-width: 48%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.05) 100%);
	padding: 35px 50px;
}
.main-slider__item-content {
	position: relative;
	margin-bottom: 30px;
}
.main-slider__item-content:last-child {
	margin-bottom: 0;
}
.main-slider__item-content h1 {
	font-weight: 500;
}
.main-slider__item-content h1 strong {
	font-weight: 900;
}
.mainSlider-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 30px;
	z-index: 2;
}
.mainSlider-dots button {
	padding: 0;
	width: 12px;
	height: 12px;
	border-radius: 2px;
	background: var(--main-color);
	border: none;
	outline: none !important;
	opacity: .45;
	margin-right: 10px;
	transition: .25s;
}
.mainSlider-dots button:last-child {
	margin-right: 0;
}
.mainSlider-dots button.active,
.mainSlider-dots button:hover {
	opacity: 1;
}



.heading {
	position: relative;
	margin-bottom: 30px;
}
.heading h2 {
	font-size: 36px;
	text-transform: uppercase;
}


.catalog-categories {
	background: #F7F7F4;
}
.catalog-categories__items {
	position: relative;
	margin-bottom: -30px;
}
.catalog-categories__item {
	position: relative;
	margin-bottom: 30px;
	background: #fff;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
	overflow: hidden;
	z-index: 1;
}
.catalog-categories__item-image {
	position: relative;
	height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.catalog-categories__item-image img {
	max-height: 360px;
}
.catalog-categories__item-sub {
	display: flex;
	align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgb(0 0 0 / 67%);
  opacity: 0;
  padding: 20px;
  transition: .25s;
}
.catalog-categories__item:hover .catalog-categories__item-sub {
	opacity: 1;
}
.catalog-categories__item-sub ul {
	flex: 0 0 100%;
	max-width: 100%;
}
.catalog-categories__item-sub ul li {
	margin-bottom: 10px;
	color: #fff;
}
.catalog-categories__item-sub ul li:last-child {
	margin-bottom: 0;
}
.catalog-categories__item-sub ul li a {
	color: #fff;
	transition: .25s;
}
.catalog-categories__item-sub ul li a:hover {
	color: var(--main-color);
}
.catalog-categories__item-btn {
	position: relative;
	z-index: 2;
}
.catalog-categories__item-btn a {
	width: 100%;
}


.last-news {
	background: #fff;
}
.last-news__items {
	position: relative;
	margin-bottom: -30px;
}
.last-news__item {
	position: relative;
	margin-bottom: 30px;
	background: #FFFFFF;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
	overflow: hidden;
	display: block;
}
.last-news__item-image {
	position: relative;
	height: 240px;
	margin-bottom: 20px;
	overflow: hidden;
}
.last-news__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .25s;
}
.last-news__item:hover .last-news__item-image img {
	transform: scale(1.05);
}
.last-news__item h3 {
	font-size: 21px;
	margin-bottom: 0;
	padding: 0 20px;
	min-height: 75px;
}
.last-news__item-footer {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.last-news__item-more {
	color: var(--main-color);
	transition: .25s;
}
.last-news__item-more:hover {
	color: var(--text-color);
}
.last-news__item-date {
	position: relative;
	color: #818181;
	padding-left: 30px;
}
.last-news__item-date:before {
	content: '';
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
	width: 21px;
	height: 21px;
	position: absolute;
	left: 0;
	top: 0;
}




.reviews__items {
	position: relative;
	margin: -10px auto -20px;
	max-width: 980px;
}
.reviews__item {
	position: relative;
	background: #FFFFFF;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
	padding: 30px 70px;
	margin: 10px 70px 20px;
	display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.reviews__item-detail {
	flex: 0 0 220px;
	max-width: 220px;
}
.reviews__item-content {
	flex: 0 0 calc(100% - 220px);
	max-width: calc(100% - 220px);
	padding-left: 30px;
}
.reviews__item-image {
	width: 140px;
	height: 140px;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto 20px;
}
.reviews__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.reviews__item-name {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0px;
}
.reviews__item-profession {
	text-align: center;
}
.owl-reviews .owl-nav {
	position: absolute;
	top: calc(50% - 14px);
	width: 100%;
	z-index: 9;
}
.owl-reviews .owl-nav button {
	border: none;
  outline: none !important;
  padding: 0;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/arrow.svg);
  mask-image: url(images/arrow.svg);
  background-color: var(--main-color) !important;
  width: 28px;
  height: 28px;
  position: absolute;
  transition: .25s;
}
.owl-reviews .owl-nav button:hover {
	background-color: var(--text-color) !important;
}
.owl-reviews .owl-nav button.owl-prev {
	left: 0;
	transform: rotate(180deg);
}
.owl-reviews .owl-nav button.owl-next {
	right: 0;
}




.footer {
	position: relative;
	background: #233236;
	padding: 50px 0;
	color: #fff;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
}
.footer-info {
	flex: 0 0 50%;
	max-width: 50%;
}
.footer-soc.soc-links li a {
	background: none;
}
.footer-soc.soc-links li a:hover {
	background: #fff;
}
.footer-feedback {
	flex: 0 0 50%;
	max-width: 50%;
	border-left: 1px solid #FFFFFF;
	padding: 0 30px;
}
.footer-feedback-inner {
	max-width: 420px;
	margin: 0 auto;
}
.footer-feedback input[type="text"],
.footer-feedback input[type="tel"],
.footer-feedback textarea {
	background: none;
	color: #fff;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.footer-logo a {
	position: relative;
	display: block;
	z-index: 1;
}
.footer-logo img {
	height: 68px;
}
.footer-logo span {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	padding-left: 30px;
	display: block;
}
.footer-widgets {
	padding-right: 50px;
}
.footer-widget h5,
.footer-feedback h5 {
	text-transform: uppercase;
	margin-bottom: 15px;
}
.footer-contacts {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}
.footer-contacts li {
	margin-bottom: 5px;
}
.footer-contacts li:last-child {
	margin-bottom: 0;
}
.footer-contacts li.footer-contacts-label {
	font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 10px;
}
.footer-contacts li a,
.footer-contacts li span {
	position: relative;
	display: inline-block;
	padding-left: 34px;
	color: #fff;
	transition: .25s;
}
.footer-contacts li a:hover {
	color: var(--main-color);
}
.footer-contacts li a:before,
.footer-contacts li span:before {
	content: '';
	-webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #fff;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
}
.footer-contacts li.footer-contacts-phone a:before {
	-webkit-mask-image: url(images/phone.svg);
  mask-image: url(images/phone.svg);
}
.footer-contacts li.footer-contacts-email a:before {
	-webkit-mask-image: url(images/mail.svg);
  mask-image: url(images/main.svg);
}
.footer-contacts li.footer-contacts-address span:before {
	-webkit-mask-image: url(images/location.svg);
  mask-image: url(images/location.svg);
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-menu li {
	margin-bottom: 5px;
}
.footer-menu li:last-child {
	margin-bottom: 0;
}
.footer-menu li a {
	color: #fff;
	transition: .25s;
}
.footer-menu li a:hover {
	color: var(--main-color);
}


.copyright {
	position: relative;
	padding: 8px 0;
	background: #000;
	color: #fff;
}
.copyright p {
	text-align: center;
	font-size: 14px;
}
.copyright a {
	color: #fff;
	transition: .25s;
}
.copyright a:hover {
	color: var(--main-color);
}


.page-wrapper {
	position: relative;
	margin-bottom: 80px;
}
.page-header {
	position: relative;
	padding: 20px 0 30px;
}
.aioseo-breadcrumbs {
	position: relative;
	margin-bottom: 15px;
	color: #818181;
}
.aioseo-breadcrumbs:last-child {
	margin-bottom: 0;
}
.aioseo-breadcrumbs a {
	color: #818181;
}
.aioseo-breadcrumb-separator {
	color: var(--main-color);
	margin: 0 5px;
}
.page-title {
	font-weight: 400;
	text-transform: uppercase;
}
.page-content {
	position: relative;
	z-index: 1;
	margin: 15px 0;
}
.page-content:before {
  content: '';
  box-shadow: 0px 4px 8px rgb(0 0 0 / 15%);
  border-radius: 15px;
  background: #fff;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  position: absolute;
  z-index: -1;
  left: -15px;
  top: -15px;
}


.shop-sidebar {
	position: sticky;
	top: 0;
	z-index: 1;
}
.shop-sidebar .widget {
	position: relative;
	background: #FFFFFF;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	margin-bottom: 30px;
}
.shop-sidebar .widget:last-child {
	margin-bottom: 0;
}
.shop-sidebar .widget-title {
	background: var(--main-color);
	padding: 12px 15px;
	text-transform: uppercase;
	text-align: center;
	border-radius: 10px 10px 0 0;
	color: #fff;
	margin-bottom: 0;
}
.product-categories {
	padding: 15px;
	margin: 0;
	list-style: none;
}
.product-categories > li {
	position: relative;
	border-bottom: 1px solid #C4BFBF;
}
.product-categories > li:last-child {
	border-bottom: none;
}
.product-categories > li > a {
	position: relative;
	display: block;
	padding: 7px 0;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 20px;
	transition: .25s;
}
.product-categories > li > a:before {
	content: '';
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/arrow.svg);
  mask-image: url(images/arrow.svg);
  background: var(--text-color);
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 12px;
  transition: .25s;
}
.product-categories > li:hover > a:before,
.product-categories > li.current-cat > a:before,
.product-categories > li.current-cat-parent > a:before {
	background-color: var(--main-color);
}
.product-categories > li:hover > a,
.product-categories > li.current-cat > a,
.product-categories > li.current-cat-parent > a {
	color: var(--main-color);
}
.product-categories > li > ul.children {
	margin: 0 0 15px;
  padding: 0px 0 0 30px;
  list-style: none;
}
.product-categories > li > ul.children > li {
	margin-bottom: 5px;
}
.product-categories > li > ul.children > li:last-child {
	margin-bottom: 0;
}
.product-categories > li > ul.children > li > a {
	transition: .25s;
}
.product-categories > li > ul.children > li:hover > a,
.product-categories > li > ul.children > li.current-cat > a {
	color: var(--main-color);
}




.archive-product-nav {
	position: relative;
	margin-bottom: 30px;
}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 0;
}



.woocommerce .products ul, .woocommerce ul.products {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}
.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
	display: none;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	float: none;
	margin: 0 20px 20px 0;
	flex: 0 0 calc((100% / 4) - (3 * 20px / 4));
	max-width: calc((100% / 4) - (3 * 20px / 4));
}
.woocommerce ul.products.columns-4 li.product:nth-child(4n), .woocommerce-page ul.products.columns-4 li.product:nth-child(4n) {
	margin-right: 0;
}
.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
	flex: 0 0 calc((100% / 3) - (2 * 20px / 3));
	max-width: calc((100% / 3) - (2 * 20px / 3));
}
.woocommerce ul.products.columns-3 li.product:nth-child(3n), .woocommerce-page ul.products.columns-3 li.product:nth-child(3n) {
	margin-right: 0;
}
.product-inner {
	position: relative;
	background: #FFFFFF;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	overflow: hidden;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
  text-transform: uppercase;
  padding: 10px 20px;
  min-height: 68px;
  display: flex;
  align-items: center;
}
.product-image {
	position: relative;
	height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	padding: 0 20px;
}
.woocommerce ul.products li.product a img {
	width: auto;
	margin: 0;
	max-height: 260px;
}
.product-badge {
  position: absolute;
  right: 25px;
  bottom: 0;
  z-index: 2;
}
.product-badge span {
	position: relative;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  padding: 6px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-badge span:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: skewX(-17deg);
  border-radius: 5px;
}
.product-badge__new {
	color: #fff;
}
.product-badge__new:before {
  background: var(--main-color);
  border: 2px solid #fff;
  box-shadow: 0px 4px 8px rgb(0 0 0 / 15%);
}
.product-short {
  padding: 10px 15px 20px;
  min-height: 78px;
  position: relative;
  text-align: center;
}
.woocommerce ul.products li.product .button {
	margin: 0;
  background: var(--main-color);
  width: 100%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  height: 78px;
  position: absolute;
  bottom: -78px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}
.woocommerce ul.products li.product:hover .button {
	bottom: 0;
}
.woocommerce ul.products li.product .button:hover {
	background: var(--text-color);
	color: #fff;
}


.woocommerce nav.woocommerce-pagination ul {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	border: none;
}
.woocommerce .woocommerce-pagination ul.page-numbers::after, .woocommerce .woocommerce-pagination ul.page-numbers::before, .woocommerce-page .woocommerce-pagination ul.page-numbers::after, .woocommerce-page .woocommerce-pagination ul.page-numbers::before {
	display: none;
}
.woocommerce nav.woocommerce-pagination ul li {
	border: none;
	float: none;
	margin: 0 1px;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
	padding: 8px 12px;
	min-width: inherit;
	border-radius: 5px;
	transition: .25s;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--main-color);
	color: #fff;
}



.productSingle {
	position: relative;
}
.productSingle-left {
	position: sticky;
	top: 0;
	z-index: 1;
}
.productSingle-image {
	height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
}
.woocommerce div.product div.images img {
	width: auto;
	max-height: 560px;
	margin: 0 auto;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary,
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	float: none;
	width: 100%;
	margin-bottom: 0;
}
.productSingle-short {
	padding: 0 30px 30px;
	max-width: 440px;
	margin: 0 auto;
}
.woocommerce-product-details__short-description {
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	margin-bottom: 30px;
}
.woocommerce-product-details__short-description:last-child {
	margin-bottom: 0;
}
.woocommerce-product-details__short-description p {
	margin-bottom: 7px;
}
.woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}
.productSingle-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.productSingle-icons p {
	position: relative;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	margin: 0 -3px 10px;
}
.productSingle-icons p img {
	max-height: 58px;
}

.woocommerce div.product div.summary {
	position: relative;
	padding: 30px;
}
.woocommerce div.product .product_title {
	text-transform: uppercase;
	border-bottom: 2px solid #C4C4C4;
	padding-bottom: 10px;
	margin-bottom: 30px;
}
.productSingle-description {
	position: relative;
	margin-bottom: 30px;
}
.productSingle-accordion {
	position: relative;
	border: 1px solid #C4C4C4;
	overflow: hidden;
	border-radius: 10px;
}
.productSingle-accordion__item {
	position: relative;
	border-bottom: 1px solid #b4b4b4;
}
.productSingle-accordion__item:last-child {
	border-bottom: none;
}
.productSingle-accordion__item-heading {
	position: relative;
	background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: 21px;
  font-weight: 500;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
	cursor: pointer;
  transition: .25s;
}
.productSingle-accordion__item-heading.collapsed {
  background: #C4C4C4;
}
.productSingle-accordion__item-heading:hover {
	background: var(--text-color);
}
.productSingle-accordion__item-content {
	padding: 25px 0;
}
.productSingle-accordion__item-content > * {
	padding: 0 20px;
}
.productSingle-accordion__item-content > h4 {
	font-size: 18px;
	text-transform: uppercase;
}
.productSingle-accordion__item-content > ul,
.productSingle-accordion__item-content > ol {
	padding: 0 20px 0 50px;
}
.productSingle-accordion__item-content > ul li::marker,
.productSingle-accordion__item-content > ol li::marker {
	color: var(--main-color);
}
.productSingle-accordion__item-content > table {
	padding: 0;
	width: 100%;
	margin-bottom: 15px;
}
.productSingle-accordion__item-content > table:last-child {
	margin-bottom: 0;
}
.productSingle-accordion__item-content > table td {
	padding: 5px 20px;
}
.productSingle-accordion__item-content > table tr:nth-child(2n+1) td {
	background: #F4F2F2;
}
.productSingle-accordion__item-content > table td strong {
	font-weight: 500;
}
.productSingle-print {
	position: relative;
	margin-top: 30px;
	text-align: right;
}
.productSingle-print button {
	-webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/print.svg);
  mask-image: url(images/print.svg);
  width: 42px;
  height: 42px;
  background: var(--text-color);
  border: none;
  padding: 0;
  outline: none !important;
  transition: .25s;
}
.productSingle-print button:hover {
	background: var(--main-color);
}
.related {
	margin-top: 80px;
}
.singleNews-image {
  float: left;
  width: 100%;
  max-width: 50%;
  margin: 0 30px 30px 0;
}


.pageContacts {
	padding-left: 50px;
}
.pageContacts-map iframe {
	width: 100%;
	height: 360px;
}

.pageContacts-contacts {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}
.pageContacts-contacts li {
	margin-bottom: 5px;
}
.pageContacts-contacts li:last-child {
	margin-bottom: 0;
}
.pageContacts-contacts li.pageContacts-contacts-label {
	font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 10px;
}
.pageContacts-contacts li a,
.pageContacts-contacts li span {
	position: relative;
	display: inline-block;
	padding-left: 34px;
	color: var(--text-color);
	transition: .25s;
}
.pageContacts-contacts li a:hover {
	color: var(--main-color);
}
.pageContacts-contacts li a:before,
.pageContacts-contacts li span:before {
	content: '';
	-webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--main-color);
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
}
.pageContacts-contacts li.pageContacts-contacts-phone a:before {
	-webkit-mask-image: url(images/phone.svg);
  mask-image: url(images/phone.svg);
}
.pageContacts-contacts li.pageContacts-contacts-email a:before {
	-webkit-mask-image: url(images/mail.svg);
  mask-image: url(images/main.svg);
}
.pageContacts-contacts li.pageContacts-contacts-address span:before {
	-webkit-mask-image: url(images/location.svg);
  mask-image: url(images/location.svg);
}


.error-404-number {
	text-transform: uppercase;
	text-align: center;
	font-size: 220px;
	font-weight: bold;
	color: var(--main-color);
	line-height: 1;
}


.nav-links {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-links .page-numbers {
	display: inline-block;
	padding: 8px 12px;
	min-width: inherit;
	border-radius: 5px;
	transition: .25s;
	margin: 0 1px;
}
.nav-links .page-numbers:focus, .nav-links .page-numbers:hover, .nav-links .page-numbers.current {
	background: var(--main-color);
	color: #fff;
}



/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
	clear: both;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	height: 310px;
	margin-bottom: 0;
}
.gallery-item > div {
	height:100%;
	overflow: hidden;
}
.gallery-item img {
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	transition: .25s;
}
.gallery-item a:hover img {
	transform: scale(1.03);
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}


@media print {
	.main-header-lang,
	.header-toggle,
	.related,
	.footer,
	.copyright {
		display: none;
	}
}





@media (max-width: 1399px) {
	h1,
	.heading h2 {
    font-size: 32px;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 21px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}
	.header-logo img,
	.footer-logo img {
    height: 58px;
	}
	.header-search {
    flex: 0 0 350px;
    max-width: 350px;
	}
	.main-menu {
    flex: 0 0 calc(100% - 75px - 350px);
    max-width: calc(100% - 75px - 350px);
  }
  .main-menu li {
    margin-right: 40px;
  }
  .main-slider__item-info {
    max-width: 55%;
  }
  .catalog-categories__item-image {
  	height: 320px;
  }
  .catalog-categories__item-image img {
    max-height: 320px;
	}
	.catalog-categories__item-btn a {
		padding: 15px 20px;
	}
	.catalog-categories__item-sub ul {
    padding-left: 20px;
    margin-bottom: 30px;
  }
  .last-news__item h3 {
  	font-size: 18px;
  	min-height: 56px;
  }
  .product-image {
  	height: 220px;
  }
  .woocommerce ul.products li.product a img {
  	max-height: 220px;
  }
  .productSingle-image {
  	height: 480px;
  }
  .woocommerce div.product div.images img {
    max-height: 480px;
  }
  .gallery-item {
  	height: 250px;
  }
}



@media (max-width: 1199px) {
	input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="password"], textarea, select {
		padding: 11px 25px;
	}
	.btn {
		padding: 11px 30px;
	}
	.header-logo span,
	.footer-logo span {
		font-size: 16px;
	}
	.header-phone p {
    margin: 0 20px 0 0;
	}
	.header-phone a {
		font-size: 16px;
	}
	.header-phone a:before {
		width: 21px;
		height: 21px;
	}
	.header-soc {
		flex: 0 0 124px;
		max-width: 124px;
	}
	.soc-links li a {
		width: 28px;
		height: 28px;
	}
	.soc-links li a:before {
    -webkit-mask-size: 18px;
  }
  .header-search {
    flex: 0 0 300px;
    max-width: 300px;
	}
	.main-menu {
    flex: 0 0 calc(100% - 75px - 300px);
    max-width: calc(100% - 75px - 300px);
    padding: 0 30px;
  }
  .main-menu li {
    margin-right: 30px;
  }
  .main-menu li a {
  	font-size: 16px;
  }
  .searchform-btn {
  	width: 48px;
  	height: 48px;
  }
  .searchform-btn button:before {
    -webkit-mask-size: 18px;
  }
  .catalog-categories__item-btn a {
    padding: 11px 0;
	}
	.catalog-categories__item-sub ul li {
    margin-bottom: 5px;
  }
  .catalog-categories__item-image {
    height: 280px;
	}
	.catalog-categories__item-image img {
    max-height: 280px;
	}
	.main-slider__item {
		height: 420px;
	}
	.main-slider__item-content h1 {
		font-size: 28px;
	}
	.footer-widgets {
    padding-right: 0;
	}
	.productSingle-accordion__item-heading {
    font-size: 18px;
    min-height: 48px;
  }
  .productSingle-short {
  	padding: 0 0 30px;
  }
  .woocommerce div.product div.summary {
  	padding: 15px;
  }
  .last-news__item-image {
  	height: 180px;
  }
  .last-news__item h3 {
  	font-size: 16px;
  }
  .error-404-number {
  	font-size: 180px;
  }
  .gallery-item {
  	height: 210px;
  }
}



@media (max-width: 991px) {
	.header-toggle {
		flex: 0 0 64px;
		max-width: 64px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.header-toggle button {
		flex: 0 0 38px;
    max-width: 38px;
    background: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border: none;
    flex-wrap: wrap;
	}
	.header-toggle button span {
		margin-bottom: 6px;
    background: #fff;
    flex: 0 0 100%;
    max-width: 100%;
    height: 3px;
	}
	.header-toggle button span:last-child {
		margin-bottom: 0;
		flex: 0 0 60%;
		max-width: 60%;
		transition: .25s;
	}
	.header-toggle button:hover span:last-child {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.main-header-lang {
		flex: 0 0 100px;
    max-width: 100px;
    padding-left: 25px;
	}
	.main-header-lang select {
		background: none;
    color: #fff;
    border: 1px solid #fff;
    padding-left: 12px;
    padding-right: 0;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 8px;
    padding-bottom: 8px;
	}
	.main-header-lang select option {
		background: var(--main-color);
	}


	.main-slider__item-info {
    max-width: 70%;
    padding: 30px 35px;
	}

	.reviews__item-detail {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 20px;
		display: flex;
    align-items: center;
	}
	.reviews__item-image {
		flex: 0 0 100px;
		max-width: 100px;
		width: 100px;
		height: 100px;
		margin-bottom: 0;
	}
	.reviews__item-info {
		flex: 0 0 calc(100% - 100px);
		max-width: calc(100% - 100px);
		padding-left: 20px;
	}
	.reviews__item-name,
	.reviews__item-profession {
		text-align: left;
	}
	.reviews__item-content {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}

	.footer-feedback {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: none;
    padding: 0;
    margin-bottom: 30px;
    order: 1;
	}
	.footer-info {
    flex: 0 0 420px;
    max-width: 420px;
    order: 2;
    margin: auto;
	}
	.footer-logo {
		margin-bottom: 25px;
		flex-direction: column;
	}
	.footer-logo span {
		padding-left: 0;
		margin-top: 15px;
	}

	#modalMenu {
		padding: 0 !important;
	}
	#modalMenu .modal-dialog {
		max-width: 100%;
		margin: 0;
		height: 100%;
	}
	#modalMenu .modal-content {
		height: 100%;
		min-height: 100vh;
		align-items: center;
		justify-content: center;
	}
	#modalMenu .modal-body {
		padding: 50px 30px 30px;
		flex: inherit;
	}
	#modalMenu .close {
		-webkit-mask-size: contain;
	  -webkit-mask-repeat: no-repeat;
	  -webkit-mask-position: center;
	  -webkit-mask-image: url(images/close.svg);
	  mask-image: url(images/close.svg);
	  background-color: var(--main-color);
	  border: none;
	  padding: 0;
	  outline: none !important;
	  width: 24px;
	  height: 24px;
	  position: absolute;
	  right: 15px;
	  top: 15px;
	  z-index: 2;
	  opacity: 1;
	}
	.modal-phone {
		text-align: center;
		margin-bottom: 15px;
	}
	.modal-phone a {
		position: relative;
		display: inline-block;
		font-size: 18px;
		font-weight: bold;
		padding-left: 32px;
		transition: .25s;
	}
	.modal-phone a:hover {
		color: var(--main-color);
	}
	.modal-phone a:before {
		content: '';
		-webkit-mask-size: contain;
	  -webkit-mask-repeat: no-repeat;
	  -webkit-mask-position: center;
	  -webkit-mask-image: url(images/phone.svg);
	  mask-image: url(images/phone.svg);
	  background-color: var(--main-color);
	  width: 24px;
	  height: 24px;
	  position: absolute;
	  left: 0;
	  top: 0;
	}
	.modal-soc {
		margin-bottom: 15px;
		justify-content: center;
	}
	.modal-search {
		margin-bottom: 40px;
		width: 320px;
	}
	.main-menu {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
		display: block;
	}
	.main-menu li {
		margin-right: 0;
		margin-bottom: 15px;
		text-align: center;
	}
	.main-menu li a {
		font-size: 18px;
		display: block;
	}


	.shop-sidebar {
		display: none;
	}
	.shop-sidebar.show {
		display: block;
		margin-bottom: 30px;
	}


	.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
		flex: 0 0 calc((100% / 2) - (1 * 20px / 2));
    max-width: calc((100% / 2) - (1 * 20px / 2));
	}
	.woocommerce ul.products.columns-3 li.product:nth-child(3n), .woocommerce-page ul.products.columns-3 li.product:nth-child(3n) {
		margin-right: 20px;
	}
	.woocommerce ul.products.columns-3 li.product:nth-child(2n), .woocommerce-page ul.products.columns-3 li.product:nth-child(2n) {
		margin-right: 0;
	}
	.woocommerce div.product .summary .product_title {
		display: none;
	}
	.woocommerce div.product .product_title {
		margin: 10px 10px 30px;
	}
	.productSingle-image {
    height: 420px;
	}
	.woocommerce div.product div.images img {
    max-height: 420px;
	}

	.pageContacts {
		padding-left: 0;
	}
	.pageContacts-contacts {
    width: max-content;
    max-width: 100%;
    margin: 0 auto 20px;
	}
	.pageContacts-soc {
		justify-content: center;
		margin-bottom: 30px;
	}
	.pageContacts-map iframe {
		height: 320px;
	}

	.gallery-item {
    height: 160px;
	}
}



@media (max-width: 767px) {
	h1,
	.heading h2 {
    font-size: 28px;
	}
	h2,
	.main-slider__item-content h1 {
		font-size: 24px;
	}
	h3 {
		font-size: 21px;
	}
	h4 {
		font-size: 18px;
	}
	h5 {
		font-size: 16px;
	}
	h6 {
		font-size: 15px;
	}
	/*.header-phone {
    flex: 0 0 24px;
    max-width: 24px;
    height: 24px;
    display: flex;
	}
	.header-phone a {
		font-size: 0;
		padding: 0;
	}
	.header-phone a:before {
    width: 24px;
    height: 24px;
	}*/
	.main-slider__item-info {
    max-width: 100%;
    padding: 25px 30px;
	}
	.reviews__item {
		margin: 10px 45px 20px;
		padding: 30px;
	}
	.reviews__item-name {
		font-size: 16px;
	}
	.footer-logo {
		margin-bottom: 35px;
	}
	.footer-widget {
		width: max-content;
    max-width: 100%;
    margin: 0 auto;
	}
	.footer-widget > h5 {
		text-align: center;
	}
	.footer-soc {
		justify-content: center;
	}
	.singleNews-image {
		float: none;
		max-width: 100%;
		margin: 0 0 30px;
	}
	.last-news__item h3 {
		padding: 0 15px;
	}
	.last-news__item-footer {
		padding: 15px;
	}
	.last-news__item-date {
		font-size: 14px;
		padding-left: 22px;
	}
	.last-news__item-date:before {
		width: 16px;
		height: 16px;
	}
	.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product,
	.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
    flex: 0 0 calc((100% / 2) - (1 * 20px / 2));
    max-width: calc((100% / 2) - (1 * 20px / 2));
    margin: 0 20px 20px 0;
	}
	.gallery-columns-3 {
    grid-template-columns: repeat(2, 1fr);
	}
}




@media (max-width: 575px) {
	body {
		font-size: 14px;
	}
	.header-logo img, .footer-logo img {
    height: 48px;
	}
	.header-phone-sub {
		top: calc(100% + 15px);
		right: -50px;
	}
	.main-slider__item {
    height: 340px;
	}
	.main-slider__item > .container {
		padding: 0;
	}
	.main-slider__item-content {
		margin-bottom: 20px;
	}
	.main-slider__item-content h1 {
    font-size: 21px;
	}
	.main-slider__item-info {
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
	}
	.main-slider__item-info a {
		width: max-content;
    margin: 0 auto;
	}
	.catalog-categories__item-image {
    height: 220px;
	}
	.catalog-categories__item-image img {
    max-height: 220px;
	}
	.catalog-categories__item-btn a {
		font-size: 14px;
	}
	.last-news__item h3 {
		min-height: inherit;
	}
	.reviews__item-image {
    flex: 0 0 68px;
    max-width: 68px;
    width: 68px;
    height: 68px;
  }
  .reviews__item-info {
    flex: 0 0 calc(100% - 68px);
    max-width: calc(100% - 68px);
    padding-left: 15px;
	}
	.reviews__item-name {
    font-size: 15px;
	}
	.reviews__item-profession {
		font-size: 13px;
	}
	.footer-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .product-image {
    height: 180px;
	}
	.woocommerce ul.products li.product a img {
    max-height: 180px;
	}
	.productSingle-accordion__item-content > h4 {
    font-size: 16px;
  }
  .error-404-number {
    font-size: 142px;
	}
	.searchform-btn {
    width: 45px;
    height: 45px;
	}
	.catalog-categories__item-sub {
		padding: 15px;
	}
	.catalog-categories__item-sub ul li {
    margin-bottom: 3px;
	}
	.gallery-item {
    height: 130px;
	}
}


@media (max-width: 419px) {
	.header-logo {
		margin-right: 20px;
	}
	.catalog-categories__items > .row > .col-6 {
		-ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
	}
	.reviews__item {
    margin: 10px 30px 20px;
    padding: 20px;
	}
	.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product, .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 20px !important;
	}
	.product-short {
    padding: 10px 15px 15px;
    min-height: 68px;
  }
  .woocommerce ul.products li.product .button {
  	height: 68px;
  	bottom: -68px;
  }
  .gallery-item {
    height: 110px;
	}
}