/* ============= ALIGNES =============== */

::selection {
	background-color: var(--background-thirdly);
	color: var(--primary);
}

::-webkit-scrollbar {
	width: 6px;
	/* ширина scrollbar */
}

::-webkit-scrollbar-track {
	background: var(--background-secondary);
	/* цвет дорожки */
}

::-webkit-scrollbar-thumb {
	background-color: var(--primary);
	/* цвет плашки */
	border-radius: 10px;
	/* закругления плашки */
	/* padding вокруг плашки */
}

.alignwide {
	width: 100%;
}

.alignfull {
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
	.alignfull {
		width: 100vw !important;
		max-width: unset;
		/* margin-left: calc(-1 * (1920px - 1170px) / 2) !important;
margin-right: calc(-1 * (1920px - 1170px) / 2) !important; */
	}
}
/* =========== BASE CONFIG =========== */
html {
	box-sizing: border-box;
}

[data-aos="fade-left"] {
	transform: translate3d(100px, 0, 0) !important;
}
[data-aos="fade-right"] {
	transform: translate3d(-100px, 0, 0) !important;
}
[data-aos="fade-up"] {
	transform: translate3d(0, 100px, 0) !important;
}
[data-aos="fade-down"] {
	transform: translate3d(0, -100px, 0) !important;
}
[data-aos^="fade"][data-aos^="fade"].aos-animate {
	transform: translateZ(0) !important;
}

* {
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	color: var(--main-text-primary);
	font-weight: 400;
	line-height: 1.3;
	box-sizing: inherit;
}

body {
	/*max-width: 1920px;*/
	overflow-x: hidden;
	margin: 0 auto;
	width: auto;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	cursor: default;
	background-color: var(--background-secondary);
}
body.no-scroll {
	overflow: hidden;
}
main {
	flex: 1 1 auto;
	padding-top: 125px;
}

@media (max-width: 650px) {
	main {
		padding-top: 105px;
	}
}

ul li,
ol li {
	position: relative;
	list-style: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: 500;
	font-family: var(--second-family);
	color: var(--head-primary);
	line-height: 1.1;
}
h1,
.h1 {
	font-weight: 400;
	font-size: clamp(1.5rem, 1.05rem + 2.25vw, 3.75rem);
}
h2,
.h2 {
	font-size: clamp(1.375rem, 1.113rem + 1.31vw, 2.688rem);
}
h3,
.h3 {
	font-size: clamp(1.375rem, 1.238rem + 0.69vw, 2.063rem);
}
h4,
.h4 {
	font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
}
h5,
.h5 {
	font-size: clamp(1rem, 0.963rem + 0.19vw, 1.188rem);
}
h6,
.h6 {
	font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
}

p {
	font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
}

.p1 {
	font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
}

.p2 {
	font-size: 16px;
}
.p3 {
	font-size: 14px;
}

a {
	font-family: var(--font-family);
	color: var(--main-text-primary);
	text-decoration: none;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

a:hover {
	color: var(--primary);
}

.title,
h1.page__title,
h1.page-title {
	margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

path {
	transition: 0.3s ease-in;
}

.more-item.hidden {
	display: none;
}

iframe {
	border: none;
	outline: none;
}

.pt-100 {
	padding-top: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
}

.pb-100 {
	padding-bottom: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
}

body.privacy-policy .page-title {
	margin-bottom: 20px;
	font-size: clamp(1.25rem, 0.85rem + 2vw, 3.25rem);
}

body.privacy-policy h2.wp-block-heading {
	font-size: clamp(1.5rem, 1.425rem + 0.38vw, 1.875rem);
	margin-bottom: 20px;
}

body.privacy-policy .content {
	margin-bottom: 40px;
}

body.privacy-policy .content *:not(:last-child) {
	margin-bottom: 15px;
}

.breadcrumbs {
	position: relative;
	padding: 30px 0 15px;
	color: var(--main-text-primary);
	z-index: 10;
}

.breadcrumbs span {
	font-family: inherit;
	font-size: 14px;
	color: var(--main-text-primary);
	transition: 0.3s ease-in;
}

.breadcrumbs span:hover {
	color: var(--primary);
}

.breadcrumbs span .current-item,
.breadcrumbs span .current-item span {
	color: var(--head-primary);
}

.breadcrumbs-light .breadcrumbs span .current-item,
.breadcrumbs-light .breadcrumbs span .current-item span {
	color: var(--secondary);
}

@media (max-width: 650px) {
	.breadcrumbs {
		padding-top: 20px;
	}
}

.container {
	max-width: 1560px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.socials__item {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	background: var(--background);
	flex-shrink: 0;
}

.socials__item:hover {
	background: var(--primary);
}

.socials__item svg,
.socials__item img {
	width: 21px;
	height: 21px;
	object-fit: contain;
	display: block;
}

.socials__item svg path {
	fill: var(--head-secondary);
}

.socials__item:hover svg path {
	fill: var(--head-secondary);
}

.text-editor *:not(:last-child) {
	margin-bottom: 15px;
}

.text-editor p,
.text-editor li {
	font-size: 16px;
	line-height: 130%;
	color: var(--main-text-primary);
}

.text-editor li:not(:last-child) {
	margin-bottom: 10px;
}

.text-editor ul li {
	padding-left: 23px;
}

.text-editor ul li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	width: 8px;
	height: 8px;
	background: var(--primary);
}

.text-editor ol {
	padding-left: 23px;
}

.text-editor ol li {
	list-style-type: decimal;
	list-style-position: outside;
}

.btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: fit-content;
	outline: none;
	border: none;
	padding: 16px;
	border-radius: 100px;
	white-space: nowrap;
	border: 1px solid var(--primary);
	color: var(--head-secondary);
	background-color: var(--primary);
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	cursor: pointer;
	transition: all 0.3s ease-in;
}

.btn span {
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.btn svg {
	width: 16px;
	height: 16px;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
}

.btn svg path {
	fill: var(--secondary);
}

.btn.transparent-white {
	border: 1px solid var(--secondary);
	color: var(--head-secondary);
	background-color: transparent;
}

.btn.transparent-black {
	border: 1px solid var(--background);
	color: var(--head-primary);
	background-color: transparent;
}

.btn.white {
	color: var(--head-primary);
	border: 1px solid var(--secondary);
	background-color: var(--secondary);
}

.btn.white svg path,
.btn.transparent-black svg path {
	fill: var(--head-primary);
}

.btn:hover {
	border-color: var(--primary-hover);
	background-color: var(--primary-hover);
	color: var(--head-primary);
}

.btn:hover svg path {
	fill: var(--head-primary);
}

.btn.transparent-black:hover,
.btn.white:hover {
	color: var(--head-secondary);
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn.white:hover svg path,
.btn.transparent-black:hover svg path {
	fill: var(--secondary);
}

.swiper {
	width: 100% !important;
	overflow: hidden !important;
}

.swiper-slide {
	height: auto !important;
	box-sizing: border-box !important;
}

.swiper-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 10px 55px;
	margin-top: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

.swiper-nav .swiper-buttons {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
}

.swiper-nav .swiper-button-prev::after,
.swiper-nav .swiper-button-next::after {
	display: none;
}

.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--background-thirdly);
	cursor: pointer;
	margin-top: unset;
	transition: 0.3s ease-in;
}

.swiper-nav .swiper-button-prev:hover,
.swiper-nav .swiper-button-next:hover {
	background: var(--primary);
}

.swiper-nav .swiper-button-prev.swiper-button-disabled,
.swiper-nav .swiper-button-next.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.5;
}

.swiper-nav .swiper-button-prev svg,
.swiper-nav .swiper-button-next svg {
	width: 16px;
	height: 16px;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
}

.swiper-nav .swiper-button-prev path,
.swiper-nav .swiper-button-next path {
	stroke: var(--head-primary);
}

.swiper-nav .swiper-button-prev:hover path,
.swiper-nav .swiper-button-next:hover path {
	stroke: var(--primary-hover);
}

.swiper-nav .swiper-progressbar {
	position: relative;
	width: 100%;
	height: 4px;
	background: var(--secondary);
	border-radius: 10px;
	overflow: hidden;
}

.swiper-nav .swiper-progressbar .swiper-pagination-progressbar-fill {
	background: var(--stroke);
	border-radius: 10px;
	overflow: hidden;
}

@media (max-width: 650px) {
	.swiper-nav .swiper-buttons {
		gap: 10px;
	}
	.swiper-nav .swiper-button-prev,
	.swiper-nav .swiper-button-next {
		width: 40px;
		height: 40px;
	}
}

/* .swiper-nav .swiper-button-prev.swiper-button-disabled path,
.swiper-nav .swiper-button-next.swiper-button-disabled path {
	fill: var(--stroke);
} */

.swiper-nav .swiper-pagination {
	position: static;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	width: fit-content !important;
}

.swiper-nav .swiper-pagination .swiper-pagination-bullet {
	position: relative;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--stroke);
	transition: 0.3s ease-in;
	opacity: 1;
}

.swiper-nav .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--main-text-primary);
}

.pagination {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	width: fit-content;
	margin: 30px auto 0;
	overflow: hidden;
}

.pagination span.page-numbers.prev,
.pagination span.page-numbers.next {
	opacity: 0.5;
	pointer-events: none;
}

.pagination span.page-numbers.prev path,
.pagination span.page-numbers.next path {
	stroke: var(--head-primary);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--background-thirdly);
	cursor: pointer;
	margin-top: unset;
	transition: 0.3s ease-in;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
	background: var(--primary);
}

.pagination .page-numbers.prev {
	margin-right: 5px;
}
.pagination .page-numbers.next {
	margin-left: 5px;
}

.pagination .page-numbers.prev svg,
.pagination .page-numbers.next svg {
	width: 16px;
	height: 16px;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
}

.pagination .page-numbers.prev svg path,
.pagination .page-numbers.next svg path {
	stroke: var(--head-primary);
}

.pagination .page-numbers.prev:hover svg path,
.pagination .page-numbers.next:hover svg path {
	stroke: var(--primary-hover);
}

.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 33px;
	text-align: center;
	font-size: 16px;
	line-height: 130%;
	color: var(--main-text-primary);
	transition: 0.3s ease-in;
}

.pagination .page-numbers:hover {
	color: var(--primary);
}

.pagination .page-numbers.current {
	width: 41px;
	height: 41px;
	color: var(--head-secondary);
	background: var(--primary);
	border-radius: 50%;
}

/* ============ MENU STYLES ================= */

.main-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.main-menu .nav-menu-element a {
	white-space: nowrap;
	font-size: 16px;
	line-height: 120%;
	color: var(--head-primary);
	transition: 0.3s ease-in;
}

.main-menu .nav-menu-element:hover > a,
.main-menu .nav-menu-element.active > a,
.main-menu > .nav-menu-element.has-childs .sub-menu li:hover a,
.main-menu > .nav-menu-element.has-childs .sub-menu li.active a {
	color: var(--primary);
}

.header__desc .main-menu .nav-menu-element:is(.has-childs) > a {
	position: relative;
	padding-right: 15px;
}

.header__desc .main-menu .nav-menu-element:is(.has-childs) > a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	transform: translateY(-50%);
	background-image: url("../images/arrow-sub.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.3s ease-in;
}

.header__desc .main-menu .nav-menu-element:is(.has-childs):hover > a::before,
.header__desc .main-menu .nav-menu-element.active:is(.has-childs) > a::before {
	background-image: url("../images/sub-arrow-hover.svg");
}

.header__desc .main-menu .nav-menu-element:is(.has-childs):hover > a::before {
	transform: translateY(-50%) rotate(180deg);
}

.main-menu .sub-menu {
	position: absolute;
	top: 46px;
	left: -30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 30px;
	border-radius: 0 0 15px 15px;
	padding: 30px;
	width: max-content;
	max-width: 600px;
	background: var(--background-secondary);
	border: 1px solid var(--stroke);
	transition: all 0.3s ease-in;
	opacity: 0;
	visibility: hidden;
	z-index: 2;
}

.main-menu .sub-menu::before {
	content: "";
	position: absolute;
	top: -30px;
	left: 0;
	width: 100%;
	height: 70%;
}

.main-menu > .nav-menu-element.has-childs:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}

.main-menu > .nav-menu-element.has-childs .sub-menu li a {
	font-size: 16px;
	line-height: 130%;
	color: var(--head-primary);
	white-space: normal;
}

.main-menu > .nav-menu-element.has-childs .sub-menu li:hover a {
	color: var(--primary);
}

#header #mobile-mnu .sub-menu,
#footer .sub-menu {
	display: none;
}

#header #mobile-mnu .menuTop {
	display: flex;
	flex-direction: column;
	gap: 15px;
	list-style-type: none;
}

#header #mobile-mnu .menuTop li {
	width: fit-content;
}
#header #mobile-mnu .menuTop li a {
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--head-primary);
	transition: 0.3s ease-in;
}
#header #mobile-mnu .menuTop li:hover a,
#header #mobile-mnu .menuTop li.active a {
	color: var(--primary);
}

/* ============ HEADER ================= */

#header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

#header .container .header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 10px 30px;
	background: var(--main-text-secondary);
	border-radius: 0 0 15px 15px;
	border: 1px solid var(--stroke);
}

.logo {
	max-width: 100px;
	width: 100%;
	max-height: 100px;
	height: 100%;
	aspect-ratio: 1 / 1;
	/* flex-shrink: 0; */
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

#header .header__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

#header .header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--stroke);
}

#header .header__contacts {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header__phones,
.header__addresses,
.header__emails {
	display: flex;
	align-items: center;
	gap: 5px;
}

#header .header__contacts-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--primary);
	flex-shrink: 0;
}

#header .header__contacts-icon svg {
	width: 16px;
	height: 16px;
	object-fit: contain;
	display: block;
}

.phones,
.emails,
.addresses {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.phones .phones__value,
.addresses .addresses__value *,
.emails .emails__value {
	font-size: 16px;
	line-height: 120%;
	color: var(--head-primary);
}

.phones .phones__value {
	white-space: nowrap;
}

.phones .phones__value:hover {
	color: var(--primary);
}

#header .header__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

#header .header__bottom .header__btn {
	border-color: var(--primary);
	color: var(--primary);
}

#header .header__bottom .header__btn path {
	fill: var(--primary);
}
#header .header__bottom .header__btn:hover {
	background: var(--primary);
	color: var(--secondary);
}
#header .header__bottom .header__btn:hover path {
	fill: var(--secondary);
}
#header .header__actions {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	width: 100%;
}
#header .header__search {
	display: flex;
	max-width: 360px;
	width: 100%;
	min-height: 50px;
	height: auto;
}
#header .header__search .dgwt-wcas-search-form,
#header .header__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp,
#header .header__search input {
	height: 100%;
}
#header .header__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp {
	padding: 0;
}
#header .header__search input {
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
	background: var(--background-thirdly);
	border: 1px solid var(--stroke);
	font-size: 16px;
	line-height: 150%;
	color: var(--head-primary);
	transition: 0.3s ease-in !important;
}
#header .header__search input::placeholder,
.dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
	font-size: 16px;
	line-height: 150%;
	color: var(--head-primary);
	transition: 0.3s ease-in;
}
#header .header__search input:hover,
#header .header__search input:focus {
	border-color: var(--primary);
	color: var(--primary);
}
#header .header__search input::placeholder:hover {
	color: var(--primary);
}
#header
	.header__search
	.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact
	.dgwt-wcas-sf-wrapp
	button.dgwt-wcas-search-submit {
	top: 50%;
	transform: translateY(-50%);
}
#header .header__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
	background: transparent;
	box-shadow: unset;
}
#header .header__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover path,
#header .header__search .dgwt-wcas-style-pirx .dgwt-wcas-close:not(.dgwt-wcas-inner-preloader):hover path {
	opacity: 1;
	fill: var(--primary);
}
.dgwt-wcas-open-pirx .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp,
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
	background: transparent !important;
}
#header .header__search .dgwt-wcas-search-wrapp {
	min-width: unset;
}
/* ================ MOBILE MNU ============= */

#header .burger.open_menu {
	display: none;
	flex-direction: column;
	background-color: transparent;
	height: 40px;
	width: 40px;
	justify-content: space-evenly;
	align-items: center;
	border-radius: 2px;
	flex-shrink: 0;
	transition: 0.3s ease-in;
}
#header .burger.open_menu span {
	background-color: var(--primary);
	width: 30px;
	height: 4px;
	transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
	background-color: var(--primary);
}
#header .burger.open_menu.clicked span {
	background-color: var(--background-thirdly);
}
#header #mobile-mnu {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 320px;
	background-color: var(--background-secondary);
	border-right: 2px solid var(--stroke);
	padding: 30px;
	transition: all 0.3s ease-in;
	transform: translateX(-350px);
	overflow-y: auto;
	z-index: 9999;
}
#header #mobile-mnu #close-mnu {
	font-size: 45px;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	display: block;
}
#header #mobile-mnu #close-mnu path {
	fill: var(--primary);
}

#header #mobile-mnu .phones .phones__value,
#header #mobile-mnu .emails .emails__value,
#header #mobile-mnu .addresses .addresses__value * {
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--head-primary);
	transition: 0.3s ease-in;
}

#header #mobile-mnu .phones__value:hover,
#header #mobile-mnu .emails__value:hover {
	color: var(--primary);
	background: transparent;
}

#header #mobile-mnu.opened {
	transform: translateX(0);
}

#header #mobile-mnu .header__btn {
	width: 100%;
}

@media (max-width: 1450px) {
	#header .container .header__wrapper {
		gap: 20px;
		padding: 10px 20px;
	}
	#header .header__contacts-icon {
		display: none;
	}
	#header .main-menu,
	#header .header__actions {
		gap: 10px;
	}
	.main-menu .sub-menu {
		top: 50px;
	}
}
@media (max-width: 1192px) {
	#header .header__contacts {
		justify-content: space-between;
		width: 100%;
	}
	#header .burger.open_menu {
		display: flex;
		justify-self: flex-end;
	}
	#header .header__menu {
		display: none;
	}

	#header .content-header__top {
		justify-content: flex-end;
	}
}
@media (max-width: 650px) {
	#header .header__desc .container {
		padding: 0;
	}
	.logo {
		max-width: 80px;
		max-height: 80px;
	}
	#header .container .header__wrapper {
		gap: 10px;
		padding: 10px;
	}
	#header .header__top {
		padding-bottom: 5px;
	}
	#header .header__content {
		gap: 5px;
	}
	#header .header__contacts {
		justify-content: flex-end;
	}
	#header .header__desc .header__btn,
	#header .header__desc .header__addresses,
	#header .header__desc .header__emails {
		display: none;
	}
}

/* ============ SERVICES STYLES =============== */

.services-block {
	background: var(--background);
}

.services-block .services-cat-without-links .category-item__links {
	display: none;
}

.services-block .services-cat-without-desc .category-item .category-item__content {
	gap: 20px;
}

.services-block .services-block__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	border: 1px solid var(--stroke-secondary);
	border-radius: 100px;
	padding: 10px 15px;
	color: var(--main-text-secondary);
	background: var(--main-text-primary);
	margin-bottom: 20px;
}

.services-block .services-block__title {
	color: var(--head-secondary);
}

.services-block .services-block__wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.services-block .services-block__more {
	margin: 0 auto;
}

.archive-services__top {
	padding-top: 125px;
	margin-top: -125px;
	background: var(--background);
}

.archive-services .page__title {
	color: var(--head-secondary);
}

.services-cats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.card-item {
	display: flex;
	max-width: 360px;
	width: 100%;
	min-height: 360px;
	height: auto;
}

.category-item {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 360px;
	width: 100%;
	min-height: 360px;
	height: auto;
	padding: 75px 30px;
	clip-path: polygon(5% 75%, 5% 25%, 50% 0%, 95% 25%, 95% 75%, 50% 100%);
	-webkit-clip-path: polygon(5% 75%, 5% 25%, 50% 0%, 95% 25%, 95% 75%, 50% 100%);
	overflow: hidden;
	transition: 0.3s ease-in;
}

.category-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #245c9e 0%, rgba(129, 134, 142, 0) 117.08%);
	z-index: 1;
	transition: 0.3s ease-in;
}

.category-item:hover {
	transform: translateY(-20px);
}

/* .category-item:hover::before {
	opacity: 0;
} */

.category-item .category-item__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.category-item .category-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.category-item .category-item__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	gap: 10px;
	z-index: 2;
}

.category-item .category-item__content * {
	text-align: center;
}

.category-item .category-item__name {
	color: var(--head-secondary);
}

.category-item .category-item__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.category-item .category-item__link {
	color: var(--main-text-secondary);
}

.category-item .category-item__link:hover {
	color: var(--head-primary);
}

.category-item .category-item__short-desc *:not(:last-child) {
	margin-bottom: 10px;
}

.category-page .page-title {
	color: var(--head-secondary);
}

.category-services__holder {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.not_founded__title {
	color: var(--head-secondary);
}

.service-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: auto;
	padding: 10px;
	border-radius: 10px;
	background: var(--background-secondary);
}

.service-item__top {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
}

.service-item__btn {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--head-primary);
	transition: 0.3s ease-in;
}

.service-item__btn svg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	object-fit: contain;
}
.service-item__btn svg path {
	stroke: var(--head-primary);
}

.service-item:hover .service-item__btn {
	color: var(--primary);
}

.service-item:hover .service-item__btn svg path {
	stroke: var(--primary);
}

.service-item__characters {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 30px;
	padding: 17px 20px;
	width: 100%;
	border-radius: 5px;
	background: var(--background-thirdly);
}

.character-service {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: calc((100% - 30px) / 2);
}

@media (max-width: 1650px) {
	.category-services__holder {
		gap: 20px;
	}
	.service-item__top {
		padding: 10px;
	}
}
@media (max-width: 1450px) {
	.category-services__holder {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 1192px) {
	.services-cats {
		gap: 20px;
	}
}
@media (max-width: 992px) {
	.services-block .services-block__wrapper {
		gap: 20px;
	}
	.category-services__holder {
		grid-template-columns: repeat(2, 1fr);
	}
	.service-item__characters {
		gap: 10px 20px;
		padding: 10px;
	}
}
@media (max-width: 650px) {
	.category-services__holder {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
}

/* ============ PRODUCTS STYLES =============== */

.product-cats-block .product-cat-without-links .category-item__links {
	display: none;
}

/* ============ FILTER STYLES =============== */

.shop-holder #open-filter {
	bottom: 43%;
	left: 0px;
	width: fit-content;
	height: 27px;
	padding: 5px 10px;
	transform: rotate(90deg) translateY(57px);
	align-items: center;
	justify-content: center;
	background: var(--primary);
	border-radius: 10px 10px 0px 0px;
	color: var(--head-secondary);
	font-size: 16px;
	z-index: 50;
	position: fixed;
	display: none;
}

.shop-holder .filters-wrapper {
	position: sticky;
	top: 135px;
	flex: 1 0 25%;
	max-width: 230px;
	height: 100%;
	transition: 0.3s ease-in;
}

.shop-holder .filters-wrapper:not(:has(.filters-widget)) {
	display: none;
}

.shop-holder .filters-widget {
	width: 100%;
	height: 100%;
}

.filters-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	z-index: 200;
	transition: 0.3s ease-in;
}

.filters-form .filter-top {
	display: none;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 20px;
}

.filters-form .filter-top .close-filter {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

.filters-form .filter-top .close-filter svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.filters-form .filter-top .close-filter:hover path {
	fill: var(--primary);
}

.filters-form .filter-body {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	overflow-y: auto;
	border-radius: 15px;
}

.filters-form .filter-block {
	display: flex;
	flex-direction: column;
	border-radius: 2px;
	background: var(--background-thirdly);
}

.filters-form .filter-block.filter-block-first {
	background: var(--primary);
}

.filters-form .filter-block-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	gap: 10px;
	cursor: pointer;
	transition: 0.3s ease-in;
}

.filters-form .filter-block:not(:last-child) {
	border-bottom: 1px solid var(--stroke);
}

.filters-form .filter-block-title {
	color: var(--head-primary);
	transition: 0.3s ease-in;
}

.filters-form .filter-block.filter-block-first .filter-block-title {
	color: var(--head-secondary);
}
.filters-form .filter-block.filter-block-first:hover .filter-block-title {
	color: var(--head-secondary);
}

.filters-form .filter-block-header:hover .filter-block-title,
.filters-form .filter-block.opened .filter-block-title {
	color: var(--primary);
}

.filters-form .filter-block-toggler {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: 0.3s ease-in;
}

.filters-form .filter-block-toggler svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.filters-form .filter-block-toggler svg path {
	stroke: var(--head-primary);
}

.filters-form .filter-block-header:hover .filter-block-toggler svg path {
	stroke: var(--primary);
}

.filters-form .filter-block .filter-block-toggler {
	transform: rotate(-45deg);
}

.filters-form .filter-block.opened .filter-block-toggler {
	transform: rotate(0);
}

.filters-form .filter-block-header:hover .filter-block-toggler path,
.filters-form .filter-block.opened .filter-block-toggler path {
	fill: var(--primary);
}

.filters-form .filter-block-content {
	padding: 0 20px 20px;
}

.filters-form .filter-block-content .inputs.checkboxes {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 230px;
	overflow: auto;
}

.filters-form .filter-body::-webkit-scrollbar {
	width: 3px;
}

.filters-form .filter-block-content .inputs.checkboxes::-webkit-scrollbar {
	width: 2px;
	/* ширина scrollbar */
}

.filters-form .filter-block-content .group {
	display: flex;
	gap: 10px;
}

form.filters-form .filter-block .filter-block-content .checkboxes input {
	display: none;
}

.filters-form .filter-block-content .checkboxes label {
	position: relative;
	padding-left: 24px;
	color: var(--head-primary);
	cursor: pointer;
	transition: 0.3s ease-in;
}

form.filters-form .filter-block-content .checkboxes label:hover {
	color: var(--primary);
}

form.filters-form .filter-block .filter-block-content .checkboxes label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid var(--head-primary);
	box-sizing: border-box;
	transition: 0.3s ease-in;
}

form.filters-form .filter-block .filter-block-content .checkboxes input:checked + label::before {
	border-color: var(--primary);
	border-width: 5px;
}

form.filters-form input[type="number"]::-webkit-inner-spin-button,
form.filters-form input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

form.filters-form .filter-block.filter-block-price .range-slider {
	margin-top: 26px;
}

form.filters-form .filter-block.filter-block-price .inputs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

form.filters-form .filter-block.filter-block-price .inputs input {
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	text-align: center;
	color: var(--head-primary);
	border: 1px solid var(--stroke);
	border-radius: 5px;
	outline: none;
	width: 100%;
	padding: 7px 20px;
	transition: all 0.6s;
}

form.filters-form .filter-block.filter-block-price .inputs input::placeholder {
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	text-align: center;
	color: inherit;
	transition: inherit;
}

form.filters-form .filter-block.filter-block-price .noUi-target {
	background: var(--stroke);
	height: 2px;
	border: 1px solid var(--stroke);
}

form.filters-form .filter-block.filter-block-price .noUi-horizontal {
	height: 1px;
}

form.filters-form .filter-block.filter-block-price .noUi-target {
	position: relative;
	direction: ltr;
}

form.filters-form .filter-block.filter-block-price .noUi-target,
form.filters-form .filter-block.filter-block-price .noUi-target * {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	-ms-touch-action: none;
	touch-action: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

form.filters-form .filter-block.filter-block-price .noUi-base,
form.filters-form .filter-block.filter-block-price .noUi-connects {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

form.filters-form .filter-block.filter-block-price .noUi-connects {
	border-radius: 3px;
	height: 4px;
	top: -1px;
}

form.filters-form .filter-block.filter-block-price .noUi-connects {
	overflow: hidden;
	z-index: 0;
}

form.filters-form .filter-block.filter-block-price .noUi-connect {
	background: var(--head-primary);
	height: 100%;
}

form.filters-form .filter-block.filter-block-price .noUi-connect,
form.filters-form .filter-block.filter-block-price .noUi-origin {
	will-change: transform;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 3px;
	height: 100%;
	width: calc(100% - 10px);
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

form.filters-form .filter-block.filter-block-price html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
	left: auto;
	right: 0;
}

form.filters-form .filter-block.filter-block-price .noUi-handle {
	position: absolute;
}

form.filters-form .filter-block.filter-block-price .noUi-horizontal .noUi-handle {
	cursor: pointer;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid var(--head-primary);
	right: -10px;
	top: -50%;
	transform: translateY(-50%);
	background: var(--background);
	box-shadow: unset;
}

form.filters-form .filter-block.filter-block-price .noUi-horizontal .noUi-handle::before {
	content: "";
	background: var(--card);
	opacity: 0;
	width: 21px;
	height: 21px;
	display: block;
	border-radius: 50%;
	border: 1px solid var(--primary);
	left: -7px;
	top: -7px;
	position: absolute;
	transition: opacity 0.3s ease;
}

.filters-form .buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: auto;
}

.filters-form .buttons .btn {
	width: 100%;
}

.filters-form .buttons .reset {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--main-text-primary);
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
	cursor: pointer;
	transition: 0.3s ease-in;
}

.filters-form .buttons .reset:hover {
	color: var(--primary);
}

.filters-form .buttons .reset svg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	stroke-width: 1.5px;
	object-fit: contain;
	flex-shrink: 0;
}

.filters-form .buttons .reset:hover path {
	stroke: var(--primary);
}

@media (max-width: 1192px) {
	.shop-holder #open-filter {
		display: flex;
	}
	.shop-holder .filters-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		transform: translateX(-100%);
		height: 100vh;
		padding: 30px 20px;
		background: var(--background-secondary);
		z-index: 120;
		max-width: 320px;
		width: 100%;
	}
	.shop-holder .filters-wrapper.active {
		transform: translateX(0);
	}
	.shop-holder .filters-wrapper .filter-top {
		display: flex;
	}
	.filters-form .filter-body {
		padding-right: 5px;
	}
	.filters-form .filter-block-header {
		padding: 20px 15px;
	}
	.filters-form .filter-block-content {
		padding: 0 15px 20px;
	}
}

@media (max-width: 768px) {
	form.filters-form .filter-block.filter-block-price .inputs {
		display: flex;
		flex-direction: column;
	}
}

/* ============ FOOTER =============== */

#footer {
	margin-top: auto;
	background: var(--background);
}

#footer .footer__top {
	display: flex;
	justify-content: space-between;
	padding: 40px 0;
	gap: 20px;
}

#footer .footer__left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 230px;
	width: 100%;
}

#footer .footer__logo {
	filter: invert(1);
}

#footer .footer__requisites {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
#footer .footer__requisites * {
	font-size: 16px;
	line-height: 150%;
	color: var(--main-text-secondary);
}

#footer .footer__right {
	display: flex;
	gap: 30px;
}

#footer .footer__menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 205px;
	width: 100%;
}

#footer .footer__menu-title,
#footer .footer__contacts-title {
	font-weight: 400;
	color: var(--head-secondary);
}

#footer .footer__nav .footer-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#footer .footer__nav .footer-menu li a {
	line-height: 1.2;
	color: var(--main-text-secondary);
}

#footer .footer__nav .footer-menu li a:hover {
	color: var(--primary);
}

#footer .footer__info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 205px;
	width: 100%;
}

#footer .footer__addresses,
#footer .footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#footer .footer__addresses .addresses__value * {
	color: var(--main-text-secondary);
	font-size: 14px;
	line-height: 130%;
}

#footer .footer__contacts-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

#footer .footer__contacts-info * {
	font-size: 14px;
	line-height: 130%;
	color: var(--main-text-secondary);
}

#footer .footer__contacts-info a:hover {
	color: var(--primary);
}

#footer .footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px 20px;
	border-top: 1px solid var(--main-text-secondary);
	padding: 15px 0 20px;
}

#footer .footer__bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

#footer .dev {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--main-text-secondary);
	line-height: 1;
}

.glogo {
	width: 111px;
	height: 17px;
	mask-image: url("../images/gmask.png");
	mask-origin: border-box;
	mask-size: contain;
	mask-repeat: no-repeat;
	background-color: var(--main-text-secondary);
	position: relative;
	cursor: pointer;
	display: inline-flex;
	vertical-align: sub;
	overflow: hidden;
}

.glogo:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: red;
	transform: translateX(100%);
	transition: transform 0.7s ease-in;
	background: linear-gradient(90deg, #fe6604 10%, #ee0a76 30%, #ee0a76 60%, #fe6604 101%) repeat-x 0 0;
	background-size: 100px;
	animation-duration: 5s;
	animation-name: slideUp;
	animation-iteration-count: infinite;
	animation-delay: 3s;
}

@keyframes slideUp {
	0% {
		transform: translateX(-100%);
	}

	50% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(100%);
	}
}

#footer .footer__copy {
	color: var(--main-text-secondary);
}

#footer .privacy-holder {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--main-text-secondary);
}

#footer .privacy-holder:hover {
	color: var(--primary);
}

@media (max-width: 992px) {
	#footer .footer__top {
		flex-direction: column;
		padding: 20px 0;
	}
	#footer .footer__left,
	#footer .footer__info {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		max-width: unset;
	}
	#footer .footer__left {
		gap: 10px;
	}
	#footer .footer__right {
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		max-width: unset;
	}
	#footer .footer__menu,
	#footer .footer__addresses,
	#footer .footer__contacts {
		gap: 10px;
		max-width: unset;
	}
	#footer .footer__nav .footer-menu {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px 20px;
	}
	#footer .footer__bottom {
		flex-wrap: wrap;
	}
	#footer .dev {
		order: 3;
		width: 100%;
		justify-content: center;
	}
}
@media (max-width: 650px) {
	#footer .footer__bottom {
		flex-direction: column;
	}
}

/* ============== MODAL ============= */

.fancybox__content .fancybox__html5video {
	outline: 0;
}
.theme-modal {
	display: none;
}

.theme-modal.fancybox__content {
	max-width: 490px;
	width: 100%;
	border: 1px solid var(--bg-colors-stroke);
	border-radius: 15px;
	padding: 30px;
	background: var(--background-secondary);
	overflow-y: auto;
	z-index: 9999;
	transition: 0.3s ease-in;
}

.theme-modal.fancybox__content .modal__title {
	width: 100%;
	margin-bottom: 15px;
}

.theme-modal.fancybox__content .modal__subtitle {
	margin-bottom: 30px;
}

.theme-modal.fancybox__content .close__modal {
	width: 100%;
}
.fancybox__toolbar__column.is-right .f-button svg path,
.fancybox__toolbar__column.is-right .f-button svg circle {
	stroke: var(--background-thirdly);
}
.fancybox__content > .f-button.is-close-btn {
	--f-button-width: 18px !important;
	--f-button-height: 18px !important;
	--f-button-svg-width: 100% !important;
	--f-button-svg-height: 100% !important;
	--f-button-bg: transparent !important;
	--f-button-active-bg: transparent !important;
	--f-button-hover-bg: transparent !important;
	top: 20px !important;
	right: 20px !important;
	opacity: 1 !important;
	display: none !important;
}

.fancybox__content .f-button.is-close-btn svg path {
	fill: var(--background);
	stroke: transparent !important;
	transition: 0.3s ease-in;
}
.fancybox__content .f-button.is-close-btn:hover svg path {
	fill: var(--primary);
}
.fancybox__backdrop {
	background: rgba(5, 8, 14, 0.7) !important;
}
@media (max-width: 768px) {
	.theme-modal.fancybox__content {
		padding: 30px 20px;
	}
	.theme-modal.fancybox__content .modal__subtitle {
		margin-bottom: 15px;
	}
}

/* ============== FORMS ============= */

.form {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}

.form__inputs {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}

input,
textarea,
select {
	outline: none;
	border: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: none;
	min-height: 115px;
}

.form-floating {
	position: relative;
	width: 100%;
	display: flex;
}
.form-floating textarea.form-control {
	border-radius: 30px;
}
.form-floating .form-control {
	position: relative;
	display: block;
	width: 100%;
	padding: 14.5px 27px;
	max-height: 50px;
	height: fit-content;
	color: var(--main-text-primary);
	font-size: 16px;
	line-height: 130%;
	border: 1px solid var(--stroke);
	border-radius: 100px;
	background: var(--background-thirdly);
	cursor: pointer;
	transition: 0.3s ease-in;
}

.form-floating .form-control:hover,
.form-floating .form-control:focus {
	border-color: var(--primary);
	color: var(--primary);
}

.form-floating .form-control:focus {
	background: var(--background-secondary);
}

.form-floating .form-control::placeholder {
	font-size: 16px;
	line-height: 130%;
	color: var(--main-text-primary);
	transition: all 0.3s ease-in;
}

.form-floating .form-control:focus::placeholder,
.form-floating .form-control:hover::placeholder {
	color: var(--primary);
}

.form .form-control.error {
	border-color: red !important;
	color: red !important;
}

.form .form-control.error::placeholder {
	color: red !important;
}

.form input.hidden {
	display: none;
}

.form__buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.form__buttons .btn {
	width: 100%;
}

.form__buttons .privacy-policy {
	width: 100%;
	color: var(--main-text-primary);
}

.form .privacy-policy a:hover {
	color: var(--primary);
}

.form .file__title {
	color: var(--head-primary);
	cursor: pointer;
	transition: 0.2s ease-in;
}
.form .file__title:hover {
	color: var(--primary);
}
.form .file__upload-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.form .file__item {
	display: flex;
	align-items: center;
	gap: 5px;
}

.form .file__item p {
	color: var(--head-primary);
	font-size: 14px;
}

.form .file__item-delete {
	cursor: pointer;
}
.form .file__item-delete svg {
	width: 12px;
	height: 12px;
}

.form .file__item-delete svg path {
	fill: var(--primary);
}

.form .agreement {
	display: flex;
	align-items: center;
	gap: 15px;
}

.form .agreement input[type="checkbox"] {
	max-width: 15px;
	max-height: 15px;
	cursor: pointer;
}

button:disabled {
	pointer-events: none;
	opacity: 0.5;
}

@media (max-width: 768px) {
	.form {
		gap: 20px;
	}
	.form__inputs {
		gap: 10px;
	}
	.form-floating select.form-control {
		padding-right: 35px;
	}
	.form-floating .select-holder::before {
		width: 15px;
		height: 15px;
		right: 15px;
		background-size: 15px;
	}
}

/* ============= 404 ERROR PAGE =========== */

.error__page {
	position: relative;
	/* margin-top: -125px; */
}

.error__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.error__img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--background);
	opacity: 0.5;
}

.error__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.error__holder {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 40px;
	max-width: 950px;
	width: 100%;
	margin: 220px auto 90px;
}

.error__content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}

.error__content * {
	text-align: center;
	color: var(--head-secondary);
	margin: 0 auto;
}

.error__content .error__big {
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 90px;
	line-height: 100%;
}

.error__content .error__text {
	max-width: 550px;
	width: 100%;
}

.error__content .error__btn {
	margin-top: 25px;
}

/*# sourceMappingURL=main.css.map */

/******** Woocommerce Start *********/

body.woocommerce-shop .mainbanner-block {
	margin-top: -195px;
}
body.woocommerce-shop .mainbanner-block .slide-mainbanner__content {
	max-width: 1340px;
}
body.woocommerce-shop .mainbanner-block .slide-mainbanner__text {
	max-width: 710px;
}

.subcats-holder {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 30px;
	margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

.item-subcats {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	border: 1px solid var(--stroke);
	border-radius: 15px;
	background: var(--background-thirdly);
	overflow: hidden;
	box-sizing: border-box;
}

.item-subcats__img {
	width: 100%;
	max-height: 100px;
	height: 50vw;
	border-bottom: 1px solid var(--stroke);
}

.item-subcats__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.item-subcats__title {
	padding: 20px 15px;
	transition: 0.3s ease-in;
}

.item-subcats:hover .item-subcats__title {
	color: var(--primary);
}

.shop-holder {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.products-holder {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.products-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	width: 100%;
}

li.product {
	display: flex;
	width: 100%;
}

.products-block li.product,
.viewed-block li.product {
	height: 100%;
}

li.product > a {
	display: flex;
	width: 100%;
	height: 100%;
}

.product-card {
	display: flex;
	flex-direction: column;
	border-radius: 15px;
	width: 100%;
	background: var(--background-thirdly);
	overflow: hidden;
}

.product-card__top {
	position: relative;
	padding: 20px 20px 40px;
	width: 100%;
	max-height: 105px;
	height: 50vw;
}

.product-card__tags {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	width: 100%;
	z-index: 2;
	margin-bottom: 20px;
}

.product-card__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	border: 1px solid var(--stroke);
	border-radius: 100px;
	padding: 5px 10px;
	color: var(--primary);
	background: var(--background-secondary);
}

.product-card__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bottom-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.bottom-product-card__top {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.bottom-product-card__stock {
	position: relative;
	padding-left: 10px;
	color: var(--primary);
}

.bottom-product-card__stock::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--primary);
}

.bottom-product-card__stock.out-of-stock {
	color: #ff4444;
}

.bottom-product-card__stock.out-of-stock::before {
	background-color: #ff4444;
}

.bottom-product-card__title {
	color: var(--head-primary);
	transition: 0.3s ease-in;
}

li.product > a:hover .bottom-product-card__title {
	color: var(--primary);
}

.bottom-product-card__attrs {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.bottom-product-card__attrs .bottom-product-card__attr {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 5px 15px;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--stroke);
}

.bottom-product-card__attrs .bottom-product-card__attr-value {
	color: var(--head-primary);
}

.bottom-product-card__bot {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: auto;
}

.bottom-product-card__prices {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.bottom-product-card__price {
	color: var(--head-primary);
}

.bottom-product-card__price.old-price {
	text-decoration: line-through;
}

.bottom-product-card__btn {
	width: 100%;
}

.woocommerce-no-products-found .woocommerce-info {
	font-size: clamp(1.375rem, 1.238rem + 0.69vw, 2.063rem);
	font-weight: 500;
	font-family: var(--second-family);
	color: var(--head-primary);
	line-height: 1.1;
}

@media (max-width: 1650px) {
	.shop-holder {
		gap: 20px;
	}
	.subcats-holder {
		grid-template-columns: repeat(5, 1fr);
		gap: 20px;
	}
	.products-wrapper {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}
@media (max-width: 1450px) {
	.subcats-holder {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (max-width: 1192px) {
	body.woocommerce-shop .mainbanner-block .slide-mainbanner__content {
		min-height: unset;
		padding-top: 190px;
	}
}
@media (max-width: 992px) {
	.subcats-holder {
		grid-template-columns: repeat(3, 1fr);
	}
	.products-wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
	.product-card__top {
		max-height: 150px;
	}
}
@media (max-width: 769px) {
	.subcats-holder {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.item-subcats {
		width: calc((100% - 10px) / 2);
	}
	.products-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.product-card__top {
		padding: 15px 15px 20px;
	}
	.bottom-product-card {
		padding: 15px;
	}
}
@media (max-width: 500px) {
	.products-wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.item-subcats {
		width: 100%;
	}
	/* .bottom-product-card {
		height: auto;
	} */
}

/******** Woocommerce Single Product *********/

.single-product__content {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.single-product__left {
	position: relative;
	max-width: 620px;
	width: 100%;
	height: auto;
}

.single-product__img {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
	cursor: pointer;
}

.single-product__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-product__tags {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	width: calc(100% - 40px);
	z-index: 2;
	margin-bottom: 20px;
}

.single-product__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	border: 1px solid var(--stroke);
	border-radius: 100px;
	padding: 5px 10px;
	color: var(--primary);
	background: var(--background-secondary);
}

.right-product {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.right-product__top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.right-product__details {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.right-product__status {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	padding: 5px 15px;
	background: var(--background-thirdly);
}

.right-product__status .right-product__stock {
	position: relative;
	padding-left: 20px;
	color: var(--head-primary);
}

.right-product__status .right-product__stock::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	border-radius: 50%;
	background: var(--primary);
	width: 10px;
	height: 10px;
}

.right-product__status .right-product__stock.out-of-stock::before {
	background: #ff4444;
}

.right-product__order {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 30px;
}

.right-product__prices {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.right-product__price {
	color: var(--head-primary);
}

.right-product__price.old-price {
	text-decoration: line-through;
}

.sale-price {
}

.right-product__btn {
	padding: 17px 40px;
}

.right-product__content {
	display: flex;
	flex-direction: column;
}

.right-product__desc {
	color: var(--head-primary);
	max-width: 750px;
	margin-bottom: 20px;
}

.right-product__attrs {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	overflow-x: scroll;
	margin-bottom: 10px;
}

.right-product__attrs::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	max-height: 70px;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
	transition: 0.3s ease-in;
}

.right-product__attrs.opened::before {
	opacity: 0;
}

.right-product__attrs::-webkit-scrollbar {
	height: 4px;
}

.right-product__attr {
}

.right-product__attr.hidden {
	display: none;
}

.right-product__attr__content {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 10px 30px;
	background: var(--background-thirdly);
	min-width: 435px;
	width: 100%;
}

.right-product__attr:not(:last-child) {
	border-bottom: 1px solid var(--stroke);
}

.right-product__attr__content.right-product__attr-thead {
	padding: 16px 30px;
	background: var(--head-primary);
}

.right-product__attr-name,
.right-product__attr-value {
	width: calc((100% - 10px) / 2);
	color: var(--head-primary);
}

.right-product__attr__content.right-product__attr-thead .right-product__attr-name,
.right-product__attr__content.right-product__attr-thead .right-product__attr-value {
	color: var(--head-secondary);
}

.more-attrs {
	width: 100%;
}

.right-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
}

.action-product {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.action-product__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

.action-product__icon svg,
.action-product__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.action-product__text {
}

@media (max-width: 1450px) {
	.right-product {
		gap: 20px;
	}
}
@media (max-width: 1192px) {
	.single-product__left {
		width: 40%;
	}
	.right-product {
		width: 60%;
	}
	.single-product__content {
		gap: 20px;
	}
	.single-product__img {
		position: sticky;
		top: 135px;
		height: auto;
	}
}
@media (max-width: 769px) {
	.single-product__content {
		flex-direction: column;
	}
	.single-product__img {
		position: static;
	}
	.right-product,
	.single-product__left {
		width: 100%;
	}
	.single-product__left {
		max-width: unset;
		max-height: 400px;
		height: 70vw;
	}
	.single-product__img {
		height: 100%;
	}
	.right-product__attr__content {
		padding: 10px 20px;
	}
	.right-product__attr__content.right-product__attr-thead {
		padding: 16px 20px;
	}
}

/******** Woocommerce End *********/

/******** Mainbanner Styles Start *********/
.mainbanner-block {
	position: relative;
	margin-top: -125px;
}

.mainbanner-block .mainbanner-block__swiper {
	width: 100%;
	height: 100%;
}

.mainbanner-block .slide-mainbanner {
	width: 100%;
	height: 100%;
}

.mainbanner-block .slide-mainbanner__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mainbanner-block .slide-mainbanner__img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--background);
	opacity: 0.5;
	z-index: 1;
}

.mainbanner-block .slide-mainbanner__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 80% center;
}

.mainbanner-block .slide-mainbanner__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	padding-top: 220px;
	padding-bottom: 100px;
	min-height: 686px;
	z-index: 2;
}

.mainbanner-block .slide-mainbanner__title {
	color: var(--head-secondary);
	text-align: center;
	font-size: clamp(1.5rem, 1.05rem + 2.25vw, 3.75rem);
}

.mainbanner-block .slide-mainbanner__title:not(:last-child) {
	margin-bottom: 15px;
}

.mainbanner-block .slide-mainbanner__text {
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.mainbanner-block .slide-mainbanner__text:not(:last-child) {
	margin-bottom: 40px;
}

.mainbanner-block .slide-mainbanner__text * {
	color: var(--main-text-secondary);
	text-align: center;
}

.mainbanner-block .slide-mainbanner__btns {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 40px;
	margin: 0 auto;
}

.mainbanner-block .swiper-nav {
	margin-top: 0;
	gap: 10px;
}

.mainbanner-block .swiper-button-prev,
.mainbanner-block .swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.mainbanner-block .swiper-button-prev {
	left: 30px;
}

.mainbanner-block .swiper-button-next {
	right: 30px;
}

.mainbanner-block .swiper-pagination {
	position: absolute;
	top: unset !important;
	bottom: 50px !important;
	left: 50% !important;
	transform: translateX(-50%);
}

@media (max-width: 1192px) {
	.mainbanner-block .slide-mainbanner__content {
		padding-top: 160px;
	}
	.mainbanner-block .slide-mainbanner__text:not(:last-child) {
		margin-bottom: 20px;
	}
	.mainbanner-block .swiper-nav {
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 30px);
		margin-top: 0;
		margin: 0 auto;
		z-index: 2;
	}
	.mainbanner-block .swiper-button-prev,
	.mainbanner-block .swiper-button-next {
		position: static;
		transform: unset;
	}
	.mainbanner-block .swiper-pagination {
		position: static;
		transform: unset;
	}
	.mainbanner-block .swiper-nav .swiper-pagination {
		gap: 5px;
	}
}

@media (max-width: 435px) {
	.mainbanner-block .slide-mainbanner__btn {
		width: 100%;
	}
}

/******** Mainbanner Styles End *********/

/******** Products-cat Styles Start *********/

.product-cats-block {
	background: var(--background);
}

.product-cats-block__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	border: 1px solid var(--stroke-secondary);
	border-radius: 100px;
	padding: 10px 15px;
	color: var(--main-text-secondary);
	background: var(--main-text-primary);
	margin-bottom: 20px;
}

.product-cats-block__title {
	color: var(--head-secondary);
	max-width: 1010px;
}

.product-cats-block__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.product-cats-block__btn {
	margin: 40px auto 0;
}

/******** Products-cat Styles End *********/
