/* SCSS Document */
/* MICROSOFT NONSENSE */
/* VARIABLES */
/* MIXINS */
/* ANIMATIONS */
@keyframes flkrwht {
  10%, 28%, 32%, 35%, 63%, 67% {
    filter: drop-shadow(0 0 10px #FFFFFF);
  }
  0%, 30%, 34%, 65%, 100% {
    filter: none;
  }
}
@keyframes flkrred {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 0 0 4px #D50225, 0 0 19px #D50225, 0 0 40px #D50225;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}
@keyframes flkrbar {
  10%, 28%, 32%, 35%, 63%, 67% {
    filter: drop-shadow(0 0 10px #D50225);
  }
  0%, 30%, 34%, 65%, 100% {
    filter: none;
  }
}
@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-20px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-5px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes shaker {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}
/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input, button, select, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

/* ELEMENT STYLES */
body {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  color: #FFFFFF;
  line-height: 1.25;
  background-color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1rem;
  color: #FFFFFF;
  line-height: 1em;
}

strong {
  font-weight: 700;
  font-weight: normal;
}

em {
  font-style: italic;
}

a {
  color: #FFFFFF;
  text-decoration: none;
  outline: none;
}

/* FORM STYLES */
form {
  margin: 2em 0;
}
form * {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
  font-style: normal;
}
form label {
  text-align: left;
  font-size: 1.25em;
  display: block;
  width: 100%;
  margin-top: 1em;
  line-height: 1.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
form label.rcptimg {
  line-height: 1em;
  padding: 1em 0 1em 3em;
  cursor: pointer;
  background-image: url("../images/receipt-arrow.svg");
  background-size: 2em;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
form label.rcptimg:hover {
  background-image: url("../images/receipt-arrow-glow.svg");
}
form label.terms {
  line-height: 1em;
  padding: 1em 0 1em 3em;
  cursor: pointer;
  background-image: url("../images/box.svg");
  background-size: 2em;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
form label.terms:hover {
  background-image: url("../images/box-glow.svg");
}
form label span {
  display: inline-block;
  font-size: 0.75em;
  margin-left: 0.33em;
}
form label span a {
  text-decoration: underline;
}
form input {
  width: 100%;
  line-height: 2em;
  padding: 0.15em 1em;
  font-size: 1.5em;
  margin: 0.25em 0;
  background: transparent;
  border: 2px solid #FFFFFF;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  color: #FFFFFF;
}
form input:focus {
  box-shadow: inset 0 1px 10px #D50225, 0 0 20px 2px #D50225;
}
form input[type=file] {
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: 0.75em;
}
form input[type=file]::file-selector-button {
  display: none;
  background-color: #D50225;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  color: #FFFFFF;
  line-height: 2em;
  padding: 0.15em 0.5em;
}
form input[type=file]:focus {
  box-shadow: none;
}
form input[type=file]:focus::file-selector-button {
  box-shadow: inset 0 1px 10px #D50225, 0 0 20px 2px #D50225;
}
form input[type=checkbox] {
  display: none;
}
form input[type=checkbox]:checked + label {
  background-image: url("../images/check-glow.svg");
}
form input[type=submit] {
  background-color: #D50225;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  filter: drop-shadow(0 0 10px #D50225);
}
form input[type=submit][disabled=disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
form #recaptchawrap {
  display: flex;
  justify-content: center;
}
form #recaptchawrap .g-recaptcha {
  margin: 1em auto;
}

/* GENERAL STYLES */
.inner {
  width: 90vw;
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
  position: relative;
}

#loading {
  width: 100vw;
  height: 100vh;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-image: url("../images/bg-black-75.svg");
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
#loading #shaker {
  width: 100vw;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  animation-name: shaker;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
  animation-duration: 1s;
  animation-iteration-count: infinite;
  transform-origin: center;
}
#loading h3 {
  width: 100vw;
  text-align: center;
}
#loading.display {
  display: flex;
}
#loading.fadeup {
  opacity: 1;
}

main {
  height: -moz-fit-content;
  height: fit-content;
}
main section {
  width: 100vw;
  min-height: 100vh;
  position: relative;
}
main section#challenge {
  align-content: center;
  justify-content: center;
}
main section#challenge video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
main section#challenge .inner {
  z-index: 1;
}
main section#challenge .inner #tmwm {
  width: 250px;
  height: auto;
  overflow: visible;
  margin-bottom: 10px;
  opacity: 0;
}
main section#challenge .inner #tmwm path {
  animation: flkrwht 1.5s infinite alternate;
}
main section#challenge .inner h2 {
  -webkit-text-stroke-width: 0.035em;
  -webkit-text-stroke-color: #FFFFFF;
  font-size: 5em;
  color: transparent;
  animation: flkrred 1.5s infinite alternate;
  opacity: 0;
}
main section#challenge .inner #ayolda {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  opacity: 0;
}
main section#challenge .inner #options {
  opacity: 0;
}
main section#challenge .inner #options a {
  display: inline-block;
  width: 200px;
  border: 2px solid #FFFFFF;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFFFFF;
  font-size: 3em;
  color: transparent;
  font-weight: 500;
  margin: 0 1em;
  opacity: 0.5;
  box-shadow: 0 0 10px #FFFFFF, inset 0 0 10px #FFFFFF;
  text-shadow: 0 0 10px #FFFFFF;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
main section#challenge .inner #options a:hover {
  box-shadow: 0 0 20px #FFFFFF, inset 0 0 20px #FFFFFF;
  text-shadow: 0 0 20px #FFFFFF;
  opacity: 1;
}
main section#challenge .inner #legal {
  margin-top: 2em;
  opacity: 0;
}
main section#intro {
  align-content: center;
  justify-content: center;
  height: 100vh; /*height: auto; aspect-ratio: 16/9;*/
}
main section#intro video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0.5;
}
main section#intro .inner {
  z-index: 1;
}
main section#intro .inner #tmwm {
  width: 250px;
  height: auto;
  overflow: visible;
  margin-bottom: 10px;
}
main section#intro .inner #tmwm path {
  animation: flkrwht 1.5s infinite alternate;
}
main section#intro .inner h2 {
  -webkit-text-stroke-width: 0.035em;
  -webkit-text-stroke-color: #FFFFFF;
  font-size: 7em;
  color: transparent;
  animation: flkrred 1.5s infinite alternate;
}
main section#intro .inner #sutt {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: -8.5% auto;
}
main section#intro .inner #siggroup {
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  font-size: 2em;
  position: relative;
  top: -1.5em;
}
main section#intro .inner #siggroup img {
  width: 400px;
  height: auto;
  margin-left: 1em;
}
main section#intro .inner #arrgroup {
  justify-content: center;
  font-weight: 700;
}
main section#intro .inner #arrgroup img {
  width: 40px;
  height: auto;
  margin-top: 1em;
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-delay: 8s;
}
main section#mainarea .inner {
  width: 100%;
  max-width: 1728px;
  display: flex;
  margin: 0 auto;
  position: relative;
}
main section#mainarea .inner .col {
  width: 50%;
}
main section#mainarea .inner .col .pic {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
main section#mainarea .inner .col:last-of-type {
  padding: 25vh 5% 5%;
}
main section#mainarea .inner .col:last-of-type h2 {
  background-image: url("../images/brush-stroke.webp");
  background-size: contain;
  padding: 2em 4.5em 1em 4em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
main section#mainarea .inner .col:last-of-type h2 span {
  -webkit-text-stroke-width: 0.035em;
  -webkit-text-stroke-color: #FFFFFF;
  font-size: 4em;
  color: transparent;
  animation: flkrwht 1.5s infinite alternate;
}
main section#mainarea .inner .col:last-of-type h3 {
  font-weight: 700;
  font-size: 1.5em;
  text-wrap-style: balance;
}
main section#mainarea .inner .col:last-of-type h3 span {
  color: #D50225;
  display: block;
}
main section#mainarea .inner .col:last-of-type h4 {
  text-align: left;
  font-size: 1.25em;
  margin: 2em 0 1em;
}
main section#mainarea .inner .col:last-of-type h4 span {
  display: inline-block;
  font-size: 0.75em;
  margin-left: 0.33em;
}
main section#mainarea .inner .col:last-of-type .legal {
  font-size: 0.75em;
  line-height: 1.5em;
  text-wrap: balance;
  margin: 1.5em 0;
  text-align: left;
}
main section#mainarea .inner .col:last-of-type .legal a {
  text-decoration: underline;
}
main section#recipe {
  height: -moz-fit-content;
  height: fit-content;
  background-image: url("../images/bricks.webp");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: repeat;
  display: flex;
  min-height: auto;
}
main section#recipe .inner {
  width: 100%;
  max-width: 1728px;
  display: flex;
  margin: 0 auto;
  position: relative;
  background-image: url("../images/squiggle.webp");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
main section#recipe .inner .col {
  width: 50%;
  display: flex;
}
main section#recipe .inner .col .pic {
  width: 100%;
  height: auto;
  max-height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}
main section#recipe .inner .col:first-of-type {
  text-align: center;
  padding: 10vh 5%;
  flex-wrap: wrap;
  align-content: flex-start;
}
main section#recipe .inner .col:first-of-type h2 {
  -webkit-text-stroke-width: 0.035em;
  -webkit-text-stroke-color: #FFFFFF;
  font-size: 3em;
  color: transparent;
  animation: flkrred 1.5s infinite alternate;
  width: 100%;
  display: block;
}
main section#recipe .inner .col:first-of-type h3 {
  -webkit-text-stroke-width: 0.035em;
  -webkit-text-stroke-color: #FFFFFF;
  font-size: 2em;
  color: transparent;
  animation: flkrwht 1.5s infinite alternate;
  text-wrap-style: balance;
  width: 100%;
  display: block;
}
main section#recipe .inner .col:first-of-type img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
main section#recipe .inner .col:first-of-type ul {
  list-style: none;
  width: 100%;
  font-size: 2em;
  margin: 0 0 1.5em;
}
main section#recipe .inner .col:first-of-type p {
  font-size: 1.25em;
}
main section#terms {
  background-image: url("../images/bricks.webp");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: repeat;
  display: flex;
}
main section#terms .inner .tlink {
  position: absolute;
  left: 0;
}
main section#terms .inner #tmwm {
  width: 300px;
  height: auto;
  overflow: visible;
  margin-bottom: 0;
}
main section#terms .inner #tmwm path {
  animation: flkrwht 1.5s infinite alternate;
}
main section#terms .inner h1 {
  -webkit-text-stroke-width: 0.035em;
  -webkit-text-stroke-color: #FFFFFF;
  font-size: 4em;
  color: transparent;
  animation: flkrred 1.5s infinite alternate;
}
main section#terms .inner #neonterms {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
main section#terms .inner .leftdis {
  text-align: left;
}
main section#terms .inner h2, main section#terms .inner h3 {
  margin: 2em 0 1em;
}
main section#terms .inner ul, main section#terms .inner ol {
  display: block;
  list-style: disc outside none;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
main section#terms .inner ul li, main section#terms .inner ol li {
  display: list-item;
  margin: 0.5em 0;
}
main section#terms .inner ol {
  list-style-type: decimal;
}
main .neonbar {
  width: 100vw;
  height: 10px;
  background-color: #D50225;
  animation: flkrbar 1.5s infinite alternate;
}

/* FOOTER STYLES */
footer {
  width: 100vw;
  background-color: #D50225;
  color: #000000;
  padding: 2em 0;
  display: flex;
  position: relative;
}
footer .inner {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
footer .inner .col {
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
}
footer .inner .col:first-of-type {
  text-align: left;
}
footer .inner .col:last-of-type {
  text-align: right;
}
footer .inner .col h4, footer .inner .col a {
  font-weight: 700;
  color: #000000;
  display: block;
  margin-bottom: 1em;
}
footer .inner .col .legal {
  font-size: 0.75em;
  line-height: 1.25em;
  text-wrap: balance;
}
footer .inner .col .tmwmb {
  width: 200px;
  height: auto;
}
footer .inner .col .socialink {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 0.5em;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
footer .inner .col .socialink img {
  width: 100%;
  height: auto;
}
footer .inner .col .socialink:hover {
  opacity: 0.5;
}

/* Phone Styles -------------------- */
@media only screen and (max-width: 819px) {
  main {
    height: -moz-fit-content;
    height: fit-content;
  }
  main section#challenge {
    align-content: center;
    justify-content: center;
  }
  main section#challenge .inner #tmwm {
    width: 50%;
  }
  main section#challenge .inner h2 {
    font-size: 3em;
  }
  main section#challenge .inner #options {
    opacity: 0;
  }
  main section#challenge .inner #options a {
    margin: 0.25em 1em;
  }
  main section#challenge .inner #legal {
    margin-top: 2em;
    opacity: 0;
  }
  main section#intro .inner #tmwm {
    width: 50%;
  }
  main section#intro .inner h2 {
    font-size: 4em;
  }
  main section#intro .inner #sutt {
    height: auto;
  }
  main section#intro .inner #siggroup {
    display: block;
    top: 0;
    font-size: 1em;
  }
  main section#intro .inner #siggroup img {
    width: 100%;
    margin: 0;
    display: block;
  }
  main section#intro .inner #arrgroup {
    margin: 1em;
  }
  main section#mainarea .inner {
    display: block;
  }
  main section#mainarea .inner .col {
    width: 100%;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  main section#mainarea .inner .col .pic {
    height: 100vw;
  }
  main section#mainarea .inner .col:last-of-type {
    padding: 0 5% 5%;
  }
  main section#mainarea .inner .col:last-of-type h2 {
    padding: 1.5em 3em 0.75em;
    position: relative;
    top: -1em;
    margin-bottom: -0.5em;
  }
  main section#mainarea .inner .col:last-of-type h2 span {
    font-size: 3em;
  }
  main section#recipe .inner {
    display: block;
  }
  main section#recipe .inner .col {
    width: 100%;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  main section#recipe .inner .col .pic {
    height: 100vw;
  }
  main section#recipe .inner .col:first-of-type {
    padding: 10% 5% 0;
  }
  main section#recipe .inner .col:first-of-type h2 {
    font-size: 2.5em;
  }
  main section#recipe .inner .col:first-of-type h3 {
    font-size: 2em;
  }
  main section#recipe .inner .col:first-of-type ul {
    font-size: 1.5em;
  }
  main section#recipe .inner .col:first-of-type p {
    font-size: 1.25em;
  }
  main section#terms .inner h1 {
    font-size: 3em;
  }
  footer {
    width: 100vw;
  }
  footer .inner {
    display: block;
  }
  footer .inner .col {
    width: 100%;
  }
  footer .inner .col:first-of-type {
    text-align: center;
  }
  footer .inner .col:last-of-type {
    text-align: center;
  }
  footer .inner .col h4, footer .inner .col a {
    margin: 1em 0;
  }
  footer .inner .col .tmwmb {
    margin-bottom: 1em;
  }
  footer .inner .col .socialink {
    width: 60px;
    height: 60px;
  }
}/*# sourceMappingURL=stylesv3.css.map */