/****** Prevents iPhone from resizing in landscape mode ******/
html  {
  -webkit-text-size-adjust: none;
}

body {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300; /*also loaded 600 for bold*/
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#headerWrapper {
  background: #ddd;
  display: flex;
  justify-content: space-between;
}

header {
  display: flex;
  height: 120px;
}

header h1 {
  color: #000;
  padding: 20px 20px 0;
  font-size: 34px;
  font-weight: 700;
}

header h2 {
  color: #000;
  padding-left: 20px;
  font-size: 24px;
}

#navWrapper {
  margin: 45px 20px;
}

nav ul {
  display: flex;
  justify-content: space-between;
  width: 300px;
}

nav ul a {
  color: black;
  text-decoration: none;
}

nav ul a:hover {
  text-decoration: underline;
}

/*.row {
  width: 75%;
}*/

.section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

figure {
  width: 50%;
}


.caption {
  text-align: center;
  width: 50%;
}

.caption h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.caption p {
  display: block;
  font-size: 18px;
  margin: 0 auto;
  width: 70%;
}

img.lazy {
  width: 100%;
}
