* {
	margin: 0;
	padding: 0;
}
body {
	font-size: 24px;
	font-family: sans-serif;
}
a {
	text-decoration: none;
	color: white;
}
.main-grid	{
	display: grid;
	grid-template-columns: 1fr
	repeat(2, minmax(auto, 25em)) 1fr;
}
.shop_header {
	background-image: url("img/10.jpg");
}
header {
	background-image: url(img/1.jpg);
	background-size: cover;
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
	grid-column: 1/-1;
	height: 400px;
	color: white;
	display: flex;
	flex-direction: column;
}
nav {
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
}
.logo {
	height: 100%;
}
.menu ul {
	display: flex;
	list-style: none;
}
.menu ul li {
	padding: 1em 2em;
}
.menu ul li a {
	color: white;
	text-decoration: none;
}
.menu ul li a:hover {
	color: orange;
	transition: 0.9s;
}
.banner {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.banner h1 {
	font-size: 72px;
}
.banner p {
	font-size: 22px;
	text-align: center;
	max-width: 40%;
	padding: 50px 0;
}
.button {
	background: #c49300;
	color: white;
	padding: 15px 5px;
}
.button:hover {
	background: #8c6900;
	transition: 0.9s;
}
.contentInfo {
	grid-column: 2/-2;
	height: 15vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	padding-top: 75px;
	padding-bottom: 100px;
}
.contentInfo p {
	padding: 20px;
	text-align: center;
}
.tiles	{
	grid-column: 2/-2;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 100px;
	margin-bottom: 100px;
}
.tiles .item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 18px;
}
.tiles .item p {
	text-align: center;
	margin: 25px;
}
.tiles .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.description {
 	grid-column: 2/-2;
 	height: 30vh;
 	display: flex;
 	flex-direction: column;
 }
 .tiles_team {
 	grid-column: 2/-2;
 	display: grid;
 	grid-template-columns: 1fr 1fr 1fr 1fr;
 	grid-column-gap: 100px;
 	grid-row-gap: 100px;
 }
  .tiles_team .item {
 	display: flex;
 	justify-content: center;
 	flex-direction: column;
 	font-size: 18px;
 }
 .tiles_team .item img {
 	width: 100px;
 	height: 100px;
 	object-fit: cover;
 }
 .team_name {
 	font-size: 24px;
 }
 .about_bunner {
 }
 footer {
 	grid-column: 1/-1;
 	height: 30vh;
 	background: black;
 	color: white;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	flex-direction: column;
 }
 footer p {
 	padding: 30px 0;
 }
 .social_contacts {
 	display: flex;
 	width: 10vw;
 	justify-content: space-around;
 }
 .social_contacts a:hover {
 	color: orange;
 	transition: 0.9s;
 }
 .history {
 	grid-column: 1/-1;
	height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	padding-top: 100px;
	margin: 200px;
	padding-bottom: 100px;
 }
 .contacts	{
	grid-column: 2/-2;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 100px;
	margin-bottom: 100px;
}
.contacts .item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 17px;
}
.contacts .item p {
	text-align: center;
	margin: 25px;
}
.contacts .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.clothes {
	margin: 15px;
}