.slideshow {
	height: 400px;
	object-fit: cover;
}


/* ==================== GelivableGlass Header / Navigation ==================== */

.gel-header {
	width: 100%;
	background: #ffffff;
	z-index: 9999;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}


/* ==================== Header Topbar ==================== */

.gel-topbar {
	min-height: 32px;
	background: #28978a;
	color: #ffffff;
	font-size: 13px;
	line-height: 1;
}

.gel-topbar-inner {
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


/* ==================== Header Social Links ==================== */

.gel-social {
	display: flex;
	align-items: center;
	gap: 14px;
}

.gel-social a {
	width: 16px;
	height: 16px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	color: #ffffff;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;

	opacity: 0.95;
	transition: all 0.25s ease;
}

.gel-social a:hover {
	color: #e8fffb;
	opacity: 1;
	transform: translateY(-1px);
}

.gel-social i {
	display: block;
	font-size: 14px;
	line-height: 1;
}

.gel-social .gel-social-icon {
	width: 14px;
	height: 14px;
	display: block;
	fill: currentColor;
}


/* ==================== Header Top Links ==================== */

.gel-toplinks {
	display: flex;
	align-items: center;
}

.gel-toplinks a {
	color: #ffffff;
	text-decoration: none;
	padding: 0 12px;
	line-height: 14px;
	border-left: 1px solid rgba(255, 255, 255, 0.38);
	transition: all 0.25s ease;
}

.gel-toplinks a:first-child {
	border-left: none;
}

.gel-toplinks a:hover {
	color: #e8fffb;
}


/* ==================== Main Navigation ==================== */

.gel-mainnav {
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid #eef2f2;
}

.gel-mainnav-inner {
	height: 82px;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gel-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex: 0 0 auto;
}

.gel-logo img {
	height: 45px;
	max-height: none;
	width: auto;
	display: block;
}


/* ==================== Desktop Menu ==================== */

.gel-menu > ul {
	list-style: none;

	display: flex;
	align-items: center;

	margin: 0;
	padding: 0;
}

.gel-menu > ul > li {
	position: relative;
	margin: 0 2px;
}

.gel-menu > ul > li > a {
	position: relative;

	display: block;

	padding: 31px 14px;

	color: #1d2529;

	font-size: 15px;
	font-weight: 600;
	line-height: 20px;

	text-decoration: none;
	white-space: nowrap;

	transition: color 0.25s ease;
}

.gel-menu > ul > li > a::before {
	content: "";

	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 20px;

	height: 2px;

	background: #28978a;

	transform: scaleX(0);
	transform-origin: center;

	transition: transform 0.25s ease;
}

.gel-menu > ul > li > a:hover,
.gel-menu > ul > li.active > a {
	color: #28978a;
}

.gel-menu > ul > li > a:hover::before,
.gel-menu > ul > li.active > a::before {
	transform: scaleX(1);
}


/* Desktop Dropdown Arrow */

.gel-menu > ul > li.has-sub > a::after {
	content: "";

	display: inline-block;

	margin-left: 8px;

	vertical-align: middle;

	border-top: 4px solid #1d2529;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;

	transition: all 0.25s ease;
}

.gel-menu > ul > li.has-sub:hover > a::after {
	border-top-color: #28978a;
	transform: rotate(180deg);
}


/* Desktop Submenu */

.gel-submenu {
	display: block;
	visibility: hidden;
	opacity: 0;

	position: absolute;
	top: 82px;
	left: 50%;

	transform: translateX(-50%) translateY(10px);

	min-width: 240px;

	background: #ffffff;
	border-top: 3px solid #28978a;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);

	list-style: none;

	margin: 0;
	padding: 9px 0;

	z-index: 99999;

	transition: all 0.22s ease;
}

.gel-submenu::before {
	content: "";

	position: absolute;
	top: -9px;
	left: 50%;

	margin-left: -6px;

	border-bottom: 6px solid #28978a;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}

.gel-submenu li {
	margin: 0;
	padding: 0;
}

.gel-submenu li a {
	display: block;

	padding: 11px 20px;

	color: #344044;

	font-size: 14px;
	font-weight: 400;

	text-decoration: none;
	white-space: nowrap;

	transition: all 0.22s ease;
}

.gel-submenu li a:hover {
	background: #eefaf8;
	color: #28978a;
	padding-left: 25px;
}

@media (min-width: 992px) {

	.gel-menu > ul > li:hover .gel-submenu {
		visibility: visible;
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

}


/* ==================== Desktop Hidden Mobile Elements ==================== */

.gel-mobile-toggle {
	display: none;
}

.gel-sub-toggle {
	display: none;
}

.gel-mobile-extra {
	display: none;
}

.gel-header-placeholder {
	height: 114px;
}


/* ==================== Mobile Header Menu ==================== */

@media (max-width: 991px) {

	body.gel-mobile-menu-open {
		overflow: hidden;
	}

	.gel-header {
		background: #ffffff;
		z-index: 9999;
	}

	.gel-topbar {
		display: none !important;
	}

	.gel-mainnav {
		height: 66px;

		background: #ffffff;
		border-bottom: 1px solid var(--gel-line, #e4ebea);
		box-shadow: 0 8px 24px rgba(16, 38, 41, 0.06);
	}

	.gel-mainnav-inner {
		width: 100%;
		height: 66px !important;

		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		flex-direction: row !important;

		padding-left: 18px !important;
		padding-right: 18px !important;
	}

	.gel-logo {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;

		margin: 0 !important;
		padding: 0 !important;

		line-height: 1;
	}

	.gel-logo img {
		width: auto !important;
		max-width: 150px !important;
		max-height: 38px !important;

		display: block;
	}


	/* Mobile Main Toggle */

	.gel-mobile-toggle {
		width: 42px;
		height: 42px;

		display: flex !important;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 6px;

		flex: 0 0 42px;

		padding: 0;
		margin: 0;

		border: none;
		background: transparent;

		cursor: pointer;
		z-index: 1005;

		box-shadow: none;
		outline: none;
		-webkit-tap-highlight-color: transparent;
	}

	.gel-mobile-toggle span {
		width: 24px;
		height: 2px;

		display: block;

		background: var(--gel-ink, #102629);
		border-radius: 999px;

		transition: all 0.25s ease;
	}

	.gel-mobile-toggle:hover,
	.gel-mobile-toggle:focus,
	.gel-mobile-toggle:active {
		background: transparent !important;
		box-shadow: none !important;
		outline: none !important;
	}

	.gel-header.gel-menu-open .gel-mobile-toggle span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.gel-header.gel-menu-open .gel-mobile-toggle span:nth-child(2) {
		opacity: 0;
	}

	.gel-header.gel-menu-open .gel-mobile-toggle span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}


	/* Mobile Menu Panel */

	.gel-menu {
		position: fixed !important;
		top: 66px !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;

		width: 100% !important;
		height: calc(100vh - 66px) !important;

		background: #ffffff !important;
		overflow-y: auto !important;

		transform: translateX(100%) !important;
		transition: transform 0.28s ease !important;

		box-shadow: -12px 0 40px rgba(16, 38, 41, 0.12);

		z-index: 1001 !important;
	}

	.gel-header.gel-menu-open .gel-menu {
		transform: translateX(0) !important;
	}

	.gel-menu > ul {
		width: 100% !important;

		display: block !important;

		margin: 0 !important;
		padding: 18px 22px 36px !important;

		list-style: none !important;
	}

	.gel-menu > ul > li {
		position: relative !important;

		width: 100% !important;

		display: block !important;

		margin: 0 !important;
		padding: 0 !important;

		border-bottom: 1px solid var(--gel-line, #e4ebea);
	}

	.gel-menu > ul > li > a {
		position: relative;

		width: 100% !important;

		display: block !important;

		padding: 17px 54px 17px 0 !important;

		color: var(--gel-ink, #102629) !important;

		font-size: 16px !important;
		line-height: 1.4 !important;
		font-weight: 720 !important;

		text-decoration: none !important;
		white-space: normal !important;
	}

	.gel-menu > ul > li > a::before {
		display: none !important;
		content: none !important;
	}

	.gel-menu > ul > li.has-sub > a::after {
		display: none !important;
		content: none !important;
	}

	.gel-menu > ul > li.active > a {
		color: var(--gel-main, #28978a) !important;
	}


	/* Mobile Plus Button Only */

	.gel-sub-toggle {
		position: absolute;
		top: 7px;
		right: 0;

		width: 42px;
		height: 42px;

		display: flex !important;
		align-items: center;
		justify-content: center;

		padding: 0;
		margin: 0;

		border: none;
		background: transparent;

		color: var(--gel-main, #28978a);

		cursor: pointer;
		z-index: 3;

		box-shadow: none !important;
		outline: none !important;
		-webkit-tap-highlight-color: transparent;
	}

	.gel-sub-toggle::before {
		content: "+";

		display: block;

		color: var(--gel-main, #28978a);

		font-size: 22px;
		line-height: 1;
		font-weight: 400;
	}

	.gel-sub-toggle:hover,
	.gel-sub-toggle:focus,
	.gel-sub-toggle:active {
		background: transparent !important;
		box-shadow: none !important;
		outline: none !important;
		color: var(--gel-main, #28978a) !important;
	}

	.gel-menu > ul > li.has-sub.mobile-open .gel-sub-toggle::before {
		content: "+";
	}


	/* Mobile Submenu */

	.gel-submenu {
		position: static !important;

		width: 100% !important;
		min-width: 0 !important;

		display: none !important;
		visibility: visible !important;
		opacity: 1 !important;
		transform: none !important;

		margin: 0 !important;
		padding: 0 0 14px 0 !important;

		background: transparent !important;
		border: none !important;
		box-shadow: none !important;

		list-style: none !important;

		transition: none !important;
	}

	.gel-submenu::before {
		display: none !important;
		content: none !important;
	}

	.gel-menu > ul > li.has-sub.mobile-open .gel-submenu {
		display: block !important;
	}

	.gel-submenu li {
		display: block !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.gel-submenu li a {
		display: block !important;

		padding: 10px 0 10px 16px !important;

		color: #526164 !important;

		font-size: 14.5px !important;
		line-height: 1.45 !important;
		font-weight: 500 !important;

		text-decoration: none !important;
		white-space: normal !important;

		border-left: 2px solid #e4ebea;

		background: transparent !important;
	}

	.gel-submenu li a:hover {
		color: var(--gel-main, #28978a) !important;
		border-left-color: var(--gel-main, #28978a);
		padding-left: 16px !important;
	}

	.gel-mobile-extra {
		display: block !important;
	}

	.gel-header-placeholder {
		height: 66px !important;
	}

}


/* ==================== Small Mobile Header ==================== */

@media (max-width: 575px) {

	.gel-mainnav,
	.gel-mainnav-inner {
		height: 62px !important;
	}

	.gel-logo img {
		max-width: 138px !important;
		max-height: 34px !important;
	}

	.gel-mobile-toggle {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.gel-menu {
		top: 62px !important;
		height: calc(100vh - 62px) !important;
	}

	.gel-header-placeholder {
		height: 62px !important;
	}

}


/* ==================== /GelivableGlass Header / Navigation ==================== */