/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./css/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";

/* Abstracts */
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
.headline {
	font-family: "Figtree", sans-serif;
	font-weight: 700;
	color: #242B58;
	margin: 0;
}

.headline__largest {
	font-size: 28px;
}

@media only screen and (min-width: 50em) {
	.headline__largest {
		font-size: 65px;
	}
}

@media only screen and (min-width: 75em) {
	.headline__largest {
		font-size: 75px;
	}
}

@media only screen and (min-width: 112.5em) {
	.headline__largest {
		font-size: 85px;
	}
}

.headline__large {
	text-align: center;
	font-size: 35px;
}

@media only screen and (min-width: 50em) {
	.headline__large {
		font-size: 65px;
	}
}

.headline__medium {
	font-size: 28px;
}

@media only screen and (min-width: 50em) {
	.headline__medium {
		font-size: 52px;
	}
}

.headline__small {
	font-size: 20px;
}

@media only screen and (min-width: 50em) {
	.headline__small {
		font-size: 36px;
	}
}

.headline__small--marthas-tips-block {
	color: #FFFFFF;
	font-size: 22px;
	white-space: nowrap;
	text-shadow: 2px 2px 8px black;
}

@media (min-width: 800px) and (max-width: 1060px) {
	.headline__small--marthas-tips-block {
		font-size: 20px;
	}
}

@media (min-width: 1060px) and (max-width: 1300px) {
	.headline__small--marthas-tips-block {
		font-size: 24px;
	}
}

@media (min-width: 1300px) and (max-width: 1600px) {
	.headline__small--marthas-tips-block {
		font-size: 35px;
	}
}

@media (min-width: 1600px) and (max-width: 1800px) {
	.headline__small--marthas-tips-block {
		font-size: 38px;
	}
}

@media only screen and (min-width: 112.5em) {
	.headline__small--marthas-tips-block {
		font-size: 42px;
	}
}

p {
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}

@media only screen and (min-width: 50em) {
	p {
		font-size: 21px;
	}
}

/* li {
	margin-top: 1rem;
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	margin-left: 1rem;
} */

/* @media only screen and (min-width: 50em) {
	li {
		font-size: 21px;
	}
} */

.button {
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 700;
	background-color: #B23B40;
	text-transform: uppercase;
	color: #FFFFFF;
	border: none;
	border-radius: 4rem;
	text-decoration: none;
	padding: 2rem 2.5rem;
	font-size: 18px;
	transition: 0.3s ease-in-out;
}

@media only screen and (min-width: 50em) {
	.button {
		padding: 2rem 5rem;
	}
}

.button:hover {
	background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0 0);
}

.button--inverted {
	background-color: #FFFFFF;
	border: 4px solid #B23B40;
	color: #B23B40;
}

.button--inverted:hover {
	background-color: #B23B40;
	color: #FFFFFF;
	background-image: none;
}

/* Base */
*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

html {
	scroll-behavior: smooth;
}

body {
	box-sizing: border-box;
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

.container {
	width: 100%;
}

.container__inner {
	margin: 0 3rem;
	max-width: 95%;
}

@media only screen and (min-width: 50em) {
	.container__inner {
		margin: 0 auto;
		max-width: 95%;
	}
}

@media only screen and (min-width: 137.5em) {
	.container__inner {
		max-width: 215rem;
	}
}

.container__inner--full-width {
	margin: 0;
}

@media only screen and (min-width: 137.5em) {
	.container__inner--full-width {
		margin: 0 auto;
		max-width: 215rem;
	}
}

.container__inner--mobile {
	max-width: 215rem;
	margin: 0 auto;
}

.container__narrow {
	max-width: 129rem;
	margin: 0 auto;
	padding: 0 3rem;
}

@media only screen and (min-width: 50em) {
	.container__narrow {
		padding: 0 7rem;
	}
}

.center {
	display: flex;
	justify-content: center;
}

a {
	text-decoration: none;
	cursor: pointer !important;
}

.breadcrumbs {
	display: none;
}

@media only screen and (min-width: 50em) {
	.breadcrumbs {
		display: block;
		padding: 6rem 6rem;
		font-size: 21px;
	}
}

.breadcrumbs a {
	color: #000;
}

.testing {
	display: block;
}

/* #header {
	z-index: 999;
	position: relative;
	background-color: #FFFFFF;
}

@media only screen and (min-width: 50em) {
	#header {
		background-color: #242B58;
		border-bottom: #B23B40 solid 6px;
	}
}

.navbar {
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
}

@media only screen and (min-width: 50em) {
	.navbar {
		grid-template-columns: 2fr 1fr;
		padding: 0 3rem;
	}
}

.navbar a {
	text-decoration: none;
	color: #242B58;
}

@media only screen and (min-width: 50em) {
	.navbar a {
		color: #FFFFFF;
	}
}

.navbar__main-selection {
	display: flex;
	gap: 3.5rem;
	align-content: center;
}

.navbar__secondary-selection {
	display: flex;
	background-color: #242B58;
	text-align: center;
	width: 100%;
	bottom: 0;
	padding: 3rem;
	gap: 2rem;
}

@media only screen and (min-width: 50em) {
	.navbar__secondary-selection {
		gap: 3.5rem;
		padding: 0;
		position: relative;
		justify-content: flex-end;
	}
}

.navbar__secondary-selection a {
	color: #FFFFFF;
	font-weight: 400;
}

@media only screen and (min-width: 50em) {
	.navbar__secondary-selection a {
		font-weight: bold;
	}
}

.navbar #store-shop a {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media only screen and (min-width: 50em) {
	.navbar #store-shop a {
		display: flex;
		align-items: center;
	}
}

.navbar #store-shop a .pin {
	max-width: 20px;
	margin-right: 0.5rem;
}

.navbar__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 3rem;
}

@media only screen and (min-width: 50em) {
	.navbar__item {
		flex-direction: row;
		align-items: center;
		padding: 0;
	}
}

.navbar__item:nth-child(1) {
	padding: 4.2rem 3rem 0 3rem;
}

.recipes-nav-graphic,
.product-nav-graphic {
	display: none;
}

@media only screen and (min-width: 50em) {

	.recipes-nav-graphic,
	.product-nav-graphic {
		display: block;
	}
}

.navbar,
.navbar__main-selection,
.navbar__secondary-selection {
	flex-direction: column;
}

@media only screen and (min-width: 50em) {

	.navbar,
	.navbar__main-selection,
	.navbar__secondary-selection {
		flex-direction: row;
	}
}

.dropdown.active #products,
.dropdown.active #recipes,
.dropdown.active #tips {
	display: flex;
	flex-direction: column;
	padding-left: 4rem;
}

@media only screen and (min-width: 50em) {

	.dropdown.active #products,
	.dropdown.active #recipes,
	.dropdown.active #tips {
		padding-left: 0rem;
		display: grid;
		gap: 4rem;
	}
}

@media screen and (min-width: 1235px) {

	.dropdown.active #products,
	.dropdown.active #recipes,
	.dropdown.active #tips {
		gap: 6rem;
	}
}

@media only screen and (min-width: 50em) {
	.dropdown.active #products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (min-width: 50em) {
	.dropdown.active #products .dropdown-content__col:nth-child(1) {
		padding-left: 4rem;
	}
}

@media only screen and (min-width: 50em) {
	.dropdown.active #recipes {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media only screen and (min-width: 50em) {
	.dropdown.active #recipes .dropdown-content__col:nth-child(1) {
		padding-left: 4rem;
	}
}

@media only screen and (min-width: 50em) {
	.dropdown.active #tips {
		min-width: 62rem;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 800px) and (max-width: 999px) {
	.dropdown.active #tips {
		padding: 0 4.7rem 3rem 4.7rem;
	}
}

@media (min-width: 1000px) and (max-width: 1340px) {
	.dropdown.active #tips {
		padding: 0 4.7rem 5rem 4.7rem;
	}
}

@media screen and (min-width: 1100px) {
	.dropdown.active #tips {
		min-width: 76rem;
	}
}

@media screen and (min-width: 1341px) {
	.dropdown.active #tips {
		padding: 0 4.7rem 3rem 4.7rem;
	}
}

@media only screen and (min-width: 50em) {
	.dropdown.navbar__item.active {
		border-bottom: #BDD5EA solid 6px;
		transform: translateY(6px);
		margin-top: -6px;
	}
}

.dropdown-content {
	display: none;
	background-color: #FFFFFF;
}

@media only screen and (min-width: 50em) {
	.dropdown-content {
		white-space: nowrap;
		position: absolute;
		top: 8.2rem;
		padding-top: 2rem;
		box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
	}
}

.dropdown-content a {
	color: #242B58;
	font-size: 18px;
	display: block;
	text-align: left;
	text-transform: capitalize;
	padding-top: 2rem;
	font-weight: 400;
}

@media only screen and (min-width: 50em) {
	.dropdown-content a {
		font-weight: 700;
	}
}

.dropdown-content .explore {
	font-weight: 400;
	color: #B23B40;
	display: flex;
	align-items: center;
}

.dropdown-content .explore--recipes-mobile {
	display: block;
}

.dropdown-content .explore--recipes-desktop {
	display: none;
}

@media only screen and (min-width: 50em) {
	.dropdown-content .explore {
		padding: 6.5rem 0 0rem 0;
	}

	.dropdown-content .explore--recipes-desktop {
		display: flex;
	}

	.dropdown-content .explore--recipes-mobile {
		display: none;
	}
}

.dropdown-content .explore img {
	margin-left: 1.3rem;
}

#dropdown-image--tip1 {
	max-width: 5rem;
}

#dropdown-image--tip2 {
	max-width: 6.7rem;
}

#dropdown-image--tip3 {
	max-width: 4.9rem;
}

#dropdown-image--tip4 {
	max-width: 3.2rem;
}

#tips a {
	display: flex;
	align-items: center;
}

.tips-subtext {
	display: none;
}

@media only screen and (min-width: 50em) {
	.tips-subtext {
		display: block;
		font-weight: 400;
		margin-top: 1rem;
		white-space: normal;
		font-size: 16px;
	}
}

.tip-icon {
	display: none;
}

@media only screen and (min-width: 50em) {
	.tip-icon {
		display: block;
	}
}

.circle-container {
	display: none;
}

@media only screen and (min-width: 50em) {
	.circle-container {
		width: 6rem;
		height: 6rem;
		border-radius: 50%;
		background-color: #F7E4E4;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 6px;
	}
}

.logo {
	max-width: 13rem;
}

@media only screen and (min-width: 50em) {
	.logo {
		max-width: 28rem;
		transform: translateY(3.5rem);
		position: relative;
		z-index: 998;
	}
}

@media only screen and (min-width: 112.5em) {
	.logo {
		max-width: 36.3rem;
	}
}

.navbar__item,
.navbar__secondary-selection {
	display: none;
}

@media only screen and (min-width: 50em) {

	.navbar__item,
	.navbar__secondary-selection {
		display: flex;
	}
}

.navbar__item-link,
.navbar__secondary-selection {
	font-size: 21px;
	color: #FFFFFF;
}

.logo-hamburger-container {
	display: flex;
	justify-content: space-between;
	background-color: #242B58;
	align-items: center;
	padding: 1.5rem 3rem;
}

@media only screen and (min-width: 50em) {
	.logo-hamburger-container {
		padding: 0;
		background-color: transparent;
	}
}

.hamburger {
	height: 2.4rem;
	display: grid;
}

@media only screen and (min-width: 50em) {
	.hamburger {
		display: none;
	}
}

.hamburger .hamburger-icon {
	display: block;
	width: 3rem;
	height: 3px;
	background-color: #FFFFFF;
	position: relative;
	transition: transform 0.3s ease-in-out;
}

.hamburger.active {
	height: 0;
}

.hamburger.active #hamburger-icon1 {
	transform: rotate(45deg);
}

.hamburger.active #hamburger-icon2 {
	opacity: 0;
}

.hamburger.active #hamburger-icon3 {
	transform: rotate(-45deg);
	margin-top: -5px;
}

@media screen and (max-width: 799px) {
	#header.menu-open {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #FFFFFF;
		overflow-y: auto;
		z-index: 1099;
	}

	#header.menu-open .dropdown,
	#header.menu-open .navbar__secondary-selection {
		display: flex;
	}

	#header.menu-open .navbar__item--our-story {
		display: flex;
	}

	#header.menu-open .navbar {
		height: calc(100vh - 8rem);
		display: flex;
		align-items: normal;
	}

	.dropdown #products .dropdown-content__col:nth-child(1) {
		order: 2;
	}

	.dropdown #recipes .dropdown-content__col:nth-child(1) {
		order: 2;
	}

	.dropdown #recipes .dropdown-content__col:nth-child(2) {
		order: 3;
	}

	.dropdown #tips .dropdown-content__col:nth-child(1) {
		order: 2;
	}

	.dropbtn {
		padding-right: 24px;
		background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDE0IDE0Ij4KICA8ZyBpZD0iR3JvdXBfMTM2MSIgZGF0YS1uYW1lPSJHcm91cCAxMzYxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzEwIC01MzApIj4KICAgIDxyZWN0IGlkPSJSZWN0YW5nbGVfMTE2IiBkYXRhLW5hbWU9IlJlY3RhbmdsZSAxMTYiIHdpZHRoPSIyIiBoZWlnaHQ9IjE0IiByeD0iMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzE2IDUzMCkiIGZpbGw9IiNiMjNiNDAiLz4KICAgIDxyZWN0IGlkPSJSZWN0YW5nbGVfMTE3IiBkYXRhLW5hbWU9IlJlY3RhbmdsZSAxMTciIHdpZHRoPSIyIiBoZWlnaHQ9IjE0IiByeD0iMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzI0IDUzNikgcm90YXRlKDkwKSIgZmlsbD0iI2IyM2I0MCIvPgogIDwvZz4KPC9zdmc+Cg==);
		background-repeat: no-repeat;
		background-position: right center;
		background-size: 1.4rem 1.4rem;
	}

	.dropdown.active .dropbtn {
		background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIyIiB2aWV3Qm94PSIwIDAgMTQgMiI+CiAgPGcgaWQ9Ikdyb3VwXzEzNjIiIGRhdGEtbmFtZT0iR3JvdXAgMTM2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMxMyAtNTU2KSI+CiAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlXzExNyIgZGF0YS1uYW1lPSJSZWN0YW5nbGUgMTE3IiB3aWR0aD0iMiIgaGVpZ2h0PSIxNCIgcng9IjEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMyNyA1NTYpIHJvdGF0ZSg5MCkiIGZpbGw9IiNiMjNiNDAiLz4KICA8L2c+Cjwvc3ZnPgo=);
	}
} */

@media screen and (min-width: 800px) {
	body {
		overflow: visible !important;
	}
}

@media (min-width: 800px) and (max-width: 999px) {

	.navbar__item-link,
	.navbar__secondary-selection {
		font-size: 14px;
	}

	.navbar__main-selection,
	.navbar__secondary-selection {
		gap: 2.7rem;
	}

	.logo {
		max-width: 17rem;
	}

	.dropdown-content {
		top: 6.8rem;
	}

	.dropdown-content a {
		font-size: 11px;
	}

	.tips-subtext {
		font-size: 9px;
	}

	.dropdown.active #products,
	.dropdown.active #tips {
		gap: 4.5rem;
	}

	.dropdown.active #recipes {
		gap: 0rem;
		white-space: nowrap;
	}
}

@media (min-width: 800px) and (max-width: 1000px) {

	.recipes-nav-graphic,
	.product-nav-graphic {
		max-width: 22rem;
		top: 3rem;
		position: relative;
	}

	.dropdown.active #tips {
		min-width: 58rem;
	}

	.dropdown-content .explore {
		padding: 4.5rem 0 3rem 0;
	}

	#tips .explore {
		padding-bottom: 0;
	}
}

@media (min-width: 1000px) and (max-width: 1340px) {

	.navbar__item-link,
	.navbar__secondary-selection {
		font-size: 17px;
	}

	.navbar__main-selection,
	.navbar__secondary-selection {
		gap: 4rem;
	}

	.logo {
		max-width: 21rem;
	}

	.dropdown-content a {
		font-size: 14px;
	}

	.tips-subtext {
		font-size: 12px;
	}

	.dropdown.active #products,
	.dropdown.active #tips {
		gap: 8rem;
	}

	.dropdown.active #recipes {
		gap: 5.2rem;
	}
}

@media (min-width: 1340px) and (max-width: 1540px) {

	.navbar__item-link,
	.navbar__secondary-selection {
		font-size: 20px;
	}

	.navbar__main-selection,
	.navbar__secondary-selection {
		gap: 6rem;
	}

	.logo {
		max-width: 22rem;
	}

	.dropdown-content {
		top: 8.6rem;
	}

	.dropdown-content a {
		font-size: 17px;
	}

	.tips-subtext {
		font-size: 15px;
	}

	.dropdown.active #products,
	.dropdown.active #recipes,
	.dropdown.active #tips {
		gap: 8.4rem;
	}
}

@media screen and (min-width: 1540px) {
	.dropdown-content {
		top: 10.77rem;
	}
}

@media screen and (min-width: 1800px) {
	.dropdown-content {
		top: 13.7rem;
	}
}

@media (min-width: 800px) and (max-width: 1104px) {
	.circle-container {
		width: 5rem;
		height: 5rem;
	}

	#dropdown-image--tip1 {
		max-width: 5rem;
	}

	#dropdown-image--tip2 {
		max-width: 5.7rem;
	}

	#dropdown-image--tip3 {
		max-width: 4.5rem;
	}

	#dropdown-image--tip4 {
		max-width: 2.2rem;
	}

	.dropdown-content .explore {
		width: 15rem;
	}
}

@media (min-width: 1000px) and (max-width: 1104px) {
	.explore {
		white-space: nowrap;
	}

	.dropdown-content .explore {
		width: 10rem;
	}
}

@media only screen and (min-width: 50em) {
	.active-path {
		border-bottom: #BDD5EA solid 6px;
		transform: translateY(6px);
		margin-top: -6px;
	}
}

.red-border {
	border-bottom-color: #B23B40;
}

.footer {
	background-color: #242B58;
	color: #FFFFFF;
	padding: 2rem 0rem 5rem 0rem;
}

.footer__inner {
	max-width: 1530px;
	margin: 0 auto;
}

.footer a {
	text-decoration: none;
	color: #FFFFFF;
}

.footer a:hover {
	text-decoration: underline;
}

.footer .footer-logo {
	max-width: 13rem;
}

@media only screen and (min-width: 50em) {
	.footer .footer-logo {
		max-width: 26.5rem;
	}
}

.footer__container {
	width: 100%;
	display: flex;
	flex-direction: column;
}

@media only screen and (min-width: 50em) {
	.footer__container {
		flex-direction: row;
	}
}

@media only screen and (min-width: 50em) {
	.footer__container>* {
		width: 25%;
	}
}

.footer__col {
	display: flex;
	justify-content: center;
	text-align: center;
}

@media only screen and (min-width: 50em) {
	.footer__col {
		text-align: left;
	}
}

.footer__col a {
	font-size: 21px;
	margin-top: 3.4rem;
}

.footer__col span {
	display: flex;
	flex-direction: column;
}

@media only screen and (min-width: 50em) {
	.footer__col span {
		margin-top: 3.4rem;
	}
}

.footer__social {
	display: grid;
	margin: 5rem 0;
}

@media only screen and (min-width: 50em) {
	.footer__social {
		grid-template-columns: repeat(4, 1fr);
		margin: 0;
	}
}

.footer__social-wrapper {
	display: grid;
	justify-content: center;
	text-align: center;
}

@media only screen and (min-width: 50em) {
	.footer__social-wrapper {
		margin-bottom: 5rem;
	}
}

.footer__social-wrapper span {
	gap: 2.7rem;
	display: flex;
}

.footer .connect {
	font-size: 19px;
	margin-bottom: 1.2rem;
	color: #FFFFFF;
}

.footer__copyright {
	display: flex;
	justify-content: center;
	text-align: center;
}

@media only screen and (min-width: 50em) {
	.footer__copyright {
		justify-content: flex-end;
		text-align: left;
	}
}

.footer__copyright span {
	display: flex;
	gap: 3.4rem;
	flex-direction: column;
}

@media only screen and (min-width: 50em) {
	.footer__copyright span {
		flex-direction: row;
	}
}

.footer__copyright #currentYear {
	margin-right: 3px;
}

.footer__copyright p {
	display: flex;
	color: #FFFFFF;
	font-size: 12px;
	margin: 0;
}

.footer__copyright a {
	font-size: 12px;
	color: #FFFFFF;
}

@media (min-width: 800px) and (max-width: 920px) {
	.footer .footer-logo {
		max-width: 22rem;
	}
}

.text-image-container .grid {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #F7F7FF;
}

@media screen and (min-width: 1095px) {
	.text-image-container .grid {
		grid-template-columns: 1fr 1fr;
	}
}

.text-image-container .item:nth-child(1) {
	background-color: #F7F7FF;
	display: grid;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 4rem;
	order: 2;
}

@media screen and (min-width: 1095px) {
	.text-image-container .item:nth-child(1) {
		padding: 9rem 14rem 9rem 18rem;
	}
}

@media (min-width: 800px) and (max-width: 1095px) {
	.text-image-container .item:nth-child(1) {
		transform: scale(0.8);
	}
}

@media (min-width: 1095px) and (max-width: 1300px) {
	.text-image-container .item:nth-child(1) {
		padding: 7rem 12rem 7rem 16rem;
	}
}

@media screen and (min-width: 1095px) {
	.text-image-container .item:nth-child(1) {
		order: 1;
		align-items: flex-start;
	}
}

.text-image-container .item:nth-child(2) {
	display: flex;
	align-items: center;
	order: 1;
}

@media screen and (min-width: 1095px) {
	.text-image-container .item:nth-child(2) {
		order: 2;
	}
}

.text-image-container h2,
.text-image-container p {
	text-align: center;
}

@media screen and (min-width: 1095px) {

	.text-image-container h2,
	.text-image-container p {
		text-align: left;
	}
}

.text-image-container h2 {
	margin-top: 5rem;
}

@media screen and (max-width: 1095px) {
	.text-image-container h2 {
		margin-top: 0rem;
	}
}

.text-image-container .button {
	display: flex;
}

.text-image-container img {
	width: 100%;
	height: auto;
}

@media (min-width: 1095px) and (max-width: 1545px) {
	.text-image-container p {
		font-size: 14px;
	}

	.text-image-container .our-story .headline {
		margin-bottom: 1rem;
	}

	.text-image-container .text-image-container h2 {
		margin-top: 2rem;
	}
}

@media (min-width: 1095px) and (max-width: 1300px) {
	.text-image-container .headline__medium {
		font-size: 32px;
	}
}

@media (min-width: 1300px) and (max-width: 1545px) {
	.text-image-container .headline__medium {
		font-size: 42px;
	}
}

.button-container {
	display: flex;
	justify-content: flex-start;
}

@media screen and (min-width: 1095px) {
	.button-container {
		justify-content: center;
	}
}

.button-container--who-is,
.button-container--tips-archive {
	display: flex;
	justify-content: center;
}

@media screen and (min-width: 1095px) {

	.button-container--who-is,
	.button-container--tips-archive {
		justify-content: flex-start;
	}
}

.headline-section {
	display: grid;
	padding: 4rem 3rem 0 3rem;
}

@media only screen and (min-width: 50em) {
	.headline-section {
		padding: 0;
	}
}

.headline-section h2 {
	text-align: center;
}

@media only screen and (min-width: 50em) {
	.headline-section h2 {
		max-width: 100rem;
		margin: 0 auto;
	}
}

.headline-section p {
	text-align: center;
	padding: 2.5rem 3rem 2rem 3rem;
}

@media only screen and (min-width: 50em) {
	.headline-section p {
		padding: 2.5rem 3rem 2rem 3rem;
		max-width: 95rem;
		margin: 0 auto;
	}
}

.headline-section .button {
	display: flex;
	margin: 0 auto 4rem auto;
}

@media only screen and (min-width: 50em) {
	.headline-section .button {
		margin: 0 auto 7rem auto;
	}
}

.headline-section--recipes-you-love {
	text-align: left;
	padding-bottom: 7rem !important;
}

@media screen and (max-width: 800px) {
	.headline-section--recipes-you-love {
		padding: 0 3rem 7rem 3rem;
	}
}

.headline-section--tips {
	padding: 7rem 0;
}

.headline-section--faq {
	padding: 7rem 0;
}

@media screen and (max-width: 800px) {
	.headline-icon {
		display: none;
	}
}

.product-taxonomy .headline-section p {
	max-width: 90rem;
}

.tips-taxonomy .headline-section p {
	max-width: 100rem;
}

/* global */
.swiper,
.swiperMarthasFavRecipes,
.social-swiper {
	height: auto;
}

.swiper a,
.swiperMarthasFavRecipes a,
.social-swiper a {
	text-decoration: none;
}

.swiper-container {
	width: 100%;
	margin: 0 auto;
	max-width: 155rem;
	position: relative;
}

@media screen and (max-width: 800px) {
	.swiper-container {
		padding: 0;
	}
}

@media (min-width: 800px) and (max-width: 1560px) {
	.swiper-container {
		padding: 0 3rem;
	}
}

@media (min-width: 800px) and (max-width: 1560px) {
	.swiperMarthasFavRecipes {
		padding: 0 3rem;
	}
}

.swiper-title {
	font-size: 21px;
	color: #242B58;
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 700;
	text-decoration: none;
	text-transform: capitalize;
	margin-top: 2rem;
}

.swiper-slide {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	max-width: 100%;
}

.swiper-slide img {
	display: block;
	width: 98%;
	height: auto;
	max-width: 49rem;
}

@media screen and (max-width: 300px) {
	.swiper-slide img {
		max-width: 20rem;
	}
}

@media only screen and (min-width: 112.5em) {
	.swiper-slide img {
		min-width: 49rem;
	}
}

.swiper-wrapper {
	height: auto !important;
}

@media screen and (max-width: 800px) {
	.bounce-prompt {
		animation: bounce 5s 1s infinite;
	}

	@keyframes bounce {

		0%,
		100% {
			transform: translateX(0);
		}

		25% {
			transform: translateX(25px);
		}

		50% {
			transform: translateX(0px);
		}
	}
}

.swiper-grid .swiper-slide:nth-child(n+4) {
	margin-top: 0;
}

@media only screen and (min-width: 50em) {
	.swiper-grid .swiper-slide:nth-child(n+4) {
		margin-top: 7rem;
	}
}

.swiper-grid .swiper-wrapper {
	height: auto;
	width: 100%;
	margin: 0 auto;
	max-width: 155rem;
}

.swiper-grid .swiper>.swiper-wrapper {
	flex-wrap: nowrap;
	display: flex;
}

@media only screen and (min-width: 50em) {
	.swiper-grid .swiper>.swiper-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.marthas-favorite {
	overflow: hidden;
}

.swiperMarthasFavRecipes {
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	overflow: clip;
	list-style: none;
	padding: 0;
	z-index: 1;
	display: block;
}

.swiperMarthasFavRecipes .custom-swiper-button-next,
.swiperMarthasFavRecipes .custom-swiper-button-prev {
	cursor: pointer;
	width: 5.3rem !important;
	height: 5.3rem !important;
	display: none !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1099 !important;
}

@media only screen and (min-width: 50em) {

	.swiperMarthasFavRecipes .custom-swiper-button-next,
	.swiperMarthasFavRecipes .custom-swiper-button-prev {
		display: block !important;
	}
}

.swiperMarthasFavRecipes .custom-swiper-button-next {
	right: -5% !important;
}

.swiperMarthasFavRecipes .custom-swiper-button-prev {
	left: -5% !important;
}

@media (min-width: 800px) and (max-width: 1335px) {
	.swiperMarthasFavRecipes .custom-swiper-button-next {
		right: -8% !important;
	}

	.swiperMarthasFavRecipes .custom-swiper-button-prev {
		left: -8% !important;
	}
}

@media (min-width: 1335px) and (max-width: 1745px) {
	.swiperMarthasFavRecipes .custom-swiper-button-next {
		right: -7% !important;
	}

	.swiperMarthasFavRecipes .custom-swiper-button-prev {
		left: -7% !important;
	}
}

@media (min-width: 800px) and (max-width: 1745px) {
	.swiper-content {
		transform: scale(0.9);
		transform-origin: center center;
		transition: transform 0.3s ease;
	}
}

.swiperMarthasFavRecipes {
	overflow: hidden;
}

.social-swiper {
	margin: 0 auto;
	max-width: 215rem;
	overflow: hidden;
}

@media only screen and (min-width: 112.5em) {
	.social-swiper .swiper-slide {
		flex-shrink: 1;
	}
}

@media only screen and (min-width: 112.5em) {
	.social-swiper .swiper-slide img {
		min-width: 37rem;
	}
}

.swiper-recipes-you-will-love,
#southern-101 {
	padding-bottom: 10rem;
}

.hero-image {
	display: flex;
	align-items: center;
	width: 100%;
	height: 30rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding-left: 3rem;
}

@media only screen and (min-width: 50em) {
	.hero-image {
		padding-left: 10%;
		height: 71rem;
	}
}

.hero-image__front-page {
	background-image: url(images/front-page-hero-mobile.135be843.png);
}

@media only screen and (min-width: 50em) {
	.hero-image__front-page {
		background-image: url(images/front-page-hero.01da4099.png);
	}
}

.hero-image__front-page .button {
	font-size: 11px;
}

@media only screen and (min-width: 50em) {
	.hero-image__front-page .button {
		font-size: 18px;
	}
}

.hero-image__front-page h1 {
	margin-bottom: 3rem;
}

@media only screen and (min-width: 50em) {
	.hero-image__front-page h1 {
		margin-bottom: 3rem;
	}
}

.hero-image__our-story {
	background-image: url(images/mw-story-hero-mobile.8b2fce25.png);
}

@media only screen and (min-width: 50em) {
	.hero-image__our-story {
		background-image: url(images/mw-story-hero.c7639bfb.png);
	}
}

.hero-image__our-story h1,
.hero-image__our-story p {
	color: #FFFFFF;
}

.hero-image__products-archive {
	background-image: url(images/products-hero-mobile.80032e7d.png);
}

@media only screen and (min-width: 50em) {
	.hero-image__products-archive {
		background-image: url(images/products-hero.d5300e8f.png);
	}
}

@media screen and (min-width: 1370px) {
	.hero-image__products-archive h1 {
		white-space: nowrap;
	}
}

.hero-image__recipes-archive {
	background-image: url(images/recipes-hero-mobile.469727e7.png);
}

@media only screen and (min-width: 50em) {
	.hero-image__recipes-archive {
		background-image: url(images/recipes-hero.7762a4d0.png);
	}
}

@media screen and (min-width: 1000px) {
	.hero-image__recipes-archive h1 {
		white-space: nowrap;
	}
}

.hero-image__tips-archive {
	background-image: url(images/tips-hero-mobile.b7437334.png);
}

@media only screen and (min-width: 50em) {
	.hero-image__tips-archive {
		background-image: url(images/tips-hero.a4af3a9c.png);
	}
}

.hero-image__tips-archive .hero-content p {
	max-width: 75%;
}

@media only screen and (min-width: 50em) {
	.hero-image__tips-archive .hero-content p {
		max-width: 65% !important;
	}
}

.hero-image .hero-content {
	max-width: 55%;
	text-align: left;
}

@media (min-width: 325px) and (max-width: 475px) {
	.hero-image .hero-content {
		max-width: 65%;
	}
}

@media screen and (max-width: 325px) {
	.hero-image .hero-content {
		max-width: 95%;
	}
}

.hero-image .hero-content p {
	max-width: 80%;
}

.textured-bg {
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(images/textured-background.b7b4319e.png);
}

@media only screen and (min-width: 50em) {
	.textured-bg {
		padding-bottom: 6.5rem;
	}
}

.marthas-tips-block {
	padding: 0rem 0 4rem 0;
}

@media only screen and (min-width: 50em) {
	.marthas-tips-block {
		padding: 7.5rem 0 12rem 0;
	}
}

.marthas-tips-block__box {
	display: flex;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.marthas-tips-block__box img {
	filter: brightness(70%);
	-o-object-fit: cover;
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
	transition: 0.3s all ease-in-out;
}

.marthas-tips-block__box:hover img {
	filter: brightness(100%);
}

.marthas-tips-block__content {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.marthas-favorite-recipes-block {
	padding: 0rem 0 4rem 0;
}

@media only screen and (min-width: 50em) {
	.marthas-favorite-recipes-block {
		padding: 8rem 0 8.5rem 0;
	}
}

.more-to-love-block {
	padding: 0rem 0 4rem 0;
	background-image: url(images/textured-background.b7b4319e.png);
}

@media only screen and (min-width: 50em) {
	.more-to-love-block {
		padding: 7rem 0 11rem 0;
	}
}

.more-to-love-block p {
	margin-bottom: 2rem;
}

.more-to-love-block h2 {
	max-width: 125rem;
}

.more-to-love-block a {
	color: #000;
}

@media only screen and (min-width: 50em) {
	.featured-products-block {
		margin-top: 6rem;
	}
}

.featured-products {
	display: flex;
	justify-content: center;
	gap: 2.7rem;
	padding: 0 5rem;
	flex-direction: column;
}

@media only screen and (min-width: 50em) {
	.featured-products {
		flex-direction: row;
		gap: 16rem;
		padding: 0 10rem;
	}
}

.featured-products a {
	display: flex;
	justify-content: center;
}

.featured-products__item {
	position: relative;
}

@media (min-width: 686px) and (max-width: 800px) {
	.featured-products__item {
		max-width: 500px;
	}
}

.product-image {
	max-width: 100%;
	max-height: auto;
}

@media only screen and (min-width: 75em) {
	.product-image {
		max-height: 70.6rem;
	}
}

.badge {
	position: absolute;
	bottom: -5px;
	right: -20px;
	max-width: 45%;
}

@media (min-width: 800px) and (max-width: 1050px) {
	.badge {
		max-width: 17.3rem;
	}
}

@media (min-width: 1050px) and (max-width: 1800px) {
	.badge {
		max-width: 21.3rem;
	}
}

@media only screen and (min-width: 50em) {
	.badge {
		right: -80px;
	}
}

@media only screen and (min-width: 112.5em) {
	.badge {
		max-width: 26.3rem;
	}
}

.who-is-martha-white-block h2,
.who-is-martha-white-block p {
	text-align: center;
}

@media screen and (min-width: 1094px) {

	.who-is-martha-white-block h2,
	.who-is-martha-white-block p {
		text-align: left;
	}
}

.who-is-martha-white-block p {
	margin: 1rem auto 3rem auto;
}

@media screen and (min-width: 1094px) {
	.who-is-martha-white-block p {
		max-width: 50rem;
		margin: 1rem 0 3rem 0;
	}
}

.our-story {
	padding: 0rem 0rem 4rem 0rem;
}

@media only screen and (min-width: 50em) {
	.our-story {
		padding: 4.7rem 0rem 6rem 0rem;
	}
}

.our-story .button-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media screen and (min-width: 1290px) {
	.our-story .button-container {
		grid-template-columns: 1fr 1fr;
		gap: 1.7rem;
	}
}

.our-story .button-container__col {
	gap: 1rem;
}

@media screen and (min-width: 1290px) {
	.our-story .button-container__col {
		gap: 1.7rem;
	}
}

.our-story .button-container__col:nth-child(1) {
	display: flex;
	justify-content: center;
	grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 37.5em) {
	.our-story .button-container__col:nth-child(1) {
		display: grid;
		justify-content: center;
	}
}

@media screen and (min-width: 1290px) {
	.our-story .button-container__col:nth-child(1) {
		justify-content: flex-end;
	}
}

.our-story .button-container__col:nth-child(2) {
	display: flex;
	justify-content: center;
	grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 37.5em) {
	.our-story .button-container__col:nth-child(2) {
		display: grid;
		justify-content: center;
	}
}

@media screen and (min-width: 1290px) {
	.our-story .button-container__col:nth-child(2) {
		justify-content: flex-start;
	}
}

.our-story .button {
	margin: 0;
	text-transform: lowercase;
}

@media only screen and (max-width: 37.5em) {
	.our-story .button {
		justify-content: center !important;
	}
}

@media only screen and (min-width: 50em) {
	.our-story .button {
		padding: 2rem 3rem;
	}
}

.our-story .button.active {
	background-color: #B23B40;
	color: #FFFFFF;
}

.our-story .headline {
	margin-bottom: 2rem;
}

@media only screen and (min-width: 50em) {
	.our-story .headline {
		margin-top: 2rem;
	}
}

.our-story .text-image-container {
	margin-top: 4rem;
}

@media only screen and (min-width: 50em) {
	.our-story .text-image-container {
		margin-top: 8rem;
	}
}

@media only screen and (max-width: 37.5em) {
	.our-story .text-image-container {
		margin-top: 4rem;
	}
}

@media (min-width: 1545px) and (max-width: 1645px) {
	.our-story .text-image-container .item:nth-child(1) {
		padding: 7rem 12rem 7rem 16rem;
	}
}

.product-detail {
	max-width: 120rem;
	margin: 0 auto;
	padding: 6rem 3rem 4rem 3rem;
	gap: 3.7rem;
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 950px) {
	.product-detail {
		grid-template-columns: 1fr 1fr;
		padding: 6rem 3rem 12rem 3rem;
	}
}

.product-detail__image img {
	max-width: 100%;
	height: auto;
}

.product-detail p {
	margin: 5rem 0;
}

.product-detail .button-container {
	justify-content: flex-start;
}

.nutritional-information-container {
	max-width: 150rem;
	margin: 0 auto;
	padding: 0rem 3rem 4rem 3rem;
}

@media (min-width: 950px) {
	.nutritional-information-container {
		padding: 0rem 3rem 12rem 3rem;
	}
}

.nutritional-information {
	gap: 3.7rem;
	display: grid;
	grid-template-columns: 1fr;
}

@media only screen and (min-width: 50em) {
	.nutritional-information {
		grid-template-columns: 1fr 1fr;
	}
}

.nutrition-facts-panel {
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
	border: 1px solid #000;
	margin: 1rem 0;
	max-width: 60rem;
	padding: 0.5rem;
}

.nutrition-facts-panel p {
	margin-top: 0 !important;
}

.nutrition-facts-panel table {
	border-collapse: collapse;
}

.nutrition-facts-panel__title {
	font-weight: bold;
	font-size: 2rem;
	margin: 0 0 0.25rem 0;
}

.nutrition-facts-panel__header {
	border-bottom: 10px solid #000;
}

.nutrition-facts-panel__header p {
	margin: 0;
}

.nutrition-facts-panel__table,
.nutrition-facts-panel__table--grid,
.nutrition-facts-panel__table--small {
	width: 100%;
}

.nutrition-facts-panel__table thead tr th,
.nutrition-facts-panel__table--grid thead tr th,
.nutrition-facts-panel__table--small thead tr th,
.nutrition-facts-panel__table thead tr td,
.nutrition-facts-panel__table--grid thead tr td,
.nutrition-facts-panel__table--small thead tr td {
	border: 0;
}

.nutrition-facts-panel__table th,
.nutrition-facts-panel__table--grid th,
.nutrition-facts-panel__table--small th,
.nutrition-facts-panel__table td,
.nutrition-facts-panel__table--grid td,
.nutrition-facts-panel__table--small td {
	font-weight: normal;
	text-align: left;
	padding: 0.25rem 0;
	border-top: 1px solid #000;
	white-space: nowrap;
}

.nutrition-facts-panel__table td:last-child,
.nutrition-facts-panel__table--grid td:last-child,
.nutrition-facts-panel__table--small td:last-child {
	text-align: right;
}

.nutrition-facts-panel__table .blank-cell,
.nutrition-facts-panel__table--grid .blank-cell,
.nutrition-facts-panel__table--small .blank-cell {
	width: 1rem;
	border-top: 0;
}

.nutrition-facts-panel__table .thick-row th,
.nutrition-facts-panel__table--grid .thick-row th,
.nutrition-facts-panel__table--small .thick-row th,
.nutrition-facts-panel__table .thick-row td,
.nutrition-facts-panel__table--grid .thick-row td,
.nutrition-facts-panel__table--small .thick-row td {
	border-top-width: 5px;
}

.small-info {
	line-height: 1;
	margin-top: 0 !important;
	font-size: 1.5rem;
}

.large-info {
	font-size: 2rem;
}

.serving-size,
.calories {
	display: flex;
	justify-content: space-between;
}

.serving-size {
	padding: 0px;
}

.nutrition-facts-panel__table--small {
	border-bottom: 1px solid #999;
	margin: 0 0 0.5rem 0;
}

.nutrition-facts-panel__table--small thead tr {
	border-bottom: 1px solid #000;
}

.nutrition-facts-panel__table--small td:last-child {
	text-align: left;
}

.nutrition-facts-panel__table--small th,
.nutrition-facts-panel__table--small td {
	border: 0;
	padding: 0;
}

.nutrition-facts-panel__table--grid {
	margin: 0 0 0.5rem 0;
}

.nutrition-facts-panel__table--grid td:last-child {
	text-align: left;
}

.nutrition-facts-panel__table--grid td:last-child::before {
	content: "â€¢";
	font-weight: bold;
	margin: 0 0.25rem 0 0;
}

.text-center {
	text-align: center;
}

.thick-end {
	border-bottom: 10px solid #000;
}

.thin-end {
	border-bottom: 1px solid #000;
}

.additional-nutrition ul {
	list-style-type: disc;
	font-size: 2rem;
	margin-left: 3.5rem;
}

@media only screen and (min-width: 50em) {
	.additional-nutrition ul {
		margin-left: 5.5rem;
	}
}

.additional-nutrition p {
	margin: 0rem;
}

.additional-nutrition p,
.additional-nutrition ul,
.additional-nutrition li {
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

.additional-nutrition__header {
	padding-top: 2rem;
	color: #242B58;
	font-size: 21px;
	font-weight: bold;
}

.table-three-col {
	border-collapse: collapse;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 0.5rem;
}

.table-three-col .daily-value {
	text-align: right;
}

.table-three-col td {
	font-size: 1.8rem;
}

@media only screen and (max-width: 37.5em) {
	.table-three-col td {
		font-size: 1.6rem;
	}
}

@media (min-width: 800px) and (max-width: 935px) {
	.table-three-col td {
		font-size: 1.6rem;
	}
}

.table-three-col th,
.table-three-col td {
	text-align: left;
}

.table-three-col .border-bottom {
	border-bottom: 1px solid black;
}

.table-three-col .border-left {
	border-left: 1px solid black;
}

.table-three-col .nested-table__item {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	padding: 5px 0;
}

.table-three-col .nested-table__item:nth-child(1) {
	padding-left: 1rem;
	border-left: 1px solid black;
}

.table-three-col .nested-table__item {
	border-bottom: transparent 1px solid;
}

.table-three-col th:nth-child(2),
.table-three-col th:nth-child(3) {
	text-align: right;
}

.table-three-col .indent {
	padding-left: 18px;
}

.table-three-col td {
	border-bottom: 1px solid black;
}

.serving-size {
	padding: 1rem 0;
}

.product-info-container {
	margin-bottom: 2rem;
}

@media screen and (max-width: 370px) {
	.product-detail-container::after {
		top: calc(100% - 546px) !important;
		width: 185px;
	}
}

@media (min-width: 370px) and (max-width: 949px) {
	.product-detail-container::after {
		top: calc(100% - 618px) !important;
	}
}

@media only screen and (min-width: 50em) {
	.archive-recipes-container {
		padding-top: 3.7rem;
		background-color: #FFFFFF;
	}
}

.archive-recipes {
	max-width: 215rem;
	margin: 0 auto;
}

@media (min-width: 800px) and (max-width: 1000px) {
	.archive-recipes__grid-item:nth-child(2) {
		padding: 0 3.5rem;
	}
}

@media (min-width: 1000px) and (max-width: 1520px) {
	.archive-recipes__grid-item:nth-child(2) {
		padding: 0 8.5rem;
	}
}

@media screen and (min-width: 1520px) {
	.archive-recipes__grid-item:nth-child(2) {
		padding: 0 12.5rem;
	}
}

.archive-recipes__grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media only screen and (min-width: 50em) {
	.archive-recipes__grid {
		grid-template-columns: 1fr 4fr;
	}
}

.archive-recipes__grid .aside {
	border-right: none;
	display: flex;
	flex-direction: column;
	padding: 2rem 4rem;
	color: #242B58;
	/* Target all checkbox headers except the first one */
}

@media only screen and (min-width: 50em) {
	.archive-recipes__grid .aside {
		border-right: 1px solid #707070;
	}
}

.archive-recipes__grid .aside__checkbox-header {
	text-transform: uppercase;
	color: #242B58;
	margin-bottom: 4.5rem;
	font-weight: bold;
}

@media only screen and (min-width: 50em) {
	.archive-recipes__grid .aside__checkbox-header {
		margin-bottom: 4rem;
		pointer-events: none;
	}
}

.archive-recipes__grid .aside .checkboxes-container {
	margin-bottom: 4rem;
}

.archive-recipes__grid .aside .arrow-filter-checkboxes {
	visibility: visible;
	margin-left: 1rem;
}

@media only screen and (min-width: 50em) {
	.archive-recipes__grid .aside .arrow-filter-checkboxes {
		visibility: hidden;
	}
}

.archive-recipes__grid .aside label {
	font-weight: bold;
	font-size: 16px;
	display: grid;
	grid-template-columns: 3rem auto;
	gap: 1rem;
	align-items: center;
	margin-bottom: 4rem;
	cursor: pointer;
}

.archive-recipes__grid .aside label input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 3rem;
	width: 3rem;
	font: inherit;
	background-color: transparent;
	border: 2px solid #707070;
	display: grid;
	place-content: center;
	margin: 0;
	color: currentColor;
	cursor: pointer;
}

@media only screen and (min-width: 50em) {
	.archive-recipes__grid .aside label input[type=checkbox] {
		font-size: 21px;
	}
}

.archive-recipes__grid .aside label input[type=checkbox]:checked::before {
	transform: scale(1);
}

.archive-recipes__grid .aside label input[type=checkbox]::before {
	content: "X";
	transform: scale(0);
	transition: 120ms transform ease-in-out;
}

.archive-recipes__grid .recipe-tile__title {
	margin-top: 2rem;
	margin-bottom: 1.8rem;
	color: #242B58;
	font-weight: bold;
	text-align: center;
	font-size: 18px;
}

@media only screen and (min-width: 50em) {
	.archive-recipes__grid .recipe-tile__title {
		margin-bottom: 5rem;
		font-size: 21px;
	}
}

.archive-recipes__grid-item-wrapper {
	background-color: #FFFFFF;
}

.archive-recipes .archive-recipes__recipe-tiles-grid {
	display: grid;
	justify-content: center;
	margin-top: 2.5rem;
	margin: 10 auto;
	background-color: #FFFFFF;
	max-width: 80rem;
	padding: 0 3rem;
	gap: 1rem;
	/* Initially, start with 2 columns */
	grid-template-columns: repeat(2, 1fr);
}

@media only screen and (min-width: 50em) {
	.archive-recipes .archive-recipes__recipe-tiles-grid {
		margin-top: 0rem;
		max-width: inherit;
		-moz-column-gap: 3.7rem;
		column-gap: 3.7rem;
	}
}

@media screen and (min-width: 1200px) {
	.archive-recipes .archive-recipes__recipe-tiles-grid {
		/* For screens wider than 800px, use 3 columns */
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 1800px) {
	.archive-recipes .archive-recipes__recipe-tiles-grid {
		/* For screens wider than 1040px, use 4 columns max */
		grid-template-columns: repeat(4, 1fr);
	}
}

.archive-recipes .recipe-tile--archive {
	max-width: 40rem;
	-o-object-fit: cover;
	object-fit: cover;
}

.archive-recipes .recipe-tile--archive img {
	/* Adjust image size here */
	max-width: 100%;
	height: auto;
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.archive-recipes #filter-checkboxes {
	display: none;
}

@media only screen and (min-width: 50em) {
	.archive-recipes #filter-checkboxes {
		display: grid;
	}
}

.archive-recipes #filter-checkboxes.openFilter {
	display: block;
}

.archive-recipes .pagination-found_recipes-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.archive-recipes .pagination-found_recipes-container .recipes-found {
	background-color: #FFFFFF;
	font-weight: bold;
}

@media only screen and (min-width: 50em) {
	.archive-recipes .pagination-found_recipes-container .recipes-found {
		padding-left: 3rem;
	}
}

.archive-recipes .pagination-found_recipes-container .pagination ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 1rem;
}

.filter-dropdown p {
	background-color: #B23B40;
	text-transform: uppercase;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem 0;
	font-weight: 700;
}

@media only screen and (min-width: 50em) {
	.filter-dropdown {
		display: none;
	}
}

.recipe-tile--archive {
	-o-object-fit: cover;
	object-fit: cover;
}

.recipe-tile--archive img {
	height: 30rem;
	transition: transform 0.5s ease;
}

@media (min-width: 0px) and (max-width: 300px) {
	.recipe-tile--archive img {
		width: 12rem;
		height: 12rem;
	}
}

@media (min-width: 300px) and (max-width: 400px) {
	.recipe-tile--archive img {
		width: 14rem;
		height: 14rem;
	}
}

@media (min-width: 400px) and (max-width: 500px) {
	.recipe-tile--archive img {
		width: 18rem;
		height: 18rem;
	}
}

@media (min-width: 500px) and (max-width: 600px) {
	.recipe-tile--archive img {
		width: 23rem;
		height: 23rem;
	}
}

@media (min-width: 600px) and (max-width: 700px) {
	.recipe-tile--archive img {
		width: 27rem;
		height: 27rem;
	}
}

@media (min-width: 700px) and (max-width: 800px) {
	.recipe-tile--archive img {
		width: 31rem;
		height: 31rem;
	}
}

@media (min-width: 800px) and (max-width: 840px) {
	.recipe-tile--archive img {
		width: 22rem;
		height: 22rem;
	}
}

@media (min-width: 840px) and (max-width: 875px) {
	.recipe-tile--archive img {
		width: 23rem;
		height: 23rem;
	}
}

@media (min-width: 875px) and (max-width: 930px) {
	.recipe-tile--archive img {
		width: 25rem;
		height: 25rem;
	}
}

@media (min-width: 930px) and (max-width: 1040px) {
	.recipe-tile--archive img {
		width: 28rem;
		height: 28rem;
	}
}

@media (min-width: 1040px) and (max-width: 1800px) {
	.recipe-tile--archive img {
		width: 31rem;
		height: 31rem;
	}
}

@media only screen and (min-width: 112.5em) {
	.recipe-tile--archive img {
		width: 40rem;
		height: 40rem;
		max-width: 40rem;
	}
}

@media only screen and (min-width: 112.5em) {
	.recipe-tile--archive {
		max-width: 41rem;
	}
}

.recipe-archive-image {
	display: flex;
	justify-content: center;
}

#dropdown-icon-filter.rotate {
	transform: rotate(-180deg);
	transition: transform 0.3s ease;
}

.checkboxes-container {
	display: none;
	/* Style the arrow icon */
}

@media only screen and (min-width: 50em) {
	.checkboxes-container {
		display: block !important;
	}
}

.checkboxes-container .rotate {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.checkboxes-container .arrow-filter-checkboxes {
	display: inline-block;
	transition: transform 0.3s ease;
}

.checkboxes-container .dropdown-container {
	display: none;
}

.checkboxes-container .dropdown-container.open {
	display: block;
}

.aside__checkbox-header .arrow-filter-checkboxes.rotate {
	transform: rotate(180deg);
}

.pagination {
	align-self: center;
	gap: 10px;
}

.pagination ul {
	display: flex;
	justify-content: flex-end;
}

@media only screen and (min-width: 50em) {
	.pagination ul {
		margin-right: 3rem;
	}
}

.pagination .page-item {
	display: block;
	margin: 0 5px;
}

.pagination .page-item a {
	font-size: 18px;
	margin-bottom: 1.5rem;
	color: #000;
	font-weight: 500;
}

@media only screen and (min-width: 50em) {
	.pagination .page-item a {
		font-size: 21px;
	}
}

.pagination .page-item img {
	display: flex;
	align-items: center;
}

.pagination .page-link {
	font-size: 18px;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

@media only screen and (min-width: 50em) {
	.pagination .page-link {
		font-size: 21px;
	}
}

.pagination .active {
	border-bottom: 2px solid #B23B40;
}

.pagination-found_recipes-container {
	display: flex;
	justify-content: space-evenly;
	align-content: center;
	padding: 1rem 3rem;
	max-width: 100%;
}

@media only screen and (min-width: 50em) {
	.pagination-found_recipes-container {
		justify-content: space-between;
		padding: 1rem 0rem;
		margin: 0 auto;
	}
}

.pagination-arrow-recipes {
	width: 1rem;
	height: 1rem;
	margin-top: 5px;
}

@media only screen and (min-width: 50em) {
	.pagination-arrow-recipes {
		width: 2rem;
		height: 2rem;
		margin-top: 5px;
	}
}

#clearAll,
.pagination-found_recipes-container {
	margin-bottom: 4rem;
}

#ClearAll,
.recipes-found {
	color: #242B58;
}

.product-archive__grid {
	display: grid;
	max-width: 140rem;
	margin: 0 auto;
	grid-gap: 5rem;
	padding: 10rem 3rem;
	grid-template-rows: 3;
	grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 37.5em) {
	.product-archive__grid {
		grid-template-columns: 1fr;
		grid-gap: 5rem;
		padding: 7rem 3rem;
	}
}

@media only screen and (min-width: 50em) {
	.product-archive__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 1320px) {
	.product-archive__grid {
		grid-gap: 10rem;
	}
}

.product-archive__item {
	padding: 1rem;
	flex-direction: column;
	display: grid;
	justify-content: center;
}

.product-archive__image {
	max-width: 100%;
	height: auto;
}

@media screen and (min-width: 600px) {
	.product-archive__image {
		max-height: 45rem;
	}
}

.product-archive__item-title {
	text-align: center;
	font-weight: bold;
	color: #242B58;
	margin-top: 4rem;
}

.recipe-template {
	padding: 0 3rem;
}

@media only screen and (max-width: 37.5em) {
	.recipe-template {
		padding: 0 1rem;
	}
}

.recipe-template--mobile {
	padding-top: 5rem;
}

@media only screen and (min-width: 50em) {
	.recipe-template--mobile {
		padding-top: 0rem;
	}
}

.recipe-template__container {
	background-color: #F7F7FF;
	max-width: 166rem;
	margin: 0 auto;
	padding: 4.5rem;
}

.recipe-template__container--footer {
	padding: 0;
}

.recipe-template__grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media screen and (min-width: 960px) {
	.recipe-template__grid {
		grid-template-columns: 1.2fr 1fr;
		gap: 4rem;
	}
}

.recipe-template__grid-item:nth-child(1) {
	order: 2;
	justify-content: center;
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 960px) {
	.recipe-template__grid-item:nth-child(1) {
		order: 1;
	}
}

.recipe-template__grid-item:nth-child(2) {
	order: 1;
}

@media screen and (min-width: 960px) {
	.recipe-template__grid-item:nth-child(2) {
		order: 2;
	}
}

@media screen and (min-width: 1900px) {
	.recipe-template__grid-item:nth-child(2) {
		max-width: 71.3rem;
	}
}

@media (min-width: 600px) and (max-width: 959px) {
	.recipe-template__grid-item:nth-child(2) {
		display: flex;
		justify-content: center;
	}
}

.recipe-template .recipe-image {
	max-width: 100%;
	height: auto;
	transform: translateY(-7rem);
	width: 41rem;
}

@media screen and (min-width: 800px) {
	.recipe-template .recipe-image {
		width: 61rem;
	}
}

@media screen and (min-width: 960px) {
	.recipe-template .recipe-image {
		width: 71rem;
	}
}

.recipe-template__print-button {
	align-items: center;
	display: flex;
}

.recipe-template__print-button #printButton {
	color: #FFFFFF;
}

.recipe-template__print-button .button {
	align-items: center;
	display: flex;
	gap: 2rem;
	padding: 1.2rem 4rem;
}

.recipe-template__socials {
	margin-top: 2.2rem;
	margin-bottom: 5rem;
	display: flex;
	gap: 4.3rem;
}

.recipe-template__details-container {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
}

@media only screen and (min-width: 50em) {
	.recipe-template__details-container-item {
		padding: 2rem;
	}
}

@media (min-width: 870px) and (max-width: 930px) {
	.recipe-template__details-container-item {
		padding: 1rem;
	}
}

@media (min-width: 800px) and (max-width: 870px) {
	.recipe-template__details-container-item {
		padding: 1rem;
	}
}

.recipe-template__details-container-item .top-item {
	color: #242B58;
	font-weight: bold;
	white-space: nowrap;
}

@media only screen and (max-width: 37.5em) {
	.recipe-template__details-container-item .top-item {
		white-space: normal;
	}
}

.recipe-template__details-container-item .bottom-item {
	color: #242B58;
	white-space: nowrap;
}

@media only screen and (max-width: 37.5em) {
	.recipe-template__details-container-item .bottom-item {
		white-space: normal;
	}
}

@media (min-width: 960px) and (max-width: 1175px) {
	.recipe-template__detail-content {
		margin-top: 4rem;
	}
}

.recipe-template__detail-content p:not(:first-child) {
	margin-top: 4rem;
}

.recipe-template__ingredients-list p {
	margin-top: 0 !important;
}

.recipe-template__detail-header {
	font-weight: bold;
	color: #242B58;
	text-transform: capitalize;
	margin-top: 2rem;
}

.recipe-template__detail-header--ingredients {
	margin: 5.4rem 0 2rem 0;
}

@media only screen and (min-width: 50em) {
	.recipe-template__detail-header--ingredients {
		margin: 0rem 0 2rem 0;
	}
}

.recipe-template__details-container-item:nth-child(1) {
	border-top: 1px solid gray;
	border-bottom: 1px solid gray;
	border-right: 1px solid gray;
}

.recipe-template__details-container-item:nth-child(2),
.recipe-template__details-container-item:nth-child(3) {
	border-top: 1px solid gray;
	border-bottom: 1px solid gray;
	border-right: 1px solid gray;
}

.recipe-template__details-container-item:nth-child(4) {
	border-top: 1px solid gray;
	border-bottom: 1px solid gray;
}

.recipe-template .headline {
	margin-top: 0rem;
}

@media only screen and (min-width: 50em) {
	.recipe-template .headline {
		margin-top: 3rem;
	}
}

.recipe-template .button {
	margin-top: 5rem;
	margin-bottom: 4.5rem;
}

@media only screen and (min-width: 50em) {
	.recipe-template .button {
		margin-top: 5rem;
	}
}

.recipe-template__footer {
	background-color: #F7E4E4;
}

.recipe-template__footer-content {
	display: flex;
	align-items: center;
	padding: 2.5rem 7rem;
	gap: 2rem;
}

@media only screen and (min-width: 50em) {
	.recipe-template__footer-content {
		padding: 4.8rem 11rem;
		gap: 4rem;
	}
}

@media screen and (min-width: 535px) {
	.recipe-template__footer-content {
		flex-direction: row;
	}
}

@media screen and (max-width: 535px) {
	.recipe-template__footer-content {
		flex-direction: column;
	}
}

.recipe-template__footer-content img {
	width: 5.7rem;
}

.recipe-template__footer-content a,
.recipe-template__footer-content p {
	color: #242B58;
}

.recipe-template__pagination-arrows {
	display: flex;
	justify-content: space-between;
	background-color: #FFFFFF;
	padding: 8.5rem 0;
}

.recipe-template__pagination-arrows .pagination-link {
	display: flex;
	align-items: center;
}

.recipe-template__pagination-arrows .pagination-link a {
	color: #000;
	font-size: 16px;
}

@media only screen and (min-width: 50em) {
	.recipe-template__pagination-arrows .pagination-link a {
		font-size: 21px;
	}
}

.recipe-template .pagination-link--previous {
	text-align: right;
}

.recipe-template .pagination-link--previous img {
	margin-right: 10px;
}

.recipe-template .pagination-link--next {
	text-align: left;
}

.recipe-template .pagination-link--next img {
	margin-left: 10px;
}

@media screen and (max-width: 500px) {
	.recipe-template .pagination-link {
		font-size: 1.2rem;
	}
}

.recipe-template a {
	color: #B23B40;
}

@media print {

	/* Hide the elements when printing */
	.exclude-from-print {
		display: none !important;
	}

	*:not(.exclude-from-print) {
		background-color: white !important;
		color: black !important;
	}

	*:not(.exclude-from-print) a {
		color: black !important;
	}

	*:not(.exclude-from-print) .recipe-template {
		padding: 0;
	}
}

.share {
	font-weight: bold;
	text-transform: uppercase;
	color: #242B58;
}

.tips-archive {
	margin-top: 8rem;
}

@media only screen and (max-width: 37.5em) {
	.tips-archive {
		margin-top: 4rem;
	}
}

.tips-archive p {
	margin: 1rem auto 3rem auto;
	max-width: 75%;
}

@media screen and (min-width: 1095px) {
	.tips-archive p {
		margin: 1rem 0 3rem 0;
	}
}

.tips-archive:nth-of-type(4) {
	margin-bottom: 8rem;
}

@media only screen and (max-width: 37.5em) {
	.tips-archive:nth-of-type(4) {
		margin-bottom: 4rem;
	}
}

.product-taxonomy__grid {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	max-width: 140rem;
	margin: 0 auto;
	grid-gap: 10rem;
	padding: 10rem 3rem;
	align-items: baseline;
}

@media only screen and (max-width: 37.5em) {
	.product-taxonomy__grid {
		grid-gap: 5rem;
		padding: 7rem 3rem;
	}
}

@media screen and (min-width: 1320px) {
	.product-taxonomy__grid {
		grid-gap: 10rem;
	}
}

.product-taxonomy__item {
	padding: 1rem;
	flex-direction: column;
	max-width: 288px;
}

.product-taxonomy__image img {
	max-width: 100%;
	height: auto;
}

.product-taxonomy__item-title {
	text-align: center;
	font-weight: bold;
	color: #242B58;
	margin-top: 4rem;
}

.gladiola-mixes {
	background-color: #F7F7FF;
	padding-top: 10rem;
}

.tips-taxonomy__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	padding: 4rem 3rem;
	max-width: 152rem;
	margin: 0 auto;
}

@media only screen and (min-width: 50em) {
	.tips-taxonomy__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.tips-taxonomy__card {
	background-color: #F7F7FF;
	padding: 5rem;
	background-color: #F7F7FF;
	padding: 5rem;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

@media only screen and (min-width: 50em) {
	.tips-taxonomy__card {
		padding: 8rem;
		display: block;
	}
}

.tips-taxonomy__card p {
	margin-top: 1rem;
}

.tips-taxonomy .headline-section .button {
	margin: 2;
	display: flex;
}

.tips-category-headline {
	padding-top: 2rem;
}

@media only screen and (min-width: 50em) {
	.tips-category-headline {
		padding: 8rem 3rem 0 3rem;
	}
}

.cooking-tips .button-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media screen and (min-width: 1190px) {
	.cooking-tips .button-container {
		grid-template-columns: 1fr 1fr;
		gap: 1.7rem;
	}
}

.cooking-tips .button-container__col {
	gap: 1rem;
}

@media screen and (min-width: 1190px) {
	.cooking-tips .button-container__col {
		gap: 1.7rem;
	}
}

.cooking-tips .button-container__col:nth-child(1) {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 37.5em) {
	.cooking-tips .button-container__col:nth-child(1) {
		display: grid;
		justify-content: center;
	}
}

@media screen and (min-width: 1190px) {
	.cooking-tips .button-container__col:nth-child(1) {
		justify-content: flex-end;
	}
}

.cooking-tips .button-container__col:nth-child(2) {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 37.5em) {
	.cooking-tips .button-container__col:nth-child(2) {
		display: grid;
		justify-content: center;
	}
}

@media screen and (min-width: 1190px) {
	.cooking-tips .button-container__col:nth-child(2) {
		justify-content: flex-start;
	}
}

.cooking-tips .button {
	width: 27rem;
	margin: 0;
	justify-content: center;
	background-color: transparent;
}

.cooking-tips .button:hover {
	background-color: #B23B40;
	color: #FFFFFF;
}

@media (min-width: 800px) and (max-width: 1190px) {
	.cooking-tips .button {
		width: 33rem;
	}
}

@media screen and (min-width: 1190px) {
	.cooking-tips .button {
		width: 35rem;
	}
}

@media screen and (max-width: 485px) {
	.cooking-tips .button {
		font-size: 11px;
		width: 20rem;
	}
}

.southern-basics .button-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media screen and (min-width: 1250px) {
	.southern-basics .button-container {
		grid-template-columns: 1fr 1fr;
		gap: 1.7rem;
	}
}

.southern-basics .button-container__col {
	gap: 1rem;
}

@media screen and (min-width: 1250px) {
	.southern-basics .button-container__col {
		gap: 1.7rem;
	}
}

.southern-basics .button-container__col:nth-child(1) {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 37.5em) {
	.southern-basics .button-container__col:nth-child(1) {
		display: grid;
		justify-content: center;
	}
}

@media screen and (min-width: 1250px) {
	.southern-basics .button-container__col:nth-child(1) {
		justify-content: flex-end;
	}
}

.southern-basics .button-container__col:nth-child(2) {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 37.5em) {
	.southern-basics .button-container__col:nth-child(2) {
		display: grid;
		justify-content: center;
	}
}

@media screen and (min-width: 1250px) {
	.southern-basics .button-container__col:nth-child(2) {
		justify-content: flex-start;
	}
}

.southern-basics .button {
	width: 27rem;
	margin: 0;
	justify-content: center;
	background-color: transparent;
}

.southern-basics .button:hover {
	background-color: #B23B40;
	color: #FFFFFF;
}

@media (min-width: 800px) and (max-width: 1250px) {
	.southern-basics .button {
		width: 37rem;
	}
}

@media screen and (min-width: 1250px) {
	.southern-basics .button {
		width: 37rem;
	}
}

@media screen and (max-width: 485px) {
	.southern-basics .button {
		font-size: 11px;
		width: 20rem;
	}
}

.single-post main {
	max-width: 101rem;
	margin: 0 auto;
	padding: 5rem 3rem;
}

@media only screen and (min-width: 50em) {
	.single-post main {
		padding: 10rem 3rem;
	}
}

.single-post__image img {
	max-width: 100%;
	height: auto;
	padding: 0 3rem;
}

.single-post h1,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
	color: #242B58;
	font-family: "Figtree", sans-serif;
	font-weight: 700;
	margin-top: 2rem;
}

@media only screen and (min-width: 50em) {

	.single-post h1,
	.single-post h2,
	.single-post h3,
	.single-post h4,
	.single-post h5,
	.single-post h6 {
		margin-top: 5rem;
	}
}

.single-post h1 {
	font-size: 35px;
}

@media only screen and (min-width: 50em) {
	.single-post h1 {
		font-size: 65px;
	}
}

.single-post h2 {
	font-size: 28px;
}

@media only screen and (min-width: 50em) {
	.single-post h2 {
		font-size: 52px;
	}
}

.single-post h3 {
	font-size: 20px;
}

@media only screen and (min-width: 50em) {
	.single-post h3 {
		font-size: 36px;
	}
}

.single-post h4 {
	font-size: 18px;
}

@media only screen and (min-width: 50em) {
	.single-post h4 {
		font-size: 32px;
	}
}

.single-post h5 {
	font-size: 14px;
}

@media only screen and (min-width: 50em) {
	.single-post h5 {
		font-size: 28px;
	}
}

.single-post h6 {
	font-size: 12px;
}

@media only screen and (min-width: 50em) {
	.single-post h6 {
		font-size: 24px;
	}
}

.single-post a {
	color: #B23B40;
	text-decoration: underline;
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

.single-post li {
	margin-left: 1rem;
}

.single-post p,
.single-post li {
	margin-top: 1rem;
	font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}

@media only screen and (min-width: 50em) {

	.single-post p,
	.single-post li {
		font-size: 21px;
	}
}

.single-post .social-box {
	position: fixed;
	top: 25%;
	left: 0;
	background-color: #F7E4E4;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	transform: scale(0.8);
	left: -10;
}

@media only screen and (min-width: 50em) {
	.single-post .social-box {
		left: 0;
		transform: scale(1);
	}
}

.single-post .social-box a:nth-child(1) img {
	width: 1.5rem;
}

.single-post .social-box a:nth-child(2) img {
	width: 2.3rem;
}

.single-post .social-box a:nth-child(3) img {
	width: 3rem;
}

.single-tip-headline {
	padding: 2rem 0;
}

@media only screen and (min-width: 50em) {
	.single-tip-headline {
		padding: 4rem 0;
	}
}

.faq__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	padding: 4rem 3rem;
	max-width: 152rem;
	margin: 0 auto;
}

@media only screen and (min-width: 50em) {
	.faq__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (min-width: 50em) {
	.faq__grid {
		padding: 8rem 3rem;
	}
}

.faq__card {
	background-color: #F7F7FF;
	padding: 5rem;
	background-color: #F7F7FF;
	padding: 5rem;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

@media only screen and (min-width: 50em) {
	.faq__card {
		padding: 8rem;
		display: block;
	}
}

.faq__card p {
	margin-top: 1rem;
}

.faq .button-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media screen and (min-width: 1230px) {
	.faq .button-container {
		grid-template-columns: 1fr 1fr;
		gap: 1.7rem;
	}
}

.faq .button-container__col {
	gap: 1rem;
}

@media screen and (min-width: 1230px) {
	.faq .button-container__col {
		gap: 1.7rem;
	}
}

.faq .button-container__col:nth-child(1) {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 37.5em) {
	.faq .button-container__col:nth-child(1) {
		display: grid;
		justify-content: center;
	}
}

@media screen and (min-width: 1230px) {
	.faq .button-container__col:nth-child(1) {
		justify-content: flex-end;
	}
}

.faq .button-container__col:nth-child(2) {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 37.5em) {
	.faq .button-container__col:nth-child(2) {
		display: grid;
		justify-content: center;
	}
}

@media screen and (min-width: 1230px) {
	.faq .button-container__col:nth-child(2) {
		justify-content: flex-start;
	}
}

.faq .button {
	width: 27rem;
	margin: 0;
	justify-content: center;
	background-color: transparent;
}

.faq .button:hover {
	background-color: #B23B40;
	color: #FFFFFF;
}

@media (min-width: 800px) and (max-width: 1230px) {
	.faq .button {
		width: 38rem;
	}
}

@media screen and (min-width: 1230px) {
	.faq .button {
		width: 37rem;
	}
}

@media screen and (max-width: 485px) {
	.faq .button {
		font-size: 11px;
		width: 20rem;
	}
}

#general-questions {
	padding-top: 4rem;
}

.flour-safety main {
	max-width: 101rem;
	margin: 0 auto;
	padding: 5rem 3rem;
}

@media only screen and (min-width: 50em) {
	.flour-safety main {
		padding: 10rem 3rem;
	}
}

.flour-safety__image img {
	max-width: 100%;
	height: auto;
	padding: 0 3rem;
}

.single-tip-headline {
	padding: 2rem 0;
}

@media only screen and (min-width: 50em) {
	.single-tip-headline {
		padding: 4rem 0;
	}
}

.contact-us {
	display: grid;
	justify-content: center;
	max-width: 150rem;
	margin: 0 auto;
	padding-bottom: 4rem;
}

/*# sourceMappingURL=style-index.css.map*/
