@charset "utf-8";
/* CSS Document */

.mainhead {
    font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
    font-size: 45px;
    color: #3C5134;
	font-style: italic;
}
.heading {
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
	font-size: 26px;
	color: #3C5134;
}

body {
	background-color:#DAE8D5;
}
.nav-container {
	display: flex;
	gap: 24px;
	justify-content: center;
	padding: 40px 20px;
}
.nav-link {
	position: relative;
	display: block;
	overflow: hidden;
	width: 320px;
	height: 320px;
	border: 3px solid white;
	border-radius: 8px;
	background-color: #000000;
	text-decoration: none;
}
.nav-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 1;
	transition: opacity 0.35s ease-in-out; /*smooth transition */
}

.nav-link:hover .nav-image {
	opacity: 0.4;
}

.nav-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
		
	display:flex;
	justify-content:center;
	align-items: center;
	
	color:#FFFFFF;
	font-family: Verdana, sans-serif;
	font-size: 30px;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	
	pointer-events: none;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5)
}
.table-text {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 14px;
	color: #3C5134;
	font-weight: 400;
	padding: 10px;
}
* {
	box-sizing: border-box
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden;
}
.colored-section {
	width: 100%;
	height: 150px;
	background-color:#79A073;
	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.footer-color {
	width: 100%;
	height: 50px;
	background-color:#79A073;
	padding: 0px
}
.side-by-side {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;	
}
.image-container{
	flex: 1;
}
.image-container img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}
.text-box {
	flex: 1;
}
.page-column {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}
.image-box{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 250px;
	text-align: center;
	background-color: #B0D1AB;
	padding: 20px;
	border: 3px solid white;
	border-radius: 8px;
}
.image-box img {
	width: 100%;
	height: 300px;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 8px;
}
.image-box p {
	margin-top: 10px;
}
ul {
	display: table;
	margin: 0 auto;
	text-align: left;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 14px;
	color: #3C5134;
	font-weight: bold;
	background-color: #B0D1AB;
	border: 3px solid white;
	border-radius: 8px;
}
.mail-text {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 18px;
	color: #3C5134;
	font-weight: bold;
}
iframe {
	border-radius: 8px;
}
.iframe-box {
	background-color:#B0D1AB;
	padding: 50px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 8px;
}
.color-box {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:#B0D1AB;
	width: 100vw;
	padding: 40px 0;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.green-box {
	background-color: #79A073;
	color: white;
	padding: 20px;
	border-radius: 4px;
	box-sizing: border-box;
	width: 500px;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.side-image {
	margin-left: 20px;
	width: 500px;
	height: 500px;
	object-fit: cover;
	border-radius: 4px;
}
.box-text {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 28px;
	color: white;
	font-weight: 400;
	text-align: center;
}
.heading-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	text-align: center;
	background-color:#BCDCB4;
	border: 2px solid white;
	border-radius: 8px;
	padding: 15px 25px;
	max-width: max-content;
}
.nav-menu {
	display: flex;
	align-items: center;
	gap: 15px;
}
.nav-button {
	display: inline-block;
	text-decoration: none;
	color: #3C5134;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
	font-size: 18px;
	padding: 10px 20px;
	border: 2px solid white;
	border-radius: 4px;
	background-color: #BCDCB4;
	transition: all 0.3s ease;
	align-content: center;
}
.nav-button:hover {
	background-color: #FFFFFF;
}