/*! normalize.css v1.1.0 | MIT License | git.io/normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

*{ box-sizing:border-box; }
html {
	scroll-behavior: smooth;
}
html, body{
	margin: 0;
	padding: 0;
	height:100%;
}
body{
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 300;
	font-style: normal;
	line-height: 1.4;
  	margin:0;
  	color: #333;
}
a {
	color: var(--color-primary);
	text-decoration: none;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
a:hover {
	color: var(--color-secondary);
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
@-ms-keyframes showhide {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-webkit-keyframes showhide {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes showhide {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes showhide {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes showhide {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
section {
	opacity: 0;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
section.section-visible {
	animation-name: showhide;
	animation-delay: 0.25s;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

/* Backgrounds */
.primary-gradient {
	background: var(--color-primary);
	background: -webkit-linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	background: -moz-linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	background: linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-primary)", endColorstr="var(--color-primary)", GradientType=0);
}
.secondary-gradient {
	background: var(--color-secondary);
	background: -webkit-linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	background: -moz-linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	background: linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-secondary)", endColorstr="var(--color-secondary)", GradientType=0);
}
.gray-gradient {
	background: var(--color-lightgray);
	background: -webkit-linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	background: -moz-linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	background: linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-lightgray)", endColorstr="var(--color-lightgray)", GradientType=0);
}
.bg-primary {
	background-color: var(--color-primary);
}
.bg-secondary {
	background-color: var(--color-secondary);
}
.bg-tertiary {
	background-color: var(--color-tertiary);
}
.bg-white {
	background-color: var(--color-white);
}
.bg-gray {
	background-color: var(--color-gray);
}
.bg-lightgray {
	background-color: var(--color-lightgray);
}

/* Embed Container */
.embed-container {
	position: relative;
	background-color: var(--color-white, #ffffff);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.embed-container__inner {
	position: relative;
	width: 100%;
	/*max-width: 1400px;
	padding: 2em 1em;*/
	margin: 0 auto;
}
.embed-container__content {
	position: relative;
	width: 100%;
}
.embed-container__content iframe {
	max-width: 100%;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	padding: 1em;
	background: transparent;
	background: -webkit-linear-gradient(180deg, rgba(27, 54, 93, 0.6) 0%, rgba(27, 54, 93, 0) 100%);
	background: -moz-linear-gradient(180deg, rgba(27, 54, 93, 0.6) 0%, rgba(27, 54, 93, 0) 100%);
	background: linear-gradient(180deg, rgba(27, 54, 93, 0.6) 0%, rgba(27, 54, 93, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-primary)", endColorstr="var(--color-primary)", GradientType=0);
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.is-scrolled .header {
	padding: 0.5em 1em;
	background: #fff;
	-webkit-box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
	box-shadow: 0px 2px 10px rgba(0,0,0,0.1);	
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.is-scrolled .header .nav-menu li,.is-scrolled .header .nav-menu li a {
	color: var(--color-primary);
}
.header .container {
	position: relative;
}
.header .nav {
	display: flex;
	gap: 1em;
	align-items: center;
	justify-content: center;
}
.nav-logo,.nav-menu,.nav-utility {
	flex: 1;
}
.nav-logo {
	max-width: 240px;
}
.nav-logo img {
	max-width: 160px;
}
.nav-logo-dark {
	display: none;
}
.is-scrolled .nav-logo-light {
	display: none;
}
.is-scrolled .nav-logo-dark {
	display: block;
}
.nav-menu {
	display: flex;
	gap: 2em;
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-menu li {
	display: inline-block;
	font-size: 0.9em;
	color: var(--color-white);
	letter-spacing: 2px;
	text-transform: uppercase;
}
.nav-menu li a {
	color: var(--color-white);
	text-decoration: none;
}
.nav-menu li a:hover {
	border-bottom: 2px solid var(--color-white);
}
.is-scrolled .nav-menu li a:hover {
	border-bottom: 2px solid var(--color-primary);
}
.nav-menu ul {
	display: none;
}
.nav-utility {
	justify-content: center;
	text-align: right;
}
.nav-utility .btn {
	font-size: 0.8em;
}
.is-scrolled .nav-utility .btn-ghost.btn-white {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.is-scrolled .nav-utility .btn-ghost.btn-white:hover {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: var(--color-white);
}
.is-scrolled .nav-utility .btn-full.btn-white {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: var(--color-white);
}
.is-scrolled .nav-utility .btn-full.btn-white:hover {
	border-color: var(--color-secondary);
	background: var(--color-secondary);
	color: var(--color-white);
}
.menu-trigger {
	position: absolute;
  	top: 1em;
  	left: 1em;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: transparent url('../assets/images/menu-icon.png') top left no-repeat;
	background-size: 100% auto;
	text-indent: 9999px;
}
.is-scrolled .menu-trigger {
	background: transparent url('../assets/images/menu-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.search-trigger {
	position: absolute;
  	top: 1em;
  	right: 1em;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: transparent url('../assets/images/search-icon.png') top left no-repeat;
	background-size: 100% auto;
	text-indent: 9999px;
}
.search-trigger.search-close {
	background: transparent url('../assets/images/close-icon.png') top left no-repeat;
	background-size: 100% auto;
}
.is-scrolled .search-trigger {
	background: transparent url('../assets/images/search-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.is-scrolled  .search-trigger.search-close {
	background: transparent url('../assets/images/close-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.search-trigger-lg {
	position: relative;
  	top: -3px;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: transparent url('../assets/images/search-icon.png') top left no-repeat;
	background-size: 100% auto;
	text-indent: 9999px;
}
.search-trigger-lg.search-close {
	background: transparent url('../assets/images/close-icon.png') top left no-repeat;
	background-size: 100% auto;
}
.is-scrolled .search-trigger-lg {
	background: transparent url('../assets/images/search-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.is-scrolled  .search-trigger-lg.search-close {
	background: transparent url('../assets/images/close-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.header .search {
	display: none;
}
.search {
	padding: 1em;
	background: var(--color-gray);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.search-container {
	display: flex;
	gap: 1em;
}
.search-container input {
	flex: 1;
}
.search-container input[type="search"] {
	padding: 0.5em;
}
.search-container .search-btn {
	font-size: 0.8em;
	max-width: 120px;
	border: 1px solid var(--color-white);
	background: transparent;
	color: var(--color-white);
	text-transform: uppercase;
	padding: 0.5em 1em;
	font-weight: 700;
	letter-spacing: 2px;
	text-decoration: none;
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.search-container .search-btn:hover {
	border: 1px solid var(--color-white);
	background: var(--color-white);
	color: var(--color-primary);
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.mobile-btns {
	display: flex !important;
	gap: 1em !important;
	padding: 1em !important;
}
.mobile-btns a.btn {
	flex: 1 !important;
	font-size: 0.9em !important;
	padding: 0.5em 1em !important;
	text-align: center !important;
}
.mobile-btns a.btn-ghost {
	border: 1px solid var(--color-primary) !important;
	background: transparent !important;
	color: var(--color-primary) !important;
}
.mobile-btns a.btn-ghost:hover {
	border: 1px solid var(--color-primary) !important;
	background: var(--color-primary) !important;
	color: var(--color-white) !important;
}
.mobile-btns a.btn-full {
	border: 1px solid var(--color-primary) !important;
	background: var(--color-primary) !important;
	color: var(--color-white) !important;
}
.mobile-btns a.btn-full:hover {
	border: 1px solid var(--color-secondary) !important;
	background: var(--color-secondary) !important;
	color: var(--color-white) !important;
}
@media (max-width: 1239px){
	.mega {
		display: none !important;
	}
}
@media (min-width: 1240px){
	.search {
		padding: 2em;
	}
	.menu-trigger,.is-scrolled .menu-trigger,.search-trigger,.is-scrolled .search-trigger {
		display: none;
	}
	body.mega-opened {
		overflow: hidden;
	}
	.mega {
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}
	.mega-opened .header {
		background: var(--color-white);
	}
	.mega-opened .nav-utility {
		display: none;
	}
	.mega-opened .nav-logo-light {
		display: none;
	}
	.mega-opened .nav-logo-dark {
		display: block;
	}
	.mega-close {
		display: none;
	}
	.mega-opened .mega-close {
		position: absolute;
  		top: 2em;
  		right: 2em;
		display: inline-block;
		width: 30px;
		height: 30px;
		background: transparent url('../assets/images/close-icon-primary.png') top left no-repeat;
		background-size: 100% auto;
		text-indent: 9999px;
	}
	.mega-opened .nav-menu a {
		color: var(--color-primary);
		-webkit-transition: all 0.2s;
  		-moz-transition: all 0.2s;
  		-o-transition: all 0.2s;
  		transition: all 0.2s;
	}
	.mega-opened .nav-menu a:hover {
		color: var(--color-secondary);
		border-bottom: 2px solid var(--color-secondary);
		-webkit-transition: all 0.2s;
  		-moz-transition: all 0.2s;
  		-o-transition: all 0.2s;
  		transition: all 0.2s;
	}
	.mega-opened .nav-menu a.nm-active {
		border-bottom: 2px solid var(--color-primary);
	}
	.mega-opened .nav-menu a.nm-active:hover {
		color: var(--color-primary);
	}
	.mega-container {
		display: flex;
		gap: 2em;
		padding: 2em 1em;
	}
	.mega-sidebar,.mega-options {
		flex: 1;
	}
	.mega-sidebar {
		min-width: 12%;
		max-width: 12%;
		border-right: 2px solid var(--color-lightgray);
	}
	.ms-header {
		display: block;
		text-transform: uppercase;
		font-weight: bold;
		letter-spacing: 2px;
		margin: 0 0 1em;
	}
	.ms-link {
		display: block;
		font-size: 1.1em;
		color: var(--color-gray);
		padding: 0.25em 0;
		-webkit-transition: all 0.2s;
  		-moz-transition: all 0.2s;
  		-o-transition: all 0.2s;
  		transition: all 0.2s;
	}
	.ms-link:hover,.ms-link.ms-selected {
		color: var(--color-primary);
		font-weight: bold;
		-webkit-transition: all 0.2s;
  		-moz-transition: all 0.2s;
  		-o-transition: all 0.2s;
  		transition: all 0.2s;
	}
	.mega-options {
		display: flex;
		gap: 2em;
		flex-wrap: wrap;
	}
	.mo-option {
		flex: 1;
		min-width: 30%;
		max-width: 32%;
		text-align: center;
	}
	/*.mo-option:hover img {
		transform: scale(1.5);
		-webkit-transition: all 0.2s;
  		-moz-transition: all 0.2s;
  		-o-transition: all 0.2s;
  		transition: all 0.2s;
	}*/
	.mo-option-image {
		overflow: hidden;
	}
	.mo-option-image img {
		transition: transform 0.3s ease;
	}
	.mo-option:hover .mo-option-image img,
	.mobile-mega-option:hover .mo-option-image img {
		transform: scale(1.1);
	}
	.mo-option img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	.mo-option-details,.mo-option-name,.mo-option-category {
		display: block;
	}
	.mo-option-name {
		font-size: 1.25em;
		color: var(--color-primary);
		font-weight: bold;
	}
	.mo-option-category {
		color: var(--color-gray);
	}
	.mo-option:hover .mo-option-name {
		color: var(--color-secondary);
		-webkit-transition: all 0.2s;
  		-moz-transition: all 0.2s;
  		-o-transition: all 0.2s;
  		transition: all 0.2s;
	}
	/* Image Cards Mega Menu */
	.mega-cards-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2em;
		padding: 3em 2em;
	}
	.mega-card {
		display: block;
		text-align: center;
		text-decoration: none;
	}
	.mega-card-image {
		overflow: hidden;
		border-radius: 4px;
		margin-bottom: 0.75em;
	}
	.mega-card-image img {
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		aspect-ratio: 3/2;
		transition: transform 0.3s ease;
	}
	.mega-card:hover .mega-card-image img {
		transform: scale(1.05);
	}
	.mega-card-title {
		display: block;
		font-size: 1.1em;
		font-weight: bold;
		color: var(--color-primary);
		transition: color 0.2s;
	}
	.mega-card:hover .mega-card-title {
		color: var(--color-secondary);
	}
	/* Close button — text × for image_cards panels */
	.mega-image-cards .mega-close {
		font-size: 1.75em;
		line-height: 1;
		color: var(--color-primary);
		text-indent: 0;
		background: none;
		width: auto;
		height: auto;
	}
}
@media (min-width: 1600px){
	.mega-options {
		gap: 4em;
	}
	.mo-option {
		min-width: 30%;
		max-width: 30%;
	}
}

/* Footer */
.footer {
	border-top: 1px solid #999;
	padding: 2em;
}
.footer-company {
	margin: 0 0 2em;
	text-align: center;
}
.footer-company img {
	max-width: 160px;
}
.footer-logo-light {
	display: none;
}
.footer-dark .footer-logo-dark {
	display: none;
}
.footer-dark .footer-logo-light {
	display: block;
}
.footer-btns {
	display: flex;
	gap: 1em;
	font-size: 0.9em;
}
.footer-btns .btn {
	flex: 1;
}
.footer-cols {
	display: none;
}
.footer-header {
	color: var(--color-primary);
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0 0 1em;
}
.footer-social {
	text-align: center;
}
.footer-social-icons {
	display: flex;
	gap: 1em;
	justify-content: center;
}
.footer-social-icons img {
	display: inline-block;
	width: 24px;
	height: 24px;
}
.footer-social-icons a:hover {
	opacity: 0.75;
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.footer-legal {
	text-align: center;
}
.footer-links a {
	margin: 0 1em;
}
/* Footer column menu links (Drupal nested menu structure) */
.footer-col > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col > ul > li {
	margin: 0;
}
.footer-col > ul > li > a {
	color: var(--color-primary);
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	margin: 0 0 1em;
}
.footer-col > ul > li > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col > ul > li > ul > li {
	margin: 0.5em 0;
}
.footer-col > ul > li > ul > li > a {
	color: var(--color-gray);
	text-decoration: none;
}
.footer-col > ul > li > ul > li > a:hover {
	color: var(--color-primary);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.5em 1em;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
}
.btn-ghost {
	border: 1px solid var(--color-primary);
	background: transparent;
	color: var(--color-primary);
}
.btn-ghost:hover {
	border: 1px solid var(--color-primary);
	background: var(--color-primary);
	color: var(--color-white);
}
.btn-ghost.btn-white {
	border: 1px solid var(--color-white);
	color: var(--color-white);
}
.btn-ghost.btn-white:hover {
	border: 1px solid var(--color-white);
	background: var(--color-white);
	color: var(--color-primary);
}
.btn-full {
	display: inline-block;
	padding: 0.5em 1em;
	border: 1px solid var(--color-primary);
	background: var(--color-primary);
	color: var(--color-white);
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
}
.btn-full:hover {
	border: 1px solid var(--color-secondary);
	background: var(--color-secondary);
	color: var(--color-white);
}
.btn-full.btn-white {
	border: 1px solid var(--color-white);
	background: var(--color-white);
	color: var(--color-primary);
}
.btn-full.btn-white:hover {
	border: 1px solid var(--color-primary);
	background: var(--color-primary);
	color: var(--color-white);
}

/* Interior with No Hero */
.interior {
	margin-top:68px;
}
.interior .header {
	padding: 0.5em 1em;
	background: #fff;
	-webkit-box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
	box-shadow: 0px 2px 10px rgba(0,0,0,0.1);	
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.interior .nav-logo-light {
	display: none;
}
.interior .nav-logo-dark {
	display: block;
}
.interior .header .nav-menu li,.interior .header .nav-menu li a {
	color: var(--color-primary);
}
.interior .nav-utility .btn-ghost.btn-white {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.interior .nav-utility .btn-ghost.btn-white:hover {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: var(--color-white);
}
.interior .nav-utility .btn-full.btn-white {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: var(--color-white);
}
.interior .nav-utility .btn-full.btn-white:hover {
	border-color: var(--color-secondary);
	background: var(--color-secondary);
	color: var(--color-white);
}
.interior .menu-trigger {
	background: transparent url('../assets/images/menu-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.interior .search-trigger {
	background: transparent url('../assets/images/search-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.interior .search-trigger.search-close {
	background: transparent url('../assets/images/close-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.interior .search-trigger-lg {
	background: transparent url('../assets/images/search-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.interior .search-trigger-lg.search-close {
	background: transparent url('../assets/images/close-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
@media (min-width: 768px){
	.interior {
		margin-top: 88px;
	}
}

/* Breadcrumb Wrapper */
.bcr-sticky {
	position: relative;
	z-index: 1;
	background: var(--color-white, #fff);
	border-bottom: 1px solid var(--color-lightgray, #eee);
	display: none;
}
.is-scrolled .bcr-sticky,
.interior .bcr-sticky {
	display: block;
}

/* Status Messages */
.system-messages-wrapper {
	position: fixed;
	top: 175px;
	left: 0;
	right: 0;
	z-index: 1000;
	pointer-events: none;
}
.system-messages-wrapper:empty {
	display: none;
}
.system-messages-wrapper [data-drupal-messages] {
	pointer-events: auto;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.75em 1.25em;
	font-size: 0.875rem;
	line-height: 1.4;
	background: rgba(234, 244, 254, 0.97);
	border-bottom: 1px solid #b8d4f0;
	color: #1a3c5e;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.system-messages-wrapper [data-drupal-messages] [role="contentinfo"] {
	display: flex;
	align-items: center;
	gap: 0.5em;
	position: relative;
	padding-right: 2em;
}
.system-messages-wrapper .messages-dismiss {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
	color: #1a3c5e;
	padding: 0.25em;
	opacity: 0.6;
	transition: opacity 0.2s;
}
.system-messages-wrapper .messages-dismiss:hover {
	opacity: 1;
}
.system-messages-wrapper [data-drupal-messages] h2 {
	margin: 0;
}
.system-messages-wrapper [data-drupal-messages] a {
	color: #1a3c5e;
	text-decoration: underline;
}
[data-drupal-messages-fallback] + [data-drupal-messages] {
	display: none;
}
[data-admin-toolbar] .system-messages-wrapper {
	top: calc(var(--drupal-displace-offset-top, 39px) + 175px);
	left: var(--drupal-displace-offset-left, 0px);
}

/* Hero Carousel Component */
.hv{
	width:100%;
	background:#000;
}
.hv-stage{
	position:relative;
	height: calc(var(--hv-count, 1) * 100vh);
}
.hv-viewport{
	position: sticky;
	top: 0;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}
.hv-track{
	position: absolute;
	inset: 0;
	width: 100%;
	height: calc(var(--hv-count, 1) * 100vh);
	transform: translate3d(0,0,0);
	will-change: transform;
}
.hv-slide{
	position: relative;
	height: 100vh;
	width: 100%;
	overflow:hidden;
}
.hv-media{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
}
.hv-video,
.hv-img{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit: cover;
	object-position: center;
}
.hv-desktop {
	display: none;
}
.hv-picture{
	display:block;
	width:100%;
	height:100%;
}
.hv-media-scrim{
	position:absolute;
	inset:0;
	background: var(--hv-scrim);
	pointer-events:none;
}
.hv-content{
	position:absolute;
	z-index:2;
	padding: 0;
	width: 100%;
}
.hv-content--bottom-left{
  	left: var(--hv-ui-margin);
  	bottom: var(--hv-ui-margin);
  	text-align: left;
}
.hv-content--center-left{
	top: 50%;
  	transform: translateY(-50%);
  	left: var(--hv-ui-margin);
  	text-align: left;
}
.hv-content-sm {
	font-size: 1.5em;
	font-weight: 400;
	color: var(--color-white);
	margin: 0 0 0.25em;
}
.hv-content-sm a {
	color: var(--color-white);
}
.hv-content-lg {
	font-size: 3em;
	font-weight: 700;
	color: var(--color-white);
	margin: 0 0 0.25em;
}
.hv-content-lg a {
	color: var(--color-white);
}
.hv-content-btns {
	display: flex;
	gap: 1em;
}
.hv-tagline{
	margin:0;
	color: var(--hv-ui-color);
	font-weight: 700;
	letter-spacing: .08em;
	font-size: clamp(18px, 2.2vw, 28px);
}
.hv-video-toggle{
  position:absolute;
  right: var(--hv-ui-margin);
  bottom: var(--hv-ui-margin);
  z-index:3;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.6);
  background: rgba(0,0,0,.18);
  color: var(--hv-ui-color);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}
.hv-video-toggle:hover{
  background: rgba(0,0,0,.28);
}
.hv-video-toggle:focus-visible{
  outline: 2px solid rgba(255,255,255,.85);
  outline-offset: 2px;
}
.hv-video-toggle svg{
	fill: currentColor;
}
.hv-video-toggle.is-paused [data-icon="pause"]{
	display:none;
}
.hv-video-toggle:not(.is-paused) [data-icon="play"]{
	display:none;
}
.hv-dots{
  position: fixed;
  right: var(--hv-ui-margin);
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display:flex;
  flex-direction:column;
  gap: 0.5em;
  pointer-events:auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.hv.is-visible .hv-dots {
  opacity: 1;
  pointer-events: auto;
}
.hv-dot{
  appearance:none;
  border:0;
  background: transparent;
  padding:0;
  width: 18px; 
  /* height: var(--hv-dot-active-height);*/
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hv-dot::before{
	content:'';
	display:block;
	width: var(--hv-dot-width);
	height: var(--hv-dot-height);
	border-radius: 999px;
	background: var(--hv-ui-muted);
	transition: height .22s ease, width .22s ease, border-radius .22s ease, background .22s ease;
}
.hv-dot.is-active::before{
	width: var(--hv-dot-width);
	height: var(--hv-dot-active-height);
	border-radius: 999px;
	background: var(--hv-ui-color);
}
.hv-dots.is-dim .hv-dot::before{
	background: rgba(255,255,255,.35);
}
.hv-dots.is-dim .hv-dot.is-active::before{
	background: rgba(255,255,255,.6);
}
.hv-slide--inset{
	background: radial-gradient(1200px 600px at 50% 40%, rgba(255,255,255,.08), rgba(255,255,255,0) 55%),var(--hv-inset-bg);
}
.hv-inset-shell{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	padding: clamp(16px, 10vw, 70px);
}
.hv-inset-frame{
  	width: min(1320px, 100vw);
  	aspect-ratio: 16 / 16;
  	overflow:hidden;
  	background: rgba(255,255,255,.05);
  	box-shadow: 0 22px 60px rgba(0,0,0,.35);
}
.hv-slide--inset .hv-picture,
.hv-slide--inset .hv-img{
  	position:relative;
 	 width:100%;
  	height:100%;
}
.hv-inset-content {
	position: absolute;
	bottom: 2em;
	left: 2em;
	z-index: 999;
}
.hv-inset-content-sm {
	color: var(--color-white);
	font-size: 1.2em;
	font-weight: 400;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin: 0;
}
.hv-inset-content-lg {
	font-size: 3em;
	font-weight: 700;
	color: var(--color-white);
	margin: 0 0 0.25em;
}
.hv-inset-content-lg a {
	color: var(--color-white);
}
@media (max-width: 767px){
	.hv-dots {
		right: 1em;
	}
}
@media (min-width: 768px){
	.hv-inset-frame{
  		width: min(1320px, 86vw);
  		aspect-ratio: 16 / 9;
  	}
  	.hv-inset-shell{
		padding: clamp(16px, 5vw, 70px);
	}
	.hv-desktop {
		display: block;
	}
	.hv-mobile {
		display: block;
	}
}

/* Pan-scroll utility */
.hv-hidden{
	display:none !important;
}
@media (prefers-reduced-motion: reduce){
	.hv-slide--pan-scroll .hv-video{
		/* Fall back to static poster when user prefers reduced motion */
		display:none;
	}
}

/* Hero Single Component */
.hi-container {
	display: block;
	position: relative;
}
.hi-image {
	position: relative;
	top: 0;
	z-index: 0;
}
.hi-image img {
	display: block;
	width: 100%;
	height: auto;
}
.hi-image .hi-desktop {
	display: none;
}
.hi-content {
	position: absolute;
	top: 0;
	z-index: 1;
	display: block;
	width: 100%;
}
.hi-content.hi-center-top {
	padding: 2em 0;
	text-align: center;
}
.hi-content.hi-center-middle {
	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
	text-align: center;
}
.hi-content.hi-center-left {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
	padding-left: 2em;
}
.hi-content.hi-center-bottom {
	position: absolute;
	bottom: 0;
	text-align: center;
	padding: 2em 0;
}
.hi.bg-primary .hi-content {
	color: var(--color-white);
}
.hi-content-lg {
	font-size: 1.75em;
	margin: 0 0 0.25em;
}
.hi.bg-primary .hi-content-lg a {
	color: var(--color-white);
}
.hi-content-copy {
	margin: 0 auto;
	padding: 0 2em;
	max-width: 980px;
}
.hi-content-btns {
	display: flex;
	gap: 1em;
	justify-content: center;
}
.hi.bg-primary .btn-full:hover {
	background: var(--color-secondary);
}
#walkthrough .hi-image img {
	opacity: 0.25;
}
@media (min-width: 768px){
	.hi-image .hi-desktop {
		display: block;
	}
	.hi-image .hi-mobile {
		display: none;
	}
	.hi-content.hi-center-top {
		padding: 6em 0;
	}
	.hi-content.hi-center-left {
		padding-left: 4em;
	}
	.hi-content.hi-center-bottom {
		padding: 4em 0;
	}
	.hi-content-lg {
		font-size: 2.25em;
	}
}

/* Models Carousel Component */
.mc-container {
	padding: 2em 0;
}
.mc-header {
	text-align: center;
}
.mc-header h2,.mc-header h3,.mc-header h4,.mc-header h5,.mc-header h6 {
	color: var(--color-primary);
}
.mc-tabs {
	display: block;
	width: 100%;
	overflow-x: scroll;
	white-space: nowrap;
	margin: 0 0 2em;
	border-bottom: 1px solid var(--color-primary);
}
.mc-tab {
	display: inline-block;
	padding: 0.5em 1em;
	border-bottom: 2px solid var(--color-white);
}
.mc-tab-active {
	font-weight: 600;
	border-bottom: 2px solid var(--color-primary);
}
/* Model Carousel — Centered Swiper */
.mc-carousel {
	overflow: hidden;
}
.mc-slide {
	text-align: center;
}
.mc-slide img {
	width: 100%;
	height: auto;
}
.mc-content-sm {
	margin-top: 2em;
	font-size: 1em;
	font-weight: 300;
	letter-spacing: 4px;
	text-transform: uppercase;
	text-align: center;
	min-height: 1.5em;
}
.mc-content-lg {
	font-size: 2em;
	font-weight: 700;
	text-align: center;
}
.mc-content-lg a {
	color: var(--color-primary);
	text-decoration: none;
}
.mc-content-attributes {
	display: flex;
	gap: 0;
	margin: 1em 0;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: var(--color-primary);
}
.mc-content-attr {
	font-size: 0.9em;
	padding: 0 0.75em;
	color: var(--color-primary);
	border-right: 1px solid var(--color-primary);
}
.mc-content-attr:last-child {
	border-right: none;
}
.mc-content-attr-dark {
	font-weight: 700;
}
.mc-content-attr-light {
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.mc-content-btns {
	display: flex;
	gap: 1em;
	justify-content: center;
}
.mc-content-btns .btn {
	font-size: 0.75em;
	padding: 0.75em 1.5em;
}
/* Nav arrows — below slides, inline left/right */
.mc-nav {
	position: relative;
	padding: 0 1.5em;
}
.mc-nav .swiper-button-prev,
.mc-nav .swiper-button-next {
	position: static;
	display: inline-block;
	width: 36px;
	height: 36px;
	background-size: 100% auto !important;
	text-indent: 9999px;
	overflow: hidden;
	margin-top: 0;
}
.mc-nav .swiper-button-prev::after,
.mc-nav .swiper-button-next::after {
	display: none;
}
.mc-nav .swiper-button-prev {
	background: var(--color-white) url('../assets/images/arrow-circle-black-left.png') center center no-repeat !important;
	background-size: 100% auto !important;
}
.mc-nav .swiper-button-next {
	float: right;
	background: var(--color-white) url('../assets/images/arrow-circle-black-right.png') center center no-repeat !important;
	background-size: 100% auto !important;
}
@media (min-width: 768px) {
	.mc-container {
		padding: 4em 0;
	}
	.mc-tabs {
		display: inline-block;
		width: auto;
		overflow-x: unset;
		white-space: auto;
	}
	/* Side slides: scaled down, pushed up */
	.mc-carousel .swiper-slide img {
		padding: 2em 0 0;
		transform: scale(0.7);
		transition: transform 0.2s;
	}
	/* Center slide: scaled up */
	.mc-carousel .swiper-slide-active img {
		transform: scale(1.2);
		transition: transform 0.2s;
	}
	/* Hide content on non-center slides (preserve height to prevent jumping) */
	.mc-carousel .swiper-slide .mc-content-sm,
	.mc-carousel .swiper-slide .mc-content-lg,
	.mc-carousel .swiper-slide .mc-content-attributes,
	.mc-carousel .swiper-slide .mc-content-btns {
		visibility: hidden;
		opacity: 0;
	}
	/* Show content only on center slide */
	.mc-carousel .swiper-slide-active .mc-content-sm,
	.mc-carousel .swiper-slide-active .mc-content-lg,
	.mc-carousel .swiper-slide-active .mc-content-attributes,
	.mc-carousel .swiper-slide-active .mc-content-btns {
		visibility: visible;
		opacity: 1;
	}
	.mc-nav {
		position: relative;
		top: -6em;
		padding: 0 4em;
		z-index: 10;
	}
	.mc-content-lg {
		font-size: 2.5em;
	}
	.mc-content-attributes {
		margin: 1.5em 0;
	}
	.mc-content-attr {
		padding: 0 1.25em;
	}
}

/* Models Grid Component */
.mg-container {
	padding: 4em 2em;
}
.mg-header {
	text-align: center;
}
.mg-header h2,.mg-header h3,.mg-header h4,.mg-header h5,.mg-header h6 {
	color: var(--color-primary);
}
.mg-product {
	margin: 0 0 4em;
}
.mg-product:last-child {
	margin: 0;
}
.mg-product img  {
	width: 100%;
	height: auto;
}
.mg-name h2 {
	font-size: 2em;
	font-weight: 700;
	text-align: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}
.mg-name p {
	margin: 0;
	padding: 0;
	font-size: 1em;
	font-weight: 300;
	text-align: center;
	justify-content: center;
}
.mg-content-attributes {
	display: flex;
	gap: 0;
	margin: 1em 0;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: var(--color-primary);
}
.mg-content-attr {
	font-size: 0.9em;
	padding: 0 0.75em;
	color: var(--color-primary);
	border-right: 1px solid var(--color-primary);
}
.mg-content-attr:last-child {
  border-right: none;
}
.mg-content-attr-dark {
	font-weight: 700;
}
.mg-content-attr-light {
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
} 
.mg-content-btns {
	display: flex;
	gap: 1em;
	justify-content: center;
}
.mg-content-btns .btn {
	font-size: 0.75em;
	padding: 0.75em 1.5em;
}
@media (min-width: 768px){
	.mg-container {
		display: flex;
		flex-wrap: wrap;
		gap: 2em;
		padding: 6em 2em;
	}
	.mg-header {
		width: 100%;
	}
	.mg-product {
		flex: 1 1 calc(50% - 2em);
		min-width: 280px;
		margin: 0;
	}
	.mg-content-attributes {
		margin: 1.5em 0;
	}
	.mg-content-attr {
		padding: 0 1.25em;
	}
}
@media (min-width: 1024px){
	.mg-product {
		flex: 1 1 calc(33.333% - 2em);
	}
}

/* Tabbed Specifications Component */
.ts {
	padding: 2em;
}
.ts-header {
	text-align: center;
}
.ts-header {
	color: var(--color-primary);
}
.ts.bg-primary .ts-header,
.ts.bg-secondary .ts-header,
.ts.bg-tertiary .ts-header,
.ts.bg-gray .ts-header,
.ts.primary-gradient .ts-header,
.ts.secondary-gradient .ts-header {
	color: var(--color-white) !important;
}
.ts.bg-primary .ts-header h2,.ts.bg-primary .ts-header h3,.ts.bg-primary .ts-header h4,.ts.bg-primary .ts-header h5,.ts.bg-primary .ts-header h6,
.ts.bg-secondary .ts-header h2,.ts.bg-secondary .ts-header h3,.ts.bg-secondary .ts-header h4,.ts.bg-secondary .ts-header h5,.ts.bg-secondary .ts-header h6,
.ts.bg-tertiary .ts-header h2,.ts.bg-tertiary .ts-header h3,.ts.bg-tertiary .ts-header h4,.ts.bg-tertiary .ts-header h5,.ts.bg-tertiary .ts-header h6,
.ts.bg-gray .ts-header h2,.ts.bg-gray .ts-header h3,.ts.bg-gray .ts-header h4,.ts.bg-gray .ts-header h5,.ts.bg-gray .ts-header h6,
.ts.primary-gradient .ts-header h2,.ts.primary-gradient .ts-header h3,.ts.primary-gradient .ts-header h4,.ts.primary-gradient .ts-header h5,.ts.primary-gradient .ts-header h6,
.ts.secondary-gradient .ts-header h2,.ts.secondary-gradient .ts-header h3,.ts.secondary-gradient .ts-header h4,.ts.secondary-gradient .ts-header h5,.ts.secondary-gradient .ts-header h6 {
	color: var(--color-white) !important;
}
.ts-tabs {
	display: block;
	width: 100%;
	overflow-x: scroll;
	white-space: nowrap;
	margin: 0 0 2em;
	border-bottom: 1px solid var(--color-primary);
}
.ts.bg-primary .ts-tabs,
.ts.bg-secondary .ts-tabs,
.ts.bg-tertiary .ts-tabs,
.ts.bg-gray .ts-tabs,
.ts.primary-gradient .ts-tabs,
.ts.secondary-gradient .ts-tabs {
	border-bottom: 1px solid var(--color-white);
	background: transparent;
}
.ts-tab {
	display: inline-block;
	padding: 0.5em 1em;
	color: var(--color-white);;
	border-bottom: 2px solid var(--color-white);
}
.ts.bg-primary .ts-tab,
.ts.bg-secondary .ts-tab,
.ts.bg-tertiary .ts-tab,
.ts.bg-gray .ts-tab,
.ts.primary-gradient .ts-tab,
.ts.secondary-gradient .ts-tab {
	border-bottom: 0;
}
.ts-tab-active {
	font-weight: 600;
	border-bottom: 2px solid var(--color-primary);
}
.ts.bg-primary .ts-tab-active,
.ts.bg-secondary .ts-tab-active,
.ts.bg-tertiary .ts-tab-active,
.ts.bg-gray .ts-tab-active,
.ts.primary-gradient .ts-tab-active,
.ts.secondary-gradient .ts-tab-active {
	border-bottom: 2px solid var(--color-white);
}
.spec-attributes {
	color: var(--color-primary);
	margin: 0 0 2em;
}
.ts.bg-primary .spec-attributes,
.ts.bg-secondary .spec-attributes,
.ts.bg-tertiary .spec-attributes,
.ts.bg-gray .spec-attributes,
.ts.primary-gradient .spec-attributes,
.ts.secondary-gradient .spec-attributes {
	color: var(--color-white);
}
.spec-attr {
	display: flex;
	gap: 2em;
	margin: 0 0 0.5em;
}
.ts.bg-primary .spec-attr,
.ts.bg-secondary .spec-attr,
.ts.bg-tertiary .spec-attr,
.ts.bg-gray .spec-attr,
.ts.primary-gradient .spec-attr,
.ts.secondary-gradient .spec-attr {
	color: var(--color-white);
}
.spec-attr-dark {
	flex: 1;
	font-weight: 700;
}
.spec-attr-light {
	flex: 1;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
} 
.spec-i img,.spec-i embed {
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* 360° Viewer in Specifications */
.ts .spec-i .js-cloudimage-360-view {
	width: 100%;
	height: 100%;
}

.ts .spec-i .cloudimage-360 {
	width: 100%;
	height: 100%;
	min-height: 300px;
	background: transparent !important;
}

/* Transparent background on inner box, canvas, and images */
.ts .spec-i .cloudimage-360 .cloudimage-360-inner-box,
.ts .spec-i .cloudimage-360 canvas,
.ts .spec-i .cloudimage-360 img {
	background: transparent !important;
}

/* Fullscreen button — v4 uses button.cloudimage-360-fullscreen-button with inline SVG */
.ts .spec-i .cloudimage-360 .cloudimage-360-fullscreen-button {
	background-color: rgba(255, 255, 255, 0.15) !important;
	border: none;
	border-radius: 4px;
	padding: 6px;
	cursor: pointer;
	color: #ffffff;
}

.ts .spec-i .cloudimage-360 .cloudimage-360-fullscreen-button:hover {
	background-color: rgba(255, 255, 255, 0.3) !important;
}

.ts .spec-i .cloudimage-360 .cloudimage-360-fullscreen-button svg {
	stroke: #ffffff !important;
	width: 22px;
	height: 22px;
}

/* Dark theme overrides for specs section */
.ts .spec-i .ci360-theme-dark {
	--ci360-button-bg: rgba(255, 255, 255, 0.15);
	--ci360-button-bg-hover: rgba(255, 255, 255, 0.3);
	--ci360-icon-color: #ffffff;
	--ci360-icon-color-hover: #ffffff;
	--ci360-initial-icon-bg: rgba(255, 255, 255, 0.15);
	--ci360-initial-icon-color: #ffffff;
	--ci360-circle-color-mid: rgba(255, 255, 255, 0.3);
	--ci360-circle-dot-color: rgba(255, 255, 255, 0.5);
	--ci360-hints-bg: rgba(0, 0, 0, 0.6);
	--ci360-hints-color: #ffffff;
	--ci360-overlay-bg: transparent;
	--ci360-fullscreen-bg: #0a1628;
}

.spec-colors {
	margin: 0 0 1em;
}
.spec-color {
	display: block;
	margin: 0 0 0.5em;
	color: var(--color-primary);
	text-align: center;
}
.ts.bg-primary .spec-color,
.ts.bg-secondary .spec-color,
.ts.bg-tertiary .spec-color,
.ts.bg-gray .spec-color,
.ts.primary-gradient .spec-color,
.ts.secondary-gradient .spec-color {
	color: var(--color-white);
}
.spec-hex {
	display: block;
	width: 100%;
	min-height: 48px;
	margin: 0 0 0.25em;
	border: 1px solid var(--color-lightgray);
}
.spec-name {
	color: var(--color-primary);
}
.ts.bg-primary .spec-name,
.ts.bg-secondary .spec-name,
.ts.bg-tertiary .spec-name,
.ts.bg-gray .spec-name,
.ts.primary-gradient .spec-name,
.ts.secondary-gradient .spec-name {
	color: var(--color-white);
}
.spec-notes {
	color: var(--color-primary);
	font-style: italic;
	text-align: center;
}
.ts.bg-primary .spec-notes,
.ts.bg-secondary .spec-notes,
.ts.bg-tertiary .spec-notes,
.ts.bg-gray .spec-notes,
.ts.primary-gradient .spec-notes,
.ts.secondary-gradient .spec-notes {
	color: var(--color-white);
}
.more-specs {
	cursor: pointer;
}
.spec-content-extended {
	margin-top: 2em;
}
.spec-content-extended h3 {
	padding: 0 0 0.25em;
	margin: 0 0 1em;
	border-bottom: 1px solid var(--color-gray);
}
.ts.bg-primary .spec-content-extended h3,
.ts.bg-secondary .spec-content-extended h3,
.ts.bg-tertiary .spec-content-extended h3,
.ts.bg-gray .spec-content-extended h3,
.ts.primary-gradient .spec-content-extended h3,
.ts.secondary-gradient .spec-content-extended h3 {
	color: var(--color-white);
	border-bottom: 1px solid var(--color-overwhite);
}
.spec-content-extended .cols {
	gap: 0.5em;
}
.spec-content-extended .spec-attr {
	padding: 0.5em 1em;
	background: var(--color-overlight);
}
.spec-extended-section {
	margin-bottom: 2em;
}
.spec-extended-section h3 {
	font-size: 1.25em;
}
.spec-extended-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5em;
}
.spec-features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5em;
}
.spec-feature-category {
	padding: 0.5em 1em;
	background: var(--color-overlight);
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.spec-feature-category h4 {
	font-size: 1em;
	margin: 0 0 0.5em;
	padding: 0 0 0.5em;
	border-bottom: 1px solid var(--color-overwhite);
}
.spec-feature-category ul {
	list-style: disc;
	padding-left: 1.25em;
	margin: 0;
	color: var(--color-white);
}
.spec-feature-category li {
	padding: 0.15em 0;
	font-size: 0.95em;
	color: var(--color-white);
}
.ts.bg-primary .spec-feature-category h4,
.ts.bg-secondary .spec-feature-category h4,
.ts.bg-tertiary .spec-feature-category h4,
.ts.bg-gray .spec-feature-category h4,
.ts.primary-gradient .spec-feature-category h4,
.ts.secondary-gradient .spec-feature-category h4 {
	color: var(--color-white);
}
@media (min-width: 768px){
	.ts {
		padding: 4em;
	}
	.ts-tabs {
		display: inline-block;
		width: auto;
		overflow-x: unset;
		white-space: unset;
	}
	.spec-attr {
		margin: 0 0 1em;
	}
	.spec-content {
		display: flex;
		gap: 2em;
	}
	.spec-a {
		flex: 1;
	}
	.spec-i {
		flex: 1;
	}
	.spec-colors {
		display: flex;
		gap: 2em;
		flex-wrap: wrap;
		justify-content: center;
	}
	.spec-color {
		flex: 1;
		min-width: 31%;
		max-width: 31%;
	}
	.spec-extended-section,.spec-content-extended {
		margin-bottom: 4em;
	}
	.spec-content-extended .col {
		min-width: 33%;
		max-width: 33%;
	}
	.spec-content-extended .spec-attr {
		margin: 0;
	}
	.spec-content-extended h3 {
		font-size: 1.5em;
	}
	.spec-extended-grid {
		grid-template-columns: 1fr 1fr;
	}
	.spec-features-grid {
		grid-template-columns: 1fr 1fr;
	}
	.spec-hex {
		min-height: 64px;
	}
	.spec-feature-category {
		padding: 1.5em 2em;
	}
	.spec-feature-category h4 {
		font-size: 1.25em;
	}
}
@media (min-width: 1240px){
	.spec-attr {
		font-size: 1.1em;
	}
	.spec-color {
		font-size: 1.1em;
		min-width: 20%;
		max-width: 20%;
	}
	.spec-extended-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.spec-features-grid {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

/* Single Video Hero Component (Pan-Scroll) */
.sv-stage {
	position: relative;
	/* height set by JS based on scrub multiplier */
}
.sv-stage ~ * {
	position: relative;
	z-index: 1;
}
.sv-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.sv-stage .sv-hero {
	position: sticky;
	top: 0;
}
.sv-hero video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}
.sv-hero .sv-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	color: var(--color-white);
	text-align: center;
  	pointer-events: none;
}
.sv-hero .sv-overlay h2 {
	font-size: 3em;
}
@media (min-width: 768px){
	.sv-hero .sv-overlay h2 {
		font-size: 4em;
	}	
}

/* Single Image Carousel */
.sic.bg-primary,
.sic.bg-secondary,
.sic.bg-tertiary,
.sic.bg-gray,
.sic.primary-gradient,
.sic.secondary-gradient {
	color: var(--color-white) !important;
}
.sic-container {
	padding: 2em 0 0;
}
.sic-header {
	padding: 0 0 2em;
}
.sic-header h2,.sic-header h3,.sic-header h4,.sic-header h5,.sic-header h6 {
	font-size: 1.75em;
	margin: 0 0 0.25em;
}
.sic-header p {
	margin: 0 auto;
	padding: 0 2em;
	max-width: 980px;
}
.sic-slide-img img {
	display: block;
	width: 100%;
	height: auto;
}
.sic-slide-copy {
	padding: 2em;
}
.sic-slide-copy h2,.sic-slide-copy h3,.sic-slide-copy h4,.sic-slide-copy h5,.sic-slide-copy h6 {
	margin: 0 0 0.25em;
}
.sic-slide-copy p {
	margin: 0;
}
.sic {
	overflow: hidden;
}
.sic-carousel {
	overflow: visible !important;
	position: relative;
}
.sic-carousel .swiper-button-prev,
.sic-carousel .swiper-button-next {
	display: none;
	width: 48px;
	height: 48px;
	text-indent: 9999px;
	overflow: hidden;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
}
.sic-carousel .swiper-button-prev::after,
.sic-carousel .swiper-button-next::after {
	display: none;
}
.sic-carousel .swiper-button-prev {
	background: transparent url('../assets/images/arrow-white-left.png') center center no-repeat !important;
	background-size: 100% auto !important;
	left: 0;
}
.sic-carousel .swiper-button-next {
	background: transparent url('../assets/images/arrow-white-right.png') center center no-repeat !important;
	background-size: 100% auto !important;
	right: 0;
}
.sic-carousel .swiper-pagination {
	position: relative;
	margin: 1em 0;
	text-align: center;
}
.sic.bg-primary .swiper-pagination-bullet,
.sic.bg-secondary .swiper-pagination-bullet,
.sic.bg-tertiary .swiper-pagination-bullet,
.sic.bg-gray .swiper-pagination-bullet,
.sic.primary-gradient .swiper-pagination-bullet,
.sic.secondary-gradient .swiper-pagination-bullet {
	display: inline-block;
	width: 16px;
	height: 6px;
	background: var(--color-white);
	opacity: 0.5;
	margin: 0 0.5em;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.sic.bg-primary .swiper-pagination-bullet-active,
.sic.bg-secondary .swiper-pagination-bullet-active,
.sic.bg-tertiary .swiper-pagination-bullet-active,
.sic.bg-gray .swiper-pagination-bullet-active,
.sic.primary-gradient .swiper-pagination-bullet-active,
.sic.secondary-gradient .swiper-pagination-bullet-active {
	opacity: 1;
	width: 75px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
@media (min-width: 768px){
	.sic-container {
		padding: 4em 0;
	}
	.sic-header {
		padding: 0 0 4em;
	}
	.sic-header h2,.sic-header h3,.sic-header h4,.sic-header h5,.sic-header h6 {
		font-size: 2.5em;
	}
	.sic-slide-copy {
		padding: 2em 4em;
	}
	.sic-carousel .swiper-slide {
		opacity: 0.5;
		transition: opacity 0.3s;
	}
	.sic-carousel .swiper-slide-active {
		opacity: 1;
	}
	.sic-carousel .swiper-button-prev,
	.sic-carousel .swiper-button-next {
		display: flex;
	}
	.sic-carousel .swiper-button-prev {
		left: 2em;
	}
	.sic-carousel .swiper-button-next {
		right: 2em;
	}
	.sic-carousel .swiper-pagination {
		margin: 2em 0 0;
	}
}
@media (min-width: 1024px){
	.sic-slide {
		position: relative;
	}
	.sic-slide-img {
		position: relative;
		z-index: 1;
	}
	.sic-slide-copy {
		position: absolute;
		bottom: 0;
		z-index: 2;
		max-width: 60%;
		padding: 4em;
	}
}

/* Two Column Single Block Component */
.text {
	padding: 2em;
}
.text.bg-primary,
.text.bg-secondary,
.text.bg-tertiary,
.text.bg-gray,
.text.primary-gradient,
.text.secondary-gradient {
	color: var(--color-white) !important;
}
.text-container.text-center {
	text-align: center;
}
.text-container.text-center p {
	max-width: 1240px;
	margin: 0 auto;
}
.text.bg-primary a,
.text.bg-secondary a,
.text.bg-tertiary a,
.text.bg-gray a,
.text.primary-gradient a,
.text.secondary-gradient a {
	color: var(--color-white) !important;
}
.text.bg-primary a:hover,
.text.bg-secondary a:hover,
.text.bg-tertiary a:hover,
.text.bg-gray a:hover,
.text.primary-gradient a:hover,
.text.secondary-gradient a:hover {
	color: var(--color-secondary) !important;
}
@media (min-width: 768px){
	.text {
		padding: 4em 2em;
	}
}

/* Two Column Single Block Component */
.tcsb {
	padding: 0;
}
.tcsb.tcsb-padded {
	padding: 2em;
}
.tcsb-img {
	position: relative;
	line-height: 0;
}
.tcsb-img img {
	width: 100%;
	height: auto;
	margin: 0 0 1em;
}
.tcsb.tcsb-video .tcsb-img .play {
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	display: inline-block;
	width: 48px;
	height: 48px;
	background: transparent url('../assets/images/play-white.png') top left no-repeat;
	background-size: 100% auto;
	text-indent: 9999px;
}
.featherlight .featherlight-content .tcsb-video-target {
	display: block !important;
	line-height: 0;
}
video.tcsb-modal-video {
	display: block;
	width: 960px;
	max-width: 80vw;
	max-height: 80vh;
}
.featherlight-iframe .featherlight-content iframe {
	width: 960px;
	height: 540px;
	max-width: 80vw;
	max-height: 80vh;
}
.tcsb-copy {
	padding: 2em;
}
.tcsb-copy.tcsb-dealerform {
	padding: 0;
}
.tcsb-copy h2,.tcsb-copy h3,.tcsb-copy h4,.tcsb-copy h5,.tcsb-copy h6 {
	color: var(--color-primary);
	margin: 0 0 0.25em !important;
}
.tcsb-copy-secondary-hd {
	font-size: 1.5em;
	color: var(--color-gray) !important;
	margin: 0 0 0.25em !important;
}
.tcsb-copy .btn {
	font-size: 0.9em;
}
.dealerform select,.dealerform input {
	display: block;
	width: 100%;
	margin: 0 0 1em;
}
.tcsb .dealerform select {
	padding: 0.5em;
	border: 1px solid #ccc;
	background: #fff;
}
.tcsb .dealerform input {
	padding: 0.5em;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);	
}

.tcsb .dealerform input.btn {
	width: auto;
	font-size: 0.8em;
	padding: 0.5em 1em;
	border: 0;
	max-height: 45px;
	max-width: 35%; 
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
@media (max-width: 767px){
	.tcsb-imgleft .tcsb-copy,.tcsb-imgright .tcsb-copy {
		padding: 0;
	}
}
@media (min-width: 768px){
	.tcsb.tcsb-padded {
		padding: 6em 4em;
	}
	.tcsb-container {
		display: flex;
		gap: 2em;
		justify-content: center;
		align-items: center;
	}
	.tcsb-img {
		min-width: 50%;
	}
	.tcsb-img img {
		margin: 0;
	}
	.tcsb-full .tcsb-container {
		align-items: stretch;
	}
	.tcsb-full .tcsb-img {
		display: flex;
	}
	.tcsb-full .tcsb-img img {
		object-fit: cover;
		height: 100%;
	}
	.tcsb-full .tcsb-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.tcsb-imgleft .tcsb-img,.tcsb-imgright .tcsb-img {
		min-width: 60% !important;
	}
	.tcsb-imgright {
		flex-direction: row-reverse;
	}
	.tcsb-copy {
		padding: 0 2em;
	}
	.tcsb-copy h2,.tcsb-copy h3,.tcsb-copy h4,.tcsb-copy h5,.tcsb-copy h6 {
		margin: 0 0 0.5em;
	}
	.tcsb.tcsb-padded .tcsb-copy {
		padding: 0;
	}
	.tcsb .dealerform select,.tcsb .dealerform input {
		padding: 0.75em;
	}
	.tcsb .dealerform input.btn {
		padding: 1em 1.5em;
	}
	.tcsb-dealerform .dealerform {
		display: flex;
	}
	.tcsb-dealerform .dealerform input {
		flex: 1;
	}
}
@media (min-width: 1240px){
	.tcsb-container {
		gap: 4em;
	}
	.tcsb-copy {
		padding: 0 4em;
	}
}

/* Form Component */
.fc.bg-img {
	background-repeat: no-repeat;
	background-size: cover;
}
.fc.bg-img,
.fc.bg-primary,
.fc.bg-secondary,
.fc.bg-tertiary,
.fc.bg-gray,
.fc.primary-gradient,
.fc.secondary-gradient {
	color: var(--color-white);
}
.fc-container {
	padding: 2em;
}
.fc-header {
	padding: 0 0 2em;
}
.fc-header h2,.sic-header h3,.sic-header h4,.sic-header h5,.sic-header h6 {
	font-size: 1.75em;
	margin: 0 0 0.25em;
}
.fc-header p {
	margin: 0 auto;
	padding: 0 2em;
	max-width: 980px;
}
.fc-form-container {
	display: block;
	margin: 0 auto;
	max-width: 1140px;
}
.form-row,.form-item {
	margin: 0 0 1em;
}
.form-row input.field,.form-row select {
	width: 100%;
	padding: 0.5em;
	border: 1px solid var(--color-lightgray);
	-webkit-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);	
}
.form-row textarea {
	width: 98.5%;
	padding: 0.5em;
	border: 1px solid var(--color-lightgray);
	-webkit-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);	
}
.fc.bg-primary .form-row .form-item input.field {
	border: 1px solid var(--color-primary);
}
.fc.bg-gray .form-row .form-item input.field {
	border: 1px solid var(--color-gray);
}
.fc.bg-secondary .form-row .form-item input.field {
	border: 1px solid var(--color-secondary);
}
.form-checkbox {
	display: flex;
	gap: 1em;
	text-align: left;
}
.form-checkbox input,.form-checkbox label {
	flex: 1;
}
.form-checkbox input {
	max-width: 24px;
}
.form-row.align-center input {
	margin: 0 auto;
}
.form-row .btn {
	font-size: 0.9em;
	line-height: 1.4;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.form-row .btn:hover {
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.fc.bg-primary .form-row .btn {
	background: var(--color-secondary);
	color: var(--color-white);
}
.fc.bg-primary .form-row .btn:hover {
	background: var(--color-white);
	color: var(--color-primary);
}
@media (min-width: 768px){
	.fc-container {
		padding: 4em 2em;
	}
	.fc-header {
		padding: 0 0 4em;
	}
	.fc-header h2,.fc-header h3,.fc-header h4,.fc-header h5,.fc-header h6 {
		font-size: 2.5em;
	}
	.form-row {
		display: flex;
		gap: 2em;
	}
	.form-item {
		flex: 1;
		min-width: 48%;
		max-width: 48%;
	}
	.form-row input.field,.form-row select,.form-row textarea {
		font-size: 1.1em;
	}
}

/* Webform Drupal Integration (inside Form Component) */
.fc-form-container .webform-submission-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}
.fc-form-container .webform-submission-form label {
	display: none;
}
.fc-form-container .webform-submission-form input.form-text,
.fc-form-container .webform-submission-form input.form-email,
.fc-form-container .webform-submission-form input.form-tel,
.fc-form-container .webform-submission-form input.form-url,
.fc-form-container .webform-submission-form input.form-number,
.fc-form-container .webform-submission-form input.form-search,
.fc-form-container .webform-submission-form select,
.fc-form-container .webform-submission-form textarea.form-textarea {
	width: 100%;
	padding: 0.75em 1em;
	margin: 0;
	border: 1px solid var(--color-lightgray);
	border-radius: 0;
	background: var(--color-white);
	color: var(--color-primary);
	font-family: var(--font-primary);
	font-size: 1em;
	font-weight: 300;
	-webkit-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.fc-form-container .webform-submission-form input::placeholder,
.fc-form-container .webform-submission-form textarea::placeholder {
	color: var(--color-primary);
}
.fc-form-container .webform-submission-form input:focus,
.fc-form-container .webform-submission-form textarea:focus,
.fc-form-container .webform-submission-form select:focus {
	outline: none;
	border: 1px solid var(--color-secondary);
}
.fc-form-container .webform-submission-form textarea.form-textarea {
	min-height: 120px;
	resize: vertical;
}
.fc-form-container .webform-submission-form .form-textarea-wrapper textarea,
.fc-form-container .webform-submission-form > div:not(.contextual):not(.form-actions) textarea {
	width: 100%;
	margin-bottom: 0;
	padding: 0.75em 1em;
	border: 1px solid var(--color-lightgray);
	border-radius: 0;
	background: var(--color-white);
	color: var(--color-primary);
	font-family: var(--font-primary);
	font-size: 1em;
	font-weight: 300;
	min-height: 120px;
	resize: vertical;
	-webkit-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
}
.fc-form-container .webform-submission-form input.webform-button--submit,
.fc-form-container .webform-submission-form input.form-submit {
	display: inline-block;
	margin: 1em auto 0;
	padding: 0.65em 2em;
	border: 1px solid var(--color-secondary);
	background: var(--color-secondary);
	color: var(--color-white);
	font-family: var(--font-primary);
	font-size: 0.9em;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: auto;
}
.fc-form-container .webform-submission-form input.webform-button--submit:hover,
.fc-form-container .webform-submission-form input.form-submit:hover {
	background: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-primary);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.fc-form-container .webform-submission-form .form-actions {
	text-align: center;
}
.fc-form-container .webform-submission-form input[type="hidden"],
.fc-form-container .webform-submission-form .contextual {
	display: none;
}
.fc-form-container .webform-submission-form .webform-email-confirm--wrapper #edit-email-address-mail-1 {
	margin: 0 0 1em;
}
.fc-form-container .webform-submission-form .form-item.optin {
	display: flex;
	align-items: flex-start;
	gap: 1em;
	line-height: 1;
}
.fc-form-container .webform-submission-form .form-item.optin label {
	display: block !important;
	color: var(--color-primary);
}
.fc.bg-img, .fc.bg-primary .form-item.optin label, .fc.bg-secondary .form-item.optin label, .fc.bg-tertiary .form-item.optin label, .fc.bg-gray .form-item.optin label, .fc.primary-gradient .form-item.optin label, .fc.secondary-gradient .form-item.optin label {
	color: var(--color-white) !important;
}
@media (max-width: 767px) {
	.fc-form-container .webform-submission-form .form-row {
		margin: 0;
	}
	.fc-form-container .webform-submission-form .webform-email-confirm--wrapper {
		margin: 0 0 1em;
	}
}
@media (min-width: 768px) {
	.fc-form-container .webform-submission-form {
		grid-template-columns: 1fr 1fr;
		gap: 0 2em;
	}
	.fc-form-container .webform-submission-form input.form-text,
	.fc-form-container .webform-submission-form input.form-email,
	.fc-form-container .webform-submission-form input.form-tel,
	.fc-form-container .webform-submission-form input.form-url,
	.fc-form-container .webform-submission-form input.form-number,
	.fc-form-container .webform-submission-form input.form-search,
	.fc-form-container .webform-submission-form select,
	.fc-form-container .webform-submission-form textarea.form-textarea,
	.fc-form-container .webform-submission-form .form-textarea-wrapper {
		font-size: 1.1em;
	}
	.fc-form-container .webform-submission-form textarea.form-textarea,
	.fc-form-container .webform-submission-form .form-textarea-wrapper,
	.fc-form-container .webform-submission-form > div:not(.contextual),
	.fc-form-container .webform-submission-form .form-actions,
	.fc-form-container .webform-submission-form .form-type-webform-markup,
	.fc-form-container .webform-submission-form .webform-element--title-inline {
		grid-column: 1 / -1;
	}
	.fc-form-container .webform-submission-form .webform-email-confirm--wrapper {
		width: 99%;
	}
	.fc-form-container .webform-submission-form .webform-email-confirm--wrapper #edit-email-address-mail-1 {
		margin: 0;
	}
	.fc-form-container .webform-submission-form .form-textarea-wrapper,
.fc-form-container .webform-submission-form > div:not(.contextual):not(.form-actions) {
		margin: 0 0 1em;
	}
}

/* Testimonials Component */
.tc.bg-img,
.tc.bg-primary,
.tc.bg-secondary,
.tc.bg-tertiary,
.tc.bg-gray,
.tc.primary-gradient,
.tc.secondary-gradient {
	color: var(--color-white) !important;
}
.tc-container {
	padding: 2em;
}
.tc-testimonials h2,.tc-testimonials h3,.tc-testimonials h4,.tc-testimonials h5,.tc-testimonials h6 {
	font-size: 1.75em;
	margin: 0 0 0.25em;
}
.tc-testimonials p {
	margin: 0 auto;
	padding: 0 2em;
	max-width: 980px;
}
.tc-testimonials {
	overflow: hidden;
}
.tc-testimonial-quote {
	font-weight: 400;
	font-style: italic;
	font-size: 1.5em;
	margin: 1em 0;
}
.tc-testimonial-attribution {
	font-size: 1.25em;
}
.tc-testimonials-carousel .swiper-pagination {
	position: relative;
	margin: 2em 0 0;
	text-align: left;
}
.tc-testimonials-carousel .swiper-pagination-bullet {
	display: inline-block;
	width: 16px;
	height: 6px;
	background: var(--color-white) !important;
	opacity: 0.5;
	margin: 0 0.5em;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.tc-testimonials-carousel .swiper-pagination-bullet-active {
	opacity: 1;
	width: 75px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.tc-img img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-box-shadow: 0px 5px 25px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 5px 25px rgba(0,0,0,0.1);
	box-shadow: 0px 5px 25px rgba(0,0,0,0.1);	
}
@media (max-width: 767px){
	.tc-img {
		display: none !important;
	}
}
@media (min-width: 768px){
	.tc-container {
		padding: 6em 2em;
		max-width: 1480px;
		margin: 0 auto;
	}
	.tc-img {
		display: block;
	}
	.tc-img img {
		width: 100%;
		height: auto;
	}
	.tc-carousel-container {
		display: flex;
		gap: 4em;
	}
	.tc-testimonials h2,.tc-testimonials h3,.tc-testimonials h4,.tc-testimonials h5,.tc-testimonials h6 {
		font-size: 2.5em;
	}
	.tc-testimonial-quote {
		font-size: 1.75em;
		margin: 1em 0;
	}
	.tc-testimonial-attribution {
		font-size: 1.4em;
	}
	.tc-testimonials,.tc-img {
		flex: 1;
	}
	.tc-testimonials-carousel .swiper-pagination {
		margin: 6em 0 0;
	}
}

/* Events Component */
.ec {
	padding: 2em;
	overflow: hidden;
}
.ec-container {
	/*max-width: 1240px;*/
	margin: 0 auto;
}
.ec-header {
	margin: 0 0 2em;
}
.ec-header h2,.ec-header h3,.ec-header h4,.ec-header h5,.ec-header h6 {
	font-size: 1.75em;
	margin: 0 0 0.25em;
}
.ec-events-carousel {
}
.ec-event {
}
.ec-event img {
	margin: 0 0 1em;
}
.ec-event h3 {
	font-size: 1.5em;
	margin: 0;
}
.ec-event p {
	margin: 0 0 0.5em;
}
.ec-events-carousel .swiper-pagination {
	position: relative;
	margin: 2em 0 0;
	text-align: center;
}
.ec-events-carousel .swiper-pagination-bullet {
	display: inline-block;
	width: 16px;
	height: 6px;
	background: var(--color-primary) !important;
	opacity: 0.5;
	margin: 0 0.5em;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.ec-events-carousel .swiper-pagination-bullet-active {
	opacity: 1;
	width: 75px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
@media (min-width: 768px){
	.ec {
		padding: 4em 0;
	}
	.ec-header h2,.ec-header h3,.ec-header h4,.ec-header h5,.ec-header h6 {
		font-size: 2.5em;
	}
	.ec-events-carousel .swiper-pagination {
		margin: 4em 0 0;
	}
}

/* Events Carousel — Article mode */
.ec-articles-carousel-wrap {
  position: relative;
}
.ec-articles-carousel {
  overflow: hidden;
}
.ec-articles-carousel-wrap > .swiper-button-prev,
.ec-articles-carousel-wrap > .swiper-button-next {
  display: none;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  top: 50%;
  position: absolute;
}
.ec-articles-carousel-wrap > .swiper-button-prev::after,
.ec-articles-carousel-wrap > .swiper-button-next::after {
  display: none;
}
.ec-articles-carousel-wrap > .swiper-button-prev {
  background: transparent url('../assets/images/arrow-circle-black-left.png') center center no-repeat;
  background-size: 100% auto;
  left: 0;
}
.ec-articles-carousel-wrap > .swiper-button-next {
  background: transparent url('../assets/images/arrow-circle-black-right.png') center center no-repeat;
  background-size: 100% auto;
  right: 0;
}
.ec-article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0 0 1em;
}
.ec-article h3 {
  font-size: 1.25em;
  margin: 0 0 0.25em;
  line-height: 1.3;
}
.ec-article p {
  /*font-size: 0.9em;*/
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 1em;
}
.ec-articles-carousel .swiper-wrapper {
	justify-content: center;
}
.ec-articles-carousel .swiper-pagination {
  position: relative;
  margin: 2em 0 0;
  text-align: center;
}
.ec-articles-carousel .swiper-pagination-bullet {
  display: inline-block;
  width: 16px;
  height: 6px;
  background: var(--color-primary) !important;
  opacity: 0.5;
  margin: 0 0.5em;
  border-radius: 100px;
  transition: all 0.2s;
}
.ec-articles-carousel .swiper-pagination-bullet-active {
  opacity: 1;
  width: 75px;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .ec-articles-carousel-wrap {
    padding: 0 4.5em;
  }
  .ec-articles-carousel-wrap > .swiper-button-prev,
  .ec-articles-carousel-wrap > .swiper-button-next {
    display: flex;
  }
  .ec-articles-carousel-wrap > .swiper-button-prev {
    left: 0;
  }
  .ec-articles-carousel-wrap > .swiper-button-next {
    right: 0;
  }
  .ec-article img {
    height: 180px;
  }
  .ec-articles-carousel .swiper-pagination {
    margin: 4em 0 0;
  }
}
@media (min-width: 1024px) {
}

/* Sticky Anchor Menu Component */
.sm {
	position: sticky;
	top: calc(65px + var(--drupal-displace-offset-top, 0px));
	z-index: 500;
	padding: 1.5em 2em;
	background: var(--color-white);
	border-top: 1px solid var(--color-lightgray);
	border-bottom: 1px solid var(--color-lightgray);
}
.sm-container {
	display: flex;
	gap: 2em;
	width: 100%;
}
.sm-nav {
	display: block;
	width: 100%;
	overflow-x: scroll;
	white-space: nowrap;
	flex: 1;
	align-items: center;
}
.sm-nav a {
	margin-right: 2em;
}
.sm-nav a.sm-nav-active {
	font-weight: 700;
}
.sm-btns {
	display: none;
}
@media (min-width: 768px){
	.sm {
		top: calc(85px + var(--drupal-displace-offset-top, 0px));
	}
	.sm-nav {
		overflow-x: unset;
		white-space: normal;
		display: flex;
		flex: 1;
		gap: 1em;
		align-items: center;
	}
	.sm-nav a {
		margin-right: 0;
	}
	.sm-btns {
		display: flex;
		gap: 1em;
		justify-content: flex-end;
	}
}

/* Sticky Anchor Menu — Anchor Target Scroll Offset */
.sm-anchor-target {
	scroll-margin-top: calc(160px + var(--drupal-displace-offset-top, 0px));
}

/* Buttons Component */
.bc {
	padding: 2em;
}
.bc-container{
}
.bc-item {
	position: relative;
	line-height: 0;
	margin: 0 0 2em;
}
.bc-item img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.bc-item a {
	position: absolute;
	top: 0;
	background: var(--color-over);
	display: flex;
	padding: 0 1em;
	justify-content: center;
  	align-items: center;
	width: 100%;
	height: 100%;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-white);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 4px;
	text-shadow: 0 0 10px var(--color-over);
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.bc-item a:hover {
	background: var(--color-overhover);
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
@media (min-width: 1024px){
	.bc {
		padding: 4em;
	}
	.bc-container {
		display: flex;
		gap: 1em;
		flex-wrap: no-wrap;
	}
	.bc-item {
		flex: 1;
		margin: 0;
	}
	.bc2 .bc-item a,.bc3 .bc-item a {
		font-size: 1.4em;
	}
	.bc4 .bc-item a,.bc5 .bc-item a {
		font-size: 1.2em;
	}
}

/* Image Gallery Component */
.ig {
	padding: 2em;
}
.ig-container {
}
.ig-header {
	text-align: center;
	color: var(--color-primary);
}
.ts.bg-primary .ig-header,
.ts.bg-secondary .ig-header,
.ts.bg-tertiary .ig-header,
.ts.bg-gray .ig-header,
.ts.primary-gradient .ig-header,
.ts.secondary-gradient .ig-header {
	color: var(--color-white) !important;
}
.ig-header h2,.ig-header h3,.ig-header h4,.ig-header h5,.ig-header h6 {
	color: var(--color-primary);
}
.ig-tabs {
	display: block;
	width: 100%;
	overflow-x: scroll;
	white-space: nowrap;
	margin: 0 0 2em;
	border-bottom: 1px solid var(--color-primary);
}
.ig-tab {
	display: inline-block;
	padding: 0.5em 1em;
	border-bottom: 2px solid var(--color-white);
}
.ig-tab-active {
	font-weight: 600;
	border-bottom: 2px solid var(--color-primary);
}
.ig-tab-panel {
}
.ig-images {
	display: flex;
	gap: 1em;
	justify-content: center;
	flex-wrap: wrap;
}
.ig-image {
	flex: 1;
	min-width: 48%;
	max-width: 48%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.ig-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ig-image.ig-hidden {
	display: none;
}
.ig-images-btn {
	display: block;
	margin-top: 2em;
	text-align: center;
}
@media (min-width: 768px){
	.ig-container {
		padding: 4em 0;
	}
	.ig-tabs {
		display: inline-block;
		width: auto;
		overflow-x: unset;
		white-space: auto;
	}
	.ig-image {
		min-width: 31%;
		max-width: 31%;
	}
}

/* Columns Component */
.cols-container {
	padding: 2em;
}
.cols-header {
	color: var(--color-primary);
	text-align: center;
}
.cols.bg-primary .cols-header,
.cols.bg-secondary .cols-header,
.cols.bg-tertiary .cols-header,
.cols.bg-gray .cols-header,
.cols.primary-gradient .cols-header,
.cols.secondary-gradient .cols-header {
	color: var(--color-white) !important;
}
.col {
}
.cols.bg-primary .col p,
.cols.bg-secondary .col p,
.cols.bg-tertiary .col p,
.cols.bg-gray .col p,
.cols.primary-gradient .col p,
.cols.secondary-gradient .col p {
	color: var(--color-white) !important;
}
.col img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.col-media {
	width: 100%;
}
.col .col-media img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}
.cols .dealer-result h2 {
	font-size: 1.2em;
	color: var(--color-primary);
	margin: 0 0 0.25em !important;
}
@media (min-width: 768px){
	.cols-container {
		padding: 4em 3em;
	}
	.cols {
		display: flex;
		gap: 2em;
		justify-content: center;
	}
	.col {
		flex: 1;
		min-width: 31%;
		max-width: 31%;
	}
	.paragraph--type--dealer-details .cols-container {
		width: 100%;
		max-width: 1920px;
		margin: 0 auto;
	}
	.cols .dealer-result {
		min-height: 300px;
	}
	.cols .dealer-result h2 {
		font-size: 1.5em;
	}
}

/* Events List */
.ecs {
	padding: 2em;
}
.ecs-header {
	margin: 0 0 2em;
}
.ecs.bg-primary .ecs-header,.ecs.bg-secondary .ecs-header,.ecs.bg-gray .ecs-header,.ecs.primary-gradient .ecs-header,.ecs.secondary-gradient .ecs-header {
	color: var(--color-white);
}
.ecs-card {
	margin: 0 0 1em;
	line-height: 0;
	display: flex;
	flex-direction: column;
}
.ecs-card video,.ecs-card img {
	width: 100%;
	max-width: 100%;
	height: 200px;
	object-fit: cover;
	margin: 0;
}
.ecs-unboxed .ecs-card video,.ecs-unboxed .ecs-card img {
	margin: 0 0 1em;
}
.ecs-box {
	padding: 1em;
	background: var(--color-lightgray);
	line-height: 1.3;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.ecs-box .btn {
	margin-top: auto;
	align-self: flex-start;
}
.ecs-box .event-date {
	display: block;
	color: var(--color-secondary);
	margin: 0 0 0.5em;
	padding: 0;
	border: 0;
}
.ecs-unboxed .ecs-box {
	padding: 1em 0 0;
	background: transparent;
}
.ecs.bg-primary .ecs-box,.ecs.bg-secondary .ecs-box,.ecs.bg-gray .ecs-box,.ecs.primary-gradient .ecs-box,.ecs.secondary-gradient .ecs-box {
	background: var(--color-white);
}
.ecs-card h2 {
	font-size: 1.5em;
	line-height: 1.1;
	margin: 0 0 0.25em;
}
.ecs-box h3 {
	font-size: 1.1em;
	color: var(--color-tertiary);
	line-height: 1.1;
	margin: 0 0 0.25em;
}
.ecs-card p {
	margin: 0 0 1em;
}
.ecs-cards-pagination {
	font-size: 1.1em;
	margin-top: 2em;
	text-align: center;
}
.ecs-pagination-active {
	display: inline-block;
	background: var(--color-secondary);
	color: var(--color-white);
	font-weight: bold;
	padding: 0.25em 0.5em;
	margin: 0 0.1em;
}
.ecs-cards-pagination a {
	display: inline-block;
	padding: 0.25em 0.5em;
	margin: 0 0.1em;
	background: var(--color-extra);
}
.ecs-pagination-more {
	display: inline-block;
	padding: 0.25em 0.5em;
	margin: 0 0.1em;
}
.ecs-cards-btn {
	margin-top: 2em;
	text-align: center;
}
@media (max-width: 768px){
	.ecs-card {
		margin: 0 0 2em;
	}
}
@media (min-width: 768px){
	.ecs {
		padding: 4em;
	}
	.ecs-cards {
		display: flex;
		gap: 2em;
		flex-wrap: wrap;
	}
	.ecs-card {
		flex: 1;
		min-width: 31.333%;
		max-width: 31.333%;
	}
	.ecs-box {
		padding: 1.5em 2em 2em;
	}
	.ecs-unboxed .ecs-box {
		padding: 1em 0 0;
	}
	.ecs-card h2 {
		font-size: 1.75em;
	}
	.ecs-card h3 {
		font-size: 1.3em;
	}
	.ecs-cards-btn {
		margin-top: 4em;
	}
}

.hi.semiopaque-image .hi-image img {
	opacity: 0.15;
}

/* Events Detail */
.node-type-event-detail .hi.semiopaque-image .hi-image img {
	opacity: 0.15 !important;
}
.event-details-layout {
	padding: 2em;
}
.event-details-info h2 {
	font-size: 1.75em;
}
.event-details-map iframe {
	width: 100%;
	height: 480px;
}
@media (min-width: 768px){
	.event-details-layout {
		display: flex;
		gap: 2em;
		padding: 4em 3em;
	}
	.event-details-info {
		flex: 0 0 38%;
	}
	.event-details-map {
		flex: 1;
	}
}

/* Social Carousel Component */
.sc {
	padding: 2em;
}
.sc-header {
	margin: 0 0 2em;
}
.sc-header h2,.sc-header h3,.sc-header h4,.sc-header h5,.sc-header h6 {
	color: var(--color-primary);
	font-size: 1.75em;
	margin: 0 0 0.25em;
}
.sc .sc-icons img {
	margin: 0 0.5em;
}
.sc .sc-icons img:hover {
	opacity: 0.75;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.sc .sc-copy {
	display: block;
	margin: 2em 0 0;
	font-size: 1.25em;
	color: var(--color-primary);
}
.sc .sc-copy a {
	font-weight: bold;
}
.sc-item {
	position: relative;
	/* overflow: hidden; */
}
.sc-item img {
	display: block;
	width: 100%;
	height: auto;
}
.sc-item .sc-item-copy {
	position: absolute;
	top: 0;
	opacity: 0;
	display: flex;
	background: var(--color-overhover);
	color: var(--color-white);
	padding: 1em;
	width: 100%;
	height: 100%;
	flex-direction: column;
	justify-content: end;
  	-webkit-transition: all 0.4s;
  	-moz-transition: all 0.4s;
  	-o-transition: all 0.4s;
  	transition: all 0.4s;
}
.sc-item:hover .sc-item-copy {
	opacity: 1;
  	-webkit-transition: all 0.4s;
  	-moz-transition: all 0.4s;
  	-o-transition: all 0.4s;
  	transition: all 0.4s;
}
.sc-item .sc-item-handle {
	display: block;
	width: 100%;
	font-weight: bold;
}
.sc-item .sc-item-text {
	display: block;
	width: 100%;
}
.sc-items-carousel .swiper-pagination {
	position: relative;
	margin: 2em 0 0;
	text-align: center;
}
.sc-items-carousel .swiper-pagination-bullet {
	display: inline-block;
	width: 16px;
	height: 6px;
	background: var(--color-primary) !important;
	opacity: 0.5;
	margin: 0 0.5em;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.sc-items-carousel .swiper-pagination-bullet-active {
	opacity: 1;
	width: 75px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
@media (min-width: 768px){
	.sc {
		padding: 4em 0;
	}
	.sc-header h2,.sc-header h3,.sc-header h4,.sc-header h5,.sc-header h6 {
		font-size: 2.5em;
	}
	.sc .sc-copy {
		font-size: 1.5em;
	}
	.sc-items-carousel .swiper-pagination {
		margin: 4em 0 0;
	}
	.sc-item .sc-item-copy {
		padding: 2em;
	}
}

/* Call-to-Action Component */
.cta {
	padding: 2em;
}
.cta.text-center {
	text-align: center;
}
.cta.text-center .cta-header,.cta.text-center .cta-btns {
	margin: 0 auto;
	max-width: 980px;
}
.cta.text-center .cta-btns {
	justify-content: center;
}
.cta-header h2,.cta-header h3,.cta-header h4,.cta-header h5,.cta-header h6 {
	color: var(--color-primary);
}
.cta-btns {
	display: flex;
	gap: 1em;
}
.cta.bg-primary .cta-header,
.cta.bg-secondary .cta-header,
.cta.bg-tertiary .cta-header,
.cta.bg-gray .cta-header,
.cta.primary-gradient .cta-header,
.cta.secondary-gradient .cta-header,
.cta.bg-primary .cta-header h2,.cta.bg-primary .cta-header h3,.cta.bg-primary .cta-header h4,.cta.bg-primary .cta-header h5,.cta.bg-primary .cta-header h6,
.cta.bg-secondary .cta-header h2,.cta.bg-secondary .cta-header h3,.cta.bg-secondary .cta-header h4,.cta.bg-secondary .cta-header h5,.cta.bg-secondary .cta-header h6,
.cta.bg-tertiary .cta-header h2,.cta.bg-tertiary .cta-header h3,.cta.bg-tertiary .cta-header h4,.cta.bg-tertiary .cta-header h5,.cta.bg-tertiary .cta-header h6,
.cta.bg-gray .cta-header h2,.cta.bg-gray .cta-header h3,.cta.bg-gray .cta-header h4,.cta.bg-gray .cta-header h5,.cta.bg-gray .cta-header h6,
.cta.primary-gradient .cta-header h2,.cta.primary-gradient .cta-header h3,.cta.primary-gradient .cta-header h4,.cta.primary-gradient .cta-header h5,.cta.primary-gradient .cta-header h6,
.cta.secondary-gradient .cta-header h2,.cta.secondary-gradient .cta-header h3,.cta.secondary-gradient .cta-header h4,.cta.secondary-gradient .cta-header h5,.cta.secondary-gradient .cta-header h6,
.cta.bg-primary .cta-header h2,.cta.bg-primary .cta-header h3,.cta.bg-primary .cta-header h4,.cta.bg-primary .cta-header h5,.cta.bg-primary .cta-header h6,
.cta.bg-secondary .cta-header h2,.cta.bg-secondary .cta-header h3,.cta.bg-secondary .cta-header h4,.cta.bg-secondary .cta-header h5,.cta.bg-secondary .cta-header h6 {
	color: var(--color-white) !important;
}
.cta-btns.cta-btns-stacked,.cta-btns.cta-btns-stacked .btn {
	display: block !important;
	width: auto;
}
.cta-btns.cta-btns-stacked .btn {
	margin: 0 auto 1em;
}
.cta-btns.cta-btns-stacked .btn:last-child {
	margin-bottom: 0;
}
.cta-link a {
	font-size: 1.1em;
	font-weight: bold;
}
@media (min-width: 1024px){
	.cta {
		padding: 4em;
	}
	.cta-btns.cta-btns-stacked .btn {
		max-width: 300px;
	}
}

/* Buttons Component (additional styles) */
.bc.text-center {
	text-align: center;
}
.bc.text-center .bc-header,.bc.text-center .bc-btns {
	margin: 0 auto;
	max-width: 980px;
}
.bc.text-center .bc-btns {
	justify-content: center;
}
.bc-header h2,.bc-header h3,.bc-header h4,.bc-header h5,.bc-header h6 {
	color: var(--color-primary);
}
.bc-btns {
	display: flex;
	gap: 1em;
}
.bc.bg-primary .bc-header,
.bc.bg-secondary .bc-header,
.bc.bg-tertiary .bc-header,
.bc.bg-gray .bc-header,
.bc.primary-gradient .bc-header,
.bc.secondary-gradient .bc-header,
.bc.bg-primary .bc-header h2,.bc.bg-primary .bc-header h3,.bc.bg-primary .bc-header h4,.bc.bg-primary .bc-header h5,.bc.bg-primary .bc-header h6,
.bc.bg-secondary .bc-header h2,.bc.bg-secondary .bc-header h3,.bc.bg-secondary .bc-header h4,.bc.bg-secondary .bc-header h5,.bc.bg-secondary .bc-header h6,
.bc.bg-tertiary .bc-header h2,.bc.bg-tertiary .bc-header h3,.bc.bg-tertiary .bc-header h4,.bc.bg-tertiary .bc-header h5,.bc.bg-tertiary .bc-header h6,
.bc.bg-gray .bc-header h2,.bc.bg-gray .bc-header h3,.bc.bg-gray .bc-header h4,.bc.bg-gray .bc-header h5,.bc.bg-gray .bc-header h6,
.bc.primary-gradient .bc-header h2,.bc.primary-gradient .bc-header h3,.bc.primary-gradient .bc-header h4,.bc.primary-gradient .bc-header h5,.bc.primary-gradient .bc-header h6,
.bc.secondary-gradient .bc-header h2,.bc.secondary-gradient .bc-header h3,.bc.secondary-gradient .bc-header h4,.bc.secondary-gradient .bc-header h5,.bc.secondary-gradient .bc-header h6 {
	color: var(--color-white) !important;
}
.bc-btns.bc-btns-stacked,.bc-btns.bc-btns-stacked .btn {
	display: block !important;
	width: auto;
}
.bc-btns.bc-btns-stacked .btn {
	margin: 0 auto 1em;
}
.bc-btns.bc-btns-stacked .btn:last-child {
	margin-bottom: 0;
}
@media (min-width: 1024px){
	.bc-btns.bc-btns-stacked .btn {
		max-width: 300px;
	}
}

/* Image Gallery Component (Large Image variant) */
.ig.ig-large .ig-image {
	min-width: 100%;
	max-width: 100%;
	padding-bottom: 1em;
}
.ig-larger-caption {
	font-style: italic;
}
.ig-larger-caption p {
	margin: 0;
}
@media (min-width: 768px){
	.ig.ig-large {
		padding: 4em;
	}
	.ig.ig-large .ig-images {
		display: flex;
		gap: 1em;
	}
	.ig.ig-large .ig-larger,.ig.ig-large .ig-remaining {
		flex: 1;
	}
	.ig.ig-large .ig-remaining {
		display: flex;
		gap: 1em;
		flex-wrap: wrap;
	}
	.ig.ig-large .ig-remaining .ig-image {
		min-width: 45%;
		max-width: 45%;
		padding: 0;
	}
}
@media (min-width: 1280px){
	.ig.ig-large .ig-images {
		gap: 2em;
	}
	.ig.ig-large .ig-remaining {
		gap: 2em;
	}
	.ig.ig-large .ig-remaining .ig-image {
		min-width: 47%;
		max-width: 47%;
	}
}

/* Video Gallery Component */
.vg {
	padding: 2em;
}
.vg-header {
	margin: 0 0 2em;
}
.vg-header h2,.vg-header h3,.vg-header h4,.vg-header h5,.vg-header h6 {
	font-size: 1.75em;
	margin: 0 0 0.25em;
}
.vg.bg-primary .vg-header,
.vg.bg-secondary .vg-header,
.vg.bg-tertiary .vg-header,
.vg.bg-gray .vg-header,
.vg.primary-gradient .vg-header,
.vg.secondary-gradient .vg-header {
	color: var(--color-white) !important;
}
.vg-video img {
	margin: 0 0 1em;
}
.vg-video h3 {
	font-size: 1.5em;
	margin: 0;
}
.vg-video p {
	margin: 0 0 0.5em;
}
.vg.bg-primary .vg-video,
.vg.bg-secondary .vg-video,
.vg.bg-tertiary .vg-video,
.vg.bg-gray .vg-video,
.vg.primary-gradient .vg-video,
.vg.secondary-gradient .vg-video {
	color: var(--color-white) !important;
}
.vg.bg-primary .vg-video a,
.vg.bg-secondary .vg-video a,
.vg.bg-tertiary .vg-video a,
.vg.bg-gray .vg-video a,
.vg.primary-gradient .vg-video a,
.vg.secondary-gradient .vg-video a {
	color: var(--color-white) !important;
}
.vg-videos-carousel .swiper-pagination {
	position: relative;
	margin: 2em 0 0;
	text-align: center;
}
.vg-videos-carousel .swiper-pagination-bullet {
	display: inline-block;
	width: 16px;
	height: 6px;
	background: var(--color-primary) !important;
	opacity: 0.5;
	margin: 0 0.5em;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.vg-videos-carousel .swiper-pagination-bullet-active {
	opacity: 1;
	width: 75px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.vg-video-over {
	position: relative;
	line-height: 0;
	display: block;
}
.vg-video-over img {
	width: 100%;
	height: auto;
}
.vg-video-over .play {
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	display: inline-block;
	width: 48px;
	height: 48px;
	background: transparent url('../assets/images/play-white.png') top left no-repeat;
	background-size: 100% auto;
	text-indent: 9999px;
}
@media (min-width: 768px){
	.vg {
		padding: 4em 0;
	}
	.vg-header h2,.vg-header h3,.vg-header h4,.vg-header h5,.vg-header h6 {
		font-size: 2.5em;
	}
	.vg-videos-carousel .swiper-pagination {
		margin: 4em 0 0;
	}
}

/* Floating CTA Component */
.slidecta {
	position: fixed;
	z-index: 999;
	opacity: 0;
	bottom: 5%;
	width: 90%;
	margin: 0 5%;
	display: block;
	padding: 1em 5%;
	text-align: center;
	color: var(--color-white);
	background: var(--color-primary);
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	-webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.slidein .slidecta {
	opacity: 1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.slidecta a {
	color: var(--color-white);
}
.slidecta .line1,.slidecta .line2 {
	display: block;
	line-height: 1.2;
}
.slidecta .line1 {
	font-size: 1.1em;
}
@media (min-width: 768px){
	.slidecta {
		bottom: auto;
		top: 50%;
		right: -1000px;
		width: auto;
		max-width: 360px;
		margin: 0 auto;
		padding: 1em 1em 1em 3em;
		text-align: left;
		-webkit-border-radius: unset;
		-moz-border-radius: unset;
		border-radius: unset;
		-webkit-border-top-left-radius: 100px;
		-webkit-border-bottom-left-radius: 100px;
		-moz-border-radius-topleft: 100px;
		-moz-border-radius-bottomleft: 100px;
		border-top-left-radius: 100px;
		border-bottom-left-radius: 100px;
	}
	.slidecta .line1 {
    	font-size: 1.25em;
  	}
	.slidein .slidecta {
    	right: 0;
    	opacity: 1;
    }
}

/* Two Column Repeating Blocks Component */
.tcrb {
	padding: 2em;
}
.tcrb-header {
	margin: 0 0 2em;
}
.tcrb-block {
	position: relative;
	margin: 0 0 2em;
	line-height: 0;
}
.tcrb-block:last-child {
	margin: 0;
}
.tcrb-block video,.tcrb-block img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.tcrb-copy {
	position: absolute;
	top: 0;
	display: flex;
	justify-content: end;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 1em;
	line-height: 1.3;
	color: var(--color-white);
	background: var(--color-over);
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.tcrb-copy h2,.tcrb-copy h3,.tcrb-copy h4,.tcrb-copy h5,.tcrb-copy h6 {
	font-size: 1.5em;
	margin: 0;
}
.tcrb-copy p {
	margin: 0;
}
.tcrb.bg-primary .tcrb-header,
.tcrb.bg-secondary .tcrb-header,
.tcrb.bg-tertiary .tcrb-header,
.tcrb.bg-gray .tcrb-header,
.tcrb.primary-gradient .tcrb-header,
.tcrb.secondary-gradient .tcrb-header {
	color: var(--color-white) !important;
}
@media (min-width: 768px){
	.tcrb {
		padding: 4em;
	}
	.tcrb-blocks {
		display: flex;
		gap: 2em;
	}
	.tcrb-block {
		flex: 1;
		margin: 0;
	}
	.tcrb-copy {
		background: var(--color-overlight);
		padding: 2em;
	}
	.tcrb-block a:hover .tcrb-copy {
		background: var(--color-over);
		padding: 2em 2em 3em 2em;
	}
}

/* Feature Cards Component */
.fcs {
	padding: 2em;
}
.fcs-header {
	margin: 0 0 2em;
}
.fcs.bg-primary .fcs-header,.fcs.bg-secondary .fcs-header,.fcs.bg-gray .fcs-header,.fcs.primary-gradient .fcs-header,.fcs.secondary-gradient .fcs-header {
	color: var(--color-white);
}
.fcs-card {
	line-height: 0;
}
.fcs-card video,.fcs-card img {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0;
}
.fcs-unboxed .fcs-card video,.fcs-unboxed .fcs-card img {
	margin: 0 0 1em;
}
.fcs-box {
	padding: 1em;
	background: var(--color-lightgray);
	line-height: 1.3;
}
.fc-unboxed .fcs-box {
	padding: 1em 0 0;
	background: transparent;
}
.fcs.bg-primary .fcs-box,.fcs.bg-secondary .fcs-box,.fcs.bg-gray .fcs-box,.fcs.bg-lightgray .fcs-box,.fcs.primary-gradient .fcs-box,.fcs.secondary-gradient .fcs-box {
	background: var(--color-white);
}
.fcs-primary-gradient .fcs-box {
	background: transparent;
	color: var(--color-white);
}
.fcs-primary-gradient .fcs-box a {
	color: var(--color-white);
}
.fcs-white .fcs-box {
	background: var(--color-white);
}
.fcs-card h2,.fcs-card h3,.fcs-card h4,.fcs-card h5,.fcs-card h6 {
	font-size: 1.5em;
	margin: 0 0 0.25em;
}
.fcs-card p {
	margin: 0 0 1em;
}
@media (max-width: 768px){
	.fcs-card {
		margin: 0 0 2em;
	}
}
@media (min-width: 768px){
	.fcs {
		padding: 4em;
	}
	.fcs-cards {
		display: flex;
		gap: 2em;
		flex-wrap: wrap;
		justify-content: center;
	}
	.fcs-card {
		flex: 1;
		margin: 0;
        min-width: 31%;
        max-width: 31%;
	}
	.fcs-box {
		padding: 1.5em 2em 2em;
	}
	.fc-unboxed .fcs-box {
		padding: 1em 0 0;
	}
	.fcs-card h2,.fcs-card h3,.fcs-card h4,.fcs-card h5,.fcs-card h6 {
		font-size: 1.75em;
	}
}

/* Expanding Feature Component */
.ef {
	padding: 0;
}
.ef-block {
	position: relative;
	margin: 0 0 2em;
	line-height: 0;
}
.ef-block:last-child {
	margin: 0;
}
.ef-block video,.ef-block img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.ef-copy {
	position: absolute;
	top: 0;
	display: flex;
	justify-content: end;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 1em;
	line-height: 1.3;
	color: var(--color-white);
	background: var(--color-over);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.ef-copy h2,.ef-copy h3,.ef-copy h4,.ef-copy h5,.ef-copy h6 {
	font-size: 1.5em;
	margin: 0;
}
.ef-copy p {
	margin: 0;
}
@media (min-width: 768px){
	.ef-blocks {
		display: flex;
	}
	.ef-block {
		flex: 1;
		margin: 0;
		overflow: hidden;
	}
	.ef-block:hover video,.ef-block:hover img {
		transform: scale(1.5);
  		-webkit-transition: all 0.4s;
  		-moz-transition: all 0.4s;
  		-o-transition: all 0.4s;
  		transition: all 0.4s;
	}
	.ef-copy {
		background: var(--color-overlight);
		padding: 2em;
	}
	.ef-block a:hover .ef-copy {
		background: var(--color-over);
		padding: 2em 2em 3em 2em;
	}
	.ef-copy h2,.ef-copy h3,.ef-copy h4,.ef-copy h5,.ef-copy h6 {
		font-size: 1.75em;
	}
	.ef-block:hover .ef-copy h2,.ef-block:hover .ef-copy h3,.ef-block:hover .ef-copy h4,.ef-block:hover .ef-copy h5,.ef-block:hover .ef-copy h6 {
		font-size: 2em;
	}
	.ef-copy p {
		display: none;
	}
	.ef-block a:hover .ef-copy p {
		display: block;
	}
}

/* Accordion Component */
.acc {
	padding: 2em;
}
.acc.bg-primary .acc-header,.acc.bg-secondary .acc-header,.acc.bg-gray .acc-header,.acc.primary-gradient .acc-header,.acc.secondary-gradient .acc-header {
	color: var(--color-white);
}
.acc-item {
	margin: 0 0 1em;
	border-bottom: 1px solid var(--color-lightgray);
}
.acc-item:last-child {
	margin: 0;
	border-bottom: 0;
}
.acc-item h3 {
	font-size: 1.25em;
	line-height: 1.2;
	margin: 0;
}
.acc-item h3 a {
	display: block;
	background: transparent url('../assets/images/arrow-toggle-right-primary.png') top left no-repeat;
	background-size: 24px auto;
	padding-left: 36px;
}
.acc-item h3 a.acc-active {
	display: block;
	background: transparent url('../assets/images/arrow-toggle-down-primary.png') top left no-repeat;
	background-size: 24px auto;
}
.acc.bg-primary .acc-item h3 a,.acc.bg-secondary .acc-item h3 a,.acc.bg-gray .acc-item h3 a,.acc.primary-gradient .acc-item h3 a,.acc.secondary-gradient .acc-item h3 a {
	color: var(--color-white);
	background: transparent url('../assets/images/arrow-toggle-right-white.png') top left no-repeat;
	background-size: 24px auto;
}
.acc.bg-primary .acc-item h3 a.acc-active,.acc.bg-secondary .acc-item h3 a.acc-active,.acc.bg-gray .acc-item h3 a.acc-active,.acc.primary-gradient .acc-item h3 a.acc-active,.acc.secondary-gradient .acc-item h3 a.acc-active {
	color: var(--color-white);
	background: transparent url('../assets/images/arrow-toggle-down-white.png') top left no-repeat;
	background-size: 24px auto;
}
.acc-content {
	padding-left: 36px;
}
.acc.bg-primary .acc-content,.acc.bg-secondary .acc-content,.acc.bg-gray .acc-content,.acc.primary-gradient .acc-content,.acc.secondary-gradient .acc-content {
	color: var(--color-white);
}
.acc-content p {
	margin: 0 0 1em;
}
@media (min-width: 768px){
	.acc {
		padding: 4em;
	}
	.acc-container {
		max-width: 1240px;
		margin: 0 auto;
	}
	.acc-item h3 {
		font-size: 1.5em;
	}
	.acc-item h3 a {
		background: transparent url('../assets/images/arrow-toggle-right-primary.png') top left no-repeat;
		background-size: 32px auto;
		padding-left: 44px;
		min-height: 44px;
	}
	.acc-item h3 a.acc-active {
		background: transparent url('../assets/images/arrow-toggle-down-primary.png') top left no-repeat;
		background-size: 32px auto;
	}
	.acc.bg-primary .acc-item h3 a,.acc.bg-secondary .acc-item h3 a,.acc.bg-gray .acc-item h3 a,.acc.primary-gradient .acc-item h3 a,.acc.secondary-gradient .acc-item h3 a {
		background: transparent url('../assets/images/arrow-toggle-right-white.png') top left no-repeat;
		background-size: 32px auto;
	}
	.acc.bg-primary .acc-item h3 a.acc-active,.acc.bg-secondary .acc-item h3 a.acc-active,.acc.bg-gray .acc-item h3 a.acc-active,.acc.primary-gradient .acc-item h3 a.acc-active,.acc.secondary-gradient .acc-item h3 a.acc-active {
		background: transparent url('../assets/images/arrow-toggle-down-white.png') top left no-repeat;
		background-size: 32px auto;
	}
	.acc-content {
		padding-left: 44px;
	}
}

/* Accordion Document Groups */
.acc-doc-groups {
	margin-top: 1.5em;
}
.acc-doc-group {
	margin-bottom: 1.5em;
}
.acc-doc-group:last-child {
	margin-bottom: 0;
}
.acc-doc-group-heading {
	font-size: 1.1em;
	font-weight: 700;
	margin: 0 0 0.75em;
	color: var(--color-primary, #1a2b4a);
}
.acc-doc-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5em 2em;
}
.acc-doc-link a {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	color: var(--color-primary, #1a2b4a);
	text-decoration: none;
	font-size: 0.95em;
}
.acc-doc-link a:hover {
	text-decoration: underline;
}
.acc-doc-icon {
	flex-shrink: 0;
	opacity: 0.6;
}
@media (min-width: 768px) {
	.acc-doc-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Thumbnail List Component */
.tnl {
	padding: 2em;
}
.tnl-header {
	margin: 0 0 2em;
}
.tnl-items {
	margin: 0 auto;
	max-width: 1240px;
}
.tnl-item {
	margin: 0 0 2em;
}
.tnl-item:last-child {
	margin: 0;
}
.tnl-item-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.tnl-item-content {
	flex: 1;
}
.tnl-item-content h3 {
	font-size: 1.5em;
	margin: 0 0 0.25em;
}
.tnl-item-content p {
	margin: 0 0 1em;
}
@media (min-width: 768px){
	.tnl {
		padding: 4em;
	}
	.tnl-header {
		margin: 0 0 4em;
	}
	.tnl-item {
		display: flex;
		gap: 2em;
		align-items: center;
	}
	.tnl-item:last-child {
		margin: 0;
	}
	.tnl-item-image {
		flex: 1;
		max-width: 25%;
	}
	.tnl-item-content h3 {
		font-size: 1.75em;
	}
}

/* Dealer Locator Component */
.dealer-search {
	display: flex;
	padding: 1em;
	border-bottom: 1px solid #ccc;
}
.dealer-search input.field,.dealer-search select {
	flex: 1;
	width: 100%;
	padding: 0.5em;
	border: 1px solid #cccccc;
	-webkit-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);
	box-shadow: inset 0px 2px 5px rgba(0,0,0,0.1);	
}
.dealer-search input.field,.dealer-search input.field:focus {
    border-radius: 0 !important;
}
.dealer-search input.btn {
	flex: 1;
	font-size: 0.9em;
	max-width: 30%;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.ds-international {
	display: block;
}
.ds-international input.field,.ds-international select,.ds-international .btn {
	display: block;
	width: 100%;
	max-width: 100% !important;
}
.ds-international input.field,.ds-international select {
	margin-bottom: 0.5em;
}
.dealer-results {
	padding: 1em;
}
.dealer-results h2 {
	font-size: 1.25em;
}
.dealer-result {
	padding: 1em;
	background: var(--color-extra) !important;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.dealer-result:hover {
	background: var(--color-lightgray) !important;
}
.dealer-result h3 {
	font-size: 1.4em;
	line-height: 1.1;
	color: var(--color-primary);
	margin: 0 0 0.25em;
}
.dealer-result .distance {
	font-style: italic;
}
.dealer-result p {
	font-size: 1em;
	margin: 0;
	padding: 0;
}
.dealer-result .distance {
	font-size: 1em;
	margin: 0;
	padding: 0;
}
.dealer-result .btn {
	width: 100%;
	margin-top: 1em;
	text-align: center;
}
.locator-map {
	line-height: 0;
	min-height: 480px;
}
.locator-map iframe {
	width: 100%;
	border: 0;
}
#contact-dealer {
	scroll-margin-top: 100px;
}
.starkmedia-dealer-locator-wrapper {
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
}
.starkmedia-map {
    border: 0 !important;
    border-radius: 0 !important;
}
@media (min-width: 768px){
	.locator-container {
		display: flex;
	}
	.locator-search {
		flex: 1;
		max-width: 50%;
	}
	.dealer-search {
		padding: 1.5em;
	}
	.dealer-results {
		padding: 1.5em;
	}
	.dealer-results h2 {
		font-size: 1.5em;
	}
	.dealer-result {
		padding: 1.5em;
	}
	.dealer-result h3 {
		font-size: 1.6em;
	}
	.dealer-result .distance,.dealer-result p,.dealer-result .telephone,.dealer-result .dealer-page {
		font-size: 1.1em;
	}
	.locator-map {
		flex: 1;
		min-height: 780px;
	}
	.locator-map iframe {
		height: 100%;
	}
}
@media (min-width: 1380px){
	.locator-search {
		max-width: 30%;
	}
}


/* Legal Pages */
.node-type-legal-pages .text {
	max-width: 1140px;
    margin: 0 auto;
}
.node-type-legal-pages .text h1 {
	color: var(--color-primary);
}

/* Global Media Queries */
@media (min-width: 768px){
	body p {
		font-size: 18px;
	}
	.header {
		padding: 1em 2em;
	}
	.is-scrolled .header {
		padding: 0.5em 2em;
		-webkit-box-shadow: 0px 5px 25px rgba(0,0,0,0.1);
		-moz-box-shadow: 0px 5px 25px rgba(0,0,0,0.1);
		box-shadow: 0px 5px 25px rgba(0,0,0,0.1);	
	}
	.nav-logo img {
		max-width: 200px;
	}
	.nav-utility .btn {
		margin-left: 1em;
	}
	.footer {
		padding: 6em 2em;
	}
	.footer-container {
		display: flex;
		gap: 2em;
		max-width: 1480px;
		margin: 0 auto; 
		justify-content: center;
	}
	.footer-company,.footer-cols,.footer-social {
		flex: 1;
	}
	.footer-company {
		max-width: 25%;
		margin: 0;
	}
	.footer-company p {
		text-align: left;
	}
	.footer-cols {
		display: flex;
		max-width: 55%;
	}
	.footer-col {
		flex: 1;
	}
	.footer-col ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.footer-col ul li {
		margin: 0.5em 0;
	}
	.footer-col > ul > li > a {
		color: var(--color-primary);
	}
	.footer-col ul li a {
		color: var(--color-gray);
	}
	.footer-col ul li a:hover {
		color: var(--color-primary);
	}
	.footer-company img {
		max-width: 200px;
	}
	.footer-social {
		max-width: 20%;
		text-align: left;
	}
	.footer-social-icons {
		justify-content: unset;
	}
	.footer-social-icons img {
		width: 30px;
		height: 30px;
	}
	.footer-legal {
		display: flex;
		gap: 2em;
		max-width: 1480px;
		margin: 6em auto 0; 
		justify-content: center;
	}
	.footer-legal p {
		margin: 0;
	}
	.footer-copyright {
		flex: 1;
		text-align: left;
	}
	.footer-links {
		flex: 1;
		text-align: right;
	}
	.footer-links a {
		margin: 0 0 0 1.5em;
	}
	h1 {
		font-size: 3em;
		margin: 0 0 0.5em;
	}
	h2 {
		font-size: 2.5em;
		margin: 0 0 0.5em;
	}
	h3 {
		font-size: 2.25em;
		margin: 0 0 0.5em;
	}
	h4 {
		font-size: 2em;
		margin: 0 0 0.5em;
	}
	h5 {
		font-size: 1.6em;
		margin: 0 0 0.5em;
	}
	h6 {
		font-size: 1.4em;
		margin: 0 0 0.5em;
	}
}
/* Drupal admin toolbar offset (developer-only) */
body.toolbar-fixed .header {
	top: 39px;
}
body.toolbar-fixed.toolbar-tray-open .header {
	top: 79px;
}

@media (max-width: 1239px){
	.header {
		padding: 0.5em 1em;
	}
	.header .nav {
		justify-content: center;
		position: relative;
		min-height: 40px;
	}
	.nav-logo {
		max-width: 140px;
		margin: 0 auto;
		text-align: center;
	}
	.header .nav-menu,.header .nav-utility {
		display: none;
	}
}
@media (min-width: 1240px){
	.footer-container {
		gap: 4em;
	}
}

/* Mobile Mega Menu */
.mobile-mega {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: #fff;
	overflow-y: auto;
	flex-direction: column;
}
.mobile-mega.mobile-mega-open {
	display: flex;
}
.mobile-mega-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1em;
	border-bottom: 1px solid var(--color-lightgray);
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 1;
}
.mobile-mega-close {
	background: none;
	border: none;
	font-size: 1.6em;
	color: var(--color-primary);
	cursor: pointer;
	padding: 0.25em;
	line-height: 1;
}
.mobile-mega-logo img {
	max-width: 120px;
	height: auto;
}
.mobile-mega-search img {
	width: 24px;
	height: 24px;
}
.mobile-mega-subtitle {
	display: flex;
	align-items: center;
	gap: 0.5em;
	padding: 1em;
	border-bottom: 1px solid var(--color-lightgray);
}
.mobile-mega-back {
	background: none;
	border: none;
	font-size: 1.4em;
	color: var(--color-primary);
	cursor: pointer;
	padding: 0;
	line-height: 1;
}
.mobile-mega-title {
	font-size: 1.2em;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	color: var(--color-primary);
}
.mobile-mega-body {
	flex: 1;
	padding: 1em;
	overflow-y: auto;
}
.mobile-mega-categories {
	display: flex;
	gap: 0.5em;
	overflow-x: auto;
	padding: 0 0 1em;
	margin-bottom: 1em;
	-webkit-overflow-scrolling: touch;
}
.mobile-mega-category-btn {
	background: none;
	border: 1px solid var(--color-lightgray);
	color: var(--color-gray);
	padding: 0.4em 1em;
	white-space: nowrap;
	cursor: pointer;
	font-size: 0.9em;
	border-radius: 2px;
}
.mobile-mega-category-btn.active {
	border-color: var(--color-primary);
	color: var(--color-primary);
	font-weight: bold;
}
.mobile-mega-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1em;
}
.mobile-mega-option {
	text-align: center;
}
.mobile-mega-option img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 2px;
}
.mobile-mega-option .mo-option-name {
	display: block;
	font-size: 1em;
	color: var(--color-primary);
	font-weight: bold;
	margin-top: 0.5em;
}
.mobile-mega-option .mo-option-category {
	display: block;
	font-size: 0.85em;
	color: var(--color-gray);
}
@media (min-width: 1240px) {
	.mobile-mega {
		display: none !important;
	}
}

/* Helper classes */
.align-center {
	text-align: center;
}
.align-left {
	text-align: left;
}
.align-right {
	text-align: right;
}
.ir {
	background-color: transparent; border: 0; overflow: hidden; *text-indent: -9999px; }
.ir:before {
	content: ""; display: block; width: 0; height: 150%; }
.hidden {
	display: none !important; visibility: hidden; }
.visuallyhidden {
	border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
	clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible {
	visibility: hidden; }
.clearfix:before, .clearfix:after {
	content: " "; display: table; }
.clearfix:after {
	clear: both; }
.clearfix {
	*zoom: 1; }
input:hover {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/* MMenu */
.mm-opened .header {
	background: var(--color-white) !important;
}
.mm-opened .nav-logo-light {
	display: none;
}
.mm-opened .nav-logo-dark {
	display: block;
}
.mm-opened .menu-trigger {
	background: transparent url('../assets/images/close-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.mm-opened .search-trigger {
	background: transparent url('../assets/images/search-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.mm-opened .search-trigger.search-close {
	background: transparent url('../assets/images/close-icon-primary.png') top left no-repeat;
	background-size: 100% auto;
}
.mm-menu > .mm-panel.mm-opened {
	top: 70px;
	height: calc(100% - 70px);
}
.mm-list > li > a {
	text-transform: uppercase;
}
.mm-list > li > a.mm-selected {
	background: var(--color-primary);
	color: var(--color-white);
}
.mm-list > li.current-menu-item a {
	background: var(--color-primary);
	color: var(--color-white);
}

/* Search Page */
.search-page {
  padding: 40px 0;
}
.search-page__header {
  margin-bottom: 40px;
  text-align: center;
}
.search-page__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-darker, #1f1f1f);
  margin-bottom: 20px;
}
.search-page__form {
  max-width: 600px;
  margin: 0 auto;
}
.search-page__form .search-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-page__form .input-text,
.search-page__form input[type="search"],
.search-page__form input[type="text"] {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
.search-page__form .action.search,
.search-page__form input[type="submit"] {
  padding: 12px 24px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.search-page__form .action.search:hover,
.search-page__form input[type="submit"]:hover {
  background: var(--color-secondary);
  text-decoration: none;
}
.search-results {
  max-width: 800px;
  margin: 0 auto;
}
.search-results__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-primary-darker, #1f1f1f);
}
.search-results__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-results__item-wrapper {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.search-results__item-wrapper:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.search-result__item {
  /* Container for individual search result */
}
.search-result__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.search-result__link {
  color: var(--color-primary-darker, #1f1f1f);
  text-decoration: none;
}
.search-result__link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.search-result__snippet {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 12px;
}
.search-result__snippet p {
  margin: 0;
}
.search-result__info {
  font-size: 14px;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.search-result__type,
.search-result__date,
.search-result__author {
  display: inline-block;
}
.search-result__type {
  background: var(--color-primary);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.search-results__empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #666;
}
.search-results__empty p {
  margin-bottom: 10px;
}

/* Search Form Within Results */
.search-page__form .form-item {
  margin: 0;
}
.search-page__form label {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 0.4.10 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2014, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all{.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000001;text-align:center;white-space:nowrap;cursor:pointer;background:#666;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle;margin-right:-.25em}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding: 0;/*min-width:30%;margin-left:5%;margin-right:5%;max-height:95%;max-width: 800px;*/background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;font-size: 24px;line-height:50px;width:50px;cursor:pointer;text-align:center;background:#fff;background:rgba(255,255,255,.3);color:#000}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0}.featherlight iframe{border:0}}/*@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:10px;margin-right:10px;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}*/

#user-login-form {
	margin: 0 auto;
    max-width: 768px;
	padding: 3em 1em;
	text-align: center;
	background: #fff;
}
#user-login-form label {
	display: block;
	width: 100%;
	color: var(--color-primary);
}
#user-login-form input {
	display: block;
	width: 100%;
	font-size: 18px;
	font-weight: normal;
	padding: 0.5em;
	border: 1px solid #ccc;
	margin: 0.5em 0;
	text-align: left;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.15);
	-moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.15);
	box-shadow: inset 0px 1px 2px rgba(0,0,0,0.15);
}
#user-login-form input:focus {
	border: 1px solid #666;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
#user-login-form input#edit-submit {
	display: inline-block;
	width: auto;
	font-size: 18px;
	padding: 0.5em 1.5em;
	margin-left: 0.5em;
	text-align: center;
	border: 0;
	color: #fff;
	background: var(--color-primary);
	text-transform: uppercase;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
#user-login-form input#edit-submit:hover {
	background: var(--color-secondary);
  	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .search-page {
    padding: 60px 0;
  }
  
  .search-page__title {
    font-size: 36px;
  }
  
  .search-result__title {
    font-size: 22px;
  }
  
  .search-result__snippet {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  .search-page__title {
    font-size: 42px;
  }
  
  .search-result__title {
    font-size: 24px;
  }
}

/* WYSIWYG Content Block */
.wysiwyg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.wysiwyg::after {
  content: "";
  display: table;
  clear: both;
}
.wysiwyg img {
  max-width: 100%;
  height: auto;
}
.wysiwyg img.align-right,
.wysiwyg img.photo-align-right {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
  max-width: 50%;
}
.wysiwyg img.align-left,
.wysiwyg img.photo-align-left {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
  max-width: 50%;
}
.wysiwyg img.align-center {
  display: block;
  margin: 1.5rem auto;
}

/* Media alignment styles for WYSIWYG embedded media */
.drupal-media-style-align-right,
.media.align-right {
  float: right;
  margin-left: 1.5rem;
  clear: both;
  max-width: 50%;
}
.drupal-media-style-align-left,
.media.align-left {
  float: left;
  margin-right: 1.5rem;
  clear: both;
  max-width: 50%;
}
.drupal-media-style-align-center,
.media.align-center {
  max-width: 50%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}

/* Blog Detail Content (BDC) */
.bdc {
  padding: 2em;
}
.blog-detail .bdc {
  max-width: 1140px;
  margin: 0 auto;
}
.bdc-container {
  /*max-width: 900px;*/
  margin: 0 auto;
}
.bdc-container img.img-full {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.bdc-container img {
  max-width: 100%;
  /*width: 100%;
  height: auto;*/
}
.bdc-container img.img-full,
.bdc-container img.img-right,
.bdc-container img.img-left {
  padding: 0 0 2em;
}
.bdc-header h1 {
  color: var(--color-primary);
  margin: 0 0 0.5em;
  line-height: 1.2;
}
.post-meta {
  margin: 0 0 2em;
  padding: 1em 0;
  border-top: 1px solid var(--color-overlight);
  border-bottom: 1px solid var(--color-overlight);
}
.post-date {
  display: block;
  font-style: italic;
}
.post-categories {
  display: block;
}
.post-categories a {
  display: inline-block;
}
.bdc-body figcaption {
  color: var(--color-mediumgray);
  margin: -0.5em 0 2em;
  font-style: italic;
}
.bdc-body blockquote {
  background: var(--color-extra);
  padding: 1em 2em;
  font-size: 2em;
  margin: 1em 0;
  color: var(--color-primary);
  font-style: italic;
}
.bdc-container h2,.bdc-container h3,.bdc-container h4,.bdc-container h5,.bdc-container h6 {
  line-height: 1.2;
}
.bdc-container figure.align-left {
	float: right;
	margin: 1em 0 1em 1em;
}
.bdc-container figure figcaption {
	padding: 0.5em 0 0;
	text-align: center;
}
.bdc-container figure.align-right {
	float: left;
	text-align: center;
	margin: 1em 1em 1em 0;
} 
.paragraph--type--blog-category-filter .sm-nav {
	justify-content: center;
}
@media (min-width: 768px) {
  .bdc {
    padding: 2em 2em 6em;
  }
  .post-date {
    display: inline-block;
    border-right: 1px solid var(--color-overlight);
    margin-right: 1em;
    padding-right: 1em;
  }
  .post-categories {
    display: inline-block;
  }
  .post-categories a {
    display: inline-block;
    padding-right: 0.5em;
  }
  .bdc-container img.img-right {
    float: right;
    padding: 0.5em 0 2em 2em;
    max-width: 50%;
  }
  .bdc-container img.img-left {
    float: left;
    padding: 0.5em 2em 2em 0;
    max-width: 50%;
  }
  .bdc-body blockquote {
    margin: 1.5em 0;
  }
  .bdc-container h2 {
	font-size: 2.5em;
  }
  .bdc-container h3 {
	font-size: 2em;
  }
  .bdc-container h4 {
	font-size: 1.75em;
  }
  .bdc-container h5 {
	font-size: 1.5em;
  }
  .bdc-container h6 {
	font-size: 1.25em;
  }
}

/* ============================
   Blog Card Section (BCS)
   ============================ */
.bcs {
  padding: 2em;
}
.bcs-header {
  margin: 0 0 2em;
}
.bcs-card {
  margin: 0 0 1em;
  line-height: 0;
}
.bcs-card video,
.bcs-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.bcs-unboxed .bcs-card video,
.bcs-unboxed .bcs-card img {
  margin: 0 0 1em;
}
.bcs-box {
  padding: 1em;
  background: var(--color-lightgray);
  line-height: 1.3;
}
.bcs-box .post-date {
  display: block;
  color: var(--color-secondary);
  margin: 0 0 0.5em;
  padding: 0;
  border: 0;
}
.bcs-unboxed .bcs-box {
  padding: 1em 0 0;
  background: transparent;
}
.bcs-card h2,
.bcs-card h3,
.bcs-card h4,
.bcs-card h5,
.bcs-card h6 {
  font-size: 1.5em;
  line-height: 1.1;
  margin: 0 0 0.25em;
}
.bcs-card p {
  margin: 0 0 1em;
}
.bcs-cards-pagination {
  font-size: 1.1em;
  margin-top: 2em;
  text-align: center;
}
.bcs-cards-pagination a {
  display: inline-block;
  padding: 0.25em 0.5em;
  margin: 0 0.1em;
  background: var(--color-extra);
}
.bcs-cards-btn {
  margin-top: 2em;
  text-align: center;
}

.media--remote-video .media__video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
}
.media--remote-video .media__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .bcs {
    padding: 4em;
  }
  .bcs-cards {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
  }
  .bcs-card {
    flex: 1;
    min-width: 31.333%;
    max-width: 31.333%;
  }
  .bcs-box {
    padding: 1.5em 2em 2em;
  }
  .bcs-unboxed .bcs-box {
    padding: 1em 0 0;
  }
  .bcs-card h2,
  .bcs-card h3,
  .bcs-card h4,
  .bcs-card h5,
  .bcs-card h6 {
    font-size: 1.75em;
  }
  .bcs-cards-btn {
    margin-top: 4em;
  }
}

/* Print styles */

@media print {

}