body{
	font-size: 24px;
}
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("images/shop_header_back.jpg");
}
.about_header{
	background-image: url("images/about_header_back.jpg");
	background-position: center center;
}
.contacts_header{
	background-image: url("images/contacts_header_back.jpg");
	background-position: center center;
}
header{
	background-size: cover;
	height: 60vh;
	grid-column: 1 / -1;
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
	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:hover{
	color: orange;
	transition: 1s;
}
.banner{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.banner h1{
	font-size: 72px;
}
.description{
	grid-column: 2 / -2;
	height: 30vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding: 70px 0;
	padding-right: 15vw;
}
.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{
	display: grid;
	grid-column: 2 / -2;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 20px;
	margin-bottom: 100px;
}
.tiles .item{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.tiles .item p{
	text-align: center;
}
.tiles .item img{
	width: 100%;
	height: 100%;
}
.button{
	background: black;
	padding: 10px 50px;
	border-radius: 7px;
}
.button:hover{
	background: #8c6900;
	transition: 1s;
}
.tiles_team{
	grid-column: 2 / -2;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 40px;
}
.tiles_team .item{
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 18px;
}
.tiles_team .item p{
	text-align: center;
	margin: 15px 0;
}
.tiles_team .item img{
	width: 100%;
	height: 100%;
}
.contactsBlock{
	grid-column: 2 / -2;
	height: 15vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding-top: 150px;
	padding-bottom: 150px;
}
#request{
	grid-column: 2 / -2;
	display: flex;
	flex-direction: column;
}
input{
	width: 40vw;
	border: none;
	border-bottom: 1px solid black;
	font-size: 18px;
	padding: 20px 5px;
}
input:focus{
	outline: none;
}
#submit{
	width: 300px;
	border-radius: 40px;
	background-color: black;
	color: white;
	margin-left: 8vw;
	margin-top: 20px;
	margin-bottom: 20px;
}
#submit:hover{
	cursor: pointer;
}
#map_desc{
	grid-column: 2 / -2;
	padding-top: 100px;
}
iframe{
	grid-column: 1 / -1;
	height: 50vh;
	width: 100%;
	margin-bottom: 20px;
}
footer{
	background: black;
	grid-column: 1 / -1;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
footer p{
	padding: 30px 0;
}
.social_contacts{
	display: flex;
	justify-content: space-around;
	width: 10vw;
}
.social_contacts a:hover{
	color: orange;
	transition: 0.9s;
}