/* Font */
/* Colors */
/* Transitions */
/* Element radius */
/*---- Reset overrides ----*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: Nunito, Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

p {
  line-height: 1.65em;
  margin: 1rem 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Nunito, Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 100;
  line-height: 1.1em;
  margin: 0;
}

h2 {
  margin-bottom: 1.4rem;
}

h3 {
  margin-bottom: 1.2rem;
}

a {
  color: #98A504;
}

a, .btn, button {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a:hover, .btn:hover, button:hover {
  text-decoration: none;
}

a:focus, .btn:focus, button:focus {
  outline: none;
  text-decoration: none;
}

ul > li {
  margin: 7px 0;
}

.dark-bg {
  background-color: #000;
  color: #fff;
}

.lightdark-bg {
  background-color: #272727;
  color: #fff;
}

.content-wide {
  max-width: 962px;
  padding: 60px 20px;
  margin: 0 auto;
}

@media only screen and (min-width: 992px) {
  .content-wide {
    padding: 100px 20px;
  }
}

.content-narrow {
  max-width: 640px;
  margin: 0 auto;
}

.text-highlight {
  font-size: 1.2rem;
}

.text-megahighlight {
  font-size: 1.4rem;
}

@media only screen and (min-width: 992px) {
  .text-megahighlight {
    font-size: 1.8rem;
  }
}

.text-superhighlight {
  font-size: 2.4rem;
  line-height: 1.2em;
}

@media only screen and (min-width: 992px) {
  .text-superhighlight {
    font-size: 4rem;
  }
}

.text-quote {
  position: relative;
  margin-left: 24px;
}

.text-quote::before {
  content: '';
  display: block;
  width: 30px;
  height: 22px;
  margin-left: -32px;
  background-image: url("../img/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-headline {
  font-weight: 700;
  text-transform: uppercase;
}

.text-bold {
  font-weight: 700;
}

.text-muted {
  color: #4E4E4E !important;
}

.text-yellow {
  color: #98A504;
}

.text-green {
  color: #9BF2A9;
}

.img-full {
  width: 100%;
  height: auto;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .8rem !important;
}

.mb-2 {
  margin-bottom: 1.6rem !important;
}

.mb-3 {
  margin-bottom: 2.4rem !important;
}

.mb-4 {
  margin-bottom: 3.2rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: .8rem !important;
}

.mt-2 {
  margin-top: 1.6rem !important;
}

.mt-3 {
  margin-top: 2.4rem !important;
}

.mt-4 {
  margin-top: 3.2rem !important;
}

/* Buttons */
.btn {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
  border: none;
  border-radius: 0;
  padding: 11px 20px;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  color: #000;
  display: inline-block;
  cursor: pointer;
}

@media only screen and (min-width: 992px) {
  .btn {
    padding: 18px 32px;
  }
}

.btn:hover {
  text-decoration: none;
  border: none;
}

.btn:focus {
  outline: none !important;
}

.btn-primary,
.btn-primary:focus {
  background-color: #98A504;
}

.btn-primary:hover, .btn-primary:active,
.btn-primary:focus:hover,
.btn-primary:focus:active {
  background-color: #b4c305 !important;
  color: #000;
}

.btn-white {
  background-color: #fff;
  color: #272727;
}

.btn-white:hover {
  background-color: #F5F6F9;
  color: #272727;
}

.btn-outline,
.btn-outline:focus {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 1px #98A504 !important;
          box-shadow: inset 0 0 0 1px #98A504 !important;
  color: #98A504;
}

.btn-outline:hover,
.btn-outline:focus:hover {
  background-color: #afbe05;
  color: #fff !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-large {
  font-size: 1rem;
  padding: 12px 32px;
}

@media only screen and (min-width: 992px) {
  .btn-large {
    padding: 24px 48px;
  }
}

.btn--wide {
  min-width: 200px;
}

.btn-text {
  border-bottom: 1px solid rgba(155, 242, 169, 0.35);
  color: #9BF2A9;
}

.btn-text:hover {
  color: #272727;
  border-bottom-color: transparent;
}

body {
  overflow: hidden;
}

.kingintro {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kingintro-msg {
  text-align: center;
  width: 600px;
  height: 250px;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}

.kingintro-msg:hover img, .kingintro-msg:hover svg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.kingintro-msg p {
  font-size: 1.4rem;
}

.kingintro-msg img, .kingintro-msg svg {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.kingintro-msg .kingintro-continue {
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
}

.kingintro-videoactive .kingintro-video {
  -webkit-transition: 8s opacity;
  transition: 8s opacity;
  opacity: 1;
}

.kingintro-showcontinue .kingintro-msg {
  pointer-events: auto;
}

.kingintro-showcontinue .kingintro-continue {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  visibility: visible;
}

.kingintro-showcontinue .kingintro-skip {
  -webkit-transform: translate(-50%, 50px);
          transform: translate(-50%, 50px);
  -webkit-transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.kingintro-logo img {
  width: 160px;
  height: auto;
}

.kingintro-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.kingintro-video {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  opacity: 0;
}

.kingintro-particles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}

.kingintro-flash {
  position: fixed;
  left: 50%;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.kingintro-flashbulb {
  border-radius: 50%;
  background-color: #fff;
  width: 100vmax;
  height: 100vmax;
  opacity: 0;
}

.kingintro-skip {
  position: absolute;
  bottom: 140px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #ccc; /* Adjust color as needed */
  margin: 20px 0; /* Adjust margin as needed */
}

.kingintro-skiplink {
  color: #fff;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: .25s;
  transition: .25s;
  opacity: .6;
}

.kingintro-skiplink:hover {
  color: #98A504;
  border-bottom-color: #98A504;
  opacity: 1;
}
/*# sourceMappingURL=intro.css.map */