* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-size: 24px;
	font-family: sans-serif;
}

a {
	text-decoration: none;
	color: white;
	transition: 0.3s;
}

.main_grid {
	display: grid;
	grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;
}

.shop_header {
	height: 60vh;
	background: url('shop_header_back.jpg') ;
	background-position: center;
	background-size: cover;

}

.about_header {
	height: 60vh;
	background: url('about_header_back.jpg') ;
	background-position: center;
	background-size: cover;

}

.contacts_header {
	height: 60vh;
	background: url('contacts_header_back.jpg') ;
	background-position: center;
	background-size: cover;

}

header {
	background: url('header_back.jpg') ;
	grid-column: 1/-1;
	background-size: cover;
	height: 100vh;
	color: white;
	flex-direction: column;
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
	display: flex;
}

nav {
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-item: center;
	padding: 20px 50px;
}

.logo {
	height: 100%;

}

.menu ul {
	list-style: none;
	display: flex;

}

.menu ul li {
	padding: 1em 2em;
}

.menu ul li a:hover {
	color: orange;
}

.banner {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.banner h1 {
	font-size: 72px;
}

.banner p {
	font-size: 22px;
	text-align: center;
	max-width: 40%;
	padding: 50px 0;
}

.btn {
	background: #c49300;
	padding: 15px 50px;
}

.btn:hover {
	background: #8c6900;
}

.clothes {
	grid-column: 2/-2;
	height: 15vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	padding-top: 150px;
	padding-bottom: 100px;
}

.clothes p {
	padding: 20px;
	text-align: center;
}

.tiles {
	grid-column: 2/-2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	margin-bottom: 100px;
}


.item {
	display: grid;
	grid-template-columns: 1;
	grid-template-rows: 1;
	overflow: hidden;
}


.item img {
	grid-column: 1/-1;
	grid-row: 1/-1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.item_overlay {
	background: rgba(0, 0, 0, 0.5);
	grid-column: 1/-1;
	grid-row: 1/-1;
	z-index: 2;
	display: grid;
	justify-items: center;
	align-items: center;
	color: #fff;
}

.item:hover .item_img {
	transform: scale(1.15);

}

.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 h1 {
	padding-top: 50px;
	text-align: center;
}

.contentInfo p {
	padding: 20px;
	text-align: center;
}

.shop_tiles {
	grid-column: 2/-2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 100px;
	margin-bottom: 100px;
}

.shop_tiles .shop_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 18px;
}

.shop_tiles .shop_item p {
	text-align: center;
	margin: 25px;

}

.shop_item_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop_btn {
	background: #000;
	border-radius: 7px;
	text-align: center;
	padding: 10px 50px;
	color: white;
}

.description {
	grid-column: 2/-2;
	max-width: 80%;
	margin: 50px 0;
}

.description_contacts {
	grid-column: 2/-2;
	max-width: 80%;
	margin: 150px 0;
}

.map {
	grid-column: 2/-2;
	max-width: 100%;
	margin-top: 100px;
}

iframe {
	grid-column: 1/-1;
	width: 100%;
	height: 50vh;
	margin-top: 20px;

}



form {
	grid-column: 2/-2;
	max-width: 100%;
	display: flex;
	flex-direction: column;
}

input {
	padding: 10px;
	width: 100%;
	margin-bottom: 50px;
	outline: none;
	border: none;
	border-bottom: 1px solid gray;
}

input:focus {
	border-bottom: 1px solid black;
}

input::placeholder {
	font-size: 20px;
	font-weight: 700;
}

.submit {
	background: #000;
	color: white;
	border: none;
	width: 35vh;
	height: 7vh;
	border-radius: 30px;
	align-self: center;
	justify-self: center;
}

.submit:hover {
	cursor: pointer;
}
hr {
	height: 5px;
	background: black;
	max-width: 300px;
	margin: 20px 0;
	border: none;
}

.contentInfo_team {
	padding-right: 150px;
	padding-left: 150px;
}

.name {
	font-weight: 700;
	font-size: 24px;
}

.team_tiles {
	grid-column-gap: 80px;
	grid-row-gap: 20px;
}

footer {
	grid-column: 1/-1;
	height: 30vh;
	background: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
}

footer p {
	padding: 30px 0;
}

.social_contancts {
	display: flex;
	width: 10vw;
	justify-content: space-around;
}


.social_contancts a:hover {
	color: orange;
}