/*@import url('https://fonts.googleapis.com/css?family=Noto+Serif+TC|Open+Sans');*/
@import url('https://fonts.googleapis.com/css?family=EB+Garamond:400,700&subset=cyrillic');

/* Eric Meyer's CSS Reset */
/*html, body, div, span, applet, object, iframe,*/
/*h1, h2, h3, h4, h5, h6, p, blockquote, pre,*/
/*a, abbr, acronym, address, big, cite, code,*/
/*del, dfn, em, img, ins, kbd, q, s, samp,*/
/*small, strike, strong, sub, sup, tt, var,*/
/*b, u, i, center,*/
/*dl, dt, dd, ol, ul, li,*/
/*fieldset, form, label, legend,*/
/*table, caption, tbody, tfoot, thead, tr, th, td,*/
/*article, aside, canvas, details, embed,*/
/*figure, figcaption, footer, header, hgroup,*/
/*menu, nav, output, ruby, section, summary,*/
/*time, mark, audio, video {*/
	/*margin: 0;*/
	/*padding: 0;*/
	/*border: 0;*/
	/*font-size: 100%;*/
	/*font: inherit;*/
	/*vertical-align: baseline;*/
/*}*/
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

html {
	height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
	/*font: 12px/18px Arial, sans-serif;*/
	height: 100%;
	font: 14px/20px 'EB Garamond', serif;

}
.wrapper {
	width: 100%;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.wrapper:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: opacity 0.4s, transform 0s 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/* Header
-----------------------------------------------------------------------------*/
.header {
	padding: 15px 0;
	height: 150px;
	position: fixed;
	width: 100%;
	background: rgba(255, 255, 255, 0.85);
	z-index: 100;
}
.logo_box{
	width: 100px;
	margin: auto;
	text-align: center;
}
.logo_box img{
	height: 120px;
}
.soc_icons_box a{
	margin-left: 15px;
	color: #7a7a7a;
	transition: all 0.3s ease;
}
.soc_icons_box a:hover{
	color: #535353;
}
.comm_box{
	padding-top: 50px;
	margin-left: 20px;
}
.comm_box a{
	display: block;
	color: #2b2b2b;
	font-size: 28px;
}

	/* Menu */

/* Menu Button */
.menu-button {
	position: fixed;
	z-index: 1000;
	margin: 1em;
	padding: 0;
	width: 2.5em;
	height: 2.25em;
	border: none;
	text-indent: 2.5em;
	font-size: 1.5em;
	color: transparent;
	background: transparent;
}

.menu-button::before {
	position: absolute;
	top: 0.7em;
	right: 0.5em;
	bottom: 0.5em;
	left: 0.5em;
	background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
	content: '';
}

.menu-button:hover {
	opacity: 0.6;
}

/* Close Button */
.close-button {
	width: 1em;
	height: 1em;
	position: absolute;
	right: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 1em;
	font-size: 0.75em;
	border: none;
	background: transparent;
	color: transparent;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #bdc3c7;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	position: fixed;
	z-index: 1001;
	width: 300px;
	height: 100%;
	background: #525252;
	padding: 2.5em 1.5em 0;
	font-size: 1.15em;
	-webkit-transform: translate3d(-320px,0,0);
	transform: translate3d(-320px,0,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu_box,
.menu {
	height: 100%;
}

.menu {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

.menu a {
	display: block;
	padding: 0.8em;
	-webkit-transform: translate3d(0,500px,0);
	transform: translate3d(0,500px,0);
	color: #b8b7ad;
}
.menu a:hover, .menu a:focus{
	color: #ffffff;
}
.menu,
.menu a {
	-webkit-transition: -webkit-transform 0s 0.4s;
	transition: transform 0s 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu a:nth-child(2) {
	-webkit-transform: translate3d(0,1000px,0);
	transform: translate3d(0,1000px,0);
}

.menu a:nth-child(3) {
	-webkit-transform: translate3d(0,1500px,0);
	transform: translate3d(0,1500px,0);
}

.menu a:nth-child(4) {
	-webkit-transform: translate3d(0,2000px,0);
	transform: translate3d(0,2000px,0);
}

.menu a:nth-child(5) {
	-webkit-transform: translate3d(0,2500px,0);
	transform: translate3d(0,2500px,0);
}

.menu a:nth-child(6) {
	-webkit-transform: translate3d(0,3000px,0);
	transform: translate3d(0,3000px,0);
}

.menu a span {
	margin-left: 10px;
	font-weight: 700;
}

/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.show-menu .menu,
.show-menu .menu a {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.show-menu .menu a {
	-webkit-transition-duration: 0.9s;
	transition-duration: 0.9s;
}

.show-menu .wrapper::before {
	opacity: 1;
	-webkit-transition: opacity 0.8s;
	transition: opacity 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Middle
-----------------------------------------------------------------------------*/
.content {
	padding: 0 0 40px;
	margin: 40px 0;
}
.main_slide, .page_content, .catalog_page{
	margin-top: 150px;
	min-height: 580px;
}
.main_slide{
	color: #ffffff;
}
.main_slide hr{
	border-top: 1px solid #8d8d8d;
}
.cat_item{
	padding: 15px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	background: none;
	border: 1px solid #dcdcdc;
}
.cat_item:hover{
	background: #dcdcdc;
}

.cat_item h3 a{
	font-size: 100%;
	color: #4e4e4e;
	text-decoration: none;
	transition: all 0.3s ease;
}
.cat_item h3 a:hover{
	color: #000;
}
.cat_img{
	max-width: 100%;
}
.text_box{
	padding: 0 50px;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer {
	margin: 40px auto 0;
	height: 40px;
	line-height: 40px;
	background: #222;
	position: relative;
	color: #636363;
}

/*//////////////////////////////////////////////////*/

/* media-queries */
@media screen and (max-width: 3000px) and (min-width: 1600px) {

}
@media screen and (max-width: 979px) and (min-width: 768px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 480px) {
	.main_slide{
		min-height: auto;
	}

	.soc_icons_box{
		/*margin-right: -50px;*/
	}
	.soc_icons_box a{
		display: block;
	}
}


