body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}

.holding {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.holding > * {
  flex: 50%;
  box-sizing: border-box;
  padding: 30px;
}

.holding-left {
  background: #666666 url('../images/slemish.jpg');
  background-size: auto 100%;
  background-position: center center;
  opacity: 0.6;
  background-repeat: no-repeat;
}

.holding-right {
  overflow-y: scroll;
}

.logo {
  max-width: 300px;
  margin-top: 30px;
}

.intro {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #666666;
}

.services {
  margin: 0;
  padding: 0;
  margin-top: 50px;
}

.services li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
  font-size: 0.8em;
  background-image: url('../images/icons/calendar.png');
  background-repeat: no-repeat;
  min-height: 24px;
  padding-left: 40px;
}

.services li.calendar {
  background-image: url('../images/icons/calendar.png');
}

.services li.map {
  background-image: url('../images/icons/map.png');
}

.services li.coffee {
  background-image: url('../images/icons/coffee.png');
}

.services li.time {
  background-image: url('../images/icons/time.png');
}

.contact {
  margin-top: 30px;
  font-size: 0.9em;
}

.social {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
  margin-top: 15px;
  overflow: hidden;
}

.social li {
  float: left;
  margin-right: 15px;
}

.social li img {
  width: 40px;
  height: 40px;
}

.social a {
  border: 0;
}

.pastors {
  padding: 20px;
  font-size: 0.8em;
  border: dashed 1px #666666;
  margin-top: 50px;
  color: #666666;
}

.pastors h2 {
  font-size: 1.2em;
  font-weight: normal;
}

.pastors p {
  line-height: 1.5em;
}

.pastors img {
  width: 175px;
  float: right;
  margin: 0 0 20px 20px;
}

a {
  color: #666666;
  text-decoration: none;
  border-bottom: dashed 1px #666666;
}

a:hover {
  color: #000000
}


h2 {
  font-weight: 600;
  font-size: 1.3em;
}

p {
  font-size: 0.9em;
}

.caption {
  margin-top: 60px;
}

.copyright {
  margin-top: 30px;
  font-size: 0.7em;
}

@media only screen and (max-width: 600px) {
  body {
    overflow: scroll;
  }
  .holding {
    display: block;
  }
  .holding-left {
    min-height: 150px;
    background-size: 100% auto;
  }
  .holding > * {
    display: block;
    padding: 15px;
  }
  .caption {
    margin-top: 20px;
  }
  .pastors {
    padding: 10px;
  }
  .pastors img {
    width: 100%;
    margin: 0 0 10px 0;
    float: none;
  }
  .pastors h2 {
    margin: 0 0 10px 0;
  }
}