html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong {
	font-weight: 600;
}

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

:root {
	--brand1: #FCCC1A;
	--brand2: #FCBF09;
	--white: #ffffff;
	--btext: rgb(153 185 255 / 45%);
	--black: #000000;
	--black2: #222222;
	--black3: #333333;
	--black5: #555555;
	--black7: #777777;
	--black9: #999999;
	--fon: #F6F2EA;
	--shadow: rgb(0 0 0 / 5%);
	--shadow2: rgb(0 0 0 / 15%);
	--darkbg: #6e698b;
	--background: linear-gradient(180deg, rgb(241 255 0 / 21%) 50%, transparent 50%), linear-gradient(90deg, #fcbe06 0%, #fcc41a 100%);
	--boxshadow: inset 0px 1px 0px rgb(233 252 5 / 78%), 0px 7px 30px -3px rgb(252 190 5 / 40%), inset 0px -2px 0px rgb(111 78 0 / 37%);
	--boxshadow2: inset 0px 1px 0px rgb(233 252 5 / 78%), 0px 7px 30px -3px rgb(252 190 5 / 60%), inset 0px -2px 0px rgb(111 78 0 / 37%);
}

::selection {
	background: var(--brand1);
	color: var(--white);
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

::-moz-selection {
	background: var(--brand1);
	color: var(--white);
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background: #060A0F;
}

::-webkit-scrollbar-thumb {
	background: var(--brand1);
	border-radius: 10px;
}

::-webkit-scrollbar-track-piece {
	background: #060A0F;
}


html, body {
	width: 100%;
	min-height: 100%;
	background-color: #08090f;
	-webkit-text-size-adjust: none;
}

html, body, textarea, input, button, select {
	font-size: 14px;
	font-family: 'Geometria', sans-serif;
	color: var(--black5);
	outline: 0px;
}

input[type=text], input[type=email], input[type=search], input[type=submit], textarea{
	-webkit-appearance: none;
} 

body {
	-webkit-overflow-scrolling: touch;
	min-height: 100vh;
	overflow: overlay;
}

ul { 
	padding-left: 40px; 
	list-style: disc outside;
	margin-top: 1em;
	margin-bottom: 1em;
}

ol { 
	padding-left: 40px;
	list-style: decimal outside;
	margin-top: 1em;
	margin-bottom: 1em;
}

img {
	max-width: 100%;
	height: auto;
	border: 0px;
	vertical-align: bottom;
}

img:not([width]) {
	width: initial;
}


a {
	color: var(--brand1);
	text-decoration: none;
}

@media(hover) {
	a:hover, .link:hover {
		color: var(--brand2);
	}
}



ul.noli, ul.noli ul, ul.noli li {
	display: block;
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.wrapper {
	display: block;
	position: relative;
	min-height: calc(100vh - 120px - 369px);
}

.max {
	display: block;
	position: relative;
	margin: 0px auto;
    max-width: 1300px;
    width: calc(100% - 40px);
}

h1, h2, h3 {
	display: block;
	font-weight: 700;
	margin: 0px 0px 30px 0px;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 26px;
}






/************************************************** Btns ************************************************/
.btn, a.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	border-radius: 5px;
	cursor: pointer;
	border: 0;
	position: relative;
	transition: all 0.2s;
	background: var(--background);
	overflow: hidden;
	padding: 0 25px;
	box-shadow: var(--boxshadow);
	color: #000000;
	font-weight: 500;
	text-shadow: 0px 1px 1px rgb(251 214 46);
}

.btn span, .btn i, .btn img {
	position: relative;
	z-index: 1;
}

.upc {
	text-transform: uppercase;
}

@media(hover) {
	.btn:hover, a.btn:hover {
		box-shadow: var(--boxshadow2);
	}
}

.btn:active, a.btn:active {
	box-shadow: var(--boxshadow2);
	filter: opacity(0.8);
}

.btn span {
	display: block;
	position: relative;
}

.btn svg {
	display: block;
	position: relative;
}

.btn svg + span, .btn span + svg {
	margin: 0 0 0 8px;
}

/************************************************** END Btns ************************************************/















/************************************************** Header ************************************************/
.bodybg {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-size: cover;
	will-change: transform;
	background-color: #08090f;
}

#cHeader {
	display: block;
	position: relative;
	margin: 0 0 30px;
	z-index: 10;
}

#cHeader.chpages {
	background: rgb(0 85 255 / 4%);
	padding: 0 0 30px;
	border-bottom: 1px solid rgb(153 185 255 / 14%);
}

.cHeader {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	align-items: flex-end;
}

a.clogo {
	display: inline-flex;
	align-items: CENTER;
	position: RELATIVE;
	color: #fff;
	font-size: 10px;
}

a.clogo> span.ico {
	display: FLEX;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	height: 50px;
	margin: 0 10px 0 0;
	background: var(--background);
	border-radius: 100%;
	box-shadow: var(--boxshadow);
}

.cHeader> a.clogo {
	margin: 0 80px 0 0;
	width: 200px;
}

a.clogo span.sitename {
	display: flex;
	flex-direction: column;
}

a.clogo span.sitename b {
	display: block;
	font-size: 25px;
	color: var(--brand1);
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
	margin: 0 0 2px;
}

.cHeaderInfo {
	display: FLEX;
	flex-direction: column;
	position: relative;
	width: calc(100% - 280px);
}

.cHeaderInfoTop {
	display: flex;
	justify-content: flex-start;
	position: relative;
	height: 52px;
	align-items: CENTER;
}

.cHeaderInfoTop nav.menu {
	display: block;
	position: RELATIVE;
	flex-grow: 1;
}

.cHeaderInfoTop nav.menu ul {
	display: flex;
}

.cHeaderInfoTop nav.menu ul> li {
	display: block;
	margin: 0 40px 0 0;
}

.cHeaderInfoTop nav.menu ul> li> a {
	display: block;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media(hover) {
	.cHeaderInfoTop nav.menu ul> li> a:hover {
		color: #fff;
		background: #fff;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}

.cHeaderInfoTop nav.menu ul> li:last-child {
	margin: 0;
}

.theme {
	display: flex;
	margin: 0 33px 0 0;
	background: rgb(181 203 255 / 21%);
	width: 42px;
	height: 26px;
	border-radius: 20px;
	padding: 3px;
	justify-content: flex-end;
}

.theme> span {
	display: flex;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	padding: 2px;
	background: var(--background);
}

.theme> span path {
	fill: #000;
	stroke: #000;
}


.cHeaderInfoTop .theme> span circle {
	fill: #000;
	stroke: #000;
}

.language {
	display: block;
	position: relative;
	z-index: 10;
}

.cHeaderInfoTop .language {
	margin: 0 30px 0 0;
}

.language> .allLanguage {
	display: none;
	position: absolute;
	top: calc(100% + 5px);
	left: -20px;
	width: max-content;
	background: linear-gradient(360deg, rgb(18 24 37 / 75%), rgb(45 59 98 / 75%));
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 30%), 0px 5px 35px rgb(0 0 0 / 100%), 0px 0px 90px rgb(0 0 0 / 50%);
	border-radius: 8px;
	backdrop-filter: blur(4px);
}

.language> a, .allLanguage> a {
	display: flex;
	align-items: center;
	color: var(--brand1);
	text-transform: uppercase;
	font-weight: 500;
	transition: all 0.15s;
}

.language> a> img, .allLanguage> a> img {
	height: auto;
	width: 24px;
	margin: 0 7px 0 0;
}

.language> a> span, .allLanguage> a> span {
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media(hover) {
	.language> a:hover> span, .allLanguage> a:hover> span {
		background: #fff;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}

.language> .allLanguage> a.active {
	display: none;
}

.language> .allLanguage> a {
	display: flex;
	align-items: center;
	padding: 9px 20px;
}

.cHeaderPanel .language {
	display: none;
}

.cHeaderInfoTop .soclinks {
	display: flex;
	align-items: center;
}

.cHeaderInfoTop .soclinks> a:first-child {
	margin: 0 10px 0 0;
}

.cHeaderInfoTop .soclinks> a> svg path {
	fill: var(--btext);
	transition: all 0.1s;
}

.cHeaderInfoTop .soclinks> a> svg {
	height: auto;
	width: 24px;
}

.cHeaderInfoTop .soclinks> a:first-child> svg {
	width: 20px;
	margin: 1px 0 0;
}

@media(hover) {
	.cHeaderInfoTop .soclinks> a:hover> svg path {
		fill: var(--brand1);
	}
}

.cHeaderPanel {
	display: flex;
	position: relative;
	align-items: center;
}

.openCatalogBlock {
	display: block;
	position: relative;
	width: 180px;
	margin: 0 20px 0 0;
	min-width: 180px;
}

.openCatalogBlock> .ocbHidden {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: max-content;
	background: linear-gradient(360deg, rgb(18 24 37 / 100%), rgb(45 59 98 / 85%));
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 30%), 0px 5px 35px rgb(0 0 0 / 100%), 0px 0px 90px rgb(0 0 0 / 50%);
	border-radius: 8px;
	backdrop-filter: blur(4px);
}

.openCatalogBlock> .ocbHidden> ul {
	display: flex;
	flex-direction: column;
	position: relative;
}

.openCatalogBlock> .ocbHidden> ul> li {
	display: block;
	border-bottom: 1px dotted rgb(112 163 255 / 20%);
}

.openCatalogBlock> .ocbHidden> ul> li:last-child {
	border: 0;
}

.openCatalogBlock> .ocbHidden> ul> li> a {
	display: block;
	padding: 10px 30px 10px 20px;
	color: #fff;
	font-size: 15px;
	transition: all 0.15s;
	text-shadow: 0px 1px 5px rgb(0 0 0 / 40%);
	background: rgb(0 0 0 / 0%);
}

.openCatalogBlock> .ocbHidden> ul> li> a> span {
}

@media(hover) {
	.openCatalogBlock> .ocbHidden> ul> li> a:hover {
		background: rgb(0 0 0 / 20%);
		color: var(--brand1);
	}
}

button.openPkNav {
	width: 100%;
	font-size: 16px;
	font-weight: 700;
}

.cHeaderPanel form {
	display: flex;
	position: RELATIVE;
	flex-grow: 1;
	margin: 0 20px 0 0;
	height: 44px;
}

.cHeaderPanel form> input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 14px;
	padding: 2px 50px 0 15px;
	border: 0;
	background: rgb(0 0 0 / 45%);
	border-radius: 5px;
	box-shadow: inset 0px 1px 4px #000, 0px 1px 0px rgb(153 185 255 / 14%);
	color: #fff;
}

.cHeaderPanel form> input::placeholder {
	color: #fff;
}

.cHeaderPanel form> button {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 44px;
	height: 44px;
	cursor: pointer;
	background: transparent;
	border: 0;
}

.cHeaderPanel form> button svg path {
	fill: #fff !important;
	transition: all 0.1s;
}

@media(hover) {
	.cHeaderPanel form> button:hover svg path {
		fill: var(--brand1) !important;
	}
}

a.linkHistory {
	display: flex;
	align-items: center;
	position: relative;
	transition: all 0.1s;
}

a.linkHistory svg {
	height: auto;
	width: 20px;
	margin: -4px 7px 0 0;
	min-width: 20px;
}

a.linkHistory svg path {
	stroke: var(--brand1);
	transition: all 0.1s;
}

a.linkHistory svg circle {
	fill: var(--brand1);
	transition: all 0.1s;
}

@media(hover) {
	a.linkHistory:hover {
		color: #fff;
	}
	a.linkHistory:hover svg path {
		stroke: #fff;
	}

	a.linkHistory:hover svg circle {
		fill: #fff;
	}
}

.navIco {
	display: flex;
	margin: 0 10px 0 0;
	width: 18px;
	height: 18px;
	align-items: flex-end;
	flex-direction: column;
	justify-content: center;
}

.navIco> i {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 0 4px;
	border-radius: 10px;
	transition: all 0.3s;
	background: #000000;
	box-shadow: 0px 1px 1px rgb(251 214 46);
}

.navIco> i:last-child {
	margin: 0;
	width: 18px;
}

.navIco> i:nth-child(2) {
	width: 14px;
}

@media(hover) {
	button.openPkNav:hover> .navIco> i {
		width: 18px;
	}
}

button.openPkNav.active> .navIco> i:nth-child(1) {transform: rotate(45deg);margin: 2px 0 0;}

button.openPkNav.active> .navIco> i:nth-child(2) {
	filter: opacity(0);
}

button.openPkNav.active> .navIco> i:nth-child(3) {
	width: 100%;
	transform: rotate(-45deg);
	margin: -8px 0 0;
}
/************************************************** END Header ************************************************/














/************************************************** Main Slider ************************************************/
.mainActions {
	display: block;
	position: relative;
	margin: 0 auto 80px;
	max-width: 1400px;
	width: calc(100% - 30px);
}

.mainActionsSlider .item {
	display: block;
	position: relative;
	overflow: hidden;
	height: 440px;
}


.mainActionsSlider .item> img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.mainActionsSlider .item .slideInfo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-width: 640px;
}

.mainActionsSlider .item .max {
	height: 100%;
}

.mainActionsSlider .item .slideInfo> b {
	display: block;
	font-size: 50px;
	font-weight: 700;
	margin: 0 0 30px;
	color: #fff;
	text-shadow: 0px 5px 15px rgb(0 0 0 / 55%);
}

.mainActionsSlider .item .slideInfo> p {
	display: block;
	margin: 0 0 15px;
	color: #fff;
	font-size: 14px;
	line-height: 23px;
	/* text-shadow: 0px 0px 15px rgb(0 0 0 / 100%), 0px 0px 25px rgb(0 0 0 / 100%), 0px 5px 15px rgb(0 0 0 / 55%); */
	filter: drop-shadow(0px 4px 15px black) drop-shadow(0px 4px 15px black);
}

.mainActionsSlider .item .slideInfo> .btn {
	margin: 15px 0 0;
}

ul.mainSliderDots {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: calc(100% + 20px);
}

.mainActionsSlider .slick-list {
	display: block;
	position: relative;
	border-radius: 15px;
	box-shadow: 0px 0px 0px 1px rgb(74 114 255 / 15%), 0px 10px 35px #000;
	overflow: hidden;
}

ul.mainSliderDots li {
	margin: 0 5px;
}

ul.mainSliderDots li button {
	display: flex;
	text-indent: -9999px;
	overflow: hidden;
	width: 8px;
	height: 8px;
	border: 0;
	cursor: pointer;
	border-radius: 10px;
	background: var(--btext);
	transition: all 0.3s;
}

ul.mainSliderDots li.slick-active button {
	width: 24px;
	background: var(--brand1);
	box-shadow: 0px 1px 12px var(--brand1);
}

.mainActionsSlider .item .slideInfo> b + .btn {
	margin: 0;
}
/************************************************** END Main Slider ************************************************/
















/************************************************** Main Cats ************************************************/
.mainCats {
	display: BLOCK;
	position: relative;
	margin: 0 0 60px;
}

.mainCatsItems {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0 -10px;
}

.mainCatsItems> .item {
	display: flex;
	align-items: center;
	margin: 0 10px 20px;
	width: calc(20% - 20px);
	min-height: 80px;
	border-radius: 5px;
	padding: 0 0 0 15px;
	align-items: center;
	box-shadow: 0px 0px 0px 1px rgb(255 230 0 / 22%), 0px 10px 35px #000;
	transition: all 0.15s;
	background: rgb(0 0 0 / 19%);
	will-change: transform;
}

.mainCatsItems> .item img {
	margin: 0 15px 0 0;
	width: auto;
	height: 48px;
	transition: all 0.3s;
	will-change: transform;
}

@media(hover) {
	.mainCatsItems> .item:hover {
		box-shadow: 0px 0px 0px 1px rgb(255 230 0 / 70%), 0px 10px 55px -15px rgb(255 230 0 / 70%);
		background: rgb(0 0 0 / 25%);
	}
}

.mainCatsItems> .item> span {
	display: block;
	position: relative;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	will-change: transform;
}

@media(hover) {
	.mainCatsItems> .item:hover> span {
		background: #fff;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}

	.mainCatsItems> .item:hover> img {
		transform: scale(1.15);
	}
}

.mainCatsItems> .item:last-child {
	justify-content: center;
}
/************************************************** END Main Cats ************************************************/














/************************************************** Products List ************************************************/
.centerTitleMain {
	display: flex;
	position: RELATIVE;
	margin: 0 0 25px;
}

.centerTitleMain> span {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	text-shadow: 0px 5px 15px #000;
}

.productsList {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	margin: 0 -20px 50px;
}

.productsList> .productItem {
	width: calc(25% - 20px);
	margin: 120px 10px 30px;
}

.productItem {
	display: flex;
	position: relative;
	flex-direction: column;
	flex-wrap: wrap;
	background: #1d2439 linear-gradient(360deg, #121825, #2d3b62);
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 0%), 0px 5px 35px rgb(0 0 0 / 15%);
	border-radius: 8px;
	padding: 10px;
	transition: all 0.3s;
}

@media(hover) {
	.productItem:hover {
		transform: translate(0, -5px);
		box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 28%), 0px 5px 35px rgb(88 134 255 / 28%);
	}
}

.productItem> a.image {
	display: flex;
	position: relative;
	margin: -120px 0px 15px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	width: 100%;
	overflow: hidden;
	box-shadow: 0px 0px 0px 1px rgb(74 114 255 / 15%), 0px 10px 35px #000;
}

.productItem> a.image::before {
	content: '';
	position: relative;
	padding-top: 100%;
	display: block;
}

.productItem> a.image::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: linear-gradient(315deg, rgb(255 255 255 / 12%) 0%, rgb(255 255 255 / 4%) 50%, transparent 50%), linear-gradient(0deg, rgb(1 30 58 / 20%), transparent);
}

.productItem> a.image img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.productItem> a:not(.image) {
	display: block;
	margin: 0 0 15px;
	position: relative;
	z-index: 3;
	flex-grow: 1;
}

.productItem> a:not(.image)> h3 {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin: 0;
	line-height: 24px;
	transition: all 0.15s;
}

@media(hover) {
	.productItem:hover> a:not(.image)> h3 {
		color: var(--brand1);
	}
}

.productItem> .pricebutton {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.productItem> .pricebutton> span {
	display: flex;
	padding: 0 15px 0 0;
	font-size: 18px;
	color: var(--brand1);
	width: calc(100% - 144px);
	justify-content: center;
}

.productItem> .pricebutton> .btn {font-weight: bold;width: 144px;height: 42px;font-size: 16px;}

.centerTitle {
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0 0 50px;
}

.centerTitle> span {
	display: block;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: bold;
	color: var(--black2);
}

.mainAllCat {
	display: flex;
	justify-content: center;
	margin: -30px 0 80px;
	position: relative;
}

.mainAllCat> a {
	display: FLEX;
	align-items: center;
}

.mainAllCat> a> span {
	font-weight: 600;
	font-size: 17px;
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--brand1);
}

.mainAllCat> a> svg path {
	fill: var(--brand1);
}

.mainAllCat> a> svg {
	height: auto;
	width: 16px;
	margin: 2px 0 0 8px;
}

@media(hover) {
	.mainAllCat> a:hover> span {
		background: #fff;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		color: #fff;
	}

	.mainAllCat> a:hover> svg path {
		fill: #fff;
	}
}

.productsListSlider  .productItem {
	margin: 120px 10px 0;
}

.productsListSlider .slick-list {
	padding: 15px 0 30px;
}

.productsListSlider {
	margin: -15px -20px 90px;
}
/************************************************** END Products List ************************************************/



















/************************************************** Main Fitches ************************************************/
.fitches {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 0 0 80px;
	background: rgb(89 126 206 / 9%);
	padding: 30px;
	border-radius: 15px;
}

.fitches> .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.fitches> .item> b {
	display: block;
	font-weight: 900;
	font-size: 50px;
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--brand1);
	text-shadow: 0px 7px 30px rgb(252 190 5 / 40%);
}

.fitches> .item> span {
	display: block;
	font-size: 16px;
	color: #fff;
	font-weight: 300;
}
/************************************************** END Main Fitches ************************************************/
















/************************************************** Main Reviews ************************************************/
.mainCommentsSlider {
	display: BLOCK;
	position: relative;
	margin: 0 -10px 90px;
}

.mainCommentsSlider .item {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 10px;
	background: rgb(89 126 206 / 9%);
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 0%), 0px 5px 35px rgb(0 0 0 / 15%);
	border-radius: 8px;
	padding: 15px;
	transition: all 0.3s;
	height: 100%;
	color: rgb(230 237 255);
	text-shadow: 0px 1px 5px #000;
}

.mainCommentsSlider .slick-track {
	display: flex;
}

.mainCommentsSlider .slick-track .slick-slide {
	height: initial;
}

.mainCommentsSlider .item .itemHeader {
	display: flex;
	align-items: center;
	margin: 0 0 15px;
}

.mainCommentsSlider .item .itemHeader> .ico {
	margin: 0 10px -4px 0;
}

.mainCommentsSlider .item .itemHeader> span {
	font-weight: 600;
	font-size: 15px;
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--brand1);
	text-shadow: none;
}

.mainCommentsSlider .item .itemReview {
	
	font-size: 14px;
	line-height: 19px;
	font-weight: 300;
}

.mainCommentsSlider .item .itemReviewGrow {
	flex-grow: 1;
	min-height: 10px;
}

.itemReviewProduct {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	align-items: center;
}

.itemReviewProduct> a.pimage {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	width: 80px;
	margin: 0 15px 0 0;
	height: 80px;
}

.itemReviewProduct> a.pname {
	display: flex;
	position: relative;
	width: calc(100% - 95px);
}

.itemReviewProduct> a.pname h3 {
	display: block;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
}

a.pimage> img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}
/************************************************** END Main Reviews ************************************************/
























/************************************************** Questions ************************************************/
ul.questions {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	flex-direction: column;
	margin: 0 0 50px;
}

ul.questions> li {
	display: flex;
	flex-direction: column;
	position: relative;
	background: var(--white);
	box-shadow: 0px 5px 35px var(--shadow2);
	border-radius: 12px;
	margin: 0 0 20px;
}

ul.questions> li:last-child {
	margin: 0;
}

ul.questions> li> a {
	display: block;
	padding: 20px;
	color: var(--black2);
	font-size: 18px;
	padding-right: 80px;
	position: relative;
}

ul.questions> li> a> svg, ul.questions> li> a> img {
	height: initial;
	width: 34px;
	position: absolute;
	right: 20px;
	transition: all 0.3s;
	top: calc(50% - 16px);
}


ul.questions> li.active> a> svg, ul.questions> li.active> a> img {
	transform: rotate(90deg);
}



ul.questions> li> .info {
	display: none;
	padding: 20px;
}

.context {
	position: relative;
	font-size: 16px;
	line-height: 25px;
	color: #d3d8e1;
}

.context p {
	display: block;
	margin: 0 0 20px;
}

.context p span[style="color: rgb(0, 0, 0);"] {
	color: #fff !important;
}

.context p:last-child {
	margin: 0;
}
/************************************************** END Questions ************************************************/















/************************************************** Footer ************************************************/
.centerButton {
	display: flex;
	position: relative;
	justify-content: center;
	margin: 0 0 50px;
}

.centerButton .btn {height: 50px;font-size: 16px;text-transform: uppercase;padding: 0 30px;font-weight: bold;}

#footer {
	display: block;
	position: relative;
	background: rgb(0 0 0 / 45%);
}

.footer {
	display: flex;
	justify-content: space-between;
	padding: 50px 0;
	color: #fff;
	flex-direction: column;
	align-items: center;
}

nav.footermenu {
	display: block;
	position: relative;
	margin: 30px 0 50px;
}

nav.footermenu> ul {
	display: flex;
	margin: 0 -20px;
}

nav.footermenu> ul> li {
	display: block;
	margin: 0 20px;
}

.pays {
	margin: 0 0 50px;
	display: flex;
	align-items: center;
	position: relative;
}

.pays> img {
	margin: 0 15px;
	width: auto;
	height: 20px;
}

ul.footerinfonav {
	display: flex;
	margin: 0 -15px;
}

ul.footerinfonav> li {
	margin: 0 15px;
}

ul.footerinfonav> li> a {
	display: BLOCK;
	font-size: 12px;
	color: rgb(153 185 255 / 71%);
}

@media(hover) {
	ul.footerinfonav> li> a:hover {
		color: #fff;
	}
}
/************************************************** END Footer ************************************************/
















/************************************************** Panels ************************************************/
.panelsClose {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(255 255 255 / 39%);
	z-index: 9998;
	backdrop-filter: blur(4px);
}

.panelsClose svg {
	width: 32px;
	height: initial;
	position: absolute;
	top: 15px;
	left: 335px;
	display: none;
	cursor: pointer;
}

.panelsClose svg path {
	fill: #fff;
}

.panelsClose.two svg {
	left: initial;
	right: 335px;
}


.leftPanel, .rightPanel {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 320px;
	z-index: 9999;
	padding: 15px;
	transform: translate(-400px, 0);
	transition: all 0.3s;
	background: linear-gradient(360deg, rgb(18 24 37 / 100%), rgb(45 59 98 / 85%));
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 30%), 0px 5px 35px rgb(0 0 0 / 100%), 0px 0px 90px rgb(0 0 0 / 50%);
}

.rightPanel {
	left: initial;
	right: 0;
	transform: translate(400px, 0);
}

.leftPanel.active, .rightPanel.active {
	transform: translate(0, 0);
}

.maxPanel {
	display: block;
	position: relative;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: overlay;
	min-height: 100%;
	padding: 0 10px;
}

ul.mcat {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: -10px 0;
}

ul.mcat> li {
	display: block;
}

ul.mcat> li> a {
	display: block;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	padding: 10px 0;
}

ul.mcat> li.active> a {
	color: var(--brand1);
}

@media(hover) {
	ul.mcat> li:hover> a {
		color: var(--brand1);
	}
}

/************************************************** END Panels ************************************************/


















/************************************************** Catalog ************************************************/
h1.heading {
	display: block;
	margin: 0 0 35px;
	color: #fff;
	font-size: 28px;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px 0 80px;
}

.pagination> .pager> a, .pagination> .pager> b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 10px;
	font-size: 14px;
	font-weight: 400;
	transition: all 0.15s;
	border-right: 1px solid rgb(91 131 219 / 9%);
	min-width: 36px;
	text-shadow: 1px 1px 5px rgb(0 0 0 / 49%);
}

.pagination> .pager {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	background: rgb(91 131 219 / 17%);
	box-shadow: 0px 5px 15px var(--shadow2);
	border-radius: 5px;
	color: #fff;
}

.pagination> .pager> b {
	text-shadow: 0px 1px 3px rgb(0 0 0 / 25%);
	background: var(--background);
	box-shadow: var(--boxshadow);
	color: var(--white);
	z-index: 1;
	transform: scale(1.2);
	border-radius: 6px;
	transition: all 0.2s;
	color: #000000;
	font-weight: 500;
	text-shadow: 0px 1px 1px rgb(251 214 46);
}

@media(hover) {
	.pagination> .pager> a:hover {
		color: var(--brand1);
	}
}

.pagination> .pager> a> span, .pagination> .pager> b> span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination> .pager span img, .pagination> .pager span svg {
	width: initial;
	height: 18px;
}

.pagination> .pager span.pagerscale img, .pagination> .pager span.pagerscale svg {
	transform: scale(-1, 1);
}

.pagination> .pager> a:last-child, .pagination> .pager> b:last-child {
	border: 0;
}

.bx_breadcrumbs_block {
	display: block;
	position: relative;
	font-size: 12px;
	margin: -18px 0 30px;
}

.bx_breadcrumbs {
	display: block;
	position: relative;
	max-width: 100%;
	overflow-x: overlay;
	overflow-y: hidden;
	white-space: nowrap;
	padding: 0 0 10px;
	/* margin: -15px 0 20px; */
	/* top: -10px; */
}

.bx_breadcrumbs::-webkit-scrollbar {
	width: 2px;
	height: 2px;
	background: transparent;
}

.bx_breadcrumbs::-webkit-scrollbar-thumb {
	background: var(--black);
	border-radius: 10px;
}

.bx_breadcrumbs::-webkit-scrollbar-track-piece {
	background: transparent;
}

.bx_breadcrumbs> ul {
	display: flex;
}

.bx_breadcrumbs> ul> li {
	display: block;
	position: relative;
	margin: 0 30px 0 0;
	display: FLEX;
	align-items: center;
	height: 24px;
}

.bx_breadcrumbs> ul> li> a {
	color: var(--brand1);
	transition: all 0.15s;
}

.bx_breadcrumbs> ul> li> a> span {
	display: block;
	transition: all 0.15s;
	border-bottom: 1px dotted transparent;
}

.bx_breadcrumbs> ul> li:last-child> a {
	color: #fff;
	cursor: default;
}

@media(hover) {
	.bx_breadcrumbs> ul> li:not(:last-child)> a:hover> span {
		border-color: var(--black2);
	}
}

.bx_breadcrumbs> ul> li:last-child {
	margin: 0;
}

.bx_breadcrumbs> ul> li:not(:first-child)::before {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	top: calc(50% - 7px);
	left: -22px;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJpb25pY29uIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iNDgiIGQ9Ik0yNjggMTEybDE0NCAxNDQtMTQ0IDE0NE0zOTIgMjU2SDEwMCIvPjwvc3ZnPg==) center no-repeat;
	background-size: 9px;
}


/************************************************** END Catalog ************************************************/













/************************************************** Product Page ************************************************/
.productPage {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0 0 70px;
}

.productLeft {
	width: 360px;
	margin: 0 40px 0 0;
	position: relative;
	display: flex;
	flex-direction: column;
}

.productRight {
	width: calc(100% - 400px);
	position: relative;
	display: flex;
	flex-direction: column;
}

.productLeft> .image {
	display: block;
	position: relative;
	height: 360px;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 5px 30px var(--shadow2);
	border-radius: 10px;
	margin: 0 0 15px;
}

.productLeft> .image> img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.galleryImgs {
	margin: 0 -5px 38px;
}

.galleryImgs a.item {
	display: flex;
	position: relative;
	margin: 0 5px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 5px;
}

.galleryImgs a.item::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}

.galleryImgs a.item img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.galleryImgs ul.mainSliderDots {
	top: calc(100% + 15px);
}

.productLeft> .image> .lcena {
	display: block;
	position: absolute;
	z-index: 3;
	top: 10px;
	right: 10px;
	background: rgb(255 255 255);
	border-radius: 10px;
	padding: 10px 20px;
}

.lcena> span {
	color: #000;
	font-weight: 600;
}

.productlc {
	display: flex;
	position: relative;
	margin: -22px 0 40px;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.productlc> span {
	display: flex;
	align-items: center;
	background: rgb(255 255 255 / 90%);
	height: 44px;
	padding: 0 25px;
	border-radius: 10px;
	box-shadow: 0px 5px 25px -5px var(--shadow2);
	backdrop-filter: blur(3px);
	font-size: 14px;
	font-weight: 600;
	color: var(--black);
}

.productlc> span> span {
	display: flex;
	margin: 0 0 0 8px;
	border: 2px solid #FFD0D0;
	padding: 5px 8px;
	border-radius: 10px;
}

.slBlock {
	display: block;
	position: relative;
}

.blockbuy {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	justify-content: space-between;
	border-radius: 10px 10px 15px 10px;
	margin: 0 0 30px;
	transition: all 0.2s;
	background: linear-gradient(360deg, rgb(18 24 37 / 100%), rgb(45 59 98 / 85%));
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 30%), 0px 5px 35px rgb(0 0 0 / 100%), 0px 0px 90px rgb(0 0 0 / 50%);
	padding: 6px;
}

.blockbuy.loading::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgb(18 24 37 / 60%), rgb(45 59 98 / 60%));
	z-index: 10;
	border-radius: 10px;
	backdrop-filter: blur(3px);
}

.blockbuy.loading::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 11;
	background: url('/images/loading_mini.svg') center no-repeat;
	background-size: 60px;
}

/* .slBlock[style]:not([style=""]) .blockbuy { */
	/* border-radius: 10px 10px 15px 10px; */
/* } */

.blockbuy .btn {
	height: 50px;
	border-radius: 10px;
	padding-top: 2px;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.2s;
}

/* .slBlock[style]:not([style=""]) .blockbuy .btn { */
	/* border-radius: 10px; */
/* } */

.blockbuy .price {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	font-size: 24px;
	color: var(--brand1);
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
	padding: 2px 0 0;
	position: relative;
}

.blockinfo {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	flex-direction: COLUMN;
}

.blockinfo> .item {
	display: flex;
	align-items: center;
	margin: 0 0 15px;
	border-radius: 30px 10px 10px 30px;
	padding: 2px 0 2px 2px;
	align-items: center;
	box-shadow: 0px 0px 0px 1px rgb(255 230 0 / 22%), 0px 10px 35px #000;
	transition: all 0.15s;
	background: rgb(0 0 0 / 19%);
	will-change: transform;
}

.blockinfo> .item:last-child {
	margin: 0;
}

.blockinfo> .item> .ico {
	display: flex;
	width: 32px;
	height: 32px;
	border: 2px solid;
	border-radius: 100%;
	align-items: center;
	justify-content: center;
	margin: 0 5px 0 0;
}

.blockinfo> .item> span {
	display: block;
	font-weight: 400;
	color: #fff;
}

.blockinfo> .item> span a {
	border-bottom: 1px dotted;
}

.blockinfo> .item> .ico.green {
	border-color: #77BD4B;
}

.blockinfo> .item> .ico.green svg path {stroke: #77BD4B;}


.blockinfo> .item> .ico.blue {
	border-color: #1E8DF7;
}

.blockinfo> .item> .ico.blue svg path {fill: #1E8DF7;}


.blockinfo> .item> .ico.yellow {
	border-color: #FFAD00;
}

.blockinfo> .item> .ico.yellow svg path {fill: #FFAD00;}


.blockinfo> .item> .ico.red {
	border-color: #FF0202;
}

.blockinfo> .item> .ico.red svg path {fill: #FF0202;}

.productRight> .infoBlock {
	display: block;
	position: relative;
	padding: 25px;
	border: 1px dotted rgb(89 126 206 / 37%);
	margin: 0 0 30px;
	border-radius: 10px;
	background: rgb(0 0 0 / 20%);
}

.productRight> .infoBlock.reviewsBlock {
	border: 0;
	background: transparent;
	padding: 20px 0 0;
	margin: 0;
}

.productRight> .infoBlock.dop {
	background: rgb(89 126 206 / 15%);
}

.infoBlock .context {
	font-size: 16px;
	line-height: 25px;
	color: #d3d8e1;
}

.productRight> .infoBlock h3 {
	display: BLOCK;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 30px;
}

.commentsList {
	display: flex;
	flex-direction: column;
	position: relative;
}

.commentsList> .item {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 0 25px;
	border: 1px solid rgb(89 126 206 / 34%);
	border-radius: 12px;
	padding: 15px;
	background: rgb(89 126 206 / 15%);
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 0%), 0px 5px 35px rgb(0 0 0 / 15%);
}

.commentsList> .item .itemReviewGrow {
	display: BLOCK;
	height: 15px;
}

.commentsList> .item:last-child {
	margin: 0;
}

.commentsList> .item> .itemHeader {
	display: flex;
	align-items: center;
	margin: 0 0 15px;
}

.commentsList> .item> .itemHeader> span {
	margin: -3px 0 0 10px;
	font-weight: 600;
	font-size: 15px;
	background: var(--background);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--brand1);
	text-shadow: none;
}

.commentsList> .item> .itemReview {
	font-size: 14px;
	font-size: 14px;
	line-height: 19px;
	font-weight: 300;
	color: rgb(230 237 255);
	text-shadow: 0px 1px 5px #000;
}

.commentsList> .item> .itemComment {
	display: block;
	position: relative;
	background: var(--fon);
	padding: 15px;
	margin: 15px 0 0;
	border-radius: 0 10px 10px 10px;
}

.commentsList> .item> .itemComment> b {
	display: block;
	margin: 0 0 5px;
	font-size: 14px;
	font-weight: 600;
	color: var(--black3);
}

.productRight> .infoBlock .pagination {
	margin-bottom: 0;
}

.commentsList + .pagination {
	margin-top: 30px;
}

.slick-initialized .slick-slide.productItem {
	display: flex !important;
	margin: 0 8px;
	box-shadow: inset 0px 0px 0px 1px #d3d3d3;
}

.productsList.slickProducts {
	margin: 0 -8px;
}

.blockOptions {
	background: var(--white);
	box-shadow: 0 5px 50px var(--shadow2);
	border-radius: 10px 15px 15px 10px;
	margin: -20px 0 30px;
	background: linear-gradient(360deg, rgb(18 24 37 / 100%), rgb(45 59 98 / 85%));
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 30%);
	position: relative;
	z-index: 11;
}

.blockOptions> .item {
	display: flex;
	flex-direction: column;
	position: relative;
	border-bottom: 1px dotted rgb(88 134 255 / 30%);
	padding: 15px;
}

.blockOptions> .item:last-child {
	border: 0;
}

.blockOptions> .item> b {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin: 0 0 10px;
}

.blockOptions> .item> .variants {
	display: flex;
	flex-direction: column;
	position: relative;
}

.blockOptions> .item> .variants> label.item {
	display: block;
	position: relative;
	cursor: pointer;
	height: 30px;
	padding: 5px 0 6px 24px;
	color: #fff;
}

.blockOptions> .item> .variants> label.item input {
	display: none;
}

.blockOptions> .item> .variants> label.item> span {
	display: block;
}

.blockOptions> .item> .variants> label.item> span> span {
	margin: 0 0 0 5px;
	color: var(--btext);
}

.blockOptions> .item> .variants> label.item> span::before, .blockOptions> .item> .variants> label.item> span::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	border: 1px solid #d1d1d1;
	position: absolute;
	top: calc(50% - 9px);
	left: 0;
	border-radius: 3px;
	transition: all 0.15s;
}

.blockOptions> .item> .variants> label.item> span::after {
	background: linear-gradient(90deg,var(--brand1) 0,var(--brand2) 100%);
	box-shadow: inset 0 -2px 0 rgb(0 0 0 / 10%), inset 0 5px 10px rgb(255 255 255 / 20%), 0 8px 18px -5px rgb(137 0 253 / 36%);
	width: 10px;
	height: 10px;
	margin: 2px 0 0 2px;
	opacity: 0;
}

.blockOptions> .item> .variants> label.item> input:checked + span::after {
	opacity: 1;
}

.blockOptions> .item> .variants> label.item> input:checked + span::before {
	border-color: var(--brand1);
}

pre {
	background: #fff;
	padding: 10px;
	color: #000;
	font-size: 13px;
	font-family: monospace;
	line-height: 22px;
}
/************************************************** END Product Page ************************************************/



















/************************************************** Articles ************************************************/
.articlesList {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	margin: 0 -20px 50px;
}

.articlesList> a.articlesListItem {
	width: calc(33.333% - 20px);
	margin: 120px 10px 30px;
	display: flex;
	position: relative;
	flex-direction: column;
	flex-wrap: wrap;
	background: #1d2439 linear-gradient(360deg, #121825, #2d3b62);
	box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 0%), 0px 5px 35px rgb(0 0 0 / 15%);
	border-radius: 8px;
	padding: 10px;
	transition: all 0.3s;
}

.articlesList> a.articlesListItem> .image {
	display: flex;
	position: relative;
	margin: -120px 0px 15px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	width: 100%;
	overflow: hidden;
	box-shadow: 0px 0px 0px 1px rgb(74 114 255 / 15%), 0px 10px 35px #000;
}

.articlesList> a.articlesListItem> .image::before {
	content: '';
	position: relative;
	padding-top: 56.25%;
	display: block;
}

.articlesList> a.articlesListItem> .image::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: linear-gradient(315deg, rgb(255 255 255 / 12%) 0%, rgb(255 255 255 / 4%) 50%, transparent 50%), linear-gradient(0deg, rgb(1 30 58 / 20%), transparent);
}

.articlesList> a.articlesListItem> .image img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.articlesList> a.articlesListItem> h3 {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin: 0;
	line-height: 24px;
	transition: all 0.15s;
	position: relative;
	z-index: 5;
}

@media(hover) {
	.articlesList> a.articlesListItem:hover {
		transform: translate(0, -5px);
		box-shadow: inset 0px 0px 0px 1px rgb(88 134 255 / 28%), 0px 5px 35px rgb(88 134 255 / 28%);
	}

	.articlesList> a.articlesListItem:hover> h3 {
		color: var(--brand1);
	}
}
/************************************************** END Articles ************************************************/





















/* WARRANTY */
.garant-item {
	display: flex;
	align-items: center;
	margin-bottom: 3em;
}
.garant-item:last-child {
	margin-bottom: 0;
}
.garant-icon {
	flex-shrink: 0;
	position: relative;
	width: 136px;
	height: 136px;
	margin-right: 3em;
}
.garant-icon img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.pageInner {
	box-shadow: 0 5px 35px var(--shadow2);
	background: var(--white);
	margin: 0 0 50px;
	border-radius: 12px;
	padding: 50px;
	position: relative;
}

.context h5 {
	display: block;
	margin: 0 0 25px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}


.pageInner> .context {
	display: block;
	position: relative;
	z-index: 4;
}

.pageInner::before {
	contentZ: '';
	display: block;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border: 1px solid #ecdff5;
	position: ABSOLUTE;
	border-radius: 12px;
}

.podPageInner::before, .pageInner {
	box-shadow: 0 5px 35px var(--shadow2);
	background: var(--white);
	margin: 0 0 50px;
	border-radius: 12px;
	padding: 30px;
	position: relative;
	background: rgb(0 0 0 / 20%);
	border: 1px dotted rgb(89 126 206 / 37%);
}

.podPageInner> .pageInner {
	z-index: 5;
}

.podPageInner {
	display: block;
	position: relative;
}

.podPageInner::before {
	contentz: '';
	position: absolute;
	top: -10px;
	left: 20px;
	right: 20px;
	height: calc(100% - 50px);
	box-shadow: 0 5px 35px rgb(146 37 255 / 14%);
}

.kakItem {
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: flex-start;
	justify-content: center;
	margin: 0 0 50px;
}

.kakItem:last-child {
	margin: 0;
}

.contactPage {
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
	justify-content: center;
}

.contactPage .items {
	display: flex;
	margin: 50px 0 20px;
	width: 100%;
	justify-content: space-around;
}

.contactPage .items> .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 20px;
	max-width: calc(33.333% - 40px);
}

.contactPage .items> .item svg {
	height: initial;
	max-width: 100%;
}

.contactPage .items> .item> b {
	display: BLOCK;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin: 20px 0 10px;
}



#mobilePanel, .openMobileNav {
	display: none;
}

a.linkHistory + a.theme {
	display: none;
}



/************************************************** Slick Slider ************************************************/

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

button:not(.scustom).slick-arrow {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    margin-top: -23px;
    z-index: 10;
    border: 0px;
    cursor: pointer;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.14);
    display: flex !important;
    align-items: center;
    justify-content: center;
}

button:not(.scustom).slick-prev.slick-arrow {
    left: -20px;
    padding: 0px 4px 0px 0px;
}

button:not(.scustom).slick-next.slick-arrow {
    right: -20px;
    padding: 0px 0px 0px 6px;
}

button:not(.scustom).slick-next.slick-arrow svg {
	transform: scale(-1, 1);
}

button:not(.scustom).slick-arrow svg polyline {
	stroke: var(--black7) !important;
	transition: all 0.1s;
}

@media(hover) {
	button:not(.scustom).slick-arrow:hover svg polyline {
		stroke: var(--black3) !important;
	}
}

button.mainaction.slick-arrow {
	top: calc(50% + 35px);
}

ul.slick-dots:not(.scustom) {
	display: block;
	text-align: center;
	position: relative;
	margin: 30px 0 70px 0;
	z-index: 1;
}

ul.slick-dots:not(.scustom)> li {
    display: inline-block;
    position: relative;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

ul.slick-dots:not(.scustom)> li> button {
	display: inline-block;
	text-indent: -9999px;
	width: 12px;
	height: 12px;
	margin: 0 4px;
	border-radius: 100px;
	cursor: pointer;
	background: var(--shadow2);
	border: 0;
}

ul.slick-dots:not(.scustom)> li.slick-active> button {
	background: linear-gradient(90deg,var(--brand1) 0,var(--brand2) 100%);
}
/************************************************** END Slick Slider ************************************************/












.pagecontent {
	display: block;
	position: relative;
	background: var(--white);
	border-radius: 10px;
	box-shadow: 0px 5px 50px var(--shadow);
	padding: 20px;
	margin: 0 0 70px;
}

.pagecontent .pagination {
	margin: 0;
}



@media(min-width: 767px) {
	.gmob {
		display: none !important;
	}
}

#footer .centerButton, .gmob {
	display: none;
}







@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}











/************************************************** Fonts ************************************************/
@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-Thin.eot');
	src: local('Geometria Thin'), local('Geometria-Thin'),
		url('fonts/Geometria-Thin.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-Thin.woff') format('woff'),
		url('fonts/Geometria-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-MediumItalic.eot');
	src: local('Geometria MediumItalic'), local('Geometria-MediumItalic'),
		url('fonts/Geometria-MediumItalic.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-MediumItalic.woff') format('woff'),
		url('fonts/Geometria-MediumItalic.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-Italic.eot');
	src: local('Geometria Italic'), local('Geometria-Italic'),
		url('fonts/Geometria-Italic.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-Italic.woff') format('woff'),
		url('fonts/Geometria-Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-Heavy.eot');
	src: local('Geometria Heavy'), local('Geometria-Heavy'),
		url('fonts/Geometria-Heavy.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-Heavy.woff') format('woff'),
		url('fonts/Geometria-Heavy.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-ExtraBoldItalic.eot');
	src: local('Geometria ExtraBoldItalic'), local('Geometria-ExtraBoldItalic'),
		url('fonts/Geometria-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-ExtraBoldItalic.woff') format('woff'),
		url('fonts/Geometria-ExtraBoldItalic.ttf') format('truetype');
	font-weight: 800;
	font-style: italic;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-Medium.eot');
	src: local('Geometria Medium'), local('Geometria-Medium'),
		url('fonts/Geometria-Medium.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-Medium.woff') format('woff'),
		url('fonts/Geometria-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-BoldItalic.eot');
	src: local('Geometria BoldItalic'), local('Geometria-BoldItalic'),
		url('fonts/Geometria-BoldItalic.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-BoldItalic.woff') format('woff'),
		url('fonts/Geometria-BoldItalic.ttf') format('truetype');
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-LightItalic.eot');
	src: local('Geometria LightItalic'), local('Geometria-LightItalic'),
		url('fonts/Geometria-LightItalic.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-LightItalic.woff') format('woff'),
		url('fonts/Geometria-LightItalic.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-HeavyItalic.eot');
	src: local('Geometria HeavyItalic'), local('Geometria-HeavyItalic'),
		url('fonts/Geometria-HeavyItalic.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-HeavyItalic.woff') format('woff'),
		url('fonts/Geometria-HeavyItalic.ttf') format('truetype');
	font-weight: 900;
	font-style: italic;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria.eot');
	src: local('Geometria'),
		url('fonts/Geometria.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria.woff') format('woff'),
		url('fonts/Geometria.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-Bold.eot');
	src: local('Geometria Bold'), local('Geometria-Bold'),
		url('fonts/Geometria-Bold.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-Bold.woff') format('woff'),
		url('fonts/Geometria-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-ExtraBold.eot');
	src: local('Geometria ExtraBold'), local('Geometria-ExtraBold'),
		url('fonts/Geometria-ExtraBold.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-ExtraBold.woff') format('woff'),
		url('fonts/Geometria-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-ThinItalic.eot');
	src: local('Geometria ThinItalic'), local('Geometria-ThinItalic'),
		url('fonts/Geometria-ThinItalic.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-ThinItalic.woff') format('woff'),
		url('fonts/Geometria-ThinItalic.ttf') format('truetype');
	font-weight: 100;
	font-style: italic;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-ExtraLightItalic.eot');
	src: local('Geometria ExtraLightItalic'), local('Geometria-ExtraLightItalic'),
		url('fonts/Geometria-ExtraLightItalic.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-ExtraLightItalic.woff') format('woff'),
		url('fonts/Geometria-ExtraLightItalic.ttf') format('truetype');
	font-weight: 200;
	font-style: italic;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-Light.eot');
	src: local('Geometria Light'), local('Geometria-Light'),
		url('fonts/Geometria-Light.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-Light.woff') format('woff'),
		url('fonts/Geometria-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Geometria';
	font-display: swap;
	src: url('fonts/Geometria-ExtraLight.eot');
	src: local('Geometria ExtraLight'), local('Geometria-ExtraLight'),
		url('fonts/Geometria-ExtraLight.eot?#iefix') format('embedded-opentype'),
		url('fonts/Geometria-ExtraLight.woff') format('woff'),
		url('fonts/Geometria-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}

/************************************************** END Fonts ************************************************/