.header {
	display: grid;
	align-items: center;
	column-gap: 1.5rem;
}
.header .container > div {
	width: 100%;
}
.header .header-bottom {
	background: #fff;
	transition: all ease-in-out .3s;
}
.header.header__center {
	grid-template-columns: 1fr auto 1fr;
}
.header.header__left {
	grid-template-columns: auto 1fr;
	padding: 20px 0;
	transition: all ease-in-out .3s;
}
.header .header-logo a {
	display: grid;
	place-content: center;
}
.header .header-logo a img {
	transition: all ease-in-out .3s;
}
.header .header-menu nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 20px;
}
.header .header-menu .hs-menu-wrapper ul > li > a {
	padding: 10px 0;
}
.header .header-menu nav .hs-menu-wrapper > ul {
	display: flex;
	flex-direction: column;
}
.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 > a:after {
	display: none;
}
.header .header-menu .hs-menu-wrapper > ul > li.hs-item-has-children > ul {
	display: none;
	padding-bottom: 10px;
}
.header ul > li > a + .menu-indicator {
	display: inline-block;
	position: relative;
	top: 0;
	background: none;
	border: none;
	padding: 12px;
	transform: rotate(-90deg);
	transition: all ease-in-out .3s;
	cursor: pointer;
}
.header ul > li > a[aria-expanded="true"] + .menu-indicator {
	transform: rotate(0deg);
}
.header .header-menu .hs-menu-wrapper > ul > li.hs-item-has-children > ul > li > a {
	font-size: 1rem;
	padding: 6px 24px!important;
}

{# 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: 40px;
	height: 28px;
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	align-content: space-between;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	margin: 0 0 6px auto;
	transform: scale(.75);
}
.hamburger-slice{
	width: 100%;
	height: 2px;
	border-radius: 10px;
}
.hamburger .top{
	margin-top: 4px;
}
.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(10px,10px);
	}
}
@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(8px,-8px);
	}
}
@keyframes bot-k-r{
	from{
		transform:rotate(-45deg) translate(12px,-12px);
	}
	to{
		transform:rotate(0deg) translate(0,0);
	}
}


