@charset "UTF-8";
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, main, menu, nav, section, summary {
  display: block;
}

/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  /*fill: #333;*/
  fill: #ed1c24;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 1px;
}

.flickity-prev-next-button.next {
  right: 1px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 1px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 1px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

@media screen and (max-width: 520px) {
  .flickity-prev-next-button {
    width: 24px;
    height: 24px;
  }
}
/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .flickity-page-dots {
    bottom: -33px;
  }
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #ed1c24;
}

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  overflow: hidden;
}

.featherlight {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background: #333;
  background: transparent;
}

.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.featherlight .featherlight-content {
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  background: #fff;
  cursor: auto;
  white-space: normal;
}

.featherlight .featherlight-inner {
  display: block;
}

.featherlight link.featherlight-inner, .featherlight script.featherlight-inner, .featherlight style.featherlight-inner {
  display: none;
}

.featherlight .featherlight-close-icon {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  line-height: 25px;
  width: 25px;
  cursor: pointer;
  text-align: center;
  font-family: Arial,sans-serif;
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: 0;
  padding: 0;
}

.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.featherlight .featherlight-image {
  width: 100%;
}

.featherlight-iframe .featherlight-content {
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.featherlight iframe {
  border: 0;
}

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

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}
/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
.featherlight-next, .featherlight-previous {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  bottom: 0;
  left: 80%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: transparent;
}

.featherlight-previous {
  left: 25px;
  right: 80%;
}

.featherlight-next:hover, .featherlight-previous:hover {
  background: rgba(255, 255, 255, 0);
}

.featherlight-next span, .featherlight-previous span {
  display: none;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 82%;
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  margin-top: -40px;
  text-shadow: 0 0 5px #fff;
  color: #fff;
  font-style: normal;
  font-weight: 400;
}

.featherlight-next span {
  right: 5%;
  left: auto;
}

.featherlight-next:hover span, .featherlight-previous:hover span {
  display: inline-block;
}

.featherlight-first-slide.featherlight-last-slide .featherlight-next, .featherlight-first-slide.featherlight-last-slide .featherlight-previous, .featherlight-loading .featherlight-next, .featherlight-loading .featherlight-previous, .featherlight-swipe-aware .featherlight-next, .featherlight-swipe-aware .featherlight-previous {
  display: none;
}

@media only screen and (max-device-width: 1024px) {
  .featherlight-next:hover, .featherlight-previous:hover {
    background: 0 0;
  }

  .featherlight-next span, .featherlight-previous span {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .featherlight-next, .featherlight-previous {
    top: 10px;
    right: 10px;
    left: 85%;
  }

  .featherlight-previous {
    left: 10px;
    right: 85%;
  }

  .featherlight-next span, .featherlight-previous span {
    margin-top: -30px;
    font-size: 40px;
  }
}
html {
  font-size: 16px;
  overflow-x: hidden;
}

@media screen and (max-width: 1060px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 13px;
  }
}
body {
  height: auto;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  color: #333333;
  line-height: 1.2;
  margin: 0 auto;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::after, *::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  -moz-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  color: #333333;
}

a img {
  border: none;
}

a:active, a:focus,
button:active, button:focus {
  outline: none;
}

strong {
  font-weight: 600;
}

.container .content {
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}

.container-slim .content {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
}

.container .content > :last-child, .container-slim .content > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .container .content {
    width: 94%;
  }

  .container-slim .content {
    width: 76%;
  }
}
@media screen and (max-width: 800px) {
  .container-slim .content {
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  .container .content {
    width: 90%;
  }

  .container-slim .content {
    width: 90%;
  }
}
/* Clearfix */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2em;
  font-weight: 200;
  font-family: "Raleway", sans-serif;
  margin-bottom: 1rem;
}
h1 .line-one {
  line-height: 1.2em;
  font-size: 1.5rem;
  display: block;
}

h2 {
  font-size: 2rem;
  line-height: 1.2em;
  margin-bottom: 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 200;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2em;
  margin-bottom: 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

p {
  margin-bottom: 1em;
  line-height: 1.66;
}

li {
  line-height: 1;
}
li li {
  line-height: 1.66;
}

.wysiwyg li {
  line-height: 1.66rem;
  list-style: initial;
  list-style-position: inside;
}

hr {
  width: 50%;
  border: none;
  border-top: 1px solid #666;
  margin: 4rem auto;
}

.float-l {
  float: left;
  margin-right: 2rem;
}

.icon {
  height: 1.1rem;
  width: auto;
}

em {
  font-style: italic;
}

p > em:first-child:last-child {
  font-size: .9;
}

.content p a {
  text-decoration: underline;
}

.content ul li {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #666;
  color: #fff;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  text-shadow: 1px 1px 2px rgba(25, 25, 25, 0.4);
  box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(33, 33, 33, 0.5);
}
.btn:hover, .btn:focus {
  box-shadow: 0 0 0.25rem 0 rgba(33, 33, 33, 0.75);
  text-shadow: none;
  background: #333;
}

@media screen and (max-width: 960px) {
  h1 {
    font-size: 2rem;
  }
  h1 .line-one {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  p {
    font-size: .9rem;
  }

  .wysiwyg li {
    font-size: .9rem;
  }

  hr {
    margin: 3rem auto;
  }
}
@media screen and (max-width: 520px) {
  .float-l {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
}
/*	BURGER ICON
-----------------------------------------------------------------------------------------*/
.c-hamburger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 110;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: .1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  cursor: pointer;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 1rem;
  left: .45rem;
  right: .45rem;
  height: 3px;
  background: #ed1c24;
  /*background: #000;*/
}

.c-hamburger span::before, .c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  /*background-color: #000;*/
  background-color: #ed1c24;
  content: "";
}

.c-hamburger span::before {
  top: -8px;
}

.c-hamburger span::after {
  bottom: -8px;
}

.c-hamburger--htx {
  background-color: #fff;
}

.c-hamburger--htx span {
  transition: background 0s 0.3s;
}

.c-hamburger--htx span::before, .c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active:not(.init-hide) {
  background-color: #fff;
}

.c-hamburger--htx.is-active:not(.init-hide) span {
  background: none;
}

.c-hamburger--htx.is-active:not(.init-hide) span::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger--htx.is-active:not(.init-hide) span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-hamburger--htx.is-active:not(.init-hide) span::before, .c-hamburger--htx.is-active:not(.init-hide) span::after {
  transition-delay: 0s, 0.1s;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: #fff;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0.5rem 0.25rem rgba(50, 50, 50, 0.5);
}

#navline {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1540px) {
  #navline {
    max-width: auto;
    width: 98%;
  }
}
#logo-container {
  padding: 1rem 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #logo-container {
    padding: .66rem 0;
  }
}
#logo {
  display: block;
  margin-left: .25rem;
  line-height: 1rem;
  font-size: .75rem;
  float: left;
  text-align: center;
}
#logo img {
  display: inline-block;
  margin-bottom: .25rem;
  height: 2.5rem;
  width: auto;
  vertical-align: middle;
  margin-right: 2em;
}

@media screen and (max-width: 767px) {
  #logo {
    font-size: .6rem;
    line-height: .6rem;
  }
  #logo img {
    /*width: 125px;*/
    height: 2rem;
  }
}
#nav-container {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  position: fixed;
  opacity: 0;
  z-index: 50;
  background: white;
  background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.975) 0%, rgba(255, 255, 255, 0.9) 100%);
  background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.975) 0%, rgba(255, 255, 255, 0.9) 100%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.975) 0%, rgba(255, 255, 255, 0.9) 100%);
}
#nav-container.is-open {
  display: block;
  opacity: 1;
  -moz-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
#nav-container #nav {
  text-align: center;
  margin-top: 5rem;
}
#nav-container #nav .container {
  position: relative;
}
#nav-container #nav li {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
#nav-container #nav li li {
  font-weight: normal;
  font-size: 1rem;
}
#nav-container #nav .sub-menu {
  margin-top: 1rem;
}
#nav-container #nav .sub-menu li {
  margin-bottom: .5rem;
}
#nav-container .socials ul {
  margin: 3rem 0 10rem;
  text-align: center;
}
#nav-container .socials ul li {
  display: inline-block;
  margin: 0 1rem;
}
#nav-container .socials ul li a img {
  height: 1.5rem;
}

#burger-container {
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 1.25rem;
  right: .5rem;
  z-index: 51;
}

.c-hamburger {
  display: block;
}

@media screen and (max-width: 767px) {
  #burger-container {
    top: .7rem;
  }
}
main {
  padding-top: 4.75rem;
  margin-bottom: 5.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0rem 1rem rgba(25, 25, 25, 0.66);
  background: url("../images/bg-texture.jpg");
  background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.1) 80%, rgba(0, 0, 0, 0.1) 100%), url("../images/bg-texture.jpg");
  background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.1) 80%, rgba(0, 0, 0, 0.1) 100%), url("../images/bg-texture.jpg");
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 80%, rgba(0, 0, 0, 0.1) 100%), url("../images/bg-texture.jpg");
  background-repeat: no-repeat, repeat;
}

@media screen and (max-width: 960px) {
  main {
    background: url("../images/bg-texture.jpg");
    background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.1) 80%, rgba(0, 0, 0, 0.05) 100%), url("../images/bg-texture.jpg");
    background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.1) 80%, rgba(0, 0, 0, 0.05) 100%), url("../images/bg-texture.jpg");
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 80%, rgba(0, 0, 0, 0.05) 100%), url("../images/bg-texture.jpg");
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 3.5rem;
    margin-bottom: 14rem;
  }
}
#hero {
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  position: relative;
  z-index: 6;
}

#hero-cover .hc-image {
  max-width: 100%;
  margin: 0 auto;
  max-height: calc(100vh - 11rem);
  display: block;
}

.page-section {
  padding: 4rem 0;
}

@media screen and (max-width: 1540px) {
  #hero {
    max-width: none;
    width: 98%;
  }
}
@media screen and (max-width: 960px) {
  .page-section {
    padding: 3rem 0 3.5rem;
  }
}
@media screen and (max-width: 600px) {
  .page-section {
    padding: 2rem 0 2.5rem;
  }

  #hero {
    width: 99%;
  }
}
.container-h {
  margin-bottom: 2rem;
}

.nav-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.nav-blocks .nav-block {
  margin-bottom: 2rem;
}
.nav-blocks .nav-block a:hover, .nav-blocks .nav-block a:focus {
  text-decoration: underline;
}
.nav-blocks .nav-block a:hover img, .nav-blocks .nav-block a:focus img {
  box-shadow: 0.15rem 0.15rem 0.2rem 0 rgba(33, 33, 33, 0.5);
}
.nav-blocks .nav-block img {
  margin-bottom: 1rem;
  display: block;
  max-width: 100%;
  height: auto;
}
.nav-blocks .nav-block h3 {
  margin-bottom: .75rem;
  font-size: 1.15rem;
}
.nav-blocks .nav-block p {
  font-size: .9rem;
}
.nav-blocks .nav-block p:last-child {
  margin-bottom: 0;
}
.nav-blocks .nav-block:last-child, .nav-blocks .nav-block:nth-last-child(2), .nav-blocks .nav-block:nth-last-child(3), .nav-blocks .nav-block:nth-last-child(4) {
  margin-bottom: 0;
}

#album-pictures-container {
  background: rgba(25, 20, 20, 0.05);
}

a.has-image {
  display: block;
  position: relative;
}

a.has-image:hover::before, a.has-image:focus::before,
.picture.is-hovering a.has-image::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  background: -moz-linear-gradient(-30deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0) 40%);
  background: -webkit-linear-gradient(-30deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0) 40%);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0) 40%);
}

.album-pictures {
  font-size: 0;
}
.album-pictures .picture {
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 1rem;
  position: relative;
  display: inline-block;
}
.album-pictures .picture a.gallery {
  display: block;
  position: relative;
}
.album-pictures .picture a.gallery:hover::before, .album-pictures .picture a.gallery:focus::before, .album-pictures .picture.is-hovering a.gallery::before {
  left: .25rem;
}
.album-pictures .picture a.gallery:hover .i-fullscreen, .album-pictures .picture a.gallery:focus .i-fullscreen, .album-pictures .picture.is-hovering a.gallery .i-fullscreen {
  opacity: 1;
}
.album-pictures .picture img {
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}
.album-pictures .picture .g-img {
  box-shadow: 0.1rem 0.1rem 0.35rem 0 rgba(50, 50, 50, 0.75);
  border: .25rem solid #fff;
}
.album-pictures .picture .icon {
  opacity: 0;
}
.album-pictures .picture .i-fullscreen {
  position: absolute;
  display: block;
  top: .5rem;
  right: .5rem;
  border: none;
  fill: #fff;
}
.album-pictures .picture .i-info {
  display: block;
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  border: none;
  z-index: 1;
}
.album-pictures .picture.is-hovering .i-info {
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .album-pictures .picture .g-img {
    height: 125px;
  }
}
@media screen and (max-width: 400px) {
  .album-pictures .picture .g-img {
    height: 100px;
  }
}
#album-meta-container h2, #image-meta-container h2 {
  margin-bottom: 1rem;
}
#album-meta-container h3, #image-meta-container h3 {
  margin-bottom: 1rem;
}
#album-meta-container p, #image-meta-container p {
  margin-bottom: 1rem;
  font-size: .9rem;
}
#album-meta-container ul, #image-meta-container ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
#album-meta-container ul:last-child, #image-meta-container ul:last-child {
  margin-bottom: 0;
}
#album-meta-container ul li, #image-meta-container ul li {
  list-style: circle;
  font-size: .9rem;
}
#album-meta-container ul li ul, #image-meta-container ul li ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}
#album-meta-container ul li ul li, #image-meta-container ul li ul li {
  margin-bottom: 0;
  list-style: disc;
}

@media screen and (max-width: 600px) {
  #album-meta-container h2, #image-meta-container h2 {
    margin-bottom: 1.5rem;
  }
  #album-meta-container h3, #image-meta-container h3 {
    margin-bottom: 1rem;
  }
  #album-meta-container p, #image-meta-container p {
    margin-bottom: 1rem;
  }
  #album-meta-container ul, #image-meta-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
  }
}
#breadcrumbs-container {
  width: 100%;
  max-width: 1500px;
  margin: 1rem auto .5rem;
}
#breadcrumbs-container.breadcrumbs-container-slim {
  max-width: 700px;
}

@media screen and (max-width: 1540px) {
  #breadcrumbs-container {
    max-width: auto;
    width: 98%;
  }
}
#breadcrumbs li {
  display: inline-block;
  font-size: .8rem;
}
#breadcrumbs li::after {
  content: '>';
  margin-left: .25rem;
}
#breadcrumbs li:last-child::after {
  display: none;
}

#full-image {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

@media screen and (max-width: 1540px) {
  #full-image {
    max-width: auto;
    width: 98%;
  }
}
#timeline {
  padding: 2rem 0;
}
#timeline .ti-first {
  text-align: center;
}
#timeline #hero {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  background: #fff;
  box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(33, 33, 33, 0.5);
}
#timeline #hero-cover {
  margin: 0 auto;
  border: 1.2rem solid #fff;
  max-width: 100%;
  display: inline-block;
  text-align: center;
}
#timeline #hero-cover .ti-image-subcontainer {
  display: block;
}
#timeline #hero-cover img {
  display: inline-block;
  max-height: calc(100vh - 10rem);
  max-width: 100%;
}
#timeline #hero-cover .ti-linksto {
  display: inline-block;
}
#timeline #hero-cover .ti-linksto img {
  height: 16px;
}
#timeline .timeline-hero-meta {
  display: block;
  text-align: left;
  padding-top: .75rem;
  position: relative;
}
#timeline .timeline-hero-meta .thm-title {
  float: left;
  margin: 0;
  color: #666;
  font-style: italic;
}
#timeline .timeline-hero-meta .tmh-date {
  float: right;
  text-align: right;
  margin: .25rem 0 0 0;
  font-size: .7rem;
  color: #999;
}
#timeline #timeline-about {
  padding: 4rem 0;
}
#timeline #timeline-items {
  padding: 2rem 0;
  position: relative;
  margin: 2rem auto;
}
#timeline #timeline-items::after {
  right: calc(50% - .0625rem);
  content: '';
  display: block;
  position: absolute;
  width: .125rem;
  height: 100%;
  background: #666;
  top: 0;
  z-index: -1;
}
#timeline #timeline-items .ti-item {
  position: relative;
  height: 150px;
  margin-top: -25px;
}
#timeline #timeline-items .ti-item .ti-left, #timeline #timeline-items .ti-item .ti-right {
  width: 50%;
  position: absolute;
}
#timeline #timeline-items .ti-item .ti-hasimage.ti-left {
  top: 0;
  left: 0;
  padding-right: 1rem;
}
#timeline #timeline-items .ti-item .ti-hasimage.ti-left .ti-image-subcontainer {
  text-align: right;
}
#timeline #timeline-items .ti-item .ti-hasimage.ti-right {
  top: 0;
  right: 0;
  padding-left: 1rem;
}
#timeline #timeline-items .ti-item .ti-hasimage.ti-right .ti-image-subcontainer {
  text-align: left;
}
#timeline #timeline-items .ti-item .ti-bull {
  display: block;
  height: 100%;
  position: absolute;
}
#timeline #timeline-items .ti-item.ti-even .ti-bull {
  right: 50%;
}
#timeline #timeline-items .ti-item.ti-even .ti-bull::before {
  right: -.5rem;
  content: '';
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #666;
  border-radius: 1rem;
  top: calc(50% - .5rem);
  z-index: 10;
}
#timeline #timeline-items .ti-item.ti-even .ti-bull::after {
  right: .5rem;
  content: '';
  display: block;
  position: absolute;
  width: 1rem;
  height: 2px;
  background: #666;
  top: calc(50% - 1px);
}
#timeline #timeline-items .ti-item.ti-odd .ti-bull {
  left: 50%;
}
#timeline #timeline-items .ti-item.ti-odd .ti-bull::before {
  left: -.5rem;
  content: '';
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #666;
  border-radius: 1rem;
  top: calc(50% - .5rem);
  z-index: 10;
}
#timeline #timeline-items .ti-item.ti-odd .ti-bull::after {
  left: .5rem;
  content: '';
  display: block;
  position: absolute;
  width: 1rem;
  height: 2px;
  background: #666;
  top: calc(50% - 1px);
}
#timeline #timeline-items .ti-item .ti-meta.ti-left {
  top: 50%;
  left: 0;
  padding-right: 2rem;
  transform: translateY(-50%);
  text-align: right;
}
#timeline #timeline-items .ti-item .ti-meta.ti-right {
  top: 50%;
  right: 0;
  padding-left: 2rem;
  transform: translateY(-50%);
  text-align: left;
}
#timeline #timeline-items .ti-item .ti-hasimage .ti-image-subcontainer {
  display: block;
}
#timeline #timeline-items .ti-item .ti-hasimage .ti-image {
  box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(33, 33, 33, 0.5);
  border: .33rem solid #fff;
}
#timeline #timeline-items .ti-item .ti-meta .tim-title {
  margin: 0;
  font-size: .9rem;
}
#timeline #timeline-items .ti-item .ti-meta .tim-date {
  margin: 0;
  font-size: .7rem;
}
#timeline #timeline-items .ti-item .ti-linksto img {
  height: 16px;
}

@media screen and (max-width: 1000px) {
  #timeline #hero {
    max-width: 98%;
  }
  #timeline #hero-cover img {
    max-width: 100%;
  }
}
@media screen and (max-width: 800px) {
  #timeline #timeline-items {
    padding-top: 0;
  }
  #timeline #timeline-items .content {
    position: relative;
  }
  #timeline #timeline-items .content::after {
    left: 0;
    content: '';
    display: block;
    position: absolute;
    width: .125rem;
    height: 100%;
    background: #666;
    top: 0;
    z-index: -1;
  }
  #timeline #timeline-items::after {
    display: none;
  }
  #timeline #timeline-items .ti-item {
    margin-top: 0;
    margin-bottom: 1.5rem;
    width: 95%;
    left: 5%;
    right: auto;
    height: 125px;
  }
  #timeline #timeline-items .ti-item .ti-hasimage.ti-left {
    padding-right: 0;
  }
  #timeline #timeline-items .ti-item .ti-hasimage.ti-left .ti-image-subcontainer {
    text-align: left;
  }
  #timeline #timeline-items .ti-item .ti-hasimage.ti-right {
    padding-left: 0;
  }
  #timeline #timeline-items .ti-item .ti-hasimage.ti-right .ti-image-subcontainer {
    text-align: left;
  }
  #timeline #timeline-items .ti-item .ti-bull {
    width: 3rem;
    height: 100%;
  }
  #timeline #timeline-items .ti-item.ti-even .ti-bull, #timeline #timeline-items .ti-item.ti-odd .ti-bull {
    left: -5%;
    right: auto;
  }
  #timeline #timeline-items .ti-item.ti-even .ti-bull::before, #timeline #timeline-items .ti-item.ti-odd .ti-bull::before {
    left: -.515rem;
    right: auto;
  }
  #timeline #timeline-items .ti-item.ti-even .ti-bull::after, #timeline #timeline-items .ti-item.ti-odd .ti-bull::after {
    left: .4rem;
    right: auto;
  }
  #timeline #timeline-items .ti-item .ti-meta.ti-left {
    left: auto;
    right: 0;
    padding-right: 0;
    text-align: right;
  }
  #timeline #timeline-items .ti-item .ti-meta.ti-right {
    left: auto;
    right: 0;
    padding-left: 0;
    text-align: right;
  }
  #timeline #timeline-items .ti-item .ti-hasimage {
    left: 0;
  }
  #timeline #timeline-items .ti-item .ti-hasimage .ti-image {
    height: 125px;
  }
  #timeline #timeline-items .ti-item .ti-meta {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  #timeline {
    padding-top: 0;
  }
}
@media screen and (max-width: 520px) {
  #timeline #hero-cover {
    border-width: 1rem;
  }
  #timeline #timeline-about {
    padding: 3rem 0;
  }
  #timeline #timeline-items .ti-item {
    height: 110px;
  }
  #timeline #timeline-items .ti-item .ti-hasimage .ti-image {
    height: 110px;
  }
}
@media screen and (max-width: 360px) {
  #timeline #timeline-items .ti-item {
    height: 100px;
  }
  #timeline #timeline-items .ti-item .ti-hasimage .ti-image {
    height: 100px;
  }
}
.home #hero {
  padding-bottom: 33px;
  overflow: hidden;
}

.hs-slide {
  width: 100%;
  position: relative;
}
.hs-slide .hs-slide-content {
  margin: 0 auto;
  width: calc(100% - 1rem);
  text-align: center;
  padding-top: .5rem;
}
.hs-slide a {
  display: inline-block;
  top: 0;
  left: 0;
  box-sizing: border-box;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(33, 33, 33, 0.5);
  position: relative;
}
.hs-slide img {
  margin: 0 auto;
  border: 1.2rem solid #fff;
  max-width: 100%;
  display: block;
  max-height: calc(100vh - 10rem);
}

@media screen and (max-width: 520px) {
  .hs-slide img {
    border-width: 1rem;
  }
}
.home-portrait {
  margin-bottom: 1rem;
  border: .25rem solid #fff;
}

@media screen and (max-width: 960px) {
  .home-portrait {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .home-portrait {
    width: 120px;
  }
}
@media screen and (max-width: 375px) {
  .home-portrait {
    width: 90px;
  }

  .home-portrait + h1 {
    clear: both;
  }
}
#timeline-short {
  background: rgba(25, 20, 20, 0.05);
}

.timeline-short {
  display: inline-flex;
  justify-content: space-between;
  flex-shrink: .5;
  width: 100%;
  margin: 2rem 0;
  position: relative;
  padding-bottom: 1rem;
}
.timeline-short::after {
  right: 0;
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #666;
  bottom: -1px;
  z-index: -1;
}
.timeline-short::before {
  right: .125rem;
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 1rem;
  bottom: -1px;
  z-index: 1;
  background: -moz-linear-gradient(left, #f0f0f0 0%, #f0f0f0 14%, #666666 14%, #666666 28%, #f0f0f0 28%, #f0f0f0 42%, #666666 42%, #666666 58%, #f0f0f0 58%, #f0f0f0 72%, #666666 72%, #666666 86%, #f0f0f0 86%, #f0f0f0 100%);
  background: -webkit-linear-gradient(left, #f0f0f0 0%, #f0f0f0 14%, #666666 14%, #666666 28%, #f0f0f0 28%, #f0f0f0 42%, #666666 42%, #666666 58%, #f0f0f0 58%, #f0f0f0 72%, #666666 72%, #666666 86%, #f0f0f0 86%, #f0f0f0 100%);
  background: linear-gradient(to right, #f0f0f0 0%, #f0f0f0 14%, #666666 14%, #666666 28%, #f0f0f0 28%, #f0f0f0 42%, #666666 42%, #666666 58%, #f0f0f0 58%, #f0f0f0 72%, #666666 72%, #666666 86%, #f0f0f0 86%, #f0f0f0 100%);
}
.timeline-short .ts-item {
  padding: .33rem;
  background: #fff;
  box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(33, 33, 33, 0.5);
  position: relative;
  flex-shrink: .5;
}
.timeline-short .ts-item::before {
  bottom: -2.45rem;
  content: '';
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #666;
  border-radius: 1rem;
  left: calc(50% - .5rem);
  z-index: 10;
}
.timeline-short .ts-item::after {
  bottom: -1.5rem;
  content: '';
  display: block;
  position: absolute;
  height: 2rem;
  width: 2px;
  background: #666;
  left: calc(50% - 1px);
  z-index: -1;
}
.timeline-short .ts-item .ts-title {
  font-size: .7rem;
  margin: .25rem 0 0 0;
}
.timeline-short .ts-item .ts-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1060px) {
  .timeline-short .ts-image {
    height: 115px;
  }
}
@media screen and (max-width: 825px) {
  .timeline-short .ts-image {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .timeline-short .ts-item:last-child {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .timeline-short .ts-image {
    height: 85px;
  }
  .timeline-short .ts-item:last-child {
    display: none;
  }
}
@media screen and (max-width: 525px) {
  .timeline-short {
    position: relative;
    display: block;
    padding: 1rem 0;
    margin: 1rem auto;
  }
  .timeline-short::after {
    left: 0;
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 100%;
    background: #666;
    top: 0;
    z-index: -1;
  }
  .timeline-short::before {
    bottom: .125rem;
    width: 2px;
    height: 1rem;
    left: 0;
    background: -moz-linear-gradient(top, #f0f0f0 0%, #f0f0f0 14%, #666666 14%, #666666 28%, #f0f0f0 28%, #f0f0f0 42%, #666666 42%, #666666 58%, #f0f0f0 58%, #f0f0f0 72%, #666666 72%, #666666 86%, #f0f0f0 86%, #f0f0f0 100%);
    background: -webkit-linear-gradient(top, #f0f0f0 0%, #f0f0f0 14%, #666666 14%, #666666 28%, #f0f0f0 28%, #f0f0f0 42%, #666666 42%, #666666 58%, #f0f0f0 58%, #f0f0f0 72%, #666666 72%, #666666 86%, #f0f0f0 86%, #f0f0f0 100%);
    background: linear-gradient(to bottom, #f0f0f0 0%, #f0f0f0 14%, #666666 14%, #666666 28%, #f0f0f0 28%, #f0f0f0 42%, #666666 42%, #666666 58%, #f0f0f0 58%, #f0f0f0 72%, #666666 72%, #666666 86%, #f0f0f0 86%, #f0f0f0 100%);
  }
  .timeline-short .ts-item {
    position: relative;
    margin-top: 0;
    box-shadow: none;
    border: none;
    background: none;
    margin-left: 1rem;
  }
  .timeline-short .ts-item:last-child {
    display: block;
  }
  .timeline-short .ts-item .ts-image-subcontainer {
    box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(33, 33, 33, 0.5);
    border: .33rem solid #fff;
    display: inline-block;
  }
  .timeline-short .ts-item::before {
    left: -1.33rem;
    content: '';
    display: block;
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #fff;
    border: 2px solid #666;
    border-radius: 1rem;
    top: calc(50% - .5rem);
    z-index: 10;
  }
  .timeline-short .ts-item::after {
    left: -1rem;
    content: '';
    display: block;
    position: absolute;
    width: 3rem;
    height: 2px;
    background: #666;
    top: calc(50% - 1px);
  }
  .timeline-short .ts-item .ts-image {
    height: 125px;
  }
  .timeline-short .ts-item .ts-caption {
    display: none;
  }
  .timeline-short .ts-item .ts-caption .ts-title {
    text-align: right;
  }
}
@media screen and (max-width: 375px) {
  .timeline-short .ts-item {
    padding: 0;
  }
  .timeline-short .ts-item .ts-image {
    height: 100px;
  }
}
#featured-container {
  background: rgba(25, 20, 20, 0.15);
}
#featured-container .nav-blocks .nav-block {
  width: 30%;
}
#featured-container .nav-blocks .nav-block h3 {
  font-size: 1.25rem;
}
#featured-container .nav-blocks .nav-block p {
  font-size: 1rem;
}
#featured-container .nav-blocks .nav-block:nth-last-child(4) {
  margin-bottom: 2rem;
}

#navblocks-container {
  background: rgba(25, 20, 20, 0.05);
}
#navblocks-container .nav-blocks .nav-block {
  width: 22%;
}
#navblocks-container.minor-galleries {
  background: rgba(25, 20, 20, 0.1);
}

#mininavblocks-container {
  background: rgba(25, 20, 20, 0.1);
}
#mininavblocks-container .nav-blocks .nav-block {
  width: 22%;
}

@media screen and (max-width: 960px) {
  #featured-container .nav-blocks .nav-block h3,
  #navblocks-container .nav-blocks .nav-block h3,
  #mininavblocks-container .nav-blocks .nav-block h3 {
    font-size: 1.1rem;
  }
  #featured-container .nav-blocks .nav-block p,
  #navblocks-container .nav-blocks .nav-block p,
  #mininavblocks-container .nav-blocks .nav-block p {
    font-size: .8rem;
  }
}
@media screen and (max-width: 670px) {
  #featured-container .nav-blocks .nav-block {
    width: 47.5%;
  }

  #navblocks-container .nav-blocks .nav-block,
  #mininavblocks-container .nav-blocks .nav-block {
    width: 28%;
  }

  .nav-blocks .nav-block:nth-last-child(3),
  .nav-blocks .nav-block:nth-last-child(4) {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #navblocks-container .nav-blocks .nav-block,
  #mininavblocks-container .nav-blocks .nav-block {
    width: 47.5%;
  }

  .nav-blocks .nav-block:nth-last-child(2),
  .nav-blocks .nav-block:nth-last-child(3),
  .nav-blocks .nav-block:nth-last-child(4) {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 400px) {
  #featured-container .nav-blocks .nav-block, #navblocks-container .nav-blocks .nav-block, #mininavblocks-container .nav-blocks .nav-block {
    width: 100%;
  }
  #featured-container .nav-blocks .nav-block img, #navblocks-container .nav-blocks .nav-block img, #mininavblocks-container .nav-blocks .nav-block img {
    margin-right: 0;
  }
}
footer {
  /*background: #ed1c24;*/
  background: #333333;
  color: #fff;
  padding: 1rem 0;
  font-size: .8rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5.5rem;
  z-index: 0;
  /*box-shadow:  inset 0 0 10rem rgba(0,0,0,.5);*/
}
footer a {
  color: #fff;
}
footer #footer-logo-container {
  padding: 0;
  overflow: hidden;
  float: left;
  margin-right: 3rem;
  /*margin-bottom: 3rem;*/
}
footer #footer-logo {
  display: block;
  margin-left: .25rem;
  line-height: 1rem;
  font-size: .55rem;
  float: left;
  text-align: center;
  color: #fff;
}
footer #footer-logo img {
  display: block;
  margin-bottom: .25rem;
  height: 2.5rem;
  width: auto;
}
footer .footerwidget {
  text-align: right;
}
footer #copyright {
  margin: 0;
  /*font-size: .75rem; */
}
footer .footercopyright {
  text-align: right;
}
footer .footercopyright p {
  font-size: .6rem;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 2rem 0 2.5rem;
    height: 14rem;
  }
  footer #footer-logo-container {
    margin-top: 0;
    margin-bottom: 1.5rem;
    margin-right: 0;
    float: none;
    text-align: center;
  }
  footer #footer-logo-container #footer-logo {
    float: none;
    display: inline-block;
    font-size: .55rem;
    line-height: .6rem;
    text-align: center;
  }
  footer #footer-logo-container #footer-logo img {
    /*width: 125px;*/
    height: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
  footer .footerwidget {
    text-align: center;
  }
  footer .footercopyright {
    text-align: center;
    margin-bottom: 0;
  }
}
