/*------------------------------------------*/
/* TABLE OF CONTENTS: */
/*------------------------------------------*/
/* - FONTS */
/* - PRELOADER */
/* - RESET */
/* - GLOBAL SETTINGS */
/* - TYPOGRAPHY */
/* - HEADER */
/* - BANNER */
/* - BUTTONS */
/* - PRODUCT TOP */
/* - HOME TOP STYLE */
/*------------------------------------------*/
/* FONTS IMPORT */
/*------------------------------------------*/
@font-face {
	font-family: 'Mont Blanc';
	src: local('Mont Blanc Bold'), local('MontBlanc-Bold'),
		url('../fonts/MontBlanc-Bold.woff2') format('woff2'),
		url('../fonts/MontBlanc-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Mont Blanc';
	src: local('Mont Blanc Light'), local('MontBlanc-Light'),
		url('../fonts/MontBlanc-Light.woff2') format('woff2'),
		url('../fonts/MontBlanc-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Mont Blanc';
	src: local('Mont Blanc Regular'), local('MontBlanc-Regular'),
		url('../fonts/MontBlanc-Regular.woff2') format('woff2'),
		url('../fonts/MontBlanc-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*------------------------------------------*/
/* PRELOADER */
/*------------------------------------------*/
#loader-wrapper {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: var(--clr-white);
	-webkit-animation: loader 0.5s linear;
	animation: loader 0.5s linear;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes loader {
	0% {
		opacity: 1;
	}
	70% {
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
		display: none;
		visibility: hidden;
		z-index: -10;
		opacity: 0;
	}
}

@keyframes loader {
	0% {
		opacity: 1;
	}
	70% {
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
		display: none;
		visibility: hidden;
		z-index: -10;
		opacity: 0;
	}
}

/*------------------------------------------*/
/* RESET */
/*------------------------------------------*/
html {
	overflow-y: scroll;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-text-size-adjust: none;
}

.clear {
	clear: both;
	overflow: hidden;
	height: 0;
	font-size: 0;
	display: block;
}

:focus,
:hover,
:active,
:visited {
	outline: none;
}

button {
	background: none;
}

body ::-moz-selection {
	color: var(--clr-white);
	background: var(--clr-primary);
}

body ::selection {
	color: var(--clr-white);
	background: var(--clr-primary);
}

body ::-moz-selection {
	color: var(--clr-white);
	background: var(--clr-primary);
}

a {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	outline: none;
	color: inherit;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

/*------------------------------------------*/
/* GLOBAL SETTINGS */
/*------------------------------------------*/
:root {
	--clr-primary: #009246;
	--clr-secondary: #d22730;
	--clr-third: #f5faf2;
	--clr-white: #ffffff;
	--clr-black: #212721;
	--clr-grey: #636662;
	--transition: all 0.3s linear;
}

html {
	height: auto;
	-webkit-font-smoothing: antialiased;
}

body {
	height: auto;
	overflow: hidden;
}

#content-block {
	overflow: hidden;
	position: relative;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

footer {
	margin-top: auto;
}

.overflow-hidden {
	overflow: hidden;
}

html.overflow-hidden body {
	overflow: hidden;
}

.swiper-slide:not(:first-child) {
	display: block;
}

html.keyboard-focus:focus {
	outline: auto;
}

html.overflow-menu,
html.overflow-menu body {
	overflow: hidden;
}

.img {
	display: inline-block;
	max-width: 100%;
	max-height: 100%;
	vertical-align: top;
}

.section {
	position: relative;
}

img[data-i-src],
[data-bg] {
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	opacity: 0;
}

img[data-i-src].imgLoaded,
[data-bg].bgLoaded {
	opacity: 1;
}

.row {
	--bs-gutter-x: 30px;
	--bs-gutter-y: 0;
}

@media (min-width: 1730px) {
	.container {
		width: 100%;
		max-width: 1730px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* spacers */
[class*='spacer'] {
	clear: both;
	width: 100% !important;
}

.spacer-lg {
	height: 90px;
}

.spacer-sm {
	height: 50px;
}

.spacer-xs {
	height: 35px;
}

.spacer-desktop-off {
	display: none;
}

.hide-on-desktop {
	display: none;
}

.cookies-informer,
.cart-informer,
.popup-wrapper,
.cart {
	display: none;
}

.swiper-container {
	opacity: 0;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.swiper-container.swiper-initialized {
	opacity: 1;
}

@media (max-width: 1400px) {
	.spacer-lg {
		height: 90px;
	}
	.spacer-sm {
		height: 40px;
	}
	.spacer-xs {
		height: 25px;
	}
}

@media (max-width: 1199px) {
	main {
		padding-top: 40px;
	}
	.spacer-lg {
		height: 75px;
	}
}

@media (max-width: 991px) {
	.spacer-mobile-off {
		display: none;
	}
	.spacer-desktop-off {
		display: block;
	}
}

@media (max-width: 767px) {
	.hide-on-desktop {
		display: block;
	}
	.hide-on-mobile {
		display: none;
	}
	.spacer-lg {
		height: 40px;
	}
	.spacer-sm {
		height: 20px;
	}
	.spacer-xs {
		height: 15px;
	}
}

/*------------------------------------------*/
/* TYPOGRAPHY */
/*------------------------------------------*/
body {
	font-family: 'Mont Blanc', sans-serif;
	color: var(--clr-black);
}

strong {
	font-weight: 600;
}

a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

a:hover {
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

body {
	font-size: 16px;
	line-height: 1.5em;
}

.title {
	font-weight: 600;
	color: var(--clr-black);
}

.title-decor {
	display: inline-block;
	position: relative;
}

.title-decor::before {
	content: '';
	position: absolute;
	top: -30px;
	left: -50px;
	width: 64px;
	height: 54px;
	background: url(../img/title-decor.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

h1,
.h1 {
	font-size: 48px;
	line-height: 1.2em;
}

h2,
.h2 {
	font-size: 40px;
	line-height: 1.2em;
}

h3,
.h3 {
	font-size: 30px;
	line-height: 1.33em;
}

h4,
.h4 {
	font-size: 25px;
	line-height: 1.33em;
}

h5,
.h5 {
	font-size: 20px;
	line-height: 1.5em;
}

h6,
.h6 {
	font-size: 18px;
	line-height: 1.5em;
}

.text-truncate {
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}

.text-cut-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.text-cut-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.text-cut-4 {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.text-cut-5 {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

@media (min-width: 0) {
	.text-xs-left {
		text-align: left;
	}
	.text-xs-center {
		text-align: center;
	}
	.text-xs-right {
		text-align: right;
	}
}

@media (min-width: 576px) {
	.text-sm-left {
		text-align: left;
	}
	.text-sm-center {
		text-align: center;
	}
	.text-sm-right {
		text-align: right;
	}
}

@media (min-width: 768px) {
	.text-md-left {
		text-align: left;
	}
	.text-md-center {
		text-align: center;
	}
	.text-md-right {
		text-align: right;
	}
}

@media (min-width: 992px) {
	.text-lg-left {
		text-align: left;
	}
	.text-lg-center {
		text-align: center;
	}
	.text-lg-right {
		text-align: right;
	}
}

@media (min-width: 1200px) {
	.text-xl-left {
		text-align: left;
	}
	.text-xl-center {
		text-align: center;
	}
	.text-xl-right {
		text-align: right;
	}
}

@media (max-width: 1730px) {
	h1,
	.h1 {
		font-size: 40px;
	}
	h2,
	.h2 {
		font-size: 34px;
	}
	h3,
	.h3 {
		font-size: 26px;
	}
	h4,
	.h4 {
		font-size: 22px;
	}
	h5,
	.h5 {
		font-size: 18px;
	}
	h6,
	.h6 {
		font-size: 16px;
	}
}

@media (max-width: 1400px) {
	h1,
	.h1 {
		font-size: 34px;
	}
	h2,
	.h2 {
		font-size: 28px;
	}
	.title-decor::before {
		top: -15px;
		left: -35px;
		width: 50px;
		height: 40px;
	}
}

@media (max-width: 1199px) {
	h1,
	.h1 {
		font-size: 30px;
	}
	h2,
	.h2 {
		font-size: 26px;
	}
	h3,
	.h3 {
		font-size: 24px;
	}
	h4,
	.h4 {
		font-size: 20px;
	}
	.title-decor::before {
		display: none;
	}
}

@media (max-width: 767px) {
	h1,
	.h1 {
		font-size: 24px;
	}
	h2,
	.h2 {
		font-size: 22px;
	}
	h3,
	.h3 {
		font-size: 20px;
	}
}

/*------------------------------------------*/
/* - TEXT & SIMPLE PAGE STYLES */
/*------------------------------------------*/
.text {
	font-size: 16px;
	line-height: 1.5em;
	color: var(--clr-grey);
	font-weight: 400;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
	color: var(--clr-black);
	font-weight: 600;
}

.text.text-lg {
	font-size: 20px;
}

.text > * {
	margin-bottom: 25px;
}

.text p,
.text a {
	position: relative;
}

.text strong {
	color: var(--clr-black);
	font-weight: 600;
}

.text a:not(.btn) {
	color: var(--clr-secondary);
	white-space: nowrap;
}

.text a:not(.btn):before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: auto;
	height: 1px;
	width: 100%;
	background: var(--clr-secondary);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.text ul li,
.text ol li {
	position: relative;
	padding-left: 25px;
	color: inherit;
	font-size: inherit;
	margin-bottom: 15px;
}

.text ul li:last-child,
.text ol li:last-child {
	margin-bottom: 0;
}

.text ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--clr-secondary);
}

.text ol {
	counter-reset: number;
}

.text ol li:before {
	counter-increment: number;
	content: counter(number) '.';
	color: var(--clr-secondary);
	font-size: inherit;
	line-height: inherit;
	font-weight: 600;
	position: absolute;
	top: 0;
	left: 0;
}

.text figure.aligncenter {
	text-align: center;
}

.text figure.alignright {
	text-align: right;
}

.text figure img {
	margin: 0;
	width: auto;
}

.text img {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	border-radius: 15px;
}

.text iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 632px;
	max-height: calc(56.3vw - 30px);
	border: 0;
	border-radius: 15px;
}

.text > .simple-slider .swiper-button-prev,
.text > .simple-slider .swiper-button-next {
	display: none;
}

.text > .simple-slider img {
	margin: 0 !important;
}

.text blockquote {
	position: relative;
	color: var(--clr-black);
	font-size: 125%;
	line-height: inherit;
	font-weight: 600;
	text-align: center;
	padding: 35px 50px;
	background: var(--clr-white);
	border-radius: 16px;
	border: 1px solid #d1d9ce;
	-webkit-box-shadow: 20px 20px 0px #f2faf2;
	box-shadow: 20px 20px 0px #f2faf2;
}

.text blockquote::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: -60px;
	left: -105px;
	width: 180px;
	height: 180px;
	background-image: url(../img/icons/quote.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.text > .simple-slider,
.text img,
.text blockquote,
.text iframe,
.text figure {
	margin-bottom: 30px;
}

.text > *:last-child {
	margin-bottom: 0;
}

@media (min-width: 1200px) {
	.text a:not(.btn):hover:before {
		width: 0;
		left: auto;
		right: 0;
	}
}

@media (max-width: 1400px) {
	.text.text-lg {
		font-size: 18px;
	}
	.text > * {
		margin-bottom: 20px;
	}
	.text iframe {
		height: 412px;
	}
	.text > .simple-slider,
	.text img,
	.text blockquote,
	.text iframe,
	.text figure {
		margin-bottom: 25px;
	}
	.text blockquote {
		padding: 25px 30px;
	}
	.text blockquote::before {
		top: -50px;
		left: -80px;
		width: 140px;
		height: 140px;
	}
}

@media (max-width: 767px) {
	.text.text-lg {
		font-size: 16px;
	}
	.text {
		font-size: 14px;
	}
	.text > * {
		margin-bottom: 10px;
	}
	.text ul li,
	.text ol li {
		padding-left: 15px;
		margin-bottom: 5px;
	}
	.text ul li:before {
		top: 9px;
		width: 6px;
		height: 6px;
	}
	.text iframe {
		height: 412px;
	}
	.text > .simple-slider,
	.text img,
	.text blockquote,
	.text iframe,
	.text figure {
		margin-bottom: 15px;
	}
	.text blockquote {
		font-size: 16px;
		padding: 10px 15px;
		-webkit-box-shadow: 5px 10px 0px #f2faf2;
		box-shadow: 5px 10px 0px #f2faf2;
	}
	.text blockquote::before {
		display: none;
	}
}

/*------------------------------------------*/
/* HEADER */
/*------------------------------------------*/
header {
	height: 194px;
}
header.no-poster {
	height: 156px;
}
.header-wrapper {
	position: fixed;
	z-index: 110;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.header-poster {
	background: -o-linear-gradient(359.99deg, #009246 0%, #11ab1b 100%);
	background: linear-gradient(90.01deg, #009246 0%, #11ab1b 100%);
	text-align: center;
	height: 38px;
}

.header-poster-inner {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 12px;
	height: inherit;
	color: var(--clr-white);
	font-size: 16px;
	line-height: 1.1em;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.header-poster-inner > * {
	margin-right: 15px;
}

.header-poster-inner > *:last-child {
	margin-right: 0;
}

.header-poster-inner img {
	max-width: 30px;
	max-height: 30px;
}

.header-poster-inner p {
	opacity: 0.8;
}

.header-poster-inner b {
	font-weight: 600;
}

.header-top {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1700px;
	padding: 0 170px 0 30px;
	margin: 0 auto;
	height: 62px;
	background: var(--clr-white);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.header-top::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 100%;
	width: 200%;
	background: var(--clr-white);
}

.header-phone {
	margin-right: 60px;
}

.header-phone a {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--clr-secondary);
}

.header-phone p {
	font-size: 14px;
	line-height: 1.4em;
	color: var(--clr-grey);
}

.header-phone b {
	color: var(--clr-black);
}

.header-links {
	margin-right: auto;
}

.header-links ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-links li {
	margin-right: 45px;
}

.header-links li:last-child {
	margin-right: 0;
}

.header-links a {
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 400;
	color: var(--clr-black);
}

.header-info {
	font-size: 14px;
	margin-right: 60px;
}

.header-info > * {
	display: inline-block;
	vertical-align: middle;
}

.header-info b {
	color: var(--clr-primary);
	font-weight: 600;
}

.user-c-wrapper {
	position: absolute;
	z-index: 10;
	top: -11px;
	right: 30px;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.user-fav {
	position: relative;
	width: 20px;
	height: 20px;
	margin-right: 30px;
}

.user-fav svg {
	width: 100%;
	stroke: var(--clr-black);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.user-fav i {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	width: 24px;
	text-align: center;
	position: absolute;
	left: 14px;
	top: -12px;
	z-index: 1;
	color: var(--clr-white);
}

.user-fav i::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background: var(--clr-secondary);
}

.user-cabinet {
	position: relative;
}

.user-cabinet.open .user-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}

.user-c-btn {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 15px;
	font-size: 14px;
	line-height: 1em;
	border-radius: 12px;
	color: var(--clr-white);
	background: var(--clr-secondary);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.user-c-btn svg {
	width: 20px;
	height: 20px;
	width: 100%;
	stroke: var(--clr-white);
}

.user-c-btn b {
	margin-left: 10px;
}

.user-menu {
	position: absolute;
	z-index: 5;
	right: 0;
	top: 100%;
	width: 256px;
	padding: 15px;
	background: var(--clr-white);
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.user-menu::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
	height: 10px;
}

.user-menu::after {
	content: '';
	position: absolute;
	top: -7px;
	right: 40px;
	width: 0;
	height: 0;
	border: 0 solid transparent;
	border-right-width: 7px;
	border-left-width: 7px;
	border-bottom: 7px solid var(--clr-white);
}

.user-name {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--clr-black);
}

.user-menu-list {
	margin: 15px 0;
	padding: 15px 0;
	border-top: 1px solid #d1d9ce;
	border-bottom: 1px solid #d1d9ce;
}

.user-menu-list li + li {
	margin-top: 15px;
}

.user-menu-list a {
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
}

.user-menu-list a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 2px;
	width: 8px;
	height: 8px;
	border-right: 1px solid var(--clr-black);
	border-bottom: 1px solid var(--clr-black);
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.exit a {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--clr-black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.exit a svg {
	width: 16px;
	height: 16px;
}

.exit a svg path {
	fill: var(--clr-black);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.header-bottom {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1700px;
	padding: 0 30px;
	margin: 0 auto;
	background: var(--clr-third);
	border-radius: 16px;
	height: 94px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.header-logo {
	display: block;
	margin-right: 30px;
}

.header-logo img {
	display: block;
	max-width: 270px;
	max-height: 64px;
}

.menu-list {
	height: inherit;
	flex: 1;
}

.menu-list ul {
	height: inherit;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.menu-list li {
	margin-right: 45px;
	height: 100%;
	flex: 1 1 130px;
	text-align: center;
}

.menu-list li:last-child {
	margin-right: 0;
}

.menu-list a {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--clr-black);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.menu-list a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: var(--clr-primary);
	width: 0;
	height: 3px;
	border-radius: 3px 3px 0px 0px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.menu-list a img {
	width: 30px;
	height: 30px;
	margin-bottom: 7px;
}

.menu-list li.active a {
	color: var(--clr-primary);
}

.menu-list li.active a::before {
	width: 100%;
}

.mobile-menu,
.hamburger {
	display: none;
}

.header-cart {
	position: relative;
	min-width: 130px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.header-cart div:first-child {
	margin-right: 5px;
	width: 30px;
	height: 30px;
}

.header-cart svg {
	width: 30px;
	height: 30px;
}

.header-cart p {
	font-size: 16px;
	margin-top: 3px;
	line-height: 1em;
	color: var(--clr-black);
}

.header-cart i {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	width: 24px;
	text-align: center;
	position: absolute;
	left: 14px;
	top: -12px;
	z-index: 1;
	color: var(--clr-white);
}

.header-cart i::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background: var(--clr-secondary);
}

.scrolled .header-wrapper {
	-webkit-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	transform: translateY(-100px);
}
.no-poster.scrolled .header-wrapper {
	-webkit-transform: translateY(-62px);
	-ms-transform: translateY(-62px);
	transform: translateY(-62px);
}

.scrolled .header-bottom {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.tooltip {
	position: absolute;
	z-index: 5;
	background: var(--clr-white);
	border-radius: 12px;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
	padding: 15px 25px;
	text-align: center;
	left: 50%;
	top: 100%;
	width: 256px;
	padding: 15px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(50px);
	-ms-transform: translateX(-50%) translateY(50px);
	transform: translateX(-50%) translateY(50px);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.tooltip::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
	height: 10px;
}

.tooltip::after {
	content: '';
	position: absolute;
	top: -7px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border: 0 solid transparent;
	border-right-width: 7px;
	border-left-width: 7px;
	border-bottom: 7px solid var(--clr-white);
}

.header-cart .tooltip {
	left: 15px;
}

@media (min-width: 1200px) {
	a.header-poster-inner:hover {
		opacity: 0.7;
	}
	.header-phone a:hover {
		color: var(--clr-primary);
	}
	.menu-list a:hover {
		color: var(--clr-primary);
	}
	.menu-list a:hover::before {
		width: 100%;
	}
	.user-cabinet a:hover {
		color: var(--clr-primary);
	}
	.user-cabinet a:hover::before {
		border-color: var(--clr-primary);
	}
	.exit a:hover {
		color: var(--clr-primary);
	}
	.exit a:hover path {
		fill: var(--clr-primary);
	}
	.header-links a:hover,
	.header-menu a:hover {
		color: var(--clr-primary);
	}
	.user-fav:hover svg {
		stroke: var(--clr-primary);
	}
	.user-fav.empty:hover .tooltip,
	.header-cart.empty:hover .tooltip {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateX(-50%) translateY(10px);
		-ms-transform: translateX(-50%) translateY(10px);
		transform: translateX(-50%) translateY(10px);
	}
	.user-c-btn:hover {
		background: var(--clr-primary);
	}
	.header-mobile {
		display: none;
	}
}

@media (max-width: 1730px) {
	header {
		height: 158px;
	}
	header.no-poster {
		height: 124px;
	}
	.header-poster {
		height: 34px;
	}
	.header-poster-inner > * {
		margin-right: 10px;
	}
	.header-poster-inner img {
		max-width: 26px;
		max-height: 26px;
	}
	.header-top {
		padding: 0 150px 0 15px;
		height: 44px;
	}
	.user-c-wrapper {
		top: -5px;
		right: 15px;
	}
	.header-phone {
		margin-right: 30px;
	}
	.header-phone a {
		font-size: 16px;
	}
	.header-phone p {
		font-size: 12px;
	}
	.header-links li {
		margin-right: 25px;
	}
	.header-info {
		margin-right: 30px;
	}
	.user-fav {
		width: 18px;
		height: 18px;
		margin-right: 25px;
	}
	.user-fav i {
		font-size: 12px;
		line-height: 22px;
		width: 22px;
		left: 10px;
		top: -10px;
	}
	.user-fav i::before {
		width: 22px;
		height: 22px;
	}
	.user-c-btn {
		padding: 8px 12px;
	}
	.user-c-btn svg {
		width: 18px;
		height: 18px;
	}
	.user-c-btn b {
		margin-left: 5px;
	}
	.header-bottom {
		padding: 0 15px;
		height: 80px;
	}
	.header-logo img {
		max-width: 220px;
		max-height: 50px;
	}
	.menu-list li {
		margin-right: 25px;
	}
	.menu-list a {
		font-size: 14px;
	}
	.menu-list a img {
		width: 24px;
		height: 24px;
		margin-bottom: 5px;
	}
	.header-cart div:first-child {
		width: 28px;
		height: 28px;
	}
	.header-cart svg {
		width: 28px;
		height: 28px;
	}
	.header-cart p {
		font-size: 14px;
	}
	.header-cart i {
		font-size: 12px;
		line-height: 22px;
		width: 22px;
		left: 12px;
		top: -8px;
	}
	.header-cart i::before {
		width: 22px;
		height: 22px;
	}
	.scrolled .header-wrapper {
		-webkit-transform: translateY(-78px);
		-ms-transform: translateY(-78px);
		transform: translateY(-78px);
	}
	.no-poster.scrolled .header-wrapper {
		-webkit-transform: translateY(-58px);
		-ms-transform: translateY(-58px);
		transform: translateY(-58px);
	}
}

@media (max-width: 1400px) {
	header {
		height: 136px;
	}
	header.no-poster {
		height: 106px;
	}
	.header-poster {
		height: 30px;
	}
	.header-poster-inner {
		font-size: 14px;
	}
	.header-poster-inner > * {
		margin-right: 5px;
	}
	.header-poster-inner img {
		max-width: 22px;
		max-height: 22px;
	}
	.header-top {
		padding: 0 135px 0 15px;
		height: 40px;
	}
	.user-c-wrapper {
		top: -3px;
	}
	.header-phone {
		margin-right: 20px;
	}
	.header-phone a {
		line-height: 1.2em;
	}
	.header-links li {
		margin-right: 15px;
	}
	.header-info {
		font-size: 12px;
		margin-right: 20px;
	}
	.user-c-btn {
		padding: 8px 12px;
		font-size: 12px;
	}
	.user-c-btn svg {
		width: 16px;
		height: 16px;
	}
	.user-menu {
		width: 220px;
		padding: 10px;
	}
	.user-name {
		font-size: 14px;
	}
	.user-menu-list {
		margin: 10px 0;
		padding: 10px 0;
	}
	.user-menu-list li + li {
		margin-top: 10px;
	}
	.user-menu-list a {
		font-size: 14px;
	}
	.user-menu-list a::before {
		width: 7px;
		height: 7px;
	}
	.exit a {
		font-size: 14px;
	}
	.exit a svg {
		width: 14px;
		height: 14px;
	}
	.header-bottom {
		padding: 0 15px;
		height: 66px;
	}
	.header-logo img {
		max-width: 180px;
		max-height: 42px;
	}
	.menu-list li {
		margin-right: 10px;
	}
	.menu-list a {
		font-size: 12px;
	}
	.menu-list a img {
		width: 20px;
		height: 20px;
		margin-bottom: 0;
	}
	.scrolled .header-wrapper {
		-webkit-transform: translateY(-70px);
		-ms-transform: translateY(-70px);
		transform: translateY(-70px);
	}
	.no-poster.scrolled .header-wrapper {
		-webkit-transform: translateY(-40px);
		-ms-transform: translateY(-40px);
		transform: translateY(-40px);
	}
}

@media (max-width: 1199px) {
	header {
		height: 96px;
	}
	header.no-poster {
		height: 66px;
	}
	.hamburger {
		padding: 0 0;
		display: inline-block;
		cursor: pointer;
		-webkit-transition-property: opacity, -webkit-filter;
		transition-property: opacity, -webkit-filter;
		-o-transition-property: opacity, filter;
		transition-property: opacity, filter;
		transition-property: opacity, filter, -webkit-filter;
		-webkit-transition-duration: 0.15s;
		-o-transition-duration: 0.15s;
		transition-duration: 0.15s;
		-webkit-transition-timing-function: linear;
		-o-transition-timing-function: linear;
		transition-timing-function: linear;
		font: inherit;
		color: inherit;
		text-transform: none;
		background-color: transparent;
		border: 0;
		margin: 0;
		overflow: visible;
	}
	.hamburger:hover {
		opacity: 1;
	}
	.hamburger.is-active:hover {
		opacity: 1;
	}
	.hamburger.is-active .hamburger-inner,
	.hamburger.is-active .hamburger-inner::before,
	.hamburger.is-active .hamburger-inner::after {
		background-color: var(--clr-black);
	}
	.hamburger-box {
		width: 25px;
		height: 16px;
		display: inline-block;
		position: relative;
	}
	.hamburger-inner {
		display: block;
		top: 50%;
		margin-top: -1px;
	}
	.hamburger-inner,
	.hamburger-inner::before,
	.hamburger-inner::after {
		width: 25px;
		height: 2px;
		background-color: var(--clr-black);
		border-radius: 5px;
		position: absolute;
		-webkit-transition-property: -webkit-transform;
		transition-property: -webkit-transform;
		-o-transition-property: transform;
		transition-property: transform;
		transition-property: transform, -webkit-transform;
		-webkit-transition-duration: 0.15s;
		-o-transition-duration: 0.15s;
		transition-duration: 0.15s;
		-webkit-transition-timing-function: ease;
		-o-transition-timing-function: ease;
		transition-timing-function: ease;
	}
	.hamburger-inner::before,
	.hamburger-inner::after {
		content: '';
		display: block;
	}
	.hamburger-inner::before {
		top: -7px;
	}
	.hamburger-inner::after {
		bottom: -7px;
	}
	/* Elastic Reverse */
	.hamburger--elastic-r .hamburger-inner {
		top: 1px;
		-webkit-transition-duration: 0.275s;
		-o-transition-duration: 0.275s;
		transition-duration: 0.275s;
		-webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
		-o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
		transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}
	.hamburger--elastic-r .hamburger-inner::before {
		top: 7px;
		-webkit-transition: opacity 0.125s 0.275s ease;
		-o-transition: opacity 0.125s 0.275s ease;
		transition: opacity 0.125s 0.275s ease;
	}
	.hamburger--elastic-r .hamburger-inner::after {
		top: 14px;
		-webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		-o-transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55),
			-webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}
	.hamburger--elastic-r.is-active .hamburger-inner {
		-webkit-transform: translate3d(0, 7px, 0) rotate(-135deg);
		transform: translate3d(0, 7px, 0) rotate(-135deg);
		-webkit-transition-delay: 0.075s;
		-o-transition-delay: 0.075s;
		transition-delay: 0.075s;
	}
	.hamburger--elastic-r.is-active .hamburger-inner::before {
		-webkit-transition-delay: 0s;
		-o-transition-delay: 0s;
		transition-delay: 0s;
		opacity: 0;
	}
	.hamburger--elastic-r.is-active .hamburger-inner::after {
		-webkit-transform: translate3d(0, -14px, 0) rotate(270deg);
		transform: translate3d(0, -14px, 0) rotate(270deg);
		-webkit-transition-delay: 0.075s;
		-o-transition-delay: 0.075s;
		transition-delay: 0.075s;
	}
	.header-poster {
		position: relative;
		z-index: 111;
	}
	.hamburger {
		margin: 0 0 0 20px;
	}
	.hamburger-box {
		margin-top: 6px;
	}
	.header-cart {
		min-width: auto;
	}
	.header-cart p {
		display: none;
	}
	.header-poster-inner p {
		margin: 0;
	}
	.header-poster-inner img {
		display: none;
	}
	.header-info {
		font-size: 14px;
		margin: 15px 0;
		order: -1;
	}
	.header-logo {
		position: relative;
		margin-right: auto;
	}
	.header-logo img {
		max-width: 140px;
		max-height: 34px;
	}
	.scrolled .header-wrapper {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	.no-poster.scrolled .header-wrapper {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.scrolled .header-top {
		height: calc(100vh + 30px);
	}
	.header-top {
		position: fixed;
		z-index: 110;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100vh;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: var(--transition);
		-o-transition: var(--transition);
		transition: var(--transition);
		background: var(--clr-white);
		padding: 108px 12px 12px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		justify-items: center;
		display: -ms-grid;
		display: grid;
		-ms-grid-rows: -webkit-min-content -webkit-min-content auto;
		-ms-grid-rows: min-content min-content auto;
		grid-template-rows: -webkit-min-content -webkit-min-content auto;
		grid-template-rows: min-content min-content auto;
		gap: 15px;
	}
	.header-top::before {
		top: 108px;
		width: calc(100% - 24px);
		height: calc(100% - 120px);
		max-width: 936px;
		border-radius: 16px;
		background: var(--clr-third);
	}
	.no-poster .header-top {
		padding-top: 78px;
	}
	.no-poster .header-top::before {
		top: 78px;
		height: calc(100% - 90px);
	}
	.no-poster.scrolled .header-top {
		height: calc(100vh);
	}
	.user-c-wrapper {
		position: relative;
		top: 0;
		right: 0;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.user-cabinet {
		margin-right: 20px;
	}
	.user-c-btn {
		padding: 0;
		font-size: 0;
		background: transparent;
	}
	.user-c-btn svg {
		width: 26px;
		height: 26px;
	}
	.user-c-btn svg path {
		stroke: var(--clr-black);
	}
	.user-c-btn b {
		display: none;
	}
	.user-fav {
		width: 26px;
		height: 26px;
		margin-right: 20px;
	}
	.user-fav svg {
		width: 26px;
		height: 26px;
	}
	.header-bottom {
		position: relative;
		z-index: 110;
	}
	.header-bottom::before {
		content: '';
		position: absolute;
		z-index: 0;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--clr-third);
		border: inherit;
	}
	.menu-list {
		height: auto;
		width: 100%;
		position: absolute;
		z-index: -1;
		left: 0;
		bottom: 0;
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		background: var(--clr-white);
		-webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.06);
		box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.06);
		-webkit-transition: var(--transition);
		-o-transition: var(--transition);
		transition: var(--transition);
	}
	.menu-list ul {
		overflow-x: auto;
		height: 50px;
	}
	.menu-list ul::-webkit-scrollbar {
		width: 4px;
		height: 4px;
	}
	.menu-list ul:-webkit-scrollbar-track {
		background: var(--clr-white);
	}
	.menu-list ul::-webkit-scrollbar-thumb {
		border-radius: 4px;
		background: var(--clr-primary);
	}
	.menu-list li {
		margin: 0 12px !important;
		flex-basis: auto;
	}
	.menu-list a {
		width: auto;
		font-size: 14px;
		line-height: 1;
		white-space:nowrap;
	}
	.menu-list a img {
		display: none;
	}
	.menu-list a::before {
		display: none;
	}
	.show-menu-links .menu-list {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
	}
	.header-links {
		height: 100%;
		margin: 0;
	}
	.header-links ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.header-links li {
		margin-right: 0;
		margin-top: 15px;
	}
	.header-links li:first-child {
		margin-top: 0;
	}
	.header-links a {
		font-size: 18px;
	}
	.header-phone {
		margin-right: 0;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		margin: 15px 0;
	}
	.header-phone a {
		font-size: 18px;
		line-height: 1.5em;
	}
	.header-phone p {
		font-size: 14px;
	}
	.open-menu .header-top {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	.open-menu .menu-list {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

@media (max-width: 991px) {
	.header-mobile .container {
		max-width: 696px;
	}
}

@media (max-width: 767px) {
	.header-poster-inner p {
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.header-bottom {
		border-radius: 0 0 16px 16px;
	}
	.scrolled .header-mobile {
		padding: 81px 12px 15px;
	}
	.header-mobile .container {
		max-width: 516px;
	}
	.user-menu::after {
		right: 10px;
	}
}

@media (max-width: 575px) {
	.header-wrapper .container {
		padding: 0;
	}
	.show-menu-links .menu-list {
		border-radius: 0;
	}
}

@media (max-width: 374px) {
	.header-bottom {
		padding: 0 10px;
	}
	.menu-list ul {
		height: 40px;
	}
	.menu-list a {
		font-size: 12px;
	}
	.header-logo img {
		max-width: 120px;
		max-height: 28px;
	}
	.user-fav {
		width: 22px;
		height: 22px;
	}
	.user-fav svg {
		width: 22px;
		height: 22px;
	}
	.user-c-btn svg {
		width: 22px;
		height: 22px;
	}
	.header-cart svg {
		width: 22px;
		height: 22px;
	}
}

/*------------------------------------------*/
/* - BANNER */
/*------------------------------------------*/
.banner-slider .swiper-slide-active .banner-slide {
	opacity: 1;
}

.banner-slider .swiper-container {
	overflow: visible;
}

.banner-slider .swiper-wrapper {
	position: relative;
}

.banner-controls {
	position: absolute;
	left: 90px;
	bottom: 140px;
	width: 300px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.banner-controls .swiper-button-prev,
.banner-controls .swiper-button-next {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	margin: 0;
	border-color: white;
}

.banner-controls .swiper-pagination {
	position: relative;
	bottom: 0;
}

.banner-controls .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.banner-controls .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 15px;
}

.site-ready .banner-controls {
	opacity: 1;
}

.banner-slide {
	height: 760px;
	opacity: 0;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.banner-slide .container {
	height: 100%;
}

.banner-slide .row {
	position: relative;
	height: 100%;
}

.banner-slider .swiper-entry::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg-slide.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
}

.banner-content {
	position: relative;
	max-width: 580px;
	margin-left: 100px;
	padding: 50px 0 150px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.banner-content > * + * {
	margin-top: 25px;
}

.banner-decor {
	position: absolute;
	top: -90px;
	left: -150px;
	width: 380px;
}

.banner-decor img {
	display: block;
	width: 100%;
	height: 100%;
}

.banner-imgs {
	position: relative;
	padding-top: 78%;
	width: 105%;
	max-width: 1030px;
	max-height: 802px;
}

.banner-imgs img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: 1030px;
	max-height: 802px;
	width: 100%;
}

@media (max-width: 1730px) {
	.banner-slide {
		height: 585px;
	}
	.banner-controls {
		left: 40px;
		bottom: 70px;
		width: 260px;
	}
	.banner-controls .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
	.banner-controls
		.swiper-pagination-horizontal.swiper-pagination-bullets
		.swiper-pagination-bullet {
		margin: 0 10px;
	}
	.banner-content {
		margin-left: 50px;
	}
	.banner-content > * + * {
		margin-top: 20px;
	}
	.banner-decor {
		top: -50px;
		left: -100px;
		width: 300px;
	}
}

@media (max-width: 1400px) {
	.banner-slide {
		height: 505px;
	}
	.banner-controls {
		left: 10px;
		width: 240px;
	}
	.banner-content {
		margin-left: 15px;
	}
	.banner-content > * + * {
		margin-top: 15px;
	}
	.banner-decor {
		top: -20px;
		left: -70px;
		width: 200px;
	}
}

@media (max-width: 1199px) {
	.banner-slide {
		height: 425px;
	}
	.banner-controls {
		left: 0;
		bottom: 60px;
		width: 240px;
	}
	.banner-content {
		padding: 20px 0 50px;
	}
	.banner-content > * + * {
		margin-top: 10px;
	}
	.banner-decor {
		display: none;
	}
	.banner-imgs {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 991px) {
	.banner-slide {
		height: auto;
	}
	.banner-slider .swiper-entry::before {
		display: none;
	}
	.banner-slider .row {
		margin: 0;
	}
	.banner-slider .banner-slide {
		background: var(--clr-third);
		border-radius: 16px;
	}
	.banner-controls {
		bottom: 15px;
		width: 100%;
	}
	.banner-controls .swiper-button-prev,
	.banner-controls .swiper-button-next {
		display: none;
	}
	.banner-content {
		padding: 10px 0 40px;
		margin-left: 0;
	}
	.banner-content > * + * {
		margin-top: 5px;
	}
	.banner-content .btn {
		margin-top: 10px;
	}
	.banner-imgs {
		margin: 0 auto;
		max-width: 70%;
		padding: 0;
		max-height: none;
	}
	.banner-imgs img {
		position: relative;
	}
}

.bg {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.bg.mobile {
	display: none;
}

.opacity:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 0, 0, 0)),
		to(rgba(0, 0, 0, 0.6))
	);
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	border-radius: 16px;
}

.parallax-bg {
	overflow-y: hidden;
}

.parallax-bg .bg {
	position: absolute;
	width: 100%;
	height: 105%;
	top: -3%;
}

.banner-align {
	display: table-cell;
	vertical-align: bottom;
	position: relative;
	overflow: hidden;
	width: 10000px;
	padding: 30px 0;
	height: 500px;
	z-index: 1;
	border-radius: 16px;
}

.banner-info {
	position: relative;
	z-index: 10;
}

@media (min-width: 992px) {
	.banner-info > * {
		color: var(--clr-white);
	}
}

@media (max-width: 1730px) {
	.banner-align {
		height: 400px;
	}
}

@media (max-width: 1400px) {
	.banner-align {
		height: 320px;
	}
}

@media (max-width: 991px) {
	.banner-align {
		height: auto;
		padding: 15px 0;
	}
	.bg.desktop,
	.opacity {
		display: none;
	}
	.bg.mobile {
		display: block;
		position: relative;
		padding-top: 57%;
		border-radius: 16px;
	}
	.banner-info {
		margin-top: 10px;
	}
}

/*------------------------------------------*/
/* BUTTONS */
/*------------------------------------------*/
.btn {
	display: inline-block;
	vertical-align: bottom;
	text-align: center;
	position: relative;
	cursor: pointer;
	text-decoration: none;
	border: none;
	background: none;
	font-size: 14px;
	line-height: 1.45em;
	font-weight: 600;
	padding: 14px 30px;
	text-transform: uppercase;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.btn-primary {
	color: var(--clr-white);
	background: var(--clr-secondary);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 12px;
}

.btn-primary b {
	display: inline-block;
}

.btn-primary:not(.order-btn) i {
	display: inline-block;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	border: 2px solid var(--clr-white);
	margin-left: 15px;
}

.btn-primary:not(.order-btn) i::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 6px;
	height: 6px;
	margin-left: -1px;
	border-right: 2px solid var(--clr-white);
	border-bottom: 2px solid var(--clr-white);
}

.btn-secondary {
	color: var(--clr-secondary);
	background: var(--clr-white);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 12px;
	border: 2px solid var(--clr-secondary);
	font-size: 12px;
	padding: 8px 30px;
}

.btn-secondary svg path {
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.btn-secondary b {
	display: inline-block;
}

.btn svg {
	margin-left: 15px;
	width: 20px;
	height: 20px;
	display: block;
}

.btn-block {
	width: 100%;
}

.btn.disabled {
	pointer-events: none;
	background: #d1d9ce;
}

.btn.disabled:not(.order-btn) i {
	border: 2px solid #d1d9ce;
}

.btn.disabled:not(.order-btn) i::before {
	border-color: #d1d9ce;
}

.btn-close {
	position: relative;
	cursor: pointer;
	width: 24px;
	height: 24px;
}

.btn-close:before,
.btn-close:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 80%;
	height: 2px;
	background: var(--clr-black);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.btn-close:after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.btn-link {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.btn-link span {
	color: var(--clr-secondary);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.btn-link i {
	position: relative;
	display: inline-block;
	margin-left: 10px;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	border: 2px solid var(--clr-secondary);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.btn-link i::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 5px;
	height: 5px;
	margin-left: -1px;
	border-right: 2px solid var(--clr-secondary);
	border-bottom: 2px solid var(--clr-secondary);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

@media (min-width: 1200px) {
	.btn-primary:not(.disabled):hover {
		background: var(--clr-primary);
	}
	.btn-secondary:not(.disabled):hover {
		background: var(--clr-secondary);
		color: var(--clr-white);
	}
	.btn-secondary:not(.disabled):hover svg path {
		stroke: var(--clr-white);
	}
	.btn-close:hover:before,
	.btn-close:hover:after {
		background: var(--clr-secondary);
	}
	.btn-link:hover span {
		color: var(--clr-primary);
	}
	.btn-link:hover i {
		border-color: var(--clr-primary);
	}
	.btn-link:hover i::before {
		border-color: var(--clr-primary);
	}
}

@media (max-width: 1400px) {
	.btn {
		font-size: 12px;
		padding: 12px 25px;
	}
	.btn-primary i {
		width: 18px;
		height: 18px;
		margin-left: 10px;
	}
	.btn-primary i::before {
		width: 5px;
		height: 5px;
	}
	.btn-primary svg {
		margin-left: 10px;
		width: 18px;
		height: 18px;
	}
	.btn-secondary {
		font-size: 12px;
		padding: 8px 20px;
	}
	.btn-secondary svg {
		width: 18px;
		height: 18px;
		margin-left: 10px;
	}
	.btn-link {
		font-size: 12px;
	}
	.btn-link i {
		width: 14px;
		height: 14px;
		margin-left: 5px;
	}
	.btn-link i::before {
		width: 4px;
		height: 4px;
	}
}

@media (max-width: 767px) {
	.btn {
		padding: 10px 20px;
	}
}

/*------------------------------------------*/
/* PRODUCTS BOTTOM STYLE */
/*------------------------------------------*/
.filters-list {
	margin: 30px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.filters-list li {
	position: relative;
	margin-right: 5px;
	cursor: pointer;
	border: 1px solid #d1d9ce;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 400;
	padding: 5px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.filters-list li b {
	color: var(--clr-black);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.filters-list li i {
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.filters-list li i img {
	display: block;
	width: 100%;
}

.filters-list li:last-child {
	margin-right: 0;
}

.filters-list li:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	margin: -1px;
	border: 2px solid var(--clr-primary);
	border-radius: inherit;
	opacity: 0;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.filters-list li.active:before {
	opacity: 1;
}

@media (min-width: 1200px) {
	.filters-list li:not(.active):hover {
		border-color: var(--clr-primary);
	}
	.filters-list li:not(.active):hover b {
		color: var(--clr-primary);
	}
}

@media (max-width: 1400px) {
	.filters-list {
		margin: 20px 0;
	}
}

@media (max-width: 991px) {
	.filters-list {
		position: relative;
		white-space: nowrap;
		overflow-x: auto;
		padding-bottom: 5px;
		margin: 10px 0;
	}
	.filters-list::-webkit-scrollbar {
		width: 4px;
		height: 4px;
	}
	.filters-list:-webkit-scrollbar-track {
		background: var(--clr-white);
	}
	.filters-list::-webkit-scrollbar-thumb {
		border-radius: 4px;
		background: var(--clr-primary);
	}
}

@media (max-width: 575px) {
	.filters-list {
		padding: 0 15px 5px;
	}
	.p-0-mobile {
		padding: 0 !important;
	}
}

.sorting-select-wrapp {
	margin: 30px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.sorting-select-wrapp span {
	margin-right: 15px;
	font-size: 16px;
	color: var(--clr-grey);
}

.choice {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	z-index: 10;
	width: 250px;
}

@media (max-width: 1400px) {
	.sorting-select-wrapp {
		margin: 20px 0;
	}
	.sorting-select-wrapp span {
		margin-right: 10px;
		font-size: 14px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	.choice {
		width: 200px;
	}
}

@media (max-width: 991px) {
	.sorting-select-wrapp {
		margin: 0 0 15px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

@media (max-width: 575px) {
	.choice {
		width: calc(100% - 91px);
	}
}

.thumb-input-number {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	color: var(--clr-black);
	font-size: 16px;
	line-height: 1;
	border: 1px solid #d1d9ce;
	border-radius: 12px;
}

.thumb-input-number input {
	width: 46px;
	height: 28px;
	font-weight: 400;
	text-align: center;
	border-left: 1px solid #d1d9ce;
	border-right: 1px solid #d1d9ce;
}

.thumb-input-number button {
	position: relative;
	width: 46px;
	height: 46px;
	cursor: pointer;
	background: none;
	font-size: 0;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.thumb-input-number button.decrement::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 10px;
	height: 2px;
	background: #636662;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.thumb-input-number button.increment::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 10px;
	height: 2px;
	background: #636662;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.thumb-input-number button.increment::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 2px;
	height: 10px;
	background: #636662;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

@media (min-width: 1200px) {
	.thumb-input-number button:hover {
		background-color: var(--clr-third);
	}
	.thumb-input-number button:hover::before,
	.thumb-input-number button:hover::after {
		background: var(--clr-primary);
	}
}

@media (max-width: 1400px) {
	.thumb-input-number input {
		width: 42px;
		height: 26px;
	}
	.thumb-input-number button {
		width: 42px;
		height: 40px;
	}
}

@media (max-width: 767px) {
	.thumb-input-number {
		font-size: 14px;
	}
	.thumb-input-number input {
		width: 36px;
		height: 24px;
	}
	.thumb-input-number button {
		width: 36px;
		height: 34px;
	}
}

.fill-anime {
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.fav-btn {
	width: 20px;
	height: 20px;
	line-height: 30px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
}

.fav-btn svg {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.fav-btn .fill-anime {
	fill: transparent;
	stroke: var(--clr-secondary);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.fav-btn.active .fill-anime {
	fill: var(--clr-secondary);
}

@media (min-width: 1200px) {
	.fav-btn:hover .fill-anime {
		fill: var(--clr-primary);
		stroke: var(--clr-primary);
	}
}

.btn-loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 !important;
}

.btn-loader-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: var(--clr-secondary);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.btn-loader-inner span {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #ffffff;
	margin: 0 3px;
	-webkit-animation: scale 1s infinite ease;
	animation: scale 1s infinite ease;
}

.btn-loader-inner span:nth-child(2) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

.btn-loader-inner span:nth-child(3) {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

.btn-loader-complete {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: var(--clr-secondary);
	background-image: url(../img/icons/icon-prod_check.svg);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

@-webkit-keyframes scale {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scale {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.products-wrapper {
	position: relative;
}

.products-wrapper .decor-img {
	position: absolute;
	max-width: 200px;
	max-height: 200px;
}

.products-wrapper .decor-img.right {
	bottom: 40%;
	right: -140px;
}

.product-row {
	position: relative;
	z-index: 1;
	margin-bottom: -30px;
}

.product-row > [class*='col'] {
	margin-bottom: 30px;
}

.product {
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	padding: 0 20px 20px;
	border: 1px solid #d1d9ce;
	background: var(--clr-white);
	border-radius: 16px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.product::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	margin: -1px;
	border: 2px solid #d1d9ce;
	opacity: 0;
	border-radius: 16px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.product_image-wrap {
	position: relative;
}

.product_image {
	position: relative;
	display: block;
	padding-bottom: 75%;
	margin: 0 -20px 10px;
}

.product_image .img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.product_labels {
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.product_labels li {
	display: block;
	padding: 8px;
	margin-bottom: 5px;
	font-size: 12px;
	line-height: 1em;
	color: #fff;
	border-radius: 8px;
	text-transform: uppercase;
}

.product_labels li:last-child {
	margin-bottom: 0;
}

.product_top-right {
	top: 10px;
	right: -10px;
	position: absolute;
}

.product_top-right .fav-btn.btn-close {
	position: absolute;
	width: 0;
	right: 0;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background: var(--clr-secondary);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.product_top-right .fav-btn.btn-close::before,
.product_top-right .fav-btn.btn-close::after {
	background: var(--clr-white);
	width: 50%;
}

.product_title-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 5px;
}

.product_title {
	font-weight: 600;
	font-size: 20px;
	min-height: 2.6em;
	line-height: 1.3em;
}

.product_title a {
	position: relative;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 2.6em;
}

.product_title i {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 26px;
	height: 26px;
	border-radius: 100%;
	background: var(--clr-third);
	margin-left: 5px;
}

.product_title i img {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.product_desc {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 4.5em;
	color: var(--clr-grey);
	font-size: 16px;
	line-height: 1.5em;
	margin-bottom: 10px;
}

/* .product-row.products-has-descr .product_desc {min-height: 4.5em;} */
.product-row:not(.products-has-descr) .product_desc {
	min-height: auto;
}

.product_price-wrap {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 20px;
	line-height: 1em;
}

.product_price-old {
	position: relative;
	white-space: nowrap;
	font-size: 80%;
	margin-right: 10px;
	color: var(--clr-black);
	line-height: 1em;
}

.product_price-old::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	height: 100%;
	background: url(../img/icons/i-line.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.product_price {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	color: var(--clr-black);
	font-weight: 600;
	line-height: 1em;
}

.product_price-old.hidden {
	display: none;
}

.product_price-old:not(.hidden) + .product_price {
	color: var(--clr-secondary);
}

.product_size {
	display: inline-block;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 16px;
	line-height: 1em;
	margin: 5px auto 0 5px;
	color: var(--clr-grey);
}

.product_controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.btn-product {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	margin: 0 0 0 10px;
	border-radius: 12px;
	padding: 8px 15px;
	background: var(--clr-secondary);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.btn-product > span {
	margin-right: 10px;
	color: var(--clr-white);
}

.btn-product i {
	position: relative;
	width: 20px;
	height: 20px;
}

.btn-product i svg {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.btn-product.disabled {
	background: #d1d9ce;
	pointer-events: none;
}

.product.type-2 .product_image {
	padding-bottom: 75%;
	margin: 0 -20px 10px;
}

.product.type-2 .product_image img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.product_controls {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.product_controls .btn-product {
	margin: 10px 0 0;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (min-width: 1200px) {
	.product:hover::before {
		opacity: 1;
	}
	.product:hover a.product_image img {
		opacity: 0.8;
	}
	.product_title a:hover {
		color: var(--clr-primary);
	}
	.btn-product:not(.disabled):hover {
		background: var(--clr-primary);
	}
	.btn-product:not(.disabled):hover .btn-loader-inner,
	.btn-product:hover .btn-loader-complete {
		background-color: var(--clr-primary);
	}
	.product_top-right:hover .fav-btn.btn-close {
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 1730px) {
	.product-row {
		margin-bottom: -20px;
		--bs-gutter-x: 20px;
	}
	.product-row > [class*='col'] {
		margin-bottom: 20px;
	}
	.product {
		padding: 0 15px 15px;
	}
	.product_image {
		margin: 0 -15px;
	}
	.product_labels li {
		font-size: 10px;
	}
	.product_title {
		font-size: 18px;
	}
	.product_desc {
		font-size: 14px;
	}
	.product_price-wrap {
		font-size: 18px;
	}
	.product_price-old {
		margin-right: 5px;
	}
	.product_size {
		font-size: 14px;
	}
}

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

@media (max-width: 1199px) {
	.products-wrapper .decor-img {
		display: none;
	}
}

@media (max-width: 575px) {
	.product_title {
		min-height: unset;
	}
	.product_title a {
		display: inline-block;
		overflow: visible;
		max-height: auto;
	}
	.product_desc {
		display: inline-block;
		overflow: visible;
		min-height: auto;
	}
}

/*------------------------------------------*/
/* BENEFITS */
/*------------------------------------------*/
.b-shadow {
	-webkit-box-shadow: 20px 20px 0px #f2faf2;
	box-shadow: 20px 20px 0px #f2faf2;
}

.benefits-wrapper {
	position: relative;
	background: #ffffff;
	border: 1px solid #d1d9ce;
	border-radius: 25px;
	padding: 45px 60px;
}

.benefits-wrapper .decor-img {
	position: absolute;
	z-index: -1;
	max-width: 240px;
	max-height: 240px;
}

.benefits-wrapper .decor-img.left {
	top: -150px;
	left: -140px;
}

.benefits-row {
	--bs-gutter-x: 60px;
	margin-bottom: -60px;
}

.benefits-row > [class*='col'] {
	margin-bottom: 60px;
}

.benefits-item .title {
	line-height: 1.3em;
	margin-bottom: 5px;
}

.benefits-img {
	margin-bottom: 10px;
}

.benefits-img img {
	max-width: 60px;
	max-height: 60px;
	display: block;
}

.benefits-info {
	line-height: 1.3em;
	font-size: 18px;
	color: var(--clr-grey);
}

.benefits-item.type-2 {
	background: var(--clr-white);
	border: 1px solid #d1d9ce;
	-webkit-box-shadow: 20px 20px 0px #f2faf2;
	box-shadow: 20px 20px 0px #f2faf2;
	border-radius: 16px;
	padding: 30px 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.benefits-item.type-2 .title {
	margin-bottom: 0;
}

.benefits-item.type-2 .benefits-img {
	margin-bottom: 0;
	margin-right: 15px;
}

.benefits-item.type-2 .benefits-img img {
	max-width: 48px;
	max-height: 48px;
}

@media (max-width: 1730px) {
	.benefits-wrapper {
		padding: 30px;
	}
	.benefits-row {
		--bs-gutter-x: 30px;
		margin-bottom: -30px;
	}
	.benefits-row > [class*='col'] {
		margin-bottom: 30px;
	}
}

@media (max-width: 1400px) {
	.benefits-info {
		font-size: 16px;
	}
	.benefits-item.type-2 {
		padding: 15px 10px;
	}
	.benefits-item.type-2 .benefits-img {
		margin-right: 10px;
	}
	.benefits-item.type-2 .benefits-img img {
		max-width: 36px;
		max-height: 36px;
	}
}

@media (max-width: 1199px) {
	.benefits-wrapper .decor-img {
		display: none;
	}
}

@media (max-width: 767px) {
	.benefits-wrapper {
		padding: 0;
		border: none;
		border-radius: 0;
	}
	.benefits-item {
		border: 1px solid #d1d9ce;
		border-radius: 25px;
		padding: 15px 20px;
	}
	.b-shadow {
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.benefits-item.type-2 {
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}

/*------------------------------------------*/
/* G-block */
/*------------------------------------------*/
.g-block-row {
	--bs-gutter-x: 15px;
	margin-bottom: -15px;
}

.g-block-row > [class*='col'] {
	margin-bottom: 15px;
}

.g-block {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	background: #f5faf2;
	border-radius: 30px;
	padding-top: 64%;
}

.g-block-title {
	position: absolute;
	top: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	padding: 0 10px;
	text-align: center;
}

.g-block-img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.g-block-img img {
	display: block;
	margin: 0 auto;
	max-height: 60%;
	max-width: 70%;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

@media (min-width: 1200px) {
	.g-block:hover .g-block-img {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	.g-block:hover .g-block-img img {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@media (max-width: 767px) {
	.g-block-row {
		--bs-gutter-x: 12px;
		margin-bottom: -12px;
	}
	.g-block-row > [class*='col'] {
		margin-bottom: 12px;
	}
	.g-block {
		border-radius: 16px;
	}
	.g-block-title {
		top: 0;
		padding: 0 5px;
	}
}
