a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, 
em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, 
meter, nav, object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt,
u, ul, var {
    border: 0 none;
    font-size: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: top;
}
ol,
ul,
li {
	list-style-type: none;
	list-style: none;
	margin: 0;
	padding: 0;	
}
blockquote,
q {
	quotes: none;
}
table,
table td {
	padding: 0;
	border: none;
	border-collapse: collapse;
}
embed { 
	vertical-align: top;
}
.video embed,
.video object,
.video iframe {
	width: 100%;
    height: auto;
}
.clearfix:before,
.clearfix:after {
    content: '';
    display: table;
}
.clearfix:after {
    clear: both;
}
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
article,
aside,
details,
figcaption,
main,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
:focus,
:active,
:hover {
    outline: none;
}
* {
	padding: 0;
	margin: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
	min-width: 320px;
	font-family: 'Montserrat', sans-serif;
	color: #000;
	font-size: 16px;
	line-height: 1;
	font-weight: 400;
	overflow-x: hidden;
}
a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
img {
	max-width: 100%;
	height: auto;
}
input,
textarea,
select,
button {
	font-family: 'Montserrat', sans-serif;
	-webkit-appearance: none;
}


/*------------------------------------------------------------
Fonts
------------------------------------------------------------*/

@font-face {
    font-family: 'MullerBold';
    src: url('../fonts/MullerBold.woff2') format('woff2'),
        url('../fonts/MullerBold.woff') format('woff'),
        url('../fonts/MullerBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*----------------------------------------------------------------
Wrapper
----------------------------------------------------------------*/

.wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	padding: 0 15px;
}


/*----------------------------------------------------------------
Header
----------------------------------------------------------------*/

.header {
	position: relative;
	background: #fff;
}
.header:after {
	position: absolute;
	left: 0;
	top: 100%;
	content: '';
	background: url(../images/header-shadow.png) center top no-repeat;
	width: 100%;
	height: 119px;
	z-index: 1;
}
.single .header,
.single-product .header {
	border-bottom: 2px solid #f1f1f1;
}
.single .header:after,
.single-product .header:after {
	content: none;
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-nav ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-nav li {
	position: relative;
	margin: 0 20px;
}
.header-nav li.current-menu-item:before {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	margin: auto;
	content: '';
	width: 2px;
	height: 34px;
	background: #cedd00;
}
.header-nav li,
.header-nav a {
	color: #696969;
	font-size: 18px;
	line-height: 120px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.header-nav li a {
	display: block;
}
.header-nav li a:hover {
	color: #cedd00;
}
.header__search {
	position: relative;
}
.header-search__btn {
	display: block;
	border: none;
	background: url(../images/i/i-search-black.png) no-repeat;
	width: 21px;
	height: 21px;
	transition: opacity 0.4s ease 0s;
	cursor: pointer;
}
.header-search__btn:hover {
	opacity: 0.6;
}
.header-search__btn--active {
	background: url(../images/i/i-close-grey.svg) no-repeat;
	width: 21px;
	height: 21px;
	background-size: cover;
}
.header-search__drop {
	position: absolute;
	z-index: 0;
	right: 0;
	top: 70px;
	transform: translateY(10px);
	width: 300px;
	height: 50px;
	padding: 5px;
	background: #f2f2f2;
	transition: all 0.4s ease 0s;
	opacity: 0;
	visibility: hidden;
}
.header-search__drop--open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	z-index: 2;
}
.search-form {
	position: relative;
}
.search-form__input {
	width: 100%;
	height: 40px;
	border-radius: 4px;
	padding: 0 40px 0 15px;
	border: 1px solid #ccc;
	background: #fff;
	color: #7c7c7c;
	font-size: 14px;
	line-height: 40px;
	transition: all 0.4s ease 0s;
}
.search-form__input:focus {
	border-color: #7c7c7c;
}
.search-form__input::-webkit-input-placeholder {
	color: #7c7c7c;
	opacity: 1;
}
.search-form__input::-moz-placeholder {
	color: #7c7c7c;
	opacity: 1;
}
.search-form__input:-ms-input-placeholder {
	color: #7c7c7c;
	opacity: 1;
}
.search-form__input:-moz-placeholder {
	color: #7c7c7c;
	opacity: 1;
}
.search-form__submit {
	position: absolute;
	right: 12px;
	top: 0;
	bottom: 0;
	margin: auto;
	display: block;
	background: url(../images/i/i-search-black.png) center no-repeat;
	width: 21px;
	height: 21px;
	background-size: cover;
	border-radius: 0;
	border: none;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.search-form__submit:hover {
	background: url(../images/i/i-search-yellow.png) center no-repeat;
}


/*----------------------------------------------------------------
Adaptive menu gamburger
----------------------------------------------------------------*/

.adaptive-menu-toggle {
	display: block;
	position: relative;
	width: 24px;
	height: 19px;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.header__hamburger {
	display: none;
}
.menu-toggle-inner {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.menu-toggle-line {
	position: absolute;
	background: #000;
	display: block;
	margin: auto;
	height: 3px;
	width: 100%;
}
.menu-toggle-line--1 {
	top: 0;
	-webkit-transition: width 0.2s ease 0.4s;
	-o-transition: width 0.2s ease 0.4s;
	transition: width 0.2s ease 0.4s;
}
.menu-toggle-line--2 {
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: width 0.2s ease 0.3s;
	-o-transition: width 0.2s ease 0.3s;
	transition: width 0.2s ease 0.3s;
}
.menu-toggle-line--3 {
	bottom: 0;
	-webkit-transition: width 0.2s ease 0.2s;
	-o-transition: width 0.2s ease 0.2s;
	transition: width 0.2s ease 0.2s;
}
.menu-toggle-line--4,
.menu-toggle-line--5 {
	opacity: 0;
	top: 7px;
}
.menu-toggle-line--4 {
	-webkit-transition: opacity 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
	transition: opacity 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
	-o-transition: opacity 0.2s ease 0.2s, -o-transform 0.2s ease 0.2s;
	-moz-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s, -moz-transform 0.2s ease 0.2s;
}
.menu-toggle-line--5 {
	-webkit-transition: opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
	transition: opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
	-o-transition: opacity 0.2s ease 0s, -o-transform 0.2s ease 0s;
	-moz-transition: opacity 0.2s ease 0s, transform 0.2s ease 0s, -moz-transform 0.2s ease 0s;
}
.adaptive-menu-toggle--open .menu-toggle-line--1 {
	width: 0;
	-webkit-transition: width 0.2s ease 0s;
	-o-transition: width 0.2s ease 0s;
	transition: width 0.2s ease 0s;
}
.adaptive-menu-toggle--open .menu-toggle-line--2 {
	width: 0;
	-webkit-transition: width 0.2s ease 0.1s;
	-o-transition: width 0.2s ease 0.1s;
	transition: width 0.2s ease 0.1s;
}
.adaptive-menu-toggle--open .menu-toggle-line--3 {
	width: 0;
	-webkit-transition: width 0.2s ease 0.2s;
	-o-transition: width 0.2s ease 0.2s;
	transition: width 0.2s ease 0.2s;
}
.adaptive-menu-toggle--open .menu-toggle-line--4 {
	opacity: 1;
	-webkit-transform: rotate(45deg) translateZ(0);
	-ms-transform: rotate(45deg) translateZ(0);
	-o-transform: rotate(45deg) translateZ(0);
	transform: rotate(45deg) translateZ(0);
	-webkit-transition: opacity 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
	transition: opacity 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
	-o-transition: opacity 0.2s ease 0.2s, -o-transform 0.2s ease 0.2s;
	-moz-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s, -moz-transform 0.2s ease 0.2s;
}
.adaptive-menu-toggle--open .menu-toggle-line--5 {
	opacity: 1;
	-webkit-transform: rotate(-45deg) translateZ(0);
	-ms-transform: rotate(-45deg) translateZ(0);
	-o-transform: rotate(-45deg) translateZ(0);
	transform: rotate(-45deg) translateZ(0);
	-webkit-transition: opacity 0.2s ease 0.4s, -webkit-transform 0.2s ease 0.4s;
	transition: opacity 0.2s ease 0.4s, -webkit-transform 0.2s ease 0.4s;
	-o-transition: opacity 0.2s ease 0.4s, -o-transform 0.2s ease 0.4s;
	-moz-transition: opacity 0.2s ease 0.4s, transform 0.2s ease 0.4s, -moz-transform 0.2s ease 0.4s;
}
.adaptive-container {	
	position: fixed;
	left: 0;
	top: 0;
	padding: 30px 20px;
	width: 270px;
	height: 100%;
	z-index: 100;
	background: #fff;	
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden; 
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	-webkit-transform: translateX(-150%);
	-ms-transform: translateX(-150%);
	-o-transform: translateX(-150%);
	transform: translateX(-150%);
	overflow-y: auto;
}
.adaptive-container.adaptive-container--open {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.adaptive-nav li,
.adaptive-nav a {
	font-size: 20px;
}
.adaptive-nav li {
	margin: 0 0 20px;
}
.adaptive-nav li:last-child {
	margin: 0;
}
.adaptive-nav a {
	color: #000;
}
.adaptive-nav li.current-menu-item,
.adaptive-nav a:hover {
	color: #cedd00;
}


/*----------------------------------------------------------------
Hero
----------------------------------------------------------------*/

.hero-slider__slide {
	height: 860px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-slider__content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.hero-slider__title {
	color: #fff;
	font-size: 120px;
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: 15px;
}
.hero-slider .slick-arrow {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 21px;
	height: 38px;
	border: none;
	color: transparent;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.4s ease 0s;
	cursor: pointer;
}
.hero-slider .slick-prev {
	left: calc(50% - 585px);
	background-image: url(../images/i/i-arr-white-l.png);
}
.hero-slider .slick-next {
	right: calc(50% - 585px);
	background-image: url(../images/i/i-arr-white-r.png);
}
.hero-slider .slick-arrow:hover {
	opacity: 0.6;
}
.hero-slider .slick-dots {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	align-content: center;
	justify-content: center;
}
.hero-slider .slick-dots li {
	margin: 0 20px;
}
.hero-slider .slick-dots li button {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #fff;
	background: transparent;
	transition: all 0.4s ease 0s;
	cursor: pointer;
	color: transparent;
}
.hero-slider .slick-dots li.slick-active button,
.hero-slider .slick-dots li button:hover {
	background: #cedd00;
	border-color: #cedd00;
}


/*----------------------------------------------------------------
Main page slider items
----------------------------------------------------------------*/

.s-company {
	padding: 125px 0 140px;
}
.s-company__wrapper {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	width: 100%;
}
.s-line {
	position: relative;
}
.s-line:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	content: '';
	width: 2px;
	height: 100px;
	background: #cedd00;
	margin: auto;
}
.s-title {
	margin: 0 0 80px;
	font-size: 46px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: center;
}
.s-title--white {
	color: #fff;
}
.s-company__inner {
	display: flex;
}
.s-company__img {
	flex: 0 0 380px;
	max-width: 380px;
}
.s-company__content {
	margin: 0 0 0 100px;
	flex-grow: 1;
}
.s-company__title {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
}
.s-company__description {
	margin: 0 0 25px;
	font-size: 14px;
	line-height: 20px;
}
.s-company__link {
	padding: 0 24px 0 0;
	display: inline-block;
	position: relative;
	color: #cedd00;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}
.s-company__link:after {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	background: url(../images/i/i-doublearr-right-green.png) no-repeat;
	width: 15px;
	height: 12px;
	transition: all 0.4s ease 0s;
}
.s-company__link:hover {
	color: #000;
}
.s-company__link:hover:after {
	right: -5px;
	background: url(../images/i/i-doublearr-right-black.png) no-repeat;
}


/*----------------------------------------------------------------
News section
----------------------------------------------------------------*/

.s-news {
	padding: 125px 0 90px;
	background: url(../images/news-bg.jpg) center top no-repeat;
}
.inews-grid__row,
.news-grid__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.inews-grid__col,
.news-grid__col {
	margin: 0 0 50px;
	padding: 0 15px;
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
}
.news-post__img {
	position: relative;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow:    0px 0px 30px 0px rgba(0, 0, 0, 0.2);
	box-shadow:         0px 0px 30px 0px rgba(0, 0, 0, 0.2);
	border: 1px solid #ccc;
	transition: all 0.4s ease 0s;
}
.news-post__img:hover {
	border-color: #cedd00;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
	-moz-box-shadow:    0px 0px 30px 0px rgba(0, 0, 0, 0.4);
	box-shadow:         0px 0px 30px 0px rgba(0, 0, 0, 0.4);
}
.news-post__img img {
	width: 100%;
}
.news-post__imgbottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40px;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: rgba(0,0,0,0.4);
	color: #ffffff;
	font-size: 12px;
	line-height: 16px;
	font-weight: 300;
	font-style: italic;
}
.inews-post__imgbottom:after {
	position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: '';
    background: url(../images/i/i-doublearr-right-green.png) no-repeat;
    width: 15px;
    height: 12px;
}
.news-post__title {
	margin: 25px 0 20px;
	font-weight: 600;
}
.news-post__link {
	line-height: 20px;
	font-size: 18px;
}
.news-post__link:hover {
	color: #cedd00;
}
.news-post__excerpt {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}
.news-post__morelink {
	position: relative;
	padding: 0 25px 0 0;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}
.news-post__morelink:before {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	background: url(../images/i/i-doublearr-right-green.png) no-repeat;
	width: 15px;
	height: 12px;
	transition: all 0.4s ease 0s;
}
.news-post__morelink:hover:before {
	right: -5px;
	background: url(../images/i/i-doublearr-right-black.png) no-repeat;
}
.news-more {
	text-align: center;
}
.news-more__btn {
	display: inline-block;
	padding: 15px 45px;
	border: 1px solid #000;
	color: #000;
}
.news-more__btn:hover {
	background: #000;
	color: #fff;
}


/*----------------------------------------------------------------
Entry content
----------------------------------------------------------------*/

.page-content {
	margin: 40px 0 0;
}
.entry-content p {
	font-size: 16px;
	line-height: 22px;
	margin: 0 0 20px 0;
	font-weight: 300;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
	line-height: 1.2;
    margin: 40px 0 20px;
    font-weight: 600;
}
.entry-content h1 {
	font-size: 36px;
}
.entry-content h2 {
	font-size: 30px;
}
.entry-content h3 {
	font-size: 26px;
}
.entry-content h4 {
	font-size: 24px;
}
.entry-content h5 {
	font-size: 22px;
}
.entry-content ul,
.entry-content ol {
	margin: 20px 0;
}
.entry-content ol {
	counter-reset: number;
}
.entry-content li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 0 0 20px;
	line-height: 22px;
	font-weight: 300;
}
.entry-content ol li:last-child,
.entry-content ul li:last-child {
	margin: 0;
}
.entry-content ul li:before,
.entry-content ol li:before {
	position: absolute;
	left: 0;
	content: '';
}
.entry-content ul li:before {
	top: 6px;
	width: 8px;
	height: 8px;
	background: #cedd00;
	border-radius: 50%;
}
.entry-content ol li:before {
	content: '';
	counter-increment: number;
    content: counter(number) ".";
	color: #cedd00;
	font-weight: 600;
}
.entry-content blockquote {
	margin: 20px 0;
}
.entry-content blockquote {
	padding: 20px;
	background: #f8f8f8;
}
.entry-content blockquote,
.entry-content blockquote p {
	font-size: 14px;
	line-height: 20px;
}
.entry-content blockquote p {
	margin: 0 0 15px;
}
.entry-content blockquote p:last-child {
	margin: 0;
}
#map {
	height: 300px;
}


/*----------------------------------------------------------------
Partners section
----------------------------------------------------------------*/

.s-partners {	
	position: relative;
}
.s-partners:after {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	width: 100%;
	height: 380px;
	background: #f3f3f3;
}
.s-partners__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s-partners__side {
	flex-grow: 1;
	overflow: hidden;
}
.partners-slider__img {
	height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.partners-slider__img img {
	max-height: 100%;
}
.s-partners__title {
	margin: 0 0 110px;
	font-size: 46px;
	font-weight: 300;
	letter-spacing: 10px;
	text-transform: uppercase;
	text-align: center;
}
.partners-slider {
	padding: 0 30px;
}
.partners-slider .slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 21px;
	height: 38px;
	border: none;
	color: transparent;
	transition: all 0.4s ease 0s;
	cursor: pointer;
}
.partners-slider .slick-prev {
	left: 0;
	background: url(../images/i/i-arr-grey-l.png) no-repeat;
}
.partners-slider .slick-next {
	right: 0;
	background: url(../images/i/i-arr-grey-r.png) no-repeat;
}
.partners-slider .slick-arrow:hover {
	opacity: 0.6;
}
.s-partners__form {
	margin: 0 0 0 30px;
	flex: 0 0 460px;
	max-width: 460px;
}
.partners-form {
	height: 450px;
	padding: 15px 40px;
	background: url(../images/form-bg.jpg) center no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.partners-form__row {
	margin: 0 0 60px
}
.partners-form__row:last-child {
	margin: 0;
}
.partners-form__input {
	width: 100%;
	height: 34px;
	border: none;
	background-color: transparent;
	background-position: 10px 2px;
	background-repeat: no-repeat;
	border-bottom: 2px solid #fff;
	padding: 0 15px 5px 45px;
	color: #fff;
	font-size: 18px;
	line-height: 34px;
	font-weight: 300;
	transition: all 0.4s ease 0s;
}
.partners-form__input--name {
	background-image: url(../images/i/i-input-user.png);
}
.partners-form__input--tel {
	background-image: url(../images/i/i-input-tel.png);
}
.partners-form__input::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
}
.partners-form__input::-moz-placeholder {
	color: #fff;
	opacity: 1;
}
.partners-form__input:-ms-input-placeholder {
	color: #fff;
	opacity: 1;
}
.partners-form__input:-moz-placeholder {
	color: #fff;
	opacity: 1;
}
.partners-form__input:focus {
	border-bottom-color: #cedd00;
}
.partners-form__input.error {
	border-color: red;
}
.partners-form__submit {
	margin: 0 auto;
	display: block;
	width: 100%;
	max-width: 300px;
	height: 46px;
	border: 1px solid #fff;
	background: rgb(255,255,255,0.15);
	color: #fff;
	font-size: 22px;
	line-height: 46px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.4s ease 0s;
	cursor: pointer;
	text-align: center;
}
.partners-form__submit:hover {
	background: #fff;
	color: #000;
}


/*----------------------------------------------------------------
Catalog product nav
----------------------------------------------------------------*/

.product-catbox {
	margin: 30px 0 0;
}
.product-catbox__btn {
	display: none;
	width: 100%;
	padding: 12px;
	border: none;
	text-align: center;
	background: #cedd00;
	color: #fff;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.product-catbox__btn span {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 10px;
	background: url(../images/i/i-arr-bottom-white.png) no-repeat;
	width: 12px;
	height: 8px;
}
.product-catbox__btn:hover {
	background: #000;
}
.product-catnav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.product-catnav__item,
.product-catnav__link {
	text-transform: uppercase;
	letter-spacing: 1px;
}
.product-catnav__item {
	padding: 0 20px 0 0;
	margin: 0 0 10px;
}
.product-catnav__item--active,
.product-catnav__link:hover {
	color: #cedd00;
}
.product-catnav__item--active {
	font-weight: 700;
}
.catalog-grid {
	margin: 30px 0 0;
}
.catalog-grid__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.catalog-grid__col {
	margin: 0 0 50px;
	padding: 0 10px;
	flex: 0 0 20%;
	max-width: 20%;
}
.catalog-product__img {
	position: relative;
	border: 1px solid #e2e2e2;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow:    0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	box-shadow:         0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease 0s;
}
.catalog-product__3d {
	position: absolute;
	right: 12px;
	top: 12px;
	background: url(../images/i/i-3d.png) no-repeat;
	width: 27px;
	height: 25px;
}
.catalog-product__img:hover {
	border-color: #cedd00;
}
.catalog-product__title {
	margin: 20px 0 0;
	font-weight: 300;
}
.catalog-product__link {
	font-size: 14px;
}
.catalog-product__link:hover {
	color: #cedd00;
}


/*----------------------------------------------------------------
Products grid
----------------------------------------------------------------*/

.products-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.products-grid__col {
	margin: 0 0 70px;
	padding: 0 15px;
	flex: 0 0 25%;
	max-width: 25%;
}
.product-item {
	text-align: center;
}
.product-item__img img {
	width: 100%;
	border-radius: 10px;
}
.product-item__body {
	padding: 18px 0 0;
}
.product-item__title {
	margin: 0 0 10px;
	font-weight: 400;
}
.product-item__link,
.product-item__size,
.product-item__price {
	color: #1B1919;
	font-size: 14px;
}
.product-item__link:hover {
	color: #000;
}
.product-item__size {
	margin: 0 0 7px;
}
.product-item__price {
	font-weight: 600;
}


/*----------------------------------------------------------------
Pagination
----------------------------------------------------------------*/

.pagination {
	margin: 0 auto 70px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.pagination span,
.pagination a {
	display: block;
	margin: 0 5px 5px;
	padding: 2px 0;
	width: 30px;
	height: 30px;
	border-bottom: 4px solid transparent;
	line-height: 26px;
	text-align: center;
}
.pagination a:hover {
	color: #cedd00;
}
.pagination .current {
	border-bottom-color: #cedd00;
}
.pagination .prev,
.pagination .next {
	background-color: #cedd00;
	background-repeat: no-repeat;
	background-position: center 9px;
	font-size: 0;
}
.pagination .prev {
	background-image: url(../images/i/i-doublearr-left-white.png);
}
.pagination .next {
	background-image: url(../images/i/i-doublearr-right-white.png);
}
.pagination .prev:hover,
.pagination .next:hover {
	background-color: #000;
}
.pagination .page-numbers.current:hover,
.pagination .page-numbers.dots:hover {
	color: #000;
}


/*----------------------------------------------------------------
Section page head
----------------------------------------------------------------*/

.s-pagehead {
	height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.s-pagehead__title {
	color: #fff;
	font-size: 80px;
	font-weight: 100;
	letter-spacing: 15px;
	text-align: center;
	text-transform: uppercase;
}


/*----------------------------------------------------------------
Section breadcrumbs
----------------------------------------------------------------*/

.page-breadcrumbs {
	margin: 15px 0 0;
}
.breadcrumbs-nav {
	padding: 0 0 15px;
	border-bottom: 2px solid #cedd00;
	color: #cedd00;
	font-size: 14px;
	font-weight: 600;
}
.kb_sep {
	margin: 0 3px;
	color: #000;
}
.kb_title,
.breadcrumbs-nav a:hover {
	color: #cedd00;
}


/*----------------------------------------------------------------
PDF catalog grid
----------------------------------------------------------------*/

.pdf-grid__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.pdf-grid__col {
	margin: 0 0 90px;
	padding: 0 15px;
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
}
.pdf-product__img {
	height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.pdf-product__img img {
	max-height: 300px;
}
.pdf-product__download {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.8);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease 0s;
}
.pdf-product__img:hover .pdf-product__download {
	opacity: 1;
	visibility: visible;
}
.pdf-product__downloadbtn {
	position: relative;
	padding: 0 0 30px;
	color: #fff;
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.pdf-product__downloadbtn:after {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: '';
	width: 12px;
	height: 15px;
	background: url(../images/i/i-doublearr-bottom-green.png) no-repeat;
}
.pdf-product__year {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80px;
	height: 36px;
	background: #cedd00;
	color: #fff;
	font-size: 24px;
	line-height: 36px;
	font-weight: 100;
	text-align: center;
}
.pdf-product__title {
	margin: 15px 0 0;
	font-size: 18px;
	line-height: 22px;
	font-weight: 300;
}


/*----------------------------------------------------------------
Single product
----------------------------------------------------------------*/

.product__title {
	margin: 0 0 35px;
	font-size: 24px;
	font-weight: 500;
}
.product-top {
	display: flex;
	justify-content: space-between;	
}
.product-top__images {
	margin: 0 20px 0 0;
	flex: 0 0 460px;
	max-width: 460px;
}
.gallery-big {
	height: 460px;
	border: 1px solid #e2e2e2;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow:    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow:         0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.gallery-big__img {
	height: 100%;	
}
.gallery-big__img img {
	max-height: 460px;
	display: inline;
}
.gallery-big__imglink {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	position: relative;
}
.gallery-big__imgzoom {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	background: #f3f3f3 url(../images/i/i-gallery-zoom-grey.png) center no-repeat;
	border: 1px solid #e2e2e2;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow:    0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	box-shadow:         0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease 0s;
}
.gallery-big__imglink:hover .gallery-big__imgzoom {
	border-color: #cedd00;
	background: #f3f3f3 url(../images/i/i-gallery-zoom-green.png) center no-repeat;
}
.gallery-sm {
	margin: 30px 0 0;
	padding: 0 10px;
}
.gallery-sm__img {
	margin: 0 5px;
	cursor: pointer;
}
.gallery-sm__img img {
	border: 1px solid #e2e2e2;
	transition: all 0.4s ease 0s;
}
.gallery-sm__img.slick-current img {
	border-color: #cedd00;
}
.gallery-sm .slick-arrow {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 30px;
	border: none;
	background-color: #c6c6c6;
	background-position: center;
	background-repeat: no-repeat;
	color: transparent;
	transition: all 0.4s ease 0s;
	cursor: pointer;
}
.gallery-sm .slick-prev {
	left: 0;
	background-image: url(../images/i/i-doublearr-left-white.png);
}
.gallery-sm .slick-next {
	right: 0;
	background-image: url(../images/i/i-doublearr-right-white.png);
}
.gallery-sm .slick-arrow:hover {
	background-color: #cedd00;
}
.product-top__content {
	display: flex;
	justify-content: space-between;
	flex-grow: 1;
}
.product-top__info {
	flex: 0 0 300px;
	max-width: 300px;
}
.product-top__contentitle {
	margin: 0 0 20px;
	font-weight: 500;
	text-transform: uppercase;
}
.product-info {
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f3f3f3;
	font-size: 14px;
}
.product-info:nth-child(even) {
	background: #f9f9f9;
}
.product-info__name {
	font-weight: 700;
}
.product-info__value {
	font-weight: 500;
	flex: 0 0 100px;
	max-width: 100px;
}
.product-download {
	margin: 50px 0 0;
}
.product-download__btn {
	display: block;
	padding: 22px 5px;
	width: 100%;
	background: #cedd00;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
}
.product-download__btn:hover {
	background: #000;
	color: #fff;
}
.product-top__partners {
	flex: 0 0 220px;
	max-width: 220px;
	margin: 0 75px 0 0;
}
.product-description {
	margin: 60px 0 0;
}
.product-description__title,
.product-characts__title {
	margin: 0 0 25px;
	border-bottom: 2px solid #cedd00;
	font-size: 18px;
	text-transform: uppercase;
}
.product-description__title span,
.product-characts__title span {
	padding: 13px 20px;
	background: #f9f9f9;
	display: inline-block;
	max-width: 560px;
	width: 100%;
}
.product-description p,
.product-description {
	font-size: 14px;
	line-height: 20px;
}
.product-top__description p {
	margin: 0 0 12px;
}
.product-top__description p:last-child {
	margin: 0;
}
.product-characts {
	margin: 50px 0 0;
}
.product-top__partner {
	margin: 0 0 20px;
	height: 60px;
	border: 1px solid #e2e2e2;
	background: #fcfcfc;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease 0s;
}
.product-top__partner:last-child {
	margin: 0;
}
.product-top__partner img {
	max-height: 50px;
}
.product-top__partner:hover {
	background: #fff;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow:    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow:         0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.product-characts-group {
	max-width: 560px;
	width: 100%;
}
.product-characts-group__title {
	padding: 14px 20px;
	background: #cedd00;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
}
.product-charact {
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f3f3f3;
	font-size: 14px;
}
.product-charact:nth-child(even) {
	background: #f9f9f9;
}
.product-charact__name {
	font-weight: 700;
}
.product-charact__value {
	font-weight: 500;
	flex: 0 0 220px;
	max-width: 220px;
}


/*----------------------------------------------------------------
Related section
----------------------------------------------------------------*/

.related-collection {
	margin: 60px 0 0;
}
.related-collection__title {
	margin: 0 0 25px;
    border-bottom: 2px solid #cedd00;
    font-size: 18px;
    text-transform: uppercase;
}
.related-collection__title span {
	padding: 13px 20px;
    background: #f9f9f9;
    display: inline-block;
	width: 100%;
    max-width: 560px;
}
.related-items__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
}
.related-items__col {
	margin: 0 0 30px;
	padding: 0 8px;
	flex: 0 0 14.25%;
	max-width: 14.25%;
}
.related-item__img {
	border: 1px solid #e2e2e2;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow:    0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	box-shadow:         0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease 0s;
}
.related-item__img:hover {
	border-color: #cedd00;
}
.related-item__title {
	margin: 10px 0 0;
	font-weight: 300;
}
.related-item__link {
	font-size: 14px;
}
.related-item__link:hover {
	color: #cedd00;
}


/*----------------------------------------------------------------
Footer
----------------------------------------------------------------*/

.footer {
	margin: 75px 0 0;
}
.footer-top {
	padding: 55px 0 80px;
	background: #000;
}
.footer-top__inner {
	display: flex;
	justify-content: space-between;
}
.footer-nav li {
	margin: 0 0 20px 0;
}
.footer-nav li:last-child {
	margin: 0;
}
.footer-nav a {
	color: #fff;
	border-bottom: 1px solid #666;
}
.footer-nav a:hover,
.footer-nav li.current-menu-item {
	color: #cedd00;
	border-color: #cedd00;
}
.footer-top__title {
	margin: 0 0 15px;
	color: #fff;
	font-weight: 600;
}
.footer-top__tels {
	position: relative;
	margin: 0 0 15px;
}
.footer-top__tels:before {
	position: absolute;
	left: -24px;
	top: 0;
	content: '';
	background: url(../images/i/i-tel-green.png) no-repeat;
	width: 15px;
	height: 15px;
}
.footer-top__tel {
	margin: 0 0 10px;
}
.footer-top__email {
	position: relative;
}
.footer-top__email:before {
	position: absolute;
	left: -24px;
	top: 3px;
	content: '';
	background: url(../images/i/i-email-green.png) no-repeat;
	width: 14px;
	height: 10px;
}
.footer-top__telnum,
.footer-top__emailval {
	color: #fff;
}
.footer-top__telnum:hover,
.footer-top__emailval:hover {
	color: #cedd00;
}
.soc-nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.soc-nav__item {
	margin: 0 20px 0 0;
}
.soc-nav__link {
	display: block;
	width: 30px;
	height: 30px;
}
.soc-nav__link:hover {
	opacity: 0.6;
}
.soc-nav__link--insta {
	background-image: url(../images/i/i-insta.png);
}
.soc-nav__link--fb {
	background-image: url(../images/i/i-fb.png);
}
.footer-bottom {
	padding: 13px 0;
	background: #cedd00;
}
.page404-description,
.search-empty {
	margin: 0 0 40px;
}
.search-items__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.search-items__col {
	margin: 0 0 40px;
	padding: 0 15px;
	flex: 0 0 25%;
	max-width: 25%;
}
.search-item {
	margin: 0 0 15px;
}
.search-item:last-child {
	margin: 0;
}
.search-item__img {
	border: 1px solid #e2e2e2;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	transition: all 0.4s ease 0s;
}
.search-item__img:hover {
	border-color: #cedd00
}
.search-item__title {
	margin: 15px 0 0;
	font-weight: 400;
}
.search-item__link:hover {
	color: #cedd00;
}


/*----------------------------------------------------------------
Modal
----------------------------------------------------------------*/

.scroll-disable {
	overflow: hidden;
}
.fancybox-bg {
	background: rgba(0,0,0,0.6);
}
.fancybox-close-small svg path {
	color: #000;
}
.modal {
	display: none;
	width: 100%;
}
.modal-default {
	max-width: 380px;
	width: 100%;
	padding: 25px 40px;
	background: #ebe9e9;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
.modal-default__title {
	margin: 0 0 25px;
	color: #000;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}


/*----------------------------------------------------------------
Form styles
----------------------------------------------------------------*/

.modal-form__group {
	margin: 0 0 25px 0;
}
.modal-form__group:last-child {
	margin: 0;
}
.modal-form__label {
	margin: 0 0 5px;
	display: block;
	color: #424242;
	font-size: 16px;
}
.modal-form__input {
	width: 100%;
	height: 34px;
	background: #f9f9f9;
	border: 1px solid #d6d6d6;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	padding: 0 15px;
	color: #7c7c7c;
	font-size: 14px;
	line-height: 34px;
	text-align: left;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.modal-form__input:focus {
	border-color: #859eb1;
}
.modal-form__input::-webkit-input-placeholder {
	color: #7c7c7c;
	opacity: 1;
}
.modal-form__input::-moz-placeholder {
	color: #7c7c7c;
	opacity: 1;
}
.modal-form__input:-ms-input-placeholder {
	color: #7c7c7c;
	opacity: 1;
}
.modal-form__input:-moz-placeholder {
	color: #7c7c7c;
	opacity: 1;
}
.modal-form__policy {
	margin: 0 0 15px;
	color: #7c7c7c;
	font-size: 14px;
	line-height: 16px;
}
.modal-form__policy a {
	color: red;
	font-style: italic;
}
.modal-form__policy a:hover {
	color: #464646;
}
.modal-form__submit {
	display: inline-block;
	width: 100%;
	padding: 15px 5px;
	border: 1px solid #464646;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	-ms-border-radius: 35px;
	-o-border-radius: 35px;
	border-radius: 35px;
	background: #828282;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	font-size: 15px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.4s ease 0s;
}
.modal-form__submit:hover {
	background: #464646;
}


/*----------------------------------------------------------------
Adaptive styles
----------------------------------------------------------------*/

@media only screen and (max-width: 1200px) {

	.header-nav li,
	.header-nav a {
		font-size: 16px;
		letter-spacing: 0;
	}
	.header-nav li {
		margin: 0 10px;
	}
	.hero-slider .slick-prev {
		left: 15px;
	}
	.hero-slider .slick-next {
		right: 15px;
	}
	.hero-slider__title {
		font-size: 70px;
	}
	.s-partners__title {
		margin: 0 0 80px;
		font-size: 30px;
	}
	.s-pagehead__title {
		font-size: 36px;
		letter-spacing: 1px;
	}
	.product-catnav ul {
		margin: 0 -5px;
		justify-content: center;
	}
	.product-catnav__item {
		padding: 0 5px;
	}
	.catalog-grid__col {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.product-top__images {
		margin: 0 15px 0 0;
	}
	.product-top__info {
		flex: 0 0 270px;
		max-width: 270px;
	}
	.product-info {
		padding: 15px;
	}
	.product-top__partners {
		flex: 0 0 200px;
		max-width: 200px;
		margin: 0;
	}
	.related-items__col {
		flex: 0 0 20%;
		max-width: 20%;
	}

}


@media only screen and (max-width: 1000px) {
	
	.header__logo {
		max-width: 110px;
	}
	.header-nav li,
	.header-nav a {
		font-size: 14px;
	}
	.header-nav li {
		margin: 0 5px;
	}
	.hero-slider__slide {
		height: 480px;
	}
	.hero-slider__title {
		font-size: 40px;
	}
	.s-company {
		padding: 125px 0;
	}
	.s-company__content {
		margin: 0 0 0 30px;
	}
	.inews-grid__row {
		margin: 0;
		display: block;
	}
	.inews-grid__row .slick-list {
		margin: 0 -15px;
	}
	.inews-grid__col {
		margin: 0 15px;
		padding: 0;
		max-width: none;
	}
	.news-more {
		margin: 30px 0 0;
	}
	.news-grid__col {
		margin: 0 0 50px;
		padding: 0 15px;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.s-partners:after {
		bottom: auto;
	}
	.s-partners__inner {
		display: block;
	}
	.s-partners {
		padding: 125px 0 0;
	}
	.s-partners:before {
		position: absolute;
		z-index: 1;
		left: 0;
		right: 0;
		top: 0;
		content: '';
		width: 2px;
		height: 100px;
		background: #cedd00;
		margin: auto;
	}
	.s-partners__title {
		font-size: 46px;
	}
	.s-partners__form {
		margin: 30px auto 0;
	}
	.product-catnav__item,
	.product-catnav__link {
		font-size: 14px;
		letter-spacing: 0;
	}
	.related-items__col {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.product-top__content {
		display: block;
	}
	.product-top__info,
	.product-top__partners {
		max-width: none;
	}
	.product-top__partners {
		margin: 30px 0 0;
	}
	.search-items__col {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}

}


@media only screen and (max-width: 767px) {

	.header {
		padding: 15px 0;
	}
	.header__menu {
		display: none;
	}
	.header__search {
		margin: 0 20px 0 auto;
	}
	.header__hamburger {
		display: block;
	}
	.header-search__drop {
		top: 42px;
	}
	.hero-slider__slide {
		height: 240px;
	}
	.hero-slider__title {
		font-size: 32px;
		letter-spacing: 3px;
	}
	.hero-slider .slick-dots {
		bottom: 10px;
	}
	.hero-slider .slick-dots li {
		margin: 0 10px;
	}
	.hero-slider .slick-dots li button {
		width: 12px;
		height: 12px;
	}
	.s-line:before {
		height: 40px;
	}
	.s-title {
		margin: 0 0 35px;
		font-size: 18px;
		letter-spacing: 3px;
	}
	.s-company,
	.s-news {
		padding: 50px 0;
	}
	.s-company__inner {
		display: block;
	}
	.s-company__content {
		margin: 30px 0 0 0;
	}
	.s-company__title {
		font-size: 14px;
	}
	.news-post__link {
		font-size: 14px;
	}
	.inews-grid__row {
		display: block;
	}
	.inews-grid__row .slick-dots,
	.partners-slider .slick-dots {
		margin: 30px auto 0;
		display: flex;
		align-content: center;
		justify-content: center;
	}
	.inews-grid__row .slick-dots li,
	.partners-slider .slick-dots li {
		margin: 0 10px;
	}
	.inews-grid__row .slick-dots li button,
	.partners-slider .slick-dots li button {
		display: block;
		width: 12px;
		height: 12px;
		border-radius: 50%;
		border: 1px solid #000;
		background: transparent;
		transition: all 0.4s ease 0s;
		cursor: pointer;
		color: transparent;
	}
	.inews-grid__row .slick-dots li.slick-active button,
	.inews-grid__row .slick-dots li button:hover,
	.partners-slider .slick-dots li.slick-active button,
	.partners-slider .slick-dots li button:hover {
		background: #cedd00;
		border-color: #cedd00;
	}
	.s-partners {
		padding: 50px 0 0;
	}
	.s-partners:before {
		height: 40px;
	}
	.s-partners__title {
		margin: 0 0 35px;
		font-size: 18px;
		letter-spacing: 2px;
	}
	.pdf-grid__col {
		margin: 0 0 30px;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.page-breadcrumbs {
		margin: 10px 0 0;
	}
	.breadcrumbs-nav {
		padding: 0 0 10px;
		font-size: 12px;
	}
	.s-pagehead__title {
		font-size: 28px;
		letter-spacing: 0;
	}
	.entry-content h1 {
		font-size: 30px;
	}
	.entry-content h2 {
		font-size: 26px;
	}
	.entry-content h3 {
		font-size: 22px;
	}
	.entry-content h4 {
		font-size: 20px;
	}
	.entry-content h5 {
		font-size: 18px;
	}
	.page-content {
		margin: 30px 0 0;
	}
	.product-catbox__btn {
		display: block;
	}
	.product-catnav {
		display: none;
		padding: 15px 0 0;
	}
	.catalog-grid__col {
		margin: 0 0 30px;
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
	.pagination {
		margin: 0 auto 40px;
	}
	.product-top__images {
		flex: 0 0 350px;
		max-width: 350px;
	}
	.gallery-big {
		height: 350px;
	}
	.product-info {
		font-size: 12px;
	}
	.product-download {
		margin: 30px 0 0;
	}
	.product-description,
	.product-characts,
	.related-collection {
		margin: 40px 0 0;	
	}
	.related-items__col {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
	.search-items__col {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.footer {
		margin: 60px 0 0;
	}
	.footer-top {
		padding: 45px 0;
	}
	.footer-top__inner {
		display: block;
		text-align: center;
	}
	.footer-top__logo {
		margin: 0 auto 30px;
		max-width: 110px;
	}
	.footer-nav__link {
		font-size: 14px;
	}
	.footer-top__contacts,
	.footer-top__soc {
		max-width: 190px;
		width: 100%;
		margin: 40px auto 0;
	}
	.footer-top__contacts {
		border-top: 2px solid #fff;
		padding: 40px 0 0;
	}
	.footer-top__tels,
	.footer-top__email {
		padding: 0 15px;
	}
	.footer-top__tels:before,
	.footer-top__email:before {
		left: 0;
	}
	.footer-top__tel {
		display: inline-block;
	}
	.footer-top__telnum,
	.footer-top__emailval {
		font-size: 12px;
	}
	.soc-nav ul {
		justify-content: center;
	}
	.soc-nav__item {
		margin: 0 10px;
	}
	.footer-bottom__copyright {
		font-size: 12px;
	}	

}


@media only screen and (max-width: 640px) {

	.pdf-grid__col,	
	.news-grid__col {
		flex: 0 0 100%;
		max-width: none;
	}
	.product-top {
		display: block;
	}
	.product-top__images {
		margin: 0;
		max-width: none;
	}
	.gallery-big {
		height: auto;
	}
	.gallery-sm {
		margin: 15px 0 0;
	}
	.product-catnav__item,
	.product-catnav__link {
		font-size: 12px;
	}
	.catalog-grid__col,
	.related-items__col {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.product-top__content {
		margin: 30px 0 0;
	}
	
}


@media only screen and (max-width: 480px) {
	
	.partners-form {
		height: 300px;
		padding: 15px 25px;
	}
	.partners-form__row {
		margin: 0 0 40px;
	}
	.partners-form__input {
		height: 25px;
		padding: 0 15px 3px 35px;
		font-size: 14px;
		line-height: 25px;
	}
	.partners-form__input--name,
	.partners-form__input--tel {
		background-size: 15px;
	}
	.partners-form__submit {
		max-width: 200px;
		height: 30px;
		font-size: 14px;
		line-height: 28px;
		letter-spacing: 1px;
	}
	.product-catnav ul {
		margin: 0;
		display: block;
	}
	.product-catnav__item {
		padding: 0;
		text-align: center;
	}
	.product-catnav__item:last-child {
		margin: 0;
	}
	.search-items__col {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.related-item__link {
		font-size: 12px;
	}

}