@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&subset=cyrillic');
@import url("form.css");
@import url("content.css");
html, body {
	width: 100%;
	height: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 10px;
	margin: 0;
	padding: 0;
	color: #474747;
}
body {
	background-color: #ffffff;
	font-size: 1.5rem;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0 0 15px 0;
	padding: 0;
}



/*Alert*/
.alert {
	border-width: 2px;
	border-radius: 0px;
}
.alert .close {
	outline: none;
}
/*Alert End*/


/*Loading*/
.main-box {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	transition: all 0.5s ease;	
	opacity: 1;
}
.page-loading > .main-box {
	opacity: 0.7;
}
.page-loading {
	/*overflow: hidden;*/
}


body:after,
div.post-loading:after {
	content: "";
	position: fixed;
	width: 70px;
	height: 70px;
	background: url(../images/ico/loading.svg);
	background-size: 100%;
	left: calc(50% - 35px);
	top: calc(50% - 35px);
	opacity: 0;
	z-index: -100;
	visibility: hidden;
	transition: all 0.3s ease;	
}
body:before,
div.post-loading:before {
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.9);
	left: 0;
	top: 0;
	opacity: 0;
	z-index: -100;
	visibility: hidden;
	transition: all 0.3s ease;
}

.page-loading:after,
div.post-loading:after {
	z-index: 99999;
	opacity: 1;
	visibility: visible;
}
.page-loading:before,
div.post-loading:before {
	z-index: 99998;
	opacity: 1;
	visibility: visible;	
}



.posts {
	position: relative;
	opacity: 1;
}
.posts div {
	transition: all 0.3s ease;
}
.posts.posts-hide div {
	opacity: 0.4;
}
.posts.posts-hide div.post-loading {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	padding: 50px;
	display: block;
	z-index: 50;
	opacity: 1;
}

div.post-loading:after,
div.post-loading:before {
	position: absolute;
}

.page-loading:after,
div.post-loading:after,
.formBtn > span:after {
	 -webkit-animation-name: spin;
    -webkit-animation-duration: 3000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 3000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 3000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
/*Loading End*/



/*Pagination*/
.pagination-block {
	text-align: right;
	letter-spacing: normal;
	margin-bottom: 60px;
	font-size: 1.4rem;
}
.pagination>li:first-child>a, 
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.pagination>li:last-child>a, 
.pagination>li:last-child>span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.pagination>li>a, 
.pagination>li>span {
    color: #474747;
    border: 1px solid #dbdbdb;
    background: #dbdbdb;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 2px 3px;
}
.pagination>li>a:focus, 
.pagination>li>a:hover, 
.pagination>li>span:focus, 
.pagination>li>span:hover {
    z-index: 2;
    color: #fff;
    background-color: #0875e3;
    border-color: #0875e3;
    box-shadow: 0 0 10px #0875e3;
}
.pagination>.active>a, 
.pagination>.active>a:focus, 
.pagination>.active>a:hover, 
.pagination>.active>span, 
.pagination>.active>span:focus, 
.pagination>.active>span:hover {
    background-color: #0875e3;
    border-color: #0875e3;
    color: #fff;
}
/*Pagination End*/





/*Sub pages*/
.sub-menu {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}
.sub-menu li {
	width: 100%;
	display: block;
}
.sub-menu li a {
	display: inline-block;
	width: auto;
	font-size: 1.7rem;
	color: #373738;
	padding: 5px 0 5px 15px;
	position: relative;
	transition: all 0.3s ease;
	text-decoration: none;
}
.sub-menu li a:hover {
	color: #c31200;
	opacity: 1;
}
.sub-menu li a:before {
	font-family: "FontAwesome";
	content: "\f105";
	width: 10px;
	height: 10px;
	line-height: 10px;
	font-size: 1.7rem;
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	left: 0;
	color: #0875e3;
	transition: all 0.3s ease;
	font-weight: bold;
}

.all-pages {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}
.all-pages ul.sub-menu {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 0;
	margin: 0;
}
.all-pages ul.sub-menu > li {
	display: inline-block;
	font-size: 1.4rem;
	width: 100%;
}
.all-pages ul.sub-menu > li a {
	display: inline-block;
	width: auto;
	margin-bottom: 10px;
	color: #42474b;
    text-decoration: none;
    transition: all 0.3s ease;
}
.all-pages ul.sub-menu > li a:hover {
	color: #327eb5;
}
.all-pages ul.sub-menu ul {
	width: 100%;
	padding-left: 35px;
}
.all-pages ul.sub-menu ul li {
	border-left: 1px solid #ccc;
	padding-left: 15px;
}
/*Sub pages End*/



header {
	width: 100%;
	height: 50px;
	background: #fff;
	display: inline-block;
	vertical-align: top;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	position: relative;
	z-index: 12;
}

.header-logo {
	display: none;
	vertical-align: top;
	width: 150px;
	height: 40px;
	background: url(../images/logo.png) center no-repeat;
	background-size: contain;
}


header > div {
	letter-spacing: -0.3em;
}


/*Top info*/
.top-info-block {
	width: calc(100% - 250px);
	height: 50px;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
	list-style: none;
}
.top-info-block > li {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: 50px;
	padding: 13px 15px;
	border-left: 1px solid #e9e9e9;
}
.red-icon {
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	background-size: 15px;
	background-position: left center; 
}

.red-icon.phone {
	background-image: url(../images/ico/red-phone.svg);
	background-size: 15px;
}

.red-icon.email {
	background-image: url(../images/ico/red-email.svg);
	background-size: 15px;
}


.top-info-block > li > span {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 15px);
	letter-spacing: normal;
	padding-left: 10px;
	font-size: 1.5rem;
}


/*Social*/
.social {
	width: 100%;
	display: inline-block;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
}
.social li {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	margin: 0 20px 0 0;	
}
.social li:last-child {
	margin-right: 0px;
}
.social li a {
	display: inline-block;
	padding-right: 4px;
	text-align: center;
	transition: all 0.2s ease;
	color: #adadad;
	font-size: 1.6rem;	
}
.social li a:hover {
	color: #c31200;
	transform: scale(1.2);
}




/* lang */
.top-info-block > li.lang-block {
	padding: 7px 10px;
}

#yt-widget .yt-button_type_left,
#yt-widget .yt-wrapper_align_right {
	display: none!important;
}
#yt-widget.yt-state_right .yt-listbox {
	left: 0;
	right: auto;
}
#yt-widget .yt-listbox__col:last-child {
	display: none;
}
/*Lang*/




/*Search*/
.search-block {
    width: 250px;
    height: 50px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    opacity: 0.9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
}
.search-block input {
    height: 50px;
    width: 100%;
    border: none;
    padding: 5px 59px 5px 13px;
    display: block;
    outline: none;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
    color: rgba(0,0,0,0.6);
    font-size: 1.4rem;
}
input[type="search"]:-webkit-input-placeholder {
    color: rgba(0,0,0,0.4);
} 
input[type="search"]:-moz-placeholder {
	color: rgba(0,0,0,0.4);
}
.search-block > form > button {
	width: 45px;
	height: 50px;
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	display: inline-block;
	border: none;
	color: #212121;
	background: url(../images/ico/search.svg) center no-repeat;
	z-index: 2;
	outline: none;
}

.search-block input:hover,
.search-block input:focus,
.search-block input:active {
	background: rgba(0,0,0,0.04);
}


/*Autocomplete*/
.autocomplete-suggestions {
    text-align: left; 
    cursor: default; 
    width: 100%;
    top: 0;
    margin-top: 2px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    /* core styles should not be changed */
    position: absolute; 
    display: none; 
    z-index: 9999; 
    overflow: hidden; 
    overflow-y: auto; 
    box-sizing: border-box;
}
.autocomplete-not-find {
	padding: 13px;
	font-size: 1.3rem;
	background: #fcf8e3;
	color: #8a6d3b;
	line-height: 16px;
}
.autocomplete-suggestion { 
	position: relative; 
	padding: 8px 13px;  
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	font-size: 1.3rem; 
	color: #333;
	transition: all 0.3s ease;
}
.autocomplete-suggestion b { 
	font-weight: normal; 
	color: #fff; 
	background: #0277ee;
}
.autocomplete-suggestion.selected { 
	background: #0277ee;
	color: #fff;
	cursor: pointer; 
}


.inSearch {
	width: 100%;
	height: 40px;
	display: inline-block;
	vertical-align: top;
	margin: 5px 0 50px;
	position: relative;
}
.inSearch button {
	position: absolute;
	width: 45px;
	height: 45px;
	background-color: transparent;
	right: 0;
	top: 0;
	outline: none;
	border: none;
	color: #fff;
}

/*Result*/
.searchResult {
	width: 100%;
	height: auto;
	display: inline-block;
	margin: 15px 0 25px;	
}
.searchlGrid {
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	padding-bottom: 10px;
}
.searchlGrid h4 {
	width: 100%;
	display: inline-block;
	vertical-align: top;	
	padding: 0;
	margin: 0 0 8px;
	font-size: 1.6rem;
	font-weight: bold;
}
.searchlGrid a {
	color: #000;
	transition: all 0.3s ease;
}
.searchlGrid a:hover {
	text-decoration: none;
    color: #0875e3;
    opacity: 0.7;
    text-shadow: 0 0 3px #0875e3;
}
.searchlGrid > div {
	width: 100%;
	display: inline-block;
	vertical-align: top;	
	margin-bottom: 10px;
	font-size: 1.4rem;	
	color: #888;
}
.searchlGrid > strong {
	font-weight: normal;
	font-size: 1.2rem;
}
.searchlGrid > strong a {
	color: #0875e3;
	word-break: break-all;
	text-align: left;	
}
/*Search End*/





/*Banner*/
.banner {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    height: 620px;
    z-index: 1;
    background: #474747;
}

.banner .swiper-slide {
    font-size: 18px;
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
	background-repeat: no-repeat;
}
.banner .swiper-slide > div {
	text-align: center;
	position: relative;
	height: 100%;
	letter-spacing: -0.3em;
	z-index: 15;
}


.banner .swiper-slide:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1286fe+0,7db9e8+100&1+0,0+100 */
	background: -moz-linear-gradient(45deg, rgba(18,134,254,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, rgba(18,134,254,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, rgba(18,134,254,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1286fe', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.banner .swiper-slide > div:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 0px;
	height: 100%;
}
.banner .swiper-slide .banner-text {
	width: 100%;
	max-width: 700px;
	color: #fff;
	font-weight: 900;
	padding: 0;
	margin: 0;
	letter-spacing: -1px;
	font-size: 2.5rem;
	line-height: 35px;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 2px 2px 16px rgba(0,0,0,0.7);
	transition: all 0.6s ease;
}
.banner .swiper-slide .banner-text p,
.banner .swiper-slide .banner-text h1,
.banner .swiper-slide .banner-text h2,
.banner .swiper-slide .banner-text h3,
.banner .swiper-slide .banner-text h4,
.banner .swiper-slide .banner-text h5,
.banner .swiper-slide .banner-text h6 {
	padding: 0;
	margin: 0;
}
.banner .swiper-slide .banner-text h1,
.banner .swiper-slide .banner-text h2,
.banner .swiper-slide .banner-text h3,
.banner .swiper-slide .banner-text h4,
.banner .swiper-slide .banner-text h5,
.banner .swiper-slide .banner-text h6 {
	font-weight: bold;
	margin-bottom: 10px;
}
.banner .swiper-slide .banner-text .more {
	display: inline-block;
	width: 100%;
	margin-top: 25px;
	font-size: 1.5rem;
	transition: all 0.9s ease;
	letter-spacing: normal;
}
.banner .swiper-slide .banner-text .more a.blue-btn {
	line-height: normal;
}

.banner .swiper-slide-next .banner-text,
.banner .swiper-slide-prev .banner-text {
	transform: translateY(200px);
	opacity: 0;
}
.banner .swiper-slide-active .banner-text.
.banner .swiper-slide-active .banner-text .more {
	opacity: 1;
	transform: translateY(0);
}
.banner .swiper-slide-next .banner-text .more,
.banner .swiper-slide-prev .banner-text .more {
	transform: translateY(100px);
	opacity: 0;
}


/*Arrow*/
.banner-button-prev,
.banner-button-next {
	position: absolute;
	width: 44px;
	height: 44px;
	top: calc(50% - 5px);
	z-index: 10;
	cursor: pointer;
	background: url(../images/ico/arrow.svg) center no-repeat;
	background-size: 17px;
	transition: all 0.3s ease;
	outline: none;
}
.banner-button-next {
	right: 35px;
	left: auto;
}
.banner-button-prev {
	left: 35px;
	right: auto;
	transform: rotate(180deg);
}
.banner-button-prev:hover,
.banner-button-next:hover {
	opacity: 0.5;
} 


.banner.inside {
	height: 300px;
}
.banner.inside .swiper-slide:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	background: rgba(18,134,254,1);
}
.banner.inside .banner-button-prev,
.banner.inside .banner-button-next {
	display: none;
}
/*Banner End*/



/*Breadcrumb*/
.page-title {
	position: absolute;
	width: 100%;
	z-index: 3;
	left: 0;
	bottom: 35px;
}
.page-title .container > span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	padding: 5px 0 5px 20px;
	border-left: 6px solid rgba(255,255,255,0.4);
}
.page-title .container h1 {
	color: #fff;
	padding: 0;
	margin: 0;
	font-size: 2.8rem;
	text-transform: uppercase;
}

.breadcrumb {
	background: none;
	padding: 0;
	margin: 0 0 20px;
	color: #fff;
	font-size: 1.4rem;
}
.breadcrumb > .active {
    color: rgba(255,255,255,0.6);
}
.breadcrumb a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}
.breadcrumb a:hover {
	opacity: 0.7;
}
/*Breadcrumb*/



/*Category*/
.category-block {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	position: absolute;
	left: 0;
	top: 570px;
	z-index: 8;
}
.category-list {
	width: 100%;
	max-width: 980px;
	display: inline-block;
	vertical-align: top;
	letter-spacing: -0.3em;
}
.category-list > a {
	display: inline-block;
	vertical-align: top;
	width: calc(33.333% - 30px);
	margin: 0 15px 30px;
	letter-spacing: normal;
	text-align: center;
	text-decoration: none;
}
.category-list > a span {
	width: 200px;
	height: 200px;
	position: relative;
	z-index: 2;
	margin-bottom: 15px;
	display: inline-block;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 170px;
	background-color: rgba(255,255,255,0.7);
	border-radius: 100%;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}
.category-list > a h4 {
	display: inline-block;
	vertical-align: top;
	color: #2d2d2d;
	width: 100%;
	margin: 0;
	padding: 0 0 10px;
	font-size: 1.8rem;
	text-transform: uppercase;
	transition: all 0.3s ease;
	position: relative;
	font-weight: bold;
}
.category-list > a h4:before {
	position: absolute;
	content: "";
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	display: inline-block;
	background: #0277ee;
	transition: all 0.3s ease;
	opacity: 0;
}
.category-list > a:hover span {
	background-color: #fff;
	box-shadow: 0 16px 40px rgba(2,119,238,0.1);
}
.category-list > a:hover h4 {
	color: #c61c0b;
}
.category-list > a:hover h4:before {
	opacity: 1;
	width: 40px;
	left: calc(50% - 20px);
}
/*Category*/


/*Other*/
.main-title {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	margin: 0 0 40px;
	padding: 0 0 25px;
	font-size: 3.2rem;
	color: #242424;
	text-transform: uppercase;
	text-align: center;
}
.main-title.text-left {
	text-align: left;
}
.main-title:before,
.main-title:after {
	content: "";
	display: inline-block;
	vertical-align: top;
	position: absolute;
	height: 2px;
}
.main-title:before {
	width: 220px;
	bottom: 8px;
	left: calc(50% - 110px);
	background: #0277ee;
}
.main-title:after {
	width: 52px;
	bottom: 0px;
	left: calc(50% - 26px);
	background: #c31200;
}

.main-title.white {
	color: #fff;
}
.main-title.white:before,
.main-title.white:after {
	background: rgba(255,255,255,0.7);
}


.main-title.text-left:after,
.main-title.text-left:before {
	left: 0;
}
.blue-btn {
	display: inline-block;
	vertical-align: top;
	padding: 18px 20px;
	min-width: 150px;
	color: rgba(255,255,255,0.7);
	background: #0277ee;
	font-size: 1.3rem;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	outline: none;
	text-align: center;
	transition: all 0.3s ease;
}
.blue-btn:hover {
	background: #3391f0;
	text-decoration: none;
	box-shadow: 0 0 15px #0277ee;
	color: #fff;
}
/*Other End*/



/*Partners*/
.partners {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 100px 0;
	background: #f1f6fa;
	margin-top: 250px;
}
.partners >  div {
	max-width: 900px;
}

.partners-slide {
	position: relative;
	overflow: hidden;	
	margin-top: 30px;
}
.partners-slide .swiper-slide {
	width: 50%;
	display: inline-block;
	height: auto;
	border: 2px solid rgba(0,0,0,0.05);
	border-left-width: 0;
	border-right-width: 0;
}
.partners-slide .swiper-slide > div {
	display: block;
	width: 100%;
	height: 160px;
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.3s ease;	
	-webkit-filter: grayscale(0); /* Webkit браузеры */  
    filter: none; /* для IE6-9 */  
    filter: grayscale(0); /* W3C */  	
    opacity: 1;
}
.partners-slide .swiper-slide >  h4 {
	text-align: center;
	font-size: 1.2rem;
}
.partners-slide .swiper-slide:hover div {
	transform: scale(1.1);
	opacity: 0.6;
	-webkit-filter: grayscale(1); /* Webkit браузеры */  
    filter: gray; /* для IE6-9 */  
    filter: grayscale(1); /* W3C */  
}
.partners-slide .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
}

/*Arrow*/
.partners-button-prev,
.partners-button-next {
	position: absolute;
	width: 28px;
	height: 34px;
	top: 65px;
	z-index: 10;
	cursor: pointer;
	background: url(../images/ico/arrow.svg) center no-repeat #0277ee;
	background-size: 12px;
	transition: all 0.3s ease;
}
.partners-button-next {
	right: 0;
	left: auto;
}
.partners-button-prev {
	left: 0;
	right: auto;
	transform: rotate(180deg);
}
.partners-button-prev:hover,
.partners-button-next:hover {
	opacity: 0.5;
} 



/*About*/
.about {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 100px 0;
	background: #f1f6fa;
}
.about:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	background: url(../images/about-bg.jpg) right center no-repeat;
	opacity: 0.12;
}
.about:before {
	content: "";
	width: 100%;
	height: 25px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.1;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
	background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */	
}
.about > div {
	position: relative;
	z-index: 3;
}
.more-about {
	text-align: center;
	display: inline-block;
	vertical-align: top;
	width: 100%;
}
.more-about.text-left {
	text-align: left;
}
/*About End*/


/*Product Category*/
.productCat-block {
	width: 100%;
	padding: 100px 0;
	background: #0277ee;
	position: relative;
	text-align: center;
}
.productCat-block:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
    background: url(../images/product-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	opacity: 0.1;
}

.productCat-list {
	margin: 20px 0 0;
	letter-spacing: -0.3em;
}
.productCat-list > a {
	display: inline-block;
	vertical-align: top;
	width: calc(33.333% - 40px);
	margin: 0 20px 0;
	letter-spacing: normal;
	text-align: center;
	text-decoration: none;
}
.productCat-list > a span {
	width: 190px;
	height: 190px;
	position: relative;
	z-index: 2;
	margin-bottom: 15px;
	display: inline-block;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 160px;
	background-color: rgba(4,88,170,0.33);
	border-radius: 100%;
	transition: all 0.3s ease;
}
.productCat-list > a h4 {
	display: inline-block;
	vertical-align: top;
	color: rgba(255,255,255,0.5);
	width: 100%;
	margin: 0;
	padding: 0 0 10px;
	font-size: 2.1rem;
	line-height: 30px;
	font-weight: bold;
	transition: all 0.3s ease;
	position: relative;
}
.productCat-list > a h4:before {
	position: absolute;
	content: "";
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	display: inline-block;
	background: #0277ee;
	transition: all 0.3s ease;
	opacity: 0;
}
.productCat-list > a:hover span {
	background-color: rgba(4,88,170,0.1);
	box-shadow: 0 16px 40px rgba(255,255,255,0.1);
	opacity: 0.9;
	background-size: 140px;
}
.productCat-list > a:hover h4 {
	color: #fff;
}
.productCat-list > a:hover h4:before {
	opacity: 1;
	width: 40px;
	left: calc(50% - 20px);
}
/*Product Category End*/



/*Product*/
.product-list {
	margin: 0 -15px;
	letter-spacing: -0.3em;
}
.product-list a {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	width: calc(50% - 30px);
	height: 300px;
	margin: 0 15px 30px;
	text-align: center;
	text-decoration: none !important;
	transition: all 0.4s ease;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: relative;
	padding-bottom: 70px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;	
}
.product-list a:hover {
	transform: translateY(-5px);
	opacity: 0.8;
}
.product-list a > strong {
	display: block;
	width: 100%;
	color: #333333;
	font-size: 1.4rem;
	text-transform: none;
	transition: all 0.3s ease;
	padding: 15px 15px;
	position: absolute;
	bottom: 0;
	text-transform: uppercase;
	background: rgba(255,255,255,0.8);
	/*box-shadow: 0 -5px 5px rgba(0,0,0,0.05);*/
}
.product-list a:hover > strong {
	opacity: 0.6;
}

.product-img {
	text-align: center;
}
.product-img > a {
	display: inline-block;
	vertical-align: top;
}
.product-img > a.contentImg {
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
} 
.product-img > a > img {
	width: 100%;
	max-width: 400px;
}


.product-img > div {
	width: 100%;
	max-width: 400px;
	margin-bottom: 30px;
	display: inline-block;
	vertical-align: top;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
} 
.mt-40 {
	margin-top: 40px;
}

.mb-30 {
	margin-bottom: 30px;
}

.product-img > iframe {
	width: 100%;
	max-width: 400px;
}
/*Product End*/




/*Right menu*/
.right-menu {
	width: 100%;
	display: block;
	padding: 20px;
	background: #f1f6fa;
	margin: 0 0 20px;
	list-style: none;
}
.right-menu li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-bottom: 1px solid #ececec;
}
.right-menu li:last-child {
	border-bottom: none;
}
.right-menu li a {
	display: block;
	padding: 5px 0 5px 15px;
	position: relative;
	color: #9d9fa0;
	font-weight: bold;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	text-decoration: none;
}
.right-menu li a:hover {
	transform: translateX(3px);
	text-decoration: none;
	color: #0277ee;
}
.right-menu li.active a,
.right-menu li.active a:before,
.right-menu li a:hover:before {
	color: #0277ee;
}
.right-menu li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    width: 10px;
    height: 10px;
    left: 0;
    top: calc(50% - 5px);
    font-size: 1.5rem;
    line-height: 10px;
    display: block;
    position: absolute;
    transition: all 0.3s ease;
    color: #0277ee;
}
/*Right menu End*/




/*News*/
.news-block {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 100px 0;
}
.news-list {
	letter-spacing: -0.3em;
	margin: 0 -15px;
}
.news-list > div {
	display: inline-block;
	vertical-align: top;
	width: calc(33.333% - 30px);
	height: 350px;
	background: #f1f6fa;
	letter-spacing: normal;
	margin: 0 15px 30px;
	padding: 25px;
}

.right-block .news-list {
	margin-bottom: 30px;
}
.right-block .news-list > div {
	width: calc(100% - 30px);
}

.news-info {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	height: 235px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}
.news-info:before {
    content: "";
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 0;
    position: absolute;
    display: block;
    background: -moz-linear-gradient(top, rgba(241,246,250,0) 0%, rgba(241,246,250,1) 100%);
    background: -webkit-linear-gradient(top, rgba(241,246,250,0) 0%,rgba(241,246,250,1) 100%);
    background: linear-gradient(to bottom, rgba(241,246,250,0) 0%,rgba(241,246,250,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}

.news-info > span {
	background: #c31200;
	color: #fff;
	font-size: 1.3rem;
	display: inline-block;
	vertical-align: top;
	padding: 6px 12px;
}
.news-info > h3 {
	width: 100%;
	margin: 18px 0;
	padding: 0;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 22px;
}
.news-info > h3 a {
	color: #2f2f2f;
	text-decoration: none;
	transition: all 0.3s ease;
}
.news-info > div {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	font-size: 1.6rem;
	color: #898989;
	line-height: 20px;
}

.news-more {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	border-top: 1px solid #dadada;
	padding-top: 20px;
}
.news-more a {
	display: inline-block;
	vertical-align: top;
	color: #0b0b0b;
	font-size: 1.6rem;
	text-decoration: none;
	font-weight: 600;
	padding-right: 20px;
	background: url(../images/ico/news-arrow.svg) center right no-repeat;
	transition: all 0.3s ease;
}
.news-more a:hover,
.news-info > h3 a:hover {
	color: #0277ee;
}

.date-publication {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	text-align: right;
	font-size: 1.4rem;
	font-style: italic;
	color: #9ba0a3;
}
/*News End*/



/*Contacts*/
.contact-block {
	overflow: hidden;
}
.contact-block,
.contact-block > div {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.contact-block:before,
.contact-block:after,
.contact-block > div:before,
.contact-block > div:after {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.contact-block:before {
	width: 35%;
	background: #333d42;
	left: 0;
	z-index: 1;
}
.contact-block:after {
	width: 65%;
	background: #0277ee;
	right: 0;
	z-index: 1;
}

.contact-block > div:before {
	width: 65%;
	right: 0;	
	z-index: 2;
	background: url(../images/form-bg.jpg) center no-repeat;
	background-size: cover;
	opacity: 0.12;
}
.contact-block > div:after {
	width: 65%;
	right: 0;		
	z-index: 3;
	opacity: 0.7;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3f98f2+0,000000+100&1+1,0+100 */
	background: -moz-linear-gradient(45deg, rgba(63,152,242,1) 0%, rgba(62,150,240,1) 1%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, rgba(63,152,242,1) 0%,rgba(62,150,240,1) 1%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, rgba(63,152,242,1) 0%,rgba(62,150,240,1) 1%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f98f2', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */	
}
.contact-block .container {
	position: relative;
	z-index: 5;
	letter-spacing: -0.3em;
}
.contact-block .container:after {
	content: "";
	top: 0;
	left: 20px;
	width: 33.333%;
	height: 100%;
	background: #333d42;
	position: absolute;
	display: block;
	z-index: 1;
}
.contact-block .container > div {	
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
	position: relative;
	z-index: 6;
}
.contacts {
	width: calc(33.333% + 15px);
	min-height: 300px;
	background: #333d42;
	color: #fff;
	padding: 70px 30px 70px 0;
}
.contacts > h2 {
	font-size: 2.4rem;
	font-weight: 500;
	margin: 0 0 50px;
	padding: 0;
	text-transform: uppercase;
}

.contacts ul {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.contacts ul li {
	letter-spacing: -0.3em;
	width: 100%;
	margin-bottom: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contacts ul li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.contacts ul li i {
	width: 35px;
	height: 35px;
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
}
.phone {
	background-image: url(../images/ico/phone.svg);
	background-size: 30px;
}
.email {
	background-image: url(../images/ico/email.svg);
	background-size: 30px;
}
.address {
	background-image: url(../images/ico/address.svg);
	background-size: 25px;
}
.telegram {
	background-image: url(../images/ico/telegram.svg);
	background-size: 30px;
}

.contacts ul li span {
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
    padding-left: 15px;
    font-size: 1.7rem;
    line-height: 22px;
    width: calc(100% - 35px);
}


.feedback-form {
	width: calc(66.666% - 15px);
	padding: 60px 0 60px 60px;
}


.object-location {
	width: 100%;
	height: 430px;
	position: relative;
}
.object-location i {
	position: absolute;
	font-size: 4.5rem;
	color: #b34239;
	width: 50px;
	height: 50px;
	left: calc(50% - 25px);
	top: calc(50% - 25px);
}

.contacts-info {
	display: none;
}
.map-logo {
	width: 150px;
	height: 70px;
	background: url(../images/logo.png) center right no-repeat;
	background-size: contain;
	margin: 5px 0 5px 22px;
}


.inside-contacts {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 40px;
}

/*Contacts*/



/*Footer*/
footer {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	background: #333d42;
	padding: 100px 0;
	letter-spacing: -0.3em;
}
footer:before {
	content: "";
	width: 100%;
	height: 25px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.9;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
	background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */	
}

footer > div > div {
	display: inline-block;
	vertical-align: top;
	width: 70%;
	min-height: 100px;
}
footer > div > div:last-child {
	width: 30%;
}

.footer-menu {
	padding: 0;
	letter-spacing: -0.3em;
	display: inline-block;
	vertical-align: top;
	list-style: none;
	width: 100%;
}
.footer-menu > li {
	display: inline-block;
	vertical-align: top;
	width: 33.333%;
	letter-spacing: normal;
}
.footer-menu > li > a {
	font-size: 2.4rem;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 25px;
}

.footer-menu > li > ul {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-menu > li > ul > li > a {
	display: inline-block;
	color: #c0c8ca;
	padding: 0 0 0 20px;
	font-size: 1.6rem;
	margin-bottom: 8px;
	transition: all 0.3s ease;
	text-decoration: none;
	background: url(../images/ico/menu-arrow.svg) center left no-repeat;
} 
.footer-menu > li > ul > li:last-child > a {
	margin-bottom: 0;
}
.footer-menu > li > ul > li > a:hover {
	opacity: 0.7;
}

.copyright {
	text-align: center;
	letter-spacing: normal;
}

.copyright > div {
	width: 100%;
	color: #c0c8ca;
	display: inline-block;
	vertical-align: top;
	padding: 20px 0;
}
/*Footer End*/



/*Top btn*/
.top {
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	z-index: 60;
	background: url(../images/ico/arrow.svg) 17px center no-repeat #0277ee;
	transform: translateY(70px) rotate(-90deg);
	cursor: pointer;
	transition: all 0.5s ease;
}
.top.show {
	transform: translateY(0px) rotate(-90deg);
}
.top:hover {
	opacity: 0.7;
}
/*Top btn End*/



/*Content block*/
.full-block {
	width: 100%;
	padding: 50px 0 20px; 
}
.content-block {
	margin: 0 -20px;
	letter-spacing: -0.3em;
}
.content-block > div {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px 0;
	letter-spacing: normal;
}
.left-block {
	width: calc(100% - 430px);
}
.right-block {
	width: 350px;
}
.right-block > h1 {
	font-size: 2.2rem;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 15px;
	color: #c31200;
	border-bottom: 1px solid #ccc;
}
/*Content block End*/



/*Articles*/
.articles-list {
	letter-spacing: -0.3em;
	margin: 0 -15px;
}
.articles-list > a {
	display: inline-block;
	vertical-align: top;
	width: calc(33.333% - 30px);
	height: 250px;
	margin: 0 15px 30px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	letter-spacing: normal;
	overflow: hidden;
	transition: all 0.3s ease;
}
.articles-list > a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: #000;
	opacity: 0.3;
	transition: all 0.3s ease;
}
.articles-list > a:hover {
	opacity: 0.7;
	box-shadow: 0 2px 25px rgba(0,0,0,0.2);
}
.articles-list > a:hover:before {
	opacity: 0;
}
.articles-list > a h3 {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	min-height: 120px;
	padding: 25px;
	margin: 0;
	color: #fff;
	text-decoration: none;
	font-size: 1.7rem;
	line-height: 25px;
	position: relative;
	z-index: 3;
}
.articles-list > a h3:before {
	content: "";
	position: absolute;
	top: 0;
	left: -5px;
	width: 110%;
	height: 100%;
	z-index: -1;
	opacity: 0.7;
	display: inline-block;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e4c72+36,000000+100&1+36,0+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,1) 36%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,1) 36%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,1) 36%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e4c72', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

.articles-list > a > span {
	position: absolute;
	bottom: 25px;
	left: 25px;
	background: #c31200;
	color: #fff;
	font-size: 1.3rem;
	display: inline-block;
	vertical-align: top;
	padding: 6px 12px;
}

.right-block .articles-list {
	margin-bottom: 30px;
}
.right-block .articles-list > a {
	width: calc(100% - 30px);
}
/*Articles End*/


/* ==========================================================================
   01. PC
   ========================================================================== */
@media screen and (min-width: 991px) {

	/*Menu*/
	.mobile-menu-btn {
		display: none;
	}

	.menu-block {
		width: 100%;
		height: 85px;
		position: absolute;
		left: 0;
		top: 50px;
		padding: 0;
		z-index: 11;
		/*transition: all 0.4s ease;*/
		background: rgba(255,255,255,0.85);
		box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	}
	.menu-block.fixed {
		position: fixed;
		box-shadow: 0 10px 20px rgba(0,0,0,0.1);
		top: 0;
	}
	.menu-block > div {
		position: relative;
		letter-spacing: -0.3em;
		text-align: left;
	}

	.logo {
		display: inline-block;
		vertical-align: middle;
		width: 170px;
		height: 85px;
		background: url(../images/logo.png) center no-repeat;
		background-size: contain;
		transition: all 0.4s ease;
	}
	.logo:hover {
		opacity: 0.6;
	}

	.menu-panel {
		display: inline-block;
		vertical-align: middle;
		width: calc(100% - 170px);
	}

	.top-menu {
		width: 100%;
		height: 85px;
		display: inline-block;
		letter-spacing: -0.3em;
		text-align: right;
		padding:  0;
		margin: 0;
	}	
	.top-menu > li {
		display: inline-block;
		vertical-align: middle;
		position: relative;
		letter-spacing: 0.1px;
		padding: 0 15px 0 15px;
		transition: all 0.3s ease;
	}
	.top-menu > li:last-child {
		padding-right: 0;
	}
	.top-menu > li > a {
		display: inline-block;
		vertical-align: top;
		width: 100%;
		font-size: 1.6rem;
		font-weight: 500;
		color: #393939;
		height: 85px;
		line-height: 85px;
		cursor: pointer;
		padding: 0;
		text-decoration: none;
		transition: all 0.3s ease;
		position: relative;
	}
	.top-menu > li > a:before {
		content: "";
		display: inline-block;
		position: absolute;
		left: 50%;
		bottom: 25px;
		width: 0;
		height: 2px;
		background: #0277ee;
		transition: all 0.4s ease;
		opacity: 0;
	}
	.top-menu > li:hover > a,
	.top-menu > li.active > a {
		color: #0277ee;
	}
	.top-menu > li:hover > a:before,
	.top-menu > li.active > a:before {
		opacity: 1;
		left: 0;
		width: 100%;
	}
	.top-menu > li.has-dropdown:before {
		font-family: "FontAwesome";
		content: "\f105";
		position: absolute;
		top: calc(50% - 8px);
		right: 5px;
		font-size: 1.0rem;
		color: #000;
		transition: all 0.2s ease;
	}
	.menu-block.fixed .top-menu > li.has-dropdown:before {
		color: #224968;
	}

	.top-menu > li.has-dropdown:hover:before {
		top: calc(50% - 7px);
		transform: rotate(90deg);
	}
	.subsection > li.has-dropdown > a {
		position: relative;
	}
	.subsection > li.has-dropdown > a:before {
		font-family: "FontAwesome";
		content: "\f105";
		position: absolute;
		top: calc(50% - 8px);
		right: 10px;
		font-size: 1.2rem;
		color: #000;
		transition: all 0.2s ease;
	}
	.top-menu li > .subsection {
		width: 230px;
	    position: absolute;
	    top: 80px;
	    left: calc(50% - 115px);
	    z-index: -1;
	    padding: 0;
	    visibility: hidden;
	    opacity: 0;
	    transform: translateY(15px) rotate3d(0, 1, 0, 90deg);
	    background: #fff;
	    list-style: none;
	    text-align: left;
	    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	    transition: all 0.3s ease;
	}
	.top-menu li:hover > .subsection {
	    transform: translateY(0)  rotate3d(0, 0, 0, 0deg);
	    visibility: visible;
	    opacity: 1;
	    z-index: 5;
	}	
	.top-menu li .subsection:before {
		content: '';
		width: 0;
		height: 0;
		position: absolute;
		top: -8px;
		left: calc(50% - 3px);
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 8px solid #fff;
	}
	.top-menu li > .subsection > li {
		position: relative;
	}
	.top-menu li > .subsection > li .subsection {
		left: 90%;
		top: 10px;
	}	
	.top-menu li > .subsection > li .subsection:before {
		content: '';
		width: 0;
		height: 0;
		position: absolute;
		top: 10px;
		left: -14px;
		margin-bottom: -4px;
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
		border-right: 8px solid #fff;
	}	
	.top-menu li > .subsection li {
		width: 100%;
		transition: all 0.2s ease;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.top-menu li > .subsection li a {
		width: 100%;
		display: inline-block;
		padding: 10px 15px;
		font-size: 1.5rem;
		color: #4c4c4c;
		transition: all 0.2s ease;
	}
	.top-menu li > .subsection li > ul li a {
		padding: 10px 15px;
	}
	.top-menu li > .subsection li:nth-last-child(1) {
		border-bottom: none;
	}
	.top-menu li > .subsection > li:hover {
		background: rgba(255,255,255,0.1);
	}
	.top-menu li > .subsection > li:hover > a {
		text-decoration: none;
		color: #0277ee;
		background: #f2f3f3;
	}
	/*Menu panel End*/	
}



/* ==========================================================================
   02. PC: Notebook
   ========================================================================== */
@media screen and (max-width: 1440px) {


}


/* ==========================================================================
   03. Tablet: Landscape
   ========================================================================== */
@media screen and (max-width: 1280px) {

}



/* ==========================================================================
   05. Tablet: Portrait
   ========================================================================== */
@media screen and (max-width: 991px) {


	header {
		height: auto;
		text-align: center;
		padding: 25px 0 15px;
	}
	.header-logo {
		display: inline-block;
	}


	/*Top info*/
	.top-info-block {
		width: 100%;
		margin-top: 15px;
		border-bottom: 1px solid #e9e9e9;
	}
	.top-info-block > li {
		border: none;
	}


	/*Search*/
	.search-block {
	    width: 80%;
	    margin-top: 10px;
	    border: none;
	}
	.search-block input {
	    background: rgba(0,0,0,0.04);
	}



	/*Menu*/
	body.in {
		overflow: hidden;
	}	

	.menu-block.fixed {
	    position: relative;
	}	
	.mobile-btn-block {
		width: 100%;
		height: 0px;
		display: inline-block;
		vertical-align: top;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 666;
		text-align: right;
	}
	.mobile-btn-block > div {
		height: 0;
		position: relative;
	}
	.mobile-menu-btn {
		display: inline-block;
		vertical-align: top;
		width: 46px;
		height: 46px;
		border: none;
		outline: none;
		padding: 0;
		margin: 0;
		color: #fff;
		background: #c31200;
		transition: all 0.2s ease;
		position: absolute;
		top: 15px;
		right: 15px;
		cursor: pointer;
	}	
	.mobile-menu-btn.in {
		box-shadow: 1px 2px 16px rgba(0,0,0,0.1);
	}
	.mobile-menu-btn:before {
		content: "";
		position: absolute;
		top: 2px;
		left: 0;
		width: 46px;
		height: 44px;
		background: url(../images/ico/menu.svg) center no-repeat;
		transition: all 0.2s ease;
	}
	.mobile-menu-btn.in:before {
		background: url(../images/ico/menu-close.svg) center no-repeat;
		transform: rotate(-90deg);
	}	

	.menu-panel {
		height: 100%;
		padding: 10px 0 70px;
		position: fixed;
		z-index: 556;
		left: 0;
		top: 0;
		width: 100%;
		background: #333d42;
		opacity: 0;
		overflow-x: scroll;
		visibility: hidden;
		transform: translateX(-100%);
		transition: all 0.1s ease;
	}
	.menu-panel.in {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);		
	}

	.top-menu {
		width: 100%;
		padding: 0;
		margin: 70px 0 0;
		list-style: none;
		display: inline-block;
		vertical-align: top;
	}
	.top-menu > li {
		width: 100%;
		display: inline-block;
		vertical-align: middle;
		position: relative;
		vertical-align: top;
		padding: 0;
	}
	.top-menu > li > a {
		display: inline-block;
		width: 100%;
		text-align: left;
		color: #fff;
		padding: 16px 50px 16px 20px;
		font-size: 1.4rem;
		line-height: normal;
		text-decoration: none;
		text-transform: uppercase;
		vertical-align: top;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.top-menu > li:last-child > a {
		border-bottom: 0px;
	}
	.top-menu > li.active > a {
		background: rgba(0,0,0,0.1);
	}
	.top-menu > li .open {
		opacity: 0.7;
	}
	.top-menu li.has-dropdown {
		position: relative;
	}
	.top-menu li.has-dropdown a {
		padding-right: 50px;
	}
	.top-menu li.has-dropdown > div {
		position: absolute;
		width: 50px;
		height: 50px;
		right: 10px;
		top: 0;
		z-index: 2;
		cursor: pointer;
	}
	.top-menu li.has-dropdown > div:before {
		font-family: "FontAwesome";
		content: "\f196";
		position: absolute;
		top: 10px;
		right: 15px;
		font-size: 2.5rem;
		color: #fff;
	}
	.top-menu li.has-dropdown > div.open:before {
		content: "\f147";
	}
	.top-menu li.has-dropdown .subsection {
		width: 100%;
	    padding: 0 0 0 40px;
	    margin: 0;
	    display: none;
	    list-style: none;
	    text-align: left;
	    vertical-align: top;
	    border-left: 1px solid rgba(255,255,255,0.1);
	    border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.top-menu .subsection li {
		width: 100%;
	}
	.top-menu .subsection li a {
		width: 100%;
		display: block;
		padding: 16px 0;
		font-size: 1.5rem;
		color: rgba(255,255,255,0.7);
		text-decoration: none;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.top-menu .subsection li:last-child a {
		border-bottom: none;
	}
	


	/*Banner*/
	.banner {
	    height: 320px;
	}
	.banner.inside {
		height: auto;
	}
	.banner.inside .swiper-slide {
	    display: none;
	}


	/*Breadcrumb*/
	.page-title {
		position: relative;
		bottom: 0;
		padding: 20px 0;
	}
	.page-title .container h1 {
		font-size: 2.2rem;
	}



	/*Category*/
	.category-block {
		width: 100%;
		top: 0;
		position: relative;
		margin-top: -80px;
	}
	.category-list > a span {
		width: 150px;
		height: 150px;
		background-size: 120px;
		box-shadow: 0 0 10px rgba(0,0,0,0.2);
	}
	.category-list > a h4 {
		font-size: 1.5rem;
	}


	/*Partners*/
	.partners {
		margin-top: 40px;
	}


	/*Other*/
	.main-title {
		font-size: 2.5rem;
	}


	/*About*/
	.about {
		padding: 60px 0;
	}


	/*Product*/
	.productCat-block {
		padding: 60px 0;
	}
	.productCat-list > a span {
		width: 120px;
		height: 120px;
		background-size: 100px;
	}
	.productCat-list > a h4 {
		font-size: 1.7rem;
		line-height: 22px;
	}




	/*News*/
	.news-block {
		padding: 60px 0 30px;
	}
	.news-list > div {
		width: calc(100% - 30px);
		height: auto;
		padding: 20px;
	}

	.news-info {
		height: auto;
		margin-bottom: 0;
	}
	.news-info:before {
	    display: none;
	}

	.news-info > h3 {
		width: 100%;
		margin: 10px 0;
	}



	/*Contacts*/
	.contact-block:before,
	.contact-block:after,
	.contact-block > div:before,
	.contact-block > div:after {
		width: 100%;
	}
	.contact-block:before {
		display: none;
	}


	.contact-block .container {
		position: relative;
		z-index: 5;
		letter-spacing: -0.3em;
	}
	.contact-block .container:after {
		display: none;
	}
	.contact-block .container > div {	
		display: inline-block;
		vertical-align: top;
		letter-spacing: normal;
		position: relative;
		z-index: 6;
	}
	.contacts {
		width: 100%;
		padding: 70px 0 70px 0;
		position: relative;
	}
	.contacts:before {
		content: "";
		width: 150%;
		height: 100%;
		background: red;
		position: absolute;
		left: -20%;
		top: 0;
		display: block;
		z-index: -1;
		background: #333d42;
	}


	.feedback-form {
		width: 100%;
		padding: 30px 0;
	}



	/*Footer*/
	footer {
		padding: 60px 0;
	}
	footer > div > div {
		margin-bottom: 40px;
	}
	footer > div > div,
	footer > div > div:last-child {
		width: 100%;
	}


	.copyright {
		text-align: left;
		letter-spacing: normal;
	}

	.copyright > div {
		width: 100%;
		color: #c0c8ca;
		display: inline-block;
		vertical-align: top;
		padding: 20px 0;
	}


	/*Articles*/
	.articles-list > a,
	.right-block .articles-list > a {
		width: calc(50% - 30px);
	}


	/*Content block*/
	.full-block {
		width: 100%;
		padding: 50px 0 20px; 
	}
	.content-block {
		margin: 0;
		letter-spacing: -0.3em;
	}

	.content-block > div.left-block,
	.content-block > div.right-block {
		width: 100%;
		margin: 0;
	}
	.content-block > div.left-block {
		margin: 0 0 40px;
	}

}


/* ==========================================================================
   06. Mobile: Landscape
   ========================================================================== */
@media screen and (max-width: 768px) {

	/*Top info*/
	.top-info-block {
		height: auto;
	}
	.top-info-block > li {
		border: none;
		width: 100%;
		padding: 0;
	}
	.top-info-block > li > span {
		width: 100%;
	}	


	/*Social*/
	.social {
		margin-top: 15px;
		text-align: center;
	}
	.social li {
		margin: 0 5px;	
	}

	/*Search*/
	.search-block {
	    width: 100%;
	}



	/*Category*/
	.category-block {
		margin-top: 50px;
	}
	.category-list > a {
		width: calc(100% - 30px);
	}


	/*Product*/
	.productCat-block {
		padding: 50px 0 20px;
	}
	.productCat-list > a span {
		margin-bottom: 10px;
	}

	.productCat-list > a {
		width: calc(100% - 40px);
		margin: 0 20px 30px;
	}
	.product-img {
		margin-bottom: 40px;
	}


	/*Contacts*/
	.object-location {
		height: 300px;
	}
	.map-logo {
		width: 90px;
		height: 40px;
	}
	.contacts > h2 {
	    font-size: 2.0rem;
	}
	.contacts ul li span {
	    font-size: 1.5rem;
	    line-height: 20px;
	}



	/*Footer*/
	.footer-menu > li {
		width: 100%;
		margin-bottom: 50px;
	}
	.footer-menu > li:last-child {
		margin-bottom: 0;
	}


	/*Articles*/
	.articles-list > a h3 {
		font-size: 1.6rem;
		padding: 15px;
	}

	.articles-list > a > span {
		bottom: 15px;
		left: 15px;
	}	

	/*News*/
	.news-list > div {
		padding: 15px;
	}


	/*Breadcrumb*/
	.page-title .container h1 {
		font-size: 1.8rem;
		line-height: 22px;
	}

}



/* ==========================================================================
   07. Mobile: Portrait
   ========================================================================== */
@media screen and (max-width: 550px) {

	/*Other*/
	.main-title {
		font-size: 2.1rem;
	}


	/*News*/
	.news-info > div {
		font-size: 1.5rem;
	}


	/*Articles*/
	.articles-list > a,
	.right-block .articles-list > a {
		width: calc(100% - 30px);
	}	


	/*Breadcrumb*/
	.breadcrumb {
		display: none;
	}


	/*Product*/
	.product-list a {
		width: calc(100% - 30px);
	}		
}


/* ==========================================================================
   08. Mobile: Ultra Small
   ========================================================================== */
@media screen and (max-width: 340px) {

}

