@import url('./common.css');
@import url('./icons.css');
@import url('./form.css');

/* header */

div.site-header {
  z-index: 1;
  position: sticky;
  top: 0;
  padding: 8px 10px;
}

header {
  padding: 6px;
  width: 100%;
  border-radius: 100px;
  background-color: #ffffff;
  box-shadow: 0 0 2px 2px #0000001a;
}

header a {
  margin: 0 20px;
  color: #1c1c1c;
}

header nav div:first-child {
  padding: 0 8px;
}

header nav div {
  padding: 2px 0;
}

header a.get-docus {
  border-radius: 16px;
  margin: 0 4px;
  padding: 6px 12px;
  display: inline-block;
  text-align: center;
  font-size: 10px;
  color: #ffffff;
}

header a.get-docus {
  background-color: #1271cd;
}


/* hero */

div.hero {
  position: relative;
  width: 100%;
  background-size: contain;
  background-position: 85%;
}

div.hero div.hero-heading {
  position: absolute;
  top: 40%;
  width: 50%;
  margin: auto 50px;
}

div.hero h1.heading {
  font-weight: bold;
  font-size: 56px;
}

div.hero div.hero-heading a {
  border-radius: 16px;
  margin: 12px 0;
  padding: 10px 46px;
  display: inline-block;
  text-align: center;
  font-size: 10px;
  color: #ffffff;
  background-color: #1271cd;
}

span.high-light {
	background-color: #e5e9ec;
}

/* sections */

section:first-child {
  padding-top: 80px;
}

section {
  padding: 12px 9px;
  width: 100%;
  height: 100vh;
}


/* about us  */

div.about h1 {
  font-size: 28px;
  margin: 0;
}

div.about p {
  width: 400px;
}


/* faq */

div.header {
  padding: 2px 12px;
}

div.faq {
  margin: 20px auto;
  padding: 0 10px;
  max-width: 600px;
}

div.faq h1 {
  font-size: 22px;
}

div.faq>div {
  margin: 24px 0;
}

div.question {
  font-weight: bold;
}

div.question,
div.answer {
  border-radius: 4px;
  padding: 8px 12px;
  margin: 8px 0;
  font-size: 11px;
  background-color: hsl(0, 0%, 95%);
  box-shadow: 0 0 2px 2px #0000001a;
}


/* footer */

footer {
  padding: 80px 40px 60px;
  box-shadow: 0 0 2px 2px #0000001a;
}

footer img {
  width: 60px;
}

footer div.credit {
  margin: 8px 0;
}

footer div.credit h2,
footer div.credit p {
  margin: 2px 0;
}

footer div.credit h2 {
  font-size: 14px;
}

footer div.credit p {
  font-size: 11px;
}

footer div.credit>div {
  margin: 0 12px;
}

footer div.links a {
  margin: 4px 8px;
  color: #1c1c1c;
}

footer p.copyright {
  font-size: 10px;
}


/* mobile device */

@media only screen and (max-width: 600px) {
  /* nav */
  nav>div {
    margin: 2px 0;
  }
  header nav div:first-child {
    padding: 0 2px;
    font-size: 11px;
  }
  header a {
    margin: 0 4px;
  }
  /* hero */
  div.hero {
    background-position: 25%;
  }
  div.hero div.hero-heading {
	top: 30%;
    margin: 0 5px;
	width: 100%;
  }
  div.hero h1.heading {
    font-size: 32px;
  }
  /* sections */
  section {
    height: auto;
  }
  /* about us */
  div.about {
    width: 100%;
  }
  div.about p {
    padding: 4px;
    width: 100%;
  }
}