header .header-bottom {
	background-color: var(--off-white);
}
.header {
	display: grid;
	align-items: center;
	column-gap: 1.5rem;
}
.header.header__center {
	grid-template-columns: 1fr auto 1fr;
}
.header.header__left {
	grid-template-columns: auto 1fr;
}
header .header-logo,
header .header-logo a {
	line-height: 0;
}
.header .header-logo a {
	display: inline-block;
}
.header .header-menu nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 0;
	-webkit-box-shadow: 0px 20px 15px 5px rgb(0 43 73 / 10%);
	box-shadow: 0px 20px 15px 5px rgb(0 43 73 / 10%);
}
.header .header-menu .hs-menu-wrapper ul > li > a {
	display: inline-block;
	padding: 10px 0;
}
.header .header-menu .hs-menu-wrapper ul > li + li > a {
	margin-top: 6px;
}
.header .header-menu nav .hs-menu-wrapper > ul {
	display: flex;
	flex-direction: column;
	padding: 20px 30px;
}
.header .header-menu nav .hs-menu-wrapper > ul.topNavMenu {
	background-color: #fff;
	border-top: 1px solid #D0D3D4;
}
.header .header-menu .hs-menu-wrapper > ul > li.hs-item-has-children {
	position: relative;
}
.header .header-menu .hs-menu-wrapper > ul > li.hs-item-has-children > ul {
	display: none;
}
.header .header-menu nav .hs-menu-wrapper > ul.topNavMenu > li > a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 400;
	text-transform: none;
}
.header ul > li > a + .menu-indicator {
	background: none;
	border: none;
	padding: 12px;
	transition: all ease-in-out .3s;
	cursor: pointer;
}
.header ul > li > a[aria-expanded="true"] + .menu-indicator {
	transform: rotate(180deg);
}
.header .header-menu .hs-menu-wrapper > ul > li.hs-item-has-children > ul > li > a {
	font-size: 1rem;
	padding: 4px 24px;
}

{# Social Menu Styles #}
.header .header-menu .header-social {
	display: flex;
	align-items: center;
	padding: 1.5rem 0 1rem;
}
.header .header-menu .header-social .header-social__link > a {
	display: grid;
	place-content: center;
}
.header .header-menu .header-social.social__left .header-social__link > a > img {
	margin-right: 10px;
}
.header .header-menu .header-social.social__right .header-social__link > a > img {
	margin-left: 10px;
}


{# Hamburger Menu Styles #}
.hamburger{
	width: 30px;
	height: 18px;
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	align-content: space-between;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	margin: 0 0 0 auto;
}
.hamburger-slice{
	width: 100%;
	height: 2px;
}
.hamburger .top-anim{
	animation: top-k 0.2s;
	animation-fill-mode: forwards;
}
.hamburger .top-anim-r{
	animation: top-k-r 0.2s;
	animation-fill-mode: forwards;
}
.hamburger .mid-anim{
	animation: mid-k 0.2s;
	animation-fill-mode: forwards;
}
.hamburger .mid-anim-r{
	animation: mid-k-r 0.2s;
	animation-fill-mode: forwards;
}
.hamburger .bot-anim{
	animation: bot-k 0.2s;
	animation-fill-mode: forwards;
}
.hamburger .bot-anim-r{
	animation: bot-k-r 0.2s;
	animation-fill-mode: forwards;
}
.hamburger .bot{
	margin-bottom: -3px;
}
@keyframes top-k{
	from{
		transform:rotate(0deg) translate(0,0);
	}
	to{
		transform:rotate(45deg) translate(6px,6px);
	}
}
@keyframes top-k-r{
	from{
		transform:rotate(45deg) translate(12px,12px);
	}
	to{
		transform:rotate(0deg) translate(0,0);
	}
}
@keyframes mid-k{
	from{opacity:1;}
	to{opacity:0;}
}
@keyframes mid-k-r{
	from{opacity:0;}
	to{opacity:1;}
}
@keyframes bot-k{
	from{
		transform:rotate(0deg) translate(0,0);
	}
	to{
		transform:rotate(-45deg) translate(7px,-7px);
	}
}
@keyframes bot-k-r{
	from{
		transform:rotate(-45deg) translate(12px,-12px);
	}
	to{
		transform:rotate(0deg) translate(0,0);
	}
}


