@charset "UTF-8";
:root {
  --animate-delay: 0.25s;
}

html .home, html .page-template-video-template, body .home, body .page-template-video-template {
  background-color: #0e1702 !important;
  background-image: -moz-radial-gradient(center, ellipse cover, #2b4705 0%, #0e1702 100%) !important;
  background-image: -webkit-radial-gradient(center, ellipse cover, #2b4705 0%, #0e1702 100%) !important;
  background-image: radial-gradient(ellipse at center, #2b4705 0%, #0e1702 100%) !important;
  background-position: center center;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4f8509", endColorstr="#192903",GradientType=1 ) !important;
  height: 100%;
  max-height: 100vh;
  max-width: 100vw;
  min-height: 100vh;
  width: 100%;
}

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

main, aside {
  display: block;
}

.video-container {
  margin: 0;
  height: 100vh;
  max-height: 100vh;
  max-width: 100vw;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.playback-window {
  position: relative;
  height: calc(100vh - 54px);
  width: 100vw;
  display: flex;
}

.video-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
  z-index: 1;
}

.logo-container, .social-container {
  display: flex;
}

.social-container {
  margin-right: 25px;
}

.logo {
  margin-left: 25px;
}
.logo img {
  width: 150px;
}

.loggedin {
  line-height: 3;
  color: white;
  font-weight: 700;
  font-size: large;
}

.video-player {
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.video-player, .player-indicators {
  margin-top: -54px;
}

.video-toolbar {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  padding: 10px 0px;
  position: absolute;
  width: 100%;
}

.progressbars {
  display: flex;
  justify-content: space-evenly;
  opacity: 0.5;
  padding: 5px 0;
  position: relative;
  transition: opacity 300ms ease-in-out;
  width: 100%;
}
.progressbars:hover {
  opacity: 1;
}
.progressbars .chapter-bar {
  height: 35px;
  margin: 0 2.5px;
  opacity: 0.75;
  position: relative;
  transition: opacity 200ms ease-in-out;
  width: 100%;
}
.progressbars .chapter-bar::before, .progressbars .chapter-bar::after {
  transform: translateX(-50%) rotateX(-90deg);
  perspective: 400px;
  transition: 250ms transform ease-in-out;
  transform-origin: bottom;
  text-transform: capitalize;
  text-align: center;
  content: "";
  padding-top: 10px;
  position: absolute;
  left: 50%;
  height: 200px;
  width: 200px;
  bottom: 40px;
  display: block;
  color: white;
}
.progressbars .chapter-bar:hover {
  opacity: 1;
}
.progressbars .chapter-bar:hover::before, .progressbars .chapter-bar:hover::after {
  background-image: var(--image-url);
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(-50%) rotateX(0deg);
}
.progressbars .chapter-bar:hover::before {
  background-color: black;
  background-size: cover;
  box-shadow: 0px 0px 0px 3px #000;
  content: "";
  filter: blur(3px);
}
.progressbars .chapter-bar:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
  background-size: contain;
  box-shadow: 0px 0px 0px 3px #64a70b;
  content: attr(data-chapter);
}
.progressbars .chapter-bar::-webkit-meter-bar {
  background-color: #eeeeee;
  background-image: -moz-linear-gradient(top, #eeeeee 15%, #cccccc 85%);
  background-image: -webkit-linear-gradient(top, #eeeeee 15%, #cccccc 85%);
  background-image: linear-gradient(to bottom, #eeeeee 15%, #cccccc 85%);
  border: 1px solid #CCC;
}
.progressbars .chapter-bar::-webkit-meter-optimum-value {
  background-color: #64a70b;
  background-image: -moz-linear-gradient(left, #64a70b 0%, #8fef10 100%);
  background-image: -webkit-linear-gradient(left, #64a70b 0%, #8fef10 100%);
  background-image: linear-gradient(to right, #64a70b 0%, #8fef10 100%);
}
.progressbars .chapter-bar:active::-webkit-meter-bar {
  background-color: #bbbbbb;
  background-image: -moz-linear-gradient(top, #bbbbbb 15%, #999999 85%);
  background-image: -webkit-linear-gradient(top, #bbbbbb 15%, #999999 85%);
  background-image: linear-gradient(to bottom, #bbbbbb 15%, #999999 85%);
  border: 1px solid #999999;
}

.player-indicators {
  z-index: 1;
  height: 100%;
  position: absolute;
  pointer-events: none;
  width: 100%;
}
.player-indicators .indicator {
  left: 50%;
  position: absolute;
  color: white;
  text-shadow: 1px 1px 0px black;
  top: calc(50% - 54px);
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  animation: playtransition 400ms ease-in-out forwards;
  display: none;
}

@keyframes playtransition {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.mute-btn, .play-btn {
  background: transparent;
  border: transparent;
  color: white;
  opacity: 0.75;
  padding: 10px 15px;
  width: 55px;
  text-shadow: 2px 2px 3px black;
  z-index: 1;
}
.mute-btn:hover, .mute-btn:focus, .play-btn:hover, .play-btn:focus {
  opacity: 1;
}

@media screen and (min-width: 700px) {
  .video-toolbar {
    padding: 10px 25px;
  }
}
@media screen and (min-width: 1500px) {
  .video-player, .player-indicators {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1600px) {
  .video-player {
    object-fit: cover;
    margin-top: -54px;
  }

  .video-toolbar {
    padding: 25px 100px;
  }

  .logo img {
    filter: drop-shadow(2px 2px 3px black);
  }

  .loggedin {
    text-shadow: 2px 2px 3px black;
  }
}
@media screen and (min-width: 1870px) {
  .video-player {
    object-fit: contain;
    margin-top: 0;
    margin-bottom: 70px;
  }

  .logo img {
    filter: none;
  }

  .loggedin {
    text-shadow: none;
  }
}
div.nsl-container .nsl-container-buttons {
  padding: 0;
}

.post, .page {
  margin: 0 !important;
}

@media screen and (max-width: 500px) {
  .page-template-video-template .nsl-button-label-container {
    display: none !important;
  }

  .chapter-bar {
    height: 25px;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .chapter-bar {
      background-color: #eeeeee;
      background-image: -moz-linear-gradient(top, #eeeeee 15%, #cccccc 85%);
      background-image: -webkit-linear-gradient(top, #eeeeee 15%, #cccccc 85%);
      background-image: linear-gradient(to bottom, #eeeeee 15%, #cccccc 85%);
      border-radius: 25px;
      border: 1px solid #CCC;
      overflow: hidden;
    }

    .chapter-bar {
      height: 15px !important;
    }
  }
}
@supports (-moz-transform: translate(0, 0)) {
  .chapter-bar {
    background-color: #eeeeee;
    background-image: -moz-linear-gradient(top, #eeeeee 15%, #cccccc 85%);
    background-image: -webkit-linear-gradient(top, #eeeeee 15%, #cccccc 85%);
    background-image: linear-gradient(to bottom, #eeeeee 15%, #cccccc 85%);
    border-radius: 25px;
    border: 1px solid #CCC;
    overflow: hidden;
  }

  .chapter-bar {
    height: auto !important;
  }
}
.full-screen {
  color: white;
  position: relative;
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
.full-screen a, .full-screen a:hover, .full-screen a:focus, .full-screen a:visited {
  color: white;
}
.full-screen p {
  margin-top: 0;
  margin-bottom: 25px;
}

.nsl-container-buttons {
  align-items: center !important;
}

.bgvid {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.fill {
  --color: $color;
  --hover: hue-rotate($color, 45deg);
}

.fill:hover,
.fill:focus {
  box-shadow: inset 0 0 0 2em var(--hover);
}

.fill {
  --color: #64a70b;
  --hover: #64a70b;
}

.cta-button {
  color: #64a70b;
  background: none;
  border: 2px solid;
  display: inline-block;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 1em 2em;
  outline: none;
  text-decoration: none !important;
}
.cta-button i.fas {
  margin-right: 10px;
}

.cta-button {
  color: var(--color);
  transition: 0.25s;
}

.cta-button:hover, .cta-button:focus {
  border-color: var(--hover);
  color: #fff;
}

.media-grid, .sub-grid, .container-grid, .grid-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.media-grid {
  gap: 0px;
  width: 100%;
}

.media-side {
  grid-area: 1/1/3/3;
  position: relative;
}
.media-side .sticky-container {
  padding-top: 40px;
  position: sticky;
  top: 0;
}
.media-side .sidebar-logo {
  text-align: center;
  margin-bottom: 30px;
}
.media-side .sidebar-logo img {
  width: 100%;
  max-width: 150px;
  filter: invert(1);
}
.media-side ul, .media-side ol {
  margin: 0;
}
.media-side ul li, .media-side ol li {
  list-style: none;
  margin-bottom: 10px;
}
.media-side a {
  color: #333;
  text-decoration: none;
}
.media-side a:visited {
  color: #333;
}
.media-side a:hover, .media-side a:focus {
  color: #64a70b;
}
.media-side .back-button {
  display: block;
  margin-left: 40px;
  margin-bottom: 25px;
  text-decoration: none;
  color: #64a70b !important;
}

.media-content {
  grid-area: 1/1/3/13;
}
.media-content section {
  padding: 80px 15px;
}
.media-content h1 {
  font-size: 5rem;
  line-height: 1.2;
}
.media-content h2, .media-content h3, .media-content h4, .media-content h5, .media-content h6 {
  font-size: 3rem;
  line-height: 1.2;
}
.media-content p {
  font-size: 1.2rem;
  line-height: 1.75;
}

.container-grid {
  grid-area: 1/1/3/13;
}

.sub-grid {
  gap: 30px;
}

.video-grid {
  grid-area: 1/1/1/6;
}
.video-grid video {
  width: 100%;
}

.sub-content {
  grid-area: 1/6/1/13;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: row wrap;
}
.sub-content p {
  width: calc(50% - 30px);
}

.content {
  grid-area: 3/3/3/13;
}

.intro-focus {
  grid-column: 1/4;
  font-size: 1.5rem;
}

.intro-content {
  grid-column: 6/13;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.flex-center {
  justify-content: space-between;
}

.site-footer {
  color: #666;
}
.site-footer a {
  color: #666;
}
.site-footer a:hover, .site-footer a:focus, .site-footer a:visited {
  color: #333;
}
.site-footer .container > * {
  padding: 15px;
}
.site-footer .footer-links a {
  margin: 0 5px;
}
.site-footer .social-links a {
  margin: 0 20px;
}

.slideshow, .accordion {
  background: aliceblue;
}

.tabbed-categories {
  background: darksalmon;
}

.image-text img {
  float: right;
  margin: 15px;
}

.image-gallery {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}
.image-gallery .gallery-media {
  position: relative;
}
.image-gallery .gallery-media img {
  width: 100%;
  transition: 200ms filter ease-in-out;
}
.image-gallery .gallery-media:hover::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 2px black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.image-gallery .gallery-media:hover img {
  filter: grayscale(50%) brightness(30%);
}

.img-slideshow .slick-slide {
  margin-left: 15px;
}
