/* Main Navigation
--------------------------------------------- */
.toggle-menu {
    display: none;
    align-self: center;
}
.hamburger {
    display: block;
    float: right;
    width: 50px;
    height: 32px;
    position: relative;
    margin: 1px auto 0;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100000;
  }
  .hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    display: block;
    position: relative;
    background-color: #12243a;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .hamburger.open span {
    background: var(--alt-bg);
  }
  .hamburger span:nth-of-type(1) {
    top: 0;
    -moz-transition: top 0.3s ease 0.3s, -moz-transform 0.3s ease-out 0.1s;
    -o-transition: top 0.3s ease 0.3s, -o-transform 0.3s ease-out 0.1s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.3s, 0.1s;
    transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
    -moz-animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    -webkit-animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
  }
  .hamburger span:nth-of-type(2) {
    top: 10px;
    -moz-transition: ease 0.3s 0.3s;
    -o-transition: ease 0.3s 0.3s;
    -webkit-transition: ease 0.3s;
    -webkit-transition-delay: 0.3s;
    transition: ease 0.3s 0.3s;
    -moz-animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    -webkit-animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
  }
  .hamburger span:nth-of-type(3) {
    top: 20px;
    -moz-transition: top 0.3s ease 0.3s, -moz-transform 0.3s ease-out 0.1s;
    -o-transition: top 0.3s ease 0.3s, -o-transform 0.3s ease-out 0.1s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.3s, 0.1s;
    transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
    -moz-animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    -webkit-animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    animation: all 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
  }
  .hamburger.open span:nth-of-type(1) {
    top: 13px;
    -moz-transition: top 0.3s ease 0.1s, -moz-transform 0.3s ease-out 0.5s;
    -o-transition: top 0.3s ease 0.1s, -o-transform 0.3s ease-out 0.5s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.1s, 0.5s;
    transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
  }
  .hamburger.open span:nth-of-type(2) {
    opacity: 1;
  }
  .hamburger.open span:nth-of-type(3) {
    top: 7px;
    -moz-transition: top 0.3s ease 0.1s, -moz-transform 0.3s ease-out 0.5s;
    -o-transition: top 0.3s ease 0.1s, -o-transform 0.3s ease-out 0.5s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.1s, 0.5s;
    transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
  }

#site-navigation {
	display: block;
	width: 100%;
    justify-self: right;
    align-self: center;
}
#primary-menu{
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
    display: flex;
    align-items: center;
}

#primary-menu ul:not(.main-nav-social){
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}
#primary-menu ul.main-nav-social{
	position: relative;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row;
  gap: 6px;
}
#primary-menu ul.main-nav-social li{
	
}
#primary-menu ul.main-nav-social li a{
	width: initial;
}
#primary-menu ul.main-nav-social li a svg{
  transition: all 0.1s linear;
}
#primary-menu ul.main-nav-social li a:hover svg,
#primary-menu ul.main-nav-social li a:focus svg{
  fill: var(--alt-bg);
}
#primary-menu ul ul {
	left: -999em;
	top: 0;
}

#primary-menu ul li:hover > ul,
#primary-menu ul li.focus > ul {
	display: block;
	left: auto;
}

#primary-menu ul a {
	width: 200px;
}

#primary-menu li:hover > ul,
#primary-menu li.focus > ul {
	left: auto;
}

#primary-menu li {
	position: relative;
}
#primary-menu > li {
	margin: 0 12px;
}
#primary-menu > li:first-of-type{
	margin: 0 12px 0 0;
}
#primary-menu > li:last-of-type{
	margin: 0 0 0 12px;
}

#primary-menu a {
	display: block;
	text-decoration: none;
  color: #060B23;
  font-family: var(--first-font);
  font-size: 22px;
  font-weight: var(--ff-regular);
  font-style: normal;
  text-transform: uppercase;
  transition-duration: 0.2s;
  transition-property: all;
}
#primary-menu a:hover,
#primary-menu a:focus{
	color: var(--alt-bg);
}
#site-navigation .menu-primary-container #primary-menu span.mjlf-menu-icon{
    display: none;
}
#primary-menu > li.contact a{
  position: relative;
  overflow: hidden;
  padding: 0 30px;
  background: var(--btn-color);
  border: 1px solid var(--btn-color);
  border-radius: 6px;
  /* font-size: 40px;
  line-height: 1; */
  /* font-weight: var(--ff-bold); */
  color: var(--light-text);
  text-transform: initial;
  font-family: var(--first-font);
  font-weight: var(--ff-bold);
  font-size: 24px;
  line-height: 58px;
}
/* ---------------------------- */
#primary-menu > li.contact a{
  font-size: 38px;
  line-height: 56px;
}
/* ---------------------------- */
#primary-menu > li.contact a:after{
	position:absolute;
	top:0;
	left:-75%;
	z-index:2;
	display:block;
	content:'';
	width:50%;
	height:100%;
	background:-webkit-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
	background:linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
	-webkit-transform:skewX(-25deg);
	transform:skewX(-25deg);
}
#primary-menu > li.contact a:hover:after,
#primary-menu > li.contact a:focus:after{
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
