@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
}
h1 {
	margin: 20px 0 40px 0;
	font-size: 36px;
	font-weight: bold;
	letter-spacing: 1.5px;
}
h2 {
	margin: 40px 0;
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 1.3px;
}
p {
	font-size: 18px;
	letter-spacing: .75px;
	line-height: 28px;
	margin: 16px 0;
	color: #041014;
}
a {
	text-decoration: none;
}
body {
	margin: 0;
	font-size: 0;
	background-color: #DFDFD8;
	font-family: "Open Sans", sans-serif;
}
.wrapper {
	padding: 0 60px;
	margin: auto;
	max-width: 1300px;
}
header {
    text-align: center;
}
#logo {
    margin: 20px 0;
}
#title h2 {
	text-align: center;
}
#hero-section {
	background-image: url(/img/hero.jpg);
	background-size: cover;
    background-position: center center;
    height: 720px;
}
.half-section {
    width: 50%;
    display: inline-block;
	vertical-align: middle;
}
#product-wrapper {
	text-align: center;
}
.product-container {
	display: inline-block;
	width: 250px;
	margin: 10px;
}
.product-image{
	width: 100%;
	margin-bottom: 20px;
	aspect-ratio: 1/1;
}
.product-title, .product-price {
	font-size: 16px;
	font-weight: 500;
	margin: 5px 0;
}
form{
	display: inline-block;
	padding: 3% 0%;
	width: 100%;
}
form button {
	float: right;
	background-color: #F4F4F4;
	border: 1px solid #F4F4F4;
	border-radius: 4px;
	font-size: 26px;
	padding: 15px 30px;
}
form div {
	position: relative;
	overflow: hidden;
	margin: 10px 0;
	text-align: left;
}
label{ 
	transition: font-size 0.2s;
	position: absolute;
	top: 8px;
	left: 6px;
	font-size: 20px;
	letter-spacing:1px;
}
input[type="text"], input[type="email"], textarea{
	background-color: #F4F4F4;
	width: 100%;
	border: 1px solid #F4F4F4;
	border-radius: 4px;
	font-size: 22px;
	padding: 25px 20px 15px 20px;
	font-family: 'Anaheim', sans-serif;
}
input:focus, textarea:focus {
	border-bottom: 2px solid #8B8B8B;
	outline: none;
}
input:focus + label, textarea:focus + label {
	font-size: 14px;
}
input:valid + label, textarea:valid + label {
	font-size: 14px;
}
input[type="text"], input[type="email"] {
	height: 64px;
}
textarea {
	height: 150px;
	resize: none;
}
#thank-you-message {
	font-size: 32px;
	display: none;
}