html, body {
  min-height: 100vh; }

body {
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  font-family: 'Stack Sans Headline', sans-serif;
  background: black;
  color: #DEDEDE;
  color: #C8C8C8;
  font-size: 14px; }

main {
  margin-top: 10px;
  padding-bottom: 80px;
  flex: 1; }

a {
  color: #B8903A;
  font-weight: 500; }

@media (min-width: 992px) {
  body {
    padding-top: 150px; }

  main {
    margin-top: 20px; } }
h1 {
  color: white; }

h2, h3 {
  color: #DEDEDE; }

header {
  z-index: 10;
  color: white;
  width: 100%;
  position: fixed;
  top: 0;
  box-shadow: 0 10px 30px #00000099;
  background: #080808d1; }
  header .container {
    position: relative; }
  header a {
    color: white; }
  header a:hover, header a:focus-visible {
    color: white;
    text-decoration: none; }
  header .header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3px;
    min-height: 70px; }
    header .header-top .container a.logo {
      display: inline-block;
      flex-shrink: 0; }
      header .header-top .container a.logo img {
        height: 26px;
        width: auto; }
    header .header-top .container div.spacer {
      flex: 1; }
      header .header-top .container div.spacer > p.slogan {
        display: none; }
    header .header-top .container form {
      display: none; }
    header .header-top .container a.search-link {
      font-size: 20px;
      margin: 4px 4px 0 0; }
    @media (min-width: 992px) {
      header .header-top .container a.search-link {
        display: none; }
      header .header-top .container form.top-search-form {
        opacity: 1;
        visibility: visible;
        max-height: none;
        position: relative;
        display: flex;
        align-items: center; }
        header .header-top .container form.top-search-form input {
          box-shadow: none;
          border-radius: 4px;
          background: #2A2A2A;
          width: 100%;
          transition: all 0.3s ease;
          color: #DEDEDE;
          padding: 0 5px;
          height: 30px;
          border: none; }
        header .header-top .container form.top-search-form > button {
          position: absolute;
          right: 2px;
          top: 2px;
          border: 0;
          background: none;
          height: 27px;
          color: #DEDEDE;
          padding-top: 2px; }
          header .header-top .container form.top-search-form > button svg {
            width: 20px;
            height: 20px; }
      header .header-top .container form.top-search-form:hover input, header .header-top .container form.top-search-form:focus-within input, header .header-top .container form.top-search-form:focus input {
        background: #3A3A3A; }
      header .header-top .container div.spacer > p.slogan {
        display: block;
        text-align: center;
        font-size: 13px;
        margin: 0;
        line-height: 18px;
        font-style: italic;
        opacity: 0.8; } }
  header .menu-backdrop {
    display: none;
    background: #111111; }
    header .menu-backdrop nav {
      opacity: 0;
      overflow: hidden;
      max-height: 0;
      transition: all 0.4s ease;
      font-size: 16px; }
      header .menu-backdrop nav > ul {
        margin-top: 30px; }
      header .menu-backdrop nav ul {
        padding: 2px 0 10px 24px; }
        header .menu-backdrop nav ul li {
          padding: 0 0 0 3px; }
          header .menu-backdrop nav ul li a {
            display: block;
            padding: 5px 0;
            text-decoration: none; }
    header .menu-backdrop nav.opened {
      opacity: 1;
      max-height: 90vh; }

@media (min-width: 992px) {
  header .menu-backdrop div.container > div {
    display: flex;
    justify-content: space-between; }
  header .menu-backdrop nav {
    opacity: 1;
    max-height: 90vh;
    overflow: inherit; }
    header .menu-backdrop nav ul {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%; }
      header .menu-backdrop nav ul li {
        margin: 0;
        padding: 0; }
        header .menu-backdrop nav ul li a {
          display: block;
          padding: 7px 20px 8px;
          transition: all 0.3s ease; }
        header .menu-backdrop nav ul li > a:hover,
        header .menu-backdrop nav ul li a:focus-visible {
          background: #B8903A;
          color: #080808; }
        header .menu-backdrop nav ul li ul.dropdown {
          opacity: 0;
          visibility: hidden;
          max-height: 0;
          padding: 0;
          margin: 0;
          position: absolute;
          display: flex;
          flex-direction: column;
          border-bottom-left-radius: 5px;
          border-bottom-right-radius: 5px;
          background: #0A0A0A;
          width: auto;
          box-shadow: 0 13px 10px #0000005e;
          transition: all 0.2s ease; }
          header .menu-backdrop nav ul li ul.dropdown li a {
            background: none;
            color: #DEDEDE; }
          header .menu-backdrop nav ul li ul.dropdown li > a:hover,
          header .menu-backdrop nav ul li ul.dropdown li a:focus-visible {
            background: #1A1A1A;
            color: white; }
          header .menu-backdrop nav ul li ul.dropdown li.active a {
            background: #B8903A;
            color: #080808; }
      header .menu-backdrop nav ul li.active a {
        background: #B8903A;
        color: #080808; }
      header .menu-backdrop nav ul li:hover ul.dropdown,
      header .menu-backdrop nav ul li:focus-within ul.dropdown,
      header .menu-backdrop nav ul li:focus ul.dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 1200px; } }
button#toggleMenu {
  margin: 0 0 0 15px;
  border: 0;
  padding: 0;
  width: 30px;
  height: 38px;
  position: relative;
  cursor: pointer;
  background: none; }
  button#toggleMenu span {
    left: 0;
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 1px;
    opacity: 1;
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out; }
  button#toggleMenu span:nth-child(1) {
    top: 9px; }
  button#toggleMenu span:nth-child(2), button#toggleMenu span:nth-child(3) {
    top: 18px; }
  button#toggleMenu span:nth-child(4) {
    top: 27px; }

button#toggleMenu.opened span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%; }
button#toggleMenu.opened span:nth-child(2) {
  transform: rotate(45deg); }
button#toggleMenu.opened span:nth-child(3) {
  transform: rotate(-45deg); }
button#toggleMenu.opened span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%; }

@media (min-width: 992px) {
  button#toggleMenu {
    display: none; } }
@media (min-width: 992px) {
  header .menu-backdrop nav {
    display: flex; }
    header .menu-backdrop nav ul li.active a {
      background: #B8903A;
      color: #080808; } }
.btn > svg, td > svg, a > svg {
  height: 1.0em !important;
  width: 1.0em !important;
  margin: 0 4px -0.15em 0;
  vertical-align: 0 !important; }

.btn {
  transition: 0.3s ease all; }

.btn-default {
  color: white;
  background: none;
  border: 2px white solid; }

.btn-primary {
  background: white;
  color: black;
  border: 2px white solid; }

.btn-primary:hover, .btn-primary:active {
  background: white;
  color: black;
  border: 2px white solid; }

.top-image {
  margin: -99px 0 0 0; }
  .top-image img {
    width: 100%;
    height: 20vh;
    min-height: 200px;
    max-height: 300px;
    object-position: top;
    object-fit: cover;
    border-bottom: 3px #626262 solid;
    margin: 0; }

@media (min-width: 992px) {
  .top-image {
    margin: -150px 0 0; }
    .top-image img {
      height: 40vh;
      width: 100%;
      max-height: 300px;
      margin: 0 auto;
      display: block;
      min-height: 300px; } }
footer {
  background: #080808;
  min-height: 40px;
  padding: 20px 0 0 0;
  border-top: 1px #2A2A2A solid;
  color: #DEDEDE; }
  footer .footer-content .center-block {
    margin: 30px 0;
    text-align: center; }
  footer .footer-content a.logo {
    display: block;
    width: 100%;
    margin: 0 auto; }
    footer .footer-content a.logo img {
      height: 22px;
      width: auto;
      display: block;
      margin: 0 auto; }
  footer .footer-content .slogan {
    text-align: center;
    max-width: 300px;
    margin: 10px auto 10px;
    font-size: 13px; }
  footer div.copyright {
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
    background: #040404;
    padding: 4px;
    opacity: 0.8; }

@media (min-width: 992px) {
  footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 20px; }
    footer .footer-content .center-block {
      margin: 0; }
    footer .footer-content a.logo {
      width: auto;
      margin: 0; }
    footer .footer-content .slogan {
      margin: 0;
      text-align: right; } }
ol.breadcrumbs {
  list-style: none;
  padding: 0;
  min-height: 17px;
  font-size: 14px;
  display: inline-block;
  margin: 20px 0 0 auto; }
  ol.breadcrumbs li {
    float: left;
    padding-right: 10px;
    color: #888;
    line-height: 17px; }
    ol.breadcrumbs li a {
      text-decoration: none; }
  ol.breadcrumbs li:after {
    content: "/";
    margin: 1px 0 0 10px; }
  ol.breadcrumbs li:last-child:after {
    display: none;
    content: ""; }

.page-images {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  .page-images li {
    width: calc(50% - 5px);
    margin: 0 4px 5px 0; }
    .page-images li img {
      width: 100%;
      border-radius: 3px; }
  @media (min-width: 772px) {
    .page-images li {
      width: calc(25% - 5px);
      border-radius: 10px; } }

.pages-sub-list {
  margin-top: 20px; }
  .pages-sub-list .pages-sub-item .thumbnail {
    background: none; }
  .pages-sub-list .pages-sub-item img {
    width: 100%;
    border-radius: 3px; }
  .pages-sub-list .pages-sub-item h2 {
    font-size: 25px;
    margin-top: 4px; }
  .pages-sub-list .pages-sub-item time {
    opacity: 0.8;
    font-size: 12px; }
  @media (min-width: 772px) {
    .pages-sub-list .pages-sub-item .thumbnail {
      width: 100%;
      padding: 0;
      border: 0;
      display: flex;
      justify-content: space-between; }
    .pages-sub-list .pages-sub-item a {
      width: 100%;
      max-width: 240px;
      line-height: 27px; }
    .pages-sub-list .pages-sub-item div.caption {
      padding-top: 0;
      flex: 1; }
      .pages-sub-list .pages-sub-item div.caption h2 {
        margin: 0 0 10px;
        font-size: 20px; } }

#searchResultList {
  margin: 30px 0 20px; }
  #searchResultList ol li {
    margin: 0 0 30px;
    line-height: 13px; }
    #searchResultList ol li time {
      opacity: 0.8;
      font-size: 12px; }

.filter-block {
  margin: 20px 0; }

.hero {
  padding: 80px 0 60px;
  text-align: center; }
  .hero .hero-model {
    font-family: 'Luxurious Script', cursive;
    font-size: clamp(28px, 5vw, 48px);
    color: #B8903A;
    margin: 0 0 24px;
    font-weight: 400; }
  .hero .hero-desc {
    font-weight: 300;
    font-size: clamp(14px, 2vw, 17px);
    color: #888;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8; }

section#landing-top {
  position: relative;
  overflow: hidden;
  color: white;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -100px;
  margin-bottom: 0;
  height: 100vh;
  min-height: 520px; }
  section#landing-top picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block; }
    section#landing-top picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  section#landing-top div.content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(350deg, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0) 90%);
    padding: 40px 24px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    section#landing-top div.content h1 {
      color: var(--link-menu-color);
      text-transform: uppercase;
      font-size: 68px;
      font-weight: 800;
      margin: 60px 0 16px;
      line-height: 1.1;
      max-width: 300px; }
    section#landing-top div.content h2 {
      color: rgba(255, 255, 255, 0.75);
      margin: 0 0 40px;
      font-size: 22px;
      font-weight: 300;
      max-width: 230px; }
    section#landing-top div.content #landing-top-features {
      max-width: 100%;
      margin: 0 0 30px;
      display: flex; }
      section#landing-top div.content #landing-top-features p {
        background: rgba(0, 0, 0, 0.6);
        padding: 9px 12px;
        border-radius: 3px;
        color: #dfdfdf;
        line-height: 19px;
        border-left: 2px white solid;
        min-height: 75px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        opacity: 0;
        font-weight: 300; }
        section#landing-top div.content #landing-top-features p b {
          font-size: 120%;
          font-weight: 700;
          margin-bottom: 6px;
          display: block; }
    section#landing-top div.content #landing-top-features.slick-initialized p {
      opacity: 1;
      visibility: visible; }

@media (min-width: 992px) {
  section#landing-top {
    height: 92vh;
    min-height: 700px;
    margin-top: -170px;
    margin-bottom: 0;
    margin-left: calc(50% - 50vw); }
    section#landing-top picture.img-desktop {
      display: block; }
    section#landing-top picture.img-mobile {
      display: none; }
    section#landing-top div.content {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
      padding: 0 max(60px, calc((100vw - 1200px) / 2 + 30px));
      padding-bottom: 80px;
      justify-content: flex-end; }
      section#landing-top div.content h1 {
        font-size: 107px;
        max-width: 70%;
        margin: 0 0 20px; }
      section#landing-top div.content h2 {
        max-width: 50%;
        font-size: 40px;
        margin-bottom: 36px;
        line-height: 120%;
        letter-spacing: 1px; }
      section#landing-top div.content #landing-top-features {
        max-width: 500px;
        margin: 0 0 36px;
        justify-content: flex-start; }
        section#landing-top div.content #landing-top-features p {
          background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); } }
section#landing-gallery {
  padding: 60px 0; }
  section#landing-gallery .gallery-track {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; }
  section#landing-gallery .gallery-item {
    flex: 0 0 calc(33.333% - 8px); }
    section#landing-gallery .gallery-item a {
      display: block;
      width: 100%; }
    section#landing-gallery .gallery-item picture {
      display: block;
      width: 100%; }
    section#landing-gallery .gallery-item img {
      display: block;
      width: 100%;
      height: 260px;
      object-fit: cover;
      cursor: pointer;
      transition: transform 0.4s ease; }
    section#landing-gallery .gallery-item:hover img {
      transform: scale(1.04); }
  @media (max-width: 991px) {
    section#landing-gallery {
      padding: 0; }
      section#landing-gallery .gallery-scroll-wrapper {
        position: relative; }
      section#landing-gallery .gallery-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center; }
      section#landing-gallery .gallery-track {
        flex-wrap: nowrap;
        gap: 16px;
        will-change: transform; }
      section#landing-gallery .gallery-item {
        flex: 0 0 200vw; }
        section#landing-gallery .gallery-item picture {
          display: block; }
        section#landing-gallery .gallery-item img {
          height: auto;
          transition: none; } }

section#landing-features {
  padding: 40px 0 60px; }
  section#landing-features .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px; }
  section#landing-features .feature-item {
    flex: 1 1 100%;
    border-top: 2px solid var(--link-menu-color);
    padding-top: 24px; }
    section#landing-features .feature-item .feature-image {
      margin-bottom: 20px; }
      section#landing-features .feature-item .feature-image picture {
        display: block;
        width: 100%; }
      section#landing-features .feature-item .feature-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 4px;
        display: block; }
    section#landing-features .feature-item .feature-title {
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 12px; }
    section#landing-features .feature-item .feature-text {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.75;
      color: #888;
      margin: 0; }
  @media (min-width: 768px) {
    section#landing-features .features-grid {
      gap: 60px 80px; }
    section#landing-features .feature-item {
      flex: 1 1 calc(50% - 40px); } }

.modal-content {
  background: #383838; }
  .modal-content .modal-header h2 {
    font-size: 30px;
    margin: 0; }

.error-summary {
  border: 2px orange solid;
  color: orange;
  padding: 10px;
  border-radius: 5px;
  margin: 0 0 30px; }

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
  color: orange; }

/*# sourceMappingURL=site.css.map */
