@charset "UTF-8";
:root {
  --slider-previous-max-width: 0;
  --slider-next-max-width: 0; }

/* Based on https://hankchizljaw.com/wrote/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2; }

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

@font-face {
  font-family: 'Amsi Pro';
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/AmsiPro-XLight.ttf") format("truetype"); }

@font-face {
  font-family: 'Amsi Pro';
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/AmsiPro-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'Amsi Pro';
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/AmsiPro-SemiBold.ttf") format("truetype"); }

@font-face {
  font-family: 'Amsi Pro Condensed';
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/AmsiProCond-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'Amsi Pro Condensed';
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/AmsiProCond-Bold.ttf") format("truetype"); }

body {
  font-family: "Amsi Pro Condensed", sans-serif;
  background: #1d242a;
  color: #ffffff;
  font-size: 1.25rem; }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  text-transform: uppercase; }

h2 {
  font-size: 4rem; }

h3 {
  font-size: 2.5rem; }

h4 {
  font-size: 2rem; }

h5 {
  font-size: 1.75rem; }

h6 {
  font-size: 1.5rem; }

dl {
  display: flex;
  flex-wrap: wrap; }
  dl dt {
    width: 50%;
    font-weight: bold; }
  dl dd {
    width: 50%; }
  dl dt, dl dd {
    margin-bottom: 1rem; }

.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  min-width: 15rem;
  line-height: 1;
  background: #fba824;
  border: none;
  border-radius: 1.5rem;
  color: #212121;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent; }
  @media (max-width: 1079px) {
    .site-header {
      padding: 1.5rem; } }
  @media (min-width: 1080px) {
    .site-header {
      padding: 2.5rem; } }
  .site-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    opacity: 0;
    transition: 0.3s opacity;
    z-index: -1; }
  body.scrolled .site-header::after {
    opacity: 0.3333; }
  .site-header .site-title {
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 3; }
  .site-header .logo {
    height: 2.5rem; }
  @media (max-width: 1079px) {
    .site-header .site-menu {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 2rem;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 6rem 4rem;
      min-height: 100%;
      background: #1e311b url(images/lake-small.png) no-repeat bottom;
      background-size: contain;
      opacity: 0;
      pointer-events: none;
      transition: 0.3s opacity; }
      .site-header .site-menu.show {
        opacity: 1;
        pointer-events: auto; }
      .site-header .site-menu button.close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem; } }
  .site-header nav ul {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #ffffff;
    text-transform: uppercase; }
    .site-header nav ul li {
      position: relative; }
      .site-header nav ul li a::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 0.0625rem;
        background: #ffffff;
        opacity: 0;
        transition: 0.3s all; }
      .site-header nav ul li a:hover::after,
      .site-header nav ul li.active a::after {
        opacity: 1; }
    .site-header nav ul a {
      color: currentColor;
      text-decoration: none; }
  .site-header nav.language-menu {
    display: flex;
    align-items: center;
    gap: 1rem; }
    .site-header nav.language-menu::after {
      content: '';
      display: block;
      background: url(images/languages.png) no-repeat center; }
  @media (max-width: 1079px) {
    .site-header nav.main-menu ul {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      font-size: 1.5rem; }
    .site-header nav.language-menu::after {
      width: 1.5rem;
      height: 1.5rem;
      background-size: 1.2rem; } }
  @media (min-width: 1080px) {
    .site-header nav.main-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none; }
      .site-header nav.main-menu ul {
        pointer-events: auto; }
    .site-header nav.language-menu::after {
      width: 2rem;
      height: 2rem;
      background-size: 1.6rem; } }
  .site-header .menu-toggle, .site-header button.close {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent no-repeat center;
    background-size: 2rem; }
    @media (min-width: 1080px) {
      .site-header .menu-toggle, .site-header button.close {
        display: none; } }
  .site-header .menu-toggle {
    background-image: url(images/icons/menu-button.svg); }
  .site-header button.close {
    background-image: url(images/icons/close-button.svg);
    border: none;
    cursor: pointer; }

.site-content > section {
  position: relative;
  padding: 6rem 0; }
  .site-content > section > * {
    position: relative;
    z-index: 1; }
  .site-content > section .section-header {
    margin-bottom: 3rem; }
    .site-content > section .section-header .section-title {
      font-size: 4rem; }
  .site-content > section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0; }
    .site-content > section .section-background img, .site-content > section .section-background video {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .site-content > section .section-background.parallax-effect img, .site-content > section .section-background.parallax-effect video {
      height: 200%; }
  .site-content > section:first-child {
    margin-top: 7.5rem;
    padding-top: 0;
    min-height: calc(100vh - 7.5rem); }
    .site-content > section:first-child .section-background {
      top: -7.5rem; }

.site-content > section.home-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .site-content > section.home-banner .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; }

.site-content > section.home-banner + section.data-sheet::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0;
  padding-top: 30%;
  background: url(images/reeds-darkgreen.png) no-repeat bottom;
  background-size: cover; }
  @media (max-width: 1079px) {
    .site-content > section.home-banner + section.data-sheet::before {
      padding-top: 50%;
      background-image: url(images/reeds-darkgreen-small.png); } }

.site-content > section.data-sheet {
  background: #1e311b url(images/lake.png) no-repeat bottom;
  background-size: contain; }
  @media (max-width: 1079px) {
    .site-content > section.data-sheet {
      padding: 2rem;
      background-image: url(images/lake-small.png); } }
  @media (min-width: 1080px) {
    .site-content > section.data-sheet {
      display: grid;
      grid-template-areas: '. image . header .' '. . . header .' '. content content content .';
      grid-template-rows: auto auto 1fr;
      grid-template-columns: auto 22.5rem 7.5rem 30rem auto; } }
  .site-content > section.data-sheet .section-header {
    grid-area: header;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    height: 100%; }
    .site-content > section.data-sheet .section-header .section-title {
      font-size: 2.5rem; }
    .site-content > section.data-sheet .section-header .section-subtitle {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 1rem;
      font-size: 1.125rem;
      text-transform: none; }
    .site-content > section.data-sheet .section-header .ratings {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 2rem; }
      .site-content > section.data-sheet .section-header .ratings .rating {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        color: #ffffff;
        text-decoration: none; }
    .site-content > section.data-sheet .section-header dl dt {
      width: 35%; }
      .site-content > section.data-sheet .section-header dl dt::after {
        content: ':'; }
  .site-content > section.data-sheet .image {
    grid-area: image;
    box-shadow: 0.5rem 0.5rem 0 rgba(255, 255, 255, 0.1); }
  .site-content > section.data-sheet .section-content {
    grid-area: content;
    margin: 7.5rem auto 15rem;
    max-width: 75%;
    text-align: center; }
    .site-content > section.data-sheet .section-content > * + * {
      margin-top: 2rem; }

section.reviews {
  background: #015b7e; }
  section.reviews::before, section.reviews::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 0;
    padding-top: 3.3333%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1; }
  section.reviews::before {
    bottom: 100%;
    margin-bottom: -1px;
    background-image: url(images/wave.svg); }
  section.reviews::after {
    top: 100%;
    margin-top: -1px;
    background-image: url(images/wave-upsidedown.svg); }
  section.reviews .section-content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 72rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem; }
    section.reviews .section-content .review {
      width: 18rem;
      text-align: center; }
      section.reviews .section-content .review > * + * {
        margin-top: 1rem; }
      section.reviews .section-content .review blockquote {
        font-size: 1.5rem;
        font-weight: bold; }
        section.reviews .section-content .review blockquote::before {
          content: '“'; }
        section.reviews .section-content .review blockquote::after {
          content: '”'; }
      section.reviews .section-content .review cite {
        display: block;
        font-size: 1rem;
        font-style: normal; }
      section.reviews .section-content .review .review-rating {
        display: block;
        font-style: normal; }
        section.reviews .section-content .review .review-rating::before {
          color: #fba824; }
        section.reviews .section-content .review .review-rating.stars-5::before {
          content: '★★★★★'; }
        section.reviews .section-content .review .review-rating.stars-4::before {
          content: '★★★★'; }
        section.reviews .section-content .review .review-rating.stars-4::after {
          content: '☆'; }
        section.reviews .section-content .review .review-rating.stars-3::before {
          content: '★★★'; }
        section.reviews .section-content .review .review-rating.stars-3::after {
          content: '☆☆'; }
        section.reviews .section-content .review .review-rating.stars-2::before {
          content: '★★'; }
        section.reviews .section-content .review .review-rating.stars-2::after {
          content: '☆☆☆'; }
        section.reviews .section-content .review .review-rating.stars-1::before {
          content: '★'; }
        section.reviews .section-content .review .review-rating.stars-1::after {
          content: '☆☆☆☆'; }

section.gallery {
  background-color: #32302b; }
  section.gallery .section-header {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 45rem;
    padding-top: 4rem;
    padding-bottom: 2rem;
    text-align: center; }
    section.gallery .section-header p {
      color: #ddd3b5; }
    section.gallery .section-header > * + * {
      margin-top: 2rem; }
  section.gallery .section-content .slider.initialized .dots .dot {
    background: #ddd3b5; }

section.about {
  background-color: #1e311b;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  gap: 2rem; }
  section.about .section-header {
    flex: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 60rem;
    text-align: center; }
  section.about .section-content {
    flex: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 45rem;
    text-align: center; }
  section.about .section-footer {
    flex: none;
    margin-bottom: 8rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 60rem;
    text-align: center; }
  @media (min-width: 1080px) {
    section.about.split {
      justify-content: center; }
      section.about.split .section-header,
      section.about.split .section-content,
      section.about.split .section-footer {
        flex: none;
        margin-left: auto;
        margin-right: calc(50vw + 7.5rem);
        padding-left: 0;
        padding-right: 0;
        max-width: 30rem;
        width: 100%;
        text-align: left; }
      section.about.split .section-header {
        margin-bottom: 0; }
      section.about.split .section-background {
        left: 50%; } }

section.creators {
  background-color: #1a3854; }
  section.creators .section-header {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 45rem;
    text-align: center; }
    section.creators .section-header .section-title {
      margin-bottom: 2rem; }
  section.creators .section-content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 72rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem; }
    section.creators .section-content .creator-profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 1rem;
      position: relative;
      width: 18rem;
      text-align: center; }
      section.creators .section-content .creator-profile > * {
        order: 2; }
      section.creators .section-content .creator-profile .creator-photo {
        order: 1;
        margin-bottom: 1rem;
        border-radius: 50% 0 50% 50%; }
      section.creators .section-content .creator-profile .article-link {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        text-indent: -1000em; }
      section.creators .section-content .creator-profile::after {
        order: 3;
        content: '';
        display: block;
        margin-top: 1rem;
        width: 5rem;
        height: 0.125rem;
        background: currentColor; }

.site-content > section.article {
  position: relative;
  background-color: #ffffff;
  color: #212121;
  font-family: "Amsi Pro", sans-serif;
  font-size: 1.125rem;
  font-weight: 200; }
  .site-content > section.article h2, .site-content > section.article h3, .site-content > section.article h4, .site-content > section.article h5, .site-content > section.article h6 {
    font-family: "Amsi Pro Condensed", sans-serif;
    font-weight: bold; }
  .site-content > section.article strong {
    font-weight: 700; }
  .site-content > section.article .article-header {
    padding-bottom: 3rem; }
    @media (max-width: 1079px) {
      .site-content > section.article .article-header {
        padding-top: calc(50vh - 7.5rem + 3rem); } }
    @media (min-width: 1080px) {
      .site-content > section.article .article-header {
        padding-top: calc(75vh - 7.5rem + 3rem); } }
    .site-content > section.article .article-header > *:not(.section-header-background) {
      margin-left: auto;
      margin-right: auto;
      padding-left: 2rem;
      padding-right: 2rem;
      max-width: 60rem; }
    .site-content > section.article .article-header .section-header-background {
      position: absolute;
      top: -7.5rem;
      left: 0;
      right: 0;
      overflow: hidden;
      z-index: 0; }
      @media (max-width: 1079px) {
        .site-content > section.article .article-header .section-header-background {
          height: 50vh; } }
      @media (min-width: 1080px) {
        .site-content > section.article .article-header .section-header-background {
          height: 75vh; } }
      .site-content > section.article .article-header .section-header-background img {
        width: 100%;
        height: 200%;
        -o-object-fit: cover;
           object-fit: cover; }
      .site-content > section.article .article-header .section-header-background::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0;
        padding-top: 30%;
        background: url(images/reeds-white.png) no-repeat bottom;
        background-size: cover; }
        @media (max-width: 1079px) {
          .site-content > section.article .article-header .section-header-background::after {
            padding-top: 50%;
            background-image: url(images/reeds-white-small.png); } }
  .site-content > section.article .article-content > *:not(.slider) {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 60rem; }
  .site-content > section.article .article-content > * + * {
    margin-top: 4rem; }
  @media (min-width: 1080px) {
    .site-content > section.article .article-content .text p {
      padding-right: 15rem; } }
  .site-content > section.article .article-content .text blockquote {
    font-size: 2rem;
    font-weight: 400; }
    .site-content > section.article .article-content .text blockquote::before {
      content: '“'; }
    .site-content > section.article .article-content .text blockquote::after {
      content: '”'; }
  .site-content > section.article .article-content .text * + * {
    margin-top: 2rem; }

@media (max-width: 1079px) {
  .related {
    padding: 2rem;
    background: #d1d1d1; }
    .related .image {
      float: left;
      margin-top: -4.8rem;
      padding-right: 1rem;
      padding-bottom: 1rem;
      width: 8rem; }
    .related .description h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      min-height: 4.75rem; } }

@media (min-width: 1080px) {
  .related {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    gap: 1rem;
    padding-left: 2rem;
    padding-right: 2rem; }
    .related .image {
      flex: none;
      width: 12rem; }
    .related .description {
      flex: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 2rem;
      background: #d1d1d1; }
      .related .description a {
        color: currentColor;
        font-weight: bold; } }

.image {
  position: relative; }
  .image > a {
    display: inline-block;
    position: relative; }
    .image > a::after {
      content: '';
      display: block;
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 2.5rem;
      height: 2.5rem;
      background: #ffffff url(images/icons/zoom-in.svg) no-repeat center;
      background-size: 1.5rem;
      border-radius: 50%;
      opacity: 0;
      transition: 0.3s opacity; }
    .image > a:hover::after {
      opacity: 1; }
  .image img {
    width: 100%;
    height: auto; }
  @media (min-width: 1080px) {
    .site-content .article-content .image.article-image {
      padding-left: 0 !important;
      padding-right: 0 !important; }
      .site-content .article-content .image.article-image > img,
      .site-content .article-content .image.article-image > a {
        margin-left: calc((60rem - 100vw) / 2);
        max-width: none;
        width: calc(50vw + (60rem / 4)); }
      .site-content .article-content .image.article-image.full > img,
      .site-content .article-content .image.article-image.full > a {
        margin-right: calc((60rem - 100vw) / 2);
        width: 100vw; } }
  .image .caption {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold; }
    @media (max-width: 1079px) {
      .image .caption {
        padding-left: 1rem;
        padding-right: 1rem; } }
    @media (min-width: 1080px) {
      .image .caption {
        padding-left: 2rem;
        padding-right: 15rem; } }
  @media (max-width: 1079px) {
    .image .side-caption {
      margin-top: 1rem;
      padding-left: 1rem;
      padding-right: 1rem;
      font-size: 1rem;
      font-weight: bold; } }
  @media (min-width: 1080px) {
    .image .side-caption {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 2rem;
      position: absolute;
      left: 52.5rem;
      top: 0;
      bottom: 0;
      width: 15rem; } }

.lightbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 30; }
  .lightbox-wrap .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1d242a;
    opacity: 0;
    transition: 0.3s opacity;
    z-index: 1; }
  .lightbox-wrap .close {
    position: absolute;
    top: 3.5rem;
    right: 3.5rem;
    padding: 0;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #212121;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0;
    overflow: hidden;
    text-indent: -1000em;
    transition: 0.3s color, 0.3s opacity;
    z-index: 3; }
    .lightbox-wrap .close::after {
      content: '×';
      position: absolute;
      top: 0;
      left: 0;
      width: 2rem;
      height: 2rem;
      line-height: 2rem;
      color: #212121;
      text-align: center;
      text-indent: 0;
      transition: 0.3s transform; }
    .lightbox-wrap .close:hover {
      color: #fba824; }
      .lightbox-wrap .close:hover::after {
        transform: scale(1.5); }
  .lightbox-wrap .lightbox-content {
    position: relative;
    opacity: 0;
    transition: 0.3s opacity;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none; }
    .lightbox-wrap .lightbox-content > * {
      pointer-events: auto; }
    .lightbox-wrap .lightbox-content .slider {
      margin: 2rem 0; }
      .lightbox-wrap .lightbox-content .slider .image.slide {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: stretch;
        max-width: 80vw;
        height: calc(100vh - 8rem); }
        .lightbox-wrap .lightbox-content .slider .image.slide .image-wrap {
          flex: auto;
          display: block; }
        .lightbox-wrap .lightbox-content .slider .image.slide img {
          width: auto;
          max-width: 100%;
          height: 100%;
          max-height: calc(100vh - 14rem);
          -o-object-fit: contain;
             object-fit: contain; }
    .lightbox-wrap .lightbox-content .video-player {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 6rem;
      width: calc(100% - 12rem);
      height: calc(100% - 12rem);
      background: black; }
      .lightbox-wrap .lightbox-content .video-player iframe {
        width: 100%;
        height: 100%;
        border: none; }
  .lightbox-wrap.show {
    pointer-events: auto; }
    .lightbox-wrap.show .lightbox-overlay {
      opacity: 0.98; }
    .lightbox-wrap.show .close {
      opacity: 1; }
    .lightbox-wrap.show .lightbox-content {
      opacity: 1; }

@media (max-width: 1079px) {
  .slider .image.slide {
    padding: 0.5rem; } }

@media (min-width: 1080px) {
  .slider .image.slide {
    padding: 1rem; } }

.slider .image.slide img {
  width: auto;
  max-height: 75vh; }
  @media (max-width: 1079px) {
    .slider .image.slide img {
      max-width: calc(100vw - 5rem);
      height: calc((100vw - 2rem) * 0.5625);
      -o-object-fit: contain;
         object-fit: contain; } }
  @media (min-width: 1080px) {
    .slider .image.slide img {
      height: 45rem; } }

.slider .slick-slide img {
  transition: 0.3s filter; }

.slider .slick-slide img, .slider .slick-slide .caption {
  transition: 0.3s opacity; }

.slider .slick-slide:not(.slick-active) {
  cursor: pointer; }
  .slider .slick-slide:not(.slick-active) .image-wrap {
    position: relative;
    pointer-events: none; }
  .slider .slick-slide:not(.slick-active) img {
    filter: brightness(70%);
    opacity: 0.8; }
  .slider .slick-slide:not(.slick-active) .caption {
    opacity: 0; }
  .slider .slick-slide:not(.slick-active).previous-element .image-wrap::before, .slider .slick-slide:not(.slick-active).next-element .image-wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    z-index: 1; }
    @media (max-width: 1079px) {
      .slider .slick-slide:not(.slick-active).previous-element .image-wrap::before, .slider .slick-slide:not(.slick-active).next-element .image-wrap::before {
        left: 0;
        right: 0;
        background-size: 2rem; } }
    @media (min-width: 1080px) {
      .slider .slick-slide:not(.slick-active).previous-element .image-wrap::before, .slider .slick-slide:not(.slick-active).next-element .image-wrap::before {
        left: 2rem;
        right: 2rem; } }
  .slider .slick-slide:not(.slick-active).previous-element .image-wrap::before {
    background-image: url("data:image/svg+xml;utf0,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'><path d='M15 18l-6-6 6-6'/></svg>");
    background-position: right; }
  .slider .slick-slide:not(.slick-active).next-element .image-wrap::before {
    background-image: url("data:image/svg+xml;utf0,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'><path d='M9 18l6-6-6-6'/></svg>");
    background-position: left; }

.slider .slick-dots {
  display: flex;
  justify-content: center; }
  .slider .slick-dots button {
    display: block;
    margin: 1rem;
    padding: 0;
    width: 0.5625rem;
    height: 0.5625rem;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.25;
    overflow: hidden;
    text-indent: -1000em; }
    .article-content .slider .slick-dots button {
      background: #212121; }
  .slider .slick-dots .slick-active button {
    opacity: 1; }

.site-footer {
  background: #1d242a;
  color: #ffffff; }
  .site-footer .footer-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95vw;
    background: url(images/footer.jpg) center no-repeat;
    background-size: cover; }
    .site-footer .footer-title h2 {
      position: absolute; }
  .site-footer .external-links {
    padding: 8rem 0; }
    .site-footer .external-links > * + * {
      margin-top: 4rem; }
    .site-footer .external-links .socials ul {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem; }
      @media (min-width: 1080px) {
        .site-footer .external-links .socials ul {
          gap: 4rem; } }
      .site-footer .external-links .socials ul a {
        opacity: 0.3333;
        transition: 0.3s opacity; }
        .site-footer .external-links .socials ul a:hover {
          opacity: 1; }
      .site-footer .external-links .socials ul img {
        height: 2rem; }
        @media (min-width: 1080px) {
          .site-footer .external-links .socials ul img {
            height: 3rem; } }
    .site-footer .external-links .producers {
      line-height: 2;
      text-align: center;
      text-transform: uppercase;
      font-size: 1rem; }
      .site-footer .external-links .producers .title {
        font-size: 1.25rem; }
      .site-footer .external-links .producers .name {
        font-size: 1.25rem; }
      .site-footer .external-links .producers .producers-links {
        margin-top: 2rem;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem; }
  .site-footer .footer-navigation {
    display: flex;
    padding: 3rem;
    border-top: 0.0625rem solid #333a40;
    font-weight: bold;
    text-transform: uppercase; }
    @media (max-width: 1079px) {
      .site-footer .footer-navigation {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem; } }
    @media (min-width: 1080px) {
      .site-footer .footer-navigation {
        align-items: center;
        justify-content: center;
        gap: 6rem; } }
    .site-footer .footer-navigation .footer-menu ul {
      display: flex;
      justify-content: flex-start;
      gap: 1rem;
      margin: 0;
      padding: 0;
      list-style: none; }
      @media (max-width: 1079px) {
        .site-footer .footer-navigation .footer-menu ul {
          flex-direction: column;
          align-items: flex-start; } }
      @media (min-width: 1080px) {
        .site-footer .footer-navigation .footer-menu ul {
          align-items: center; } }
      .site-footer .footer-navigation .footer-menu ul a {
        display: block;
        position: relative;
        color: #ffffff;
        text-decoration: none; }
        .site-footer .footer-navigation .footer-menu ul a::after {
          content: '';
          display: block;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          height: 0.0625rem;
          background: #ffffff;
          opacity: 0;
          transition: 0.3s all; }
        .site-footer .footer-navigation .footer-menu ul a:hover::after {
          opacity: 1; }
    .site-footer .footer-navigation .copyright {
      opacity: 0.5; }
    .site-footer .footer-navigation .logo img {
      height: 2rem; }
/*# sourceMappingURL=styles.css.map */