/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: verdana;
	background-color: #eee;
}

header .promo_bar {
	background-color: hsl(37, 82%, 55%);
	min-height: 56px;
}
header nav {
	background-color: #FFF;
	min-height: 77px;
}
header {
	background-color: #fff;
}
section.hero {
	min-height: 500px;
	background-color: skyblue;
	background: url(../images/dog1.jpg);
	background-size: 150%;
	background-repeat: no-repeat;
	background-position: left calc(100% + 50px);
	position: relative;
}
.hero_text {
	color: #FFF;
	font-family: impact;
	font-size: 2em;
	padding: 10px 0px 0px 10px;
	background-color: rgba(20,20,20,.7);
	position: absolute;
	top: 10px; left: 100px;
	letter-spacing: .1em;
}
.call_to_action {
	display: block;
	background-color: hsl(37, 82%, 55%);
	position: absolute;
	width: 180px;
	padding: 16px 8px;
	bottom: 40px; left: 100px;
	text-decoration: none;
	text-align: center;
	color: #00263e;
	font-size: 16pt;
	border-radius: 8px;
	box-shadow: 2px 3px 6px rgba(10,10,10,.7);
	transition: background-color 250ms linear;
	
}
.call_to_action:hover {
	background-color: hsl(37, 82%, 45%);
}
section.products {
	min-height: 300px;
	background-color: #eee;
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
	gap: 5px;
	padding: 20px 100px;
}
.product_card {
	flex: 0 0 20%;
	background-color: #fff;
	padding: 4px;
	text-align: center;
	border-radius: 6px;
	box-shadow: 0 0 20px #888;
	transition: box-shadow .50s linear;
	text-decoration: none;
	color: #234;
}
.product_card:hover {
	box-shadow: 0 0 20px #555
}
.product_card h2 {
	font-size: 10pt;
	margin-top: 20px;
	margin-bottom: 10px;
}
.product_card img {
	width: 80%;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: left bottom;
	padding-top: 6px;
}
.product_card p {
	font-size: 8pt;
	margin-bottom: 10px;
}
.feature {
	margin: 40px 100px;
	min-height: 400px;
	background-color: #fff;
	display: flex;
	text-decoration: none;
	color: #234;
	border-radius: 6px;
}
.feature figcaption p:first-child {
	color: red;
	text-align: center;
	text-transform: uppercase;
	font-size: 8pt;
	margin: 8px;
	font-weight: bold;
}
.feature figcaption h2 {
	margin: 16px;
	font-size: 14pt;
	line-height: 1.4;
}
.feature figcaption p {
	margin: 16px;
	font-size: 10pt;
	line-height: 1.6;
}
.feature figcaption {
	flex: 0 0 30%;
	background-color: #fff;
	border-radius: 6px 0 0 6px;
}
.feature figure {
	flex: 0 0 70%;
	background-image: url(../images/dog3.jpg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right bottom;
	border-radius: 0 6px 6px 0;
}
footer {
	min-height: 300px;
	background-color: #333;
	color: #eee;
}
header .inner_container, 
nav.inner_container, 
footer .inner_container {
	margin: 0 100px;
	padding-top: 10px;
}
