body {
  font-weight: 100;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2 {
  font-weight: 400;
  font-family: 'Roboto Slab', serif;
}

.h3 {
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

a.button-link {
  border: 1px solid #0071bb;
  padding: 1em 2em;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  transition: all 350ms;
}

a.button-link:hover {
  color: white;
  background: #0071bb;
}

header,
footer {
  box-sizing: border-box;
}

header nav,
footer nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

header nav a,
footer nav a {
  text-decoration: none;
  color: inherit;
  transition: all 350ms;
}

header nav a:hover,
footer nav a:hover {
  color: #0071bb;
}

header {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  background: rgba(2, 20, 31, 0.85);
}

header nav {
  color: white;
}

header nav .brand {
  display: inline-block;
  flex-shrink: 0;
}

header nav .brand .logo {
  transform: translateY(20px);
}

header nav button.site-links-btn {
  display: none;
  border: 1px solid white;
  border-radius: 3px;
  padding: .25em .5em;
  position: absolute;
  right: 1em;
  font-size: 28px;
  background: none;
  color: white;
}

header nav ul.site-links {
  display: inline-block;
  float: right;
}

header nav li {
  display: inline-block;
  margin: 0 1em;
}

header nav li.i-am-here {
  color: #0071bb;
}

header nav a.visit-btn {
  border: 1px solid #0071bb;
  padding: 1em 2em;
  font-size: 14px;
}

header nav a.visit-btn:hover {
  color: white;
  background: #0071bb;
}

main section {
  background: #fff no-repeat center center fixed;
  background-size: cover;
  box-sizing: border-box;
  min-height: 100vh;
  width: 100vw;
  padding: 2em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main section h1 {
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 1em;
}

main section h2 {
  font-size: 36px;
  margin-bottom: 0;
}

main section h3 {
  font-size: 24px;
  margin-bottom: 0;
}

main #hero {
  background-image: url('http://i.imgur.com/2zGsGFW.jpg');
  text-align: center;
  font-size: 24px;
}

main #hero .content {
  padding: 2em;
  background-color: rgba(2, 20, 31, 0.85);
  color: white;
  border: 1px solid white;
  box-shadow: 0px 3px 15px 7px rgba(0, 0, 0, 0.5);
  padding: 10vh 4em;
  max-width: 800px;
}

main #life-groups {
  background-image: url('http://i.imgur.com/eUCn9kl.jpg');
  background-position-y: bottom;
}

main #life-groups .content {
  padding: 2em;
  background-color: rgba(255, 255, 255, 0.85);
  color: #404040;
  border: 1px solid #404040;
  box-shadow: 0px 3px 15px 7px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-wrap: nowrap;
  margin: 2em;
  padding: 4em;
  max-width: 1200px;
  font-size: 20px;
  text-align: justify;
}

main #life-groups .content h1 {
  margin-top: 0;
  margin-bottom: .5em;
}

main #life-groups .content aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-shrink: 0;
  padding: 0 50px 0 25px;
  margin-left: 50px;
  width: 300px;
  border-left: 1px solid #404040;
}

main #life-groups .content aside .button-link {
  display: inline-block;
  font-size: 18px;
  text-align: center;
  width: 175px;
}

main #services {
  display: block;
  position: relative;
  height: 1vh;
}

main #services .content {
  box-sizing: border-box;
  width: 50%;
  padding: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
}

main #services .content h2 {
  color: #0071bb;
}

main #services aside {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}

main #services aside img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

footer {
  width: 100%;
  height: 155px;
  padding: 1em;
  background: #f1f1f1;
}

footer nav .contact {
  position: relative;
  display: flex;
}

footer nav .contact .social {
  margin-left: 5em;
  display: inline-block;
  position: relative;
}

footer nav .contact .social .divider {
  width: 4px;
  height: 150px;
  background: #d9d9d9;
  position: absolute;
  top: -200%;
  left: -2em;
  transform: rotate(7deg);
}

footer nav .contact .social a {
  text-decoration: none;
  color: #676767;
  font-size: 24px !important;
  margin: 1em;
}

@media screen and (max-width: 1100px) {
  header {
    padding: .35em 1em;
  }
  header nav {
    max-width: 100vw;
    padding: 0;
    font-size: 14px;
  }
  header nav .brand .logo {
    width: 260px;
    transform: translateY(22px);
  }
  header nav ul.site-links {
    padding-left: 0;
  }
  header nav a.visit-btn {
    font-size: 12px;
  }
}

@media screen and (max-width: 900px) {
  header nav {
    position: static !important;
  }
  header nav button.site-links-btn {
    display: inline-block;
  }
  header nav ul.site-links {
    display: none;
    position: absolute;
    right: 0;
    top: 5em;
    background: rgba(2, 20, 31, 0.85);
  }
  header nav ul.site-links.toggle-shown {
    display: block;
  }
  header nav ul.site-links li {
    display: block;
    margin: 1em;
  }
  header nav ul.site-links li .visit-btn {
    border: none;
    padding: 0;
    font-size: 14px;
  }
  header nav ul.site-links li .visit-btn:hover {
    color: #0071bb;
    background: none;
  }
  main section h3 {
    font-size: 16px;
  }
  main #life-groups .content {
    flex-direction: column;
  }
  main #life-groups .content aside {
    border-left: none;
    margin: 1em auto;
  }
  main #services .content {
    width: 60%;
  }
  main #services aside {
    width: 40%;
  }
}