@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* --------------- RESET ------------- */
*, *::before, *::after {
	box-sizing: border-box;
}
* {
	margin: 0;
	-webkit-tap-highlight-color: transparent;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color: var(--text);
	font-optical-sizing: auto;
	overflow-x: hidden;
	/* display: flex; */
	/* flex-direction: column; */
}
html {
	font-size: 100%;
	scroll-behavior: smooth;
	/* overflow-y: scroll; */
}
img {
	max-width: 100%;
	display: block;
	height: auto;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
:root {
	--red: #CF0019;
	--blue: #001A49;
	--primary: #006183;
	--green: #056726;
	--text: #4f4f4f;
	interpolate-size: allow-keywords;
}
/* -------------- LAYOUT ------------- */
.header {
	background-color: #ffffffa3;
	display: flex;
	flex-direction: column;
}
.headerContent {
	margin: 0 auto;
	/* padding: 30px 0; */
	/* color: var(--primary); */
	display: grid;
	/* grid-template-columns: 1fr; */
	align-items: center;
	justify-content: center;
}
.headerContent > *:nth-child(1) {
	justify-self: left;
	align-self: center;
}
.headerContent > *:nth-child(2) {
	justify-self: center;
	align-self: center;
}
.headerContent > *:nth-child(3) {
	justify-self: flex-end;
	align-self: center;
}
.sectionContent {
	margin: 0 auto;
	padding: 50px 0;
	min-height: 300px;
}
.footer {
	background-color: var(--blue);
	color: white;
}
.footerContent {
	min-height: 550px;
	margin: auto;
	padding: 30px 0;
	color: white;
}
.headerContent, .sectionContent, .footerContent, .sectionExpandContent {
	width: min(100% - 50px, 980px);
}
.letterbox {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	background-color: var(--primary);
	z-index: -1;
	position: relative;
	/* mask-image: url('/images/mask.svg'); */
	/* mask-size: 200%; */
	/* mask-repeat: no-repeat; */
	/* mask-position: calc(50%) bottom; */
	background-image: url(/images/strawberry-top.jpg);
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	/* min-height: 550px; */
	text-align: center;
	color: white;
	margin-top: -181px;
	height: 100vh;
}
.headerNav {
	display: flex;
	flex-direction: column;
	overflow-y: visible;
	height: 100%;
	/* position: sticky; */
}
/* -------------- PAGES -------------- */
.logoHeader {
	max-height: 112px;
	margin: 10px;
}
.logoFooter {
	max-height: 122px;
}
.sectionTop {
	min-height: 220px;
	/* background-color: green; */
	display: flex;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.address {
	display: flex;
	flex-direction: column;
	font-size: 90%;
	align-items: center;
	text-align: center;
	line-height: 1.5em;
}
.bgPartner {
	background-image: url(/images/bg-partner.jpg);
}
.bgFruit {
	background-image: url(/images/bg-fruit.jpg);
}
.bgContact {
	background-image: url(/images/bg-contact.jpg);
}
.logoWhite {
	/* width: initial; */
	/* margin: auto; */
	max-height: 127px;
}
.graphic {
	display: flex;
	justify-content: center;
}
.fruit {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
	row-gap: 30px;
}
.fruit > div {
	min-height: 210px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 400;
	text-align: center;
	font-size: 133%;
}
.support {
	display: grid;
	/* gap: 10px; */
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
	row-gap: 30px;
	font-size: 95%;
}
.support > div {
	/* border: 1px solid var(--green); */
	min-height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--green);
	font-weight: 600;
	text-align: center;
	margin: 20px 0;
}
.line {
	border-left: 1px solid var(--green);
}
.logos {
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
	padding: 0 100px;
	flex-wrap: wrap;
}
.circleBlue::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #1e92d2;
	border-radius: 50%;
	margin-right: 8px;
	vertical-align: middle;
	margin-top: -4px;
}
.circleGreen::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #67c167;
	border-radius: 50%;
	margin-right: 8px;
	vertical-align: middle;
	margin-top: -4px;
}
.graphic img {
	max-height: 62px;
	margin-bottom: 20px;
}
/* -------------- FONTS -------------- */
.t1 {
	color: var(--red);
	text-align: center;
	font-size: 140%;
	margin: 30px 0 4px 0;
	line-height: 1.2em;
}
.t2 {
	text-align: center;
	font-size: 138%;
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
	letter-spacing: -0.03em;
	font-weight: 200;
	text-wrap: balance;
	line-height: 1.2em;
}
h1 {
	font-size: 270%;
}
h2 {
	font-size: 220%;
	/* color: white; */
}
h3 {
	font-size: 160%;
}
h4 {
	font-size: 120%;
}
.h1Body {
	font-size: 278%;
	margin-bottom: 40px;
	text-align: center;
	font-weight: 400;
}
.h2Body {
	font-size: 260%;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 400;
	color: var(--green);
}
p {
	font-size: 110%;
	line-height: 1.6em;
	text-align: center;
}
p + p {
	margin-top: 10px;
}
strong {
	font-weight: 400;
}
.tc {
	text-align: center;
}
.white {
	color: white;
}
/* --------------- NAV --------------- */
.nav {
	/* background-color: var(--primary); */
	color: #000000;
	position: sticky;
	top: 0;
	z-index: 1001;
	/* border-bottom: 1px solid white; */
}
.navMenu {
	display: none;
}
.navContent {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	max-width: 1020px;
	background-color: inherit;
	overflow: visible;
	line-height: 20px;
	text-transform: uppercase;
	font-size: 100%;
	/* position: sticky; */
}
.navContent > * {
	padding: 14px 22px;
	transition: color .3s ease;
}
.navContent > a:hover {
	color: var(--red);
}
.subMenuContainer {
	background-color: inherit;
	cursor: pointer;
	position: relative;
	height: auto;
	z-index: 100001;
}
.subMenu {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	z-index: 10002;
	height: auto;
	height: 0;
	background-color: inherit;
	align-self: flex-start;
	align-items: center;
	position: absolute;
	white-space: nowrap;
	left: 8px;
	top: 40px;
	border-radius: 0 0 8px 8px;
	transition: height .2s ease-out;
}
.subMenu > * {
	padding: 10px 10px;
	align-content: center;
	border: 1px solid white;
	border-top: transparent;
	min-width: 182px;
	transition: color .3s ease;
}
.subMenu a:hover {
	color: var(--lightGrey);
}
.subMenu > *:last-child {
	border-radius: 0 0 8px 8px;
}
.openSubMenu {
	height: auto;
	box-shadow: #00000047 1px 9px 8px 2px;
}
.navArrow::after {
	content: "";
	display: inline-block;
	left: 5px;
	top: -3px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid currentColor;
	clear: both;
	-webkit-transition: transform 0.4s;
	transition: transform 0.4s;
	position: relative;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.spin::after {
	-webkit-transform: rotate(0deg) !important;
	transform: rotate(0deg) !important;
}
/* --------------- GRID -------------- */
.grid {
	display: grid;
	grid-gap: 20px;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
}
.grid > * {
	min-width: 100%;
}
.gridFooter {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	/* align-items: center; */
}
.gridFooter > *:nth-child(1) {
	justify-self: center;
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	align-items: center;
}
.gridFooter > *:nth-child(3) {
	justify-self: center;
}
/* -------------- ICONS -------------- */
.iconsHeader svg {
	fill: var(--primary);
	border: 1px var(--primary) solid;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	padding: 5px;
	margin: 0 4px;
	transform: rotate(0deg);
	transition: transform 0.4s ease-in;
	transition: transform 0.4s ease-in,
		-webkit-transform 0.4s ease-in;
	cursor: pointer;
	vertical-align: middle;
}
.iconsHeader svg:hover {
	transform: rotate(360deg);
	transition: -webkit-transform 0.4s ease-in;
	transition: transform 0.4s ease-in;
	transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in;
}
.iconsFooter svg {
	fill: white;
	border: 1px white solid;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	padding: 5px;
	margin: 0 4px;
	transform: rotate(0deg);
	transition: transform 0.4s ease-in;
	transition: transform 0.4s ease-in,
		-webkit-transform 0.4s ease-in;
	cursor: pointer;
	vertical-align: middle;
}
.iconsFooter svg:hover {
	transform: rotate(360deg);
	transition: -webkit-transform 0.4s ease-in;
	transition: transform 0.4s ease-in;
	transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in;
}
.cross {
	color: #e3e3e3;
	background: #ffffff;
	border-radius: 50%;
	border: 5px solid #e3e3e3;
	cursor: pointer;
	position: absolute;
	right: -16px;
	top: -16px;
	width: 36px;
	height: 36px;
	fill: #d1d1d1;
	display: inline-block;
	text-align: center;
	font-size: 120%;
	line-height: 24px;
	font-weight: 700;
}
/* -------------- IMAGES ------------- */
/* .sectionContent img {
	margin-bottom: 16px;
} */
/* -------------- BUTTONS ------------- */
.btn {
	cursor: pointer;
	color: #ffffff;
	text-align: center;
	user-select: none;
	border: 1px solid transparent;
	padding: 6px 30px;
	border-radius: 3px;
	transition: box-shadow 0.3s ease !important;
	box-shadow: 0 0 0 3px rgba(187, 187, 187, 0.5);
	margin: 20px auto;
	white-space: nowrap;
	font-size: 102%;
	/* box-shadow: inset 0px 1px 0px 0px #ffffff42; */
	background-color: var(--primary);
}
.btn:hover {
	text-decoration: none;
	box-shadow: 0 0 0 3px rgb(191 191 191);
}
.btn:focus {
	outline: 0;
	box-shadow: 0 0 0 3px rgb(191 191 191);
}
.btnCookie {
	max-width: 160px;
}
/* ----------- CONTACT FORM ---------- */
input, textarea {
	border: 1px solid rgba(0, 0, 0, 0.3);
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 90%;
	padding: 5px;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	border-radius: 3px;
	width: 79%;
}
input:focus, input:focus, textarea:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
input[type=checkbox] {
	width: initial;
	margin: 0px 13px 0px 0;
	vertical-align: bottom;
}
textarea {
	min-height: 9em;
}
.rowForm {
	display: flex;
	margin: 0 0 10px 0;
	justify-content: space-between;
}
.rowForm label {
	font-size: 75%;
}
.btnContainer {
	display: flex;
	justify-content: flex-end;
}
.thankyou {
	display: none;
	position: fixed;
	z-index: 2001;
	padding-top: 100px;
	/* border-radius: 2px; */
	left: 0;
	top: 0;
	color: white;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.5);
}
.thankyouContent {
	position: relative;
	background-color: var(--primary);
	margin: 80px auto;
	padding: 40px;
	border-radius: 6px;
	border: 4px solid #ffffff;
	width: 400px;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
	animation-name: animateThankyou;
	animation-duration: 0.6s;
	text-align: center;
	line-height: 1.8em;
}
.closeThankyou {
	content: 'X';
	position: absolute;
	top: -12px;
	right: -15px;
	background: var(--primary);
	display: block;
	border: 3px solid #ffffff;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 15px;
	line-height: 24px;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
}
.showThankyou {
	display: block;
}
/* -------------- EXPAND ------------- */
.sectionExpand {
	background-color: var(--lightGrey);
	position: relative;
	height: 0;
	overflow: hidden;
	border-top: 2px solid var(--primary);
	transition: height .5s ease, visibility .5s;
	interpolate-size: allow-keywords;
}
.sectionExpandContent {
	/* width: min(100% - 50px, 1020px); */
	margin: 0 auto;
	padding: 70px 0;
}
.expandButton {
	position: relative;
	width: 164px;
	height: 45px;
	background-color: var(--primary);
	left: auto;
	left: 0;
	right: 0;
	z-index: 2;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	transition: box-shadow .2s;
	color: white;
	display: flex;
	margin-bottom: -24px;
	align-items: center;
	justify-content: center;
	font-size: 80%;
	font-weight: 600;
	font-size: 102%;
	box-shadow: inset 0px 1px 0px 0px #ffffff42;
	background: linear-gradient(to bottom, var(--primary) 5%, var(--primary) 100%);
	border: 1px solid var(--primary);
}
.expandButton:hover {
	filter: brightness(104%);
	box-shadow: none;
}
.expandButton::after {
	content: "";
	display: inline-block;
	left: 8px;
	top: -1px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid rgb(255 255 255 / 94%);
	clear: both;
	-webkit-transition: transform 0.4s;
	transition: transform 0.4s;
	position: relative;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.expand {
	height: auto;
	visibility: visible;
}
.spinArrow::after {
	transform: rotate(0deg) !important;
}
.gridExpand {
	display: grid;
	grid-template-columns: 60% 40%;
	gap: 20px;
}
.gridExpand-2 {
	border: 1px solid var(--grey);
	border-radius: 6px;
	padding: 30px;
}
.checkbox {
	font-size: 61%;
	margin: 12px 0 0 108px;
	accent-color: green;
}
.btnContainer {
	display: flex;
	justify-content: flex-start;
	margin: 3px 0 0px 110px;
}
/* ------------- ACCORDION ------------ */
.accordion .accordionButton:not(:first-child) {
	margin-top: 10px;
}
.accordionButton {
	background: var(--primary);
	color: white;
	padding: 14px;
	font-size: 96%;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	position: relative;
	transition: background-color .3s ease-out;
	cursor: pointer;
	box-shadow: inset 0px 2px 0px 0px #ffffff42;/
}
.accordionButton:hover {
	/* filter: brightness(110%); */
	background-color: #6b6b6b;
}
.accordionButton::after {
	text-align: center;
	content: var(--open, "+");
	width: 15px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}
.accordionContainer {
	border: 1px solid #d3d3d3;
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease, opacity 0.3s ease;
	/* border-radius: 0 0 10px 10px; */
	transform: translateY(-2px);
	border-top: 1px solid transparent;
	/* z-index: -1; */
	position: relative;
	opacity: 0;
	/* transition: all 0.3s ease; */
}
.accordionContent {
	padding: 20px;
}
.accordionExpand {
	height: auto;
	opacity: 1;
}
/* -------------- SITE MAP ------------ */
.siteMap {
	display: flex;
	/* justify-content: center; */
	white-space: nowrap;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}
.siteMap a {
	margin: 0 0 14px 0;
	position: relative;
	/* line-height: 1.7em; */
	font-size: 78%;
	text-transform: uppercase;
}
.siteMap a:not(:first-child):before {
	/* content: "|"; */
	left: -13px;
	top: -1px;
	/* content: "\2022";*/
	position: absolute;
	font-size: 76%;
	color: inherit;
}
.noBefore:before {
	content: none !important;
}
/* --------------- SPACING -------------- */
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mtb20 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.mtb30 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.pt60 {
	padding-top: 60px;
}
/* ----------- TRANSITIONS ------------ */
.fade-enter-active, .fade-leave-active {
	transition: opacity .7s ease-in;
}
.fade-enter-from, .fade-leave-to {
	opacity: 0;
	transition: opacity .7s ease-in;
}
body {
	animation: bodyFadeIn 0.8s;
	-moz-animation: bodyFadeIn 0.8s;
	-webkit-animation: bodyFadeIn 0.8s;
	-o-animation: bodyFadeIn 0.8s;
}
@-webkit-keyframes bodyFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes bodyFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes animateThankyou {
	from {
		top: -380px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}
/* ------------ GOOGLE MAPS ------------ */
#map {
	height: 380px;
	width: 100%;
}
.mapText {
	font-weight: 400;
	font-size: 90%;
	line-height: 1.3em;
	color: black;
}
/* -------------- POP UPS -------------- */
.modalTerms {
	position: absolute;
	top: 0;
	background-color: #00000066;
	width: 100%;
	z-index: 2001;
	height: -webkit-fill-available;
	transition: opacity .7s ease;
	opacity: 0;
}
.modalTermsContent {
	width: 900px;
	background-color: white;
	margin: 40px auto;
	padding: 30px;
	border-radius: 8px;
	position: relative;
	border: 7px solid #e3e3e3;
}
.modalTermsContent::after {
	content: 'X';
	position: absolute;
	top: -13px;
	right: -16px;
	background: white;
	display: block;
	border: 5px solid #e3e3e3;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	text-align: center;
	font-size: 18px;
	line-height: 27px;
	font-weight: 700;
	color: #e3e3e3;
	cursor: pointer;
}
.modalTermsContent h2 {
	margin-bottom: 10px;
}
.modalTermsContent h3 {
	margin-bottom: 10px;
	font-weight: 500;
}
.modalTermsContent h4 {
	font-weight: 600;
	margin-bottom: 10px;
}
/* ---------------- GS ---------------- */
.gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-gap: 10px;
}
.galleryTitle {
	font-size: 70%;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.2em;
	margin-top: 5px;
}
/* -------------- BLUDIT --------------- */
.card-body h2 {
	color: var(--primary);
	margin-bottom: 10px;
	font-size: 215%;
}
.card-body p:last-child a {
	text-decoration: underline;
	color: #939393;
}
h1.title {
	font-weight: 400;
	margin-bottom: 16px;
	color: var(--primary);
	font-size: 180%;
}
h2.title {
	font-weight: 400;
	margin-bottom: 16px;
	color: var(--primary);
	font-size: 180%;
}
h6.card-subtitle {
	font-size: 90%;
	font-weight: 500;
	color: #ababab;
	margin-bottom: 10px;
}
.sectionBlog hr {
	margin: 30px 0;
}
.card {
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
}
a.page-link {
	color: #666;
	border: 1px solid transparent;
	padding: 2px 10px;
	border-radius: 5px;
	display: inline-block;
	font-size: 90%;
	text-decoration: auto;
	box-shadow: 0 0 0 4px rgba(187, 187, 187, 0.199);
	transition: box-shadow 0.3s ease;
}
a.page-link:hover {
	box-shadow: 0 0 0 4px rgb(187 187 187 / 35%);
}
/* --------------- MISC --------------- */
hr {
	border: 0;
	height: 1px;
	background-color: var(--primary);
	width: 100%;
	margin: 0 auto;
}
.scrollToTop {
	position: fixed;
	width: 52px;
	height: 49px;
	background: rgba(51, 51, 51, 0.3);
	bottom: 14px;
	right: 14px;
	z-index: 5001;
	border-radius: 0.2rem;
	text-align: center;
	font-size: 100%;
	cursor: pointer;
	color: white;
	line-height: 49px;
	transition: opacity 0.5s ease;
	user-select: none;
}
.cookiePopUp {
	background-color: rgb(0 0 0 / 70%);
	padding: 16px 16px 10px 20px;
	box-shadow: 0px 0px 12px 8px rgb(0 0 0 / 10%);
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	max-width: 426px;
	color: white;
	gap: 2px;
	position: fixed;
	z-index: 60001;
	font-size: 86%;
	bottom: 40px;
	left: 53px;
	opacity: 0;
	scale: 1;
	transition: transform 0.35s ease-in;
	transform: translateX(-500px);
}
.showCookie {
	opacity: 1;
	transform: translateX(0px);
	transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
	transition-delay: 0.5s;
}
.hideCookie {
	transform: translateX(-500px);
	transition: transform 0.5s cubic-bezier(.56, -0.49, .59, .04);
	transition-delay: 0.2s;
}
.ahw a:hover {
	transition-property: color, box-shadow;
	transition-duration: .4s;
	transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-webkit-box-shadow: 0px -1px 0 0 #ffffff inset;
	box-shadow: 0px -1px 0 0 #ffffff inset;
}
.ahd a:hover {
	transition-property: color, box-shadow;
	transition-duration: .4s;
	transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-webkit-box-shadow: 0 1px 0 0 rgb(0 0 0 / 80%);
	box-shadow: 0 1px 0 0 rgb(0 0 0 / 80%);
}
.auw a {
	-webkit-box-shadow: 0 1px 0 0 white;
	box-shadow: 0 1px 0 0 white;
}
.aud a {
	-webkit-box-shadow: 0 1px 0 0 rgb(2 2 2 / 50%);
	box-shadow: 0 1px 0 0 rgb(2 2 2 / 50%);
}
.img100, .img100 img {
	width: 100%;
}
hr {
	border: 0;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.3);
	width: 100%;
	margin: 30px auto;
}
.ms {
	display: none;
}
/* ----------- MOBILE < 768 ---------- */
@media (max-width: 768px) {
	/* ------------ LAYOUT ------------ */
	.headerContent {
		/* grid-template-columns: 1fr; */
		/* gap: 13px; */
		padding-top: 40px;
	}
	.headerContent > *:nth-child(1) {
		justify-self: center;
	}
	.headerContent > *:nth-child(3) {
		justify-self: center;
	}
	.letterbox {
		/* min-height: 150px; */
		/* mask-size: auto; */
		margin-top: 0;
		height: 300px;
	}
	.nav {
		order: -1;
		border-bottom: none;
		position: relative;
		background-color: #d0031c;
		width: 100%;
		/* top: 0; */
	}
	.footerContent {
		min-height: 700px;
		padding: 50px 0;
	}
	/* ------------ PAGES ------------- */
		.section {
			scroll-margin-top: 0;
		}

	.logoWhite {
		max-height: 99px;
	}
	.sectionTop {
		min-height: auto;
		padding: 28px 0;
	}
	.logoFooter {
		max-height: 100px;
	}
	.logoHeader {
		margin: 20px;
		max-height: 120px;
	}
	.support {
		grid-template-columns: 1fr 1fr;
	}
	.support img {
		max-height: 70px;
	}
	.map {
		margin: 20px 0;
	}
	.graphic img {
		max-height: 50px;
	}
	.logos {

padding: 0;
	}
	.logos img {
		
max-height: 66px;
		
margin: 5px 10px;
	}
	/* ------------ FONTS ------------- */
	h1 {
		font-size: 221%;
	}
	.h1Body {
		font-size: 250%;
	}
	.h2Body {
		font-size: 220%;
	}
	h2 {
		font-size: 180%;
	}
	p {
		font-size: 100%;
	}
	.t2 {
		
font-size: 126%;
	}
	/* ------------- NAV -------------- */
	.navMenu {
		padding: 12px 20px;
		cursor: pointer;
		border-bottom: 1px solid #ffffffd4;
		display: flex;
		justify-content: space-between;
		align-items: center;
		color: aliceblue;
		font-weight: 400;
	}
	.navMenu svg {
		fill: white;
		width: 28px;
		height: 28px;
	}
	.navContent {
		flex-direction: column;
		width: 100%;
		height: 0;
		overflow: hidden;
		align-items: flex-start;
		justify-content: flex-start;
		transition: height .3s ease;
	}
	.openNavContent {
		height: auto;
	}
	.subMenu {
		position: relative;
		top: 8px;
		left: 0;
	}
	.subMenu > * {
		width: 100%;
		border: none;
		border-top: 1px solid #ffffffc2;
	}
	.navContent > * {
		width: 100%;
		background-color: inherit;
		border-bottom: 1px solid #ffffffd4;
		color: aliceblue;
		font-weight: 400;
	}
	.openSubMenu {
		box-shadow: none;
	}
	/* ------------- GRID ------------- */
	.grid {
		grid-auto-flow: row;
	}
	.gridFooter {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.gridFooter > *:nth-child(1) {
		justify-self: center;
	}
	.gridFooter > *:nth-child(3) {
		justify-self: center;
	}
	/* --------- CONTACT FORM --------- */
	.contactMe {
		flex-direction: column;
	}
	.rowForm {
		flex-direction: column;
	}
	input, textarea {
		width: 100%;
	}
	.thankyouContent {
		width: 80%;
		font-size: 96%;
		padding: 30px 10px;
	}
	/* ------------- EXPAND ------------ */
	.sectionExpandContent {
		padding: 40px 0;
	}
	.sectionExpandContent {
		width: min(100% - 50px, 1020px);
	}
	.gridExpand {
		grid-template-columns: 1fr;
	}
	.bgForm {
		max-width: 100%;
		padding: 20px;
	}
	.service {
		flex-direction: column;
		align-items: flex-start;
	}
	.checkbox {
		margin: 0;
		font-size: 45%;
	}
	.btnContainer {
		margin: 0;
		justify-content: center;
	}
	/* ------------ SITE MAP ----------- */
	.siteMap {
		align-items: center;
		flex-direction: column;
		/* margin: 20px 0; */
	}
	.siteMap a {
		/* margin: 0 12px; */
		/* position: relative; */
		/* line-height: 2em; */
		font-size: 95%;
		/* text-transform: uppercase; */
	}
	.siteMap a:not(:first-child):before {
		content: "";
	}
	/* -------------- GS -------------- */
	.gallery {
		grid-template-columns: 1fr 1fr 1fr;
		grid-gap: 10px;
	}
	.galleryTitle {
		font-size: 60%;
	}
	/* -----------GOOGLE MAPS --------- */
	#map {
		margin-left: -25px;
		width: 100vw;
		margin-right: -25px;
	}
	/* ------------ POP UPS ----------- */
	.modalTermsContent {
		width: 90%;
	}
	/* -------------- MISC ------------ */
	.grid img {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}
	.ms {
		display: block;
	}
	.mh {
		display: none;
	}
	.cookiePopUp p {
		font-size: 80%;
	}
	.cookiePopUp {
		max-width: 90%;
		left: 0;
		right: 0;
		margin: auto;
		align-items: center;
		text-align: center;
		bottom: 20px;
		padding: 10px;
	}
}
@media (max-width: 430px) {
	img {
		max-width: 100%;
	}
}