@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/*google fonts */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  background: white;
  color: black;
  text-align: center;
  font-weight: 300;
}

p {
  line-height: 150%;
  padding: 0 0 20px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Didot", "Georgia", serif;
  line-height: 100%;
  font-size: 32px;
  margin: 0;
  padding: 0 0 20px 0;
  font-weight: 300;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

hr {
  background: #878787;
  margin: 60px auto 80px auto;
  display: block;
  clear: both;
  width: 180px;
  padding: 0;
  border: none;
  height: 1px;
}

a {
  color: black;
}
a:hover {
  text-decoration: none;
  color: #878787;
}

strong {
  font-weight: 400;
}

code {
  padding: 5px;
  font-family: "Times New Roman", serif;
  font-size: 14px;
  background: rgba(135, 135, 135, 0.5);
}

ul.nav {
  padding: 40px 0;
  text-transform: uppercase;
}
ul.nav li {
  display: inline-block;
}
ul.nav a {
  color: #878787;
  text-decoration: none;
  display: block;
  padding: 20px;
}
ul.nav a:hover {
  color: black;
}

.home .homeLink, .about .aboutLink, .photography .photosLink, .websites .websitesLink, .contact .contactLink, .blog .blogLink {
  color: black;
}

.header {
  position: relative;
  margin: 0 0 80px 0;
}
.header img {
  width: 100%;
  max-width: 100%;
}
.header h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  color: white;
  text-transform: uppercase;
  position: absolute;
  line-height: 100%;
  top: 80px;
  left: 0;
  right: 0;
  padding: 0;
  background: url("/2017/img/logo-bg.png") no-repeat center center;
}
.header h1 span {
  clear: both;
  display: block;
  font-family: "Didot", "Georgia", serif;
  font-size: 32px;
  padding: 10px 0;
}

.content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px auto;
}
.content img {
  max-width: 100%;
}

.columns {
  text-align: left;
  padding: 0 20px;
  -moz-column-count: 2;
  -moz-column-gap: 40px;
  -webkit-column-count: 2;
  -webkit-column-gap: 40px;
  column-count: 2;
  column-gap: 40px;
}

.home ul.grid li:nth-of-type(2n) {
  margin-right: 0;
}

ul.grid {
  margin: 0 0 -5% 0;
  padding: 0;
  font-size: 0;
  width: 100%;
}
ul.grid li {
  margin: 0 5% 5% 0;
  padding: 0;
  list-style: none;
  width: 30%;
  overflow: hidden;
  display: inline-block;
}
ul.grid li:nth-of-type(3n) {
  margin-right: 0;
}
ul.grid a {
  padding: 0;
  margin: 0;
  text-decoration: none;
  position: relative;
  display: block;
}
ul.grid a span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 25% 0 0 0;
  font-family: "Didot", "Georgia", serif;
  font-size: 18px;
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
ul.grid a:hover span {
  opacity: 1;
}

.copyright {
  font-size: 80%;
  color: #878787;
  padding: 0 5% 80px 5%;
}

.footer {
  color: white;
  background: #878787;
  padding: 80px 5% 60px 5%;
}
.footer ul {
  margin: 20px 0 0 0;
}
.footer li {
  display: inline;
  margin: 0 5px;
}
.footer li a {
  transition: opacity 0.1s linear;
  padding: 2px;
}
.footer li a:hover {
  opacity: 0.5;
}

input#name, input#phone, input#email, textarea {
  width: 100%;
  padding: 10px;
  background: #878787;
  border: none;
  margin: 0 0 40px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: white;
}

textarea {
  height: 200px;
}

input.submit-button {
  padding: 10px 40px;
  background: #878787;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: white;
  border: none;
  cursor: pointer;
}

#recaptcha_widget_div {
  width: 100%;
}
#recaptcha_widget_div #recaptcha_area {
  margin: 0 auto 40px auto;
}
#recaptcha_widget_div #recaptcha_response_field {
  display: inline-block;
}

/*bp-desktop */
@media (max-width: 1000px) {
  ul.grid {
    width: 90%;
    margin: 0 5%;
  }
}
/*bp-mobile */
@media (max-width: 500px) {
  .content, h1, h2, .nav {
    width: 90%;
    margin: 0 5%;
  }

  .columns {
    padding: 0;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }

  .nav li a {
    padding: 10px;
  }

  .header h1 {
    position: absolute;
    top: 0;
    left: auto;
    right: auto;
    padding: 25px 0 0 0;
    background: none;
  }
  .header h1 span {
    clear: both;
    display: block;
    font-family: "Didot", "Georgia", serif;
    font-size: 32px;
    padding: 10px 0;
  }

  ul.grid li {
    width: 100%;
  }
}
