/* CSS Document */

/*	--		Header		--	*/

body > header
{	padding:.5rem 1rem;
}

body > header .logo{
	height:50px;
	max-width: 50%;
}
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #2b6cff;
  outline-offset: 2px;
}
body > header #hamburger{
	background-image: linear-gradient(transparent 0, transparent 15%, var(--col1) 15%, var(--col1) 29%, transparent 29%, transparent 43%, var(--col1) 43%, var(--col1) 57%, transparent 57%, transparent 71%, var(--col1) 71%, var(--col1) 85%, transparent 85%, transparent 100%);
    height: 50px;
    width: 50px;
	position:absolute;
	top: .5rem;
    right: 1rem;
	cursor: pointer;
	border:none;
}

body > header nav{
	display:none;
	flex-direction: column;
	gap: 1rem;
    padding: 1rem 0;
}

@media (orientation: landscape){
	
	body > header
	{	padding:2rem;
	}
	
	body > header nav
	{	flex-direction: row;
	}
	body > header #hamburger
	{	display:none;
	}
	section div
	{	justify-content: center;
	}
	section {
        gap: 3rem;
    }
}

/*	--		Header		--	*/
	
	body > header
	{	min-height: 120px;
		max-height:100px;
		display:flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 5vw;
	}
	body > header nav
	{
		justify-content: space-evenly;
		display:flex;
		width:60%;
		align-items: center;
		justify-items: space-between;
	}
	
	body > header nav a
	{
		font-size:.75rem;
		text-decoration: none;
		color:var(--col1);
		padding:1rem 0;
	}
	
	body > header .logo
	{
		max-height: 50px;
		mix-blend-mode: normal;
	}
	
	body > header button
	{
		padding:.6rem 1.2rem;
		border: 1px solid var(--col1);
		background:transparent;
		color:var(--col1);
	}



.footer ul li
{	margin-left: 0rem;
}


section.footer ul
{
    list-style: none;
    margin: 0;
	margin-top:1.5rem;
}

.blueBG img
{
    mix-blend-mode: normal;
}

section.footer div
{
	align-content: start;
}

section.footer input
{
	padding:.5rem;
}

section.footer *
{
	color: white;
}

section.footer
{	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 0;
}

section.blueBG {
    background: black;
    color: white;
    min-height: 0;
}

section.padded {
    padding: 10vh 5vw;
}

section.footer div {
    align-content: start;
    width: auto;
}

.legal {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 2rem;
    width: 100vw;
    background: var(--col1);
    grid-column: 1 / -1;
    color: white;
    justify-content: center;
    padding: 0 5vw;
}
a{	text-decoration: none;
 /* min-height: 48px; */
	min-width: max-content;
    display: inline-block;
}
a:not(.nontext)::before
{	content: "»";
    font-size: 0.62em;
    vertical-align: text-bottom;
    padding-right: 0.5ch;
	margin-left: -.5ch;
}