:root {
  --primary: #b82828;
  --primary-dark: #506595;
  --gray-500: rgba(184,184,184,0.9);
  --gray-600: #b5b5b5;
  --gray-800: #595959;
  --serif: 'Merriweather', serif;
  --sans-serif: 'Proxima Nova', sans-serif;
}

html, body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--serif);
  background: var(--gray-600);
}

a { text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; vertical-align: middle; }
* { box-sizing: border-box; }
.dn { display: none; }

.container {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 12px;
  position: relative;
}
@media only screen and (min-width: 600px) {
  .container {
    padding: 0 32px;
  }
}
.flex > * {
  flex: 1 1;
}
@media only screen and (min-width: 600px) {
  .flex {
    display: flex;
  }
}
.centered {
  margin: 0 auto;
}
.mw-500 {
  max-width: 500px;
}
.mb-phone {
  margin-bottom: 30px;
}
@media only screen and (min-width: 600px) {
  .mb-phone {
    margin-bottom: 0;
  }
}

.field {
  margin-bottom: 16px;
}
.label {
  display: block;
  margin-bottom: 4px;
}
.input {
  width: 100%;
  border: 1px solid #dedede;
  padding: 12px 12px;
}
.button {
  padding: 12px 24px;
  background: var(--primary);
  border: none;
  color: #fff;
  font-weight: bold;
}

.header {
  background: #fff;
  padding: 12px 0;
  text-align: center;
}
.header .brand {
  color: #000;
  display: block;
}
.header .brand img {
  height: 32px;
}
.header .navigation {
  flex: 1 1;
}
.header .navigation a {
  color: var(--primary);
  display: inline-block;
  padding: 0 6px;
  font-family: var(--sans-serif);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--gray-500);
  transition: color 400ms;
}
.header .navigation a:hover {
  color: var(--gray-800);
}
@media only screen and (min-width: 600px) {
  .header {
    padding: 24px 0;
    text-align: left;
  }
  .header .container {
    display: flex;
    align-items: center;
  }
  .header .navigation {
    text-align: right;
  }
  .header .navigation a {
    display: inline;
    padding: auto;
    margin-left: 32px;
  }
}

.content {
  background: #fff;
  padding: 30px 0;
}
@media only screen and (min-width: 600px) {
  .content {
    padding: 80px 0;
  }
}
.content h1:first-child {
  margin-top: 0;
}
.content-home {
  padding: 80px 0;
  background: url(/hero.jpg), rgba(255,255,255,0.5);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
  color: white;
}
.content-home-hero h1 {
  font-family: var(--sans-serif);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 3px;
  font-size: 30px;
}
.content-home-hero p {
  font-weight: 300;
  font-size: 18px;
  font-family: var(--serif);
  font-style: italic;
  text-transform: lowercase;
  margin-bottom: 0;
}
.content-home-nav h2 {
  font-weight: normal;
  margin-bottom: 100px;
  text-align: center;
}
.content-home-nav-option,
.content-home-nav-option:hover {
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 1.25%;
  margin-bottom: 50px;
  transition: background 400ms;
}
.content-home-nav-option:hover {
  background: rgba(50,50,50,0.05);
}
.content-home-nav-option h3 {
  color: var(--primary);
  font-size: 26px;
  font-family: var(--sans-serif);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.content-home-nav-option p {
  color: var(--gray-800);
  font-size: 14px;
  padding: 0 16px;
  line-height: 2;
}
@media only screen and (min-width: 600px) {
  .content-home {
    padding: 240px 0;
  }
}

.gray-box {
  background: #eee;
  padding: 32px;
}
.picture-box img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center center;
}
.gallery {
  margin: 0 -16px 16px;
}
.gallery-image {
  padding: 0 16px 16px;
  cursor: pointer;
}
.gallery-image img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.footer {
  background: var(--gray-600);
  color: #fff;
  padding: 60px 0;
}
.footer-section {
  text-align: center;
}
.footer-section:first-child {
  margin-bottom: 30px;
}
.footer a {
  color: #fff;
  margin-bottom: 4px;
}
@media only screen and (min-width: 600px) {
  .footer {
    padding: 100px 0;
  }
}

.alert {
  padding: 16px;
  margin-bottom: 24px;
}
.alert.alert-error {
  background: #FBCFBD;
}
.alert.alert-success {
  background: #D8EACC;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.modal-content {
  margin: 0 auto;
  padding: 5vh 0;
  height: 100%;
  width: 95vw;
  display: flex;
  justify-content: center;
}
.modal-content img {
  width: 100%;
  object-fit: contain;
}
.modal-close {
  cursor: pointer;
  user-select: none;
  position: absolute;
  color: white;
  font-size: 24px;
  font-family: sans-serif;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10vw;
  height: 80px;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.5);
}
.modal-left, .modal-right {
  cursor: pointer;
  user-select: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10vw;
  color: white;
  font-size: 36px;
  font-weight: bold;
  font-family: sans-serif;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-left:hover, .modal-right:hover {
  background: rgba(0, 0, 0, 0.5);
}
.modal-left {
  left: 0;
}
.modal-right {
  right: 0;
}
@media only screen and (min-width: 600px) {
  .modal-content {
    padding: 10vh 0;
    width: 80vw;
  }
  .modal-left, .modal-right {
    display: flex;
  }
}