/** 
 * Theme Name: Smokehouse
 * Author: Central States Marketing
 * Author URI: https://www.centralstatesmarketing.com/
 * Description: This site was built by Central States Marketing. For more information about the site or this custom WordPress theme, you can contact Central States Marketing at: info@csm.marketing or call us at: 309-693-2345.
 * Version: 1.0.0
 *
 * @package smokehouse
 * @charset "UTF-8"
 */

/**
 * Table of Contents
 * -----------------
 * 1. Global Settings
 * 2. Typography
 * 3. Utils
 * 4. Site Header
 * 5. Navigation Takeover
 * 6. Drawer
 * 7. Hero Section
 * 8. Our Services Section
 * 9. Join Us Section
 * 10. Where We Operate Section
 * 11. Swiper Carousels
 * 12. Contact Page
 * 13. Footer
 * 14. Media Queries
 */



/* ======================== */
/* 1. Global Settings */
/* ======================== */

:root {
	--primary-blue: #00558B;
	--primary-red: #F42F3A;
	--primary-light-gray: #EBEBEE;

	--secondary-black: #000000;
	--secondary-gray: #676769;
	--secondary-light-blue: #D1E0F0;
	--secondary-white: #FFFFFF;

	--primary: oklch(var(--primary-base));
	--secondary: oklch(var(--secondary-base));

	--shadow-color: oklch(var(--black-base) / 0.25);
	--shadow-color-hover: oklch(var(--black-base) / 0.4);

	--shadow: 0 0 10px var(--shadow-color);
	--shadow-hover: 0 0 10px var(--shadow-color-hover);

	--gutter: 2rem;

	/* --max-w-max: 96vw; */

	--max-w-max: 115.2rem;

	/* --max-w-max: 150rem; */

	--max-w-content: 80rem;
	--max-w-text: 50rem;

	--border-radius: 1rem;

	--ff-heading: 'interstate', sans-serif;
	--ff-body: 'interstate', sans-serif;

	--fs-sm: clamp(0.73rem, 0.11vi + 0.7rem, 0.8rem);
	--fs-base: clamp(0.88rem, 0.29vi + 0.8rem, 1.06rem);
	--fs-md: clamp(1.05rem, 0.56vi + 0.91rem, 1.41rem);
	--fs-lg: clamp(1.26rem, 0.95vi + 1.02rem, 1.88rem);
	--fs-xl: clamp(1.51rem, 1.52vi + 1.13rem, 2.5rem);
	--fs-2xl: clamp(1.81rem, 2.32vi + 1.23rem, 3.32rem);
	--fs-3xl: clamp(2.18rem, 3.45vi + 1.31rem, 4.42rem);

	--transition: all 200ms ease-out;
}

a.glink img {display: block !important;}
.gtranslate_wrapper {display: flex; align-items: center; justify-content: center; gap: 1rem;}


/* === Reset === */
*,
*::before,
*::after {
	box-sizing: inherit;
	scroll-behavior: auto;
}

html {
	box-sizing: border-box;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: var(--fs-base);
}

[id] {
	scroll-margin-top: 100px;
}

.container {
	max-width: var(--max-w-max);
	margin: 0 auto;
	padding: 0 2rem;
}

/* Container Responsive */
@media (min-width: 481) and (max-width: 768px) {

	/* For tablets and smaller devices */
	.container {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 480px) {

	/* For mobile phones */
	.container {
		padding: 2rem 1rem;
	}
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

b,
strong {
	font-weight: bolder;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* === Template Specific === */
.post-edit-link {
	display: block;
	width: fit-content;
	color: limegreen;
	text-transform: uppercase;
	border: 3px solid limegreen;
	padding: 0.5em 1em;
	border-radius: 0.5em;
	margin: 1em;
	text-decoration: none;

	&:hover {
		color: white;
		background-color: limegreen;
	}
}

/* ======================== */
/* 2. Typography */
/* ======================== */

:where(h1, h2, h3, h4, h5, h6) {
	color: var(--primary);
	font-family: var(--ff-heading);
	font-weight: 700;
	line-height: 1;
}

h1 {
	color: var(--secondary-white);
	text-transform: uppercase;
	font-size: clamp(5.8rem, 5vw, 4rem);
	/* Responsive font size */
	margin: 0;
	letter-spacing: normal;
}

h2 {
	color: var(--secondary-white);
	font-size: clamp(2rem, 4vw, 3.2rem);
	/* Responsive font size */
	text-transform: uppercase;
	margin: 0;
}

h3 {
	color: var(--secondary-white);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	/* Responsive font size */
	text-transform: uppercase;
	margin: 0 0 1rem 0;
}



h4, h5, h6 {
	font-family: var(--ff-heading);
	font-weight: 700;
	color: var(--secondary-white);
	text-transform: uppercase;
	margin: 0 0 1rem 0;
}

h4 {
	font-size: clamp(1.4rem, 2.5vw, var(--fs-lg));
	/* Responsive */
}

h5, h6 {
	font-size: clamp(1.2rem, 2vw, var(--fs-md));
	/* Responsive */
}

p {
	font-size: clamp(14px, 1vw, 16px);
	/* Responsive font size */
	line-height: 1.6;
	margin: 0;
	color: var(--secondary-white);

}

hr {
	width: 100%;
	height: 2px;
	border: none;
	margin: 2em 0;
	background-color: var(--secondary-gray);
}

li a svg {
	fill: currentColor;
}

a {
	color: var(--secondary-white);
	text-decoration: none;
	transition: var(--transition);
}

.page-content-wrapper .entry-content a {
	color: var(--primary-red);
	font-weight: bold;
	text-decoration: underline;
}

a:has(svg) {
	display: flex;
}

/* ======================== */
/* 3. Utils */
/* ======================== */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.button {
	color: var(--secondary-white);
	padding: 0.5rem 2rem;
	border: 1px solid var(--secondary-white);
	border-radius: 2rem;
	width: fit-content;
	font-size: clamp(14px, 1vw, 16px);
	height: fit-content;
}

.button:hover {
	backdrop-filter: blur(4px);
	background-color: #ffffff;
	transition: 0.5s ease-in-out;
	color: #000000;
}

.kb-button {
	color: var(--secondary-white) !important;
	padding: 0.5rem 2rem !important;
	border: none !important;
	border-radius: 2rem !important;
	width: fit-content !important;
	font-size: clamp(14px, 1vw, 16px) !important;
	height: fit-content !important;
	background-color: var(--primary-red) !important;
}

.btn {
	display: inline-block;
	background-color: var(--primary);
}

.btn:hover {
	position: static;
}

.wrapper-max {
	max-width: var(--max-w-max);
	margin-inline: auto;
}

.wrapper-content {
	max-width: var(--max-w-content);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.wrapper-text {
	max-width: var(--max-w-text);
	margin-inline: auto;
}

.fs-sm {
	font-size: var(--fs-sm) !important;
}

.fs-base {
	font-size: var(--fs-base) !important;
}

.fs-md {
	font-size: var(--fs-md) !important;
}

.fs-lg {
	font-size: var(--fs-lg) !important;
}

.fs-xl {
	font-size: var(--fs-xl) !important;
}

.fs-2xl {
	font-size: var(--fs-2xl) !important;
}

.fs-3xl {
	font-size: var(--fs-3xl) !important;
}

body .entry-header, .entry-header {
	display: none !important;
}


/**************************************************
 * 3. === Site Header ===
 **************************************************/

/* === Wrapper === */
.site-header-wrapper {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1001;
	backdrop-filter: blur(8px);
}

.site-header-wrapper.active {
	background-color: transparent !important;
}

.site-header-wrapper.is-locked {
	box-shadow: var(--shadow);
}

/* === Header Layout === */
.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: var(--max-w-max);
	margin: 0 auto;
	padding: 0 2rem;
	background: transparent;
	column-gap: 2rem;
}

/* === Logo === */
.site-logo a {
	display: block;
	line-height: 0;
}

.site-logo a img {
	width: 20rem;
}

.site-header-wrapper.active .site-header .site-logo a img {
	filter: invert(0);
}

/* === Navigation === */
.main-navigation {
	width: 100%;
	padding: 0;
}

#site-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1rem;
}

#primary-menu.menu {
	display: flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
	width: 100%;
}

#primary-menu.menu li {
	list-style: none;
	font-size: clamp(14px, 1vw, 16px);
	padding: 2rem 1rem;
}

#primary-menu.menu ul li a {
	text-decoration: none;
}

.site-header-wrapper.active .site-header #primary-menu.menu li a {
	color: #fff;
}

.site-header-wrapper.active .menu-item-has-children ul li a {
	color: #000000 !important;
}

/* === Buttons === */
.navigation-btn {
	padding: 0.5rem 2rem;
	border: 1px solid var(--secondary-white);
	border-radius: 2rem;
}

.site-header-wrapper.active a.button {
	border-color: #ffffff !important;
	color: #ffffff !important;
}

/* === Social Icons === */
.site-header .socials {
	display: flex;
	align-items: center;
	column-gap: 2rem;
}

.site-header .socials .social-icons {
	display: grid;
/* 	grid-template-columns: repeat(3, 1fr); */
	grid-template-columns: 2fr 1fr 1fr 1fr;
	column-gap: 1rem;
}

.site-header .socials .social-icons a {
	width: 28px;
	height: 28px;
}

.social-icons a svg {
	fill: var(--primary-red);
	transition: fill 0.3s ease;
	/* Smooth transition for color change */
}

.social-icons.active a svg {
	fill: white;
	/* Change fill color to white when takeover is active */
}

/* === Hamburger Menu === */
.site-header .socials .hamburger-wrapper {
	cursor: pointer;
	border: 0.2px solid #ffffff39;
	border-radius: 100%;
	padding: 1.25rem 0.75rem;
}

.hamburger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 2rem;
	height: 0.8rem;
	row-gap: 4px;
	position: relative;
}

.hamburger span {
	display: block;
	width: 2rem;
	height: 0.25rem;
	background-color: white;
	transition: all 0.3s ease;
}

.site-header-wrapper.active .hamburger span {
	background-color: #fff !important;
}

.hamburger-wrapper .hamburger span:nth-child(1) {
	opacity: 1;
}

.hamburger-wrapper .hamburger span:nth-child(2) {
	opacity: 0.8;
}

.hamburger-wrapper .hamburger span:nth-child(3) {
	opacity: 0.6;
}


/* Hamburger Active State */

.hamburger-wrapper.active {
	cursor: pointer;
	border: 0.2px solid #ffffff39 !important;
	border-radius: 100%;
	padding: 1.25rem 0.75rem;
}


.hamburger-wrapper.active .hamburger span:nth-child(1) {
	transform: translateY(0.3rem) rotate(45deg);
}

.hamburger-wrapper.active .hamburger span:nth-child(2) {
	opacity: 0;
}

.hamburger-wrapper.active .hamburger span:nth-child(3) {
	transform: translateY(-0.4rem) rotate(-45deg);
	opacity: 1;
}


/* Line under header */

.site-header-wrapper hr.line {
	height: 0.2px;
	width: 100%;
	max-width: var(--max-w-content);
	margin: 0 auto;
	background-color: #ffffff39;
}

/* Scrolled */

.site-header-wrapper.scrolled .hamburger-wrapper {
	cursor: pointer;
	border: 0.2px solid #00000039;
	border-radius: 100%;
	padding: 1.25rem 0.75rem;
}

.site-header-wrapper.scrolled {
	background-color: white;
	/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header-wrapper.scrolled .site-logo a img {
	filter: invert(1);
}

.site-header-wrapper.scrolled ul li a {
	color: black;
	transition: color 0.3s ease;
}

.site-header-wrapper.scrolled a.button {
	border-color: #000000;
	color: #000000;
}

.site-header-wrapper.scrolled a.button {
	border-color: #000000;
	color: #000000;
}

.site-header-wrapper.scrolled .hamburger span {
	background-color: rgb(0, 0, 0);
}


.site-header-wrapper.scrolled ul.sub-menu {
	background-color: #ffffff;
}

/* Responsive Navigation */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
	.site-logo a img {
		width: 16rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

	.site-logo a img {
		width: 14rem;
	}

}

@media screen and (max-width: 767px) {

	.site-header {
		padding: 1rem;
	}

	/* Social Icons */
	.site-header .socials .social-icons {
/* 		display: none; */
	}

}
@media screen and (max-width: 551px) {
	.social-icons {
		grid-template-columns: 1fr 1fr 1fr;
		gap: .5rem;
	}
	.gtranslate_wrapper {
		grid-column: 1 / -1;
	}
}


/**************************************************
 * 4. === Navigation Takeover ===                   *
 **************************************************/
.navigation-takeover-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: calc(var(--vh, 1vh) * 100);
	background-color: var(--primary-red);
	overflow: hidden;
	z-index: 1000;
	transform: translateY(-100%);
	/* Hidden above the viewport */
	opacity: 0;
	/* Fully transparent */
	transition: transform 0.5s ease, opacity 0.5s ease;
	pointer-events: none;
	/* Prevent interaction when hidden */
}

.navigation-takeover-wrapper.active {
	transform: translateY(0);
	/* Slide into view */
	opacity: 1;
	/* Fully opaque */
	pointer-events: auto;
}

/* === Takeover Grid Layout === */
.navigation-takeover-wrapper .navigation-takeover {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 1rem;
	width: 100%;
	max-width: var(--max-w-max);
	height: 100%;
	padding: 8rem 2rem 2rem;
	align-items: flex-end;
}

/* === Left Section === */
.navigation-takeover .left {
	position: relative;
	/* Establish positioning context for ::after */
	width: 100%;
	height: 100%;
	padding: 2rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.navigation-takeover .left::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 60%, #00000098);
	z-index: 1;
	/* Ensures it appears on top of the background */
}

.navigation-takeover .left .content {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	row-gap: 1rem;
}

.navigation-takeover .left .content h3,
.navigation-takeover .left .content p {
	margin: 0;
	padding: 0;
}

/* === Center Section === */
.navigation-takeover .center {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	position: relative;
}

.navigation-takeover .center div::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 60%, #00000098);
	z-index: 1;
	/* Ensures it appears on top of the background */
}

.navigation-takeover .center .content {
	width: 100%;
	height: 100%;
	padding: 2rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: var(--border-radius);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.navigation-takeover .center .content h3,
.navigation-takeover .center .content p {
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2;
}

.navigation-takeover .center .content a {
	position: relative;
	z-index: 2;
}

/* === Right Section === */
.navigation-takeover .right {
	width: 100%;
	height: 100%;
	padding: 0rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	row-gap: 3rem;
}

/* Takeover Menu */
ul#takeover-menu,
.navigation-takeover .right ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	row-gap: 0.4rem;
}

ul#takeover-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2rem;
}

.navigation-takeover .right ul li,
.right ul#takeover-menu li {
	list-style: none;
}

.right ul#takeover-menu li {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 700;
	text-transform: uppercase;
}

/* Center Takeover Menu */
.right .center-takeover-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.center-takeover-menu .menu-header p {
	font-size: 16px;
	margin-bottom: 0.4rem;
	opacity: 0.5;
}

.right #about-menu ul li {
	font-size: clamp(14px, 1vw, 16px);
}

/* Lower Takeover Contact */
.right .lower-takeover-contact {
	display: flex;
	column-gap: 1.5rem;
}

.right .lower-takeover-contact a img {
	width: 2rem;
	height: 2rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

	.navigation-takeover-wrapper .navigation-takeover {
		grid-template-columns: 1fr 1fr;
	}

	.navigation-takeover .left {
		display: none;
	}

}

@media screen and (max-width: 767px) {

	.navigation-takeover-wrapper .navigation-takeover {
		grid-template-columns: 1fr;
		column-gap: 2rem;
		padding: 8rem 2rem 2rem;
		max-height: 100svh;
	}

	.navigation-takeover .left {
		padding: 1rem;
	}

	.navigation-takeover .center {
		display: none;
	}

	.navigation-takeover .right {
		row-gap: 1rem;
		padding: 0;
	}

	ul#takeover-menu {
		column-gap: 0;
	}


}

/* Sub-Menu */

:where(.menu, .sub-menu) {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-item {
	position: relative;
}

.menu-chevron {
	display: inline-block;
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.menu-item-has-children:hover .menu-chevron,
.menu-item-has-children.open .menu-chevron {
	transform: rotate(180deg);
	/* Rotate when the submenu is open */
}

/* Base styles for the submenu */
.menu-item-has-children ul {
	width: 100%;
	display: none;
	/* Hide submenu by default */
	position: absolute;
	/* Position it relative to the parent */
	top: 100%;
	/* Place it directly below the parent item */
	left: 0;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	background-color: #ffffff;
	backdrop-filter: blur(8px);
	/* Add padding for spacing */
	list-style: none;
	/* Remove default list styles */
	/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
	/* Optional shadow for a floating effect */
	z-index: 10;
	/* Ensure it appears on top of other elements */
}

/* Submenu links */
.menu-item-has-children ul li {
	width: 100%;
	padding: 0 !important;
}

.menu-item-has-children ul li a {
	/* Remove underline */
	/* Add spacing for each item */
	color: black;
	display: block;
	/* Ensure the links take up full width */
	transition: color 0.3s ease;
	/* Smooth hover effect */
	padding: 1rem !important;
}

.menu-item-has-children ul {
	border-top: 2px solid var(--primary-blue);
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
	width: 12rem;
	overflow: hidden;
	visibility: hidden;
	max-height: 0;
	display: block;
	/* Ensure the submenu is block-level by default */
}

.menu-item-has-children:hover>ul {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	max-height: 500px;
	/* Set a large enough value to accommodate submenu height */
}

.menu-item-has-children ul {
	max-height: 0;
	/* Reset height to collapse */
}

.menu-item-has-children ul li:hover a {
	background-color: var(--primary-light-gray);
}

.menu-item-has-children:hover>a::after,
.menu-item-has-children.open>a::after {
	transform: rotate(180deg);
	/* Rotate chevron on hover or when open */
}

.main-navigation .menu-item:has(.sub-menu):hover .sub-menu {
	display: flex;
	flex-direction: column;
}

@media (width > 1024px) {
	.menu-toggle {
		display: none;
	}
}

@media (width <=1024px) {
	.main-navigation {
		display: none;
	}
}

/**************************************************
 * 5. === Drawer ===                   *
 **************************************************/
.drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100dvh;
	background-color: var(--primary);
	z-index: 100000;
	transform: translateX(100%);
	transition: var(--transition);
}

.drawer.is-open {
	transform: translateX(0px);
}

.drawer-wrapper {
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
	height: 100%;
	padding: 2rem var(--gutter) 4rem;
}

.drawer-navigation {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

.drawer .menu-main-menu-container {
	height: 100%;
}

.drawer .menu {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.drawer .menu-item a {
	display: block;
	font-size: var(--fs-md);
	padding-block: 1rem;
	font-weight: 700;
}

.drawer .sub-menu .menu-item a {
	padding: 0.5rem 0;
}

.drawer .sub-menu {
	display: none;
}

.drawer .sub-menu .menu-item a {
	font-size: var(--fs-md);
}



/****************************/
/** == ** Front Page ** == **/
/***************************/

/****************************/
/** 6. == ** Hero Section ** == **/
/***************************/
.hero-wrapper {
	position: relative;
	height: 80vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	/* Keep this above services section to show rounded corners */
	z-index: 4;
	min-height: 30rem;
}

/* Low opacity hero overlay */
.hero-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.707);
	z-index: 5;
}

.hero-wrapper .hero {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 2rem;
}

.hero-wrapper .hero {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 2rem;
}

.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	z-index: -1;
}

.background-video video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100vw;
	min-height: 100vh;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.hero .hero-content {
	display: flex;
	justify-content: space-between;
	z-index: 5;
	align-items: center;
	margin: 0 auto;
	text-align: center;
	flex-direction: column;
	height: 100%;
}

.hero .header h1 span {
	display: inline-block;
	overflow: hidden;
}

.hero .header h1 span span {
	display: inline-block;
}

.hero-content .header h1 {
	color: var(--secondary-white);
}

.hero-content .header h1 span {
	font-size: 4rem;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--secondary-white);
	color: transparent;
}

.hero-content .subheader {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	column-gap: 2rem;
	align-items: center;
}

.hero-content .subheader p {
	color: var(--secondary-white);
}

.subheader a.learn-more, .subheader-tablet .buttons a.learn-more {
	color: white;
	background-color: var(--primary-red);
	border-color: var(--primary-red);
}

a.learn-more:hover {
	color: white;
	border-color: #ab011b;
	background-color: #ab011b;
}


.subheader-tablet {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
	display: none;
}

.subheader-tablet .buttons {
	display: flex;
	flex-direction: row;
	column-gap: 2rem;
	justify-content: center;
}

.subheader-tablet .buttons a.learn-more {
	background-color: var(--primary-red);
	border-color: #F42F3A !important;
}

/* Hero Responsive  */

@media screen and (min-width: 2000px) {
	.hero-wrapper {
		height: 50rem;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1240px) {
	.hero-wrapper {
		height: 40rem;
	}
}

@media screen and (min-width: 850px) and (max-width: 1023px) {
	.hero-wrapper {
		height: 40rem;
	}

	.hero-content .header h1 {
		font-size: 5.8rem;
	}

	.hero-content .header h1 span {
		font-size: 4rem;
	}

	.hero-wrapper .hero .hero-content .subheader {
		display: none;
	}

	.hero-wrapper .hero .hero-content .subheader-tablet {
		display: flex;
	}
}

@media screen and (min-width: 793px) and (max-width: 849px) {
	.hero-wrapper {
		height: 40rem;
	}

	.hero-content .header h1 {
		font-size: 5.4rem;
	}

	.hero-content .header h1 span {
		font-size: 3.8rem;
	}

	.hero-wrapper .hero .hero-content .subheader {
		display: none;
	}

	.hero-wrapper .hero .hero-content .subheader-tablet {
		display: flex;
	}
}

@media screen and (min-width: 768px) and (max-width: 792px) {
	.hero-wrapper {
		height: 40rem;
	}

	.hero-content .header h1 {
		font-size: 5rem;
	}

	.hero-content .header h1 span {
		font-size: 3.4rem;
	}

	.hero-wrapper .hero .hero-content .subheader {
		display: none;
	}

	.hero-wrapper .hero .hero-content .subheader-tablet {
		display: flex;
	}
}


@media screen and (min-width: 740px) and (max-width: 767px) {

	.hero-content .header h1 {
		font-size: 5rem;
	}

	.hero-content .header h1 span {
		font-size: 3.4rem;
	}

	.hero-wrapper .hero .hero-content .subheader {
		display: none;
	}

	.hero-wrapper .hero .hero-content .subheader-tablet {
		display: flex;
	}
}

@media screen and (max-width: 739px) {

	.hero-content .header h1 {
		font-size: 10.8vw;
	}

	.hero .hero-content .header h1 span {
		font-size: 7.4vw;
	}

	.hero-wrapper .hero .hero-content .subheader {
		display: none;
	}

	.hero-wrapper .hero .hero-content .subheader-tablet {
		display: flex;
	}
}

@media screen and (max-width: 480px) {

	.hero-wrapper {
		min-height: auto;
		height: 28rem;
	}

	.hero-wrapper .hero {
		padding: 2rem 1rem;
	}

	.hero .hero-content {
		display: flex;
		justify-content: center;
		row-gap: 2rem;
		z-index: 5;
		align-items: center;
		margin: 0 auto;
		text-align: center;
		flex-direction: column;
		height: 100%;
	}

	.hero-wrapper .hero .hero-content .subheader {
		display: none;
	}

	.hero-wrapper .hero .hero-content .subheader-tablet {
		display: flex;
	}
}



/****************************/
/* 7. ** Our Services **  */
/***************************/
.services-wrapper {
	position: relative;
	background: var(--primary-blue);
	overflow: hidden;
	/* Margin used to hide white-space under rounded corners on .hero-wrapper */
	margin-top: -1rem;
	z-index: 3;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);

}

.services-wrapper .services {
	padding-top: 3rem;
	padding-bottom: 12rem;
}

/* Statistics section */
.services .stats {
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.223);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 100%;
	background: #005c95;
	margin-bottom: 6rem;
}

.stats .left, .stats .center, .stats .right {
	padding: 3rem 2rem;
	text-align: center;
}

.stats h3, .stats p {
	color: var(--secondary-white);
	text-transform: uppercase;
}

.stats .center {
	border-right: 1px solid rgba(255, 255, 255, 0.223);
	border-left: 1px solid rgba(255, 255, 255, 0.223);
}

/* Stats Swiper */

.swiper-container.stats-slider {
	height: fit-content;
	margin-bottom: 3rem;
}

.stats-slider .swiper-wrapper {
	height: 100%;
}

.stats-slider .swiper-wrapper .swiper-slide {
	height: fit-content;
	background: #005c95;
	padding: 3rem 2rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.223);
	text-align: center;
	display: block;
}

/* Services content with grid */
.services .content-with-grid {
	width: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
	align-items: center;
	text-align: center;
}

.content-with-grid .services-content {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
	width: 40vw;
}

.content-with-grid .services-content h2, .content-with-grid .services-content p {
	color: var(--secondary-white);
	padding: 0;
	margin: 0;
}

.content-with-grid .grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 1rem;
	width: 70vw;
	height: 50vh;
	min-height: 20rem;
}

.content-with-grid .swiper-container {
	min-height: 20rem;
}

.grid .left, .grid .right {
	overflow: hidden;
	border-radius: var(--border-radius);
	position: relative;
	/* Ensure proper stacking for pseudo-elements */
}

.grid .left a, .grid .right a {
	height: 100%;
}

.left .content-wrapper, .right .content-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	/* Prevent pseudo-element from overflowing */
}

.page-id-57 :is(.page-content-wrapper, .contact-wrapper) {
	overflow: clip;
}

/* Hover scale effect */
.left .content-wrapper::before, .right .content-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: inherit;
	/* Copy the background image of parent */
	z-index: 0;
	/* Ensure it sits below content */
	transition: transform 0.5s ease-in-out;
	transform: scale(1);
	/* Default scale */
}

.left .content-wrapper:hover::before, .right .content-wrapper:hover::before {
	transform: scale(1.05);
	/* Scale background on hover */
}

.left .content-wrapper::after, .right .content-wrapper::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 40%, #000000b3);
	z-index: 1;
	/* Ensure gradient is above the background but below content */
}

.content-with-grid .grid .content {
	position: relative;
	/* Ensures content stays above background */
	z-index: 2;
	/* Keeps content above pseudo-elements */
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	align-content: flex-start;
	flex-wrap: wrap;
	row-gap: 1rem;
	text-align: left;
}

.content-with-grid .swiper-slide {
	min-height: 20rem;
}

.content-with-grid .swiper-slide::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 60%, #00000098);
	z-index: 1;
	/* Ensures it appears on top of the background */
}

.content .content-with-button {
	display: flex;
	flex-direction: row;
	column-gap: 2rem;
	position: relative;
	z-index: 2;
	align-items: center;
}

.content .content-with-button h4 {
	padding: 0;
	margin: 0;
}

.content .content-with-button a:hover {
	transform: scale(1.25);
}

.content .content-with-button a svg {
	width: 2rem;
	height: 2rem;
}

/* Swiper stats section */
.swiper-container {
	width: 100%;
	margin: 0 auto;
	height: 40vh;
	display: none;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-slide {
	border-radius: var(--border-radius);
	width: 100%;
	height: 40vh;
	/* Matches the original height */
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
	margin: 0;
	overflow: hidden;
}

.swiper-slide .content {
	position: relative;
	z-index: 2;
	/* Keeps content above the pseudo-element */
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	align-content: flex-start;
	flex-wrap: wrap;
	row-gap: 1rem;
	text-align: left;
}

.swiper-slide.right, .swiper-slide.left {
	margin-right: 0px;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
	margin: 0;
	/* No additional margins */
}

.swiper-wrapper {
	width: 100%;
}

.swiper-slide {
	flex: 1 0 100%;
}

.swiper-button-prev, .swiper-button-next {
	display: none !important;
}

.swiper-pagination-bullets {
	display: none;
}

/* Services Responsive  */
@media screen and (min-width: 2000px) {
	.content-with-grid .grid {
		height: 40rem;
		width: auto;
	}

	.services-wrapper .join-us-wrapper {
		height: 40rem;
	}
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
	.services.container {
		padding-bottom: 10rem;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
	.services.container {
		padding-bottom: 8rem;
	}

	.content-with-grid .grid {
		width: 80vw;
		height: 20rem;
	}

	.swiper-container {
		display: none;
	}

}


@media screen and (min-width: 966px) and (max-width: 1023px) {
	.services-wrapper .services {
		padding-top: 3rem;
		padding-bottom: 8rem;
	}

	/* Stats section */
	.services .stats {
		margin-bottom: 6rem;
	}

	/* Content with Grid */
	.content-with-grid .services-content {
		width: 80vw;
	}

	.content-with-grid .grid {
		height: 40vh;
		column-gap: 1rem;
		padding-left: 0;
		padding-right: 0;
	}

}

@media screen and (min-width: 851px) and (max-width: 965px) {
	.services-wrapper .services {
		padding-top: 3rem;
		padding-bottom: 6rem;
	}

	/* Stats section */
	.services .stats {
		margin-bottom: 6rem;
	}

	/* Content with Grid */
	.content-with-grid .services-content {
		width: 80vw;
	}

	.content-with-grid .grid {
		height: 20rem;
		column-gap: 1rem;
		padding-left: 0;
		padding-right: 0;
	}

}

@media screen and (max-width: 850px) {

	/* Stats section */
	.services-wrapper .services {
		padding-top: 3rem;
		padding-bottom: 4rem;
	}

	/* Stats section */
	.services .stats {
		display: none;

	}

	.stats .left, .stats .center, .stats .right {
		width: 100%;
		border-radius: var(--border-radius);
		border: 1px solid rgba(255, 255, 255, 0.223);
	}

	/* Content with Grid */
	.content-with-grid .services-content {
		width: 80vw;
	}

	.content .content-with-button h4 {
		font-size: 1.6rem;
	}


	.content-with-grid .grid {
		height: 40vh;
		column-gap: 1rem;
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		display: none;
		flex-direction: row;
	}

	.swiper-container {
		display: block;
	}
}

@media screen and (max-width: 425px) {

	.services-wrapper .services {
		padding-bottom: 4rem;
	}

	.swiper-slide h3 {
		font-size: 10vw;
	}

	.stats-slider .swiper-wrapper .swiper-slide {
		padding: 3rem 1rem;

	}

	.services-content h2 {
		font-size: 12vw;
	}

	.swiper-container.stats-slider {
		margin-bottom: 2rem;
	}

}

/****************************/
/** 8. == ** Join Us  ** == **/
/***************************/
.join-us-wrapper {
	position: relative;
	background: var(--primary-red);
	/* Margin used to hide white-space under rounded corners on .hero-wrapper */
	z-index: 3;

}

.join-us-wrapper .join-us {
	column-gap: 3rem;
	display: flex;
	flex-direction: row;
	width: 100%;
	max-height: 54vh;
	height: 100%;
	padding: 3rem 0rem;
	justify-content: flex-end;
}

.join-us .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 2rem;
	width: 32%;
	align-content: flex-end;
	flex-wrap: wrap;

}

.join-us .content h2 {
	color: var(--secondary-white);
	font-size: clamp(2.5rem, 4vw, 4rem);
}

.join-us .content h2 span {
	font-size: clamp(2rem, 3.6vw, 3.6rem);
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--secondary-white);
	color: transparent;
}


.join-us .image {
	width: 46%;
	bottom: 0;
	padding-right: 1rem;
}

.join-us .image img {
	width: 100%;
	position: relative;
	top: -11rem;
	transform-origin: center;
	/* Scale from the center of the image */
}


/* Join Us Responsive  */
@media screen and (min-width: 1270px) and (max-width: 1440px) {
	.join-us-wrapper .join-us {
		max-height: 26rem;
		min-height: 24rem;
	}

	.join-us .image img {
		top: -10rem;

	}
}

@media screen and (min-width: 1150px) and (max-width: 1269px) {
	.join-us-wrapper .join-us {
		max-height: 26rem;
		min-height: 24rem;
	}

	.join-us .image img {
		top: -8rem;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1149px) {
	.join-us-wrapper .join-us {
		height: 20rem;
		min-height: 24rem;
	}

	.join-us .image {
		width: 50%;
	}

	.join-us .image img {
		top: -6rem;
	}
}

@media screen and (min-width: 900px) and (max-width: 1023px) {
	.join-us-wrapper .join-us {
		max-height: 20rem;
		justify-content: center;
		min-height: 24rem;
	}

	.join-us .content {
		flex-wrap: nowrap;
	}

	.join-us .content h2 span {
		font-size: 2rem;
		-webkit-text-stroke-width: 1px;
		-webkit-text-stroke-color: var(--secondary-white);
		color: transparent;
	}

	.join-us .image img {
		top: -6rem;
	}

	.join-us .content {
		width: 38%;
	}

	.join-us .image {
		width: 50%;
		padding-right: 0;
	}
}

@media screen and (min-width: 768px) and (max-width: 899px) {

	.join-us-wrapper .join-us {
		column-gap: 2rem;
		padding: 2rem 0;
		min-height: 22rem;
		height: 20rem;
	}

	.join-us .content {
		width: 40%;
		display: flex;
		justify-content: center;
		row-gap: 1rem;
		align-items: flex-start;
		height: 100%;
	}

	.join-us .image {
		width: 48%;
	}

	.join-us .image img {
		top: 0rem;
	}

}

@media screen and (min-width: 768px) and (max-width: 790px) {
	.join-us .content h2 {
		color: var(--secondary-white);
		font-size: clamp(2.2rem, 4vw, 4rem);
	}
}

@media screen and (min-width: 468px) and (max-width: 767px) {
	.join-us-wrapper {
		height: 80vh;
		min-height: 40rem;
	}

	.join-us-wrapper .join-us {
		padding: 3rem 1rem;
		text-align: center;
		align-items: center;
		flex-direction: column;
		justify-content: space-between;
		padding-bottom: 0;
	}

	.join-us .content {
		width: 100%;
		align-items: center;
	}

	.join-us .image {
		width: 100%;
		padding-right: 0;
	}

	.join-us .image img {
		top: 0rem;
	}
}

@media screen and (max-width: 468px) {

	.join-us-wrapper .join-us {
		padding: 3rem 1rem;
		text-align: center;
		align-items: center;
		flex-direction: column;
		justify-content: space-between;
		padding-bottom: 0;
		max-height: 70vh;
		min-height: 36rem;
	}

	.join-us .content {
		width: 100%;
		align-items: center;
	}

	.join-us .content h2 span {
		font-size: clamp(2.3rem, 3.6vw, 3.6rem);
	}

	.join-us .image {
		width: 100%;
		padding-right: 0;
	}

	.join-us .image img {
		top: 0rem;
	}

}



/****************************/
/** Where We Operate Map **/
/***************************/
.operate-wrapper {
	position: relative;
	background: var(--primary-light-gray);
	/* Margin used to hide white-space under rounded corners on .hero-wrapper */
	margin-top: -1rem;
	z-index: 2;

}

.operate-wrapper .operate {
	padding-top: 4rem;
	padding-bottom: 4rem;
	display: flex;
	justify-self: flex-start;
	width: 100%;
	height: 100%;
	overflow: hidden;
	flex-direction: column;
	row-gap: 2rem;
	align-items: center;
}

.operate .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 2rem;
	text-align: center;
	width: 40vw;
}

.operate .content h2 {
	color: var(--secondary-black);
	margin: 0;
}

.operate .content p {
	color: var(--secondary-black);
	margin: 0;
	padding: 0 4rem;
}

.operate .image {
	max-width: 50vw;
	width: 100%;
	bottom: 0;
	padding-bottom: 1rem;
}

.operate .image img {
	width: 100%;
}

.operate .explore-btn a {
	background-color: var(--primary-red);
	border-color: var(--primary-red);
}

.explore-btn a:hover {
	color: #ffffff;
	transition: 0.5s ease-in-out;
	background-color: #ab011b;
	border-color: #ab011b;
}


.operate .explore-btn-mobile a {
	background-color: var(--primary-red);
	border-color: var(--primary-red);
}

/* Where We Operate Responsive  */
@media screen and (min-width: 1024px) {
	.operate .explore-btn-mobile {
		display: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

	.operate .explore-btn-mobile {
		display: none;
	}

	.operate .content {
		width: 80vw;
	}

	.operate .image {
		max-width: 70vw;

	}
}

@media screen and (max-width: 850px) {

	.operate-wrapper .operate {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.operate .explore-btn-mobile {
		display: none;
	}

	.operate .content {
		width: 80vw;
	}

	.operate .image {
		max-width: 70vw;

	}
}


@media screen and (min-width: 426px) and (max-width: 767px) {

	.operate .explore-btn-mobile {
		display: block;
	}

	.operate .explore-btn {
		display: none;
	}

	.operate .content {
		width: 100%;
	}

	.operate .content p {
		padding: 0 2rem;
	}

	.operate .image {
		max-width: 80vw;

	}
}

@media screen and (max-width: 425px) {

	.operate-wrapper .operate {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.operate .explore-btn-mobile {
		display: block;
	}

	.operate .explore-btn {
		display: none;
	}

	.operate .content {
		width: 100%;
	}


	.operate .content h2 {
		font-size: 12vw;
	}

	.operate .content p {
		padding: 0 2rem;
	}

	.operate .image {
		max-width: 80vw;

	}
}



/****************************/
/** == ** Contact Page ** == **/
/***************************/
.contact-wrapper {
	background-color: var(--secondary-white);
	overflow-x: hidden;
}

.contact-wrapper hr.line {
	height: 0.2px;
	width: 100%;
	max-width: var(--max-w-content);
	margin: 4rem auto;
	background-color: #00000039;
}

hr.kt-divider {
	height: 0.2px;
	width: 100%;
	max-width: var(--max-w-content);
	margin: 4rem auto;
}

.contact .hero {
	position: relative;
	height: 36rem;
	background-color: var(--primary-blue);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	overflow: hidden;
}

/* Overlay */
.contact .hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00568bb0; /* Adjust opacity and color as needed */
	pointer-events: none; /* Allows clicks to pass through */
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}

.contact .hero .hero-content {
	width: 50vw;
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
	justify-content: center;
	height: 100%;
	padding: 2rem 1.5rem;
}

.contact .hero .hero-content h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
	padding: 0;
	margin: 0;
}

.contact .forms {
	background-color: transparent;
	display: flex;
	justify-content: center;
	flex-direction: column;
	row-gap: 2rem;
	position: relative;
	top: -4rem;
}

.contact-form {
	margin: 0 auto;
	width: 50vw;
	background-color: var(--secondary-white);
	padding: 4rem;
	border-radius: var(--border-radius);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	/* Small downward shadow */
}


.contact-form h2 {
	text-align: center;
	margin-bottom: 2rem;
	margin-top: 0;
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--secondary-black);
}

.contact-form .location-form {
	width: 100%;
}


/* Gravity Forms Begins */
.contact-form .gform_button.button {
	background-color: var(--primary-red) !important;
	color: var(--secondary-white) !important;
	padding: 0.8rem 2rem !important;
	border: 1px solid var(--secondary-white) !important;
	border-radius: 2rem !important;
	width: fit-content !important;
}

.ginput_right.address_state.ginput_address_state {
	inline-size: 100% !important;
}

.gform_wrapper.gravity-theme .ginput_complex select {
	width: auto !important;
}

.gform-body.gform_body input,
.ginput_container_select select,
span select,
textarea {
	background: white;
	border-radius: 8px;
	border: 1px solid grey;
	color: black;
	/* Ensures actual input text is black */
	width: 100%;
}

/* Placeholder text (for input & textarea) */
.gform-body.gform_body input::placeholder,
textarea::placeholder {
	color: grey;
	opacity: 1;
	/* Ensures consistent placeholder visibility */
}

/* Gravity Forms Labels */
.gform_wrapper .gfield_label {
	color: grey;
}

/* Gravity Forms Ends */



/* Contact Responsive  */

@media screen and (min-width: 2000px) {
	.contact .hero {
		height: 40rem;
	}

	.contact-form {
		width: 60vw;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1300px) {

	.contact .hero {
		height: 30rem;
	}

	.contact-form {
		width: 80vw;
	}

	.contact .hero .hero-content {
		width: 80vw;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

	.contact .hero {
		height: 30rem;
	}

	.contact-form {
		width: 80vw;
		padding: 3rem;
	}

	.contact .hero .hero-content {
		width: 100%;
	}

}

@media screen and (min-width: 481px) and (max-width: 767px) {
	.contact .hero {
		height: 30rem;
	}

	.contact-form {
		width: 80vw;
		padding: 2rem;
	}

	.contact .hero .hero-content {
		width: 100%;
	}

}


@media screen and (max-width: 480px) {
	.contact .hero {
		height: 30rem;
	}

	.contact-form {
		width: 100%;
		padding: 2rem;
	}

	.contact .hero .hero-content {
		width: 100%;
		padding: 0 1rem;
	}

}


/****************************/
/** == ** Footer ** == **/
/***************************/
.site-footer-wrapper {
	background-color: var(--primary-light-gray);
	width: 100%;
}

.site-footer-wrapper .site-footer {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: var(--max-w-content);
	width: 100%;
	padding: 0 2rem;

}

.site-footer .footer-upper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 2fr;
	width: 100%;
	padding: 4rem 10rem 3rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

ul#locations-menu {
	display: flex;
	flex-direction: column;
/* 	row-gap: 1rem; */
}

ul#locations-menu li a {
	color: #6e6e6e;
	font-size: clamp(14px, 1vw, 16px);
}

ul#quick-links li a {
	color: #6e6e6e;
}

#contact-menu ul li a {
	color: #6e6e6e;
}


.contact-info .headquarters-info p {
	color: #6e6e6e;
}

.contact-info .headquarters-info-mobile {
	display: none;
}

.contact-info .headquarters-info-mobile p {
	color: #6e6e6e;
}

.footer-menu-header p {
	text-transform: uppercase;
	font-weight: 600;
	color: var(--secondary-black);
	margin-bottom: 1rem;
}

.footer-upper .menu ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
/* 	row-gap: 1rem; */
}

.footer-upper .menu ul li {
	list-style: none;
	font-size: clamp(14px, 1vw, 16px);
}

.footer-upper .menu ul li a {
	text-decoration: none;
	color: var(--secondary-black);
}

/* dont forget to fix this */

.footer-upper .menu-quick-links-container ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
/* 	row-gap: 1rem; */
}

.footer-upper .menu-quick-links-container ul li {
	list-style: none;
	font-size: clamp(14px, 1vw, 16px);
}

.footer-upper .menu-quick-links-container ul li a {
	text-decoration: none;
}

.footer-upper .footer-logo {
	padding: 1rem;
}

.footer-upper .footer-logo a img {
	width: 100%;
}

.site-footer .footer-lower {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1.5rem 10rem;
}

.footer-socials {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.footer-socials a {
	display: flex;
	align-items: center;
	color: var(--primary);
}

.footer-socials a svg {
	fill: #6e6e6e;
}

.footer-socials-mobile {
	display: none;
}

.footer-socials-mobile a svg {
	fill: #6e6e6e;
}

.footer-copyright :is(p, a) {
	margin: 0;
	font-size: clamp(14px, 1vw, 16px);
	color: #6e6e6e;
}

/* Footer Responsive  */
@media screen and (min-width: 1024px) {}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.site-footer .footer-upper {
		padding: 2rem 2rem 1.5rem;
		column-gap: 2rem;
	}

	.footer-upper .footer-logo {
		padding: 1rem;
	}

	.site-footer .footer-lower {
		padding: 1.5rem 2rem
	}
}

@media screen and (max-width: 767px) {
	.site-footer .footer-upper {
		padding: 2rem 2rem 1.5rem;
		row-gap: 2rem;
		grid-template-columns: 1fr;
	}

	.contact-info .headquarters-info {
		display: none;
	}

	.contact-info .headquarters-info-mobile {
		color: #6e6e6e;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		row-gap: 1rem;
	}

	.footer-upper .footer-logo {
		padding: 0rem;
		display: block;
	}

	.site-footer .footer-lower {
		display: block;
		width: 100%;
		text-align: center;
		padding: 1.5rem 2rem
	}

	.locations-menu, .quick-links-menu {
		display: none;
	}

	.locations-menu, .contact-info {
		text-align: center;
	}

	.footer-socials {
		display: none;
	}

	.footer-socials-mobile {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1rem;
	}

	.footer-socials-mobile a {
		display: flex;
		align-items: center;
		color: var(--primary);
	}

}

/* === Inside Pages === */
.inside-container {
	max-width: 70rem !important;
	width: 100%;
	margin: 0 auto;
}

.inside .contact .hero {
	height: 26rem !important;
	background-color: var(--primary-blue);
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}


.page-content-wrapper {
	overflow: hidden;
}

.image-with-content {
	padding: 6rem 3rem;
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	column-gap: 4rem;
	align-items: center;
	width: 100%;
}

.content-with-icon {
	height: 100%;
	padding: 1rem;
	width: 100%;
	display: flex !important;
	flex-direction: row;
	gap: 1rem !important;
}

.meat-sticks, .beef-jerky {
	/* background-color: var(--primary-light-gray); */
	padding: 2rem;
	border-radius: var(--border-radius);
}

.cover-image {
	border-radius: 1.2rem !important;
}

.header-alt {
	margin-bottom: 2rem;
}

.capabilities, .packaging, .raising {
	padding: 6rem 2rem;
}

.capabilities-content {
	justify-content: center;
	width: 100%;
	align-items: flex-start;
	gap: 6rem;

}

.manufacturing-wrapper {
	padding: 6rem 0rem 0rem 0rem;
	overflow: hidden;
	border-bottom-left-radius: 1.2rem;
	border-bottom-right-radius: 1.2rem;
}

.manufacturing {
	padding: 0 3rem;
}

.content-cutout {
	display: grid;
	grid-template-columns: 1f 1fr;
	width: 100%;
	max-height: 26rem;
	min-height: 24rem;
	margin: 0 auto;
	justify-content: space-evenly;
	column-gap: 4rem;
}

.error-content {
	display: flex;
	text-align: center;
	align-content: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	row-gap: 2rem;
	min-height: 100vh;
}

.kt-svg-icon-list-text a {
	color: var(--primary-red);
}

.key-table {
	border-radius: 1.2rem;
}

@media screen and (max-width: 1024px) {

	.inside-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.image-with-content {
		padding: 3rem;
		display: grid;
		grid-template-columns: 1fr;
		column-gap: 2rem;
		align-items: center;
		width: 100%;
	}

}

@media screen and (max-width: 768px) {

	.inside-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.image-with-content {
		padding: 2rem;
		display: grid;
		grid-template-columns: 1fr;
		column-gap: 2rem;
		align-items: center;
		width: 100%;
	}

}


@media screen and (max-width: 480px) {

	.inside-container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.image-with-content {
		padding: 2rem;
		display: grid;
		grid-template-columns: 1fr;
		column-gap: 2rem;
		align-items: center;
		width: 100%;
	}
	
.inside .contact .hero {
	height: 20rem !important;
}

}


/* Map SVG */
.mapsvg-controller-container {
	border-radius: var(--border-radius) !important;
}

.mapsvg-details-header {
	color: var(--primary-red) !important;
	font-size: 1rem;
}

.map-image {
	margin: 0 auto;
}

.mapsvg-popover-close {
	right: 1rem !important;
	top: 1rem !important;
}

.mapsvg-controller-view-content hr {
	width: 100% !important;
	height: 1px !important;
	border: none !important;
	margin: 1rem 0 !important;
	background-color: var(--primary-light-gray) !important;
}

@media (max-width: 812px) {
	.mapsvg-popover-close {
		right: 1rem !important;
		top: 1rem !important;
		transform: scale(.5);
		z-index: 999;
	}

	.mapsvg-details-container {
		width: 100% !important;
		padding: 0 1rem !important;
	}
}

@media (max-width: 500px) {

	.mapsvg-details-container {
		min-width: 16rem;
		width: 100% !important;
		padding: 0 1rem !important;
	}
}

@media screen and (min-width: 1025px) {
	.mapsvg-controller-view-content {
		padding-bottom: 1rem !important;
	}
}


/* === Keyframes === */

/* === Live Fixes === */
@media (width < 1024px) {
	.mapsvg-marker img {
		max-width: 16px;
		max-height: 16px;
	}
}
/* === 404 Error Page === */
.error-page {
	background-color: #00558B;
}

.gray-left, .blue-left, .red-left, .gray-right, .gray-left, .gray-right {
  position: relative;
}
:is(.gray-right, .blue-right, .gray-right)::after {
  content: "";
  position: absolute;
  right: -100vw;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100vw;
  background: var(--primary-light-gray);
  z-index: -10;
}
.blue-right::after {
	background: var(--primary-blue);
}
.red-right::after {
	background: var(--primary-red);
}

:is(.gray-left, .blue-left, .red-left)::after {
  content: "";
  position: absolute;
  left: -100vw;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100vw;
  background: var(--primary-light-gray);
  z-index: -10;
}
.blue-left::after {
	background-color: var(--primary-blue);
}
.red-left::after {
	background: var(--primary-red);
}