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

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

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

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

:root {
	--container: 1600px;
	--container-sm: 1320px;
	--gap: 24px;
	--radius: 20px;
	--radius-sm: 10px;
	--header-height: 50px;
	--admin-bar: 32px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--h1-size: 36px;
	--h2-size: 32px;
	--h3-size: 28px;
	--h4-size: 24px;
	--h5-size: 21px;
	--h6-size: 18px;

	--blue: #2368D3;
	--blue-dark: #0A192D;
	--black: #222222;
	--grey: #656565;
	--grey-dark: #4F4F4F;
	--white: #FFFFFF;
	--light: #E6E6E6;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	color: var(--grey);
	background: var(--white);
}
a {
	color: var(--blue);
	transition: .5s;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover-span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	margin: var(--gap) 0 calc(var(--gap) / 1.5);
	line-height: 1.2;
	color: var(--black);
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 calc(var(--gap) / 1.5);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
strong {
	font-weight: 700;
}
blockquote {
	font-style: italic;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / 2 / -2) calc(var(--gap) / -2);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 2 / 2);
	margin-bottom: calc(var(--gap) / 2);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
::-webkit-input-placeholder {
	color: var(--grey);
}
::-moz-placeholder {
	color: var(--grey);
}
:-ms-input-placeholder {
	color: var(--grey);
}
:-moz-placeholder {
	color: var(--grey);
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--light);
	color: var(--black);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
	height: 50px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 100px;
	resize: vertical;
}
select {
	-moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
	cursor: pointer;
	background-image: url(images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - var(--gap) / 2.5) center;
	background-size: 24px;
	padding-right: calc(var(--gap) * 1.5);
}
.form-field-button.center {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: var(--gap) 0 0;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
	font-size: var(--text-size-sm);
}
.form-field-policy {
	font-size: var(--text-size-sm);
	line-height: 1.2;
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
	display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: block;
	padding-left: 32px;
	cursor: pointer;
}
.wpcf7-acceptance label {
	position: relative;
	display: inline-block;
}
.wpcf7-acceptance input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: var(--white);
	border: 1px solid #BEBDBD;
	width: 20px;
	height: 20px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: calc(var(--radius-sm) / 2);
	-webkit-border-radius: calc(var(--radius-sm) / 2);
	border-radius: calc(var(--radius-sm) / 2);
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: .25s;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
	content: '';
    width: 6px;
    height: 11px;
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    transform: rotate(45deg);
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.container-sm {
	width: 100%;
	max-width: var(--container-sm);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: calc(var(--gap) * 3.333);
	padding-bottom: calc(var(--gap) * 3.333);
	z-index: 1;
}
/*.section-sm {
	position: relative;
	padding-top: calc(var(--gap) * 2.667);
	padding-bottom: calc(var(--gap) * 2.667);
	z-index: 1;
}
.section-lg {
	position: relative;
	padding-top: calc(var(--gap) * 4);
	padding-bottom: calc(var(--gap) * 4);
	z-index: 1;
}*/
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}
.w-100 {
	width: 100%;
}


.heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 1.667);
}
.heading.white {
	color: var(--white);
}
.heading.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
}
.heading.center {
	text-align: center;
}
.heading p:first-child {
	margin-bottom: calc(var(--gap) / 2);
}
.heading p:first-child span {
	display: inline-flex;
	align-items: center;
	font-size: var(--text-size);
	font-weight: 500;
	padding: calc(var(--gap) / 8) calc(var(--gap) / 2.4);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	background: #192434;
	color: var(--white);
	border: 1px solid var(--grey-dark);
}
.heading h2 {
	font-size: var(--h1-size);
	margin: 0 0 calc(var(--gap) / 2);
}
.heading.white h2 {
	color: var(--white);
}
.heading h2:last-child,
.heading.flex h2 {
	margin-bottom: 0;
}


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) / 3);
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	line-height: 1.5;
	border: 1px solid transparent;
	padding: calc(var(--gap) / 2) var(--gap);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	outline: none;
	min-height: 50px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn-icon-left:before,
.btn-icon-right:after {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	transition: .5s;
}
.btn-primary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--blue-dark);
	border-color: var(--blue-dark);
	color: var(--white);
}
.btn-primary:before,
.btn-primary:after {
	background-color: var(--white);
}
.btn-outline-primary {
	background-color: transparent;
	border-color: var(--black);
	color: var(--black);
}
.btn-outline-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-outline-primary:before,
.btn-outline-primary:after {
	background-color: var(--black);
}
.btn-outline-primary:hover:before,
.btn-outline-primary:hover:after {
	background-color: var(--white);
}
.btn-outline-secondary {
	background-color: transparent;
	border-color: var(--white);
	color: var(--white);
}
.btn-outline-secondary:hover {
	background-color: var(--grey-dark);
	border-color: var(--grey-dark);
	color: var(--white);
}
.btn-outline-secondary:before,
.btn-outline-secondary:after {
	background-color: var(--white);
}
.btn.btn-link {
	font-weight: 400;
	padding: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--blue);
	min-width: inherit;
	min-height: inherit;
}
.btn.btn-link.white {
	color: var(--white);
}
.btn.btn-link:hover {
	color: var(--blue-dark);
}
.btn.btn-link.white:hover {
	color: var(--blue);
}
.btn.btn-link:before,
.btn.btn-link:after {
	background-color: var(--blue);
}
.btn.btn-link.white:before,
.btn.btn-link.white:after {
	background-color: var(--white);
}
.btn.btn-link:hover:before,
.btn.btn-link:hover:after {
	background-color: var(--blue-dark);
}
.btn.btn-link.white:hover:before,
.btn.btn-link.white:hover:after {
	background-color: var(--blue);
}
.btn-icon-arrowRight:before,
.btn-icon-arrowRight:after {
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
}


.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--gap);
	gap: calc(var(--gap) / 3);
}
.swiper-pagination-bullet {
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px !important;
	height: 12px !important;
	background: var(--light) !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: var(--radius) !important;
	-webkit-border-radius: var(--radius) !important;
	border-radius: var(--radius) !important;
	transition: .5s;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
	background: var(--blue) !important;
}


button.swiper-navigation {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	background: var(--white);
	border: 1px solid var(--light);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transform: translateY(-50%);
	opacity: 0;
	transition: .5s;
	z-index: 3;
}
*:hover > button.swiper-navigation {
	opacity: 1;
}
button.swiper-navigation:hover {
	background: var(--blue);
}
button.swiper-navigation:disabled {
	background: var(--white);
	opacity: 0;
	cursor: no-drop;
}
button.swiper-navigation.prev {
	left: -20px;
}
button.swiper-navigation.next {
	right: -20px;
}
button.swiper-navigation:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
	background-color: var(--black);
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	transition: .5s;
}
button.swiper-navigation:hover:before {
	background-color: var(--white);
}
button.swiper-navigation.prev:before {
	transform: scale(-1, 1);
}
button.swiper-navigation:disabled:before {
	background-color: var(--black);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.soc-links li.soc-mobile {
	display: none;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #192434;
	border: 1px solid var(--grey-dark);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
}
.soc-links li a:hover {
	background: var(--black);
}
.soc-links li a svg {
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
}
.soc-links li a path {
	fill: var(--white);
	transition: .5s;
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	display: flex;
	flex-direction: column;
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.mobile-header {
	position: relative;
	background: var(--black);
	padding: var(--gap);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	height: calc(var(--header-height) + var(--gap) * 2);
	z-index: 1;
}
.mobile-logo {
	max-width: 140px;
}
.mobile-logo img {
	max-height: var(--header-height);
}
.modal-mobile-close {
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--grey);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--white);
}
.mobile-body {
	flex: auto;
	padding: var(--gap);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--h6-size);
	font-weight: 500;
	text-transform: uppercase;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--light);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--blue);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 24px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--blue);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--blue);
	transform: rotate(180deg);
}
.mobile-menu ul {
	max-height: 0;
	overflow: hidden;
	flex: 0 0 100%;
	max-width: 100%;
	order: 3;
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}
.mobile-menu li.active > ul {
	max-height: 9999px !important;
	margin: 0 0 10px;
}
.mobile-footer {
	position: relative;
	padding: calc(var(--gap) * 1.5) var(--gap);
	background: var(--black);
	color: var(--white);
	z-index: 1;
}
.mobile-footer a {
	color: var(--white);
	text-decoration: none;
}
.mobile-footer a:hover {
	color: var(--blue);
}



.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 480px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-dialog.modal-full {
	max-width: var(--container);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5) calc(var(--gap) * 1.5);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: var(--black);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .8;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h4-size);
	color: var(--black);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	margin-bottom: calc(var(--gap) / 3);
}
.modal-description {
	text-align: center;
	color: var(--grey);
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: var(--grey);
	width: 32px;
	height: 32px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}


.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	margin: calc(var(--gap) + 2px) calc(var(--gap) / -2) 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: calc(var(--gap) * -1);
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - var(--gap)) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
	margin-top: calc(var(--gap) / 4);
	font-style: italic;
}
.alignleft {
	float: left;
	margin-right: calc(var(--gap) * 1.5);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: calc(var(--gap) * 1.5);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}



.menu-items {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: var(--gap);
	text-transform: uppercase;
}
.menu-items li {
	position: relative;
	z-index: 1;
}
.menu-items li a {
	display: flex;
	align-items: center;
	padding: 6px 0;
	color: var(--white);
	text-decoration: none;
}
.menu-items li a:hover,
.menu-items li.current-menu-item > a {
	color: var(--blue);
}
.menu-items li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--white);
	transition: .5s;
}
.menu-items li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.menu-items li.menu-item-has-children > a:hover:after,
.menu-items li.current-menu-item.menu-item-has-children > a:after {
	background-color: var(--blue);
}
.menu-items ul {
	position: absolute;
	top: 100%;
	left: calc(var(--gap) / -1.5);
	margin: 0;
	padding: calc(var(--gap) / 3) 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
	list-style: none;
	background: var(--white);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	width: max-content;
	max-width: 240px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: -99;
}
.menu-items li:hover > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
	z-index: 1;
}
.menu-items > li:last-child > ul {
	left: auto;
	right: 0;
}
.menu-items ul li a,
.menu-items.white ul li a {
	padding: calc(var(--gap) / 3) calc(var(--gap) / 1.5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: none;
	color: var(--black);
}
.menu-items ul li a:hover,
.menu-items.white ul li a:hover {
	color: var(--blue);
}
.menu-items ul li.menu-item-has-children > a:after,
.menu-items ul li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}
.menu-items ul ul {
	top: calc(var(--gap) / 1.5);
	left: 100%;
}






.wrapper {
	position: relative;
	z-index: 1;
}

.header {
	position: sticky;
	top: 0;
	padding: var(--gap) 0;
	background: #03060B;
	color: var(--white);
	z-index: 92;
}
.admin-bar .header {
	top: var(--admin-bar);
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) * 1.333);
	height: var(--header-height);
}
.header-logo {
	max-width: 200px;
}
.header-logo img {
	max-height: var(--header-height);
}
.main-menu {
	flex: auto;
	justify-content: space-evenly;
}
.header-phone {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.header-phone a {
	font-weight: 600;
	text-decoration: none;
	color: var(--white);
}
.header-phone a:hover {
	color: var(--blue);
}
.header-phone span {
	font-size: var(--text-size-sm);
	color: var(--grey);
}
.lang-menu {
	text-transform: uppercase;
}
.lang-menu ul li.current-lang {
	display: none;
}
.header-toggle {
	display: flex;
}
.header-toggle button {
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: var(--white);
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background-color: var(--blue);
}


.footer {
	position: relative;
	background: var(--blue-dark);
	color: var(--white);
	z-index: 1;
}
.footer a:not(.btn) {
	color: var(--white);
	text-decoration: none;
}
.footer a:not(.btn):hover {
	color: var(--blue);
}
.footer-wrap {
	padding: calc(var(--gap) * 2) 0;
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.footer-widget {
	max-width: 280px;
}
.footer-widget-title {
	font-weight: 700;
}
.footer-logo {
	margin-bottom: calc(var(--gap) * 1.333);
}
.footer-info {
	flex: auto;
	margin-bottom: calc(var(--gap) * 1.333);
}
.footer-menu,
.footer-contacts {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.footer-menu ul {
	display: none;
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	font-size: var(--text-size-sm);
	padding: 0 0 calc(var(--gap) / 1.2);
}
.footer-bottom p {
	margin: 0;
}


.main {
	position: relative;
	z-index: 1;
}


.page-header {
	padding: var(--gap) 0;
}
.page-breadcrumbs {
	position: relative;
	color: var(--black);
	z-index: 1;
}
.page-breadcrumbs a {
	color: var(--grey);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--blue);
}
.page-header.bg-light {
	padding-top: 0;
}
.page-title {
	font-size: var(--h1-size);
	margin: 0; 
}
.page-content img {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.page-content hr {
	clear: both;
	display: block;
	border: none;
	margin: 0;
}

.error-404-number {
	font-size: calc(var(--h1-size) * 7);
	font-weight: 700;
	text-align: center;
	line-height: 1;
	color: var(--grey);
	opacity: .3;
}
.error-404-button {
	text-align: center;
}




.hero-section {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: calc(100vh - var(--header-height) - var(--gap) * 2);
}
.admin-bar .hero-section {
	min-height: calc(100vh - var(--header-height) - var(--gap) * 2 - var(--admin-bar));
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-bg:after {
	content: '';
	background: linear-gradient(90deg, #03060B 0%, #03060B 35%, rgba(3, 6, 11, 0.5) 53%, rgba(3, 6, 11, 0) 80%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.hero-wrap {
	display: flex;
	gap: var(--gap);
	justify-content: space-between;
	align-items: flex-end;
}
body.tax-product_cat .hero-wrap {
	margin-bottom: calc(var(--gap) * 4);
}
.hero-left {
	flex: 0 0 66%;
	max-width: 860px;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2.667);
}
.hero-right {
	max-width: calc(34% - var(--gap));
}
.hero-content {
	font-size: var(--h4-size);
	color: var(--white);
}
.hero-content p:first-child {
	margin-bottom: calc(var(--gap) / 2);
}
.hero-content p:first-child strong {
	display: inline-flex;
	align-items: center;
	font-size: var(--text-size);
	font-weight: 500;
	padding: calc(var(--gap) / 8) calc(var(--gap) / 2.4);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	background: #192434;
	border: 1px solid var(--grey-dark);
}
.hero-content h1 {
	font-size: calc(var(--h2-size) * 2);
	margin: 0 0 var(--gap);
	color: var(--white);
}
.hero-content h1:last-child {
	margin-bottom: 0;
}
.hero-advantages {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.hero-advantages-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.hero-advantages-item__image {
	flex: 0 0 48px;
	max-width: 48px;
	width: 48px;
	height: 48px;
	border: 1px solid var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-advantages-item__image img {
	max-width: 24px;
	max-height: 24px;
}
.hero-advantages-item__info {
	flex: auto;
	color: var(--white);
}
.hero-advantages-item__info span {
	display: block;
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 6);
	font-weight: 600;
	font-size: var(--h5-size);
}
.hero-buttons {
	display: flex;
	gap: var(--gap);
}
.hero-video {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	min-height: 60px;
	padding-left: calc(60px + var(--gap) / 3);
	color: var(--white);
	text-decoration: none;
	z-index: 1;
}
.hero-video:hover {
	color: var(--blue);
}
.hero-video:before,
.hero-video:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	transition: .5s;
}
.hero-video:before {
	border: 1px solid var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.hero-video:hover:before {
	border-color: var(--blue);
}
.hero-video:after {
	-webkit-mask-size: 24px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 60% center;
	-webkit-mask-image: url(images/play.svg);
	mask-image: url(images/play.svg);
	background-color: var(--white);
}
.hero-video:hover:after {
	background-color: var(--blue);
}
.hero-video span {
	display: block;
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 6);
	font-weight: 600;
	font-size: var(--h5-size);
}





.products-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.products-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.products-item a {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	z-index: 1;
}
.products-item__image {
	flex: 0 0 calc((var(--container-sm) - var(--gap)) / 2 / 1.75);
	max-height: calc((var(--container-sm) - var(--gap)) / 2 / 1.75);
}
.products-item__info {
	flex: auto;
	padding: var(--gap);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: calc(var(--gap) / 2);
}
.products-item__title {
	font-size: var(--h5-size);
	font-weight: 700;
	line-height: 1.2;
	color: var(--black);
	margin: 0;
}
.products-item__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
}
.products-item__description {
	flex: auto;
	color: var(--grey);
}
.products-item__meta {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: calc(var(--gap) / 2);
}
.products-item__price {
	font-size: var(--h4-size);
	font-weight: 700;
	color: var(--black);
}
.products-item__price .woocommerce-Price-currencySymbol,
.products-item__price .price-from {
	font-size: var(--text-size);
	font-weight: 400;
	color: var(--grey);
}
.products-item__price del {
	font-size: var(--text-size);
	color: var(--grey);
	display: block;
	margin-bottom: calc(var(--gap) / -4);
}
.products-item__price ins {
	text-decoration: none;
}


.categories-block .products-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 24px;
	grid-row-gap: 24px;
	margin: 0;
}
.categories-item:nth-child(1) {
	grid-area: 1 / 1 / 3 / 2;
}
.categories-item:nth-child(2) {
	grid-area: 1 / 2 / 2 / 3;
}
.categories-item:nth-child(3) {
	grid-area: 1 / 3 / 2 / 4;
}
.categories-item:nth-child(4) {
	grid-area: 2 / 2 / 3 / 3;
}
.categories-item:nth-child(5) {
	grid-area: 2 / 3 / 3 / 4;
}
.categories-item:nth-child(6) {
	grid-area: 3 / 1 / 4 / 2;
}
.categories-item:nth-child(7) {
	grid-area: 3 / 2 / 4 / 3;
}
.categories-item:nth-child(8) {
	grid-area: 3 / 3 / 4 / 4;
}
.categories-item a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	min-height: 260px;
	background: var(--light);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	z-index: 1;
}
.categories-item:nth-child(1) a {
	align-items: flex-end;
}
.categories-item__info {
	flex: 0 0 52%;
	max-width: 52%;
	padding: var(--gap);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
}
.categories-item:nth-child(1) .categories-item__info {
	flex: 0 0 60%;
	max-width: 60%;
}
.categories-item__title {
	font-size: var(--h4-size);
	font-family: 'Manrope', sans-serif;
	line-height: 1.2;
	font-weight: 700;
	color: var(--black);
	margin: 0;
	transition: .5s;
}
.categories-item:nth-child(1) .categories-item__title {
	color: var(--white);
}
.categories-item__title:hover,
.categories-item:nth-child(1) .categories-item__title:hover {
	color: var(--blue);
}
.categories-item__description {
	color: var(--grey);
}
.categories-item:nth-child(1) .categories-item__description {
	color: var(--white);
}
.categories-item__price {
	font-weight: 700;
	color: var(--black);
}
.categories-item:nth-child(1) .categories-item__price {
	color: var(--white);
}
.categories-item__image {
	flex: 0 0 48%;
	max-width: 48%;
}
.categories-item:nth-child(1) .categories-item__image {
	max-width: 100%;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.categories-item:nth-child(1) .categories-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.categories-item:nth-child(1) .categories-item__image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(17, 25, 44, 0) 33%, #11192C 80%);
	z-index: 1;
}
.categories-item__more {
	position: absolute;
	width: 40px;
	height: 40px;
	bottom: var(--gap);
	right: var(--gap);
	background: var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
	z-index: 2;
}
.categories-item__more:hover {
	background: var(--blue);
}
.categories-item__more:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
	background-color: var(--black);
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	transition: .5s;
}
.categories-item__more:hover:before {
	background-color: var(--white);
}




.about-wrap {
	position: relative;
	background: var(--blue-dark);
	color: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) * 2);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
	z-index: 1;
}
.about-left {
	flex: 0 0 calc(35% - var(--gap));
	max-width: calc(35% - var(--gap));
}
.about-heading.heading,
.about-description {
	margin-bottom: calc(var(--gap) * 1.333);
}
.about-right {
	flex: 0 0 calc(65% - var(--gap));
	max-width: calc(65% - var(--gap));
}
.counters-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.counters-item {
	position: relative;
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
	text-align: center;
	color: var(--white);
	z-index: 1;
}
.counters-item__value {
	position: relative;
	margin-bottom: calc(var(--gap) / 6);
	font-size: calc(var(--h2-size) * 2);
	line-height: 1.2;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
	z-index: 1;
}






.tabs-nav {
	margin: 0 0 var(--gap);
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3);
	line-height: 1.5;
}
.tabs-nav li {
	flex: 0 0 auto;
}
.tabs-nav li a {
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.2);
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--light);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	color: black;
	min-height: 50px;
	text-decoration: none;
}
.tabs-nav li a:hover,
.tabs-nav li.active a {
	border-color: var(--blue);
	background: var(--blue);
	color: var(--white);
}
.tabs-block {
	position: relative;
	display: none;
	z-index: 1;
}
.tabs-block.active {
	display: block;
}
.tabs-content {
	position: relative;
	z-index: 1;
}



.loading {
	pointer-events: none;
}
.loading::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,.7);
	backdrop-filter: blur(2px);
	z-index: 5;
}
.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 42px;
	margin-top: -21px;
	margin-left: -21px;
	border: 3px solid #dcdcdc;
	border-top-color: #000;
	border-radius: 50%;
	animation: tabsLoader .7s linear infinite;
	z-index: 6;
}
@keyframes tabsLoader {
	to {
		transform: rotate(360deg);
	}
}



.works-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.works-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(236, 236, 236, 0.93);
	z-index: 1;
}
.works-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 var(--gap);
}
.works-wrap .heading {
	flex: 0 0 calc(21% - var(--gap) / 2);
	max-width: calc(21% - var(--gap) / 2);
}
.works-wrap .tabs-nav {
	flex: 0 0 calc(79% - var(--gap) / 2);
	max-width: calc(79% - var(--gap) / 2);
	justify-content: flex-end;
	margin-bottom: calc(var(--gap) * 1.667);
}
.works-wrap .tabs-blocks {
	flex: 0 0 100%;
	max-width: 100%;
	min-height: calc((var(--container) - var(--gap) * 3) / 4 / 1.65);
}
.works-carousel {
	position: relative;
	z-index: 1;
}
.works-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.works-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.works-item__image {
	position: relative;
	height: calc((var(--container) - var(--gap) * 3) / 4 / 1.65);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.works-item__image a:hover img {
	transform: scale(1.05);
}


.worksPost-item__wrap {
	position: relative;
	height: 100%;
	min-height: 280px;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	padding: var(--gap);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 1;
}
.worksPost-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.worksPost-item__image a:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(17, 25, 44, 0) 33.37%, #11192C 80.3%);
	z-index: 1;
}
.worksPost-item__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
}
.worksPost-item__title {
	margin: 0;
	font-size: var(--h6-size);
	font-weight: 700;
}
.worksPost-item__title a {
	color: var(--white);
	text-decoration: none;
}
.worksPost-item__title a:hover {
	color: var(--blue);
}
.worksPost-item__more {
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
	background: var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
	z-index: 2;
}
.worksPost-item__more:hover {
	background: var(--blue);
}
.worksPost-item__more:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
	background-color: var(--black);
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	transition: .5s;
}
.worksPost-item__more:hover:before {
	background-color: var(--white);
}




.steps-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.steps-item {
	flex: 0 0 20%;
	max-width: 20%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.steps-item__wrap {
	display: flex;
	gap: calc(var(--gap) / 2);
}
.steps-item__image {
	flex: 0 0 70px;
	max-width: 70px;
	width: 70px;
	height: 70px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}
.steps-item__image img {
	max-width: 50px;
	max-height: 50px;
}
.steps-item__info {
	flex: auto;
	padding-right: calc(var(--gap) / 2);
}
.steps-item__info span {
	display: flex;
	justify-content: space-between;
	gap: calc(var(--gap) / 2);
	font-weight: 700;
	color: var(--black);
	margin-bottom: calc(var(--gap) / 2);
	line-height: 1.2;
}
.steps-item__info span:after {
	content: '';
	background: url(images/arrow-line.svg) no-repeat right center;
	background-size: 100px;
	flex: auto;
	max-width: 100%;
	height: 8px;
	margin-right: calc(var(--gap) * -1);
	margin-top: 7px;
}
.steps-item:last-child .steps-item__info span:after {
	display: none;
}




.reviews-wrap {
	position: relative;
	background: var(--blue-dark);
	color: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) * 2);
	z-index: 1;
}
.reviews-carousel {
	position: relative;
	z-index: 1;
}
.reviews-swiper .swiper-slide {
	height: auto;
}
.reviews-item__wrap {
	position: relative;
	height: 100%;
	background: #192534;
	border: 1px solid var(--grey-dark);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	display: flex;
	align-items: flex-start;
	gap: calc(var(--gap) / 2);
	z-index: 1;
}
.reviews-item__image {
	flex: 0 0 70px;
	max-width: 70px;
	width: 70px;
	height: 70px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.reviews-item__info {
	flex: auto;
}
.reviews-item__info span {
	font-weight: 600;
	line-height: 1.2;
	display: block;
	margin-bottom: calc(var(--gap) / 2);
}



.advantages-wrap {
	position: relative;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	background: var(--white);
	padding: calc(var(--gap) * 1.333);
	z-index: 1;
}
body.tax-product_cat .advantages-wrap {
	margin-top: calc(var(--gap) * -4);
}
body.single-product .advantages-wrap {
	flex: 0 0 100%;
	max-width: 100%;
	box-shadow: none;
	border: 1px solid var(--light);
}
.advantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
body.single-product .advantages-items {
	margin: 0 calc(var(--gap) * 2.5 / -2) calc(var(--gap) * -1);
}
.advantages-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
body.single-product .advantages-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
	padding: 0 calc(var(--gap) * 2.5 / 2);
}
body.single-product .advantages-item__wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.advantages-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	margin: 0 0 calc(var(--gap) / 2);
}
body.single-product .advantages-item__image {
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	margin: 0;
}
.advantages-item__image img {
	max-height: 64px;
}
body.single-product .advantages-item__image img {
	max-height: 50px;
}
.advantages-item__info {
	text-align: center;
}
body.single-product .advantages-item__info {
	flex: auto;
	text-align: left;
}
.advantages-item__info span {
	font-weight: 700;
	line-height: 1.2;
	color: var(--black);
	margin-bottom: calc(var(--gap) / 4);
	display: block;
}



.banner-wrap {
	position: relative;
	color: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	gap: var(--gap);
	min-height: 360px;
	z-index: 1;
}
.banner-wrap:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #03060B 0%, #03060B 48.7%, rgba(3, 6, 11, 0.5) 59.14%, rgba(3, 6, 11, 0) 75.43%);
	z-index: -1;
}
.banner-wrap.blue:before {
	background: linear-gradient(89.21deg, #021F5D 28.23%, rgba(2, 31, 93, 0.8) 46.86%, rgba(2, 31, 93, 0.5) 65.33%, rgba(190, 216, 247, 0) 99.23%);
}
.banner-info {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	display: flex;
	flex-direction: column;
	padding: calc(var(--gap) * 2);
	padding-right: 0;
}
.banner-heading.heading {
	margin-bottom: var(--gap);
}
.banner-description {
	margin-bottom: calc(var(--gap) * 1.333);
}
.banner-advantages {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	margin-bottom: calc(var(--gap) * 1.333);
}
.banner-advantages-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.banner-advantages-item__image {
	flex: 0 0 48px;
	max-width: 48px;
	width: 48px;
	height: 48px;
	border: 1px solid var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner-advantages-item__image img {
	max-width: 24px;
	max-height: 24px;
}
.banner-advantages-item__info {
	flex: auto;
	color: var(--white);
}
.banner-advantages-item__info span {
	display: block;
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 6);
	font-weight: 600;
	font-size: var(--h5-size);
}
.banner-footer {
	margin-top: auto;
	display: flex;
	gap: var(--gap);
	align-items: center;
}
.banner-phone {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
}
.banner-phone:hover {
	opacity: .8;
}
.banner-phone:before {
	content: '';
	background: url(images/phone.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
}
.banner-image {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	position: relative;
	z-index: -2;
}
.banner-wrap .banner-image span {
	width: calc(100% + 100px);
	left: -100px;
}



.faq-wrap {
	display: flex;
	gap: calc(var(--gap) * 2.5);
}
.faq-left,
.faq-right {
	flex: 0 0 calc(50% - var(--gap) * 2.5 / 2);
	max-width: calc(50% - var(--gap) * 2.5 / 2);
}
.faq-left {
	padding-top: var(--gap);
}
.faq-heading {
	margin-bottom: calc(var(--gap) * 1.333);
}
.faq-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 4);
}
.faq-item {
	position: relative;
	transition: .5s;
	z-index: 1;
}
.faq-item.active {
	padding-bottom: calc(var(--gap) / 1.5);
}
.faq-item:after {
	content: '';
	background: var(--light);
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.faq-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: calc(var(--gap) / 2.5) 0;
	gap: var(--gap);
	cursor: pointer;
	transition: .5s;
}
.faq-item__title {
	font-weight: 700;
	color: var(--black);
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--black);
	transition: .5s;
}
.active .faq-item__toggle {
	transform: rotate(180deg);
}
.faq-item__body {
	max-height: 0;
	overflow: hidden;
	transition: 0.5s ease;
}
.faq-item.active .faq-item__body {
	max-height: 10000px;
}



.feedback-block {
	position: relative;
	padding: var(--gap) var(--gap) var(--gap) 0;
	z-index: 1;
}
.feedback-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: -1;
}
.feedback-bg:after {
	content: '';
	position: absolute;
	width: 75%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 43.09%, rgba(255, 255, 255, 0.772621) 56.42%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}
.feedback-wrap {
	position: relative;
	max-width: 400px;
}
.feedback-heading.heading {
	margin-bottom: var(--gap);
}
.feedback-description {
	margin-bottom: var(--gap);
}




.page-description {
	margin-top: calc(var(--gap) * 2.667);
}

.woocommerce-pagination,
.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 1.333);
	z-index: 2;
}
ul.page-numbers,
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: calc(var(--gap) / 3);
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.page-numbers li a,
ul.page-numbers li span,
.nav-links .page-numbers {
	min-width: 50px;
	height: 50px;
	font-weight: 500;
	color: var(--black);
	border: 1px solid var(--light);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
	-moz-border-radius: calc(var(--radius-sm));
	-webkit-border-radius: calc(var(--radius-sm));
	border-radius: calc(var(--radius-sm));
}
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}



.aboutCat-wrap {
	display: flex;
	align-items: flex-start;
	gap: calc(var(--gap) * 2);
}
.aboutCat-content {
	flex: 0 0 25%;
	max-width: 25%;
}
.aboutCat-content ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.aboutCat-content ul li {
	position: relative;
	padding-left: 32px;
	z-index: 1;
}
.aboutCat-content ul li:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	left: 0;
	background: url(images/check-mark.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.aboutCat-image {
	flex: auto;
	text-align: center;
}
.aboutCat-advantages {
	flex: 0 0 40%;
	max-width: 40%;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.aboutCat-advantages-item {
	position: relative;
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	background: var(--white);
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	align-content: flex-start;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 2);
	padding: var(--gap);
	z-index: 1;
}
.aboutCat-advantages-item__image {
	flex: 0 0 50px;
	max-width: 50px;
}
.aboutCat-advantages-item__title {
	flex: 0 0 calc(100% - 50px - var(--gap) / 2);
	max-width: calc(100% - 50px - var(--gap) / 2);
	font-weight: 700;
	color: var(--black);
	line-height: 1.2;
	margin: 0;
}
.aboutCat-advantages-item__text {
	flex: 0 0 100%;
	max-width: 100%;
}



.singleProduct-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: calc(var(--gap) * 3.333) var(--gap);
}
.singleProduct-images {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.singleProductImagesMain-swiper {
	margin-bottom: calc(var(--gap) / 2);
}
.singleProductImagesMain-item__image {
	position: relative;
	height: calc((var(--container) * .5 - var(--gap) / 2) / 1.22);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.singleProductImagesMain-swiper button.swiper-navigation.prev {
	left: calc(var(--gap) / 1.5);
}
.singleProductImagesMain-swiper button.swiper-navigation.next {
	right: calc(var(--gap) / 1.5);
}
.singleProductImagesOther-item__image {
	height: calc(((var(--container) * .5 - var(--gap) / 2) - var(--gap) / 2 * 3) / 4 / 1.22);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 3px solid transparent;
	cursor: pointer;
	transition: .5s;
}
.swiper-slide-thumb-active .singleProductImagesOther-item__image {
	border-color: var(--blue);
}
.singleProduct-summary {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 var(--gap);
}
.singleProduct-meta {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--gap);
	margin-bottom: var(--gap);
}
.singleProduct-stock {
	margin: 0;
}
.singleProduct-stock span {
	position: relative;
	border: 1px solid var(--light);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	display: inline-block;
	padding: calc(var(--gap) / 8) calc(var(--gap) / 2.4);
	z-index: 1;
}
.singleProduct-stock span .outofstock {
	color: red;
	border-color: red;
}
.singleProduct-sku span {
	font-weight: 700;
	color: var(--black);
}
.singleProduct-summary .product_title {
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 0;
	margin-bottom: var(--gap);
	font-size: var(--h1-size);
}
.singleProduct-info {
	flex: 0 0 calc(100% / 3 * 2 - var(--gap));
	max-width: calc(100% / 3 * 2 - var(--gap));
	margin-bottom: var(--gap);
}
.woocommerce-product-details__short-description {
	margin-bottom: calc(var(--gap) / 2);
}
.singleProduct-price {
	font-size: var(--h2-size);
	font-weight: 700;
	color: var(--black);
	margin-bottom: var(--gap);
	line-height: 1.2;
	display: block;
}
.singleProduct-price .woocommerce-Price-currencySymbol,
.singleProduct-price .price-from {
	font-size: var(--text-size);
	font-weight: 400;
	color: var(--grey);
}
.singleProduct-price del {
	font-size: var(--text-size);
	color: var(--grey);
	display: block;
}
.singleProduct-price ins {
	text-decoration: none;
}
.singleProduct-info form.cart {
	margin-bottom: var(--gap);
}
.singleProduct-info form.cart:last-child {
	margin-bottom: 0;
}
.singleProduct-summary .variations,
.singleProduct-summary .variations tbody,
.singleProduct-summary .variations tr,
.singleProduct-summary .variations th,
.singleProduct-summary .variations td {
	width: 100%;
	display: block;
	padding: 0;
	border: none;
}
.singleProduct-summary .variations {
	margin-bottom: var(--gap);
}
.singleProduct-summary .variations tbody {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
}
.singleProduct-summary .variations tr {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
}
.singleProduct-summary .variations th {
	text-align: left;
	color: var(--black);
	font-weight: 500;
}
.woocommerce-variation-price.singleProduct-price {
	margin-bottom: 0;
}
.button-variable-items-wrapper {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3);
}
.button-variable-items-wrapper li span {
	background: var(--white);
	border: 1px solid var(--light);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	min-width: 42px;
	color: var(--black);
	padding: calc(var(--gap) / 3) calc(var(--gap) / 2);
	cursor: pointer;
	display: block;
	transition: .5s;
}
.button-variable-items-wrapper li span:hover {
	color: var(--black);
}
.button-variable-items-wrapper li span:hover,
.button-variable-items-wrapper li.selected span {
	border-color: var(--main-color);
	background: #F9FDFE;
}

.color-variable-items-wrapper {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3);
}
.color-variable-items-wrapper li span {
	position: relative;
	display: block;
	width: 36px;
	height: 36px;
	margin: 0;
	border: 1px solid transparent;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
	transition: .5s;
	z-index: 1;
}
.color-variable-items-wrapper li span[style="background-color:#ffffff;"] {
	border-color: var(--light);
}
.color-variable-items-wrapper li.selected span {
	box-shadow: 0 3px 4px rgba(0, 0, 0, .2);
}
.color-variable-items-wrapper li.selected span:before {
	content: '';
	position: absolute;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	top: 2px;
	left: 2px;
	border: 2px solid var(--white);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 2;
}
.reset_variations {
	display: none !important;
}
.singleProduct-list {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
}
.singleProduct-list li {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.singleProduct-list span {
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
}
.singleProduct-list p {
	flex: auto;
}
.singleProduct-advantagesVertical {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	border: 1px solid var(--light);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: var(--gap);
	margin-bottom: var(--gap);
}
.singleProduct-advantagesVertical-items {
	margin-bottom: var(--gap);
	padding-bottom: var(--gap);
	border-bottom: 1px solid var(--light);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.singleProduct-advantagesVertical-items:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.singleProduct-advantagesVertical-item {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
}
.singleProduct-advantagesVertical-item span {
	flex: 0 0 35px;
	max-width: 35px;
	width: 35px;
}
.singleProduct-advantagesVertical-item p {
	flex: auto;
	margin: 0;
	color: var(--black);
}
.singleProduct-action {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	gap: var(--gap);
	margin-bottom: calc(var(--gap) * 2);
}
.singleProduct-action:last-child {
	margin-bottom: 0;
}
.singleProduct-action .btn {
	flex: 1;
}
.singleProduct-advantagesHorizontal-items {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 2) var(--gap);
}
.singleProduct-advantagesHorizontal-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.singleProduct-advantagesHorizontal-item span {
	flex: 0 0 35px;
	max-width: 35px;
	width: 35px;
}
.singleProduct-advantagesHorizontal-item p {
	flex: auto;
}
.singleProduct-mainInfo {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	border: 1px solid var(--light);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: calc(var(--gap) * 2);
	gap: calc(var(--gap) * 2);
	z-index: 1;
}
.singleProduct-characteristics,
.singleProduct-content,
.singleProduct-indyvidual {
	flex: 0 0 calc((100% / 3) - (2 * var(--gap) * 2 / 3));
	max-width: calc((100% / 3) - (2 * var(--gap) * 2 / 3));
}
.singleProduct-characteristics-heading,
.singleProduct-content-heading {
	font-size: var(--h4-size);
	font-weight: 700;
	color: var(--black);
	line-height: 1.2;
	margin-bottom: calc(var(--gap) * 1.5);
}
.woocommerce-product-attributes {
	border: none;
	border-collapse: collapse;
	width: 100%;
	padding: 0;
}
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
	padding: calc(var(--gap) / 3);
	text-align: left;
	color: var(--black);
	border-bottom: 1px solid var(--light);
}
.woocommerce-product-attributes th {
	padding-left: 0;
	font-weight: 600;
}
.woocommerce-product-attributes td {
	padding-right: 0;
}
.woocommerce-product-attributes tr:last-child th,
.woocommerce-product-attributes tr:last-child td {
	border-bottom: none;
}
.singleProduct-content-inner ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	color: var(--black);
}
.singleProduct-content-inner ul li {
	position: relative;
	padding-left: 32px;
	z-index: 1;
}
.singleProduct-content-inner ul li:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	left: 0;
	background: url(images/check-mark.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.singleProduct-indyvidual {
	background: var(--light);
	padding: calc(var(--gap) * 1.333);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.singleProduct-indyvidual-heading {
	font-size: var(--h6-size);
	color: var(--black);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	margin-bottom: calc(var(--gap) / 2);
}
.singleProduct-indyvidual-description {
	text-align: center;
	margin-bottom: calc(var(--gap) / 1.2);
}
.singleProduct-indyvidual-image {
	text-align: center;
	margin-bottom: calc(var(--gap) / 1.2);
}


.singleProduct-cta-wrap {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	gap: calc(var(--gap) * 2);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--light);
}
.singleProduct-cta-image,
.singleProduct-cta-info,
.singleProduct-cta-form {
	flex: 0 0 calc((100% / 3) - (2 * var(--gap) * 2 / 3));
	max-width: calc((100% / 3) - (2 * var(--gap)  * 2 / 3));
}
.singleProduct-cta-image {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
}
.singleProduct-cta-info {
	padding: calc(var(--gap) * 2) 0;
}
.singleProduct-cta-heading {
	margin-bottom: calc(var(--gap) * 1.333);
	font-size: var(--h4-size);
	font-weight: 700;
	color: var(--black);
	line-height: 1.2;
}
.singleProduct-cta-content {
	color: var(--black);
}
.singleProduct-cta-content ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.singleProduct-cta-content ul li {
	position: relative;
	padding-left: 32px;
	z-index: 1;
}
.singleProduct-cta-content ul li:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	left: 0;
	background: url(images/check-mark.svg) no-repeat center;
	background-size: contain;
	z-index: 1;
}
.singleProduct-cta-form {
	padding: calc(var(--gap) * 2) calc(var(--gap) * 2) calc(var(--gap) * 2) 0;
}
.singleProduct-cta-form-heading {
	font-weight: 700;
	color: var(--black);
}



.pageContacts-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.pageContacts-left {
	flex: 0 0 240px;
	max-width: 240px;
}
.pageContacts-info {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.pageContacts-info a {
	text-decoration: none;
	color: var(--black);
}
.pageContacts-info a:hover {
	color: var(--blue);
}
.pageContacts-center {
	flex: auto;
}
.pageContacts-map {
	height: 100%;
	min-height: 320px;
}
.pageContacts-map iframe {
	width: 100%;
	height: 100%;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	border: none;
}
.pageContacts-right {
	flex: 0 0 50%;
	max-width: 50%;
}



@media (max-width: 1679px) {
	:root {
		--container: 1320px;
		--container-sm: var(--container);
		--gap: 24px;
		--radius: 20px;
		--radius-sm: 10px;
		--header-height: 50px;
		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header-wrap {
		gap: var(--gap);
	}
	.header-logo {
		max-width: 140px;
	}
	.menu-items {
		gap: calc(var(--gap) / 1.6);
	}
	.hero-left {
		gap: calc(var(--gap) * 2);
	}
	.hero-content {
		max-width: 760px;
		font-size: var(--h5-size);
	}
	.categories-item__info {
		flex: 0 0 56%;
		max-width: 56%;
	}
	.categories-item__image {
		flex: 0 0 44%;
		max-width: 44%;
	}
	.categories-item:nth-child(1) .categories-item__info {
		flex: 0 0 70%;
		max-width: 70%;
	}
	.tabs-nav li a {
		padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
	}
	.singleProduct-advantagesVertical {
		padding: calc(var(--gap) / 1.5);
	}
	.singleProduct-advantagesVertical-items {
		margin-bottom: calc(var(--gap) / 1.5);
		padding-bottom: calc(var(--gap) / 1.5);
	}
	body.single-product .advantages-items {
		margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
	}
	body.single-product .advantages-item {
		flex: 0 0 calc(100% / 5);
		max-width: calc(100% / 5);
		padding: 0 calc(var(--gap) / 2);
	}
	.pageContacts-right {
		flex: 0 0 40%;
		max-width: 40%;
	}
}



@media (max-width: 1399px) {
	:root {
		--container: 1120px;
		--container-sm: var(--container);
		--gap: 20px;
		--radius: 16px;
		--radius-sm: 8px;
		--header-height: 50px;
		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header-button {
		display: none;
	}
	.hero-left {
		max-width: 660px;
	}
	.hero-content h1 {
		font-size: calc(var(--h2-size) * 1.75);
	}
	.hero-video:before, .hero-video:after {
		width: 54px;
		height: 54px;
	}
	.hero-content,
	.hero-advantages-item__info span,
	.hero-video span,
	.categories-item__title {
		font-size: var(--h6-size);
	}
	.counters-item__value {
		font-size: calc(var(--h2-size) * 1.25);
	}
	.about-wrap {
		gap: var(--gap);
	}
	.about-right {
		flex: 0 0 65%;
		max-width: 65%;
	}
	.works-wrap .heading {
		flex: 0 0 calc(30% - var(--gap) / 2);
		max-width: calc(30% - var(--gap) / 2);
	}
	.works-wrap .tabs-nav {
		flex: 0 0 calc(70% - var(--gap) / 2);
		max-width: calc(70% - var(--gap) / 2);
	}
	.aboutCat-advantages-item__image {
		flex: 0 0 40px;
		max-width: 40px;
	}
	.aboutCat-advantages-item__title {
		flex: 0 0 calc(100% - 40px - var(--gap) / 2);
		max-width: calc(100% - 40px - var(--gap) / 2);
	}
	.singleProduct-advantagesVertical-item span {
		flex: 0 0 28px;
		max-width: 28px;
		width: 28px;
	}
	.singleProduct-advantagesVertical-item p {
		font-size: var(--text-size-sm);
	}
	.singleProduct-list p {
		font-size: var(--text-size-sm);
	}
	.singleProduct-mainInfo {
		padding: calc(var(--gap) * 1.333);
		gap: calc(var(--gap) * 1.25);
	}
	.singleProduct-cta-wrap {
		gap: calc(var(--gap) * 1.25);
	}
	.singleProduct-characteristics, .singleProduct-content, .singleProduct-indyvidual,
	.singleProduct-cta-image, .singleProduct-cta-info, .singleProduct-cta-form {
		flex: 0 0 calc((100% / 3) - (2 * var(--gap) * 1.25 / 3));
		max-width: calc((100% / 3) - (2 * var(--gap) * 1.25 / 3));
	}
	.singleProduct-characteristics-heading, .singleProduct-content-heading {
		font-size: var(--h6-size);
		margin-bottom: var(--gap);
	}
	.singleProduct-indyvidual {
		padding: calc(var(--gap) * 1.25) var(--gap);
	}
	body.single-product .advantages-item__image {
		flex: 0 0 36px;
		max-width: 36px;
		width: 36px;
		height: 36px;
	}
	body.single-product .advantages-item__image img {
		max-height: 36px;
	}
	.singleProduct-cta-heading {
		font-size: var(--h6-size);
		margin-bottom: var(--gap);
	}
	.singleProduct-cta-info {
		padding: calc(var(--gap) * 1.333) 0;
	}
	.singleProduct-cta-form {
		padding: calc(var(--gap) * 1.333) calc(var(--gap) * 1.333) calc(var(--gap) * 1.333) 0;
	}
}



@media (max-width: 1199px) {
	:root {
		--container: 910px;
		--container-sm: var(--container);
		--gap: 20px;
		--radius: 16px;
		--radius-sm: 10px;
		--header-height: 44px;
		--admin-bar: 32px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.header {
		font-size: var(--text-size-sm);
		padding: calc(var(--gap) / 1.333) 0;
	}
	.header-logo {
		max-width: 100px;
	}
	.steps-item__image {
		flex: 0 0 48px;
		max-width: 48px;
		width: 48px;
		height: 48px;
	}
	.steps-item__image img {
		max-width: 28px;
		max-height: 28px;
	}
	.steps-item__info,
	.counters-item__text,
	.categories-item__description,
	.hero-advantages-item__info,
	.advantages-item__info,
	.aboutCat-advantages-item__description,
	.banner-advantages-item__info {
		font-size: var(--text-size-sm);
	}
	.steps-item__info span,
	.hero-advantages-item__info span,
	.advantages-item__info span,
	.banner-advantages-item__info span {
		font-size: var(--text-size);
	}
	.categories-item a {
		min-height: 220px;
	}
	.advantages-item__image {
		height: 48px;
	}
	.advantages-item__image img {
		max-height: 48px;
	}
	.banner-wrap {
		min-height: 280px;
	}
	.banner-image {
		flex: 0 0 calc(40% - var(--gap) / 2);
		max-width: calc(40% - var(--gap) / 2);
	}
	.banner-info {
		flex: 0 0 calc(60% - var(--gap) / 2);
		max-width: calc(60% - var(--gap) / 2);
		padding: calc(var(--gap) * 1.5);
		padding-right: 0;
	}
	.banner-wrap:before {
		background: linear-gradient(90deg, #03060B 0%, #03060B 50%, rgba(3, 6, 11, 0.5) 77%, rgba(3, 6, 11, 0) 95%);
	}
	.banner-wrap.blue:before {
		background: linear-gradient(90deg, #021F5D 50%, rgba(2, 31, 93, 0.9) 63%, rgba(2, 31, 93, 0.6) 77%, rgba(190, 216, 247, 0) 100%);
	}
	.aboutCat-advantages-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.aboutCat-advantages {
		flex: 0 0 30%;
		max-width: 30%;
	}
	.aboutCat-content {
		flex: 0 0 30%;
		max-width: 30%;
	}
	.footer-widget {
		max-width: 220px;
	}
	.footer-logo {
		max-width: 160px;
	}
	.footer-info br {
		display: none;
	}
	.soc-links li a {
		width: 36px;
		height: 36px;
	}
	.soc-links li a svg {
		flex: 0 0 16px;
		max-width: 16px;
		height: 16px;
	}
}



@media (max-width: 991px) {
	:root {
		--container: 690px;
		--container-sm: var(--container);
		--gap: 16px;
		--radius: 14px;
		--radius-sm: 10px;
		--header-height: 44px;
		--admin-bar: 32px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.main-menu {
		display: none;
	}
	.header-phone {
		margin-left: auto;
	}
	.header-logo {
		max-width: 140px;
	}
	.hero-bg:after {
		background: rgba(3, 6, 11, .75);
	}
	.hero-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2);
		align-items: flex-start;
	}
	.hero-left,
	.hero-right {
		flex: auto;
		max-width: 100%;
	}
	.hero-advantages {
		display: none;
	}
	.categories-block .products-items {
		display: flex;
		flex-wrap: wrap;
		margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
		gap: 0;
	}
	.categories-item {
		flex: 0 0 50%;
		max-width: 50%;
		margin: 0 0 var(--gap);
		padding: 0 calc(var(--gap) / 2);
	}
	.about-wrap {
		padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5);
		flex-direction: column;
		align-items: normal;
	}
	.about-left,
	.about-right {
		flex: auto;
		max-width: 100%;
	}
	.works-wrap .heading,
	.works-wrap .tabs-nav {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.works-wrap .tabs-nav {
		justify-content: flex-start;
		margin-bottom: var(--gap);
	}
	.works-item__image {
		height: calc((var(--container) - var(--gap)) / 2 / 1.65);
	}
	.steps-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.steps-item__wrap {
		min-height: 80px;
		position: relative;
		z-index: 1;
	}
	.steps-item__info span:after {
		display: none;
	}
	.steps-item__wrap:after {
		content: '';
		background: url(images/arrow-line.svg) no-repeat right center;
		background-size: 100px;
		position: absolute;
		width: 30px;
		height: 8px;
		left: 9px;
		top: 68px;
		transform: rotate(90deg);
		z-index: 1;
	}
	.steps-item:last-child .steps-item__wrap {
		min-height: inherit;
	}
	.steps-item:last-child .steps-item__wrap:after {
		display: none;
	}
	.steps-item__info br {
		display: none;
	}
	.reviews-item__wrap {
		flex-direction: column;
		gap: var(--gap);
		align-items: flex-start;
	}
	.reviews-item__info {
		flex: auto;
		max-width: 100%;
	}
	.advantages-items {
		justify-content: center;
	}
	.advantages-item,
	body.single-product .advantages-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.banner-info {
		padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5);
		flex: 0 0 100%;
		max-width: 100%;
	}
	.banner-wrap:before {
		background: rgba(3, 6, 11, .75);
	}
	.banner-wrap.blue:before {
		background: rgba(2, 31, 93, .75);
	}
	.banner-image {
		position: absolute;
		width: 100%;
		max-width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: -2;
	}
	.faq-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 3.333);
	}
	.faq-left, .faq-right {
		flex: auto;
		max-width: 100%;
	}
	.footer-wrap {
		flex-wrap: wrap;
		gap: calc(var(--gap) * 2) var(--gap);
		padding: calc(var(--gap) * 3.333) 0 calc(var(--gap) * 2);
	}
	.footer-logo,
	.footer-info {
		margin-bottom: var(--gap);
	}
	.footer-widget {
		flex: 0 0 calc(50% - var(--gap) / 2);
		max-width: calc(50% - var(--gap) / 2);
	}
	.footer-widget:first-child {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.footer-bottom {
		flex-direction: column;
		gap: calc(var(--gap) / 4);
		align-items: center;
		text-align: center;
		font-size: var(--text-size-sm);
	}
	.page-breadcrumbs {
		margin-bottom: calc(var(--gap) / 2);
	}
	.page-breadcrumbs:last-child {
		margin-bottom: 0;
	}
	.categories-item:nth-child(1) .categories-item__info {
		flex: 0 0 calc(100% - 40px - var(--gap));
		max-width: calc(100% - 40px - var(--gap));
	}
	.hero-content br {
		display: none;
	}
	.products-item__title {
		font-size: var(--h6-size);
	}
	.products-item__footer {
		flex-direction: column;
		gap: calc(var(--gap) / 1.5);
		align-items: flex-start;
		flex: auto;
	}
	.products-item__meta {
		max-width: 100%;
		align-items: flex-start;
	}
	.aboutCat-wrap {
		flex-wrap: wrap;
		gap: calc(var(--gap) * 2) var(--gap);
	}
	.aboutCat-content,
	.aboutCat-image {
		flex: 0 0 calc(50% - var(--gap) / 2);
		max-width: calc(50% - var(--gap) / 2);
	}
	.aboutCat-advantages {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.banner-advantages-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-images,
	.singleProduct-info {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProductImagesMain-item__image {
		height: calc(var(--container) / 1.22);
	}
	.singleProductImagesOther-item__image {
		height: calc((var(--container) - var(--gap) / 2 * 3) / 4 / 1.22);
	}
	.singleProduct-summary {
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: calc(var(--gap) * -1.5);
	}
	.singleProduct-stock {
		font-size: var(--text-size-sm);
	}
	.singleProduct-advantagesVertical {
		display: none;
	}
	.button-variable-items-wrapper li span {
		padding: calc(var(--gap) / 1.5) calc(var(--gap));
	}
	.singleProduct-advantagesHorizontal-items {
		gap: var(--gap);
	}
	.singleProduct-advantagesHorizontal-item {
		flex: 0 0 calc(50% - var(--gap) / 2);
		max-width: calc(50% - var(--gap) / 2);
	}
	.singleProduct-mainInfo {
		padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5);
		flex-direction: column;
		gap: calc(var(--gap) * 2);
	}
	.singleProduct-characteristics, .singleProduct-content, .singleProduct-indyvidual, .singleProduct-cta-image, .singleProduct-cta-info, .singleProduct-cta-form {
		flex: auto;
		max-width: 100%;
	}
	.singleProduct-cta-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2);
		padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5);
	}
	.singleProduct-cta-image {
		display: none;
	}
	.singleProduct-cta-info,
	.singleProduct-cta-form {
		padding: 0;
	}
	.singleProduct-cta-heading br {
		display: none;
	}
	.singleProduct-cta-form-heading {
		font-size: var(--h6-size);
	}
	.works-item {
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
	.pageContacts-wrap {
		flex-wrap: wrap;
		gap: calc(var(--gap) * 3.333) var(--gap);
	}
	.pageContacts-center {
		flex: 0 0 calc(100% - 240px - var(--gap));
		max-width: calc(100% - 240px - var(--gap));
	}
	.pageContacts-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 5);
	}
	body.single-product .advantages-wrap {
		padding: 0;
		border: none;
		overflow: inherit;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
	}
	.worksPost-item__wrap {
		min-height: 220px;
	}
	.heading.flex {
		flex-direction: column;
		align-items: flex-start;
	}
}



@media (max-width: 767px) {
	:root {
		--container: 510px;
		--container-sm: var(--container);
		--gap: 16px;
		--radius: 14px;
		--radius-sm: 10px;
		--header-height: 44px;
		--admin-bar: 46px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.categories-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.counters-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.singleProductImagesOther-item__image {
        height: calc((var(--container) - var(--gap) / 2 * 2) / 3 / 1.22);
    }
	.form-field-policy {
		font-size: 12px;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.modal-title {
		font-size: var(--h5-size);
	}
}



@media (max-width: 575px) {
	:root {
		--container: calc(100vw - var(--gap) * 2 * 1.5);
		--container-sm: var(--container);
		--gap: 16px;
		--radius: 14px;
		--radius-sm: 10px;
		--header-height: 44px;
		--admin-bar: 0px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.modal-dialog {
		max-width: var(--container);
	}
	.header-phone span {
		display: none;
	}
	.header-phone a {
		font-size: 0;
		display: inline-flex;
		align-items: center;
	}
	.header-phone a:before {
		content: '';
		flex: 0 0 24px;
		max-width: 24px;
		width: 24px;
		height: 24px;
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-image: url(images/phone.svg);
		mask-image: url(images/phone.svg);
		background-color: var(--white);
		transition: .5s;
	}
	.header-phone a:hover:before {
		background-color: var(--blue);
	}
	.hero-content h1 {
		font-size: calc(var(--h1-size) * 1.25);
	}
	.hero-buttons,
	.singleProduct-action {
		flex-direction: column;
		gap: calc(var(--gap) / 2);
	}
	.hero-video:before, .hero-video:after {
        width: 44px;
        height: 44px;
    }
    .hero-video {
    	padding-left: calc(48px + var(--gap) / 3);
    	min-height: 44px;
    }
    .hero-video:after {
    	-webkit-mask-size: 16px;
    }
    .tabs-nav li a {
        padding: calc(var(--gap) / 3) calc(var(--gap) / 2);
        min-height: 44px;
    }
    .advantages-item {
    	flex: 0 0 50%;
    	max-width: 50%;
    }
    .banner-footer {
    	flex-direction: column;
    	align-items: normal;
    }
    .footer-widget,
    .aboutCat-content, .aboutCat-image,
    .pageContacts-left, .pageContacts-center {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .products-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
	.products-item__image {
		flex: 0 0 calc(var(--container-sm) / 1.75);
		max-height: calc(var(--container-sm) / 1.75);
	}
	.products-item__meta,
	.products-item__meta .btn {
		width: 100%;
	}
	body.single-product .advantages-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
}