@font-face {
	font-family: 'Funnel Sans';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("/public/fonts/funnelsans/regular.woff2") format("woff2");
}

@font-face {
	font-family: 'Funnel Sans';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url("/public/fonts/funnelsans/500.woff2") format("woff2");
}

@font-face {
	font-family: 'Funnel Display';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("/public/fonts/funneldisplay/regular.woff2") format("woff2");
}

@font-face {
	font-family: 'Funnel Display';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url("/public/fonts/funneldisplay/700.woff2") format("woff2");
}

body {
	height: 100vh;
	width: 100vw;
	overflow-y: auto;
	overflow-x: hidden;
	font-family: 'Funnel Sans', sans-serif;
	margin: 0px;
}

/* Page Header Section */
.page-header {
	width: 100vw;
	background-color: transparent;
	padding: 40px 0;
	position: absolute;
	z-index: 10;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	overflow-x: auto;
}

.small-logo img {
	max-width: 150px;
}

.styled-button {
	display: inline-block;
	background-color: #fff;
	color: #000;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	letter-spacing: 1.5px;
}

.styled-button:hover {
	background-color: #000;
	transform: translateY(-2px);
	color: #fff;
}

.overlay {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.hero {
	position: relative;
	height: 90vh;
	width: 100vw;
	background: url('/public/img/hero.jpg') no-repeat center center/cover;
}


.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -30%);
	color: white;
	text-align: center;
	z-index: 2;
}

.hero-content h1 {
	font-family: 'Funnel Display', sans-serif;
	font-size: 3rem;
	line-height: 1.5;
	font-weight: bold;
}

.logos-section {
	background-color: #f9f9f9;
	padding: 20px 0;
	bottom: 5vh;
	width: 100%;
	z-index: 2;
}

.large-logo {
	height: 10vh;
	width: auto;
}

.small-logo {
	max-width: 200px;
	margin: 0 15px;
	display: flex;
	justify-content: center;
}

.small-logo img {
	max-width: 100%;
	height: auto;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.small-logo img:hover {
	opacity: 1;
}

.navbar {
	background-color: #052329;
	width: 100%;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px 20px;
}

.navbar .logo {
	display: flex;
	align-items: center;
}

.small-logo img {
	max-width: 150px;
}

.justified-container {
	max-width: 1400px;
	margin: 0 auto;
	text-align: justify;
	padding: 20px;
}

.page-footer {
	background-color: #052329;;
	color: #fff;
	padding: 10px 0;
	font-size: 14px;
	bottom: 0;
	width: 100%;
	z-index: 2;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	color: #fff;
	text-align: right;
}

.footer-container a {
	color: #fff;
	text-decoration: none;
	margin: 0 10px;
}

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