

@font-face {
  font-family: 'Host Grotesk';
  src: url(hostgrotesk-medium.ttf), url(hostgrotesk-regular.ttf);
}

body {
  font-family: Host Grotesk, Arial;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;

  z-index: 1;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  padding: 0 48px 0 48px;

  height: 112px;

  transition: background-color 1s;
}

header nav {
  text-align: right;
}

header a {
  margin: 0 0 0 8px;
}

section.hero {
  margin: 124px 0px 0px 0px;
}

img {
  position: relative;
  width: 86px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

section.hero h2 {
  max-width: 640px;
}

section.content {
  margin: 48px 48px 48px 48px;
  max-width: 640px;
}

a {
  color: #000000;
  text-decoration: none;
}

hr {
  border: none;
}

li {
  font-weight: 600;
}

footer {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 0px 96px 48px;
  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer nav img {
  height:32px;
  margin-right:32px;
}



footer p {
  font-size: 12px;
  padding-bottom:8px
}

a.button {
  display: inline-block;
  background-color: black;
  color: white;
  text-decoration: none;
  padding: 10px 15px 10px 15px;
  border-radius: 3px;
  margin-top: 16px;
}


