@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-regular-webfont.eot');
    src: url('../fonts/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff'),
         url('../fonts/roboto-regular-webfont.ttf') format('truetype');
    font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-bold-webfont.eot');
    src: url('../fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff'),
         url('../fonts/roboto-bold-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'CenturyGothic';
    src: url('../fonts/CenturyGothic-Bold.eot');
    src: url('../fonts/CenturyGothic-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/CenturyGothic-Bold.woff') format('woff'),
         url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
    font-weight: 700;
	font-style: normal;
	font-display: swap;
}
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: #fff;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: #8d8d8d;
	font-size: 16px;
	font-weight: 400;
	font-family: 'roboto', Arial, Helvetica, sans-serif;
	line-height: 24px;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 400;
	font-family: 'roboto', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
button {font-weight: 400;}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.holder {
	max-width: 1150px;
	padding: 0 20px;
	margin: 0 auto;
}
.holder:after {
	display: block;
	content: '';
	clear: both;
}
h1 {
	margin: 0 0 35px;
	color: #141414;
	font-size: 42px;
	font-family: 'CenturyGothic';
	line-height: 78px;
}
h2 {
	margin: 0 0 35px;
	color: #141414;
	font-size: 42px;
	font-family: 'CenturyGothic';
	line-height: 78px;
}
.title {
	margin: 0 0 40px;
	color: #141414;
	font-size: 42px;
	font-family: 'CenturyGothic';
	line-height: 78px;
}
h3 {
	margin: 0 0 24px;
	color: #141414;
	font-size: 24px;
	font-family: 'CenturyGothic';
	line-height: 29px;
}
h4 {
	margin: 0 0 13px;
	font-size: 25px;
	line-height: 30px;
}
a {transition: all .3s linear;}
p {margin: 0 0 24px;}
p a, .article li a {color: #ff6502;}
.pink {color: #ff6502;}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	display: inline-block;
	padding: 9px 24px 11px;
	margin: 0 auto;
	color: #fff;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	background: #ff6502;
	border-radius: 40px;
	transition: all .3s linear;
}
.button:hover {
	background: #e45900;
}
/************************* form-block *************************/

.input {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 16px;
	margin: 0 0 14px;
	color: #b69999;
	font-size: 16px;
	background: #fff;
	border: 2px solid #ededed;
	border-radius: 6px;
	transition: all 0.5s ease;
}

.input:focus {
	border: 2px solid #ff6502;
}

.textarea {
	display: block;
	width: 100%;
	height: 130px;
	padding: 15px 16px;
	margin: 0 0 14px;
	color: #b69999;
	font-size: 16px;
	resize: vertical;
	background: #fff;
	border: 2px solid #ededed;
	border-radius: 6px;
	resize:none;
	transition: all 0.5s ease;
}

.textarea:focus {
	border: 2px solid #ff6502;
}

.submit {
	display: inline-block;
	width: 100%;
	padding: 12px 35px 14px;
	margin: 0;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: #ff6502;
	border-radius: 40px;
	transition: all .3s linear;
}

.submit:hover {
	background: #e45900;
}

.submit span {position: relative;}
::-webkit-input-placeholder {color: #b69999;}
:-moz-placeholder {color: #b69999; opacity: 1;}
::-moz-placeholder {color: #b69999; opacity: 1;}
:-ms-input-placeholder {color: #b69999;}

.input.error, .textarea.error {
	color: rgb(255, 86, 71);
	background-color: rgb(255, 206, 202);
}

label.error {
	position: absolute;
	left: -9999px;
}

/************************* wrapper *************************/

#wrapper {
	position: relative;
	left: 0;
	overflow: hidden;
	padding: 70px 0 0;
	transition: all 0.5s ease;
}
/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: 70px;
	padding: 14px 0 0;
	box-sizing: border-box;
	background: #fff;
	border-bottom: 1px solid #ededed;
	transition: all 0.5s ease;
}
.home .header {
	background: transparent;
	border-bottom: 1px solid transparent;
}
.home .header.fixed {
	background: #fff;
	border-bottom: 1px solid #ededed;
}
.header-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.header-logo {margin-top: -8px;}
.header-logo img {
	width: 250px;
}
.header-nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	flex: 1;
	padding: 8px 80px 0 60px;
	justify-content: space-between;
}

.header-nav > li {
	position: relative;
	height: 48px;
	padding: 0 10px;
	border-bottom: 4px solid transparent;
}

.header-nav > li.current-menu-item,
.header-nav > li.current-menu-parent {
	border-bottom: 4px solid #ff6502;
}

.header-nav a {
	color: #8d8d8d;
	text-decoration: none;
}

.header-nav a:hover {color: #333;}
.header-nav li.current-menu-item a,
.header-nav > li.current-menu-parent > a {
	color: #333;
}

.menu-item-has-children > a {
	display: inline-block;
	padding: 0 10px 0 0;
}

.menu-item-has-children > a:after {
    position: absolute;
    top: 3px;
    right: -1px;
	left: auto;
	display: block;
	content: '';
    width: 18px;
    height: 18px;
    background: url(../images/arrow-down.svg) 50% 50% no-repeat;
    background-size: 18px;
}

.header-nav li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	margin-top: 4px;
	z-index: 10;
	width: 287px;
  	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
	background-color: #ffffff;
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s linear;
}

.sub-menu li {
	border-top: 1px solid #ededed;
}

.sub-menu li:first-child { border-top: 0; }

.sub-menu a {
	display: block;
	padding: 20px 10px 18px 27px;
}

.header-right {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
}

.header-search {
	margin: 3px 25px 0 0;
}
.header-search svg {
	width: 20px;
	height: 20px;
}
.header-search path {
	fill: #8d99a6;
	transition: all 0.3s linear;
}
.header-search:hover path {fill: #ff6502;}
.header-phone {
	display: inline-block;
	padding: 8px 20px 8px 50px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	background: #ff6502 url(../images/phone-icon.svg) 20px 50% no-repeat;
	background-size: 16px;
	border-radius: 40px;
}

.fixed-search,
.fixed-search2 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	display: none;
	height: 70px;
	padding: 7px 0 0;
	background: #fff;
	border-bottom: 1px solid #ededed;
}

.fixed-search-block {
	position: relative;
}

.search-input {
	display: block;
	width: 100%;
	height: 55px;
	padding: 0 45px 0 45px;
	margin: 0;
	color: #000;
	font-size: 16px;
	background: #fff;
	border-radius: 6px;
}
.search-button {
	position: absolute;
	top: 14px;
	left: 0px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.search-button svg {
	width: 30px;
	height: 30px;
}
.search-button path {
	fill: #d3d8dd;
	transition: all 0.3s linear;
}
.search-button:hover path {fill: #ff6502;}

.fixed-search-close,
.fixed-search2-close {
	position: absolute;
	top: 16px;
	right: 0px;
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.fixed-search-close svg,
.fixed-search2-close svg {
	width: 22px;
	height: 22px;
}

.fixed-search-close polygon,
.fixed-search2-close polygon {
	fill: #d3d8dd;
	transition: all 0.3s linear;
}

.fixed-search-close:hover polygon,
.fixed-search2-close:hover polygon {
	fill: #ff6502;
}

.mob-nav-icon {
	display: none;
	position: absolute;
	top: 24px;
	left: 20px;
	z-index: 250;
	padding: 0 0 10px;
}
.mob-nav-block {
    position: relative;
	display: block;
    width: 18px;
    height: 2px;
    margin: 5px 0 0;
	background: #8d99a6;
	transition: all .5s ease;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 18px;
    height: 2px;
    background: #8d99a6;
	transition: all .5s ease;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 18px;
    height: 2px;
    background: #8d99a6;
	transition: all .5s ease;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
	transform: rotate(45deg);
	background: #fff;
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
	transform: rotate(-45deg);
	background: #fff;
}
/************************* banner *************************/
.fixed-nav {
	position: fixed;
	top: 0;
	left: -260px;
	height: 100%;
	width: 260px;
	padding: 0 24px;
	color: #fff;
	z-index: 1000;
	background: #ff6502;
	transition: all 0.5s ease;
}
.fixed-nav.vis {left: 0;}
.header:before {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	z-index: 200;
	display: block;
	content: '';
	background: #000;
	opacity: 0.5;
}
#wrapper.vis .header:before {width: 2000px;}
#wrapper.vis {left: 260px;}
#wrapper.vis .header {left: 260px;}
.fixed-logo {
	padding: 12px 0 54px;
	text-align: center;
}
.fixed-logo img {width: 202px;}
.fixed-nav-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-family: 'CenturyGothic';
	font-weight: 700;
}
.fixed-nav-title a {
	color: #fff;
	text-decoration: none;
}
.fixed-nav-list {
	padding: 0 0 9px;
}
.fixed-nav-list li {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 22px;
}
.fixed-nav-list a {
	color: #fff;
	text-decoration: none;
}
.fixed-webs {padding: 23px 0 40px;}
.fixed-webs a {
	display: inline-block;
	margin: 0 14px 0 0;
	text-decoration: none;
}
.fixed-webs a path {
	fill: #fff;
	transition: all 0.3s linear;
}
.fixed-phone {
	display: block;
	width: 178px;
	padding: 8px 20px 8px 50px;
	margin: 0 auto;
    color: #ff6502;
    font-size: 16px;
    text-decoration: none;
    background: #fff url(../images/phone-icon-orange.svg) 20px 50% no-repeat;
    background-size: 16px;
    border-radius: 40px;
}

li.none > a { cursor:default; }

.fixed-nav a.header-search2 {
	color:#FFF;
	text-decoration:none;
	font-size: 14px;
	line-height: 22px;
}


/************************* main page *************************/
/************************* banner *************************/
.banner {
	min-height: 100vh;
	margin-top: -70px;
	padding: 120px 0 50px;
	background: url(../images/wave-02.svg) 50% 100% no-repeat;
	background-size: 100% auto;
}
.banner-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
}
.banner-img {
	width: 50%;
	order: 2;
}
.banner-img img {
	max-width: 160%;
	margin: 0 0 0 -100px;
}
.banner-content {
	width: 50%;
}
.banner-title {
	margin: 0 0 11px;
    color: #141414;
    font-size: 64px;
    font-family: 'CenturyGothic';
    line-height: 78px;
}
.banner-text {
	margin: 0 0 29px;
    font-size: 22px;
    line-height: 36px;
}
.banner .button {
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
  	background-image: linear-gradient(103deg, #ff9e05, #ff6502);
}
@media screen and (max-width: 1600px) {
	.banner {
		background-size: auto;
	}
}

/************************* production *************************/

.production {
	margin: -2px 0 0;
	padding: 1px 0 50px;
	background: #f1f1f1;
}

.production .title {
	margin-top: -50px;
	-webkit-transition: 1s; 
	-moz-transition: 1s; 
	-o-transition: 1s; 
	transition: 1s; 	
}

.production-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.production-item {
	width: 23%;
	margin: 0 0 0 2.66%;
	background-image: linear-gradient(125deg, #ff9e05, #ff6502);		
	border-radius: 20px;
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
	text-decoration:none;
	color: #8d8d8d;
}

.production-item .linear-gradient {
	padding: 45px 27px 30px;
	background:rgba(255,255,255, 1);
	border-radius: 18px;
	display:block;
	width:100%;
	height:100%;
	-webkit-transition: 1s; 
	-moz-transition: 1s; 
	-o-transition: 1s; 
	transition: 1s; 
}

.production-item:nth-child(4n+1) {
	margin: 0;
}

.production-icon img.two { display:none; }

.production-item:hover { color: #fff; }

.production-item:hover .linear-gradient {
	background:rgba(255,255,255, 0);
}

.production-item:hover .production-title {color: #fff; }

.production-item:hover .production-text { opacity: 0.5; }

.production-item:hover .production-icon img.one { display:none; }
.production-item:hover .production-icon img.two { display:inline; }

.production-icon {
	padding: 0 0 10px;
	text-align:center;
}

.production-icon img {
	margin: -15px 0 0 -10px;
}

.production-title {
	margin: 0 0 12px;
    color: #141414;
    font-size: 24px;
    font-family: 'CenturyGothic';
    line-height: 29px;
	text-align:center;
}

.production-text {
	text-align: center;
}
/************************* main-about *************************/

.main-about {
	position: relative;
	padding: 50px 0 100px;
}

.main-about:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 2000px;
	display: block;
	content: '';
	background: url(../images/wave-01.svg) 50% 0% no-repeat;
	background-size: 100% auto;
}

.main-about-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.main-about-photo {
	width: 48%;
}

.main-about-photo img {margin: 0 0 0 -180px;}
.main-about-content {
	width: 51.5%;
	padding: 260px 0 0;
}
.main-about-content .title {
	margin: 0 0 31px;
	line-height: 51px;
}
.main-about-content p {text-align: justify;}
@media screen and (max-width: 1600px) {
	.main-about:before {
		background-size: auto;
	}
}
/************************* order *************************/
.reasons.main-reasons {padding: 0 0 30px;}
.order {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 80px;
	padding: 70px 60px 70px 270px;
	color: #fff;
	background: #ff6502 url(../images/handshake.svg) -40px 50% no-repeat;
	border-radius: 20px;
}
.order-title {
	width: 400px;
	margin: 0 10px 0 0;
	font-size: 40px;
	font-weight: 700;
    line-height: 47px;
}
.order-form {
	position: relative;
	flex: 1;
}
.order-input {
	display: block;
	width: 100%;
	height: 55px;
	padding: 0 40px 0 20px;
	margin: 0;
	color: #ccc;
	font-size: 16px;
	background: #fff;
	border-radius: 6px;
}
.order-submit {
	position: absolute;
	top: 19px;
	right: 20px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	background: url(../images/right-arrow-forward.svg) 50% 50% no-repeat;
	background-size: 16px;
}
/************************* other pages *************************/
/************************* main *************************/
.main {
	padding: 16px 0 40px;
}
/************************* blog *************************/
.blog {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blog-item {
	width: 31.5%;
	margin: 0 0 60px 2.75%;
}
.blog-item:nth-child(3n + 1){
	margin: 0 0 60px;
}
.blog-item-img {
	overflow: hidden;
	display: block;
	margin: 0 0 17px;
	border-radius: 7px;
}
.blog-item-img img {
	display: block;
	width: 100%;
	transition: all 0.3s linear;
}
.blog-item-img:hover img {
	transform: scale(1.05);
}
.blog-item-date {
	margin: 0 0 3px;
}
.blog-item-title {
	margin: 0 0 24px;
	font-size: 20px;
	font-family: 'CenturyGothic';
	font-weight: 700;
}
.blog-item-title a {
	color: #141414;
	text-decoration: none;
}
.blog-item-title a:hover {
	color: #ff6502;
}
.blog-item-text {
	text-align: justify;
}
/************************* blog-post *************************/
.breadcrumbs {
	padding: 15px 0 8px;
}
.breadcrumbs li {
	display: inline-block;
	margin: 0 5px 0 0;
	font-size: 14px;
}
.breadcrumbs li:before {
	display: inline-block;
	content: '';
	width: 6px;
	height: 9px;
	margin: 0 10px 0 0;
	background: url(../images/right-arrow.svg) 50% 50% no-repeat;
	background-size: cover;
}
.breadcrumbs li:first-child:before {display: none;}
.breadcrumbs a {
	color: #8d8d8d;
	text-decoration: none;
}
.breadcrumbs a:hover {color: #ff6502;}
.title-min {
    margin: 0 0 10px;
    color: #141414;
    font-size: 32px;
    font-family: 'CenturyGothic';
    line-height: 39px;
}
.date {
	margin: 0 0 18px;
}
.blog-post {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.blog-side {
	width: 31.5%;
}
.blog-content {
	width: 65.5%;
}
.article-img {
	display: block;
	width: 100%;
	margin: 0 0 23px;
	border-radius: 7px;
}
.blog-side-title {
	color: #ff6502;
	font-size: 20px;
	font-family: 'CenturyGothic';
	font-weight: 700;
}
.blog-side-title:after {
	display: block;
	content: '';
	width: 45px;
	height: 4px;
	margin: 8px 0 0;
	background: #ff6502;
}
.blog-side-item {
	padding: 15px 0 14px;
	border-bottom: 1px solid #d8d8d8;
}
.blog-side-date {
	margin: 0 0 5px;
}
.blog-side-link {
	font-size: 18px;
	font-family: 'CenturyGothic';
	font-weight: 700;
}
.blog-side-link a {
	color: #141414;
	text-decoration: none;
}
.blog-side-link a:hover {color: #ff6502;}
/************************* shop-list *************************/
.shop-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 16px;
	padding: 24px 0;
	color: #666;
	border: 2px solid #ededed;
	border-radius: 20px;
}
.shop-logo {
	width: 350px;
	padding: 0 15px;
	text-align: center;
}
.shop-logo img {
	max-width: 100%;
}
.shop-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	flex: 1;
	padding: 0 15px 0 30px;
	border-left: 1px solid #ededed;
}
.shop-info-column {
	width: 50%;
}
.shop-info-link {margin: 0 0 24px;}
.shop-info-icon {
	line-height: 20px;
}
.shop-info-icon svg {
	width: 20px;
	height: 20px;
}
.shop-info-text a {
	color: #007aff;
	text-decoration: none;
}
/************************* article-block *************************/
.article-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.article-top {
	width: 100%;
	margin: 0 0 22px;
}
.article-top img {
	width: 100%;
	border-radius: 20px;
}
.article-column {
	width: 48%;
}
/************************* about page *************************/
.about-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.about-img {
	width: 48%;
	order: 2;
	padding: 0 0 30px;
}
.about-img img {
	width: 100%;
	border-radius: 20px;
}
.about-content {
	order: 1;
	width: 48%;
	padding: 0 0 6px;
}
.about-info h3 {
	text-align: center;
}
.about-info-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 0 28px;
}
.about-info-item {
	width: 23%;
	margin: 0 0 20px 2.66%;
	padding: 40px 30px 30px;
	border-radius: 20px;
  	border: solid 2px #ededed;
 	background-color: #ffffff;
}
.about-info-item:nth-child(4n + 1) {
	margin: 0 0 20px;
}
.about-info-icon {
	height: 60px;
	line-height: 60px;
	margin: 0 0 30px;
}
.about-info-icon img {
	vertical-align: top;
	margin: -10px 0 0 -10px;
}
/************************* contacts page *************************/

.contacts-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 0 30px;
}

.contacts-content {
	width: 48%;
}

.contacts-text {padding: 0 0 18px;}
.contacts-info {
	color: #000;
}

.contacts-info-item {
	overflow: hidden;
	margin: 0 0 20px;
}

.contacts-info-icon {
	float: left;
}

.contacts-info-text {
	margin: 0 0 0 45px;
}

.contacts-info a {
	color: #ff6502;
	text-decoration: none;
}

.contacts-form {
	width: 48%;
	padding: 32px 34px 42px;
	background: #ededed;
	border-radius: 20px;
	position:relative;
}

.contacts-button {
	text-align: right;
}

.contacts-button .submit {width: auto;}

.contacts-form-title {
	margin: 0 0 49px;
    color: #141414;
    font-size: 24px;
    font-family: 'CenturyGothic';
    line-height: 29px;
}

.contacts-button .wpcf7-submit { width:auto; }

.wpcf7 {
	position:relative;
}

.wpcf7 input.wpcf7-text.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
	color: rgb(255, 86, 71);
	background-color: rgb(255, 206, 202);
}

.wpcf7 .wpcf7-not-valid-tip { display:none; }

.wpcf7 .wpcf7-response-output {
	font-size:12px;
	line-height:14px;
	display:block;
	text-align:center;
	color:#000;
	padding:0!important;
	margin:0!important;
	border:none!important;
	position:absolute;
	left:10px;
	right:10px;
	bottom:-25px;
}

.wpcf7 .ajax-loader {
	position:absolute;
	display:block!important;
	background-color:#FFF;
	width:40px!important;
	height:40px!important;
	background-repeat:no-repeat;
	background-position:center center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	right:0px;
	top:0px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

#popup .wpcf7 .ajax-loader {
	right:50%;
	top:50%;
	margin:-25px -25px 0 0;
}

.order-form .wpcf7 .ajax-loader { 
	right:10px;
	top:7px;
}

/************************* category page *************************/
.category-tabs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 40px 15px 0;
}

.category-tabs li {
	padding: 10px 30px 18px;
	font-size: 20px;
	font-family: 'CenturyGothic';
	font-weight: 700;
	border-bottom: 4px solid transparent;
}

.category-tabs a {
	color: #000;
	text-decoration: none;
}

.category-tabs a:hover {
	color: #ff6502;
}

.category-tabs .active {
	border-bottom: 4px solid #ff6502;
}

.category-tabs .active a {
	color: #ff6502;
}

.sorting {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 0 40px;
	padding: 25px 27px;
	border-radius: 10px;
  	box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.13);
  	background-color: #ffffff;
}

.sorting-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	width: 48%;
}

.sorting-text {
	margin: 0 16px 0 0;
	color: #000;
	font-weight: 700;
}

.sorting-select {
	flex: 1;
	max-width: 300px;
}

/************************* catalog *************************/
.catalog {
	padding: 0 0 20px;
}
.catalog-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 0 26px;
}
.catalog-img {
	width: 256px;
	min-width: 256px;
	margin: 0 30px 0 0;
}
.catalog-img img {
	width: 100%;
	border-radius: 7px;
}
.catalog-content {
	flex: 1;
	padding: 0 0 15px;
	border-bottom: 2px solid #ededed;
}
.catalog-title {
	margin: 0 0 19px;
	font-size: 24px;
	font-family: 'CenturyGothic';
	font-weight: 700;
	line-height: 29px;
}
.catalog-title a {
	color: #000;
	text-decoration: none;
}
.catalog-title a:hover {
	color: #ff6502;
}
.catalog-text {
	margin: 0 0 32px;
}
/************************* product page *************************/
.product {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 58px;
}
.product-img {
	width: 48%;
	order: 2;
}
.product-slider {
	margin: 0 0 14px;
	border-radius: 20px;
  	background-color: #f3f3f3;
}
.product-slider .slick-list {border-radius: 20px;}
.product-slide {
	overflow: hidden;
	height: 400px;
	line-height: 400px;
	text-align: center;
	border-radius: 20px;
  	background-color: #f3f3f3;
}
.product-slider .product-slide img {
	display: inline-block;
}
.product-slide img {
	max-width: 95%;
	max-height: 95%;
	vertical-align: middle;
}

.product-thumbs {
	padding: 0 44px;
}

.product-thumbs .product-thumb img {
	display: inline-block;
	cursor:pointer;
}

.product-thumb-inner {
	overflow: hidden;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border-radius: 6px;
	border: solid 2px transparent;
	background-color: #f3f3f3;
}
.slick-current .product-thumb-inner {border: solid 2px #ff6502;}
.product-thumb-inner img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}
.slick-arrow {
	position: absolute;
	top: 50%;
	display: block;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	font-size: 0;
	cursor: pointer;
	background: #f3f3f3;
	border-radius: 50%;
}
.slick-prev {
	left: 0px;
	background: #f3f3f3 url(../images/left.svg) 50% 50% no-repeat;
	background-size: 22px;
}
.slick-next {
	right: 0px;
	background: #f3f3f3 url(../images/right.svg) 50% 50% no-repeat;
	background-size: 22px;
}
.product-content {
	width: 48%;
	order: 1;
}
.product-img .product-title {display: none;}
.product-title {
	margin: 0 0 27px;
	font-size: 32px;
	line-height: 39px;
}
.product-text {
	margin: 0 0 17px;
}
.product-stat {
	max-width: 475px;
	margin: 0 0 43px;
	border-bottom: 1px solid #efefef;
}
.product-stat li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 7px 0 8px;
	border-top: 1px solid #efefef;
}
.product-stat-left {
	width: 50%;
}
.product-stat-right {
	width: 50%;
	color: #000;
	text-align: right;
}

.product-box {
	padding: 32px 32px 14px;
	margin: 0 0 24px;
	border-radius: 20px;
  	border: solid 2px #ededed;
 	background-color: #ffffff;
}
.product-list {
	padding: 0 0 4px;
	color: #333333;
}
.product-list li {
	position: relative;
	padding: 0 0 0 28px;
	margin: 0 0 20px;
}
.product-list li:before {
	position: absolute;
	top: 10px;
	left: 0;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	background: #333;
	border-radius: 50%;
}

.product-info {
	margin: 0 0 24px;
	border-bottom: 1px solid #efefef;
}

.product-info li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 9px 0 10px;
	border-top: 1px solid #efefef;
}
.product-info li:hover {background: #f8f8f8;}
.product-info-name {
	width: 230px;
	min-width: 230px;
	padding: 0 15px;
	color: #666666;
	font-weight: 700;
}
.product-info-text {
	flex: 1;
	color: #000;
}
/************************* footer *************************/

.reasons {
	padding: 20px 0 0;
}

.reasons-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.reasons-item {
	width: 48%;
	margin: 0 0 50px 4%;
}

.reasons-item:nth-child(2n + 1){margin: 0 0 50px;}
.reasons-icon {
	height: 60px;
	line-height: 60px;
	margin: 0 0 10px;
}
.reasons-icon img {
	vertical-align: top;
	margin: -15px 0 0 -10px;
}
.reasons-title {
	margin: 0 0 7px;
    color: #141414;
    font-size: 24px;
    font-family: 'CenturyGothic';
    line-height: 29px;
}
.reasons-text {
	line-height: 22px;
}
/************************* review *************************/
.review {
	padding: 52px 0 80px;
	background: #f8f8f8;
}
.review-slider {
	margin: 0 -15px 50px;
}
.review-slide {
	padding: 0 15px;
	line-height: 22px;
}
.review-author {
	margin: 0 0 2px;
	color: #000;
	font-weight: 700;
}
.review-author-status {
	padding: 0 0 21px;
	margin: 0 0 20px;
	color: #616161;
	font-size: 12px;
	border-bottom: 1px solid #dedede;
}
.review-text {
	margin: 0 0 9px;
}
.review-raiting {
	font-size: 0;
}
.star {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/ic_star.svg) 50% 50% no-repeat;
}
.star-full {
	background: url(../images/ic_star-full.svg) 50% 50% no-repeat;
}
.star-half {
	//background: url(../images/ic_star-half.svg) 50% 50% no-repeat;
}
.slick-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -37px;
	text-align: center;
}
.slick-dots li {
	display: inline-block;
	vertical-align: top;
	margin: 0 4px 7px;
}
.slick-dots button {
	display: block;
	width: 8px;
	height: 8px;
	font-size: 0;
	cursor: pointer;
	background-color: #b6b6b6;
	border-radius: 50%;
}
.slick-dots .slick-active button {background-color: #ff6502;}
/************************* footer *************************/
.footer {
	padding: 93px 0 100px;
	color: #999999;
	font-size: 16px;
	line-height: 22px;
	background: #f8f8f8;
}
.footer-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 1020px;
	padding: 0 0 11px;
}
.footer-info {
	width: 27%;
	margin: 0 auto 0 0;
}
.footer-column {
	width: 25%;
	margin: 0 0 0 3%;
	padding: 6px 0 0;
}
.footer-logo {
	margin: -10px 0 22px;
}
.footer-logo img {
    width: 250px;
}
.footer-title {
	margin: 0 0 16px;
	color: #141414;
	font-size: 20px;
	font-family: 'CenturyGothic';
	font-weight: 700;
	line-height: 24px;
}

.footer-nav li { margin: 0 0 12px; }

.footer-nav a { 
	color: #999999;
	text-decoration: none;
}

.footer-nav li.current-menu-item a,
.footer-nav a:hover { 
	color: #ff6502;
}

.f-web1 svg {
	width: 24px;
	height: 24px;
}
.f-web2 svg {
	width: 24px;
	height: 24px;
}
.footer-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.footer-webs a {
	display: inline-block;
	margin: 0 14px 0 0;
	text-decoration: none;
}
.footer-webs a path {
	fill: #0C0C0D;
	transition: all 0.3s linear;
}
.footer-webs a:hover path {fill: #ff6502;}
/************************* popups *************************/
.popup {
	display: none;
	width: 480px;
	border-radius: 0;
}
.popup.fancybox-content {padding: 25px 30px 30px;}
.popup-title {
	margin: 0 0 20px;
	color: #000;
	font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}
.popup .submit {
	max-width: 240px;
	padding: 12px 20px 14px;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.pagination {
	text-align:center;
	display:block;
}

.pagination ul  {
	display:block;
	font-size:0px;
}

.pagination ul li {
	display:inline-block;
	margin:0 10px;
	font-size:16px;
}

.pagination ul li a {
	color:#999999;
	text-decoration:underline;
}

.pagination ul li a:hover {
	color:#ff6502;
	text-decoration:none;
}

.pagination ul li span {
	color:#ff6502;
}

.pagination a.prev,
.pagination a.next { display:none; }
    
/************************* media *************************/

@media screen and (max-width: 1140px) {
	.header-nav {
		padding: 10px 30px 0 30px;
	}
	.header-nav > li {
		padding: 0 6px;
	}
	.category-tabs li {
		padding: 10px 30px 18px;
		font-size: 18px;
	}
	.main-about-block {
		position: relative;
	}
	.main-about-photo img {
		position: absolute;
		top: 0;
		left: 50%;
		margin: 0 0 0 -730px;
	}
	.order-title {
		width: 330px;
		margin: 0 10px 0 0;
		font-size: 30px;
		line-height: 36px;
	}
	
}
@media screen and (max-width: 1024px) {
	.banner {
		min-height: 1px;
		margin-top: -61px;
		padding: 100px 0 76px;
	}
	.banner-block {
		display: block;
	}
	.banner-img {
		width: auto;
		max-width: 500px;
	}
	.banner-img img {
		max-width: 120%;
		margin: 0 0 0 -100px;
	}
	.banner-content {
		width: auto;
	}
	.banner-title {
		margin: 0 0 11px;
		font-size: 34px;
		line-height: 41px;
	}
	.banner-text {
		margin: 0 0 29px;
		font-size: 16px;
		line-height: 21px;
	}
	.banner-img {
		position: relative;
		z-index: 5;
		margin: 0 auto;
	}
	.banner-img img {
		max-width: 100%;
		margin: 0;
	}
}
@media screen and (max-width: 1023px) {
	#wrapper {
		padding: 61px 0 0;
	}
	.header {
		height: 61px;
		padding: 7px 0 0;
	}
	.mob-nav-icon {
		display: block;
	}
	.header-nav,
	.header-right {display: none;}
	.header-logo {
		width: 100%;
		margin-top: 0;
		text-align: center;
	}
	.header-logo img {
		width: 202px;
	}
	.footer {
		padding: 50px 0 38px;
		text-align: center;
	}
	.footer-column {display: none;}
	.footer-info {
		width: 100%;
		margin: 0;
	}
	.footer-bottom {display: block;}
	.footer-logo {margin: -10px 0 15px;}
	.footer-text {margin: 0 0 40px;}
	.footer-copy {margin: 0 0 7px;}
	.main {
		padding: 30px 0 30px;
	}
	.title, h1, h2 {
		margin: 0 0 20px;
		font-size: 30px;
		line-height: 36px;
	}
	.about-block {display: block;}
	.about-content {width: auto;}
	.about-img {
		width: auto;
		max-width: 400px;
		padding: 0 0 30px;
	}
	.about-info-item {
		width: 48.5%;
		margin: 0 0 20px 3%;
	}
	.about-info-item:nth-child(4n + 1) {margin: 0 0 20px 3%;}
	.about-info-item:nth-child(2n + 1) {margin: 0 0 20px;}
	.shop-logo {
		width: 250px;
		min-width: 250px;
	}
	.blog-item {
		width: 48.5%;
		margin: 0 0 40px 3%;
	}
	.blog-item:nth-child(3n + 1){margin: 0 0 40px 3%;}
	.blog-item:nth-child(2n + 1){margin: 0 0 40px;}
	.category-tabs {
		display: block;
		padding: 10px 0 15px;
	}
	.category-tabs li {
		padding: 0;
		margin: 0 0 15px;
		border-bottom: 0;
	}
	.category-tabs .active {
		border-bottom: 0;
	}
	.product-title {
		margin: 0 0 20px;
		font-size: 30px;
		line-height: 36px;
	}
	.main-about {
		position: relative;
		padding: 80px 0 30px;
	}
	.main-about:before {display: none;}
	.main-about-photo {display: none;}
	.main-about-block {display: block;}
	.main-about-content {
		width: auto;
		padding: 0;
		text-align: center;
	}
	.main-about-content .title {
		margin: 0 0 31px;
		line-height: 29px;
	}
	.order {display: block;}
	.order-title {
		width: auto;
		margin: 0 0 25px;
		font-size: 30px;
		line-height: 36px;
	}
	.banner {
		padding: 100px 0 36px;
	}
	.production .title {
		margin-top: 0px;
	}
	.production-item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		width: 100%;
		margin: 0 0 16px;
		height: 90px;
		
	}
	
	.production-item .linear-gradient {
		padding: 10px 25px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
	}
	
	.production-item:nth-child(4n + 1) {
		margin: 0 0 16px;
	}
	.production-title {
		margin: 0;
		font-size: 20px;
		line-height: 24px;
	}
	.production-text {display: none;}
	.production-icon {
		padding: 0 10px 0 0;
	}
	.production-icon img {
		margin: 0px;
	}
	
}
@media screen and (max-width: 960px) {
	
}
@media screen and (max-width: 860px) {
	
}
@media screen and (max-width: 767px) {
	.holder {
		padding: 0 15px;
	}
	body {
		font-size: 14px;
		line-height: 21px;
	}
	p {margin: 0 0 21px;}
	.title, h1, h2 {
		margin: 0 0 16px;
		font-size: 24px;
		line-height: 29px;
	}
	.about-info {display: none;}
	.article-column {width: 100%;}
	h3 {
		margin: 0 0 8px;
		font-size: 18px;
		line-height: 22px;
	}
	.shop-item {
		display: block;
		margin: 0 0 15px;
		padding: 0 10px 4px;
	}
	.shop-logo {
		width: auto;
		min-width: 1px;
		height: 90px;
		line-height: 90px;
	}
	.shop-logo img {
		max-height: 90%;
		vertical-align: middle;
	}
	.shop-info {
		display: block;
		padding: 0;
		border-left: 0;
	}
	.shop-info-part {
		margin: 0 0 16px;
		padding: 16px 0 0;
		border-top: 1px solid #ededed;
	}
	.shop-info-column {
		width: auto;
	}
	.contacts-block {display: block;}
	.contacts-content {
		width: auto;
	}
	.contacts-form {
		width: auto;
		padding: 24px 16px 20px;
	}
	.contacts-form-title {
		margin: 0 0 24px;
		font-size: 18px;
		line-height: 22px;
	}
	.contacts-button .submit {
		width: 100%;
	}
	.contacts-info {padding: 0 0 8px;}
	.contacts-text {
		padding: 0 0 5px;
	}
	.blog-item {
		width: 100%;
		margin: 0 0 24px;
	}
	.blog-item:nth-child(3n + 1){margin: 0 0 24px;}
	.blog-item:nth-child(2n + 1){margin: 0 0 24px;}
	.blog-item-title {
		margin: 0 0 10px;
		font-size: 16px;
	}
	.blog-side {display: none;}
	.blog-content {width: auto;}
	.title-min {
		margin: 0 0 20px;
		font-size: 24px;
		line-height: 29px;
	}
	.breadcrumbs {display: none;}
	.sorting {
		margin: 0 0 32px;
		padding: 16px;
	}
	.sorting-item {
		display: block;
		width: 100%;
	}
	.sorting-text {margin: 0 0 8px;}
	.sorting-select {margin: 0 0 10px;}
	.catalog-item {
		display: block;
		margin: 0 0 20px;
	}
	.catalog-img {
		width: 100%; /*210px*/
		min-width: 1px;
		margin: 0 0 16px;
	}
	.catalog-title {
		margin: 0 0 11px;
		font-size: 18px;
		line-height: 22px;
	}
	.catalog-text {display: none;}
	.catalog-content {
		padding: 0 0 20px;
	}
	.reasons {display: none;}
	.product-thumbs-holder {
		display: none;
	}
	.product {
		display: block;
		padding: 0 0 40px;
	}
	.product-img .product-title {display: block;}
	.product-content .product-title {display: none;}
	.product-title {
		margin: 0 0 16px;
		font-size: 18px;
		line-height: 22px;
	}
	.product-img {
		width: auto;
		padding: 0 0 20px;
	}
	.product-content {width: auto;}
	.product-stat {
		max-width: none;
		margin: 0 0 20px;
	}
	.product-box {
		padding: 0;
		border-radius: 0;
		border: 0;
	}
	.main-reasons {
		display: block;
	}
	.order {display: none;}
	.blog-section {display: none;}
	.reasons-block {
		max-width: 400px;
		margin: 0 auto;
	}
	.reasons-item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		width: 100%;
		margin: 0 0 10px;
	}
	.reasons-item:nth-child(2n + 1) {
		margin: 0 0 10px;
	}
	.reasons-text {display: none;}
	.reasons-title {
		margin: 0;
		font-size: 18px;
		line-height: 21px;
	}
	.reasons-icon {
		width: 80px;
		height: 80px;
		margin: 0 10px 0 0;
	}
	.reasons-icon img {
		width: 100%;
		margin: 0;
	}
	.banner {
		padding: 100px 0 0;
		background: none;
	}
	.banner-img {
		position: relative;
		z-index: 5;
		margin: 0 auto;
	}
	.banner-img img {
		max-width: 100%;
		margin: 0;
	}
	.banner-content {
		position: relative;
		margin: -80px -15px 0;
		padding: 80px 15px 50px;
		background: #f1f1f1;
	}
	.banner-content:before {
		position: absolute;
		left: 0;
		bottom: 100%;
		margin: 0 0 -2px;
		width: 100%;
		height: 600px;
		display: block;
		content: '';
		background: url(../images/wave-02.svg) 50% 100% no-repeat;
		background-size: 100% auto;
	}
	.banner-title {
		margin: 0 0 14px;
		font-size: 34px;
		line-height: 41px;
	}
	.banner-text {
		margin: 0 0 17px;
		font-size: 16px;
		line-height: 21px;
	}
	
}
@media screen and (max-width: 640px) {
	
}
@media screen and (max-width: 560px) {
	
}
@media screen and (max-width: 480px) {
	
}
@media screen and (max-width: 479px) {
	.product-info li {
		display: block;
	}
	.product-info-name {
		width: auto;
		min-width: 1px;
		padding: 0;
		width:100%;
	}
	.product-info-text {
		width:100%;
	}
}
@media screen and (max-width: 420px) {
	body {overflow-x: hidden;}
	
}
@media screen and (max-width: 400px) {
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------*/

#loading {
	background: rgba(0, 0, 0, 0.6); 
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:none;
	z-index:1000;
}

#loading .load-block {
	width:100%;
	height:100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;	
}

spinner {
	-webkit-animation: rotator 1.4s linear infinite;
		  animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}

@keyframes rotator {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}
.path {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	-webkit-transform-origin: center;
	  -ms-transform-origin: center;
		  transform-origin: center;
	-webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
		  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
	0% {
		stroke: #ff6502;
	}
	25% {
		stroke: #ff8030;
	}
	50% {
		stroke: #ffba8f;
	}
	75% {
		stroke: #ff8030;
	}
	100% {
		stroke: #ff6502;
	}
}

@keyframes colors {
	0% {
		stroke: #ff6502;
	}
	25% {
		stroke: #ff8030;
	}
	50% {
		stroke: #ffba8f;
	}
	75% {
		stroke: #ff8030;
	}
	100% {
		stroke: #ff6502;
	}
}

@-webkit-keyframes dash {
	0% {
		stroke-dashoffset: 187;
	}
	50% {
		stroke-dashoffset: 46.75;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	100% {
		stroke-dashoffset: 187;
		-webkit-transform: rotate(450deg);
		transform: rotate(450deg);
	}
}

@keyframes dash {
	0% {
		stroke-dashoffset: 187;
	}
	50% {
		stroke-dashoffset: 46.75;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	100% {
		stroke-dashoffset: 187;
		-webkit-transform: rotate(450deg);
		transform: rotate(450deg);
	}
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.product-partners {
	position: relative;
	display: inline-block;
}
.product-partners-link {
	padding: 9px 44px 11px 24px;
}
.product-partners-link:after {
	position: absolute;
	top: 14px;
	right: 18px;
	display: block;
	content: '';
	width: 16px;
	height: 16px;
	background: url(../images/down-arrow.svg) 50% 50% no-repeat;
	background-size: cover;
	transition: all 0.3s linear;
}
.product-partners-link.active:after {
	transform: rotate(180deg);
}
.product-partners-hidden {
	position: absolute;
	top: 100%;
	left: 0;
	overflow: hidden;
	display: none;
	width: 100%;
	background: #ff6502;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
    border-radius: 0px;
}
.product-partners-hidden li {
	border-bottom: 1px solid #fff;
}
.product-partners-hidden li:last-child {border-bottom: 0;}
.product-partners-hidden a {
	display: block;
	padding: 7px 10px 7px 20px;
	color: #fff;
	text-decoration: none;
	background: #ff6502;
}
.product-partners-hidden a:hover {
	background: #e45900;
}

/******************* mobile-nav fixes 18.06.2019 **********************/
.fixed-nav .mob-nav-icon {
    top: 17px;
	left: auto;
	right: 15px;
	opacity: 0;
}
.fixed-nav.vis .mob-nav-icon {opacity: 1;}
.fixed-logo {
	margin: 0 -20px;
	padding-right: 40px;
}
.vis .header-block .mob-nav-icon {opacity: 0;}