* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}

body {
	height: 100%;
	font-family: "Roboto Condensed", sans-serif;
	font-style: normal;
}

.wrapper {
	min-width: 300px;
	max-width: 100%;
	min-height: 100%;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
}

.section {
	position: relative;
	width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    box-sizing: border-box;
	margin: 0 auto;
}

.space {
	margin-top: 100px;
	margin-bottom: 100px;
}

.link {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hidden {
	display: none;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 10;
    background: #fff;
    height: 115px;
    box-shadow: 0 6px 30px 0 rgba(0,0,0,.2);
}

.header .section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    height: 80px;
}

.contacts-header {
    position: absolute;
	background: #e8e8e8;
    right: 20px;
    top: 0;
	height: 40px;
}

.contacts-header:before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    border-bottom: 20px solid #ffffff;
    border-right: 20px solid #e8e8e8;
    width: 0;
    z-index: 2;
}

.contacts-header:after {
    content: '';
    position: absolute;
    display: block;
    background: #e8e8e8;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    padding-right: 100%;
}

.contacts-header a {
	position: relative;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    margin-left: 20px;
	line-height: 40px;
	z-index: 2;
}

.contacts-header a img {
    display: inline-block;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -3px;
}

.menu-block {
    margin-top: 40px;
}

.menu ul {
    list-style: none;
    font-size: 0;
}

.menu ul li {
    display: inline-block;
    font-size: 18px;
    margin-left: 24px;
}

.menu ul li a {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
}

.nav-block {
	position: relative;
    border-top: 1px solid #f0f0f0;
    background: #f0f0f0;
    width: 100%;
    max-height: calc(100vh - 90px);
	transition: all 0.5s ease-out;
}

.nav-block-wrap {
	position: relative;
	transform: translateX(0);
    width: 33%;
    padding: 90px 40px;
    background: #ffffff;
	transition: transform 0.45s ease-out 0.15s, padding 0.15s ease-out;
}

.nav-block-wrap.hidden {
	display: block;
	transform: translateX(-100%);
    height: 0;
    font-size: 0;
    padding: 0;
}

.nav-block-wrap ul {
    opacity: 1;
    transition: all 0.15s ease-out;
}

.nav-block-wrap.hidden ul {
    opacity: 0;
    transition: all 0.05s ease-out;
}

.nav-block-wrap.hidden ul li:first-child,
.nav-block-wrap.hidden ul li {
	border: 0;
}

.nav-block-wrap ul {
    list-style: none;
    font-size: 0;
}

.nav-block-wrap ul li:first-child {
    border-top: 1px solid #f0f0f0;
}

.nav-block-wrap ul li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-block-wrap ul li a {
	display: block;
	text-transform: uppercase;
	font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
	text-decoration: none;
	color: #000000;
	padding: 15px 40px 15px 15px;
}

.nav-block-wrap ul li a:hover {
    font-weight: bold;
}

button.close-nav {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
    background: #8a8e91;
    outline: none;
    color: #ffffff;
    position: absolute;
    left: 50%;
    bottom: -30px;
	cursor: pointer;
}

.background-menu {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}

.title {
    margin-bottom: 40px;
}

.title h2 {
    font-size: 46px;
}

.slider {
    width: 100%;
    height: 100vh;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products {
    overflow: hidden;
}

.products .title h2 {
    text-align: center;
}

.product-item {
    display: block;
    position: relative;
    width: calc(33.333% - 2px);
    overflow: hidden;
    background: #e8e8e8;
	float: left;
	margin: 1px;
}

.product-item:after {
    content: '';
    display: block;
    padding-top: 131%;
}

.product-item.item_02:after,
.product-item.item_05:after {
    padding-top: 97.5%;
}

.product-item.item_03:after,
.product-item.item_04:after {
    padding-top: 49%;
}

.product-item.item_02 {
	width: calc(22.333% - 2px);
    background: #d7d7d7;
}

.product-item.item_03 {
	width: calc(44.333% - 2px);
	background: #bfbfbf;
}

.product-item.item_04 {
	width: calc(44.333% - 2px);
	background: #bfbfbf;
}

.product-item.item_05 {
	width: calc(22.333% - 2px);
	background: #d7d7d7;
}

.product-item:hover img.product-item-img {
	transform: scale(1.1);
}

.product-item:before {
    content: '';
    background: #000000;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
	transition: all 0.5s ease-out;
}

.product-item:hover:before {
    opacity: 0.5;
}

img.product-item-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: all 0.5s ease-out;
}

.product-item-info {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    padding: 20px 80px 20px 20px;
    width: 100%;
    box-sizing: border-box;
}

.product-item-title {
    color: #ffffff;
	text-shadow: 0px 0px 6px #000000;
}

.product-item-title h2 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
}

.product-item-arrow {
    position: absolute;
    display: inline-block;
    font-size: 0;
    right: 20px;
    bottom: 20px;
    height: 30px;
    width: 30px;
}

.product-item-arrow img {
    width: 100%;
    -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 1));
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 1));
}

.main {
	overflow: hidden;
	margin-bottom: 970px;
}

.footer {
	background:#ffffff;
	height:auto;
	margin: -970px auto 0;
	position: relative;
	overflow: hidden;
}

.contacts .title h2 {
    text-align: center;
}

.contacts-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top-block {
    width: 100%;
    margin-bottom: 100px;
    text-align: center;
}

.top-block a {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
}

.left-block {
    width: calc(50% - 40px);
    font-size: 24px;
    margin-right: 40px;
}

.right-block {
    width: calc(50% - 40px);
    font-size: 24px;
    margin-left: 40px;
}

.right-block input, .right-block textarea {
    font-family: "Roboto Condensed", sans-serif;
    width: 100%;
    font-size: 18px;
    color: #000000;
    background: #e8e8e8;
    border: none;
    outline: none;
    padding: 24px 30px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.right-block button {
    font-size: 18px;
    padding: 24px 30px;
    box-sizing: border-box;
    width: 250px;
    font-family: "Roboto Condensed", sans-serif;
    border: none;
    background: #000000;
    color: #ffffff;
	cursor: pointer;
}

.copy {
    width: 100%;
    display: inline-block;
    background: #000000;
}

.footer-menu ul {
    list-style: none;
    font-size: 0;
	text-align: center;
	margin: 30px 0;
}

.footer-menu ul li {
    display: inline-block;
    font-size: 18px;
    margin: 0 12px;
}

.footer-menu ul li a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.copy-info {
    font-size: 12px;
    text-align: center;
    color: #ffffff;
    margin: 30px 0;
}