:root {
	--poppins-font: "Poppins";
	--neris-font: "Neris";
	--arial-font: "Arial";
	--allFontOptions: "Poopins, Neris, Arial";
	--footerBgColor: #f4f4f6;
	--bodyColor: ##f4f4f6;
	--titleFontSize: 22pt;
	--subtitleFontSize: 18pt;
	--standardFontSize: 13pt;
	--captionFontSize: 10pt;
	--boldFontWeight: 500;
}

body {
	background-color: var(--bodyColor);
	min-height: 100vh;
	margin: 0px;
	display: flex;
	flex-direction: column;
	/*font-family: var(--allFontOptions);*/
}
header {
	min-height: 50px;
	background: lightcyan;
}

footer {
	min-height: 500px;
	background: var(--footerBgColor);
}

main {
	flex: 1;
	padding-top: 150px;
}

.navbar {
	z-index: 10;
	display: flex;
	justify-content: center;
}
.navbar-brand {
	display: flex;
	align-items: center;
	justify-content: center;
}

.navigation-links > li {
	height: 150px;
	min-width: 16vw;
	border: 1px solid #00000011;
}

.navigation-links > li > a {
	font-size: 17pt;
	color: #ffffff;
}

.navigation-links > li:nth-child(1) {
	 background-color: rgba(0, 101, 46, 0.8); 
}
.navigation-links > li:nth-child(2) {
	 background-color: rgba(0, 136, 46, 0.8);
}
.navigation-links > li:nth-child(n + 3) {
	background-color: rgba(0, 166, 109, 0.5);
}

.custom-toggler.navbar-toggler {
	border-color: lightgreen;
}

/* Setting the stroke to green using rgb values (0, 128, 0) */

.custom-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath stroke='rgba(0, 166, 109)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24' /%3E%3C/svg%3E");
}

.footer-list-small {
	/*font-family: var(--poppins-font);*/
	font-size: var(--captionFontSize);
}

.footer-list-text {
	/*font-family: var(--poppins-font);*/
	/* font-size: var(--subtitleFontSize); */
	font-weight: 600 !important;
}

.footer-list-title {
	/*font-family: var(--poppins-font);*/
	font-size: var(--titleFontSize);
}

.text-green-bold {
	color: #00652e;
	font-weight: bold;
}

.slider {
	position: absolute;
	z-index: 0;
}
.top-slider {
	position: relative;
	margin-top: -150px;
	overflow: hidden;
	z-index: 3;
}
.image {
	display: block;
	width: 100%;
	height: auto;
	box-shadow: 0px -40px 60px rgba(131, 184, 96, 0.9);
}
.text-small {
	font-size: var(--standardFontSize);
	font-weight: 500;
	/*font-family: var(--poppins-font);*/
}
.neris-title {
	/*font-family: var(--neris-font);*/
	font-size: var(--titleFontSize);
}

.neris-subsubtitle {
    font-size: 18px;
    text-align: left;
    color: #333;
    font-weight: 600 !important;
}

.neris-subtitle {
	font-size: 16px;
    text-align: left;
  color: #333;
}

.neris {
	/*font-family: var(--neris-font);*/
}

.neris-text {
	/*font-family: var(--neris-font);*/
	font-size: var(--captionFontSize);
}
.poppins-title {
	/*font-family: var(--poppins-font);*/
	font-size: var(--titleFontSize);
}

.poppins-subtitle {
	font-size: 16px;
    text-align: left;
  color: #333;
}
.poppins-caption {
	/*font-family: var(--poppins-font);*/
	font-size: var(--captionFontSize);
}
.poppins-text {
	/*font-family: var(--neris-font);*/
	font-size: var(--standardFontSize);
}

.bold {
	font-weight: var(--boldFontWeight);
}

.greenbar {
	height: 100px;
	width: auto;
	/* background-color: #00652e; */
}

.green-bg {
	background-color: #00a66d;
}

.dark-green-bg {
	background-color: #00652e;
}

.text-white {
	color: #ffff;
}

.text-greenier {
	color: #00882e;
}

.text-lightgreen {
	color: #00a66d;
}
.text-green {
	color: #00652e;
}
.text-letuce {
	color: #83b860;
}

.text-grey {
	color: #575756;
}

.image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
	max-width: 350px;
	margin: 0 auto;
	background-color: #ffffff6d;
}
.image-wrapper image {
	max-width: 100%;
	height: auto;
}

.text-below-image {
	max-width: 350px;
	text-align: center;
	color: #ffffff;
	padding: 10px;
	margin: 0 auto;
}
.medium-green-bg {
	background-color: #00882e;
}

.info-row {
	max-width: 100%;
	text-align: start;
	color: #ffffff;
	padding: 10px;
	margin: 0 auto;
}
.info-row > ul {
	list-style-type: none;
}

a:link {
	color: #00652e;
}

a {
	color: #00652e;
	text-decoration: none;
}

.banner-divider {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

.banner-divider img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	object-fit: cover;
	transform: translateY(0);
	transition: transform 0.2s ease-out;
}

.lettuce-bg {
	background-color: #83b860;
}

.text-container {
	text-align: center;
	margin: 0 auto;
	padding: 20px;
}

.white-bg {
	background-color: var(--footerBgColor);
}

.single-post-meta {
	height: 150px;
	width: 100%;
}

.horizontal-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: flex-start;
	width: 100%;
}

.card {
	flex: 0 1 calc(25% - 1.5rem);
	max-width: calc(25% - 1.5rem);
	min-width: 250px;
	height: 300px;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin: auto;
}

.card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.card:hover{
	transform: translateY(-8px);
	box-shadow: 0 8px 16px rgba(0, 128, 0, 0.2);
}

.thumbnail-wrapper {
	height: 200px;
	overflow: hidden;
	position: relative;
}

.thumbnail-wrapper img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 100%;
	transform: translate(-50%, -50%);
}

footer {
	min-height: auto;
	padding: 20px 0;
}

.footer-list-title {
	text-align: left;
}

.footer-list-text {
	display: block;
}

.news {
	display: flex;
	gap: 20px;
	justify-content: start;
	padding: 10px;
}

.news-item {
	flex: 1;
	min-width: 100px;
	height: 100px;
	background-color: #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #ccc;
}

.news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.news-card {
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    border: 1px solid #33333340;
}

.news-card img{
	transition: 0.5s all;
}

.news-card:hover img{
	/* transform: translateY(-8px); */
	/* box-shadow: 0 8px 16px rgba(0, 128, 0, 0.2); */
  transform: scale(1.1);
}

.news-card:hover {
    box-shadow: 0px 0px 16px 4px rgb(0 0 0 / 47%);
}

.news-card-header {
	position: relative;
	height: 100px;
	background-color: #f4f4f6;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	/* padding-top: 10px; */
}

.news-card-header-img {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 75px;
	height: 75px;
	z-index: 2;
}

.news-card-thumbnail-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card-body {
    /* padding-top: 10px; */
    text-align: center;
    margin-top: 80px !important;
    padding: 0px 10px;
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: flex-start; */
}

.card-body {
	padding-top: 50px;
	text-align: center;
	margin-top: 20px;
}

.search-form,
.help-form,
.mobile-form-section {
	display: none;
}

@media (min-width: 1201px) {
	.search-form,
	.help-form {
		display: block;
		position: absolute;
		z-index: 4;
	}

	.search-form {
		top: 82%;
		left: 25%;
		width: 20%;
	}

	.help-form {
		top: 45%;
		right: 5%;
		width: 30%;
		padding: 20px;
	}

	.mobile-form-section {
		display: none;
	}
}

@media (max-width: 1200px) {
	.card {
		flex: 0 1 calc(33.33% - 1.5rem);
		max-width: calc(33.33% - 1.5rem);
	}
}

@media (max-width: 1200px) and (min-width: 769px) {
	.search-form,
	.help-form {
		display: none;
	}

	.mobile-form-section {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px;
		margin-top: 20px;
		width: 100%;
		position: relative;
		z-index: 1;
	}
}

@media (max-width: 768px) {
	.search-form,
	.help-form {
		display: none;
	}

	.mobile-form-section {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px;
		margin-top: 20px;
		width: 100%;
		position: relative;
		z-index: 1;
	}

	.card {
		flex: 0 1 calc(50% - 1.5rem);
		max-width: calc(50% - 1.5rem);
	}

	.news-card-header-img {
		bottom: -20px;
		height: 60px;
		width: 60px;
	}

	.news-card-header {
		height: 80px;
	}

	.news-card-body {
		padding-top: 60px;
	}

	.card-body {
		padding-top: 40px;
	}
	.navigation-links > li {
		min-width: auto;
		height: auto;
	}

	.navigation-links > li > a {
		font-size: 14pt;
	}

	.navigation-links img {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 992px) {
	footer .row {
		flex-direction: column;
		align-items: center;
	}

	footer .col-md-3 {
		margin-bottom: 20px;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.news-card-header {
		height: 70px;
		padding-bottom: 5px;
	}

	.news-card-body {
		padding-top: 60px;
		margin-top: 20px;
	}

	.card-body {
		padding-top: 40px;
		margin-top: 10px;
	}

	.news-card-header-img {
		width: 50px;
		height: 50px;
		bottom: -15px;
	}
	.horizontal-grid {
		justify-content: center;
	}

	.card {
		flex: 0 1 calc(100% - 1.5rem);
		max-width: calc(100% - 1.5rem);
		margin: 1rem;
	}

	footer {
		padding: 10px 0;
	}

	.footer-list-title {
		font-size: 18pt;
	}

	.footer-list-text,
	.footer-list-small {
		font-size: var(--standardFontSize);
	}
	.news-card-header-img {
		width: 60px;
		height: 60px;
	}
}
.dropdown-menu > a {
	border-bottom: 2px solid #575756;
}

.dropdown-menu > a:hover {
	background-image: none;
	background-color: #00882e;
	color: #ffff;
}

.mobile-search-form,
.mobile-help-form {
	width: 90%;
	margin: 10px 0;
	padding: 15px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ccc;
	border-radius: 5px;
}

.search-input {
	background: transparent;
	border: none;
	outline: none;
}

.search-icon {
	fill: currentColor;
}

.search-form-text {
	color: #ffff;
}

.greysmoke-bg {
	background-color: #ffffff80;
}

.search-input {
	border-radius: 0;
	border-top: none;
	border-left: none;
	border-right: none;
	background-color: transparent;
	border-bottom: 4px solid #fff;
}

.input-group-append .btn {
	border: none;
	background-color: transparent;
}

.input-group-append .btn svg {
	fill: #ffff;
}

.navigation-links {
	gap: 10px;
}

.navbar-toggler {
	border: none; 
}

.navbar-brand img {
	max-width: 250px;
	height: auto; 
}
