@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
html,
body,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

html {
	line-height: 1.15;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-size: 100%;
	vertical-align: baseline;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

input[type='checkbox'],
input[type='radio'],
input[type='file'] {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}

html,
body {
	scroll-behavior: smooth;
	font-style: normal;
	font-weight: 400;
	font-family: 'Ubuntu', sans-serif;
	background: #ffffff;
	color: #000000;
}

button {
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

a {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.lock-scroll {
	overflow: hidden;
}

.hidden {
	display: none;
}

.breadcrumbs {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.breadcrumbs {
		margin-bottom: 16px;
	}
}
.breadcrumbs__item {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
	text-transform: capitalize;
}

@media (max-width: 767px) {
	.input {
		width: 100%;
	}
}
.input label {
	display: block;
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	margin-bottom: 10px;
}
.input input {
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	padding: 16px 15px;
	width: 299px;
	height: 50px;
	border-radius: 8px;
	border: 1px solid #f2f2f2;
	background: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.input input {
		width: 356px;
	}
}
@media (max-width: 767px) {
	.input input {
		width: 100%;
	}
}
.input input::placeholder {
	color: #9599aa;
	opacity: 1;
}
.input input:hover {
	border-color: #ffe754;
}
.input input:focus {
	border-color: #ffe754;
}

.textarea {
	width: 100%;
}
.textarea label {
	display: block;
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	margin-bottom: 10px;
}
.textarea textarea {
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	padding: 16px 15px;
	width: 100%;
	height: 120px;
	border-radius: 8px;
	border: 1px solid #f2f2f2;
	background: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	resize: none;
}
@media (max-width: 1024px) {
	.textarea textarea {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.textarea textarea {
		width: 100%;
	}
}
.textarea textarea::placeholder {
	color: #9599aa;
	opacity: 1;
}
.textarea textarea:hover {
	border-color: #ffe754;
}
.textarea textarea:focus {
	border-color: #ffe754;
}

.radio-group {
	display: grid;
	gap: 16px;
	width: 100%;
}

.radio {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 9px;
	cursor: pointer;
	user-select: none;
}

/* Ховаємо нативну радіокнопку */
.radio input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.radio__control {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #f2f2f2;
	display: grid;
	place-items: center;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/* Внутрішня крапка */
.radio__control::after {
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ffdc00;
	transform: scale(0);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.radio input:checked + .radio__control::after {
	transform: scale(1);
}

.radio__label {
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}

.counter {
	display: none;
	flex-direction: column;
	gap: 10px;
	user-select: none;
}
@media (max-width: 1024px) {
	.counter {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}
@media (max-width: 1024px) {
	.counter {
		width: 100%;
		justify-content: flex-start;
	}
}
.counter__label {
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
}
.counter__box {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 70px;
	height: 50px;
	background: #f2f2f2;
}
.counter__value {
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
}
.counter__controls {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.counter__btn {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dropdowns {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
}
@media (max-width: 1024px) {
	.dropdowns {
		flex-direction: row;
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.dropdowns {
		flex-direction: column;
		gap: 20px;
	}
}

.field {
	position: relative;
	width: 100%;
}
.field label {
	display: block;
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	margin-bottom: 10px;
}
.field .select-trigger {
	width: 100%;
	border-radius: 8px;
	padding: 16px 15px;
	border: 1px solid #f5f6f7;
	background: #ffffff;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	cursor: pointer;
}
.field .custom-options {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: #ffffff;
	border: 1px solid #f5f6f7;
	border-radius: 8px;
	display: none;
	flex-direction: column;
	z-index: 10;
}
.field .custom-option {
	padding: 12px 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	color: #222222;
	cursor: pointer;
}
.field .custom-option:hover {
	background: #f0f0f0;
}
.field.open .custom-options {
	display: flex;
	max-height: 200px;
	overflow-y: auto;
}
.field::after {
	content: '';
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateX(-50%) rotateX(0deg);
	width: 15px;
	height: 30px;
	background: url('../img/icon-big-chevron.svg') no-repeat center/contain;
	pointer-events: none;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.field.open::after {
	transform: translateX(-50%) rotateX(180deg);
}

.password-field {
	position: relative;
	width: 100%;
}

.password-field input {
	width: 100%;
	padding-right: 40px;
}

.password-field button {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.icon-eye-closed {
	display: none;
}

button.is-visible .icon-eye-open {
	display: none;
}

button.is-visible .icon-eye-closed {
	display: inline;
}

.row {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
@media (max-width: 767px) {
	.row {
		flex-direction: column;
	}
}
.row .input {
	width: 100%;
}
.row input {
	width: 100%;
}

.container {
	max-width: 1440px;
	margin: auto;
	padding: 0 24px;
}
@media (max-width: 1024px) {
	.container {
		padding: 0 16px;
	}
}

.header-wrap {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	z-index: 1111;
}

.header {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #eef3f8;
	z-index: 111;
}
@media (max-width: 1024px) {
	.header {
		padding-top: 16px;
		padding-bottom: 16px;
	}
}
.header__left {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
}
@media (max-width: 1024px) {
	.header__left {
		gap: 8px;
	}
}
.header__logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}
@media (max-width: 1024px) {
	.header__logo {
		width: 95px;
		height: 56px;
		width: 95px;
		height: 56px;
		aspect-ratio: 95/56;
	}
}
@media (max-width: 767px) {
	.header__logo {
		width: 81px;
		height: 48px;
		aspect-ratio: 27/16;
	}
}
.header__btn-catalog {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	color: #171e2f;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.header__btn-catalog:hover {
	background: #ffe754;
}
.header__nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
@media (max-width: 1024px) {
	.header__nav {
		display: none;
	}
}
.header__nav-item {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 10px 9px 10px;
	color: #171e2f;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-bottom: 1px solid transparent;
}
.header__nav-item.active {
	border-color: #ffdc00;
}
.header__nav-item.active span {
	text-shadow: 0.3px 0 0 currentColor;
}
.header__nav-item span {
	font-weight: 400;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.header__nav-item:hover {
	border-color: #ffdc00;
}
.header__nav-item:hover span {
	text-shadow: 0.3px 0 0 currentColor;
}
.header__center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.header__search {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 250px;
	width: 100%;
	height: 48px;
}
@media (max-width: 1024px) {
	.header__search {
		width: 250px;
	}
}
@media (max-width: 767px) {
	.header__search {
		display: none;
	}

	.mobile-menu-overlay .header__search {
		display: block;
		width: 100%;
	}

	.mobile-menu-overlay .header__center {
		width: 100%;
	}
}
.header__search-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}
.header__search-input {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 0 16px 0 40px;
	color: #171e2f;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	border-radius: 14px;
	border: 1px solid #f2f2f2;
	background: #f2f2f2;
}
.header__search-input::placeholder {
	opacity: 1;
	color: #707070;
}
.header__right {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}
@media (max-width: 767px) {
	.header__right {
		gap: 8px;
	}
}
.header__btn-cart {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
}
.header__btn-cart--calc {
	position: absolute;
	top: -4px;
	right: -4px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	color: #222222;
	font-size: 11px;
	font-weight: 400;
	line-height: 16.5px;
	text-align: center;
	letter-spacing: 0.064px;
	border-radius: 16777200px;
	background: #ffdc00;
}
.header__btn-cart--icon {
	width: 20px;
	height: 20px;
}
.header__btn-user {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
}
.header__btn-user--icon {
	width: 20px;
	height: 20px;
}
.header__switch-lang {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
@media (max-width: 767px) {
	.header__switch-lang {
		display: none;
	}
}
.header__switch-lang-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #9599aa;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.15px;
}
.header__switch-lang-btn::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	display: block;
	width: 100%;
	height: 2px;
	background: transparent;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.header__switch-lang-btn:hover {
	color: #222222;
	transform: translateY(-2px);
}
.header__switch-lang-btn:hover::after {
	background: #ffdc00;
}
.header__switch-lang-btn.active {
	color: #222222;
	transform: translateY(-2px);
}
.header__switch-lang-btn.active::after {
	background: #ffdc00;
}
.header__switch-burger {
	display: none;
}
@media (max-width: 1024px) {
	.header__switch-burger {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.catalog-menu-overlay {
	position: absolute;
	left: 0;
	top: 118px;
	width: 100%;
	height: calc(100vh - 118px);
	background: rgba(26, 26, 26, 0.6);
	backdrop-filter: blur(6px);
	z-index: 111;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	overflow: scroll;
}
@media (max-width: 1024px) {
	.catalog-menu-overlay {
		top: 80px;
		height: calc(100vh - 80px);
	}
}
.catalog-menu-overlay.open-catalog-menu {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}

.catalog-menu-wrap {
	padding: 45px 102px;
	border-bottom: 1px solid #ffdc00;
	background: #ffffff;
}
@media (max-width: 1024px) {
	.catalog-menu-wrap {
		padding: 24px 20px;
	}
}
@media (max-width: 767px) {
	.catalog-menu-wrap {
		padding: 16px;
	}
}

.catalog-menu {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	row-gap: 48px;
}
@media (max-width: 1024px) {
	.catalog-menu {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.catalog-menu {
		display: none;
	}
}
.catalog-menu__category {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
.catalog-menu__category-img {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	object-fit: cover;
	border: 1px solid #f2f2f2;
	box-shadow: 0 0 4px 0 rgba(174, 175, 178, 0.25);
}
.catalog-menu__category-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.catalog-menu__category-item {
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
.catalog-menu__category-item a {
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
.catalog-menu-close {
	display: none;
}
@media (max-width: 1024px) {
	.catalog-menu-close {
		margin: auto;
		margin-top: 24px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.catalog-mobile {
	display: none;
}
@media (max-width: 767px) {
	.catalog-mobile {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 24px;
	}
}
.catalog-mobile__item {
	width: 100%;
}
.catalog-mobile__item.open-item .catalog-mobile__item-body {
	opacity: 1;
	max-height: 400px;
}
.catalog-mobile__item.open-item .catalog-mobile__item-top > p {
	text-shadow: 0.3px 0 0 currentColor;
}
.catalog-mobile__item.open-item .catalog-mobile__item-top > img {
	transform: rotateX(180deg);
}
.catalog-mobile__item-top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.catalog-mobile__item-top p {
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.catalog-mobile__item-top img {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.catalog-mobile__item-body {
	overflow: hidden;
	opacity: 0;
	max-height: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.catalog-mobile__item-list {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.catalog-mobile__item-item {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
}

.mobile-menu-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 26, 26, 0.6);
	backdrop-filter: blur(6px);
	z-index: 1111;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.mobile-menu-overlay.open-menu {
	opacity: 1;
	pointer-events: all;
}
.mobile-menu-overlay.open-menu .mobile-menu-wrap {
	left: 0;
}

.mobile-menu-wrap {
	width: 372px;
	height: 100%;
	padding: 12px 0 439px 0;
	background: #ffffff;
	position: relative;
	left: -400px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
	.mobile-menu-wrap {
		width: 100%;
	}
}

.mobile-menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
.mobile-menu__top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.mobile-menu__logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.mobile-menu__logo > img {
	width: 95px;
	height: 56px;
	aspect-ratio: 95/56;
}
.mobile-menu__top-right {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}
.mobile-menu__switch-lang {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
@media (max-width: 767px) {
	.mobile-menu__switch-lang {
		display: none;
	}
}
.mobile-menu__switch-lang-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #9599aa;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.15px;
}
.mobile-menu__switch-lang-btn::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	display: block;
	width: 100%;
	height: 2px;
	background: transparent;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.mobile-menu__switch-lang-btn:hover {
	color: #222222;
	transform: translateY(-2px);
}
.mobile-menu__switch-lang-btn:hover::after {
	background: #ffdc00;
}
.mobile-menu__switch-lang-btn.active {
	color: #222222;
	transform: translateY(-2px);
}
.mobile-menu__switch-lang-btn.active::after {
	background: #ffdc00;
}
.mobile-menu__close {
	display: flex;
	justify-content: center;
	align-items: center;
}
.mobile-menu__btn-catalog {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	color: #222222;
	width: 100%;
	font-size: 14;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.mobile-menu__btn-catalog:hover {
	background: #ffe754;
}
.mobile-menu__nav {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
.mobile-menu__nav-item {
	display: flex;
	flex-direction: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 10px;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
.mobile-menu__nav-line {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #ffdc00;
}
.mobile-menu__nav-sub-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin-left: 16px;
}
.mobile-menu__nav-sub-item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
	padding: 8px 16px;
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}

.cart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 26, 26, 0.6);
	backdrop-filter: blur(6px);
	z-index: 120;
	opacity: 0;
	pointer-events: none;
	overflow: auto;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.cart-overlay {
		top: 80px;
		height: calc(100% - 80px);
	}
}
@media (max-width: 767px) {
	.cart-overlay {
		top: 72px;
		height: calc(100% - 72px);
	}
}
.cart-overlay.visible-cart {
	opacity: 1;
	pointer-events: all;
}
.cart-overlay.visible-cart .cart {
	transform: translate(0);
}

.cart {
	width: 495px;
	height: 100%;
	background: #ffffff;
	margin-left: auto;
	padding: 32px;
	transform: translateX(10px);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.cart {
		width: 425px;
		padding: 32px;
	}
}
@media (max-width: 767px) {
	.cart {
		width: 100%;
		padding: 24px 16px;
		transform: translateX(0);
		transform: translateY(-10px);
	}
}
.cart__top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.cart__top p {
	color: #222222;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
.cart__top-close {
	display: flex;
	justify-content: center;
	align-items: center;
}
.cart__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 32px;
}
.cart__item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.cart__item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 8px;
	border: 1px solid #f5f6f7;
}
.cart__item-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
.cart__item-info--top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}
.cart__item-info--title {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.cart__item-info--close {
	display: flex;
	justify-content: center;
	align-items: center;
}
.cart__item-info--bottom {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}
.cart .quantity-counter {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border: 1px solid #f5f6f7;
	border-radius: 8px;
	padding: 6px 12px;
}
.cart .quantity-counter button {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	font-size: 16px;
}
.cart .quantity-counter .count {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.cart__item-info--price {
	color: #222222;
	font-size: 24px;
	font-weight: 500;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
}
.cart__details {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #f5f6f7;
	margin-bottom: 8px;
}
.cart__details-item {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.cart__details-item p {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.cart__total {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.cart__total p {
	color: #222222;
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
.cart__btns {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.cart__btn--call {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	width: 50%;
	height: 44px;
	border: 2px solid #ffdc00;
}
.cart__btn--order {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
	white-space: nowrap;
	letter-spacing: -0.312px;
	border-radius: 8px;
	width: 50%;
	height: 44px;
	background: #ffdc00;
}

.hero-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 465px;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.hero-wrap {
		height: 250px;
	}
}
@media (max-width: 767px) {
	.hero-wrap {
		height: 140px;
	}
}
.hero-wrap__swiper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-wrap .swiper-slide {
	width: 100%;
}

.hero-wrap .swiper-slide > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-wrap__pagination {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.swiper-pagination-bullet {
	background: rgb(105, 105, 105);
	opacity: 1 !important;
	box-shadow: none !important;
}
.swiper-pagination-bullet-active {
	background: rgb(0, 0, 0) !important;
}

.hero {
	position: absolute;
	top: 40%;
	left: 65%;

	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.hero::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 631px;
	height: 299px;
	border-radius: 631px;
	background: rgba(0, 0, 0, 0.6);
	filter: blur(60px);
	z-index: -1;
}
@media (max-width: 1024px) {
	.hero::after {
		height: 211px;
	}
}
@media (max-width: 767px) {
	.hero::after {
		width: 354px;
	}
}
.hero__title {
	color: #ffffff;
	font-size: 48px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 12px;
}
@media (max-width: 767px) {
	.hero__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: center;
	}
}
.hero__text {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.312px;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.hero__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 32px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
	max-width: 100px;
	margin-left: 40%;
}

@media (max-width: 767px) {
	.hero__btn {
		margin-left: 30%;
	}
}

.hero__btn:hover {
	background: #ffe754;
}

.hero__pagination-prev {
	position: absolute;
	left: 5.5%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	border: 1px solid #ffe754;
	z-index: 99;
}

.hero__pagination-next {
	position: absolute;
	right: 5.5%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	border: 1px solid #ffe754;
	z-index: 99;
}

@media (max-width: 1024px) {
	.hero__pagination-prev {
		display: none;
	}
	.hero__pagination-next {
		display: none;
	}
}

.categories {
	padding: 80px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.categories {
		padding: 48px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.categories {
		padding: 48px 20px 80px 20px;
	}
}
.categories__top {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
	margin-bottom: 22px;
}
.categories__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.categories__top {
		gap: 16px;
		margin-bottom: 16px;
	}
	.categories__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.categories__line {
	display: block;
	width: 100%;
	height: 4px;
	background: #ffdc00;
}
.categories__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: start;
}
@media (max-width: 1024px) {
	.categories__list {
		row-gap: 40px;
	}
}
@media (max-width: 767px) {
	.categories__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		row-gap: 24px;
	}
}
.categories__item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.categories__item-link {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
}
.categories__item-link:hover .categories__item-img {
	box-shadow: 0 0 4px 0 rgba(255, 220, 0, 0.6);
}
.categories__item-link:hover .categories__item-name {
	color: #ffdc00;
}
.categories__item-img {
	overflow: hidden;
	height: 300px;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 0 4px 0 rgba(174, 175, 178, 0.25);
}
@media (max-width: 1024px) {
	.categories__item-img {
		width: 164px;
		height: 156px;
	}
}
.categories__item-name {
	color: #222222;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
	.categories__item-name {
		font-size: 16px;
		font-weight: 700;
		line-height: normal;
		text-align: center;
	}
}

.why-us-wrap {
	padding: 56px 0;
	background: #f5f6f7;
}
@media (max-width: 1024px) {
	.why-us-wrap {
		padding: 56px 4px;
	}
}

.why-us {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
}
@media (max-width: 1024px) {
	.why-us {
		flex-direction: column;
		gap: 40px;
	}
}
.why-us__left {
	width: 501px;
}
@media (max-width: 1024px) {
	.why-us__left {
		width: 100%;
	}
}
.why-us__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 18px;
}
@media (max-width: 767px) {
	.why-us__title {
		font-size: 24px;
		margin-bottom: 16px;
	}
}
.why-us__text {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}

.why-us__right {
	width: 501px;
}

@media (max-width: 1024px) {
	.why-us__right {
		width: 100%;
	}
}
.why-us__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.why-us__item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.why-us__item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1/1;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	background: #ffdc00;
}
.why-us__item-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.why-us__item-info--title {
	color: #222222;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
.why-us__item-info--text {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}

.products {
	padding: 120px 78px;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.products {
		padding: 120px 20px;
	}
}
@media (max-width: 767px) {
	.products {
		padding: 80px 20px;
	}
}
.products__top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
@media (max-width: 1024px) {
	.products__top {
		justify-content: center;
		margin-bottom: 16px;
	}
}
.products__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
@media (max-width: 767px) {
	.products__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.products__navigation {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
@media (max-width: 1024px) {
	.products__navigation {
		display: none;
	}
}
.products__pagination-prev {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	border-radius: 56px;
	border: 1px solid #222222;
	background: #ffdc00;
}
.products__pagination-next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	border-radius: 56px;
	border: 1px solid #222222;
	background: #ffdc00;
}
.products .swiper-button-disabled {
	background: #ffffff;
}
.products__swiper {
	width: calc(100% + 102px);
	margin-right: -102px;
	display: flex;
	align-items: stretch;
}
@media (min-width: 1920px) {
	.products__swiper {
		width: 100%;
		margin-right: 0;
	}
}
@media (max-width: 1024px) {
	.products__swiper {
		width: calc(100% + 20px);
		margin-right: -20px;
	}
}
.products__item {
	position: relative;
	display: flex !important;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #eef3f8;
	background: #ffffff;
	height: auto !important;
}
.products__item-mark {
	position: absolute;
	top: 16px;
	left: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 12px;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
	border-radius: 8px;
	background: #ffdc00;
}
.products__item-img {
	object-fit: contain;
	width: 100%;
	height: 220px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 16px;
}
.products__item-name {
	margin-right: auto;
	color: #222222;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	margin-bottom: 8px;
}
@media (max-width: 767px) {
	.products__item-name {
		font-size: 16px;
		font-weight: 400;
		line-height: normal;
		text-align: left;
	}
}
.products__item-desc {
	color: #9599aa;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	margin-bottom: 8px;
}
.products__item-text {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}

.news__item-img {
	object-fit: cover;
}
.products__item-text:has(+ .product__price) {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 5px;
}
.products__item .product__btn-cart {
	height: 56px;
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
}
.products__list * {
	cursor: pointer;
}

@media (max-width: 767px) {
	.products__item .product__btn-cart {
		white-space: wrap;
	}
}

.product__control .product__btn-phone,
.product__control .catalog-second__item-btn--price {
	height: 56px;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
}

.catalog-second__item .product__btn-cart {
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	height: 56px;
}

.catalog-second__item-desc:has(+ .product__price) {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	.products__item-text {
		font-size: 14px;
		font-weight: 300;
		line-height: normal;
		text-align: left;
	}
	.products__item-text:has(+ .product__price) {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		margin-bottom: 18px;
	}
}
.products__item-bottom {
	margin-top: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}
.products__item-more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 56px;
	border-radius: 8px;
	padding: 12px 16px;
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	border: 2px solid #ffdc00;
}
.products__item-more:hover {
	background: #ffe754;
}
.products__item-price {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 56px;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	color: #222222;
	background: #ffdc00;
}
.products__item-price:hover {
	background: #ffe754;
}

.product-wrap {
	padding: 40px 78px 78px;
}
@media (max-width: 1024px) {
	.product-wrap {
		padding: 16px 20px 20px;
	}
}
@media (max-width: 767px) {
	.product-wrap {
		padding: 16px 16px 16px;
	}
}

.product {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 1024px) {
	.product {
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.product {
		flex-direction: column;
		gap: 16px;
	}
}
.product__left {
	width: 711px;
}
@media (max-width: 1024px) {
	.product__left {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.product__left {
		width: 100%;
	}
}
.product__info-mobile {
	display: none;
}
@media (max-width: 767px) {
	.product__info-mobile {
		display: block;
	}
}
.product__slider {
	margin-bottom: 48px;
}
@media (max-width: 1024px) {
	.product__slider {
		margin-bottom: 25px;
	}
}
.product__gallery {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	height: 540px;
}
@media (max-width: 1024px) {
	.product__gallery {
		flex-direction: column-reverse;
		height: auto !important;
	}
}
.product__swiper-thumb,
.product__swiper {
	overflow: hidden;
	height: 100% !important;
}
@media (max-width: 1024px) {
	.product .thumbs-swiper {
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	.product .thumbs-swiper {
		display: none;
	}
}
.product .thumbs-swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px !important;
	height: 100px !important;
	border-radius: 8px !important;
	border: 1px solid #eef3f8;
	overflow: hidden;
	cursor: pointer;
}
.product .main-swiper {
	position: relative;
	width: 601px;
	height: 533px;
	border-radius: 8px;
	border: 1px solid #eef3f8;
}
@media (max-width: 1024px) {
	.product .main-swiper {
		width: 100%;
		height: 332px;
	}
}
.product .main-swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}
.product .main-swiper .badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: #ff6c00;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 110%;
	text-align: left;
	padding: 6px 10px;
	border-radius: 6px;
	z-index: 10;
}
.product .main-swiper .badge.instock {
	background: #27B11A;
}
.product .main-swiper .badge.outstock {
	background: #797979; 
}
@media (max-width: 1024px) {
	.product .main-swiper .badge {
		font-size: 10px;
		font-weight: 400;
		line-height: 110%;
		text-align: left;
	}
}
.product__video {
	width: 711px;
	height: 397px;
	border-radius: 8px;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.product__video {
		width: 100%;
		height: 198px;
		border-radius: 8px;
	}
}
.product__video iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {
	.product__video {
		display: none;
	}
}
.product__video-mobile {
	display: none;
	overflow: hidden;
}
@media (max-width: 767px) {
	.product__video-mobile {
		display: block;
		width: 100%;
		height: 204px;
		border-radius: 8px;
		margin-bottom: 16px;
	}
}
.product__video-mobile iframe {
	width: 100%;
	height: 100%;
}
.product__right {
	width: 501px;
}
.product__right h3 {
	margin-bottom: 20px;
}
.product__right .form-group {
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.product__right {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.product__right {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.product__info {
		display: none;
	}
}
.product__article {
	color: #707070;
	font-size: 10px;
	font-weight: 400;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.product__article {
		margin-bottom: 12px;
	}
}
.product__title {
	color: #222222;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 12px;
}
@media (max-width: 767px) {
	.product__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.product__producer {
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.product__producer {
		margin-bottom: 16px;
	}
}
.product__price {
	color: #222222;
	font-size: 24px;
	font-weight: 500;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 12px;
}
@media (max-width: 767px) {
	.product__price {
		display: none;
	}
	.products__item .product__price {
		display: block;
	}
}
.product__price-mobile {
	display: none;
}
@media (max-width: 767px) {
	.product__price-mobile {
		display: block;
		font-size: 24px;
		font-weight: 500;
		line-height: 110%;
		text-align: left;
		margin-left: auto;
	}
}
.product__control {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 40px;
	margin-top: 20px;
	margin-bottom: 24px;
}
@media (max-width: 1024px) {
	.product__control {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 24px;
	}
}
.product__btns {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
@media (max-width: 1024px) {
	.product__btns {
		width: 100%;
		justify-content: space-between;
	}
}
.product__btn-cart {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
	border: 2px solid #ffdc00;
}
.product__btn-cart:hover {
	background: #ffe754;
	border-color: #ffe754;
}
@media (max-width: 1024px) {
	.product__btn-cart {
		width: 50%;
		white-space: wrap;
	}
}
.product__btn-phone {
	width: 100%;
	padding: 12px 16px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	border: 2px solid #ffdc00;
}
.product__btn-phone:hover {
	background: #ffe754;
}
@media (max-width: 1024px) {
	.product__btn-phone {
		width: 50%;
		white-space: nowrap;
	}
}
.product__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.product__list-item {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px solid #eef3f8;
}
.product__list-item.open-list .product__list-item--title {
	text-shadow: 0.5px 0 0 currentColor;
}
.product__list-item.open-list .product__list-item--icon {
	transform: rotate(45deg);
}
.product__list-item.open-list .product__list-item--body {
	max-height: 500px;
}
.product__list-item--top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.product__list-item--top:hover .product__list-item--title {
	color: #ffdc00;
}
.product__list-item--top:hover .product__list-item--icon {
	fill: #ffdc00;
}
.product__list-item--title {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.product__list-item--icon {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	fill: #222222;
}
.product__list-item--body {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.product__list-item--text {
	padding-top: 8px;
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
}
.product__list-item--list {
	padding-top: 8px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.product__list-item--item {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
}
.product__list-item--pre-title {
	margin-top: 24px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.product__list-item--characteristics {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.product__list-item--characteristic {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	color: #222222;
	font-size: 12px;
	font-weight: 400;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
	padding: 6px 0;
	border-bottom: 1px solid #f2f2f2;
}
.product__guarantee {
	margin-top: 24px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}
.product__guarantee p {
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
}
.product__guarantee-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #eef3f8;
}
.product .swiper-pagination {
	display: none;
}
@media (max-width: 767px) {
	.product .swiper-pagination {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 6px;
	}
}
.product .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 32px;
	aspect-ratio: 1/1;
	background: #f2f2f2;
	margin: 0 !important;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 1;
}
.product .swiper-pagination-bullet-active {
	background: #ffdc00;
}

.partners-wrap {
	padding: 40px 0;
	background: #f5f6f7;
}
@media (max-width: 1024px) {
	.partners-wrap {
		padding: 40px 0;
	}
}
@media (max-width: 767px) {
	.partners-wrap .container {
		padding: 0;
	}
}

.partners {
	overflow: hidden;
}
.partners__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
	letter-spacing: -0.312px;
	margin-bottom: 32px;
}
@media (max-width: 767px) {
	.partners__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: center;
		margin-bottom: 24px;
	}
}
.partners__track {
	display: flex;
	width: max-content;
	animation: marquee-infinite 28s linear infinite;
	animation-play-state: running;
}
.partners__track:hover {
	animation-play-state: paused;
}
.partners__list {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}
.partners__item {
	flex: 0 0 auto;
	margin-right: 100px;
}
@media (max-width: 767px) {
	.partners__item {
		margin-right: 15px;
	}
}

@keyframes marquee-infinite {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-50%);
	}
}
.reviews {
	padding: 120px 78px;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.reviews {
		padding: 120px 20px;
	}
}
@media (max-width: 767px) {
	.reviews {
		padding: 80px 20px;
	}
}
.reviews__top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
@media (max-width: 1024px) {
	.reviews__top {
		justify-content: center;
		margin-bottom: 16px;
	}
}
.reviews__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
@media (max-width: 767px) {
	.reviews__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.reviews__navigation {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
@media (max-width: 1024px) {
	.reviews__navigation {
		display: none;
	}
}
.reviews__pagination-prev {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	border-radius: 56px;
	border: 1px solid #222222;
	background: #ffdc00;
}
.reviews__pagination-next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	border-radius: 56px;
	border: 1px solid #222222;
	background: #ffdc00;
}
.reviews .swiper-button-disabled {
	background: #ffffff;
}
.reviews__swiper {
	width: calc(100% + 102px);
	margin-right: -102px;
	display: flex;
	align-items: stretch;
}
@media (min-width: 1920px) {
	.reviews__swiper {
		width: 100%;
		margin-right: 0;
	}
}
@media (max-width: 1024px) {
	.reviews__swiper {
		width: calc(100% + 20px);
		margin-right: -20px;
	}
}
.reviews__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #eef3f8;
	background: #ffffff;
	height: auto !important;
}
.reviews__item-rate {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 2px;
	margin-bottom: 16px;
}
.reviews__item-quote {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	font-style: italic;
	margin-bottom: 8px;
}
.reviews__item-text {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 16px;
	min-height: 308px;
}
.reviews__item-bottom {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.reviews__item-name {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
.reviews__item-date {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
.reviews__btn {
	margin: auto;
	margin-top: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	color: #222222;
	border-radius: 8px;
	background: #ffdc00;
}
.reviews__btn:hover {
	background: #ffe754;
}
@media (max-width: 767px) {
	.reviews__btn {
		font-size: 14px;
		font-weight: 700;
		line-height: normal;
		text-align: left;
	}
}

.updates {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
	background: #f5f6f7;
	margin-bottom: 120px;
}
@media (max-width: 1024px) {
	.updates {
		flex-direction: column;
		gap: 0;
	}
}
@media (max-width: 767px) {
	.updates {
		margin-bottom: 80px;
	}
}
.updates__left {
	width: 50%;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.updates__left {
		width: 100%;
		height: 465px;
		object-fit: cover;
	}
}
@media (max-width: 767px) {
	.updates__left {
		height: 200px;
	}
}
.updates__right {
	max-width: 600px;
	width: 100%;
}
@media (max-width: 1024px) {
	.updates__right {
		max-width: 100%;
		padding: 24px;
	}
}
@media (max-width: 767px) {
	.updates__right {
		padding: 16px;
	}
}
.updates__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	margin-bottom: 16px;
}
@media (max-width: 767px) {
	.updates__title {
		font-size: 24px;
	}
}
.updates__text {
	color: #222222;
	font-size: 20px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 32px;
}
@media (max-width: 767px) {
	.updates__text {
		font-size: 16px;
	}
}
.updates__form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.updates__form-row {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}
@media (max-width: 767px) {
	.updates__form-row {
		flex-direction: column;
		width: 100%;
	}
}
.updates__form-btn {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 328px;
	padding: 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	color: #222222;
	border-radius: 8px;
	background: #ffdc00;
}
.updates__form-btn:hover {
	background: #ffe754;
}
@media (max-width: 767px) {
	.updates__form-btn {
		width: 100%;
	}
}

.custom-checkbox {
	margin-top: 24px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
	cursor: pointer;
}

.custom-checkbox input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.checkmark {
	width: 18px;
	height: 18px;
	border-radius: 2px;
	border: 1px solid #ffdc00;
	flex-shrink: 0;
	position: relative;
	margin-top: 2px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/* Галочка */
.checkmark::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 1px;
	width: 4px;
	height: 9px;
	border: solid #171e2f;
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
	opacity: 0;
}

/* Стан checked */
.custom-checkbox input:checked + .checkmark {
	background-color: #ffdc00;
	border-color: #ffdc00;
}

.custom-checkbox input:checked + .checkmark::after {
	opacity: 1;
}

/* Hover */
.custom-checkbox:hover .checkmark {
	background-color: #ffe754;
}

.intro {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 180px;
	z-index: 1;
	overflow: hidden;
}
.intro.search {
	position: static;
}
@media (max-width: 1024px) {
	.intro {
		height: 207px;
	}
}
@media (max-width: 767px) {
	.intro {
		height: 120px;
	}
}
.intro::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 631px;
	height: 179px;
	border-radius: 631px;
	background: rgba(0, 0, 0, 0.6);
	filter: blur(60px);
	z-index: -1;
}
@media (max-width: 1024px) {
	.intro::after {
		height: 138px;
	}
}
@media (max-width: 767px) {
	.intro::after {
		width: 368px;
	}
}
.intro__title {
	margin: auto;
	color: #ffffff;
	font-size: 48px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
	text-transform: uppercase;
	max-width: 819px;
	width: 100%;
}
@media (max-width: 767px) {
	.intro__title {
		font-size: 24px;
	}
}

.catalog {
	padding: 32px 102px 104px 102px;
}
@media (max-width: 1024px) {
	.catalog {
		padding: 24px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.catalog {
		padding: 24px 16px 80px 16px;
	}
}
.catalog__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 1024px) {
	.catalog__list {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 40px;
	}
}
@media (max-width: 767px) {
	.catalog__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		row-gap: 32px;
	}
}
.catalog__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
}
.catalog__item:hover .catalog__item-img {
	box-shadow: 0 0 4px 0 #ffdc00;
}
.catalog__item:hover .catalog__item-title {
	color: #ffdc00;
}
.catalog__item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 300px;
	border-radius: 8px;
	box-shadow: 0 0 4px 0 rgba(174, 175, 178, 0.25);
	overflow: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.catalog__item-img img {
	object-fit: cover;
	height: 100%;
}
@media (max-width: 1024px) {
	.catalog__item-img {
		height: 156px;
	}
}
.catalog__item-title {
	color: #222222;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	letter-spacing: -0.312px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.catalog__item-title {
		font-size: 16px;
		font-weight: 400;
		line-height: normal;
		text-align: center;
	}
}

.catalog-second {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	padding: 32px 102px 50px 102px;
}
@media (max-width: 1024px) {
	.catalog-second {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 24px;
		padding: 24px 20px 32px 20px;
	}
}
@media (max-width: 767px) {
	.catalog-second {
		padding: 24px 16px 24px 14px;
	}
}
.catalog-second .filter-mobile-open {
	display: none;
}
@media (max-width: 1024px) {
	.catalog-second .filter-mobile-open {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 8px;
		color: #222222;
		font-size: 20px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
		letter-spacing: -0.312px;
		padding: 20px 16px;
		border-radius: 12px;
		background: #f5f6f7;
	}
}
.catalog-second .filter-mobile-open__plus {
	margin-left: auto;
}
.catalog-second .filter-overlay {
	display: none;
}
@media (max-width: 1024px) {
	.catalog-second .filter-overlay {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: rgba(26, 26, 26, 0.6);
		backdrop-filter: blur(6px);
		z-index: 200;
		opacity: 0;
		pointer-events: none;
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		overflow: auto;
	}
}
.catalog-second .filter-overlay.open-mobile-filter {
	opacity: 1;
	pointer-events: all;
}
.catalog-second .filter-overlay.open-mobile-filter .filter {
	transform: translateX(0px);
	transform: translateY(0px);
}
.catalog-second .filter {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	flex-shrink: 0;
	width: 291px;
	padding: 16px;
	border-radius: 12px;
	background: #f5f6f7;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.catalog-second .filter {
		width: 374px;
		border-radius: 0;
		padding: 16px 20px;
		transform: translateX(-10px);
	}
}
@media (max-width: 767px) {
	.catalog-second .filter {
		width: 100%;
		transform: translateX(0px);
		transform: translateY(-10px);
	}
}
.catalog-second .filter.desktop {
	display: flex;
}
@media (max-width: 1024px) {
	.catalog-second .filter.desktop {
		display: none;
	}
}
.catalog-second .filter.mobile {
	display: none;
}
@media (max-width: 1024px) {
	.catalog-second .filter.mobile {
		display: flex;
	}
}
.catalog-second .filter__title {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	color: #222222;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	padding: 12px 0;
}
.catalog-second .filter__title-close {
	margin-left: auto;
}
.catalog-second .filter__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 14px;
}
.catalog-second .filter__item {
	width: 100%;
}
.catalog-second .filter__item.open-filter-item .filter__item-top--icon {
	transform: rotateX(180deg);
}
.catalog-second .filter__item.open-filter-item .filter__item-body {
	max-height: 500px;
}
.catalog-second .filter__item-top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.catalog-second .filter__item-top p {
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
.catalog-second .filter__item-top--icon {
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.catalog-second .filter__item-body {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.catalog-second .filter__item-list {
	padding-top: 14px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 12px;
	overflow: auto;
	max-height: 350px;
}
.catalog-second .filter__item-item {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.catalog-second .filter__item-item .checkbox {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	user-select: none;
}
.catalog-second .filter__item-item .checkbox input {
	display: none;
}
.catalog-second .filter__item-item .checkbox__custom {
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #ffdc00;
	position: relative;
	flex-shrink: 0;
}
.catalog-second .filter__item-item .checkbox__custom::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 10px;
	border-right: 1px solid #222222;
	border-bottom: 1px solid #222222;
	top: 2px;
	left: 7px;
	transform: rotate(45deg);
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.catalog-second .filter__item-item .checkbox input:checked + .checkbox__custom {
	background-color: #ffdc00;
}
.catalog-second
	.filter__item-item
	.checkbox
	input:checked
	+ .checkbox__custom::after {
	opacity: 1;
}
.catalog-second .filter__item-item .checkbox__label {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.catalog-second .filter__item-item .calc {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.catalog-second .filter__btns {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.catalog-second .filter__reset {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	padding: 12px 16px;
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	border-radius: 8px;
	border: 1px solid #ffdc00;
}
.catalog-second .filter__reset:hover {
	background: #ffe754;
}
.catalog-second .filter__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 56px;
	border-radius: 8px;
	padding: 12px 16px;
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	background: #ffdc00;
}
.catalog-second .filter__btn:hover {
	background: #ffe754;
}
.catalog-second__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 1024px) {
	.catalog-second__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.catalog-second__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}
}
.catalog-second__item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #eef3f8;
	background: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
	.catalog-second__item {
		padding: 5px;
	}
}
.catalog-second__item:hover {
	border-color: #ffdc00;
}
.catalog-second__item-mark {
	position: absolute;
	left: 16px;
	top: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 12px;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
	border-radius: 8px;
	background: #ffdc00;
}
.catalog-second__item-img {
	margin: auto;
	height: 220px;
	margin-bottom: 16px;
}
.catalog-second__item-title {
	width: 100%;
	color: #222222;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	margin-bottom: 8px;
}
.catalog-second__item-text {
	color: #9599aa;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	margin-bottom: 8px;
}
@media (max-width: 767px) {
	.catalog-second__item-img {
		height: 150px;
		object-fit: cover;
		margin-bottom: 8px !important;
	}
	.catalog-second__item-title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		margin-bottom: 0;
	}

	.catalog-second__item-desc {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		margin-bottom: 8px !important;
	}
}
.catalog-second__item-desc {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}
.catalog-second__item-btns {
	margin-top: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
@media (max-width: 767px) {
	.catalog-second__item-btns {
		flex-direction: column;
	}
}
.catalog-second__item-btn--more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 56px;
	border-radius: 8px;
	padding: 12px 16px;
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	border: 2px solid #ffdc00;
}
.catalog-second__item-btn--more:hover {
	background: #ffe754;
}
.catalog-second__item-btn--price {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 56px;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	color: #222222;
	background: #ffdc00;
}
.catalog-second__item-btn--price:hover {
	background: #ffe754;
}

@media (max-width: 767px) {
	.catalog-second__item-btns {
		flex-direction: column;
	}
	.catalog-second__item-btn--more,
	.catalog-second__item-btn--price {
		width: 100%;
		height: 40px;
	}
}

.checkout-wrap {
	padding: 40px 102px 108px 102px;
}
@media (max-width: 1024px) {
	.checkout-wrap {
		padding: 16px 20px 75px 20px;
	}
}

.checkout {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	align-items: stretch;
}
@media (max-width: 1024px) {
	.checkout {
		flex-direction: column;
		gap: 32px;
	}
}
.checkout__left {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 40px;
}
@media (max-width: 1024px) {
	.checkout__left {
		width: 100%;
	}
}
.checkout__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: -20px;
}
@media (max-width: 767px) {
	.checkout__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
		margin-top: 0;
	}
}
.checkout__block {
	width: 100%;
}
.checkout__block-title {
	color: #222222;
	font-size: 30px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	text-transform: capitalize;
	margin-bottom: 32px;
}
@media (max-width: 767px) {
	.checkout__block-title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.checkout__block-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.checkout__block-form .input {
	width: 100%;
}
.checkout__block-form input {
	width: 100% !important;
}
.checkout__submit, #button-confirm {
	margin-top: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.checkout__submit:hover, #button-confirm:hover {
	background: #ffe754;
}
.checkout__right {
	position: relative;
	max-width: 606px;
	width: 100%;
}
@media (max-width: 1024px) {
	.checkout__right {
		max-width: 100%;
	}
}
.checkout .row {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 25px;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.checkout .row {
		flex-direction: column;
		gap: 24px;
	}
}
.checkout .order {
	position: sticky;
	top: 24px;
	padding: 24px 12px;
	border-radius: 8px;
	border: 1px solid #f2f2f2;
	background: #ffffff;
}
@media (max-width: 767px) {
	.checkout .order {
		position: relative;
		top: 0;
	}
}
.checkout .order__title {
	color: #222222;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 32px;
}
@media (max-width: 767px) {
	.checkout .order__title {
		position: relative;
		top: 0;
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.checkout .order__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 32px;
}
.checkout .order__item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
	height: 250px;
}
@media (max-width: 1024px) {
	.checkout .order__item {
		position: relative;
		width: 100%;
		gap: 24px;
		height: auto;
	}
}
@media (max-width: 767px) {
	.checkout .order__item {
		height: 160px;
	}
}
.checkout .order__item-img {
	position: relative;
	width: 305px;
	height: 100%;
	border-radius: 8px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.checkout .order__item-img {
		position: static;
		width: 94px;
		height: 80px;
		border-radius: 8px;
	}
}
.checkout .order__item-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.checkout .order__item-close {
	position: absolute;
	top: 15px;
	right: 20px;
}
@media (max-width: 1024px) {
	.checkout .order__item-close {
		top: 0;
		right: 0;
	}
}
.checkout .order__item-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	height: 100%;
}
@media (max-width: 1024px) {
	.checkout .order__item-info {
		width: 100%;
	}
}
.checkout .order__item-name {
	color: #222222;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	text-align: left;
	text-transform: uppercase;
}
.checkout .order__item-bottom {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
@media (max-width: 1024px) {
	.checkout .order__item-bottom {
		width: 100%;
		margin-top: 16px;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}
@media (max-width: 767px) {
	.checkout .order__item-bottom {
		position: absolute;
		bottom: 0;
		left: 0;
	}
}
.checkout .order .counter__box {
	width: 138px;
	justify-content: space-around;
}
@media (max-width: 1024px) {
	.checkout .order .counter__box {
		width: 69px;
		justify-content: center;
	}
}
.checkout .order__item-price {
	color: #222222;
	font-size: 24px;
	font-weight: 500;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
}
.checkout .order__price {
	width: 100%;
	margin-top: 48px;
}
.checkout .order__price-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 24px;
	border-bottom: 1px solid #f2f2f2;
	margin-bottom: 24px;
}
.checkout .order__price-item {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.checkout .order__price-item p {
	color: #222222;
	font-size: 20px;
	font-weight: 500;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
}
.checkout .order__price-total {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.checkout .order__price-total p {
	color: #222222;
	font-size: 24px;
	font-weight: 500;
	line-height: 110%;
	text-align: left;
	text-transform: uppercase;
}

.thank {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 180px;
	padding-bottom: 248px;
}
@media (max-width: 1024px) {
	.thank {
		padding-top: 162px;
		padding-bottom: 162px;
	}
}
@media (max-width: 767px) {
	.thank {
		padding-top: 96px;
		padding-bottom: 96px;
	}
}
.thank__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
	margin-bottom: 16px;
}
@media (max-width: 767px) {
	.thank__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: center;
	}
}
.thank__text {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: center;
	margin-bottom: 16px;
}
.thank__order {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: center;
}
.thank__num {
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: 140%;
	text-align: center;
	margin-bottom: 24px;
}
.thank__back {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.thank__back:hover {
	background: #ffe754;
}

.payment {
	padding-top: 61px;
	padding-bottom: 69px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 1024px) {
	.payment {
		padding-top: 24px;
		padding-bottom: 120px;
	}
}
@media (max-width: 767px) {
	.payment {
		padding-top: 16px;
		padding-bottom: 80px;
	}
}
.payment__left {
	width: 396px;
	height: 488px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
@media (max-width: 1024px) {
	.payment__left {
		width: 100%;
		height: auto;
	}
}
.payment__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 8px;
}
@media (max-width: 767px) {
	.payment__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.payment__order {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 4px;
}
.payment__num {
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: 140%;
	text-align: left;
	margin-bottom: 8px;
}
.payment__details {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}
.payment__btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	color: #222222;
	letter-spacing: -0.312px;
	border-radius: 8px;
	border: 2px solid #ffdc00;
}
.payment__btn:hover {
	background: #ffe754;
}
.payment__desc {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 8px;
}
.payment__number {
	display: block;
	color: #707070;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	text-align: left;
	letter-spacing: 0.2px;
	margin-bottom: 6px;
}
.payment__messengers {
	margin-top: 16px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
}
.payment__telegram {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #34aadf;
}
.payment__telegram:hover {
	opacity: 0.8;
}
.payment__viber {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #8755a7;
}
.payment__viber:hover {
	opacity: 0.8;
}
.payment__right {
	padding: 24px 16px;
	background: #f5f6f7;
	width: 396px;
	height: 488px;
	border-radius: 8px;
}
@media (max-width: 1024px) {
	.payment__right {
		margin-top: 24px;
		width: 100%;
		height: auto;
		margin-bottom: 24px;
	}
}
@media (max-width: 1024px) {
	.payment__right.desktop {
		display: none;
	}
}
.payment__right.mobile {
	display: none;
}
@media (max-width: 1024px) {
	.payment__right.mobile {
		display: block;
	}
}
.payment__right-title {
	color: #222222;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.payment__right-title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.payment__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.payment__item {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
.payment__item-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 4px;
}
.payment__item-label {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.payment__item-label--bold {
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
.payment__item-value {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
}
.payment__item-value--bold {
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	line-height: 140%;
	text-align: left;
}
.payment__item-copy {
	display: flex;
	justify-content: center;
	align-items: center;
}
.payment__item-copy svg {
	stroke: #9599aa;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.payment__item-copy:hover svg {
	stroke: #ffdc00;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: 1000;
}
.popup.active {
	opacity: 1;
	pointer-events: auto;
	background: rgba(0, 0, 0, 0.5);
}
.popup__content {
	background: #ffffff;
	padding: 48px 24px 24px 24px;
	border-radius: 8px;
	max-width: 500px;
	width: 90%;
	position: relative;
}
.popup__content h2 {
	color: #222222;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
	margin-bottom: 16px;
}
.popup__content.small {
	padding: 24px;
	max-width: 420px;
	width: 95%;
}
.popup__content.small h2 {
	margin-bottom: 8px !important;
}
@media (max-width: 767px) {
	.popup__content.small h2 {
		font-size: 24px;
	}
}
.popup__content.small p {
	color: #53545b;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: center;
	margin-bottom: 24px;
}
.popup__content.small .popup__btns {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.popup__content.small .popup__btn-outline {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	border: 1px solid #ffdc00;
}
.popup__content.small .popup__btn-outline:hover {
	background: #ffe754;
}
.popup__content.small .popup__btn-primary {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.popup__content.small .popup__btn-primary:hover {
	background: #ffe754;
}
.popup__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup__form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.popup__form .input {
	width: 100%;
}
.popup__form input {
	width: 100%;
}
.popup__form button {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.popup__form button:hover {
	background: #ffe754;
}

.about-wrap {
	padding: 40px 102px 83px 102px;
}
@media (max-width: 1024px) {
	.about-wrap {
		padding: 24px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.about-wrap {
		padding: 16px 16px 38px 16px;
	}
}

.about {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
@media (max-width: 1024px) {
	.about {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 24px;
	}
}
@media (max-width: 767px) {
	.about {
		gap: 8px;
	}
}
.about__title {
	width: 50%;
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
@media (max-width: 1024px) {
	.about__title {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.about__title {
		font-size: 24px;
	}
}
.about__text {
	width: 50%;
	color: #707070;
	font-size: 17px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
@media (max-width: 1024px) {
	.about__text {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.about__text {
		font-size: 20px;
	}
}
.about__text a {
	color: #222222;
}

.history {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
	background: #f5f6f7;
	margin-bottom: 0;
}
@media (max-width: 1024px) {
	.history {
		flex-direction: column;
		gap: 0;
	}
}
.history__left {
	max-width: 600px;
	width: 100%;
}
@media (max-width: 1024px) {
	.history__left {
		max-width: 100%;
		padding: 24px;
	}
}
@media (max-width: 767px) {
	.history__left {
		padding: 16px;
	}
}
.history__line {
	display: block;
	width: 100%;
	height: 4px;
	background: #ffdc00;
}
.history__text {
	margin-top: 24px;
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}
.history__btn {
	width: 203px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 32px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.history__btn:hover {
	background: #ffe754;
}
.history__right {
	width: 50%;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.history__right {
		width: 100%;
		height: 465px;
	}
}
@media (max-width: 767px) {
	.history__right {
		height: 305px;
	}
}

.advantages {
	padding: 197px 102px 196px 102px;
	background: #f5f6f7;
}
@media (max-width: 1024px) {
	.advantages {
		padding: 80px 20px;
	}
}
.advantages__desktop {
	position: relative;
}
@media (max-width: 1024px) {
	.advantages__desktop {
		display: none;
	}
}
.advantages__octagon {
	position: relative;
	width: 621px;
	height: 621px;
	margin: 0 auto;
	transform: rotate(22deg);
	clip-path: polygon(
		30% 0%,
		70% 0%,
		100% 30%,
		100% 70%,
		70% 100%,
		30% 100%,
		0% 70%,
		0% 30%
	);
}
@media (max-width: 1280px) {
	.advantages__octagon {
		width: 450px;
		height: 450px;
	}
}
.advantages__octagon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.advantages__octagon::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
}
.advantages__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	transform: rotate(-22deg);
	color: #ffffff;
	width: 344px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.advantages__content h2 {
	color: #ffffff;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
}
.advantages__content p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: center;
}
.advantages__items {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 621px;
	height: 621px;
}
@media (max-width: 1280px) {
	.advantages__items {
		width: 450px;
		height: 450px;
	}
}
.advantages__mobile-list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	row-gap: 16px;
	flex-wrap: wrap;
}
@media (max-width: 767px) {
	.advantages__mobile-list {
		gap: 16px;
	}
}
.advantages .av {
	position: absolute;
	gap: 8px;
}
@media (max-width: 1024px) {
	.advantages .av {
		position: static;
		width: 48%;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}
}
@media (max-width: 767px) {
	.advantages .av {
		width: 100%;
	}
}
.advantages .av__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 100%;
	aspect-ratio: 1/1;
	background: #ffdc00;
}
@media (max-width: 767px) {
	.advantages .av__icon {
		width: 64px;
		height: 64px;
		border-radius: 100%;
	}
}
.advantages .av p {
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	padding-bottom: 10px;
	border-bottom: 1px solid #ffdc00;
}
.advantages .av--n {
	top: -110px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
}
.advantages .av--n p {
	width: 200px;
	text-align: center;
}
.advantages .av--ne {
	top: 30px;
	right: -150px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.advantages .av--ne p {
	width: 181px;
}
.advantages .av--e {
	top: 50%;
	right: -280px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.advantages .av--e p {
	width: 218px;
}
.advantages .av--se {
	bottom: 30px;
	right: -225px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.advantages .av--se p {
	width: 255px;
}
.advantages .av--s {
	bottom: -110px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.advantages .av--s p {
	width: 217px;
	text-align: center;
}
.advantages .av--sw {
	bottom: 30px;
	left: -150px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	align-items: center;
}
.advantages .av--sw p {
	width: 179px;
	text-align: left;
}
.advantages .av--w {
	top: 50%;
	left: -275px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	align-items: center;
}
.advantages .av--w p {
	width: 213px;
	text-align: left;
}
.advantages .av--nw {
	top: 35px;
	left: -180px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	align-items: center;
}
.advantages .av--nw p {
	width: 208px;
	text-align: left;
}
.advantages__mobile {
	display: none;
}
@media (max-width: 1024px) {
	.advantages__mobile {
		display: block;
	}
}
.advantages__mobile-title {
	color: #171e2f;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 16px;
}
@media (max-width: 767px) {
	.advantages__mobile-title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.advantages__mobile-text {
	color: #171e2f;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 30px;
}

.news {
	padding: 32px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.news {
		padding: 25px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.news {
		padding: 16px 16px 120px 16px;
	}
}
.news__top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}
@media (max-width: 767px) {
	.news__top {
		margin-bottom: 16px;
	}
}
.news__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.news__title {
		font-size: 24px;
	}
}
.news__search {
	position: relative;
	width: 396px;
	height: 48px;
	border-radius: 14px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.news__search {
		width: 308px;
	}
}
@media (max-width: 767px) {
	.news__search {
		width: 36px;
		height: 36px;
		border-radius: 45px;
	}
	.news__search:hover {
		width: 200px;
	}
}
.news__search-input {
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	padding: 16px;
	border-radius: 14px;
	border: 1px solid #f2f2f2;
	background: #f5f6f7;
}
.news__search-input::placeholder {
	color: #9599aa;
	opacity: 1;
}
.news__search-btn {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffdc00;
}
.news__search-btn:hover {
	background: #ffe754;
}
@media (max-width: 767px) {
	.news__search-btn {
		right: 0;
	}
}
.news__filters {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}
@media (max-width: 767px) {
	.news__filters {
		display: none;
	}
}
.news__filters-category {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-bottom: 1px solid #ffdc00;
}
.news .sort-dropdown {
	position: relative;
	display: inline-block;
	z-index: 20;
}
.news .sort-dropdown__toggle {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
	background-color: #ffffff;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	cursor: pointer;
}
.news .sort-dropdown__arrow {
	width: 24px;
	height: 24px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.news .sort-dropdown__menu {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	width: fit-content;
	padding: 6px 0;
	list-style: none;
	background-color: #ffffff;
	border: 1px solid #f5f6f7;
	border-radius: 6px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.news .sort-dropdown__menu li a {
	display: block;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	color: #222222;
	white-space: nowrap;
	text-decoration: none;
}
.news .sort-dropdown__menu li a:hover {
	background-color: #f5f6f7;
}
.news .sort-dropdown:hover .sort-dropdown__menu,
.news .sort-dropdown:focus-within .sort-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.news .sort-dropdown:hover .sort-dropdown__arrow,
.news .sort-dropdown:focus-within .sort-dropdown__arrow {
	transform: rotateX(180deg);
}
.news__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
@media (max-width: 767px) {
	.news__list {
		grid-template-columns: repeat(1, 1fr);
	}
}
.news__item {
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #f5f6f7;
	background: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.news__item:hover {
	border-color: #ffdc00;
}
.news__item:hover img {
	transform: scale(1.2);
}
.news__item-img {
	width: 100%;
	height: 370px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.news__item-img {
		height: 200px;
	}
}
.news__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.news__item-title {
	color: #222222;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.news__item-text {
	overflow: hidden;
	color: #222222;
	text-overflow: ellipsis;
	font-size: 18px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-bottom: 16px;
}
.news__item-bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.news__item-date {
	color: #9599aa;
	font-size: 18px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}
.news__item-link {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 8px;
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	border-radius: 4px;
	background: #ffdc00;
}
.news__item-link:hover {
	background: #ffe754;
}
.news__load-btn {
	margin: auto;
	margin-top: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.news__load-btn:hover {
	background: #ffe754;
}

.new {
	padding: 40px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.new {
		padding: 24px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.new {
		padding: 16px 16px 80px 16px;
	}
}
.new__content {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 1024px) {
	.new__content {
		position: relative;
		flex-direction: column;
	}
}
.new__left {
	width: 396px;
	flex-shrink: 0;
}
@media (max-width: 767px) {
	.new__left {
		width: 100%;
	}
}
.new__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.new__title {
		font-size: 24px;
		margin-bottom: 16px;
	}
}
.new__sub-title {
	color: #222222;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	margin-bottom: 8px;
}
.new__links {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.new__link {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.new__right img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 16px;
}
@media (max-width: 1024px) {
	.new__right img {
		width: 352px;
		height: 224px;
		position: absolute;
		right: 0;
		top: 0;
	}
}
@media (max-width: 767px) {
	.new__right img {
		position: static;
		width: 100%;
	}
}
.new__right h2 {
	max-width: 606px;
	width: 100%;
	margin-top: 32px;
	color: #222222;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	margin-bottom: 8px;
}
@media (max-width: 1024px) {
	.new__right h2 {
		max-width: 100%;
	}
}
.new__right p {
	max-width: 606px;
	width: 100%;
	color: #707070;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}
@media (max-width: 1024px) {
	.new__right p {
		max-width: 100%;
	}
}

.articles {
	padding: 120px 78px;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.articles {
		padding: 120px 20px;
	}
}
@media (max-width: 767px) {
	.articles {
		padding: 80px 20px;
	}
}
.articles__top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
@media (max-width: 1024px) {
	.articles__top {
		justify-content: flex-start;
	}
}
.articles__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
@media (max-width: 767px) {
	.articles__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.articles__navigation {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
@media (max-width: 1024px) {
	.articles__navigation {
		display: none;
	}
}
.articles__pagination-prev {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	border-radius: 56px;
	border: 1px solid #222222;
	background: #ffdc00;
}
.articles__pagination-next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	border-radius: 56px;
	border: 1px solid #222222;
	background: #ffdc00;
}
.catalog-second__item-btn--more {
	white-space: nowrap;
}
.articles .swiper-button-disabled {
	background: #ffffff;
}
.articles__swiper {
	width: calc(100% + 102px);
	margin-right: -102px;
}
.about img {
	padding: 16px 0;
}
@media (min-width: 1024px) {
	.new__left {
		position: sticky;
		height: 30vh;
		top: 0;
	}
	.about img {
		padding: 25px 25px 0 0;
	}
}
@media (min-width: 1920px) {
	.articles__swiper {
		width: 100%;
		margin-right: 0;
	}
}
@media (max-width: 1024px) {
	.articles__swiper {
		width: calc(100% + 20px);
		margin-right: -20px;
	}
}
@media (max-width: 767px) {
	.articles__swiper {
		width: calc(100% + 16px);
		margin-right: -16px;
	}
}
.articles__item {
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #f5f6f7;
	background: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.articles__item:hover {
	border-color: #ffdc00;
}
.articles__item:hover img {
	transform: scale(1.2);
}
.articles__item-img {
	width: 100%;
	height: 370px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.articles__item-img {
		height: 200px;
	}
}
.articles__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.articles__item-title {
	color: #222222;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.articles__item-text {
	overflow: hidden;
	color: #222222;
	text-overflow: ellipsis;
	font-size: 18px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-bottom: 16px;
}
.articles__item-bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.articles__item-date {
	color: #9599aa;
	font-size: 18px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}
.articles__item-link {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 8px;
	color: #222222;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	border-radius: 4px;
	background: #ffdc00;
}
.articles__item-link:hover {
	background: #ffe754;
}

.profile {
	padding: 40px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.profile {
		padding: 16px 20px 80px 20px;
	}
}
@media (max-width: 767px) {
	.profile {
		padding: 24px 16px 80px 16px;
	}
}
.profile__content {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 1024px) {
	.profile__content {
		flex-direction: column;
		gap: 16px;
	}
}
.profile__menu {
	max-width: 501px;
	width: 100%;
	flex-shrink: 0;
}
@media (max-width: 1280px) {
	.profile__menu {
		max-width: 350px;
	}
}
@media (max-width: 1024px) {
	.profile__menu {
		max-width: 100%;
	}
}
.profile__menu-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #f2f2f2;
	background: #ffffff;
	margin-bottom: 40px;
}
@media (max-width: 1024px) {
	.profile__menu-top {
		margin-bottom: 0;
	}
}
.profile__menu-top--user {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.profile__menu-top--avatar {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 57px;
	height: 57px;
	border-radius: 83px;
	background: #ffdc00;
}
.profile__menu-top--info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
}
.profile__menu-top--name {
	color: #222222;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
.profile__menu-top--number {
	color: #707070;
	font-size: 18px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
}
.profile__menu-top--edit {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 83px;
	background: rgba(203, 203, 203, 0.5);
}
.profile__menu-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	padding: 15px 0;
	border-radius: 8px;
	border: 1px solid #f2f2f2;
	background: #ffffff;
}
@media (max-width: 1024px) {
	.profile__menu-list {
		display: none;
	}
}
.profile__menu-tab {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
	padding: 8px 16px;
	color: #707070;
	font-size: 18px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}
.profile__menu-tab:hover {
	color: #222222;
	background: #ffdc00;
}
.profile__menu-tab.active {
	color: #222222;
	background: #ffdc00;
}
.profile__menu-tab--img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 83px;
	background: #ffdc00;
}
.profile__block {
	width: 100%;
}
.profile__block-title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	margin-bottom: 16px;
}
@media (max-width: 767px) {
	.profile__block-title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.profile .radio-group {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.profile .radio-group {
		margin-bottom: 16px;
	}
}
.profile__block-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.profile__block-item {
	width: 100%;
}
.profile__block-item--top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 55px;
}
@media (max-width: 767px) {
	.profile__block-item--top {
		margin-bottom: 10px;
	}
}
.profile__block-item--info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.profile__block-item--number {
	color: #222222;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
.profile__block-item--date {
	color: #707070;
	font-size: 18px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
}
.profile__block-item--status {
	color: #27b11a;
	font-size: 18px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
}
.profile__block-item--bottom {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 29px;
}
.profile__block-item--product {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.profile__block-item--img {
	width: 100px;
	height: 80px;
	border-radius: 8px;
	aspect-ratio: 5/4;
}
.profile__block-item--img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.profile__block-item--desc {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.profile__block-item--name {
	color: #222222;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
}
@media (max-width: 767px) {
	.profile__block-item--name {
		font-size: 16px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.profile__block-item--article {
	color: #707070;
	font-size: 18px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
}
.profile__block-item--calc {
	color: #707070;
	font-size: 18px;
	font-weight: 300;
	line-height: 140%;
	text-align: left;
}
.profile__block-item--btn {
	margin-top: 29px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 328px;
	height: auto;
	border-radius: 8px;
	padding: 16px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	background: #ffdc00;
}
.profile__block-item--btn:hover {
	background: #ffe754;
}
@media (max-width: 1024px) {
	.profile__block-item--btn {
		margin-top: 16px;
	}
}
@media (max-width: 767px) {
	.profile__block-item--btn {
		width: 100%;
	}
}
.profile__block-pre-title {
	margin-top: 8px;
	color: #222222;
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 16px;
}
.profile__block-form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}

.error-page {
	padding: 16px 102px 120px 102px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1024px) {
	.error-page {
		padding: 73px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.error-page {
		padding: 32px 16px 80px 16px;
	}
}
@media (max-width: 1024px) {
	.error-page__img {
		margin-bottom: 8px;
	}
}
@media (max-width: 767px) {
	.error-page__img {
		margin-bottom: 16px;
	}
}
.error-page__title {
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.error-page__title {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: center;
	}
}
.error-page__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.error-page__btn:hover {
	background: #ffe754;
}

.polite {
	padding: 40px 102px 100px 102px;
}
@media (max-width: 1024px) {
	.polite {
		padding: 16px 20px 500px 20px;
	}
}
@media (max-width: 767px) {
	.polite {
		padding: 24px 16px 50px 16px;
	}
}
.polite__content {
	max-width: 806px;
	width: 100%;
	margin: auto;
}
@media (max-width: 1024px) {
	.polite__content {
		max-width: 100%;
	}
}
.polite__content h1 {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.polite__content h1 {
		font-size: 24px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.polite__content h4 {
	margin-top: 24px;
	color: #222222;
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 8px;
}
@media (max-width: 767px) {
	.polite__content h4 {
		font-size: 20px;
		font-weight: 500;
		line-height: normal;
		text-align: left;
	}
}
.polite__content p {
	color: #707070;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}
.polite__content ul {
	list-style-type: disc;
	margin-left: 20px;
}
.polite__content li {
	color: #707070;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}

.contacts {
	margin-top: 40px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
	background: #f5f6f7;
	margin-bottom: 120px;
}
@media (max-width: 1024px) {
	.contacts {
		flex-direction: column;
		gap: 0;
		margin-top: 24px;
	}
}
@media (max-width: 767px) {
	.contacts {
		margin-bottom: 80px;
	}
}
.contacts__left {
	max-width: 600px;
	width: 100%;
}
@media (max-width: 1024px) {
	.contacts__left {
		max-width: 100%;
		padding: 24px;
	}
}
@media (max-width: 767px) {
	.contacts__left {
		padding: 16px;
	}
}
.contacts__line {
	display: block;
	width: 100%;
	height: 4px;
	background: #ffdc00;
	margin-bottom: 24px;
}
.contacts__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.contacts__title {
		font-size: 24px;
	}
}
.contacts__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 24px;
}
.contacts__item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.contacts__item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #ffffff;
}
.contacts__item-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 6px;
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	text-align: left;
	letter-spacing: 0.2px;
}
.contacts__btn {
	width: 276px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 32px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.contacts__btn:hover {
	background: #ffe754;
}
.contacts__right {
	position: relative;
	width: 50%;
	height: 465px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.contacts__right {
		width: 100%;
	}
}
.contacts__right iframe {
	width: 100%;
	height: 100%;
	display: none;
}
.contacts__right iframe.active {
	display: block;
}
.contacts__right-route {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	padding: 16px;
	border-radius: 8px;
	background: #ffffff;
}
.contacts__right-route--title {
	color: #222222;
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
.contacts__right-route--bottom {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.contacts__right-route--city {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 32px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	border: 1px solid #ffdc00;
}
.contacts__right-route--city:hover {
	background: #ffe754;
}
.contacts__right-route--city.active {
	background: #ffe754;
}

.b2b {
	padding: 40px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.b2b {
		padding: 24px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.b2b {
		padding: 16px 16px 80px 16px;
	}
}
.b2b__content {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 1024px) {
	.b2b__content {
		position: relative;
		flex-direction: column;
	}
}
.b2b__left {
	position: sticky;
	top: 24px;
	left: 0;
	width: 396px;
	flex-shrink: 0;
}
@media (max-width: 1024px) {
	.b2b__left {
		position: static;
		top: 0;
	}
}
@media (max-width: 767px) {
	.b2b__left {
		width: 100%;
	}
}
.b2b__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.b2b__title {
		font-size: 24px;
		margin-bottom: 16px;
	}
}
.b2b__links {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.b2b__link {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.b2b__btn {
	margin-top: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 32px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.b2b__btn:hover {
	background: #ffe754;
}
.b2b__img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 16px;
	margin-bottom: 40px;
}
@media (max-width: 1024px) {
	.b2b__img {
		width: 352px;
		height: 224px;
		position: absolute;
		right: 0;
		top: 0;
	}
}
@media (max-width: 767px) {
	.b2b__img {
		position: static;
		width: 100%;
	}
}
.b2b__block {
	max-width: 606px;
	width: 100%;
	margin-bottom: 80px;
}
@media (max-width: 1024px) {
	.b2b__block {
		max-width: 100%;
	}
}
@media (max-width: 767px) {
	.b2b__block {
		margin-bottom: 40px;
	}
}
.b2b__block h2 {
	color: #222222;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.b2b__block h2 {
		font-size: 24px;
	}
}
.b2b__block p {
	margin-top: 8px;
	color: #707070;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	text-align: left;
}
.b2b__block ul {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
.b2b__block li {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}
.b2b__benefits {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	padding: 32px 288px 32px 24px;
	border-radius: 16px;
	background: #f5f6f7;
}
@media (max-width: 1024px) {
	.b2b__benefits {
		padding: 32px 24px 32px 24px;
	}
}
@media (max-width: 767px) {
	.b2b__benefits {
		padding: 24px 16px;
		gap: 28px;
	}
}
.b2b__benefits-title {
	color: #222222;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.b2b__benefits-title {
		font-size: 24px;
	}
}
.b2b__benefits-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.b2b__benefits-item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.b2b__benefits-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.b2b__benefits-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	background: #ffdc00;
	aspect-ratio: 1/1;
}
.b2b__benefits-name {
	color: #222222;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
.b2b__benefits-text {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
}

.request {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
	background: #f5f6f7;
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.request {
		flex-direction: column;
		gap: 0;
	}
}
@media (max-width: 767px) {
	.request {
		margin-bottom: 80px;
	}
}
.request__left {
	max-width: 600px;
	width: 100%;
}
@media (max-width: 1024px) {
	.request__left {
		max-width: 100%;
		padding: 24px;
	}
}
@media (max-width: 767px) {
	.request__left {
		padding: 16px;
	}
}
.request__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	margin-bottom: 16px;
}
@media (max-width: 767px) {
	.request__title {
		font-size: 24px;
	}
}
.request__text {
	color: #222222;
	font-size: 20px;
	font-weight: 300;
	line-height: normal;
	text-align: left;
	margin-bottom: 32px;
}
@media (max-width: 767px) {
	.request__text {
		font-size: 16px;
	}
}
.request__form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
.request__form .custom-checkbox {
	margin-top: 0;
	align-items: center !important;
}
.request__form-btn {
	margin-top: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 328px;
	padding: 16px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.request__form-btn:hover {
	background: #ffe754;
}
.request__right {
	width: 50%;
	height: 650px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.request__right {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.request__right {
		height: 400px;
	}
}

.create-review {
	padding: 80px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.create-review {
		padding: 24px 24px 120px 24px;
	}
}
@media (max-width: 767px) {
	.create-review {
		padding: 16px 16px 80px 16px;
	}
}
.create-review__form {
	max-width: 557px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
@media (max-width: 1024px) {
	.create-review__form {
		max-width: 100%;
	}
}
.create-review__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.create-review__title {
		font-size: 24px;
	}
}
.create-review .rating {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 2px;
}
.create-review .rating button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
}
.create-review .rating svg path {
	fill: transparent;
	stroke: #ffdc00;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.create-review .rating .active svg path {
	fill: #ffdc00;
}
.create-review__submit {
	margin-top: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 142px;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.create-review__submit:hover {
	background: #ffe754;
}

.sign-in {
	padding: 104px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.sign-in {
		padding: 27px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.sign-in {
		padding: 35px 16px 80px 16px;
	}
}
.sign-in__form {
	max-width: 557px;
	width: 100%;
	margin: auto;
}
@media (max-width: 1024px) {
	.sign-in__form {
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	.sign-in__form {
		max-width: 100%;
	}
}
.sign-in__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 16px;
}
@media (max-width: 767px) {
	.sign-in__title {
		font-size: 24px;
	}
}
.sign-in .forget {
	display: block;
	margin-top: 4px;
	margin-left: auto;
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: right;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.sign-in__btn {
	margin-top: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
	margin-bottom: 16px;
}
.sign-in__btn:hover {
	background: #ffe754;
}
.sign-in__desc {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
}
.sign-in__desc a {
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.password-recovery {
	padding: 104px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.password-recovery {
		padding: 27px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.password-recovery {
		padding: 35px 16px 80px 16px;
	}
}
.password-recovery__form {
	max-width: 557px;
	width: 100%;
	margin: auto;
}
@media (max-width: 1024px) {
	.password-recovery__form {
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	.password-recovery__form {
		max-width: 100%;
	}
}
.password-recovery__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	margin-bottom: 16px;
}
@media (max-width: 767px) {
	.password-recovery__title {
		font-size: 24px;
	}
}
.password-recovery .forget {
	display: block;
	margin-top: 4px;
	margin-left: auto;
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: right;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.password-recovery__btn {
	margin-top: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
	margin-bottom: 16px;
}
.password-recovery__btn:hover {
	background: #ffe754;
}
.password-recovery__desc {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
}
.password-recovery__desc a {
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.registration {
	padding: 104px 102px 120px 102px;
}
@media (max-width: 1024px) {
	.registration {
		padding: 27px 20px 120px 20px;
	}
}
@media (max-width: 767px) {
	.registration {
		padding: 35px 16px 80px 16px;
	}
}
.registration__form {
	max-width: 557px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
@media (max-width: 1024px) {
	.registration__form {
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	.registration__form {
		max-width: 100%;
	}
}
.registration__form .input {
	width: 100%;
}
.registration__title {
	color: #222222;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.registration__title {
		font-size: 24px;
	}
}
.registration__text {
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
}
.registration__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	letter-spacing: -0.312px;
	border-radius: 8px;
	background: #ffdc00;
}
.registration__btn:hover {
	background: #ffe754;
}
.registration__desc {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
}
.registration__desc a {
	color: #222222;
	font-size: 14px;
	font-weight: 300;
	line-height: 130%;
	text-align: left;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.registration__line {
	width: 100%;
	height: 1px;
	background: #ffdc00;
}
.registration__alt {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}
.registration__alt-item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-wrap {
	padding: 16px 36px;
	background: #f5f6f7;
}
@media (max-width: 1024px) {
	.footer-wrap {
		padding: 16px 20px;
	}
}

.footer {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 767px) {
	.footer {
		display: none;
	}
}
.footer__top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1px solid #ffdc00;
}
.footer__logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer__social {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}
.footer__social-label {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	letter-spacing: 0.2px;
}
.footer__social-list {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}
.footer__social-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #ffffff;
}
.footer__body {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
.footer__body-row {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 70px;
}
@media (max-width: 1024px) {
	.footer__body-row {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 32px;
	}
}
.footer__body-col {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 1024px) {
	.footer__body-col {
		width: 45%;
	}
}
.footer__body-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.footer__body-item {
	color: #222222;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	text-align: left;
	letter-spacing: 0.2px;
}
.footer__body-item a {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	letter-spacing: 0.2px;
}
@media (max-width: 1024px) {
	.footer__body-img {
		position: absolute;
		right: 200px;
		bottom: 0;
		width: 160px;
		height: 273px;
	}
}
.footer__bottom {
	width: 100%;
	border-top: 1px solid #ffdc00;
	padding: 16px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer__bottom-desc {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	letter-spacing: 0.2px;
}

.footer-mobile {
	display: none;
}
@media (max-width: 767px) {
	.footer-mobile {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 24px;
	}
}
.footer-mobile__top {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1px solid #ffdc00;
}
.footer-mobile__logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-mobile__body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
.footer-mobile__item {
	width: 100%;
}
.footer-mobile__item.open .footer-mobile__item-bottom {
	max-height: 400px;
}
.footer-mobile__item.open .footer-mobile__item-top > img {
	transform: rotate(45deg);
}
.footer-mobile__item-top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.footer-mobile__item-top p {
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	letter-spacing: 0.2px;
}
.footer-mobile__item-top img {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.footer-mobile__item-bottom {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.footer-mobile__item-list {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.footer-mobile__item-item {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}
.footer-mobile__bottom {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
.footer-mobile__socials {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
.footer-mobile__socials-label {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	letter-spacing: 0.2px;
}
.footer-mobile__socials-list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
.footer-mobile__socials-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background: #ffffff;
}
.footer-mobile__img {
	width: 86px;
	height: 146px;
}
.footer-mobile__copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	border-top: 1px solid #ffdc00;
	padding-top: 16px;
}
.footer-mobile__copyright p {
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	letter-spacing: 0.2px;
}

.products__navigation button:hover {
	background: #ffdc00;
}

.characteristic__list {
	max-height: 100px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.characteristic__list.open {
	max-height: 1200px;
}
.characteristic__list-open {
	margin-top: 8px;
	color: #000;
	margin-top: 20px;
	text-decoration: underline;
}
@media (max-width: 767px) {
	.characteristic__list {
		max-height: 60px;
	}
}

.pagination-wrap {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	padding-bottom: 50px;
}
@media (max-width: 1024px) {
	.pagination-wrap {
		padding-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.pagination-wrap {
		justify-content: center;
	}
}
.pagination {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	margin-right: 80px;
}
@media (max-width: 1024px) {
	.pagination {
		margin-right: 0;
	}
}
.pagination li {
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	cursor: pointer !important;
}
.pagination li.active {
	background: #ffdc00;
}
.pagination li:hover {
	background: #ffdc00;
}
.pagination li > span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.pagination li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.warranty {
	max-width: 800px;
	line-height: 1.6;
	color: #333;
}

.warranty h2 {
	margin-bottom: 20px;
}

.warranty h3 {
	margin-top: 30px;
	margin-bottom: 10px;
}

.warranty p {
	margin-bottom: 15px;
}

.warranty ul,
.warranty ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

.warranty li {
	margin-bottom: 6px;
}

.warranty .contactsw {
	margin-top: 15px;
	padding: 10px;
}

.partners__item img {
	min-width: 206px;
	height: 80px;
	object-fit: cover;
}
.smartsearch ul {
	max-height: 300px;
	overflow: auto;
}

.intro2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 180px;
	z-index: 1;
	overflow: hidden;
}


.simplecheckout-block-content div.input{
	margin-top: 20px;
}