h1, h2, h3, h4, h5 {
  font-family: bebas_neueregular, serif;
}

p {
  font-family: "Open Sans", sans-serif;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  grid-gap: 0;
}

.grid-item {
  grid-column: span 12;
}

.header {
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  display: flex;
  height: 150px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
.header .logo {
  background: #222;
  height: 150px;
}
.header .nav {
  grid-column: span 10;
  z-index: 1;
  width: 100%;
}

.main {
  grid-row: 3/4;
}

.sidebar {
  grid-row: 3/4;
}

#vidHero {
  position: fixed;
  height: 100%;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-content: space-around;
  justify-content: space-around;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
#vidHero #scrollwrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100%; */
  bottom: 30px;
  position: absolute;
  z-index: 1;
}
#vidHero #scrollwrap p {
  color: white !important;
}
#vidHero #bgvid {
  height: 100vh;
  width: 100%;
  filter: brightness(0.9);
}
#vidHero #bgvid .vjs-tech {
  width: unset !important;
}
#vidHero .heroTextWrapper {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
#vidHero .heroTextWrapper h1 {
  font-size: 64px;
  text-shadow: 2px 3px 3px #222;
  color: white;
  letter-spacing: 1px;
  font-family: "Montserrat", cursive;
}
#vidHero .heroTextWrapper h2 {
  font-size: 48px;
  text-shadow: 1px 1px 1px #333;
  color: white;
  letter-spacing: 1px;
  font-family: "Montserrat", cursive;
}
#vidHero .heroTextWrapper h3 {
  font-size: 24px;
  color: white;
  text-shadow: 1px 1px 1px #333;
  letter-spacing: 1px;
  font-family: "Montserrat", cursive;
}

#overlay {
  position: absolute;
  margin-top: 100vh;
  background: #C5E3C2;
  overflow: hidden;
}
#overlay #overlay_content {
  padding: 30px;
  color: #333;
  width: 100vw;
  box-sizing: content-box;
}
#overlay #overlay_content h2 {
  font-size: 36px;
  letter-spacing: 1px;
}
#overlay #overlay_content p {
  font-size: 20px;
}

.wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.wrapper .half {
  width: 48%;
  padding: 60px;
}

.scroll-down {
  height: 50px;
  width: 30px;
  border: 2px solid white;
  position: absolute;
  left: auto;
  bottom: 50px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1;
}

.scroll-down::before,
.scroll-down::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(45deg);
  border: 2px solid white;
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1s ease-in-out infinite;
}

@keyframes scroll-down {
  0% {
    /* top:20%; */
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 80%;
    opacity: 0;
  }
}
#breakervid {
  height: 100vh;
  width: 100%;
  filter: brightness(0.9);
}
#breakervid .vjs-tech {
  width: unset !important;
}

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