:root {
	--fhch-green 	: #49DBB1;
	--fhch-red 		: #EF3340;
	--fhch-dblue	: #001A72;
}

/* -- BRANDING -- */
.--fhchbg-red {
	background: var(--fhch-red);
	color: #fff;
}

.--fhchbg-green {
	background: var(--fhch-green);
	color: #fff;
}

.--fhchbg-dblue {
	background: var(--fhch-dblue);
	color: #fff;
}

.--fhchcolor-red {
	color: var(--fhch-red);
}

.--fhchcolor-green {
	color: var(--fhch-green);
}

.--fhchcolor-dblue {
	color: var(--fhch-dblue);
}

.btn.--fhch-red {
	background: var(--fhch-red);
	color: #fff;
}

.btn.--fhch-green {
	background: var(--fhch-green);
	color: #fff;
}

.btn.--fhch-dblue {
	background: var(--fhch-dblue);
	color: #fff;
}

.ww_header-btn {
	font-weight: bold;
}

#page {
	padding-top: 80px;
}

header.site-header {
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
}

header.site-header .site-header_container {
	display: flex;
	width: 100%;
	margin: 0;
}

header.site-header .site-branding {
	width: auto;
	float: none;
	padding: 0;
}

header.site-header .tools {
	width: auto;
	flex: 1;
	float: none;
	margin: 0;
	display: flex;
	padding: 0;
    max-width: 100%;
    align-items: center;
}

header.site-header .site-branding img {
	height: 80px;
	max-height: none;
}

header.site-header .btn-list {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

header.site-header .btn-list .btn {
	padding: 8px 10px;
	min-width: 100px;
}

header.site-header .btn-list ul {
	display: flex;
	flex-direction: row;
}

header.site-header .btn-list li {
	display: inline-block;
	margin: 0 0 0 15px;
}

header.site-header .menu-toggle {
	color: var(--fhch-dblue);
	padding: 0;
}

header.site-header .menu-toggle:after {
	display: none;
}

.mobile-bar {
	display: none;
}

#header-nav-btn {	
	position: relative;
	width: 34px;
	height: 34px;
	padding: 0;
	cursor: pointer;
	border: 0;
	margin: 0 0 0 20px;
	background: transparent;
}

#header-nav-btn span {
	margin: 0 auto;
	position: relative;
	width: 100%;
	height: 2px;
	background-color: var(--fhch-dblue);
	display: block;
	transition-duration: 0s;
	transition-delay: 0.2s;
}

#header-nav-btn span:before,
#header-nav-btn span:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--fhch-dblue);
	display: block;
}

#header-nav-btn span:before {
	margin-top: -9px;
	transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s;
}

#header-nav-btn span:after {
	margin-top: 9px;
	transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s;
}

#header-nav-btn:active,
#header-nav-btn:focus {
	outline: 0;
	border: 0;
}

#header-nav-btn.--active span {
	background-color: rgba(0,0,0,0.0);
}

#header-nav-btn.--active span:before,
#header-nav-btn.--active span:after {
	background-color: var(--fhch-dblue);
}

#header-nav-btn.--active span:before {
	margin-top: 0;
	transform: rotate(45deg);
	transition-delay: 0s, 0.2s;
}

#header-nav-btn.--active span:after {
	margin-top: 0;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.2s;
}

#navbar{
	background-color: var(--fhch-dblue);
	min-height: calc(100vh - 80px);
}

#site-mask {
	display: none;
	background: rgba(255, 255, 255, .5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vw;
	z-index: 999;
}

#site-mask.--active {
	display: block;
}

.navbar ul.menu>.menu-item, 
.navbar ul.menu>.page_item {
	border: 0;
}

.navbar ul.menu>.menu-item a, .navbar ul.menu>.navbar__more a, .navbar ul.menu>.page_item a {
	font-size: 16px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.navbar__search {
	background-color: var(--fhch-dblue);
	margin: 0;
	display: block;
}

.navbar ul.menu {
	background-color: var(--fhch-dblue);
}

.navbar__search {
	padding: 20px;
	position: relative;
}

.navbar__search input[type=text] {
	float: none;
	width: 100%;
	padding-right: 40px;
}

.navbar__search input[type=submit] {
	position: absolute;
	right: 35px;
	top: 50%;
	margin-top: -11px;
	background: transparent;
	text-indent: -9999px;
	background: url(../../images/svg/icon-search.svg) no-repeat center / contain;
	width: 22px;
	height: 22px;
	padding: 0;
}

.navbar__search input {
	margin: 0;
}

.navbar__buttons {
	margin: 0;
	padding: 0;
	list-style: none;
}

.navbar__buttons li {
	margin: 0;
}

.navbar__buttons li .btn {
	width: 100%;
	border-radius: 0;
	text-align: left;
	margin: 0;
	background-image: url(../../images/svg/chevron-right.svg);
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 10px auto;
	padding-right: 50px;
}

.navbar .navbar-collapse {
	flex-direction: column;
	justify-content: space-between;
}

.navbar.--open .navbar-collapse {
	display: flex !important;
}

header.site-header .site-header__search-form input[type=search] {
	border-color: var(--fhch-dblue);
}

header.site-header .site-header__search-form input[type=search]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  	color: var(--fhch-dblue);
}
header.site-header .site-header__search-form input[type=search]::-moz-placeholder { /* Firefox 19+ */
  	color: var(--fhch-dblue);
}
header.site-header .site-header__search-form input[type=search]:-ms-input-placeholder { /* IE 10+ */
  	color: var(--fhch-dblue);
}
header.site-header .site-header__search-form input[type=search]:-moz-placeholder { /* Firefox 18- */
  	color: var(--fhch-dblue);
}

header.site-header .site-header__search-form svg path {
	fill: var(--fhch-dblue);
}

header.site-header .tools #navbar {
	display: none !important;
	background: none;
	width: 100%;
} 

header.site-header .tools #navbar #primary-menu {
	display: flex;
	width: 100%;
	flex-direction: row;
	margin: 1.2rem 0 0;
	padding: 0;
	justify-content: flex-end;
}

header.site-header .tools #navbar .menu-item {
	display: block !important;
	margin-left: 30px;
}

header.site-header .tools #navbar .menu-item a {
	color: var(--fhch-dblue);
	font-weight: 700;
}

header.site-header .tools #navbar .menu-item:hover > .sub-menu {
	display: flex !important;
	background: var(--fhch-dblue);
}

.navbar ul.menu .children, 
.navbar ul.menu .sub-menu {
	background: #34488f;
	padding: 0;
}

.navbar ul.menu .children li a, 
.navbar ul.menu .sub-menu li a {
	color: #fff;
	font-weight: bold;
}

@media(max-width: 991px) {
	.navbar ul.menu>.menu-item-has-children.open>a, 
	.navbar ul.menu>.page_item_has_children.open>a {
		background-image: url(../../images/svg/chevron-down.svg) !important;
	}

	.navbar ul.menu>.menu-item-has-children>a, 
	.navbar ul.menu>.page_item_has_children>a {
		background-image: url(../../images/svg/chevron-right.svg) !important;
	}

}

header.site-header .tools #navbar .menu-item .sub-menu {
	display: none !important;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--fhch-dblue);
	width: 100vw;
	padding: 15px calc(calc(calc(100% - 75rem) / 2) + 0.9375rem);
	flex-wrap: wrap;
}

header.site-header .tools #navbar .menu-item .sub-menu li {
	width: 25%;
	text-align: left;
	margin: 10px 0;
}

header.site-header .tools #navbar .menu-item .sub-menu a {
	color: #fff;
	font-weight: 500;
	font-size: 16px;
}

.ww_header-btn-desktop {
	display: none;
}

@media(min-width: 992px) and (max-width: 1220px) {
	header.site-header .tools #navbar .menu-item:hover > .sub-menu {
		padding: 15px 5vw;
	}

	header.site-header .tools #navbar .menu-item {
		margin-left: 20px;
		font-size: 16px;
	}
}

@media(min-width: 992px) {
	header.site-header .tools {
		position: static;
		align-self: flex-end;
	}

	header.site-header .tools #navbar {
		display: block !important;
		position: static;
	}

	#header-nav-btn,
	.navbar__bottom {
		display: none;
	}

	#page > #site-navigation {
		display: none;
	}

	header.site-header .site-branding img {
		height: auto;
		width: 150px;
	}

	header.site-header .btn-list {
		width: auto;
	}

	header.site-header .btn-list .btn {
		padding: 10px 40px;
	}

	header.site-header .tools #navbar #primary-menu > .menu-item {
		padding-bottom: 20px;
	}

	header.site-header .tools #navbar #primary-menu > .menu-item.menu-item-has-children a {
		background: url(../../images/svg/chevron-down-dblue.svg) no-repeat right center / 12px auto;
		padding-right: 19px;
	}

	#navbar {
		min-height: 0;
		background: transparent;
	}

	header.site-header .tools {
		justify-content: flex-end;
		align-items: center;
		flex-wrap: wrap;
	}

	.site-header__search-form form {
		margin: 0;
	}

	.ww_header-btn-mobile {
		display: none;
	}

	.ww_header-btn-desktop {
		display: block;
	}
}

/* == HOME HERO 2025 == */
.home-hero-2025 {
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
}

.home-hero-2025__top {
	flex: 1;
	position: relative;
	display: flex;
}

.home-hero-2025__image {
	width: 100%;

	img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}

}

.home-hero-2025__image-desktop {
	display: none;
}

.home-hero-2025__image-mobile {
	display: block;
}

.home-hero-2025__top-content {
	position: absolute;
	bottom: 23px;
	left: 0;
	display: flex;
	align-items: center;
	z-index: 2;
	width: 100%;
}

.home-hero-2025__top-content .container-fluid {
	width: 100%;
}

.home-hero-2025__heading {
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 900;
}

.home-hero-2025__heading span {
	display: inline-block;
	padding: 10px 12px;
	line-height: 1;
}

.home-hero-2025__bottom {
	background: var(--fhch-dblue);
	color: #fff;
	padding: 30px 0;
	font-weight: 300;
}

.home-hero-2025__bottom h2 {
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
}

.home-hero-2025__bottom-copy > *:first-child {
	padding-top: 0;
	margin-top: 0;
}

.home-hero-2025__bottom-copy > *:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.home-hero-2025__bottom-copy .btn {
	width: 100%;
	margin: 0;
}

@media(min-width: 992px) {
	#page {
		padding-top: 124px;
	}

	.home-hero-2025 {
		height: calc(100vh - 124px);
		min-height: 750px;
	}

	.home-hero-2025__image-desktop {
		display: block;
	}

	.home-hero-2025__image-mobile {
		display: none;
	}

	.home-hero-2025__top {
		height: 450px;
	}

	.home-hero-2025__top-content  {
		height: 100%;
		top: 0;
		bottom: auto;
		align-items: center;
	}

	.home-hero-2025__heading {
		font-size: 58px;
	}

	.home-hero-2025__bottom-copy {
		padding-right: 350px;
		position: relative;
		font-size: 20px;
	}

	.home-hero-2025__bottom-copy .btn {
		width: 235px;
		position: absolute;
		right: 0;
		top: 0;
	}

	.home-hero-2025__bottom h2 {
		font-size: 28px;
	}

	.home-hero-2025__bottom {
		padding: 50px 0;
	}
}


/* == HERO 2025 == */
.hero-2025 {
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
}

.hero-2025__top {
	flex: 1;
	position: relative;
}

.hero-2025__image {
	width: 100%;
	height: 100%;

	img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}

}

.hero-2025__image-desktop {
	display: none;
}

.hero-2025__image-mobile {
	display: block;
}

.hero-2025__top-content {
	position: absolute;
	bottom: 23px;
	left: 0;
	display: flex;
	align-items: center;
	z-index: 2;
	width: 100%;
}

.hero-2025__top-content .container-fluid {
	width: 100%;
}

.hero-2025__heading {
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	font-weight: 900;
	margin-top: 0;
	padding-top: 0;
}

.hero-2025__bottom {
	padding: 30px 0.9375rem;
	font-weight: 300;
}

.hero-2025__bottom-copy > *:first-child {
	padding-top: 0;
	margin-top: 0;
}

.hero-2025__bottom-copy > *:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.hero-2025__bottom-copy .btn {
	width: 100%;
	margin: 0;
}

@media(min-width: 992px) {

	.hero-2025 {
		height: auto;
		min-height: 675px;
		display: flex;
		flex-direction: row;
	}

	.hero-2025__image-desktop {
		display: block;
	}

	.hero-2025__image-mobile {
		display: none;
	}

	.hero-2025__top-content  {
		height: 100%;
		top: 0;
		bottom: auto;
		align-items: center;
	}

	.hero-2025__heading {
		font-size: 80px;
	}

	.hero-2025__heading span {
		display: block;
	}

	.hero-2025__bottom {
		width: 430px;
		box-sizing: content-box;
		padding: 30px calc(calc(calc(100% - 75rem) / 2) + 0.9375rem) 30px 30px;
		align-self: center;
	}

	.hero-2025__bottom .btn {
		width: 100%;
	}

	.hero-2025.--imagealign-right .hero-2025__bottom {
		padding-right: 30px;
		padding-left: calc(calc(calc(100% - 75rem) / 2) + 0.9375rem);
		order: 1;
	}

	.hero-2025.--imagealign-right .hero-2025__top {
		order: 2;
	}

	.hero-2025__bottom-copy {
		font-size: 20px;
		padding-right: 20px;
	}
}
