@font-face {
	font-family: "Myriad Pro Regular";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Regular"),
		url("../fonts/MYRIADPRO-REGULAR.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Condensed";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Condensed"),
		url("../fonts/MYRIADPRO-COND.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Condensed Italic";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Condensed Italic"),
		url("../fonts/MYRIADPRO-CONDIT.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Light";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Light"),
		url("../fonts/MyriadPro-Light.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Semibold";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Semibold"),
		url("../fonts/MYRIADPRO-SEMIBOLD.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Semibold Italic";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Semibold Italic"),
		url("../fonts/MYRIADPRO-SEMIBOLDIT.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Bold Condensed";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Bold Condensed"),
		url("../fonts/MYRIADPRO-BOLDCOND.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Bold";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Bold"),
		url("../fonts/MYRIADPRO-BOLD.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Bold Italic";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Bold Italic"),
		url("../fonts/MYRIADPRO-BOLDIT.woff") format("woff");
}

@font-face {
	font-family: "Myriad Pro Bold Condensed Italic";
	font-style: normal;
	font-weight: normal;
	src: local("Myriad Pro Bold Condensed Italic"),
		url("../fonts/MYRIADPRO-BOLDCONDIT.woff") format("woff");
}

/* BELDOVE SCRIPT FONT */
@font-face {
	font-family: "Beloved Script";
	src: url("../fonts/Beloved-Script.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

/* FORCEDSQUARE TTF */
@font-face {
	font-family: "ForcedSquare";
	src: url("../fonts/FORCEDSQUARE.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

/* ProximaNovaSemibold.otf */
@font-face {
	font-family: "Proxima Nova Semibold";
	src: url("../fonts/ProximaNovaSemibold.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}

/* VARIABLES */
:root {
	/* FONTS */
	--font-Cond: "Myriad Pro Condensed", sans-serif;
	--font-CondIt: "Myriad Pro Condensed Italic", sans-serif;
	--font-LightCond: "Myriad Pro Light", sans-serif;
	--font-SemiBold: "Myriad Pro Semibold", sans-serif;
	--font-SemiBoldIt: "Myriad Pro Semibold Italic", sans-serif;
	--font-Bold: "Myriad Pro Bold", sans-serif;
	--font-BoldIt: "Myriad Pro Bold Italic", sans-serif;
	--font-BoldCn: "Myriad Pro Bold Condensed", sans-serif;
	--font-BoldCnIt: "Myriad Pro Bold Condensed Italic", sans-serif;
	--font-BoldSemiCn: "Myriad Pro Bold Semi Condensed", sans-serif;
	--font-BoldCnIt: "Myriad Pro Bold Condensed Italic", sans-serif;

	--font-forcedSquare: "ForcedSquare", sans-serif;

	--font-ProximaNovaSemiBold: "Proxima Nova Semibold", sans-serif;

	--font-BelovedScript: "Beloved Script", cursive;

	/* COLORS */
	--color-primary: #056636;
	--color-lang: #135132;
	--color-nav-bg: #c9c9c9;
}

/* GLOBAL STYLES */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--font-Cond);
}
/* --- START OF CUSTOM SCROLLBAR STYLES --- */

/* Works on Firefox */
html {
	scrollbar-width: thin; /* "auto" or "thin" */
	scrollbar-color: #363e41 #e0e0e0; /* thumb color track color */
}

/* Works on Chrome, Edge, and Safari */
::-webkit-scrollbar {
	width: 8px; /* Width of vertical scrollbar */
	height: 8px; /* Height of horizontal scrollbar */
}

::-webkit-scrollbar-track {
	background: #e0e0e0; /* Light gray track background */
	border-radius: 4px; /* Optional: round the track ends */
}

::-webkit-scrollbar-thumb {
	background-color: #363e41; /* Dark gray thumb color */
	border-radius: 4px; /* Rounded corners for the thumb */
	/* border: 1px solid #c9c9c9; */ /* Optional: subtle border */
}

::-webkit-scrollbar-thumb:hover {
	background-color: var(--color-primary); /* Use primary green on hover */
}

/* Optional: Apply styles to body as well for robustness in some browsers/scenarios */
body {
	/* Firefox styles */
	scrollbar-width: thin;
	scrollbar-color: #363e41 #e0e0e0;
}

/* --- END OF CUSTOM SCROLLBAR STYLES --- */

body {
	background-color: #ffffff;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.separator-line {
	width: 100%;
	height: 10px;
	background-color: #363e41;
}

.separator-line-thin {
	width: 100%;
	height: 2px;
	background-color: #363e41;
}

.separator-line-light {
	width: 100%;
	height: 10px;
	background-color: #ffffff;
}

/* TOP LOGO AND LANGUAGE */
.lolang {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
}

.lolang .language a {
	color: var(--color-lang);
	font-family: var(--font-LightCond);
	font-size: 1.2rem;
	font-weight: 400;
	border-radius: 0.5rem;
	transition: all 0.3s ease-in-out;
	display: block;
	margin-top: auto;
	margin-bottom: 5px;
}

/* NAVBAR */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background-color: var(--color-nav-bg);
	padding-top: 10px;
	padding-bottom: 10px;
}

.navbar_content {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.navbar_content .email {
	font-family: var(--font-LightCond);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
	font-size: 16pt;
	letter-spacing: 1px;
}

.navbar_content ul {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	font-family: var(--font-Cond);
	align-items: center;
	width: 100%;
	height: 100%;
	list-style-type: none;
}

.navbar_content ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #000000;
	font-size: 18.14pt;
}

.navbar_content ul li:nth-child(3) a {
	color: var(--color-primary);
	border-radius: 0.5rem;
	transition: all 0.3s ease-in-out;
}

.navbar_content ul li a:hover {
	color: var(--color-primary);
}

/* HERO SECTION */
.hero {
	position: relative;
	width: 100%;
	height: 445px;
	background-image: url("../imgs/EX1.gif");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.overlay {
	position: absolute;
	top: 10%;
	width: 100%;
	height: 50%;
	background-color: rgba(0, 0, 0, 0.26);
	padding: 10px 0 0 0;
}

.hero_content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.hero_content p {
	font-size: 36pt;
	color: #ffffff;
}

.hero_content .numbers {
	font-size: 18pt;
	color: #ffffff;
	text-align: center;
	margin-top: 40px;
}

/* VISION AND MISSION */
.products-services {
	position: relative;
	padding: 50px 0;
	background-color: #ffffff;
	max-width: 100vw;
	overflow: hidden;
}

.products-services_content {
	position: relative;
}

.products-services::before {
	content: "ABOUT";
	position: absolute;
	top: 15%;
	left: 20%;
	width: 100%;
	height: 100%;
	font-size: var(--font-ProximaNovaSemiBold);
	font-weight: 900;
	font-size: 300pt;
	color: #57565610;
}

.products-services::after {
	content: "ABOUT";
	position: absolute;
	top: 0%;
	left: 50%;
	width: 100%;
	height: 100%;
	font-size: var(--font-ProximaNovaSemiBold);
	font-weight: 900;
	font-size: 150pt;
	color: #57565610;
}

.products-services-group,
.products-services-list {
	margin-bottom: 40px;
}

.products-services-list .products-services-title {
	margin-bottom: 10px;
}

.products-services-title {
	font-family: var(--font-SemiBold);
	font-size: 20pt;
	color: #757575;
}

.products-services-title + p {
	font-family: var(--font-LightCond);
	font-size: 15pt;
	color: #757575;
	line-height: 1.5;
}

.products-services-list ul {
	font-family: var(--font-LightCond);
	font-size: 15pt;
	color: #757575;
	line-height: 1.5;
	list-style: inside;
}

.products-services-list ul + p {
	font-family: var(--font-LightCond);
	font-size: 15pt;
	color: #757575;
	line-height: 1.5;
	margin-top: 20px;
}

/* #FOOTER */
footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: #373737;
	padding-top: 20px;
	padding-bottom: 20px;
}

footer .footer_links {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

footer .footer_links li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--font-SemiBold);
	font-size: 14pt;
	font-weight: 500;
	text-decoration: none;
	color: #ffffff;
}

.footer_social-media {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.footer_social-media::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 30%;
	width: 40%;
	height: 1px;
	background-color: #444444;
}

.footer_copy-rights p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	gap: 20px;
	font-family: var(--font-LightCond);
	font-size: 14pt;
	color: #ffffff;
	margin-top: 20px;
}

/* --- START OF RESPONSIVE STYLES --- */

@media screen and (max-width: 1350px) {
	/* Adjustments for larger screens */
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 1200px) and (orientation: landscape) {
	/* Landscape mode on mobile devices */
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Tablet and smaller devices (<= 991px) */
@media (max-width: 991px) {
	.container {
		max-width: 95%; /* Add some padding on the sides */
		padding-left: 15px;
		padding-right: 15px;
	}

	/* TOP LOGO AND LANGUAGE */
	.lolang .logo img {
		max-width: 180px; /* Reduce logo size */
		height: auto;
	}
	.lolang .language a {
		font-size: 1rem; /* Slightly smaller language link */
	}

	/* NAVBAR - Making links fit */
	.navbar_content {
		align-items: center; /* Center email and nav list container */
		flex-direction: column; /* Stack email and nav list */
		gap: 5px; /* Space between email and nav list */
	}
	.navbar_content .email {
		font-size: 14pt; /* Slightly smaller email text */
		margin-bottom: 0; /* Remove bottom margin */
		align-self: flex-start; /* Align email to the left */
	}
	.navbar_content ul {
		/* Keep the list visible */
		gap: 12px; /* Reduce gap between nav items */
		justify-content: flex-start; /* Align nav items left */
		flex-wrap: wrap; /* Allow items to wrap to the next line */
		padding: 0; /* Remove default padding if any */
		width: 100%; /* Take full width for wrapping */
	}
	.navbar_content ul li a {
		font-size: 15pt; /* Smaller nav links */
		padding: 3px 5px; /* Reduce padding slightly */
	}
	/* Remove Menu button placeholder */
	.navbar_content::after {
		display: none;
	}

	/* HERO SECTION */
	.hero {
		height: auto; /* Adjust height based on content */
		min-height: 350px;
	}
	.overlay {
		position: relative; /* Change positioning for better control */
		top: 0;
		height: auto;
		padding: 20px 0; /* Add padding */
		background-color: rgba(0, 0, 0, 0.4); /* Slightly darker overlay */
	}
	.hero_content {
		flex-direction: column; /* Stack content vertically */
		align-items: flex-start;
	}
	.hero_content p {
		font-size: 28pt; /* Reduce hero text size */
		margin-bottom: 20px; /* Add space below text */
	}
	.hero_content .numbers {
		margin-top: 10px; /* Adjust margin */
		align-self: flex-end; /* Move numbers to the right */
	}

	/* MISSION AND VISION */

	/* FOOTER */
	footer .footer_links {
		flex-wrap: wrap; /* Allow links to wrap */
		gap: 10px 15px; /* Adjust gap */
		margin-bottom: 15px;
		justify-content: center; /* Center links */
	}
	footer .footer_links li a {
		font-size: 13pt;
	}
	.footer_social-media {
		flex-wrap: wrap; /* Allow icons to wrap */
		gap: 15px;
		margin-bottom: 15px;
		justify-content: center; /* Center icons */
	}
	.footer_social-media::after {
		left: 20%;
		width: 60%;
	}
	.footer_copy-rights p {
		font-size: 12pt;
		text-align: center;
	}
}

/* Mobile devices (<= 767px) */
@media (max-width: 767px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}

	/* TOP LOGO AND LANGUAGE */
	.lolang {
		gap: 10px;
		padding: 10px 0; /* Add some padding */
	}
	.lolang .logo img {
		max-width: 160px; /* Further reduce logo size */
	}
	.lolang .language {
		margin-bottom: 0; /* Remove bottom margin */
	}

	/* NAVBAR - Adjust wrapping/sizing further */
	.navbar {
		padding-top: 8px; /* More padding */
		padding-bottom: 8px;
	}
	.navbar_content {
		align-items: center; /* Center items */
		gap: 8px; /* Increase gap */
	}
	.navbar_content .email {
		font-size: 11pt; /* Smaller email */
		gap: 3px;
		order: 2; /* Put email below nav links */
		flex-basis: 100%; /* Ensure it takes full width */
		justify-content: center; /* Center the email */
		margin-top: 5px; /* Space above email */
		margin-left: auto;
		margin-right: auto; /* Center email */
	}
	.navbar_content .email img {
		width: 12px; /* Smaller icon */
		height: auto;
	}
	.navbar_content ul {
		/* Keep visible, adjust spacing */
		display: flex; /* Ensure flex is still applied */
		gap: 5px 10px; /* Reduce gap further, allow vertical gap */
		justify-content: center; /* Center nav items */
		order: 1; /* Nav links first */
		width: 100%; /* Full width */
	}
	.navbar_content ul li a {
		font-size: 13pt; /* Further reduce font size */
		padding: 2px 4px; /* Minimal padding */
	}

	/* HERO SECTION */
	.hero {
		min-height: 280px;
	}
	.overlay {
		padding: 15px 0;
	}
	.hero_content p {
		font-size: 18pt; /* Further reduce hero text */
		line-height: 1.3;
	}
	.hero_content .numbers {
		font-size: 12pt;
	}

	/* MISSION AND VISSION */
	.products-services-group h3 {
		font-size: 16pt; /* Smaller text size */
	}
	.products-services-group p {
		font-size: 14pt; /* Smaller text size */
	}
	.products-services-list .products-services-title {
		font-size: 16pt; /* Smaller title size */
	}
	.products-services-list .products-services-title + p {
		font-size: 14pt; /* Smaller text size */
	}
	.products-services-list ul {
		font-size: 14pt; /* Smaller list size */
	}

	.products-services-list p {
		font-size: 14pt; /* Smaller text size */
	}

	/* FOOTER */
	footer .footer_links {
		justify-content: center; /* Center links */
		gap: 8px 12px;
	}
	footer .footer_links li a {
		font-size: 11pt;
	}
	.footer_social-media {
		gap: 10px; /* Reduce gap between icons */
		justify-content: center;
	}
	.footer_social-media img {
		max-width: 18px; /* Smaller icons */
		height: auto;
	}
	.footer_social-media::after {
		display: none; /* Hide separator line */
	}
	.footer_copy-rights p {
		font-size: 9pt;
	}
}

@media screen and (max-width: 576px) {
	/* Adjustments for very small screens */
	.container {
		padding-left: 5px;
		padding-right: 5px;
	}

	/* MISSION AND VISION */
	.products-services::before {
		font-size: 200pt; /* Reduce font size */
		top: 20%;
		left: 10%;
	}
	.products-services::after {
		font-size: 100pt; /* Reduce font size */
		top: 0%;
		left: 30%;
	}
}

/* --- END OF RESPONSIVE STYLES --- */
