* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	background-color: #FFEC9E;
}

.header {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	padding: 1rem 2rem;
	background-color: #FFFBDA;
	box-shadow: 0 4px 4px 0 #00000025;
	position: relative;
}

.header-brand {
	font-size: 2rem;
	font-family: "Irish Grover", system-ui;
	font-weight: 400;
	color: #FFFBDA;
	background-color: #FB6D48;
	margin: 0;
	padding: 0.5rem 1rem;
}

.header-nav {
	flex: 1;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	gap: 2rem;
}

.header-link {
	color: #000000;
	font-size: 1.2rem;
	font-weight: 400;
	font-family: "Odor Mean Chey", serif;
	text-decoration: none;
}

.header-link.active {
	color: #C91245;
}

@media only screen and (max-width: 768px) {
	.header {
		flex-direction: column;
	}

	.header-nav {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
}

.footer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 2rem;
	background-color: #FFBF78;
}

.footer-brand {
	flex: 1;
	font-size: 2rem;
	font-family: "Irish Grover", system-ui;
	font-weight: 400;
	color: #000000;
	margin: 0;
	padding: 00;
}

.footer-nav {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-link {
	color: #000000;
	font-size: 1rem;
	font-weight: 600;
	font-family: "Nunito", sans-serif;
	text-decoration: none;
}

.footer-link.active {
	text-decoration: underline;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer-icon img {
	width: 2rem;
}

@media only screen and (max-width: 768px) {
	.footer {
		flex-direction: column;
	}

	.footer-nav {
		align-items: center;
	}

	.footer-contact {
		flex-direction: row;
		gap: 1rem;
	}
}

.hero {
	position: relative;
	overflow: hidden;
}

.hero-bg {
	width: 100%;
	min-height: 40rem;
}

.hero-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 2rem;
	text-align: center;
}

.hero-title {
	color: #FFFFFF;
	font-size: 2.4rem;
	font-weight: 800;
	margin: 1rem 0;
	padding: 0;
}

.hero-title strong {
	font-family: "Irish Grover", system-ui;
	font-weight: 400;
}

.hero-btn {
	font-size: 1rem;
	font-weight: 400;
	font-family: "Rammetto One", sans-serif;
	color: #FFFFFF;
	background-color: #FFAF45;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	transition: 0.1s all ease-in-out;
}

.hero-btn:hover,
.hero-btn:active {
	background-color: #FB6D48;
}

.heading {
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700;
	margin: 2rem;
	padding: 0;
}

.heading-underline {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;
	margin: 2rem;
	padding: 0;
	padding-bottom: 2rem;
	border-bottom: 1px solid #000000;
}

.product {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	padding: 4rem;
	padding-top: 0;
}

.product-box {
	width: calc(100% / 3 - 1rem);
	display: flex;
	flex-direction: row;
	gap: 1rem;
	color: #000000;
	background-color: #AF8F6F;
	padding: 1rem;
	border-radius: 1rem;
	text-decoration: none;
}

.product-box:hover {
	color: #000000;
	background-color: #FFFFFF;
	transition: 0.1s all ease-in-out;
}

.product-img {
	width: 10rem;
	max-width: 100%;
	border-radius: 0.75rem;
}

.product-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.product-title,
.product-subtitle {
	margin: 0;
	padding: 0;
}

.product-title {
	font-size: 1.2rem;
	font-weight: 600;
}

.product-subtitle {
	font-size: 0.8rem;
	font-weight: 600;
}

@media only screen and (max-width: 1024px) {
	.product-box {
		width: calc(100% / 2 - 1rem);
	}
}

@media only screen and (max-width: 768px) {
	.product {
		flex-direction: column;
	}

	.product-box {
		width: 100%;
	}
}

.testimony {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	padding: 4rem;
	padding-top: 0;
}

.testimony-box {
	width: calc(100% / 3 - 1rem);
	display: flex;
	flex-direction: row;
	color: #000000;
	background-color: #AF8F6F;
	border-radius: 1rem;
	text-decoration: none;
	overflow: hidden;
}

.testimony-box:hover {
	color: #000000;
	background-color: #FFFFFF;
	transition: 0.1s all ease-in-out;
}

.testimony-img {
	align-self: flex-end;
	width: 10rem;
	max-width: 100%;
}

.testimony-wrap {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	gap: 0.5rem;
}

.testimony-title,
.testimony-content {
	margin: 0;
	padding: 0;
}

.testimony-title {
	font-size: 1.2rem;
	font-weight: 600;
}

.testimony-content {
	font-size: 0.8rem;
	font-weight: 600;
}

@media only screen and (max-width: 1024px) {
	.testimony-box {
		width: calc(100% / 2 - 1rem);
	}
}

@media only screen and (max-width: 768px) {
	.testimony {
		flex-direction: column;
	}

	.testimony-box {
		width: 100%;
	}
}

.about {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.about-bg {
	min-height: 40rem;
}

.about-wrap {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.about-title {
	font-size: 2rem;
	padding: 1rem 5rem;
	border-bottom: 1px solid #000000;
}

.about-content {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 2rem;
	padding: 0 4rem;
}

.about-img {
	max-width: 20rem;
}

.about-container {
	padding: 2rem 10rem;
}

.about-container .heading-underline {
	margin-left: 0;
	margin-right: 0;
}

.about-mission {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 500;
}

@media only screen and (max-width: 768px) {
	.about-content {
		flex-direction: column;
	}

	.about-container {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 10rem;
}

.contact .heading-underline {
	width: 100%;
}

.contact-form {
	padding: 1rem;
	background-color: #D9D9D9;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 30rem;
	max-width: 100%;
	margin: 0 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-form label {
	font-size: 1rem;
	font-weight: 400;
}

.contact-form input,
.contact-form select {
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	border: none;
	color: #000000;
	background-color: #FFEC9E;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
}

.contact-form button {
	color: #FFEC9E;
	background-color: #B90000;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	border: none;
	border-radius: 0.5rem;
}

.form-check {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

.form-check input[type="checkbox"] {
	width: 1.25rem;	
	height: 1.25rem;
}

.form-check label {
	font-size: 0.8rem;
}

@media only screen and (max-width: 768px) {
	.contact {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
