.productpage{
	padding: 180px 50px 80px 50px;
	text-align: center;
	background: #e5e5e5;
}
.productpage h1{
	font-size: 50px;
	margin: 0 auto;
	padding: 20px;
	border-top: 5px solid #312825;
	border-radius: 20px 20px 0 0;
}
.productpage .d{
	max-width: 1100px;
	margin: 0 auto;
}
.productpage .d0{
	display: flex;
	justify-content: center;
	padding: 0 0 50px 0;
	margin-bottom: 20px;
}
.productpage .d1{
	display: flex;
	justify-content: center;
	width: 500px;
}
.productpage .d1 img{
	width: 100%;
	box-shadow: 1px 1px 3px gray;
	border-bottom: 5px solid #312825;
	border-radius: 0 0 0 20px;
}
.productpage .d1fire{
	height: 300px;
	display: flex;
	justify-content: center;
	width: 500px;
	box-shadow: 1px 1px 3px gray;
	border-bottom: 5px solid #312825;
	border-radius: 0 0 0 20px;
	background: url("../_images/fire.jpg");
	background-size: cover; 
	background-position: center;
}
.productpage .d1motorcar{
	height: 300px;
	display: flex;
	justify-content: center;
	width: 500px;
	box-shadow: 1px 1px 3px gray;
	border-bottom: 5px solid #312825;
	border-radius: 0 0 0 20px;
	background: url("../_images/motorcar.jpg");
	background-size: cover; 
}
.productpage .d2{
	text-align: left;
	padding: 0 30px 20px 30px;
	box-shadow: 1px 1px 3px gray;
	margin-left: 10px;
	border-bottom: 5px solid #312825;
	border-top: 5px solid #312825;
	border-radius: 0 0 20px 0;
	width: 600px;
}
.productpage .d2 h2{
	padding: 20px 0;
}
.productpage .d2 p{	
	padding-left: 30px;
	line-height: 30px;
}
.productpage a{
	padding: 20px;
	border: 1px solid #312825;
	border-radius: 5px;
	color: #312825;
	font-size: 15px;
	box-shadow: 1px 1px 3px gray;
	transition: .5s;
}
.productpage a:hover{
	background: #312825;
	color: white;
}

@media (max-width: 800px){
	.productpage h1 {
		font-size: 40px;
	}
	.productpage .d2 h2{
	
	}
	.productpage .d0{
		flex-wrap: wrap;
	}
	.productpage .d1{
		width: 80%;
	}
	.productpage .d1 img{
		border-bottom: none;
		border-radius: 0;
		margin-bottom: 30px;
	}
	.productpage .d2{
		box-shadow: none;
		margin-left: 10px;
		border-bottom: 5px solid #312825;
		border-top: 3px dashed #312825;
		border-radius: 0 0 20px 20px;
		width: 100%;
	}
}