:root {
  --black: black;
  --white: white;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

a {
  text-decoration: underline;
}

.container {
  height: 100px;
}

.body {
  height: 100vh;
  background-color: var(--black);
}

.section {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section:hover {
  opacity: 1;
}

.heading {
  width: auto;
  color: var(--white);
  text-align: center;
  letter-spacing: 0;
  flex-flow: column;
  flex: 0 auto;
  order: -1;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: .7em;
  margin-left: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 2.7vw;
  font-weight: 100;
  line-height: 1.2em;
  text-decoration: none;
  display: flex;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.center-block {
  width: 80vw;
  margin-left: 0;
}

.top {
  z-index: 1000;
  width: 100vw;
  height: 5rem;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.link-block {
  border-bottom: 1px solid var(--white);
  padding-bottom: 5px;
  font-family: Maisonneue;
  font-weight: 100;
  text-decoration: none;
}

.link {
  width: auto;
  border-bottom: 1px solid var(--white);
  opacity: 1;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: .3em;
  padding-bottom: 5px;
  font-size: 2.7vw;
  line-height: 1.2em;
  transition: opacity .3s;
  display: flex;
}

.link:hover {
  border-bottom-color: var(--white);
  opacity: .5;
  color: var(--white);
}

.linkblock:hover {
  border: 1px rgba(0, 0, 0, .91);
  border-bottom-color: rgba(255, 255, 255, .5);
}

.link-block {
  border-style: none;
  border-width: 0 0 1px;
  border-color: black black var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0;
  display: flex;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.heading-2 {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2em;
}

.support-text {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
}

.div-block {
  z-index: 100;
  width: 100vw;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.link-block-2 {
  text-align: center;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: block;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-block {
  z-index: 100;
  text-align: center;
  white-space: normal;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

@media screen and (max-width: 991px) {
  .heading {
    font-size: 2rem;
  }

  .center-block {
    width: 85vw;
  }

  .link {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .section {
    height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .heading {
    font-size: 1.5rem;
  }

  .center-block {
    width: 90vw;
  }

  .link {
    font-size: 1.5rem;
  }
}


