:root{
  --black: #222;
  --white: #fff;
  --gray: #888;
  --body-font: "Raleway", sans-serif;
}

*, *::before, *::after{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
}

body{
  background-color: var(--black);
  font-family: var(--body-font);
  font-optical-sizing: auto;
  font-feature-settings: "lnum";
  color: var(--white);
}

@media (min-width: 1024px){
  body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
}

h2{
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* layout */

.layout{
  grid-template-columns: 50vw 50vw;
}

@media (min-width: 1024px){
  .layout{
    display: grid;
  }
}

@media (min-width: 1120px){
  .layout{
    grid-template-columns: 55vw 45vw;
  }
}

.container{
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.site-hero{
  position: fixed;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: 50;
  opacity: .3;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 1024px){
  .site-hero{
    position: static;
    width: auto;
    opacity: 1;
  }
}

.site-header{
  position: relative;
  z-index: 100;

  .container{
    padding-top: 4rem;
    padding-bottom: 1rem;
  }

  a{
    display: block;
    text-decoration: none;
    text-align: center;
  }
}

.site-content{
  position: relative;
  overflow: auto;
  z-index: 100;
}

@media (min-width: 1024px){
  .site-content{
    height: 100vh;
  }
}

.site-footer{
  position: relative;
  grid-area: foot;
  text-align: center;
  z-index: 100;

  .container{
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    padding: .5rem;
  }
}

/*forms*/

.grecaptcha-badge{
  display: none;
}

input[type=date]{
  max-width: 100%;
  margin-bottom: 20px;
  padding: 15px 40px 15px 15px;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-family: 'Noah', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1b1b1b;
  background-image: none;
  border: none;
  border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}

select{
  height: 55px;
}

.required label::after{
  content: ' (required)';
  color: var(--gray);
}

.form-control-group{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px){
  .form-control-group{
    flex-direction: row;
  }
}

.form-control{
  width: 100%;
  margin-bottom: 1.125rem;
}

.form-control *{
  font-family: var(--body-font);
  font-size: .8125rem;
  color: var(--white);
}

.form-control input, .form-control textarea{
  width: 100%;
  padding: .75rem;
  border: 1px solid #fff;
  border-radius: 4px;
  background: transparent;
}

.form-control label{
  display: block;
  margin-bottom: .25rem;
  font-size: .75rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.form-alert{
  margin-top: 16px;
}

.button{
  padding: .75rem 1.25rem;
  background-color: var(--white);
  border: 1px solid white;
  border-radius: 4px;
  font-size: .8125rem;
  font-family: var(--body-font);
  font-weight: 500;;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.button .spinner svg{
  width: 12px;
  height: 12px;
}

.boilerplate{
  font-size: .75rem;
  color: #888;

  a{
    color: #888;
  }
}

[aria-hidden=true]{
  display: none;
}

.alert{
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: .75rem;
}

.alert-success{
  background: #d1e7dd;
  border: 1px solid #a3cfbb;
  color: darkgreen;
}

.alert-error {
  background: #f8d7da;
  border: 1px solid #f1aeb5;
  color: darkred;
  border-radius: 0px;
}

/* homepage */

.home-section{
  margin: 6vh 0;
}

.contact-list{
  list-style: none;
  margin: 0;
  padding: .5rem 0 .5rem 1rem;
  border-left: 1px solid var(--white);

  li{
    margin-bottom: 1rem;
  }

  li:last-child{
    margin-bottom: 0;
  }

  a{
    color: var(--white);
    text-decoration: none;
  }
}

.contact{
  display: flex;
  align-items: center;
  gap: .5rem;
}