body{
	font-family: "Verlag-Book";
	font-size: 11pt;
	line-height: 20pt;
}
.oswald-bold {
  	font-family: "VerlagCondensed-Book";
	font-weight: bold!important;
}
.oswald {
  	font-family: "VerlagCondensed-Book";
	font-weight: 200!important;
}
.oswald-400 {
  	font-family: "VerlagCondensed-Book";
	font-weight: 400!important;
}

.montserrat {
  	font-family: "Verlag-Book";
  	font-style: normal!important;
}

.grid-item { 
	transition: transform 0.3s, margin 0.3s;
}
.grid-item:hover {
	transform: scale(1.1);
}
.selected {
	transform: scale(1.1);
	margin-right: 30px!important;
	margin-left: 50px!important;
}
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.left-arrow {
	left: -40px; /* Adjust this value as needed */
}
.right-arrow {
	right: -40px; /* Adjust this value as needed */
}
.dropdown-content {
	display: none;
	position: fixed;
	width: 100%;
	z-index: 9;
}

.nav-item {
	height: 100%;
	position: relative;
}

.nav-item a {
	position: relative;
	z-index: 11;
	margin-bottom: -4px;
}

.nav-item a.active {
	background-color: #f3f4f6;
	border-bottom: 4px solid #00bcd4;
}

.nav-item a.active::after {
	content: '';
	position: absolute;
	top: -5px; /* Adjust based on the desired position */
	left: 50%;
	transform: translateX(-50%) rotate(180deg);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #37532C; /* Adjust based on your desired color */
	z-index: 30; /* Ensure it is above the header and navbar */
}

.grey-bar {
	background-color: #DFDFDF;
	height: 4px;
	width: 100%;
}

.breadcrumb-container {
	display: flex;
	align-items: center;
	gap: 0.5rem; /* Adjust the gap as needed */
}
.breadcrumb-buttons {
	display: flex;
	flex-wrap: wrap;
}

.breadcrumb-buttons a {
	background-color: #f3f4f6;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	text-decoration: none;
}

.gradient-button {
	background: linear-gradient(to top, #0096A5, #00A8AD); /* Adjust the colors as needed */
	color: white;
	border: none;
	padding: 6px 9px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
}

.footer {
	background-color: #839872;
	color: #ffffff;
}

.footer-bottom {
	background-color: #37532C;
	color: #ffffff;
}

.footer a {
	color: #ffffff;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}
html {
	scroll-behavior: smooth;
}