body {
  background: #336633;
  display: flex;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}

/* content */

.title {
  color: #002A47;
  text-align: center;
}

.title img {
  max-width: 225px;
  margin-top: 20px;
}

.drawing {

}

.drawing img {
  max-height: 100%;
  z-index: 2;
  display: block;
  position: relative;
  margin: 0 auto;
}

.right {
  width: 100%;
  max-width: 600px;
  margin: 10% auto 0 auto;
}

.right-main {
  background: #336633;
  color: #fff;
  -moz-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.right-main.transparent {
  background: rgba(255,255,255,0.0);
  color: #023457;
  border-left: 1px solid rgba(100,63,49,.07);
}

.right-secondary h3 {
  color: #023457;
}

.right-secondary p {
  color: #002A47;
}

.content {
  padding: 40px 80px;
}

.content + .content {
  padding-top: 0;
}

.content.first {
  padding-top: 0;
}

/* Horizon */

.horizon {
  position: absolute;
  bottom: 30%;
  width: 100%;
  height: 1px;
  z-index: 1;
}

.drawing .horizon {
  background-color: rgba(100,63,49,.07);
}

.bar .horizon {
  background-color: rgba(255,255,255,.1);
}

/* CTA bar */

.bar-container {
  background: #023457;
  display: block;
  position: absolute;
  left: 80px;
  bottom: 30%;
  height: 60px;
  margin-bottom: -30px;
  z-index: 2;
  padding: 0 0px;
}

.nav-item {
  height: 60px;
  display: inline-block;
  border-right: 1px solid rgba(255,255,255,.05);
  color: #fff;
  padding: 0 20px;
  text-align: center;
}

.nav-item:last-child {
  border-right: 0px;
}

a.nav-item:hover {
  color: #fff;
}

.nav-icon {
  margin-bottom: 5px;
  display: block;
  height: 20px;
  margin: 10px auto 3px auto;
}

.button {
  background: #fff;
  padding: 8px 20px;
  border-radius: 3px;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
  margin-right: 10px;
}

.button.primary {
  background: #21608B;
  color: #fff;
  margin-top: 20px;
}

.button.disabled {
  background: #ccc;
  color: #fff;
  margin-top: 20px;
}

.button.disabled:hover {
  cursor: none;
  text-decoration: none;
}

/* Event Box */
.event {
  margin-top: 20px;
}

/* Photos */

.photos {
  display: flex;
  flex-direction: row;
}

.photo {
  width: 50%;
  flex: 1;
  background-size: cover;
  min-height: 300px;
}

.photo.one {
  background-image: url("photo1.jpg");
  background-position: bottom right;
}

.photo.two {
  background-image: url("photo2.jpg");
  background-position: center center;
}

/* RSVP */
.rsvp iframe {
  width: 100%;
  height: 100%;
}

/* Typography */

h1 {
  display: block;
  font-family: 'Delius Swash Caps', cursive;
  font-size: 48px;
}

h2 {
  display: block;
  font-family: 'Delius Swash Caps', cursive;
  font-size: 24px;
  margin-top: 15px;
}

h3 {
  font-family: 'Delius Swash Caps', cursive;
  margin-bottom: 25px;
}

h4 {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-size: 16px;
  margin-bottom: 5px;
}

p {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
}

a {
  color: #fff;
  border: 2px solid #fff;
  padding: 5px 10px;
}

a:hover {
  text-decoration: underline;
  color: #fff;
}