#menu-builder-header-secondary
{
	position: absolute;
    z-index: 10;
    right: 140px;
    top: 55px;
	display: flex;
	justify-content: flex-end;
}

@media screen and (max-width:992px)
{
	#menu-builder-header-secondary
	{
		display: none;
	}
}

#menu-builder-header-secondary a:link,
#menu-builder-header-secondary a:active,
#menu-builder-header-secondary a:visited
{
	position: relative;
	display: flex;
	align-items: center;
	font-family: baskerville_old_face;
	font-size: 16pt;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s;
	text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black, 0 0 2px black;
}

#menu-builder-header-secondary a.dark:link,
#menu-builder-header-secondary a.dark:active,
#menu-builder-header-secondary a.dark:visited
{
	color: #000000;
	text-shadow: 0 0 2px #ffffff, 0 0 2px #ffffff, 0 0 2px #ffffff, 0 0 2px #ffffff;
}

#menu-builder-header-secondary a::before,
#menu-builder-header-secondary a::after
{
	content: '';
    position: absolute;
	width: 0;
    height: 0;
    transition:	transform 200ms,
    			width 200ms,
    			height 200ms;
}

#menu-builder-header-secondary a::before
{
	border: 5px solid transparent;
    border-bottom-color: #a4802e;
    position: relative;
    top: -5px;
    left: -10px;
}

#menu-builder-header-secondary a::after
{
	left: -10px;
	top: 15px;
	border: 5px solid transparent;
	border-top-color: #a4802e;
	background-color: transparent;
}

#menu-builder-header-secondary a:hover::before
{
	transform: 	rotate(90deg)
				translateY(-5px)
				translateX(5px);
}

#menu-builder-header-secondary a:hover::after
{
	transform:	translateX(-20px);
	width: 25px;
	height: 1px;
	background-color: #a4802e;
	border: none;
}

#menu-builder-header-secondary a:hover
{
	
}

#menu-builder-header-secondary a img
{
	padding-right: 3px;
}