@font-face {
	font-family: Gilroy;
	font-display: swap;
	src: url(webfonts/Gilroy-Bold.woff2) format("woff2");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: Gilroy;
	font-display: swap;
	src: url(webfonts/Gilroy-Medium.woff2) format("woff2");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: Gilroy;
	font-display: swap;
	src: url(webfonts/Gilroy-Regular.woff2) format("woff2");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: Gilroy;
	font-display: swap;
	src: url(webfonts/Gilroy-Semibold.woff2) format("woff2");
	font-weight: 600;
	font-style: normal;
}

* {
	padding: 0;
	margin: 0;
	border: none;
}

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

a {
	text-decoration: none;
}

a,
a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

aside,
footer,
header,
main,
nav,
section {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

ul,
ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

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

address {
	font-style: normal;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: rgba(0, 0, 0, 0);
}

input::-ms-clear {
	display: none;
}

button,
input[type="submit"] {
	display: inline-block;
	box-shadow: none;
	background-color: rgba(0, 0, 0, 0);
	background: 0 0;
	cursor: pointer;
}

button:active,
button:focus,
input:active,
input:focus {
	outline: 0;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

:root {
	--general-color: rgba(53, 61, 61, 1);
	--yellow-bg: rgba(208, 249, 2, 1);
	--general-white: rgba(206, 210, 210, 1);
	--grey-bg: rgba(53, 61, 61, 1);
}

body,
html {
	height: 100%;
	font-family: sans-serif;
}

.wrapper {
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.wrapper-container {
	flex: 1 1 auto;
}

[class*="__container"] {
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 15px;
}

html {
	scroll-behavior: smooth;
}

.breadcrumbs {
	padding-top: 30px;
	padding-bottom: 40px;
}

.breadcrumbs__list {
	display: flex;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
	align-items: center;
	padding: 0;
	margin: 0;
}

.breadcrumbs__list #home-icon {
	width: 22px;
	height: 24px;
}

.breadcrumbs__item {
	padding: 0;
	margin: 0;
	line-height: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 16.8px;
}

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

.breadcrumbs .current {
	font-weight: 600;
}

.scroll-to-top {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 40px;
	height: 40px;
	display: none;
	justify-content: center;
	align-items: center;
	color: var(--yellow-bg);
	background-color: var(--general-color);
	font-size: 24px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease,
		-webkit-transform 0.3s ease;
	z-index: 999;
	opacity: 0;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
}

.scroll-to-top.show {
	display: flex;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.scroll-to-top svg {
	position: absolute;
	top: 13px;
	width: 24px;
	height: 24px;
}

.header {
	position: relative;
	background-color: var(--grey-bg);
	padding: 32px 0 20px 0;
	border-bottom: 4px solid #d0f902;
	z-index: 9999;
}

.header a,
.header p {
	color: var(--general-white);
	white-space: nowrap;
}

.header__blocks {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.header .logo {
	position: relative;
	min-width: 217px;
	width: 217px;
	max-width: 217px;
	height: 67px;
	min-height: 67px;
	/* background-color: #639 */
}

.header .logo::after {
	position: absolute;
	right: -30px;
	top: -30px;
	height: 130px;
	width: 100%;
	content: "";
	border-right: 4px solid #d0f902;
}

.header .logo::before {
	position: absolute;
	content: "";
	width: 25px;
	height: 25px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: #d0f902;
	right: -40.3px;
	bottom: -34px;
	z-index: 999;
}

.header__info {
	position: relative;
}

.header__top {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 40px;
	margin-bottom: 12px;
	/* margin-right: 35px; */
	font-weight: 400;
}

.header__top img {
	width: 18px;
	height: 18px;
	-o-object-fit: contain;
	object-fit: contain;
}

.header__top .mail a,
.header__top .number a {
	transition: all 0.1s ease-in;
	font-size: 18px;
}

.header__top .mail a:hover,
.header__top .number a:hover {
	color: #fff;
}

.header__below {
	position: relative;
	display: flex;
	align-items: center;
	gap: 45px;
	font-weight: 600;
}

.header__btn {
	position: relative;
	display: flex;
	width: 190px;
	min-width: 190px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	height: 35px;
	z-index: 99;
	background-color: var(--yellow-bg);
	clip-path: polygon(
		4% 0,
		96% 0,
		100% 20%,
		100% 80%,
		96% 100%,
		4% 100%,
		0 80%,
		0 20%
	);
	transition: all 0.1s ease-in-out;
	cursor: pointer;
}

.header__btn:hover {
	background-color: #e0ff46;
}

.header__btn p {
	color: var(--general-color);
}

.header__btn img {
	width: 21px;
	height: 21px;
	-o-object-fit: contain;
	object-fit: contain;
}

.header__btn-burger {
	position: relative;
	display: flex;
	width: 195px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	height: 35px;
	z-index: 99;
	background-color: var(--yellow-bg);
	display: none;
	clip-path: polygon(
		4% 0,
		96% 0,
		100% 20%,
		100% 80%,
		96% 100%,
		4% 100%,
		0 80%,
		0 20%
	);
}

.header__btn-burger p {
	color: var(--general-color);
}

.header__btn-burger img {
	width: 21px;
	height: 21px;
	-o-object-fit: contain;
	object-fit: contain;
}

.header__burger-menu {
	display: none;
}

.menu {
	position: relative;
	width: 100%;
}

.menu__list {
	position: relative;
	display: flex;
	align-items: center;
	gap: 120px;
	font-weight: 600;
	font-size: 17px;
}

.menu__link {
	transition: all 0.1s ease-in;
}

.menu__link.active {
	color: #fff;
}

.menu__link:hover {
	color: #fff;
}

#nav-icon3 {
	width: 25px;
	min-width: 25px;
	height: 20px;
	position: relative;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	z-index: 9999999999;
}

#nav-icon3::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 52%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background-color: rgba(0, 0, 0, 0);
	z-index: -1;
	transition: background-color 0.3s ease;
	clip-path: polygon(
		40% 0,
		60% 0,
		100% 40%,
		100% 60%,
		60% 100%,
		40% 100%,
		0 60%,
		0 40%
	);
}

#nav-icon3.open::before {
	background-color: var(--yellow-bg);
}

#nav-icon3 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--yellow-bg);
	opacity: 1;
	left: 0;
	transition: 0.25s ease-in-out;
	border-radius: 10px;
}

#nav-icon3 span:nth-child(1) {
	top: 0;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
	top: 8px;
}

#nav-icon3 span:nth-child(4) {
	top: 16px;
}

#nav-icon3.open span {
	background: var(--general-color);
	height: 3px;
	width: 75%;
	position: absolute;
	left: 15%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: all 0.3s ease-in-out;
}

#nav-icon3.open span:nth-child(1) {
	top: 0;
	width: 0%;
	left: 50%;
}

#nav-icon3.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
	top: 10px;
	width: 0%;
	left: 50%;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 99;
	display: none;
}

.overlay.active {
	display: block;
}

.no-scroll {
	overflow: hidden;
}

.footer {
	position: relative;
	padding-top: 15px;
	min-height: 400px;
	overflow: hidden;
}

.footer .bg1 {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 54%;
	background-color: var(--general-color);
	z-index: 1;
}

.footer .bg2 {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 46%;
	background-color: var(--yellow-bg);
	z-index: -1;
	overflow: hidden;
}

.footer::after {
	position: absolute;
	top: -10px;
	left: -14px;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--general-white);
	-webkit-transform: rotate(50deg);
	transform: rotate(50deg);
	z-index: 99;
}

.footer::before {
	position: absolute;
	top: -7px;
	right: -14px;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--general-white);
	-webkit-transform: rotate(50deg);
	transform: rotate(50deg);
	z-index: 99;
}

.footer .line-1 {
	position: absolute;
	left: 0;
	top: 0;
	height: 4px;
	width: 100%;
	background-color: var(--general-white);
	z-index: 99;
}

.footer .line-1::after {
	position: absolute;
	top: -9px;
	left: 53.4%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--general-white);
	-webkit-transform: rotate(48deg);
	transform: rotate(45deg);
	z-index: 99;
}

.footer .line-2 {
	position: relative;
}

.footer__blocks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 45px 0 60px 0;
}

.footer__blocks::before {
	position: absolute;
	left: 54%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
	width: 4px;
	content: "";
	background-color: var(--general-white);
	z-index: 999;
}

.footer__one {
	padding-top: 80px;
}

.footer__left {
	position: relative;
	z-index: 99;
	width: 600px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.footer__right {
	position: relative;
	z-index: 99;
	padding-top: 70px;
	padding-left: 80px;
	max-width: 500px;
	width: 100%;
}

.footer__right-info h2 {
	font-size: 18px;
}

.footer_info {
	font-size: 16px;
	font-weight: 400;
	line-height: 16.8px;
	color: var(--general-white);
	padding-top: 80px;
}

.footer_info h2 {
	color: var(--yellow-bg);
	padding-left: 30px;
	font-size: 18px;
}

.footer__descript {
	max-width: 260px;
	width: 100%;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 16.8px;
	color: var(--general-white);
}

.footer__descript span {
	font-size: 16px;
	font-weight: 700;
	line-height: 17.33px;
}

.footer .footer__block-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-point {
	display: flex;
	align-items: baseline;
	gap: 11px;
	padding: 0;
	text-align: left;
}

.footer .footer-point__grey {
	display: none;
}

.footer .footer-point__yellow {
	display: block;
}

.footer .number {
	display: flex;
	gap: 11px;
	align-items: center;
	font-weight: 400;
}

.footer .number a {
	color: var(--general-white);
	transition: all 0.1s ease-in-out;
}

.footer .number a:hover {
	color: #fff;
	font-weight: 600px;
}

.footer .mail {
	display: flex;
	gap: 11px;
	align-items: center;
	font-weight: 400;
}

.footer .mail a {
	color: var(--general-white);
	transition: all 0.1s ease-in-out;
}

.footer .mail a:hover {
	color: #fff;
}

.footer__menu-list {
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.footer__menu-list a {
	font-size: 18px;
	font-weight: 600;
	line-height: 19.6px;
	color: var(--yellow-bg);
	transition: all 0.1s ease-in-out;
}

.footer__menu-list a:hover {
	color: var(--general-white);
}

.footer .footer__right-wrap {
	display: flex;
	flex-direction: column;
	/* gap: 165px; */
	margin-top: 5px;
	text-align: center;
}

.footer .footer__company {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer .footer__social {
	display: flex;
	/* flex-direction: column; */
	gap: 30px;
}

.footer .footer__social a {
	width: 100%;
	display: block;
}

.footer .footer__social a img {
	width: 35px;
	height: 35px;
}
.main {
	position: relative;
	width: 100%;
	height: 700px;
	overflow: hidden;
	/* background-image: url(../img/main/main-bg.webp);
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	 */
}

.main__container {
	position: relative;
	height: 100%;
	padding: 0;
	/* max-width: unset; */
}

.main::after {
	position: absolute;
	content: "";
	width: 25px;
	height: 25px;
	background-color: #fff;
	-webkit-transform: translateX(-50%) rotate(50deg);
	transform: translateX(-50%) rotate(50deg);
}

.main::before {
	position: absolute;
	content: "";
	width: 25px;
	height: 25px;
	background-color: #fff;
	-webkit-transform: translateX(-50%) rotate(50deg);
	transform: translateX(-50%) rotate(50deg);
}

.main::after {
	left: -5px;
	bottom: -11px;
}

.main::before {
	right: -27px;
	bottom: -14px;
}

.main__blocks {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 127px 0;
}

.main .block-one {
	clip-path: polygon(
		4% 0,
		96% 0,
		100% 6%,
		100% 94%,
		100% 100%,
		4% 100%,
		0 100%,
		0 6%
	);
}

.main .block-two {
	margin-top: 4px;
	clip-path: polygon(
		4% 0,
		100% 0,
		100% 6%,
		100% 94%,
		96% 100%,
		4% 100%,
		0 94%,
		0 0
	);
}

.main__block {
	background-color: rgba(208, 249, 2, 0.8);
	padding: 0 0 25px 25px;
	margin-left: 100px;
	/* margin-left: 15%; */
	width: 100%;
	max-width: 425px;
	margin-top: 100px;
}

.main__block h1 {
	font-size: 42px;
	font-weight: 600;
	line-height: 44.1px;
	text-align: left;
	color: var(--general-color);
	padding-top: 50px;
	width: 250px;
	text-transform: uppercase;
}

.main__block p {
	padding-top: 25px;
	font-size: 22px;
	font-weight: 600;
	line-height: 24.5px;
	text-align: left;
	padding-bottom: 104px;
	color: #353d3d;
	width: 333px;
}

.main .slider {
	display: flex;
	height: 100%;
	/* position: relative; */
	position: absolute;
	width: 100%;
}

.main .slide {
	height: 100%;
	width: 100%;
	/* height: 225px;
	width: 425px; */
	opacity: 0;
	transition: opacity 0.7s ease-in-out;
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	clip-path: polygon(4% 0, 100% 0, 100% 6%, 100% 97%, 96% 103%, 4% 103%, 0 97%, 0 0)
}

.main .slide.active {
	opacity: 1;
}

.main .slider-buttons {
	display: flex;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	top: 44%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	max-width: 1350px;
	margin: auto;
	right: 0;
	align-content: center;
	left: 0;
}

.main .next-button,
.main .prev-button {
	border: none;
	padding: 10px;
	cursor: pointer;
}

.main .prev-button {
	position: absolute;
	left: 50px;
}

.main .next-button {
	position: absolute;
	right: 50px;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.main .next-button:hover,
.main .prev-button:hover {
	background-color: rgba(208, 249, 2, 0.212);
}

.benefits {
	position: relative;
	padding: 65px 0 60px 0;
	z-index: 999;
	background-color: #fff;
	overflow: hidden;
}

.benefits::after {
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-image: url(../img/main/line-decor.svg);
	width: 33px;
	height: 65px;
	overflow: hidden;
	z-index: -1;
}

.benefits .title {
	font-size: 32px;
	font-weight: 600;
	line-height: 29.4px;
	text-align: center;
	margin-bottom: 35px;
	margin: 0 auto 35px auto;
}

.benefits__blocks {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin: 0 auto;
	width: 70%;
	gap: 70px;
	text-align: center;
	justify-content: center;
}

.benefits__block {
	display: flex;
	flex-direction: column;
	gap: 35px;
	text-align: center;
	align-items: center;
}

.benefits__block img {
	width: 56px;
	height: 55px;
}

.benefits__block p {
	font-size: 16px;
	font-weight: 400;
	line-height: 16.8px;
	text-align: center;
	color: var(--general-color);
}

.recommendations {
	position: relative;
	margin-bottom: 45px;
	overflow: hidden;
	z-index: 999;
	padding-top: 15px;
}

.recommendations::after {
	position: absolute;
	top: 18px;
	left: -14px;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--general-white);
	-webkit-transform: rotate(50deg);
	transform: rotate(50deg);
}

.recommendations::before {
	position: absolute;
	top: 18px;
	right: -14px;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--general-white);
	-webkit-transform: rotate(50deg);
	transform: rotate(44deg);
}

.recommendations .line-1 {
	position: absolute;
	left: 0;
	top: 10px;
	height: 4px;
	width: 40%;
	background-color: var(--yellow-bg);
	margin-top: 20px;
	z-index: -1;
}

.recommendations .line-1::after {
	position: absolute;
	top: -11px;
	right: 0;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--yellow-bg);
	-webkit-transform: rotate(50deg);
	transform: rotate(44deg);
}

.recommendations .line-2 {
	position: absolute;
	right: 0;
	top: 10px;
	height: 4px;
	width: 40%;
	background-color: var(--yellow-bg);
	margin-top: 20px;
	z-index: -1;
}

.recommendations .line-2::after {
	position: absolute;
	top: -10px;
	left: 0;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--yellow-bg);
	-webkit-transform: rotate(50deg);
	transform: rotate(44deg);
}

.recommendations .title {
	font-size: 32px;
	font-weight: 600;
	line-height: 29.4px;
	text-align: center;
	padding-bottom: 52px;
	margin: 0 auto 30px auto;
	width: 65%;
}

.recommendations__img {
	position: relative;
	/* height: 150px; */
	background-color: var(--general-white);
	border-radius: 10px 10px 0 0;
	display: flex;
	justify-content: center;
	height: 200px;
}

.recommendations__img img {
	position: absolute;
	top: -38px;
	/* width: 270px;
	height: 180px; */
	width: 340px;
	height: 240px;
	-o-object-fit: contain;
	object-fit: contain;
}

.recommendations__blocks {
	display: grid;
	/* grid-template-columns: repeat(4, 1fr); */
	grid-template-columns: repeat(2, 1fr);
	-webkit-column-gap: 13px;
	-moz-column-gap: 13px;
	column-gap: 13px;
	row-gap: 45px;
	width: 920px;
	margin: 0 auto;
}

.recommendations__block-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* display: block; */
	/* height: 275px; */
	/* height: 305px; */
	/* height: 330px; */
	/* max-width: 220px; */
	height: 380px;
	width: 100%;
	background-color: #fff;
	border: 1px solid #ced2d2;
	border-radius: 10px;
}

.recommendations__block-wrap:hover {
	transition: all 0.2s ease-in-out;
	border: 1px solid var(--yellow-bg);
}

.recommendations__block-wrap:hover .recommendations__img {
	transition: all 0.2s ease-in-out;
	background-color: #fff;
}

.recommendations__content {
	padding: 2px 10px 0 7px;
	margin: 5px 0;
}

.recommendations__content h2 {
	/* font-size: 16px; */
	font-size: 20px;
	font-weight: 700;
	line-height: 17.33px;
	color: #353d3d;
	min-height: 35px;
	text-align: center;
}

.recommendations__btn {
	background-color: var(--yellow-bg);
	margin: 2px 15px 0 7px;
	display: flex;
	justify-content: center;
	/* margin: 0 auto; */
	width: 150px;
	height: 35px;
	align-items: center;
	/* font-size: 16px; */
	font-size: 20px;
	font-weight: 400;
	line-height: 16.8px;
	color: var(--general-color);
	clip-path: polygon(
		10px 0,
		calc(100% - 8px) 0,
		100% 8px,
		100% calc(100% - 8px),
		calc(100% - 8px) 100%,
		8px 100%,
		0 calc(100% - 8px),
		0 8px
	);
	position: relative;
	overflow: hidden;
	transition: color 0.1s ease;
	margin: 0 auto 25px auto;
}

.recommendations__btn a {
	color: var(--general-color);
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.recommendations__btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--general-color);
	transition: left 0.3s ease-in-out;
	z-index: 0;
}

.recommendations__btn:hover a {
	color: var(--yellow-bg);
	z-index: 99;
}

.recommendations__btn:hover::before {
	left: 0;
}

.recommendations__btn > * {
	position: relative;
	z-index: 1;
}

.recommendations__btn-catalog {
	margin-top: 30px;
}

.recommendations__price {
	font-size: 18px;
	font-weight: 600;
	line-height: 22.05px;
	color: #1c1b1f;
}

.recommendations__price span {
	font-size: 14px;
	font-weight: 400;
	line-height: 16.8px;
}

.support {
	overflow: hidden;
	position: relative;
	margin-bottom: 45px;
	padding-top: 15px;
}

.support::after {
	position: absolute;
	top: 18px;
	left: -14px;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--general-white);
	-webkit-transform: rotate(50deg);
	transform: rotate(50deg);
}

.support::before {
	position: absolute;
	top: 19px;
	right: -14px;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--general-white);
	-webkit-transform: rotate(50deg);
	transform: rotate(46deg);
}

.support .line-1 {
	position: absolute;
	left: 0;
	top: 10px;
	height: 4px;
	width: 40%;
	background-color: var(--yellow-bg);
	margin-top: 20px;
	z-index: -1;
}

.support .line-1::after {
	position: absolute;
	top: -11px;
	right: 0;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--yellow-bg);
	-webkit-transform: rotate(50deg);
	transform: rotate(45deg);
}

.support .line-2 {
	position: absolute;
	right: 0;
	top: 10px;
	height: 4px;
	width: 40%;
	background-color: var(--yellow-bg);
	margin-top: 20px;
	z-index: -1;
}

.support .line-2::after {
	position: absolute;
	top: -10px;
	left: 0;
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--yellow-bg);
	-webkit-transform: rotate(50deg);
	transform: rotate(45deg);
}

.support .title {
	font-size: 32px;
	font-weight: 600;
	line-height: 29.4px;
	text-align: center;
	margin-bottom: 45px;
	margin: 0 auto 45px auto;
	width: 70%;
}

.support__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 19.81px;
	text-align: left;
	color: var(--general-color);
	margin-bottom: 12px;
}

.support__blocks {
	display: flex;
	gap: 67px;
	width: 90%;
	margin: 0 auto;
}

.support__block {
	width: 100%;
}

.support form {
	display: flex;
	flex-direction: column;
	gap: 17px;
	/* width: 480px; */
	width: 100%;
}

.support form input,
.support form textarea,
.map_form form input,
.map_form form textarea,
.popup_content input {
	background-color: var(--general-white);
	width: 100%;
	padding: 12px;
	font-size: 20px;
	font-weight: 400;
	line-height: 20.8px;
	outline: 0;
	height: 35px;
	/* clip-path: polygon(
		2% 0,
		15% 0,
		85% 0,
		98% 0,
		100% 20%,
		100% 85%,
		97% 100%,
		2% 100%,
		0 75%,
		0 15%
	); */
	clip-path: polygon(
		2% 0,
		5% 0,
		95% 0,
		98% 0,
		100% 17%,
		100% 85%,
		98% 100%,
		2% 100%,
		0 85%,
		0 13%
	);
	margin-bottom: 15px;
}

.support form textarea,
.map_form form textarea {
	resize: none;
	height: 235px;
	clip-path: polygon(
		3% 0,
		97% 0%,
		100% 3%,
		100% 97%,
		97% 100%,
		2% 100%,
		0% 97%,
		0% 3%
	);
	/* clip-path: polygon(
		2% 0,
		98% 0,
		100% 5%,
		100% 95%,
		98% 100%,
		2% 100%,
		0 95%,
		0 5%
	); */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.map_form form textarea {
	height: 200px;
}

.support .form__btn,
input[type="submit"],
.map_form .form__btn,
.popup_form .form__btn {
	max-width: 150px;
	width: 100%;
	background-color: var(--yellow-bg);
	height: 35px;
	font-size: 20px;
	font-weight: 400;
	line-height: 16.8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	clip-path: polygon(
		4% 0,
		96% 0,
		100% 20%,
		100% 80%,
		96% 100%,
		4% 100%,
		0 80%,
		0 20%
	);
	position: relative;
	overflow: hidden;
	transition: color 0.1s ease;
}

.support .form__btn a,
input[type="submit"] span,
.map_form .form__btn a,
.popup_form .form__btn a {
	color: var(--general-color);
}

.support .form__btn::before,
input[type="submit"],
.map_form .form__btn::before,
.popup_form .form__btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--general-color);
	transition: left 0.3s ease-in-out;
	z-index: 0;
}

.support .form__btn:hover a,
input[type="submit"]:hover span,
.map_form .form__btn:hover a,
.popup_form .form__btn:hover a {
	color: var(--yellow-bg);
	z-index: 99;
}

input[type="submit"]:hover::before,
.support .form__btn:hover::before,
.map_form .form__btn:hover::before,
.popup_form .form__btn:hover::before {
	left: 0;
}

input[type="submit"] > *,
.support .form__btn > *,
.map_form .form__btn > *,
.popup_form .form__btn > * {
	position: relative;
	z-index: 1;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	/* width: 450px; */
	width: 100%;
}

.accordion__item {
	background-color: var(--general-white);
	clip-path: polygon(
		0 0,
		0 0,
		90% 0,
		100% 0,
		100% 90%,
		98% 98%,
		2% 98%,
		0 92%,
		0 4%
	);
	border-radius: 10px 15px 0 0;
}

.accordion__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	background-color: var(--general-color);
	clip-path: polygon(
		2% 0,
		5% 0,
		95% 0,
		98% 0,
		100% 17%,
		100% 85%,
		98% 100%,
		2% 100%,
		0 85%,
		0 13%
	);
}

.accordion__header .accordion__icon {
	font-size: 18px;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.accordion__header .accordion__header.active .accordion__icon {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.accordion__header p {
	color: var(--general-white);
	font-size: 20px;
	font-weight: 400;
	line-height: 20.8px;
	max-width: 350px;
	width: 100%;
	padding-right: 20px;
}

.accordion__content {
	max-height: 0;
	transition: 0.5s;
	overflow: hidden;
}

.accordion__content p {
	padding: 10px 10px 15px 10px;
	color: var(--general-color);
	font-size: 16px;
	font-weight: 400;
}

.accordion__icon {
	font-size: 50px;
	position: relative;
	transition: color 0.3s ease, -webkit-transform 0.3s ease;
	transition: transform 0.3s ease, color 0.3s ease;
	transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
	color: var(--general-color);
	z-index: 99;
	margin-right: 10px;
	font-weight: 700;
}

.accordion__icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	background-color: var(--yellow-bg);
	transition: background-color 0.3s ease;
	z-index: -1;
	clip-path: polygon(
		30% 0,
		70% 0,
		100% 30%,
		100% 70%,
		70% 100%,
		30% 100%,
		0 70%,
		0 30%
	);
}

.accordion__header.active .accordion__icon {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion__header.active .accordion__icon::before {
	background-color: #d9d9d9;
}

.catalog {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 100%;
}

.catalog__blocks {
	display: flex;
	gap: 20px;
}

.catalog__filter {
	color: #fff;
	width: 245px;
	position: relative;
	overflow: visible;
}

.overlay2 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 9999;
	display: none;
}

.overlay2.active {
	display: block;
}

.filter {
	position: relative;
	height: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 99;
}

.filter::before {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	width: 2000px;
	height: 100%;
	height: 10000px;
	background-color: var(--general-color);
	z-index: -9;
}

.filter::after {
	position: absolute;
	top: 0;
	right: -2px;
	content: "";
	width: 4px;
	height: 100%;
	height: 10000px;
	background-color: var(--yellow-bg);
	z-index: 9;
}

.filter h3 {
	margin-bottom: 15px;
	color: var(--yellow-bg);
}

.filter-category {
	position: relative;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 30px;
}

.filter-category::before {
	position: absolute;
	left: 0;
	top: -10px;
	width: 100%;
	content: "";
	border: 1px solid #ced2d2;
}

.filter-category::after {
	position: absolute;
	left: 0;
	bottom: -20px;
	width: 100%;
	content: "";
	border: 1px solid #ced2d2;
}

.filter-category label,
.wpc-filters-main-wrap li.wpc-term-item a {
	font-family: "Gilroy", sans-serif;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 16.8px;
	color: #ced2d2;
}

.filter-sort {
	position: relative;
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.filter-sort label {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 16.8px;
}

/* Filter new styles */
.widgettitle,
.widget-title {
	color: var(--yellow-bg);
	font-size: 20px;
}

.wpc-filter-set-widget-title {
	margin-bottom: 14px;
}

.wpc-filter-title {
	border-bottom: 1px solid #ced2d2;
	padding-bottom: 6px;
}

.wpc-filters-range-column {
	position: relative;
	display: inline-block;
	padding: 0;
	max-width: 35% !important;
}

.wpc-filters-range-wrapper input[type="number"] {
	padding: 5px;
	border: none;
	color: white;
	text-align: center;
	background-color: #353d3d;
	border: 1px solid white;
	z-index: 5;
	clip-path: polygon(
		16% 0%,
		84% 0%,
		100% 32%,
		100% 68%,
		84% 100%,
		16% 100%,
		0% 68%,
		0% 32%
	);
	/* -moz-appearance: textfield; */
}

.wpc-filters-range-column::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background: white;
	border: 2px solid white;
	clip-path: polygon(
		15% 0%,
		85% 0%,
		100% 30%,
		100% 70%,
		85% 100%,
		15% 100%,
		0% 70%,
		0% 30%
	);
}

.wpc-filters-range-wrapper::after {
	content: "\2014";
	position: absolute;
	top: 50%;
	left: 41%;
	font-weight: 100;
}

/* Для Chrome, Safari, Edge, Opera */
.wpc-filters-range-wrapper input[type="number"]::-webkit-outer-spin-button,
.wpc-filters-range-wrapper input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Для Firefox */
.wpc-filters-range-wrapper input[type="number"] {
	-moz-appearance: textfield !important;
}

.wpc-filters-range-inputs {
	width: 85%;
}

.wpc-filters-range-inputs .ui-slider-horizontal,
.wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-range {
	background: var(--yellow-bg) !important;
	height: 1px !important;
}

.ui-widget.ui-widget-content {
	border: none !important;
}

.wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-handle {
	background: var(--yellow-bg) !important;
	border: 1px solid var(--yellow-bg) !important;
	top: -6px !important;
	border-radius: 3px !important;
}

.wpc-filters-range-inputs .ui-slider .ui-slider-handle {
	height: 12px !important;
	width: 12px !important;
}

.wpc-filters-main-wrap li.wpc-term-item input[type="checkbox"] {
	display: none;
}

.wpc-filters-main-wrap li.wpc-term-item label::before {
	content: "";
	width: 12px;
	height: 12px;
	border: 1px solid #ced2d2;
	border-radius: 4px;
	margin-right: 10px;
	display: inline-block;
	background-color: #353d3d;
}

.wpc-filters-main-wrap
	li.wpc-term-item
	input[type="checkbox"]:checked
	+ label::before {
	background-color: var(--yellow-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	content: "✔";
	color: black;
	border: 1px solid var(--yellow-bg);
}
/* Filter new styles end*/

.price {
	position: relative;
}

.price::after {
	position: absolute;
	left: 0;
	bottom: -25px;
	width: 100%;
	content: "";
	border: 1px solid #ced2d2;
}

.price-range-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	margin-right: 30px;
}

.price-range-wrap span {
	font-size: 14px;
	font-weight: 400;
	line-height: 16.8px;
	border: 1px solid var(--general-white);
	padding: 6px 8px;
	border-radius: 5px;
	color: #ced2d2;
}

.price-range-wrap button {
	font-size: 14px;
	font-weight: 400;
	line-height: 16.8px;
	border: 1px solid var(--general-white);
	padding: 5px 15px;
	border-radius: 5px;
	margin-top: 2px;
	position: relative;
	overflow: hidden;
	transition: color 0.1s ease, border 0.1s ease;
	color: #ced2d2;
}

.price-range-wrap button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--yellow-bg);
	transition: left 0.3s ease-in-out;
	z-index: -1;
}

.price-range-wrap button:hover {
	color: var(--general-color);
	z-index: 9;
}

.price-range-wrap button:hover::before {
	left: 0;
}

.price-range-wrap button > * {
	position: relative;
	z-index: 1;
}

.price .price-range__slider {
	position: relative;
	width: 160px;
	height: 10px;
}

.price .price-range__slider .track {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: var(--yellow-bg);
	border-radius: 5px;
	pointer-events: none;
}

.price .price-range__slider .active-track {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0;
	height: 1px;
	background: var(--yellow-bg);
	border-radius: 5px;
	pointer-events: none;
}

.price .price-range__slider input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	background: 0 0;
	pointer-events: none;
}

.price .price-range__slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	background: var(--yellow-bg);
	border-radius: 20%;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.price .price-range__slider input[type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	background: var(--yellow-bg);
	border-radius: 50%;
	cursor: pointer;
	pointer-events: auto;
	border: 2px solid #fff;
}

.price .price-range__slider input[type="range"]:focus {
	outline: 0;
}

.design {
	position: relative;
	display: none;
}

.content {
	flex: 1;
	padding: 20px 0 0 55px;
	z-index: 999;
}

.content__title {
	display: flex;
	text-align: center;
	justify-content: center;
	font-size: 30px;
	font-weight: 600;
	line-height: 36.75px;
	color: var(--general-color);
	margin-bottom: 65px;
}

.content__buttons {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 30px;
}

.content__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 5px;
	padding: 0 5px 0 10px;
}

.content__button a {
	font-weight: 400;
	line-height: 16.8px;
	color: var(--general-color);
}

.content .reset {
	width: 112px;
	height: 26px;
	border: 1px solid #cc8484;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 14px;
	transition: color 0.1s ease;
}

.content .reset a {
	color: var(--general-color);
}

.content .reset::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #cc8484;
	transition: left 0.3s ease-in-out;
	z-index: 0;
}

.content .reset:hover a {
	color: #fff;
	z-index: 99;
}

.content .reset:hover::before {
	left: 0;
}

.content .reset > * {
	position: relative;
	z-index: 1;
}

.content .generator {
	width: 132px;
	height: 26px;
	text-align: center;
	border: 1px solid var(--yellow-bg);
	position: relative;
	overflow: hidden;
	font-size: 14px;
	transition: color 0.1s ease;
}

.content .generator a {
	color: var(--general-color);
}

.content .generator::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--yellow-bg);
	transition: left 0.3s ease-in-out;
	z-index: 0;
}

.content .generator:hover a {
	color: var(--general-color);
	z-index: 99;
}

.content .generator:hover::before {
	left: 0;
}

.content .generator > * {
	position: relative;
	z-index: 1;
}

.content .same {
	width: 165px;
	height: 26px;
	text-align: center;
	border: 1px solid var(--yellow-bg);
	position: relative;
	overflow: hidden;
	transition: color 0.1s ease;
	padding: 0 5px;
	font-size: 14px;
}

.content .same a {
	color: var(--general-color);
}

.content .same::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--yellow-bg);
	transition: left 0.3s ease-in-out;
	z-index: 0;
}

.content .same:hover a {
	color: var(--general-color);
	z-index: 99;
}

.content .same:hover::before {
	left: 0;
}

.content .same > * {
	position: relative;
	z-index: 1;
}

.content .recommendations__blocks {
	/* display: grid; */
	/* grid-template-columns: repeat(3, 1fr); */
	width: 100%;
	margin: 0;
	margin-bottom: 56px;
}

.content .recommendations__block {
	width: 100%;
	justify-items: center;
}

.content .pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 375px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 70px;
}

.content .pagination .arrow,
.content .pagination .page {
	border: none;
	color: var(--general-color);
	width: 25px;
	height: 25px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s, color 0.3s;
}

.content .pagination .page {
	margin-right: 15px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.content .pagination .arrow.left {
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	font-weight: 500;
	font-size: 20px;
	color: var(--general-color);
}

.content .pagination .arrow.right {
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	font-weight: 500;
	font-size: 20px;
	color: var(--general-color);
}

.content .pagination .arrow:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.content .pagination .page.active {
	background-color: var(--yellow-bg);
	color: #000;
}

.content .pagination .arrow:hover:not(:disabled) {
	background-color: var(--yellow-bg);
}

.filter-burger {
	display: none;
}

.close-filter {
	display: none;
}

.custom-checkbox input {
	display: none;
}

.custom-checkbox {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 10px;
	position: relative;
}

.custom-checkbox::before {
	position: relative;
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.3s ease;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
}

.custom-checkbox input:checked + span::before {
	position: absolute;
	top: 2.5px;
	left: 0;
	width: 12px;
	height: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	background-color: var(--yellow-bg);
	color: var(--general-color);
	content: "✔";
}

.custom-checkbox span {
	margin-left: 25px;
}

.single__top {
	display: flex;
	gap: 60px;
	margin-bottom: 30px;
}

.single-next {
	padding: 10px 7px;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.single-next:hover {
	background-color: rgba(208, 249, 2, 0.212);
}

.single-prev {
	padding: 10px 7px;
}

.single-prev:hover {
	background-color: rgba(208, 249, 2, 0.212);
}

.single .image-gallery {
	width: 395px;
}

.single .image-gallery__main {
	background-color: var(--general-white);
	display: flex;
	margin: 0 auto;
	justify-content: center;
	width: 400px;
	min-height: 300px;
	clip-path: polygon(
		10px 0,
		calc(100% - 8px) 0,
		100% 8px,
		100% calc(100% - 8px),
		calc(100% - 8px) 100%,
		8px 100%,
		0 calc(100% - 8px),
		0 8px
	);
}

.single .image-gallery__main img {
	/* width: 300px; */
	width: 350px;
	-o-object-fit: contain;
	object-fit: contain;
}

.single .image-gallery__wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.single .image-gallery__thumbnails {
	display: flex;
	align-content: center;
	gap: 10px;
}

.single .image-gallery__thumbnails div {
	background-color: var(--general-white);
	clip-path: polygon(
		10px 0,
		calc(100% - 8px) 0,
		100% 8px,
		100% calc(100% - 8px),
		calc(100% - 8px) 100%,
		8px 100%,
		0 calc(100% - 8px),
		0 8px
	);
}

.single .image-gallery__thumbnails img {
	width: 70px;
	height: 50px;
	-o-object-fit: contain;
	object-fit: contain;
}

.single .image-gallery__main {
	margin-bottom: 20px;
}

.single__content {
	flex: 1;
}

.single__content h1,
.single__content h2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 29.4px;
	max-width: 400px;
	width: 100%;
	color: var(--general-color);
	margin-bottom: 10px;
}

.single__content-btn {
	background-color: var(--yellow-bg);
	width: 150px;
	height: 35px;
	align-items: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 16.8px;
	color: var(--general-color);
	clip-path: polygon(
		10px 0,
		calc(100% - 8px) 0,
		100% 8px,
		100% calc(100% - 8px),
		calc(100% - 8px) 100%,
		8px 100%,
		0 calc(100% - 8px),
		0 8px
	);
	position: relative;
	overflow: hidden;
	transition: color 0.1s ease;
}

.single__content-btn a {
	color: var(--general-color);
}

.single__content-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--general-color);
	transition: left 0.3s ease-in-out;
	z-index: 0;
}

.single__content-btn:hover a {
	color: var(--yellow-bg);
	z-index: 99;
}

.single__content-btn:hover::before {
	left: 0;
}

.single__content-btn > * {
	position: relative;
	z-index: 1;
}

.single__content-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 450px;
	width: 100%;
	margin-bottom: 15px;
	margin-top: 10px;
}

.single__content-price .price_wrapper {
	align-items: start;
}

.single__content-price .price-request {
	text-align: start;
}

/* styles for new price */
.price_wrapper span:first-child {
	/* font-size: 20px; */
	font-size: 25px;
}

.price_wrapper span:last-child {
	/* font-size: 16px; */
	font-size: 20px;
}

.price_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	color: black;
	margin: 5px 0;
}
.price-request {
	display: contents;
	text-align: center;
}
/* styles for new price end*/

.availability {
	font-size: 18px;
	font-weight: 400;
	line-height: 16.8px;
	color: #6fad48;
	margin-bottom: 15px;
}

.single-buy {
	margin-bottom: 50px;
}

.single-buy h3 {
	font-size: 14px;
	font-weight: 600;
	line-height: 17.15px;
	margin-bottom: 12px;
	color: var(--general-color);
}

.single-buy ul {
	display: flex;
	align-items: center;
	gap: 40px;
}

.single-buy li {
	border: 1px solid var(--yellow-bg);
	width: 150px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}

.single-buy li:hover {
	background-color: var(--yellow-bg);
}

.product-description {
	font-size: 18px;
}
.single-descript {
	font-size: 14px;
	font-weight: 400;
	line-height: 16.8px;
	color: var(--general-color);
	max-width: 430px;
	width: 100%;
}

.single-descript span {
	font-size: 14px;
	font-weight: 600;
	line-height: 17.15px;
}

.single__below h3 {
	font-size: 22px;
}
.characteristics {
	margin-bottom: 70px;
}

.characteristics__blocks {
	display: flex;
	/* align-items: center; */
	align-items: baseline;
	gap: 80px;
}

.characteristics__block {
	display: flex;
	margin-top: 15px;
	font-size: 14px;
	font-weight: 400;
	color: var(--general-color);
	line-height: 25px;
}

.characteristics__block h3 {
	font-weight: 600;
}

.characteristics .left-block {
	border: 1px solid var(--general-color);
	border-right: none;
	border-radius: 7px;
	max-width: 233px;
	width: 100%;
	padding: 12px 12px 20px 15px;
	height: 225px;
}

.characteristics .right-block {
	border: 1px solid var(--yellow-bg);
	border-radius: 7px;
	max-width: 222px;
	width: 100%;
	height: 225px;
	padding: 12px 12px 20px 15px;
}

body {
	font-family: Gilroy, sans-serif;
	font-weight: 600;
}

.header__menu a:hover,
.header__menu a.active {
	color: #d0f902;
}

.characteristics__block table {
	border-collapse: collapse;
}

/*
.characteristics__block tr td:first-child{
  border: 1px solid #000;
  padding: 10px;
} */
.characteristics__block tr:first-child {
}

.characteristics__block table tr:first-child .attr_val_wrapper {
	border-top: 1px solid #000;
	border-radius: 10px 10px 0 0;
}

.characteristics__block table tr:last-child .attr_val_wrapper {
	border-bottom: 1px solid #000;
	border-radius: 0 0 10px 10px;
}

.attr_val_wrapper {
	/* border: 1px solid; */
	font-size: 16px;
	padding: 10px;
	border-left: 1px solid #000;
	width: 180px;
	height: 100%;
	/* Занимаем всю высоту ячейки */
	display: flex;
	align-items: center;
	/* Выравниваем текст по центру (опционально) */
	/* justify-content: center; Выравниваем по горизонтали (опционально) */
}

.attr_val_wrapper.green_list {
	padding: 10px;
	border-left: 1px solid var(--yellow-bg);
	border-right: 1px solid var(--yellow-bg);
}

.characteristics__block table tr:first-child .attr_val_wrapper.green_list {
	border-top: 1px solid var(--yellow-bg);
	border-radius: 10px 10px 0 0;
}

.characteristics__block table tr:last-child .attr_val_wrapper.green_list {
	border-bottom: 1px solid var(--yellow-bg);
	border-radius: 0 0 10px 10px;
}

.characteristics__block table tr {
	display: flex;
	/* flex-wrap: wrap; */
}

.characteristics__block table tr td {
}

.single_page_content {
	padding-bottom: 30px;
}
.single_page_content .main_page_title {
}
.single_page_content {
	color: #353d3d;
}
.single_page_content p {
	padding: 5px 0;
}
.single_page_content ul {
	list-style: disc;
	margin-inline-start: 30px;
	padding: 15px 0;
}
.single_page_content ul li {
	list-style: disc;
}
.single_page_content ul li::marker {
	color: var(--yellow-bg);
}
.single_page_content ol {
	/* list-style: disc; */
	margin-inline-start: 30px;
	padding: 15px 0;
}
.single_page_content ol li {
	/* list-style: disc; */
}
.single_page_content ol li::marker {
	color: var(--yellow-bg);
}

.single_page_content h1 {
	font-size: 32px;
	font-weight: bold;
	padding: 20px 0;
}
.single_page_content h2 {
	font-size: 29px;
	font-weight: bold;
	color: #353d3d;
	padding: 10px 0;
}
.single_page_content h3 {
	font-size: 24px;
	font-weight: bold;
	color: var(--yellow-bg);
	padding: 10px 0;
}
.single_page_content a {
	color: var(--yellow-bg);
	text-decoration: underline;
}
.single_page_content a:hover {
}

/* Contact page */
.contacts_features {
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 50px;
}

.page_contact_item {
	display: flex;
}

.contact_item_icon {
	display: flex;
	border-radius: 10px;
	height: 36px;
	min-width: 36px;
	background: var(--yellow-bg);
	margin-right: 20px;
}

.contact_item_icon svg {
	line-height: 36px;
	margin: auto;
	display: block;
}

.map_contacts_container {
	display: flex;
	gap: 50px;
	justify-content: space-around;
}

.map_iframe {
	position: relative;
	width: 100%; /* Ширина карти завжди займатиме 100% від ширини контейнера */
	padding-bottom: 43%; /* Це зберігає пропорції карти (висота/ширина). У цьому випадку пропорція 550/1280 ≈ 43% */
	height: 0;
	overflow: hidden; /* Це необхідно, щоб приховати контент, який може виходити за межі контейнера */
}

.map_iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; /* Карта займатиме всю ширину контейнера */
	height: 100%; /* Висота також адаптується відповідно до ширини */
	border: 0; /* Прибираємо рамку */
}

.map_form .wpcf7-response-output {
	max-width: 221px;
	width: 100%;
}

.contact_item_content {
	padding-top: 6px;
}

.contact_item_content a {
	color: var(--grey-bg);
	text-decoration: none;
}

.contact_item_content a:hover {
	text-decoration: underline;
}

.map_form .form__btn a {
	text-decoration: none;
}
/* Contact page end*/

/* Modal popup form for bye button */
.popup_form {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.popup_content {
	position: relative;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	max-width: 400px;
	width: 100%;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popup_form form {
	margin-top: 50px;
}

.close_btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 25px;
	cursor: pointer;
}
/* Modal popup form for bye button end*/

.wpcf7 {
	position: relative;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
}
.invalid_field {
	background-color: #e3cccc !important;
}

@media (max-width: 1500px) {
	.recommendations .line-1 {
		width: 30%;
	}

	.recommendations .line-2 {
		width: 30%;
	}

	.support .line-1 {
		width: 30%;
	}

	.support .line-2 {
		width: 30%;
	}
	.footer .line-1::after {
		left: 53.2%;
	}
}

@media (max-width: 1200px) {
	.menu__list {
		gap: 50px;
	}

	.support__blocks {
		width: 100%;
		justify-content: space-between;
		/* gap: 30px; */
		gap: 50px;
	}
	.footer .line-1::after {
		left: 53%;
	}
	.main__block h1 {
		font-size: calc(36px + (42 - 36) * ((100vw - 320px) / (1280 - 320)));
	}
	.benefits .title,
	.recommendations .title,
	.support .title {
		font-size: calc(22px + (32 - 22) * ((100vw - 320px) / (1280 - 320)));
	}
	.single__content h1,
	.single__content h2 {
		font-size: calc(24px + (30 - 24) * ((100vw - 320px) / (1280 - 320)));
	}
}

@media (max-width: 1100px) {
	.footer .bg1 {
		height: 450px;
	}

	.footer .bg2 {
		height: 450px;
	}

	.footer .line-1::after {
		left: 52.8%;
	}

	.footer__left {
		grid-template-columns: repeat(3, 1fr);
		width: 500px;
	}

	.footer__menu-list {
		/* padding-top: 30px; */
	}
	.map_form form textarea {
		height: 180px;
	}
}

@media (max-width: 1025px) {
	.single__top {
		gap: 50px;
	}

	.single-buy ul {
		gap: 20px;
	}

	.characteristics__blocks {
		gap: 40px;
	}
}

@media (max-width: 992px) {
	.scroll-to-top {
		width: 30px;
		height: 30px;
	}

	.scroll-to-top svg {
		top: 9px;
		width: 18px;
		height: 18px;
	}

	.header {
		border-bottom: none;
		padding: 20px 0;
	}

	.header .logo::after {
		height: 0;
		width: 0;
	}

	.header .logo::before {
		height: 0;
		width: 0;
	}

	.header__info {
		position: fixed;
		top: 0;
		left: 100%;
		width: 100%;
		height: 100%;
		overflow: auto;
		/* height: auto; */
		transition: left 0.5s ease;
		display: flex;
		flex-direction: column;
		/* flex-direction: column-reverse; */
		background-color: var(--general-color);
		padding: 70px 0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		z-index: 999;
		clip-path: polygon(
			20px 0,
			calc(100% - 20px) 0,
			100% 20px,
			100% calc(100% - 20px),
			calc(100% - 20px) 100%,
			20px 100%,
			0 calc(100% - 15px),
			0 15px
		);
	}

	.header__info.active {
		left: 0;
		border-radius: 0 16px 16px 0;
		/* justify-content: flex-end; */
		/* padding-top: 100px; */
	}

	.header__top {
		flex-direction: column;
		margin-right: 0;
		margin-top: 40px;
		order: 2;
	}

	.header__below {
		justify-content: center;
	}

	.header__below::after {
		position: absolute;
		content: "";
		width: 25px;
		height: 25px;
		background-color: #fff;
		-webkit-transform: translateX(-50%) rotate(45deg);
		transform: translateX(-50%) rotate(45deg);
		z-index: 200;
	}

	.header__below::before {
		position: absolute;
		content: "";
		width: 25px;
		height: 25px;
		background-color: #fff;
		-webkit-transform: translateX(-50%) rotate(45deg);
		transform: translateX(-50%) rotate(45deg);
		z-index: 200;
	}

	.header__below::after {
		left: -5px;
		bottom: -10px;
	}

	.header__below::before {
		right: -30px;
		bottom: -10px;
	}

	.header__btn {
		display: none;
	}

	.header__btn-burger {
		display: flex;
	}

	.header__burger-menu {
		display: block;
	}

	.menu::before {
		position: absolute;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		content: "";
		bottom: 0;
		width: 100%;
		height: 4px;
		background-color: #d0f902;
	}

	.menu__list {
		flex-direction: column;
		gap: 40px;
		margin-bottom: 40px;
		width: 100%;
	}

	.footer {
		/* min-height: 950px; */
		min-height: 725px;
	}

	.footer .bg1 {
		top: 0;
		/* height: 345px; */
		height: 193px;
		width: 100%;
	}

	.footer .bg2 {
		height: 300px;
		width: 100%;
		height: 88%;
	}

	.footer::after {
		width: 0;
		height: 0;
	}

	.footer::before {
		width: 0;
		height: 0;
	}

	.footer .line-1 {
		/* top: 342px; */
		top: 190px;
	}

	.footer .line-1::after {
		width: 0;
		height: 0;
	}

	.footer .line-2 {
		display: block;
		position: absolute;
		left: 0;
		height: 4px;
		width: 100%;
		background-color: var(--general-white);
		margin-top: 20px;
		z-index: 99;
		/* top: 845px; */
		top: 610px;
	}

	.footer .line-2::after {
		position: absolute;
		top: -10px;
		left: 36.73%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		content: "";
		width: 25px;
		height: 25px;
		background-color: var(--general-white);
		-webkit-transform: rotate(48deg);
		transform: rotate(45deg);
		z-index: 99;
	}

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

	.footer__blocks::before {
		z-index: 1;
		left: 38%;
		height: 85%;
		height: 74%;
	}

	.footer__blocks::after {
		position: absolute;
		/* top: 332px; */
		top: 180px;
		left: 36.73%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		content: "";
		width: 25px;
		height: 25px;
		background-color: var(--general-white);
		-webkit-transform: rotate(48deg);
		transform: rotate(45deg);
		z-index: 9999;
	}

	.footer__left {
		grid-template-columns: repeat(1, 1fr);
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer__one {
		padding-top: 0;
	}

	.footer__right {
		display: flex;
		justify-content: center;
		margin: 0 auto;
		padding-left: 30px;
		padding-top: 20px;
	}

	.footer_info h2 {
		color: var(--general-color);
		margin-left: 70px;
		margin-top: 20px;
		font-weight: 600;
	}

	.footer_info {
		/* padding-top: 20px; */
		padding-top: 50px;
	}

	.footer__descript {
		padding-left: 70px;
		max-width: 270px;
		/* min-height: 190px; */
	}

	.footer .footer__block-info {
		padding-left: 70px;
		max-width: 270px;
		color: var(--general-color);
	}

	.footer .footer__block-info img {
		width: 25px;
		height: 25px;
	}

	.footer .footer-point__grey {
		display: block;
	}

	.footer .footer-point__yellow {
		display: none;
	}

	.footer .number a:hover {
		color: var(--general-color);
		font-weight: 600px;
	}

	.footer .number a {
		color: var(--general-color);
	}

	.footer .mail a {
		color: var(--general-color);
	}

	.footer .mail a:hover {
		color: var(--general-color);
		font-weight: 600px;
	}

	.footer__menu-list {
		padding-top: 20px;
	}

	.footer__menu-list a {
		color: var(--general-color);
	}

	.footer__menu-list a:hover {
		color: var(--general-color);
	}

	.footer .footer__right-wrap {
		flex-direction: column;
		gap: 45px;
		justify-content: start;
		margin-left: 83px;
	}

	.footer .footer__company {
		margin-left: -30px;
	}

	.footer .footer__social {
		flex-direction: row;
	}

	.main__block {
		padding: 0 25px 25px 25px;
	}

	.benefits__blocks {
		gap: 35px;
		width: 100%;
	}

	.recommendations__blocks {
		width: 100%;
	}

	.support form {
		/* width: 340px; */
	}

	.support .form__btn {
		/* width: 88px; */
		width: 40%;
	}

	.accordion {
		/* width: 340px; */
	}

	.filter {
		position: fixed;
		top: 105px;
		left: -100%;
		width: 50%;
		height: auto;
		transition: left 0.5s ease;
		background-color: var(--general-color);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		z-index: 9999;
		/* clip-path: polygon(
			20px 0,
			calc(100% - 20px) 0,
			100% 20px,
			100% calc(100% - 20px),
			calc(100% - 20px) 100%,
			20px 100%,
			0 calc(100% - 15px),
			0 15px
		); */
		padding: 60px 35px 100px 35px;
	}

	.filter.active {
		left: 0;
		/* border-radius: 0 16px 16px 0; */
	}

	.filter::after {
		width: 0;
		height: 0;
	}

	.filter-sort::after {
		position: absolute;
		top: -40px;
		left: -40px;
		content: "";
		width: 25px;
		height: 25px;
		background-color: #fff;
		-webkit-transform: translateX(-50%) rotate(50deg);
		transform: translateX(-50%) rotate(50deg);
	}

	.filter-sort::before {
		position: absolute;
		top: -38px;
		right: -64px;
		content: "";
		width: 25px;
		height: 25px;
		background-color: #fff;
		-webkit-transform: translateX(-50%) rotate(50deg);
		transform: translateX(-50%) rotate(50deg);
	}

	.design {
		display: block;
	}

	.design::after {
		position: absolute;
		top: -120px;
		left: -40px;
		content: "";
		width: 25px;
		height: 25px;
		background-color: #fff;
		-webkit-transform: translateX(-50%) rotate(50deg);
		transform: translateX(-50%) rotate(50deg);
	}

	.design::before {
		position: absolute;
		top: -118px;
		right: -64px;
		content: "";
		width: 25px;
		height: 25px;
		background-color: #fff;
		-webkit-transform: translateX(-50%) rotate(50deg);
		transform: translateX(-50%) rotate(50deg);
	}

	.content {
		padding: 20px 0 0 0;
	}

	.filter-burger {
		display: block;
	}

	.close-filter {
		position: absolute;
		right: 15px;
		top: 20px;
		background-color: var(--yellow-bg);
		width: 25px;
		height: 25px;
		clip-path: polygon(
			40% 0,
			60% 0,
			100% 40%,
			100% 60%,
			60% 100%,
			40% 100%,
			0 60%,
			0 40%
		);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		margin: 0;
	}

	.close-filter img {
		width: 23px;
		height: 23px;
	}

	.single .image-gallery {
		width: 340px;
	}

	.single .image-gallery__main {
		width: 340px;
	}

	.single-buy ul {
		flex-wrap: wrap;
	}
	.wpc-filters-range-column {
		max-width: 25% !important;
	}
	.filter {
		height: 100%;
	}
	.filter::before {
		width: auto;
		height: auto;
	}
	.catalog__filter {
		overflow: auto;
		height: 100%;
	}
	.map_form form textarea {
		height: 180px;
	}
	.footer__block.footer__one a img {
		width: 100%;
	}
}

@media screen and (max-width: 800px) {
	.characteristics__blocks {
	}

	.characteristics__blocks .characteristics__block:first-child {
	}

	.characteristics__blocks .characteristics__block:last-child {
	}

	.characteristics__blocks
		.characteristics__block:first-child
		table
		tr:last-child
		.attr_val_wrapper,
	.characteristics__blocks
		.characteristics__block:first-child
		table
		tr:last-child
		.attr_val_wrapper.green_list {
		border-radius: 0;
		border-bottom: 0;
	}

	.characteristics__blocks
		.characteristics__block:last-child
		table
		tr:first-child
		.attr_val_wrapper,
	.characteristics__blocks
		.characteristics__block:last-child
		table
		tr:first-child
		.attr_val_wrapper.green_list {
		border-radius: 0;
		border-top: 0;
	}
	.footer__blocks::after,
	.footer .line-2::after {
		left: 36.37%;
	}
	.wpc-filters-range-column {
		max-width: 35% !important;
	}
	.map_form form textarea {
		height: 110px;
	}
}

@media (max-width: 992px) and (max-width: 992px) {
	/* .footer .line-2::after {
		top: -10px;
		left: 36.37%;
	} */
}

@media (max-width: 992px) and (max-width: 625px) {
	.footer .line-2::after {
		left: 27%;
	}

	.footer__blocks::after {
		left: 26%;
	}
	.wpc-filters-range-column {
		max-width: 45% !important;
	}
	.wpc-filters-range-wrapper::after {
		left: 40%;
	}
}

@media (max-width: 992px) and (max-width: 375px) {
	/* .footer .line-2::after {
		left: 20%;
	}

	.footer__blocks::after {
		left: 19%;
	} */
	.footer .footer__social {
		gap: 20px;
	}
}

@media (max-width: 871px) {
	.characteristics .right-block .one {
		margin-top: -25px;
	}
	.footer__blocks::after,
	.footer .line-2::after {
		left: 36.37%;
	}
}

@media (max-width: 800px) {
	.characteristics__blocks {
		display: block;
		margin-top: 10px;
		gap: 0;
	}

	.characteristics__block {
		margin-top: 0;
	}

	.characteristics .left-block {
		height: auto;
		max-width: 100%;
	}

	.characteristics
		.characteristics__blocks
		.characteristics__block:first-of-type
		.left-block {
		border-bottom: none;
		border-radius: 7px 7px 0 0;
		padding-bottom: 0;
	}

	.characteristics
		.characteristics__blocks
		.characteristics__block:first-of-type
		.right-block {
		border-bottom: none;
		border-radius: 7px 7px 0 0;
		padding-bottom: 0;
	}

	.characteristics
		.characteristics__blocks
		.characteristics__block:last-of-type
		.left-block {
		border-top: none;
		border-radius: 0 7px 7px 7px;
		padding-top: 0;
	}

	.characteristics
		.characteristics__blocks
		.characteristics__block:last-of-type
		.right-block {
		border-top: none;
		padding-top: 0;
		border-radius: 0 0 7px 7px;
	}

	.characteristics .right-block {
		max-width: 100%;
		height: auto;
		border-radius: 7px 7px 7px 7px;
	}

	.characteristics .right-block .one {
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	.recommendations__content h2 {
		font-size: 18px;
	}
	.recommendations__img {
		/* height: 140px; */
		height: 180px;
	}

	.recommendations__img img {
		/* width: 200px; */
		/* height: 160px; */
		width: 300px;
		height: 200px;
		top: -20px;
	}

	.recommendations__blocks {
		/* grid-template-columns: repeat(3, 1fr); */
		row-gap: 30px;
	}

	.recommendations__btn {
		width: 88px;
		margin-bottom: 20px;
	}

	.support__blocks {
		flex-direction: column;
		gap: 20px;
	}

	.support form {
		/* width: 100%; */
	}

	.accordion {
		/* width: 100%; */
	}

	.single__top {
		flex-direction: column;
		margin-top: 50px;
	}

	.single .image-gallery {
		width: 100%;
	}

	.single .image-gallery__main {
		width: 60%;
	}

	.single__content h2 {
		position: absolute;
		top: 180px;
	}
	.footer__blocks::after,
	.footer .line-2::after {
		left: 36.33%;
	}
	.contacts_features {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.map_form {
		max-width: 70%;
		margin: auto;
	}
	.map_contacts_container {
		flex-direction: column-reverse;
	}
	.map_form .wpcf7-response-output {
		max-width: 305px;
	}
	.single__content .popup_content h2 {
		position: unset;
	}
	.price_wrapper span:first-child {
		/* font-size: 18px; */
		font-size: 23px;
	}
	.price_wrapper span:last-child {
		font-size: 18px;
	}
	.accordion__header p,
	.support form input,
	.support form textarea,
	.map_form form input,
	.map_form form textarea,
	.popup_content input {
		font-size: 18px;
	}
	.recommendations__block-wrap {
		/* height: 315px; */
		height: 340px;
	}
	.price_wrapper {
		gap: 0;
	}
	.support__title {
		font-size: 20px;
	}
}

@media (max-width: 756px) {
	.recommendations .line-1 {
		width: 20%;
	}

	.recommendations .line-2 {
		width: 20%;
	}

	.support .line-1 {
		width: 20%;
	}

	.support .line-2 {
		width: 20%;
	}

	.content__buttons {
		-webkit-column-gap: 20px;
		-moz-column-gap: 20px;
		column-gap: 20px;
		row-gap: 12px;
		flex-wrap: wrap;
	}

	.single-descript {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.price-range-wrap {
		width: 100%;
	}
	.footer__blocks::after,
	.footer .line-2::after {
		left: 36.1%;
	}
	.content__title {
		margin-bottom: 45px;
	}
}

@media (max-width: 625px) {
	.footer__blocks::before {
		left: 29%;
	}

	.footer__blocks::after,
	.footer .line-2::after {
		left: 27%;
	}

	.main__block {
		/* margin-left: 0; */
		margin-left: auto;
		margin-right: auto;
		padding: 0 15px 25px 15px;
	}

	.main__block h1 {
		display: flex;
		justify-content: center;
		margin: 0 auto;
		/* font-size: 32px;
		font-weight: 600; */
		line-height: 39.2px;
		text-align: center;
		padding-top: 40px;
	}

	.main__block p {
		font-size: 20px;
		font-weight: 600;
		line-height: 19.6px;
		text-align: center;
		max-width: 260px;
		width: 100%;
		margin: 0 auto;
		padding-bottom: 25px;
	}

	.main .slide {
		/* width: 90%; */
		margin: 0 auto;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.main .slider-buttons {
		top: 40.5%;
	}

	.main .prev-button {
		left: 0;
		left: 5%;
	}

	.main .next-button {
		right: 5%;
		/* right: 35px; */
	}
}

@media (max-width: 620px) {
	.benefits {
		padding: 50px 0 20px 0;
	}

	.benefits::after {
		top: -15px;
	}

	.benefits .title {
		margin-bottom: 25px;
	}

	.benefits__blocks {
		gap: 30px;
		grid-template-columns: repeat(3, 1fr);
	}

	.benefits__block {
		gap: 10px;
	}

	.benefits__block img {
		width: 35px;
		height: 35px;
	}

	.recommendations {
		margin-bottom: 5px;
	}
}

@media (max-width: 576px) {
	.header__blocks {
		gap: 20px;
	}

	.benefits .title {
		/* font-size: 18px;
		font-weight: 600; */
		line-height: 22.05px;
	}

	.recommendations::after {
		background-color: var(--yellow-bg);
	}

	.recommendations::before {
		background-color: var(--yellow-bg);
	}

	.recommendations .line-1::after {
		width: 0;
		height: 0;
	}

	.recommendations .line-2::after {
		width: 0;
		height: 0;
	}

	.recommendations .title {
		/* font-size: 18px;
		font-weight: 600; */
		line-height: 22.05px;
		padding-top: 5px;
		/* padding-bottom: 30px; */
	}

	.support {
		margin-bottom: 30px;
	}

	.support::after {
		background-color: var(--yellow-bg);
	}

	.support::before {
		background-color: var(--yellow-bg);
	}

	.support .line-1::after {
		width: 0;
		height: 0;
	}

	.support .line-2::after {
		width: 0;
		height: 0;
	}

	.support .title {
		/* font-size: 18px;
		font-weight: 600; */
		line-height: 22.05px;
		padding-top: 5px;
		margin-bottom: 30px;
	}

	.filter {
		width: 70%;
	}

	.content .recommendations__blocks {
		/* grid-template-columns: repeat(2, 1fr); */
		/* grid-template-columns: 1fr; */
		-webkit-column-gap: 15px;
		-moz-column-gap: 15px;
		column-gap: 15px;
		row-gap: 30px;
		margin-bottom: 30px;
	}

	.single__top {
		margin-top: 30px;
	}

	.single .image-gallery__main {
		width: 100%;
	}

	.single .image-gallery__main img {
		width: 300px;
		/* width: 250px; */
	}

	.single__content h2 {
		font-size: 16px;
		width: 250px;
		line-height: 19.4px;
	}
	.footer__blocks::after,
	.footer .line-2::after {
		left: 26.5%;
	}
	.wpc-filters-range-column {
		max-width: 35% !important;
	}
	.map_contacts_container {
		gap: 30px;
	}
	.single__content .popup_content h2 {
		font-size: 24px;
		width: 100%;
		margin-top: 20px;
	}
	.recommendations__content h2 {
		/* font-size: 14px; */
	}
}

@media (max-width: 520px) {
	.recommendations__img {
		/* height: 135px; */
		height: 165px;
	}

	.recommendations__img img {
		width: 180px;
		/* height: 140px; */
		height: 180px;
		top: -20px;
	}

	.recommendations__blocks {
		/* grid-template-columns: repeat(2, 1fr); */
		grid-template-columns: 1fr;
		-webkit-column-gap: 8px;
		-moz-column-gap: 8px;
		column-gap: 8px;
	}

	.content {
		width: 100%;
	}

	.content .recommendations__blocks img {
		width: 200px;
		width: 180px;
		/* height: 140px; */
		top: -20px;
		display: flex;
		margin: 0 auto;
	}

	.recommendations__btn {
		margin-bottom: 15px;
	}

	.benefits__block p {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.breadcrumbs .breadcrumbs__current {
		display: inline-block;
		max-width: 150px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.breadcrumbs__list {
		-webkit-column-gap: 10px;
		-moz-column-gap: 10px;
		column-gap: 10px;
		flex-wrap: wrap;
	}

	.breadcrumbs__list #home-icon {
		width: 18px;
		height: 20px;
	}

	.filter {
		width: 100%;
	}

	.content__title {
		font-size: 24px;
		margin-bottom: 24px;
		font-family: Gilroy;
		line-height: 29.4px;
	}

	.characteristics .right-block {
		width: 70%;
	}

	.characteristics .right-block .one {
		margin-top: -25px;
	}
	.wpc-filters-range-column {
		max-width: 30% !important;
	}
	.popup_content {
		max-width: 350px;
	}
	.availability {
		font-size: 16px;
	}
	.single-buy {
		margin-bottom: 30px;
	}
	.attr_val_wrapper {
		font-size: 14px;
	}
}

@media (max-width: 425px) {
	#nav-icon3 {
		width: 28px;
	}

	#nav-icon3 span {
		height: 3px;
	}
	.footer__blocks::after,
	.footer .line-2::after {
		left: 26%;
	}
}

@media (max-width: 420px) {
	.single__top {
		gap: 25px;
	}

	.single-next {
		padding: 0 5px 0 0;
	}

	.single-next:hover {
		background-color: rgba(0, 0, 0, 0);
	}

	.single-prev {
		padding: 0 5px 0 0;
	}

	.single-prev:hover {
		background-color: rgba(0, 0, 0, 0);
	}

	.single .image-gallery__main {
		min-height: 195px;
	}

	.single .image-gallery__main img {
		/* width: 220px; */
		width: 270px;
	}

	.single .image-gallery__thumbnails {
		gap: 3px;
	}

	.single .image-gallery__thumbnails img {
		width: 70px;
		height: 50px;
	}

	.single .image-gallery__main {
		margin-bottom: 10px;
	}

	.single__content-price {
		margin-bottom: 40px;
	}

	.single-buy ul {
		gap: 5px;
		justify-content: space-between;
	}

	.single-buy li {
		width: 100px;
		height: 30px;
	}

	.popup_content {
		max-width: 300px;
	}
}

@media (max-width: 395px) {
	.content__buttons {
		-webkit-column-gap: 10px;
		-moz-column-gap: 10px;
		column-gap: 10px;
		row-gap: 12px;
	}

	.content .reset {
		max-width: 112px;
		width: 100%;
	}
}

@media (max-width: 375px) {
	.footer__blocks::after,
	.footer .line-2::after {
		left: 20%;
	}
	.footer__blocks::before {
		left: 23.35%;
	}
}

@media (max-width: 372px) {
	.characteristics .right-block {
		width: 80%;
	}

	.characteristics .right-block .one {
		margin-top: 0;
	}
}

@media (max-width: 350px) {
	.recommendations .line-1 {
		width: 17%;
	}

	.recommendations .line-2 {
		width: 17%;
	}

	.support .line-1 {
		width: 17%;
	}

	.support .line-2 {
		width: 17%;
	}
	.footer__blocks::after,
	.footer .line-2::after {
		left: 19.5%;
	}
}

@media (max-width: 340px) {
	.characteristics .right-block .one {
		margin-top: 50px;
	}
}

.woocommerce-result-count,
.woocommerce-notices-wrapper {
	display: none;
}
