.masthead {
  position: relative;
  min-height: calc(100dvh - var(--margin) * 2 - 26px);
}
.masthead .logo {
  width: 100vw;
  left: calc(var(--margin) * -1);
  position: absolute;
  bottom: 0px;
  height: auto;
  opacity: 1;
  transition: opacity 500ms;
  z-index: 1;
  pointer-events: none;
}
.masthead .logo.soft {
  opacity: 0.1;
}

@media screen and (max-width: 545px) {
  .masthead {
    min-height: calc(100dvh - var(--margin) * 2 - 26px);
  }
  .masthead .logo {
    position: absolute;
    bottom: 0;
  }
  section.section--large-text {
    position: absolute;
    top: calc(var(--margin) * 2);
  }
  section.section--large-text .h-lg {
    white-space: pre-line;
  }
}
section.section--large-text .h-lg {
  white-space: pre-line;
}

.section--featured {
  min-height: auto;
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.section--featured .featured-outer {
  width: 100vw;
  white-space: nowrap; /* Keep all items in one line */
  position: relative; /* Position relative for inner div */
  margin-top: var(--margin);
  margin-left: calc(var(--margin) * -1);
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow-x: scroll;
  margin-bottom: 200px;
}
@media screen and (max-width: 500px) {
  .section--featured .featured-outer {
    margin-bottom: 0px;
  }
}
.section--featured .featured-outer::-webkit-scrollbar {
  display: none;
}
.section--featured .marquee-inner {
  display: inline-flex;
  gap: var(--margin);
  padding-left: var(--margin);
}
.section--featured .marquee-inner.marquee-animate {
  animation: scrollEffect 800s linear infinite;
  animation-delay: 1s;
}
.section--featured .marquee-inner.marquee-animate:hover {
  animation-play-state: paused;
}
.section--featured img {
  width: 36vw;
  height: 26vw;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 800px) {
  .section--featured img {
    width: 50vw;
    height: 40vw;
  }
}
@media screen and (max-width: 500px) {
  .section--featured img {
    width: 70vw;
    height: 56vw;
  }
}
.section--featured a {
  transition: font-variation-settings 200ms;
  font-variation-settings: "slnt" 0;
}
.section--featured a:hover {
  font-variation-settings: "slnt" -19;
}

.section--video {
  z-index: 2;
  margin-bottom: 100px;
}

.section--largeImage {
  width: 100%;
  height: 100vh;
  margin: 0;
}
.section--largeImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .section--largeImage {
    width: 100%;
    height: auto;
  }
  .section--largeImage img {
    width: 100%;
    height: auto;
    object-fit: inherit;
  }
}
/* Keyframes for scroll animation */
@keyframes scrollEffect {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes navItem {
  0% {
    font-variation-settings: "slnt" -30;
    position: relative;
    left: 6px;
  }
  100% {
    font-variation-settings: "slnt" 0;
    position: relative;
    left: 0px;
  }
}
nav li a {
  animation: navItem 1s 0.2s ease-out, logo 700ms 0.2s ease-out both;
}

@keyframes logo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section--news {
  min-height: auto;
}
.section--news h2 {
  margin-bottom: 2rem;
}
.section--news .section-inner {
  display: flex;
}
.section--news .section-inner > div:first-child {
  flex: 1;
}
.section--news .section-inner > div:nth-child(2) {
  flex: 2;
}
.section--news .section-inner a:hover .news-item .header svg {
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .section--news .section-inner {
    display: block;
  }
}
.section--news .news-item {
  border-bottom: 1px solid white;
  padding-bottom: var(--margin);
  margin-bottom: var(--margin);
  position: relative;
}
.section--news .news-item .header {
  display: flex;
  margin-bottom: 20px;
}
.section--news .news-item .header > * {
  width: 25%;
}
.section--news .news-item .header svg {
  position: absolute;
  right: 0px;
  width: auto;
  height: 20px;
}
.section--news p {
  margin: 0;
  font-size: 15px;
  max-width: 600px;
}

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