@font-face {
  font-family: 'Moon 2.0 Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Moon 2.0 Regular'), url('../fonts/Moon2.0-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Moon 2.0 Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Moon 2.0 Bold'), url('../fonts/Moon2.0-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Moon 2.0 Light';
  font-style: normal;
  font-weight: normal;
  src: local('Moon 2.0 Light'), url('../fonts/Moon2.0-Light.woff') format('woff');
}
.moon-light {
  font-family: 'Moon 2.0 Light', Arial, Helvetica, sans-serif;
}
.moon-regular {
  font-family: 'Moon 2.0 Regular', Arial, Helvetica, sans-serif;
}
.moon-bold {
  font-family: 'Moon 2.0 Bold', Arial, Helvetica, sans-serif;
}
.roboto-condensed {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1600px;
  }
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 2000px;
  }
}
@media (min-width: 376px) {
  .d-xs-none {
    display: none;
  }
}
.bg-navy {
  background-color: #0B0B15;
}
body.landing .wrap {
  min-height: 100vh;
}
body.landing .wrap .content {
  max-width: 800px;
}
@media (min-width: 992px) {
  body.landing .wrap .content {
    max-width: 2000px;
    padding: 0 5rem;
  }
}
body.landing .logo {
  width: 100%;
  max-width: 600px;
}
@media (min-width: 992px) {
  body.landing .logo {
    max-width: 800px;
    padding: 0 5rem;
  }
}
body.landing h1 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 24vh;
  line-height: 19.2vh;
}
@media (max-width: 991px) {
  body.landing h1 {
    font-size: 16vw;
    line-height: 12.8vw;
  }
}
@media (max-width: 575px) {
  body.landing h1 {
    font-size: 20vw;
    line-height: 16vw;
  }
}
@media (max-width: 375px) {
  body.landing h1 {
    font-size: 4rem;
    line-height: 3.2rem;
  }
}
body.landing h2 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  line-height: 1.4em;
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  body.landing h2 {
    font-size: 2rem;
  }
}
@media (max-width: 640px) or (max-height: 450px) {
  body.landing h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 375px) {
  body.landing h2 {
    font-size: 1.33em;
  }
}
body.landing h3 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
}
body.landing p {
  font-size: 1.1em;
  letter-spacing: 0.1em;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}
@media (min-width: 768px) {
  body.landing p {
    font-size: 1.25em;
  }
}
@media (min-width: 1200px) {
  body.landing p {
    font-size: 1.42em;
  }
}
body.landing a {
  color: white;
}
body.landing a:hover {
  text-underline: white;
}
body.landing .notify-button-wrap {
  width: 100%;
  height: 45px;
  position: relative;
  display: flex;
  align-items: center;
}
body.landing .notify-button-wrap .email-form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.landing .notify-button-wrap .properties {
  height: 45px;
  font-size: 18px;
  color: white;
  outline: none;
  border: 2px solid white;
}
body.landing .notify-button-wrap .notify-button {
  position: absolute;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.landing .notify-button-wrap .notify-input {
  display: none;
  position: relative;
  border: 0;
  color: black;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 80px;
  animation: extentArea 500ms forwards 1 cubic-bezier(0, 1.28, 0.29, 1.18);
}
body.landing .notify-button-wrap .notify-input::placeholder {
  color: lightgrey;
}
@keyframes extentArea {
  0% {
    width: 150px;
  }
  80% {
    width: 350px;
  }
  100% {
    width: 350px;
  }
}
body.landing .notify-button-wrap .send-button {
  width: 65px;
  height: 33px;
  display: none;
  position: absolute;
  font-size: 14px;
  border: 0px;
  color: white;
  background-color: black;
  cursor: pointer;
  right: 7px;
  animation: send-button-anime 500ms forwards 1 ease;
}
@keyframes send-button-anime {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
body.landing .img-bg {
  overflow: hidden;
  min-height: 100vh;
}
@media (max-width: 767px) {
  body.landing .img-bg {
    background-attachment: inherit;
  }
}
body.landing .bjr-headline {
  min-height: 33.333vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.landing .bjr-john {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 991px) {
  body.landing .bjr-john {
    height: 66.667%;
  }
}
body.landing .bjr-john img {
  max-width: 768px !important;
}
@media (min-width: 768px) {
  body.landing .bjr-john img {
    width: 100vh !important;
  }
}
@media (min-width: 992px) and (min-height: 800px) {
  body.landing .bjr-john img {
    max-width: 991px !important;
  }
}
@media (min-width: 992px) and (min-height: 800px) and (min-width: 1600px) {
  body.landing .bjr-john img {
    max-width: 100vw !important;
  }
}
@media (max-width: 991px) {
  body.landing .bjr-john img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
}
body.landing .bjr-john::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 20vh;
  background: linear-gradient(0deg, #0b0b15 10%, rgba(11, 11, 21, 0));
}
body.landing .bjr-byline {
  position: absolute;
  bottom: 8vh;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  body.landing .bjr-byline {
    bottom: 4vh;
  }
}
@media (max-width: 640px) or (max-height: 450px) {
  body.landing .bjr-byline {
    bottom: 3vh;
  }
}
@media (max-width: 375px) {
  body.landing .bjr-byline {
    bottom: 0;
  }
}
@media (max-height: 600px) {
  body.landing .img-bg {
    position: relative;
    min-height: inherit !important;
  }
  body.landing .bjr-john {
    position: relative !important;
    margin-top: -6rem;
  }
}
@media (max-height: 600px) and (max-width: 640px) {
  body.landing .bjr-john {
    margin-top: -4rem;
  }
}
@media (max-height: 600px) and (max-width: 375px) {
  body.landing .bjr-john {
    margin-top: -2rem;
  }
}
