body {
    margin: 0;
    font-size: 16px;
    background-color: #666;
}
#header {
    background-image: url('/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 256px;
    position: relative;
    overflow: hidden;
}
.dot-bg {
    background-image: url('/grid.svg');
    min-height: 100vh;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 2rem;
    bottom: 0;
    height: 100%;
    z-index: 1;
}
.header-grid {
	min-height: 100vh;
	padding-bottom: 4rem;
}
.logo-wrapper {
    background-color: #FFE200;
    padding: 1.25rem;
    margin-left: 2.5rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 2;
}
.logo-wrapper svg {
    display: block;
}
.lp-logo {
	width: 275px;
	height: 181px;
}
.bs-logo {
	width: 275px;
	height: 42px;
}

#content {
    background-color: #ffffff;
    padding: 1.25rem;
    padding-left: 5rem;
    margin-left: -1.25rem;
    position: relative;
    z-index: 2;
}
.mobile-footer {
    background-color: #FFE200;
	height: 2rem;
    margin-left: 2.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -2px;
}
p {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
	line-height: 1.5;
}
.intro {
    font-weight: bold;
}

.link-hover {
	color: #000;
}

.link-hover:hover {
	color: rgba(240,83,41,.95);
}

.skip-to-main-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: black;
  color: white;
  opacity: 0;
}
.skip-to-main-content-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

@media (min-width: 1200px) {
    #header {
        min-height: 100%;
        overflow: hidden;
        position: relative;
    }
    .header-grid {
        display: grid;
        grid-template-columns: 1fr 3fr;
        align-items: center;
		padding-bottom: 0;
    }
    .logo-wrapper {
        height: 100%;
        margin-left: 2rem;
        padding: 0;
        padding-top: 20rem;
    }
    .logo-wrapper svg {
		width: 20vw;
        margin: 0 auto;
		padding: 0 1rem;
    }
	.lp-logo {
		height: auto;
	}
	.bs-logo {
		height: auto;
	}
    #content {
        padding: 2rem 2rem 0;
        margin: 3rem 3rem 2rem 0;
    }
	.mobile-footer {
		display: none;
	}
    h1 {
        margin-top: 0;
        font-size: 3vw;
    }
    p {
        font-size: clamp( 1rem, 1.1vw, 1.375rem);
        margin-bottom: 1.5rem;
    }
    .intro {
        font-size: clamp( 1rem, 1.1vw, 1.375rem);;
    }
    
}


@media (min-width: 1600px) {
    #header {
        min-height: 100%;
        overflow: hidden;
        position: relative;
    }
    .header-grid {
        display: grid;
        grid-template-columns: 1.25fr 3fr;
        align-items: center;
    }
    .logo-wrapper {
        height: 100%;
        margin-left: 4rem;
        padding: 0;
        padding-top: 30rem;
    }
    .logo-wrapper svg {
		width: 20vw;
        margin: 0 auto;
		padding: 0 1rem;
    }
	.lp-logo {
		height: auto;
	}
	.bs-logo {
		height: auto;
	}
    #content {
        padding: 3rem 4rem;
        margin: 8rem 8rem 8rem 0;
    }
    h1 {
        margin-top: 0;
        font-size: 3vw;
    }
    p {
        font-size: clamp( 1rem, 1.1vw, 1.375rem);;
        margin-bottom: 1.5rem;
    }
    .intro {
        font-size: clamp( 1rem, 1.1vw, 1.375rem);;
    }
    
}