/* USER VARIABLES SECTION */

:root {
	--accent: #e3221a;
	--accent-red: #EC1C24;
	--accent-gray: #F0F0F0;
	--mainblack: #1F1B20;
	--text: #434242;
	--textlight: #717784;
	--regular-text: 14px;
	--lineheight: 1.65;
	--userfont: Montserrat, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--bs-body-font-weight: 500;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
/* .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; } */
/* .row, .row > * { --bs-gutter-x: 1.25rem; } */

/* FONTS LOAD SECTION */


@font-face{font-display:swap;font-family:'Raleway';font-style:normal;font-weight:300;src:url('../fonts/raleway-v28-cyrillic_cyrillic-ext_latin-300.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Raleway';font-style:normal;font-weight:400;src:url('../fonts/raleway-v28-cyrillic_cyrillic-ext_latin-regular.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Raleway';font-style:normal;font-weight:500;src:url('../fonts/raleway-v28-cyrillic_cyrillic-ext_latin-500.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Raleway';font-style:normal;font-weight:600;src:url('../fonts/raleway-v28-cyrillic_cyrillic-ext_latin-600.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Raleway';font-style:normal;font-weight:700;src:url('../fonts/raleway-v28-cyrillic_cyrillic-ext_latin-700.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Raleway';font-style:normal;font-weight:800;src:url('../fonts/raleway-v28-cyrillic_cyrillic-ext_latin-800.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Raleway';font-style:normal;font-weight:900;src:url('../fonts/raleway-v28-cyrillic_cyrillic-ext_latin-900.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:300;src:url('../fonts/montserrat-v25-cyrillic_cyrillic-ext_latin-300.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:400;src:url('../fonts/montserrat-v25-cyrillic_cyrillic-ext_latin-regular.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:500;src:url('../fonts/montserrat-v25-cyrillic_cyrillic-ext_latin-500.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:600;src:url('../fonts/montserrat-v25-cyrillic_cyrillic-ext_latin-600.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:700;src:url('../fonts/montserrat-v25-cyrillic_cyrillic-ext_latin-700.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:800;src:url('../fonts/montserrat-v25-cyrillic_cyrillic-ext_latin-800.woff2') format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:900;src:url('../fonts/montserrat-v25-cyrillic_cyrillic-ext_latin-900.woff2') format('woff2')}

/* GENERAL CSS SETTINGS */

body.logged-in #header {
	padding-top: 32px;
}

::placeholder {
	color: #666;
}

::selection {
	background-color: var(--accent);
	color: #fff;
}

input,
textarea {
	outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
	border-color: red;
}

input:required:valid,
textarea:required:valid {
	border-color: green;
}

a {
	text-decoration: none;
}

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

h1 {
	font-size: 26px;
}

h2,
h3,
h4,
h5,
h6 {
	font-size: 22px;
}

.image {
	max-width: 100%;
}

.accent {
	color: var(--accent);
}

.form-control:focus {
	border: 0;
	box-shadow: none;
}

.textjustify {
	text-align: justify;
}

.textcenter {
	text-align: center;
}

a {
	color: var(--accent);
}

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 2%;
	bottom: 50px;
	z-index: 996;
	background: var(--accent);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

.back-to-top i {
	font-size: 24px;
	color: white;
	line-height: 0;
}

/* Mobile Navigation */
.mobile-nav-toggle {
	position: fixed;
	right: 10px;
	top: 22px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 26px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

@media (min-width: 768px) and (max-width: 998px) {
	.mobile-nav-toggle {
		top: 20px;
	}
}

.mobile-nav-active .mobile-nav-toggle {
	top: 4px;
}

.mobile-nav-toggle i {
	color: var(--accent);
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
	height: fit-content;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #2c4964;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
	font-size: 15px;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: var(--accent);
	text-decoration: none;
}

.mobile-nav .menu-item-has-children>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.menu-item-has-children>a:after {
	content: "\eaa1";
}

.mobile-nav .menu-item-has-children>a {
	padding-right: 35px;
}

.mobile-nav .menu-item-has-children ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .menu-item-has-children li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(28, 47, 65, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}


.header {
	background: transparent;
}

#header {
	transition: 0.3s;
}

#header.scrolled {
	background: white;
}

.container-head {
	padding-left: 0;
	padding-right: 0;
}

.search-box {
	background: #f2f2f2;
	border-radius: 100px;
	padding: 5px 5px 5px 15px;
}

.home .search-box {
	
}

#header.scrolled .search-box {
	
}

.top-phone.top-phone-scroll {
	display: none;
}

#header.scrolled .top-phone-scroll {
	display: block;
	line-height: 1em;
	cursor: pointer;
}

#header.scrolled .top-phone-scroll i {
	margin-right: 3px;
	font-size: 16px;
	color: var(--accent);
	vertical-align: middle;
}

#header.scrolled .top-phone-scroll p, #header.scrolled .top-phone-scroll p a {
	margin-bottom: 0;
	display: inline-block;
	margin-right: 10px;
	font-size: 14px;
	color: var(--text);
}

#header.scrolled .top-phone-scroll p:hover, #header.scrolled .top-phone-scroll p:hover a {
	color: var(--accent);
}

#header.scrolled .top-phone-scroll p:last-child {
	margin-right: 0;
}

.top-email-scroll {
	display: none;
}

#header.scrolled .top-email-scroll {
	display: block;
	margin-right: 0;
	margin-left: 0;
	line-height: 1em;
	cursor: pointer;
}

#header.scrolled .top-email-scroll i {
	margin-right: 3px;
	font-size: 16px;
	color: var(--accent);
	vertical-align: middle;
}



.search-box input {
	background: transparent;
	border: none;
	color: var(--text);
	margin-left: 23px;
}

.home .search-box input {
	color: var(--text);
}

.home .search-box input::placeholder {
	color: var(--text);
}

.search-box input::placeholder {
	color: var(--text);
}

.logotop {
	width: 200px;
}

.logotop {
	display: none;
}

.logotop-scroll,
.home .logotop.logotop-scroll {
	display: none;
}

#header.scrolled .logotop {
	display: none;
}

#header.scrolled .logotop.logotop-scroll,
.home .logotop {
	display: inline;
	width: 100px;
}

.logotop.logotop-scroll {
	display: inline;
}

.top-email {
	margin-left: 23px;
}

.top-phone {
	margin-left: 23px;
}

.row-subheader {
	border-top: 1px solid rgba(255, 0, 0, 0.44);
	padding-top: 20px;
	margin-top: 5px;
	color: var(--text);
}

.home .row-subheader {
	color: white;
}

#header.scrolled .row-subheader {
	display: none !important;
}

.lang-text {
	margin-right: 6px;
	margin-left: 6px;
	color: var(--text);
}

.home .lang-text {
	color: white;
}

.lang-arrow {
	display: none;
}

.home .lang-arrow {
	display: block;
}

.home .lang-arrow-nohome {
	display: none;
}

.lang-arrow-nohome {
	display: block;
}

.home .search-box i {
	color: var(--text);
	margin-right: 3px;
}

.search-box i {
	color: var(--text);
}

.nav-menu>ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	padding: 0 0 0 20px;
}



.nav-menu a {
	color: var(--text);
}

.nav-menu a:hover {
	color: var(--accent);
}

#header.scrolled .nav-menu a {
	color: var(--text);
	transition: 0.3s;
}

#header.scrolled .nav-menu a:hover {
	color: var(--accent);
}

.nav-menu .menu-item-has-children>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .menu-item-has-children ul {
	display: block;
	position: absolute;
	left: 20px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
	transition: 0.3s;
	border-radius: 0 0 0.25rem 0.25rem;
}

.nav-menu .menu-item-has-children:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .menu-item-has-children li {
	min-width: 180px;
	position: relative;
	list-style: none;
}

.nav-menu .menu-item-has-children li::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20px;
	width: calc(100% - 20px);
	height: 2px;
	background-color: transparent;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s, background-color 0.5s;
	box-shadow: 0 0 2px 1px var(--accent);
}

.nav-menu .menu-item-has-children li:hover::after {
	background-color: var(--accent);
	transform: scaleX(1);
}

.nav-menu .menu-item-has-children ul a {
	padding: 5px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: var(--text);
	border: none;
}

.section {
	padding: 100px 0 0 0;
	position: relative;
}

.row-header {
	height: 70px;
}

.section-breadcrumb {
	padding-top: 80px;
}

.section-breadcrumb #breadcrumbs a {
	color: var(--text);
	transition: 0.3s;
	opacity: 0.7;
}

.section-breadcrumb #breadcrumbs a:hover {
	color: var(--mainblack);
	opacity: 1;
}

.section-breadcrumb #breadcrumbs .breadcrumb_last {
	font-weight: 700;
}

.scrolldown {
	position: absolute;
	bottom: 45px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 30px;
	height: 50px;
	margin-left: 0;
	border: calc(30px / 10) solid white;
	border-radius: 50px;
	box-sizing: border-box;
	margin-bottom: 16px;
	cursor: pointer;
}

.scrolldown::before {
	content: "";
	position: absolute;
	bottom: 30px;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: white;
	border-radius: 100%;
	animation: scrolldown-anim 2s infinite;
	box-sizing: border-box;
	box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
	0% {
		opacity: 0;
		height: 6px;
	}

	40% {
		opacity: 1;
		height: 10px;
	}

	80% {
		transform: translate(0, 20px);
		height: 10px;
		opacity: 0;
	}

	100% {
		height: 3px;
		opacity: 0;
	}
}

.chevrons {
	padding: 6px 0 0 0;
	margin-left: -3px;
	margin-top: 48px;
	width: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.chevrondown {
	margin-top: -6px;
	position: relative;
	border: solid white;
	border-width: 0 3px 3px 0;
	display: inline-block;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
	animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
	animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
	from {
		opacity: 0;
	}

	to {
		opacity: 0.5;
	}
}

#heromain {
	height: 500px;
	margin-top: 0;
	padding: 0;
	overflow: hidden;
	background: #ffffff;
}

.hero-main-content {}

.hero-title h1 {
	color: white;
	font-size: 58px;
	font-weight: 400;
	text-align: center;
	font-family: Montserrat;
	line-height: 60px;
	margin-bottom: 15px;
	text-shadow: 0 0 5px #ffffff, 0 0 20px #000, 0 0 30px #000;
}

.hero-subtext {
	color: white;
	font-size: 18px;
	text-align: center;
	margin-bottom: 25px;
}

.hero-btn-div .hero-btn:first-child {
	margin-right: 20px;
}

.hero-btn-div .hero-btn:last-child {
	margin-left: 20px;
}

.hero-btn-div .hero-btn {
	background: transparent;
	border: 2px solid rgb(255 255 255 / 15%);
	color: white;
	padding: 15px 0;
	width: 260px;
	text-align: center;
	border-radius: 7px;
	transition: transform 0.3s;
	font-weight: 700;
	box-shadow: -4px -4px 20px rgba(255, 255, 255, 0.15), 4px 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-btn-div .hero-btn:hover {
	transform: scale(1.1);
}

#yamaps1 {
	background: white;
	border-radius: 1rem;
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
	overflow: hidden;
	margin-left: 40px;
}

.logotopmob {
	display: none;
}

#heromain {
	padding-top: 70px;
	overflow: visible;
}

.page-template-page-subcatalog #heromain,
.page-template-page-subsubcatalog2 #heromain {
	background: white;
	height: 650px;
	padding-top: 20px;
}

.page-template-page-product #heromain {
	background: white;
	height: 650px;
	padding-top: 20px;
}

.sliders {
	position: relative;
}

.swiper-main .swiper-slide.slider {
	height: 420px;
	padding: 0 140px;
	flex-direction: column;
}

.page-template-page-subcatalog .slider,
.page-template-page-product .slider,
.page-template-page-subsubcatalog2 .slider,
.page-template-page-onenews .slider {
	height: 500px;
	padding-top: 70px;
	background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	border-radius: 20px;
	padding: 70px 140px 0 140px;
	flex-direction: column;
}

.page-template-page-product .slider {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/izum.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.slider-title {
	color: white;
	font-size: 52px;
	line-height: 1em;
	font-weight: 600;
	font-family: Raleway;
	margin-bottom: 40px;
}

.slider-text {
	color: white;
	font-size: 16px;
	width: 50%;
}

.slider-btn a {
	border: 1px solid var(--accent);
	border-radius: 5px;
	color: white;
	font-size: 16px;
	margin-top: 40px;
	padding: 18px 40px;
	width: fit-content;
	display: block;
	transition: 0.3s;
	background: var(--accent);
}

.slider-btn a:hover {
	background: transparent;
	color: white;
	border: 1px solid var(--accent);
}

.swiper-main .swiper-pagination.sliders-nav {
	position: absolute;
	bottom: 50px;
	left: 140px;
	text-align: left;
}



.swiper-main .sliders-nav .swiper-pagination-bullet {
	width: 17px;
	height: 17px;
	background: transparent;
	border: 1px solid #FFFFFF;
	border-radius: 100%;
	display: inline-block;
	margin: 0 15px 0 0 !important;
	opacity: 1;
}

.swiper-main .sliders-nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: white;
}

.section-title {
	font-family: Raleway;
	font-size: 34px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 30px 0;
	padding-bottom: 10px;
	position: relative;
	width: fit-content;
}

.section-title:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: #eef0ef;
	bottom: 0;
	left: 0;
}

.section-title:after {
	content: '';
	position: absolute;
	display: block;
	width: 60px;
	height: 1px;
	background: var(--accent);
	bottom: 0;
	left: 0;
}

.section-catalog {
	padding-top: 0;
}

.page-template-page-main .section-catalog {
	padding-top: 100px;
}

.catalog-elem {
	background: var(--accent-gray);
	padding-bottom: 15px;
	border: 1px solid transparent;
}

.catalog-elem:hover {
	border: 1px solid var(--accent);
}

.catalog-elem a.catalog-elem-aimg {
	height: 250px;
	position: relative;
	padding: 25px;
	overflow: hidden;
	width: 100%;
	background-size: cover !important;
	background-position: center !important;
	display: flex;
	transition: 1s all;
	align-items: start;
	flex-flow: column-reverse;
	color: var(--accent);
}


.catalog-title a {
	font-size: 16px;
	color: var(--text);
	transition: 0.3s;
	line-height: 1.2em;
	margin: 15px 10px 0 10px;
	display: block;
	text-align: center;
}

.catalog-elem .catalog-btn a {
	display: block;
	color: white;
	background: var(--accent);
	font-size: 18px;
	line-height: 1em;
	padding: 15px 35px;
	width: fit-content;
	margin-top: 15px;
	margin-left: 10px;
}


.section-imgbg {
	background-image: url('../images/secbg2.jpg');
	background: linear-gradient(180deg, #ffffff 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, #ffffff 100%), url(../images/secbg2.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.section-about {
	padding-top: 50px;
	padding-bottom: 100px;
	margin-top: 100px;
	background: var(--accent-gray);
}

.page-template-page-about .section-about {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 20px;
}

.page-template-page-product .section-about {
	margin-top: 0;
}

.logo-about {
	width: 50%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.col-lg-8 .about-text {
	margin-left: 40px;
}

.about-btn {
	font-size: 16px;
	color: var(--text);
	background: var(--accent);
	padding: 18px 40px;
	width: fit-content;
	display: block;
	border-radius: 15px;
	transition: 0.3s;
	cursor: pointer;
	border: 1px solid var(--accent);
}

.about-btn:hover {
	background: white;
}

.about-btn a {
	color: white;
}

.about-btn:hover a {
	color: var(--text);
}

.advantage-elem .advantage-img img {
	width: 64px;
	height: 100%!important;
	max-width: 64px;
	margin-right: 20px;
}

.advantage-img span {
	width: 64px;
	height: auto;
	color: var(--accent);
	display: block;
	text-align: left;
	font-size: 24px;
	font-weight: 500;
}

.advantage-elem {
	background: var(--accent-gray);
	padding: 25px;
	height: 150px;
}

.advantage-text {
	line-height: 1.2em;
	font-size: 14px;
}

.advantage-title {
	font-weight: 700;
	margin-bottom: 5px;
}

.section-news {
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: 100px;
}

.news-elem a.news-elembg {
	height: 420px;
	border-radius: 15px;
	position: relative;
	padding: 25px;
	overflow: hidden;
	width: 100%;
	background-size: cover !important;
	display: flex;
	flex-direction: column;
	justify-content: end;
	transition: 1s all;
}

.news-title {
	font-family: Raleway;
	font-size: 22px;
	font-weight: 600;
	color: white;
	line-height: 1.2;
	margin-bottom: 10px;
}

.news-text {
	font-size: 14px;
	color: white;
	line-height: 1.2em;
}

.news-btn {
	border-radius: 15px;
	color: white;
	border: 1px solid white;
	padding: 10px 20px;
	margin-top: 10px;
	width: fit-content;
	transition: 0.3s;
}

.news-btn:hover {
	background: var(--accent);
	color: var(--text);
	border: 1px solid var(--accent);
}

.section-footer {
	background: var(--accent-gray);
	padding-top: 50px;
	padding-bottom: 20px;
	margin-top: 100px;
}

.row-footer-main {
	margin-top: 40px;
}

.logofooter {
	width: 250px;
}

.footer-title {
	font-family: Raleway;
	font-size: 22px;
	font-weight: 600;
	color: var(--text);
}

.footer-catalog-list a {
	font-size: 14px;
	color: var(--text);
	transition: 0.3s;
	display: block;
}

.footer-catalog-list a:hover {
	color: var(--accent);
}

.footer-contelem {
	padding: 10px;
}

.contact-phone {
	margin-bottom: 0;
}

.contact-phone a {
	color: var(--text);
	display: flex;
}

.contact-phone a:hover {
	color: var(--accent);
}

.contact-phone a span {
	display: inline-block;
	margin-right: 5px;
	line-height: 0;
}

.contact-phone a span:before {
	content: ' ';
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 22px;
	width: 22px;
	height: 22px;
}

.contact-text {
	margin-bottom: 0;
}

.phonelogo-gor:before {
	background-image: url(/wp-content/themes/poligraf/images/oldphone.svg);
}

.phonelogo-telegram:before {
	background-image: url(/wp-content/themes/poligraf/images/telegramphone.svg);
}

.phonelogo-viber:before {
	background-image: url(/wp-content/themes/poligraf/images/viberphone.svg);
}

#footer .footer-contelem-img img {
	width: 50px;
	margin-right: 15px;
	max-width: 50px;
}

.footer-contelem-title {
	font-family: Raleway;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
}

.contact-text-email a {
	color: var(--text);
	font-weight: 800;
}

.footer-copyright {
	color: var(--text);
	margin-top: 40px;
}

.footer-copyright a {
	color: var(--text);
}

.footer-copyright a:hover {
	color: var(--accent);
}

.category-text {
	background: var(--accent-gray);
	padding: 30px;
}

.category-text p {
	line-height: 1.4em;
	margin-bottom: 0;
}

.category-text .product-btn {
	margin-top: 10px;
}

.category-text.category-text-top {
	padding: 0;
	background: white;
	margin-bottom: 30px;
}

#header .product-btn {
	margin-top: 0;
}

.site-product .category-text {
	margin-bottom: 0;
}


.catalog-list-header {
	background: var(--accent-gray);
	padding: 15px 0;
	border-bottom: 1px solid var(--accent);
}

.catalog-list-header-text {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
}

.catalog-list .col-lg-12 .catalog-list-elem:nth-child(2n) {
	background: var(--accent-gray);
}

.catalog-list .catalog-list-elem {
	padding: 15px 0;
	border-bottom: 1px solid var(--accent);
}

.catalog-list .col-lg-12 .catalog-list-elem:last-child {
	border-bottom: none;
}

.catalog-list-name {
	text-transform: uppercase;
}

.catalog-list-name a {
	color: var(--text);
	font-weight: 700;
}

.catalog-list-name a:hover {
	color: var(--accent);
}

.catalog-list-btn a {
	color: var(--text);
	background: var(--accent);
	font-size: 14px;
	line-height: 1em;
	padding: 10px 20px;
	border-radius: 15px;
	border: 1px solid var(--accent);
	transition: 0.3s;
}

.catalog-list-btn a:last-child {
	background: #232172;
	color: white;
	border: 1px solid #232172;
}

.catalog-list-btn a:hover {
	background: transparent;
	color: var(--text);
}

.product-btn {
	margin-top: 30px;
}

#header .product-btn a {
	color: white;
	background: var(--accent);
	font-size: 14px;
	line-height: 1em;
	padding: 10px;
	border: 1px solid var(--accent);
	transition: 0.3s;
	margin-right: 10px;
	border-radius: 100px;
}

.product-btn a {
	color: white;
	background: var(--accent);
	font-size: 14px;
	line-height: 1em;
	padding: 10px;
	border: 1px solid var(--accent);
	transition: 0.3s;
	margin-right: 10px;
}

.product-btn a:last-child {
	background: #232172;
	color: white;
	border: 1px solid #232172;
}

.product-btn a:hover {
	background: transparent;
	color: var(--text);
}

.product-desc-elem p i {
	color: var(--accent-red);
}

.product-desc-elem p {
	font-size: 16px;
	line-height: 1.1em;
}

.product-desc-elem p span {
	font-weight: 700;
}

.section-certif .repairgadgetelem {
	display: none;
}

#loadmorecarthide.noContent,
#loadmorecart.noContent {
	display: none;
}

.repairpopularbtnall a {
	color: var(--text);
	background: var(--accent);
	font-size: 16px;
	line-height: 1em;
	padding: 10px 25px;
	border-radius: 15px;
	border: 1px solid var(--accent);
	transition: 0.3s;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

.repairpopularbtnall a:hover {
	background: transparent;
}

.section-contacts {
	padding-top: 0;
}

.contact-social img {
	width: 50px;
	margin-right: 15px;
	transition: 0.3s;
}

.contact-social a:hover img {
	transform: scale(1.1);
}

.hero-form textarea {
	width: 100%;
}

.hero-form .wpcf7-submit {
	color: white;
	background: var(--accent);
	font-size: 16px;
	line-height: 1em;
	padding: 10px 25px;
	border-radius: 15px;
	border: 1px solid var(--accent);
	transition: 0.3s;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

.row-faq .accordion-item {
	margin-bottom: 15px;
	border-radius: 16px;
	border: 1px solid var(--accent);
	overflow: hidden;
}

.accordion-header {
	margin-bottom: 0;
}

.row-faq .accordion-button:not(.collapsed) {
	color: var(--text);
	background-color: #fff;
	box-shadow: none;
	border-color: var(--accent);
}

.page-template-page-vacancy .section-vacancy {
	padding-top: 0;
	padding-bottom: 50px;
	margin-top: 0;
}

.vacancybtn {
	color: var(--text);
	background: var(--accent);
	font-size: 16px;
	line-height: 1em;
	padding: 10px 25px;
	border-radius: 15px;
	border: 1px solid var(--accent);
	transition: 0.3s;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

.vacancybtn:hover {
	background: transparent;
	color: var(--text);
}

.row-onenews {
	background: var(--accent-gray);
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 50px;
}

.news-list-img img {
	width: 100%;
}

.mews-list-content {
	padding: 25px 25px 25px 0;
}

.news-list-title {
	font-size: 22px;
	font-weight: 700;
}

.row-onenews .col-lg-3 {
	padding-left: 0;
}

.news-list-date {
	font-size: 16px;
	opacity: 0.8;
	color: var(--accent-red);
	margin-bottom: 10px;
}

.news-list-short {
	font-size: 16px;
	margin-bottom: 25px;
}

.news-list-btn a {
	color: var(--text);
	background: var(--accent);
	font-size: 16px;
	line-height: 1em;
	padding: 10px 25px;
	border-radius: 15px;
	border: 1px solid var(--accent);
	transition: 0.3s;
	display: block;
	margin-right: auto;
	width: fit-content;
}

.news-list-btn a:hover {
	background: transparent;
	color: var(--text);
}

.page-template-page-onenews #heromain {
	background: white;
	height: 550px;
	padding-top: 50px;
}

.page-template-page-onenews .slider {
	height: 500px;
	padding-top: 70px;
}

.section-onenews {
	padding-top: 50px;
}

.section-onenews .news-list-img img {
	border-radius: 15px;
}

.section-proddesc {
	padding-top: 30px;
}


.dopproducttext {
	background: var(--accent-gray);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
}

.dopproducttext p {
	line-height: 1.4em;
	margin-bottom: 10px;
}

.dopproducttext p:last-child {
	margin-bottom: 0;
}

.section-proddesc .section-title {
	font-size: 24px;
}

.catalog-list-text ul {
	padding-left: 1em;
}

#formpopup {
	display: none;
}

#formpopup .hero-formpopup {
	max-width: 370px;
}

#formpopup .callbackform .input-group {
	margin-bottom: 10px;
}

.form-control:focus {
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
}

.language-elem {
	list-style: none;
}

.lang-item {
	margin-left: 10px;
}

.lang-item a {
	color: var(--text);
	text-transform: uppercase;
	font-size: 18px;
}

.lang-item a:hover {
	color: var(--accent);
}

.home .lang-item a {
	color: var(--textlight);
}

.home .lang-item.current-lang a {
	color: var(--mainblack);
	font-weight: 600;
}

.home .lang-item a:hover {
	color: var(--accent);
}

.grecaptcha-badge {
	display: none !important;
}

.img404 img {
	width: 400px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.section-404 {
	padding-top: 0;
}

.section-404 .section-title {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.btn404 a {
	color: var(--text);
	background: var(--accent);
	font-size: 16px;
	line-height: 1em;
	padding: 10px 25px;
	border-radius: 15px;
	border: 1px solid var(--accent);
	transition: 0.3s;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

.btn404 a:hover {
	background: transparent;
}


.product-container .product-wrap {
	border: 1px solid var(--text);
	transition: 0.3s;
	padding: 15px;
	height: 100%;
}

.product-container .product-zag a {
	color: var(--text);
	font-size: 18px;
}

.section-search {
	padding-top: 40px;
}

.search-box form {
	display: inline-block;
}

.posts-navigation {
	margin-top: 15px;
}

.howtpelement {
	background: var(--accent-gray);
	padding: 15px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.howtpelement img {
	width: 55px;
	margin-right: 15px;
}

.howtpelement p {
	margin-bottom: 0;
	line-height: 1.4em;
}

.howto-title {
	font-weight: 700;
}

.row-howto {}

.img-catalog img {
	width: 100%;
}

.site-product .img-catalog {
	margin-bottom: 25px;
}




.product-small-img img {
	height: 100px;
	margin: 0 0 10px 0;
	padding-bottom: 10px;
	cursor: pointer;
	display: block;
	opacity: .6;
	border-bottom: 1px solid #eef0ef;
}

.product-small-img img:first-child {
	margin-top: 0;
}

.product-small-img img:last-child {
	margin-bottom: 0;
	border: none;
}

.product-small-img img:hover {
	opacity: 1;
}

.product-small-img {
	float: left;
	padding-right: 10px;
	border-right: 1px solid #eef0ef;
	margin-bottom: 20px;
}



.product {
	display: flex;
}

.img-container img {
	height: auto;
    width: 100%;
}

.img-container {
	float: right;
	padding: 10px;
}

.site-product .woocommerce-message {
	border-radius: 15px;
	border: 1px solid #8fae1b;
}

.woocommerce-breadcrumb {
	display: none!important;
}

.product-container .product-desc p:nth-child(n+4) {
    display: none;
}

.product-container .imagecatlist>a>img {
    display: block;
    margin: auto;
}

.product-container .product-img {
    width: 100%;
    border-radius: 14px;
}

.product-container .imagecatlist>a {
    padding: 20px 19px 8px 19px;
}

.product-container .imagecatlist>a {
    display: flex;
    height: 100%;
    padding: 15px;
}

.product-container .imagecatlist {
    overflow: visible;
}

.product-container .imagecatlist {
    height: 293px;
    overflow: hidden;
    position: relative;
}

.product-container .product-wrap {
    border: 1px solid var(--text);
    transition: .3s;
    border-radius: 0;
	position: relative;
}

.product-container .product-wrap .product-item {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-container {
    padding-top: 0;
    padding-bottom: 0;
}

.product-container .product-zag {
    padding: 0 20px 0 20px;
}

#itemcatlist .product-container .product-desc {
    font-weight: bolder;
}

.product-container .product-desc {
    padding: 4px 20px 0 20px;
}

.product-container .product-desc {
    padding: 0 15px 0 15px;
    line-height: 1.2em;
    font-size: 12px;
    color: #000;
}

.product-container .product-desc p {
    margin-bottom: 0;
}

.product-desc>p {
    color: #0f4fb5;
}

.product-container .product-button {
    margin-left: 20px;
}

.product-container .kat-button {
	color: white;
    background: var(--accent);
    font-size: 16px;
    line-height: 1em;
    padding: 10px 25px;
    border: 1px solid var(--accent);
    transition: 0.3s;
	margin-top: 20px;
	display: block;
	text-align: center;
}

.product-container .kat-button:hover {
	background: transparent;
	color: var(--accent);
}

.row.category-desc {
	margin-bottom: 30px;
}

.col-lg-3.filpad {
    padding: 0;
    height: 100%;
    border-radius: 0;
	border: 0;
}

.filter {
    padding: 30px 15px;
    border-radius: 12.8333px;
}

.filter .filterzagmain {
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
}

body .filter .wpc-filters-main-wrap a.wpc-filters-submit-button {
	background: #232172;
}

.row.product-container-row .product-container:nth-child(n+4) {
    margin-top: 30px;
}

.theme-poligraf .flux-checkout__shipping-table {
	display: none!important;
}

.footer-contelem-img img {
    width: 50px;
    margin-right: 15px;
}


.subcategories-list a {
	padding: 15px 25px;
	border: 1px solid var(--text);
	margin-bottom: 10px;
	transition: all 0.3s;
	width: 100%;
	display: block;
}

.subcategories-list a:last-child {
	margin-right: 0;
}

.subcategories-list a:hover {
	background: var(--accent-gray);
	border: 1px solid var(--accent-gray);
}

.subcategories-list {
	margin-bottom: 0;
}
/* USER STYLES */