@font-face {
  font-family: "ClashDisplay-Variable";
  src: url("../fonts/ClashDisplay-Variable.woff2") format("woff2"), url("../fonts/ClashDisplay-Variable.woff") format("woff"), url("../fonts/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay-Bold";
  src: url("../fonts/ClashDisplay-Bold.woff2") format("woff2"), url("../fonts/ClashDisplay-Bold.woff") format("woff"), url("../fonts/ClashDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
}

body {
  color: #fff;
  background-color: #150E28;
}

hr {
  background-color: #fff;
  color: #fff;
  height: 0;
  opacity: 0.18;
  position: relative;
  z-index: 2;
}

h3 {
  font-family: "ClashDisplay-Bold", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.star {
  position: absolute;
}

.second, .third {
  width: 6px;
  height: 8px;
}

.first {
  width: 10px;
  height: 10px;
  top: 36px;
  left: 126px;
}

.second {
  top: 36px;
  right: 63px;
}

.third {
  bottom: 110px;
  right: 91px;
}

.fourth {
  width: 11px;
  height: 13px;
  top: 112px;
  left: 68px;
}

.fifth {
  width: 8px;
  height: 10px;
  top: 340px;
  right: 52px;
}

.sixth, .eigth {
  width: 10px;
  height: 12px;
}

.sixth {
  top: 185px;
  left: 43px;
}

.seventh {
  width: 12px;
  height: 14px;
  top: 442px;
  right: 42px;
}

.eigth {
  bottom: -15px;
  left: 108px;
}

main {
  background: url(../images/svgs/purpleLensFlare.svg) left top no-repeat;
  background-blend-mode: hard-light;
  background-size: 396px 442px;
  background-color: #150E28;
}
main header h1 {
  font-family: "ClashDisplay-Bold", sans-serif;
  font-size: 15px;
  padding: 30px 48px 23px;
}
main header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  padding-top: 31px;
}

#vectorFour {
  position: relative;
}
#vectorFour img {
  width: 115px;
  position: absolute;
  bottom: -11px;
  right: 0;
}

.navBar {
  position: absolute;
  top: 34px;
  right: 48px;
  padding: 2px;
  border-radius: 50%;
  background: transparent;
  transition: background-color 5s ease-in-out;
  z-index: 48;
}
.navBar.active {
  background: linear-gradient(270deg, #903AFF 0%, #D434FE 56.42%, #FF26B9 99.99%, #FE34B9 100%);
}

.menu-icon {
  width: 19px;
  height: 13px;
  cursor: pointer;
  z-index: 50;
  padding: 6px 3px;
  border-radius: 50%;
  background-color: #150E28;
}
.menu-icon .line-1 {
  width: 50%;
}
.menu-icon .line-3 {
  width: 50%;
  float: right;
}
.menu-icon .line-2 {
  width: 100%;
}
.menu-icon .line-1,
.menu-icon .line-2,
.menu-icon .line-3 {
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s ease-in-out;
}
.menu-icon .line-1 {
  animation: animate-line-1-rev 0.7s ease-in-out;
}
.menu-icon .line-2 {
  margin: 2px 0;
  animation: animate-line-2-rev 0.7s ease-in-out;
}
.menu-icon .line-3 {
  animation: animate-line-3-rev 0.7s ease-in-out;
}
.menu-icon:hover .line-1,
.menu-icon:hover .line-2,
.menu-icon:hover .line-3 {
  background-color: #fff;
}
.menu-icon.active .line-1,
.menu-icon.active .line-2,
.menu-icon.active .line-3 {
  background-color: #fff;
}
.menu-icon.active .line-1 {
  animation: animate-line-1 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}
.menu-icon.active .line-2 {
  animation: animate-line-2 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}
.menu-icon.active .line-3 {
  animation: animate-line-3 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}

.no-animation {
  animation: none !important;
}

@keyframes animate-line-1 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, 5px, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, 5px, 0) rotate(45deg);
    width: 19px;
  }
}
@keyframes animate-line-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes animate-line-3 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -5px, 0) rotate(0);
  }
  100% {
    transform: translate3d(0%, -5px, 0) rotate(135deg);
    width: 19px;
  }
}
@keyframes animate-line-1-rev {
  0% {
    transform: translate3d(0, 5px, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(0, 5px, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
@keyframes animate-line-2-rev {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes animate-line-3-rev {
  0% {
    transform: translate3d(-50%, -5px, 0) rotate(135deg);
  }
  50% {
    transform: translate3d(0, -5px, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
nav {
  display: none;
  background-color: #150E28;
  width: 348px;
  max-width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
}
nav.active {
  display: block;
}
nav p {
  padding-bottom: 22px;
}
nav p:first-child {
  padding-top: 100px;
}
nav p, nav button {
  margin-left: 39px;
}

.container1 {
  text-align: center;
}
.container1 .firstDiv {
  position: relative;
}
.container1 .firstDiv h1 {
  font-family: "ClashDisplay-Bold", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  padding-top: 58px;
}
.container1 .firstDiv p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  padding-top: 9px;
}
.container1 .firstDiv h2 {
  margin-top: 14.16px;
  font-family: "Unica One", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}
.container1 .firstDiv h2 .diffFont {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.container1 .secondDiv {
  position: relative;
}
.container1 .secondDiv img:first-child {
  width: 420px;
  aspect-ratio: auto 420/362;
  max-width: 100%;
  height: auto;
}
.container1 .secondDiv img:last-child {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 338px;
  aspect-ratio: auto 338/324;
  max-width: 100%;
  height: auto;
}

#creativeOne {
  position: relative;
}
#creativeOne img {
  width: 18px;
  height: 26px;
  position: absolute;
  top: -16px;
  right: -3.2px;
}

.textimg {
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 4.8px;
}
.textimg .chain {
  width: 32px;
  height: 32px;
}
.textimg .boom {
  width: 22px;
  height: 22px;
}

.overviewContainer {
  position: relative;
  text-align: center;
  z-index: 1;
}
.overviewContainer .imagedis {
  position: relative;
}
.overviewContainer .mainImage {
  width: 264px;
  aspect-ratio: auto 264/257;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 29px auto 0;
}
.overviewContainer .imgtext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 122.5%;
}
.overviewContainer .arrow {
  margin-top: 10px;
}
.overviewContainer .textdiv {
  z-index: 5;
}
.overviewContainer .textdiv h3 {
  margin-top: 22.15px;
}
.overviewContainer .textdiv p {
  margin: 9px 40px 80px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.5px;
}

.ruleContainer {
  position: relative;
  text-align: center;
  background: url(../images/pngs/purpleflare3.png) left top no-repeat, url(../images/pngs/purpleFlare4.png) right bottom no-repeat;
  background-size: 404px 435px, 252px 446px;
  background-blend-mode: hard-light;
  background-color: #150E28;
  margin-top: -106px;
}
.ruleContainer .rulesImg {
  padding-top: 106px;
  width: 294px;
  aspect-ratio: auto 294/382;
  max-width: 90%;
  height: auto;
}
.ruleContainer .textdiv h3 {
  margin-top: 10px;
}
.ruleContainer .textdiv p {
  margin: 9px 45px 46px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.5px;
}

.judgingContainer {
  text-align: center;
  background: url(../images/pngs/purpleflare5.png) left top no-repeat, url(../images/pngs/purpleflare6.png) right bottom no-repeat;
  background-size: 404px 444px;
  background-blend-mode: hard-light;
  background-color: #150E28;
}
.judgingContainer .judgingImg {
  padding-top: 74px;
  width: 332px;
  aspect-ratio: auto 332/275;
  max-width: 90%;
  height: auto;
}
.judgingContainer .textdiv p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 173.5%;
  margin: 16px 45px 0;
}
.judgingContainer button {
  padding: 10px 12px;
  margin: 34px auto 58.65px;
}

.faqContainer {
  text-align: center;
}
.faqContainer h3 {
  margin-top: 60px;
}
.faqContainer #intro {
  margin: 6px 48px 32.35px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.5px;
}
.faqContainer #varFontWeight {
  font-weight: 700;
}
.faqContainer .questionsContainer {
  margin: 0 46px;
}
.faqContainer .questions {
  display: flex;
  justify-content: space-between;
  gap: 56.98px;
  text-align: left;
  border-bottom: 1px solid #D434FE;
}
.faqContainer .questions p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px;
  padding-top: 13.34px;
}
.faqContainer .questions p:nth-of-type(2) {
  color: #D434FE;
  font-size: 20px;
  line-height: 27.5px;
  align-self: flex-end;
}
.faqContainer .faqImg {
  margin: 86px auto 49px;
  width: 327px;
  aspect-ratio: auto 1/1;
  max-width: 90%;
  height: auto;
}

.timelineContainer {
  text-align: center;
  margin-top: 80px;
  padding-bottom: 100px;
}
.timelineContainer .timelineIntro {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 172.4%;
  width: 346px;
  max-width: 90%;
  margin: 21px auto 56px;
}
.timelineContainer .timeline {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 27px;
  width: 346px;
  max-width: 90%;
  margin: 0 auto;
}
.timelineContainer .eachEvent {
  display: grid;
  grid-template-columns: 19.32px auto;
  grid-template-rows: auto 19.32px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 4.68px;
}
.timelineContainer .eachEvent .vertBar {
  width: 2px;
  height: 77px;
  justify-self: center;
  background-color: #D434FE;
}
.timelineContainer .eachEvent h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
}
.timelineContainer .eachEvent p {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170.9%;
}
.timelineContainer .eachEvent .timelineNum {
  width: 19.32px;
  height: 19.32px;
  text-align: center;
  background: linear-gradient(270deg, #903AFF 0%, #D434FE 100%);
  border-radius: 50%;
  position: relative;
}
.timelineContainer .eachEvent .centerNum {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 700;
}
.timelineContainer .eachEvent .timelineDate {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: center;
}

.prizeContainer {
  border: 1px solid #000;
  text-align: center;
  background: url(../images/pngs/purpleflare7.png) left top no-repeat, url(../images/pngs/purpleflare8.png) right bottom -37px no-repeat, url(../images/pngs/premiumphoto.png) left top no-repeat;
  background-size: 403px 444px, 249px 444px, cover;
  background-blend-mode: hard-light, hard-light, color-burn;
  background-color: #150E28;
}
.prizeContainer .prizeIntro h3 {
  line-height: normal;
  padding-top: 72px;
}
.prizeContainer .prizeIntro p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170.9%;
  padding: 3px 57px;
}
.prizeContainer .prize .prizecup {
  margin: 40px auto 51px;
  width: 321px;
  aspect-ratio: auto 321/282;
  max-width: 90%;
  height: auto;
}
.prizeContainer .priceLevels {
  margin-top: 51px;
  padding-bottom: 89px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 12px;
}
.prizeContainer .firstPlace p:nth-of-type(1), .prizeContainer .firstPlace p:nth-of-type(2), .prizeContainer .secondPlace p:nth-of-type(1), .prizeContainer .secondPlace p:nth-of-type(2), .prizeContainer .thirdPlace p:nth-of-type(1), .prizeContainer .thirdPlace p:nth-of-type(2) {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 216.4%;
}
.prizeContainer .firstPlace p:nth-of-type(2), .prizeContainer .secondPlace p:nth-of-type(2), .prizeContainer .thirdPlace p:nth-of-type(2) {
  font-weight: 600;
  margin-top: -8px;
}
.prizeContainer .firstPlace p:nth-of-type(3), .prizeContainer .secondPlace p:nth-of-type(3), .prizeContainer .thirdPlace p:nth-of-type(3) {
  color: #D434FE;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 216.4%;
}
.prizeContainer .secondPlace {
  border-radius: 8px;
  border: 1px solid #D434FE;
  background: rgba(212, 52, 254, 0.12);
  width: 90px;
  height: 126px;
}
.prizeContainer .secondPlace img {
  width: 76px;
  height: 76px;
  margin-top: -36px;
}
.prizeContainer .firstPlace {
  border-radius: 8px;
  border: 1px solid #903AFF;
  background: rgba(144, 58, 255, 0.12);
  height: 147px;
  width: 90px;
}
.prizeContainer .firstPlace img {
  position: relative;
  right: 18px;
  width: 126px;
  height: 126px;
  margin-top: -62px;
}
.prizeContainer .firstPlace p:nth-of-type(3) {
  color: #903AFF;
}
.prizeContainer .thirdPlace {
  border-radius: 8px;
  border: 1px solid #D434FE;
  background: rgba(212, 52, 254, 0.12);
  width: 90px;
  height: 126px;
}
.prizeContainer .thirdPlace img {
  width: 76px;
  height: 76px;
  margin-top: -31px;
}
.prizeContainer .thirdPlace p:nth-of-type(3) {
  font-size: 12px;
}

.partnersContainer {
  background: url(../images/pngs/purpleFlare9.png) left top -96.5px no-repeat;
  background-size: 286px 364px;
  background-blend-mode: hard-light;
  background-color: #150E28;
  text-align: center;
}
.partnersContainer h3 {
  line-height: 27.5px;
  padding-top: 137.5px;
}
.partnersContainer p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px;
  margin: 5px 52px;
}
.partnersContainer .partnerList {
  margin: 41px 30px 104px;
  padding: 38.21px 47.14px;
  border: 1px solid #D434FE;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 68.271px 2px 68.271px 2px 68.271px;
  grid-template-rows: 30px 2px 30px;
  justify-content: center;
  gap: 7.5px 9px;
  position: relative;
}
.partnersContainer .partnerList .line {
  background: #D434FE;
}
.partnersContainer .partnerList img {
  align-self: center;
  justify-self: center;
}
.partnersContainer .partnerList img:nth-of-type(5) {
  width: 54px;
  height: 21px;
}
.partnersContainer .partnerList img:nth-of-type(6) {
  width: 69px;
  height: 21px;
}
@media (max-width: 320px) {
  .partnersContainer .partnerList {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.privacyContainer {
  text-align: center;
  background: url(../images/pngs/purpleflare10.png) right top no-repeat, url(../images/pngs/purpleFlare11.png) left top 723px no-repeat;
  background-size: 220px 372px, 285px 366px;
  background-blend-mode: hard-light;
  background-color: #150E28;
  margin-top: -195px;
  margin-bottom: 83px;
}
.privacyContainer h3 {
  padding-top: 266px;
}
.privacyContainer p:nth-of-type(1) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.5px;
}
.privacyContainer p:nth-of-type(2) {
  margin: 28px 50px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 188.4%;
}
.privacyContainer .policyStatement {
  margin: 30px 46px 0px;
  padding: 45px 12px;
  border-radius: 5px;
  border: 1px solid #D434FE;
  background: rgba(217, 217, 217, 0.03);
}
.privacyContainer .policyStatement p {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 216.4%;
}
.privacyContainer .policyStatement h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 216.4%;
  text-align: left;
  margin-top: 21px;
}
.privacyContainer .policyStatement .diffFont {
  font-size: 13px;
}
.privacyContainer .policyStatement ul {
  list-style-image: url(../images/svgs/listterms.svg);
  padding-left: 22px;
}
.privacyContainer .policyStatement ul li {
  margin-top: 21px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 182.9%;
}
.privacyContainer .policyStatement button {
  padding: 10px 12px;
  margin-top: 28px;
}
.privacyContainer .privacyImg {
  margin-top: 48px;
  background: url(../images/pngs/guard.png) center top no-repeat;
  background-size: 249px 311px;
}
.privacyContainer .privacyImg img {
  width: 262px;
  aspect-ratio: auto 262/351;
  height: auto;
  max-width: 100%;
  padding-top: 96px;
}

footer {
  background-color: #100B20;
  padding: 51px 51px 53px 68px;
}
footer h3 {
  line-height: normal;
  margin-bottom: 12px;
}
footer p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 172.4%;
}
footer .tou {
  margin-top: 39px;
  display: flex;
  gap: 10px;
}
footer .vLine {
  width: 2px;
  height: 17px;
  background-color: #D434FE;
}
footer h4 {
  font-family: "Montserrat", sans-serif;
  color: #D434FE;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 172.4%;
}
footer .useLinks {
  margin-top: 32px;
}
footer .useLinks h3 {
  margin-bottom: 6px;
}
footer .useLinks p {
  margin-bottom: 12px;
}
footer .followUs {
  display: flex;
  gap: 16px;
  height: 24px;
  align-items: center;
}
footer .followUs p {
  align-self: baseline;
}
footer .followUs img:nth-of-type(1), footer .followUs img:nth-of-type(4) {
  width: 24px;
  height: 24px;
}
footer .followUs img:nth-of-type(2) {
  width: 19px;
  height: 17px;
}
footer .followUs img:nth-of-type(3) {
  width: 10.5px;
  height: 20px;
}
footer .contactUs {
  margin-top: 61px;
}
footer .flexContain {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}
footer .flexContain p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 157.9%;
}
footer .phone {
  margin-top: 8px;
}
footer .phone img {
  height: 12px;
  width: 12px;
}
footer .location img {
  width: 13px;
  height: 15px;
  align-self: flex-start;
}
footer .attributes {
  text-align: center;
  margin-top: 60px;
  font-size: 12px;
  font-weight: 400;
}

.diffColor {
  color: #D434FE;
}

.secDiffColor {
  color: #FF26B9;
  font-weight: 700;
  font-size: 13px;
}

button {
  border-style: none;
  border-radius: 4px;
  background: linear-gradient(270deg, #903AFF 0%, #D434FE 56.42%, #FF26B9 99.99%, #FE34B9 100%);
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  cursor: pointer;
}

.registerButton {
  font-size: 14px;
  padding: 14.14px 46px;
  margin-top: 24px;
}

@media only screen and (min-width: 1024px) {
  hr {
    height: 1px;
  }
  h3 {
    font-size: 32px;
  }
  .first, .second, .third, .sixth, .seventh {
    width: 26px;
    height: 32px;
  }
  .first {
    top: 0px;
    left: 60px;
  }
  .second {
    top: 46px;
    left: 700px;
  }
  .third {
    bottom: 200px;
    left: 400px;
  }
  .fourth {
    width: 21px;
    height: 25px;
    top: 223px;
    right: 200px;
  }
  .fifth {
    width: 30px;
    height: 36px;
    top: 216px;
    right: 170px;
  }
  .sixth {
    top: 700px;
    left: 50%;
  }
  .seventh {
    top: 368px;
    left: 440px;
  }
  main {
    background: url(../images/pngs/PurpleLensFlaredsk1.png) left top no-repeat, url(../images/pngs/PurpleLensFlare.png) right top no-repeat;
    background-size: 1086px 836px, 951px 994px;
    background-color: #150E28;
  }
  main header h1 {
    font-size: 36px;
    padding: 0;
    margin-right: 0;
  }
  main header h2 {
    font-size: 36px;
    padding-top: 32px;
    text-align: right;
    padding-right: 55px;
  }
  #vectorFour {
    position: relative;
    z-index: 10;
  }
  #vectorFour img {
    width: 253px;
    position: absolute;
    bottom: -18px;
    right: 0;
  }
  .navBar {
    display: none;
  }
  nav {
    position: static;
    display: block;
    background: transparent;
    height: auto;
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: space-between;
  }
  nav p {
    padding-bottom: 0;
  }
  nav p:first-child {
    padding-top: 0;
  }
  nav p, nav button {
    margin-left: 0;
    font-size: 16px;
  }
  nav .registerButton {
    margin-top: 0;
  }
  .tophead {
    display: flex;
    height: 141px;
    justify-content: space-between;
    align-items: center;
    margin-left: 60px;
    margin-right: 60px;
  }
  .container1 {
    background: url(../images/pngs/metrix.png) right top no-repeat;
    background-size: 1164px 801px;
    background-blend-mode: luminosity;
    height: 600px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(25, 1fr);
    grid-template-rows: 1fr;
  }
  .container1 .firstDiv {
    margin-left: 60px;
    text-align: left;
    grid-area: 1/1/1/18;
    z-index: 5;
  }
  .container1 .firstDiv h1 {
    font-size: 64px;
    padding-top: 123px;
  }
  .container1 .firstDiv p {
    font-size: 20px;
    padding-bottom: 17px;
  }
  .container1 .firstDiv h2 {
    font-size: 48px;
    padding-top: 30px;
    padding-bottom: 75px;
  }
  .container1 .secondDiv {
    grid-area: 1/13/1/26;
    margin-top: 130px;
    overflow: hidden;
  }
  .container1 .secondDiv img:first-child {
    width: 828px;
    aspect-ratio: auto 828/715;
    max-width: 100%;
    height: auto;
  }
  .container1 .secondDiv img:last-child {
    width: 667px;
    aspect-ratio: auto 667/641;
    max-width: 100%;
    height: auto;
  }
  #creativeOne img {
    width: 53px;
    height: 73px;
    position: absolute;
    top: -46px;
    right: -12px;
  }
  .textimg {
    top: 18px;
  }
  .textimg .chain {
    width: 86px;
    height: 86px;
  }
  .textimg .boom {
    width: 58px;
    height: 58px;
  }
  .overviewContainer {
    text-align: left;
    display: grid;
    gap: 55px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 31px 74px 39px 115px;
  }
  .overviewContainer .mainImage {
    width: 490px;
    height: auto;
    margin: auto;
  }
  .overviewContainer .imgtext {
    font-size: 20px;
    text-align: center;
  }
  .overviewContainer .arrow {
    position: absolute;
    bottom: 0px;
    right: -5%;
    width: 49.43px;
    max-width: 100%;
    height: auto;
  }
  .overviewContainer .textdiv p {
    margin: 0;
    margin-top: 16px;
    font-size: 14px;
  }
  .ruleContainer {
    background-position: left top, right top 291px;
    background-size: 1037px 948px, 404px 959px;
    margin-top: -252px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 252px 100px 0px 181px;
  }
  .ruleContainer .rulesImg {
    padding-top: 0;
    grid-area: 1/3/1/2;
    width: 664px;
    height: auto;
    margin: auto;
    text-align: center;
  }
  .ruleContainer .textdiv {
    text-align: left;
    grid-area: 1/1/1/2;
  }
  .ruleContainer .textdiv p {
    margin: 0;
    font-size: 14px;
  }
  .judgingContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: url(../images/pngs/purpleflare5.png) left top no-repeat, url(../images/pngs/purpleFlare4.png) right top -579px no-repeat, url(../images/pngs/purpleflare6.png) right bottom -538px no-repeat;
    background-size: 1037px 948px, 404px 959px;
    background-color: #150E28;
    gap: 53px;
    align-items: center;
    padding: 78px 66px;
    position: relative;
  }
  .judgingContainer .judgingImg {
    padding: 0;
    width: 710px;
  }
  .judgingContainer .textdiv {
    text-align: left;
  }
  .judgingContainer .textdiv p {
    margin-left: 0;
    font-size: 16px;
  }
  .faqContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
    padding-left: 215px;
    padding-right: 101px;
  }
  .faqContainer h3 {
    margin: 0;
    text-align: left;
  }
  .faqContainer .faqImg {
    width: 741px;
  }
  .faqContainer #intro {
    font-size: 14px;
    text-align: left;
    margin-left: 0;
  }
  .faqContainer .questionsContainer {
    margin: 0;
  }
  .prizeContainer {
    text-align: left;
    background-size: 1037px 948px, 404px 959px, cover;
    position: relative;
  }
  .prizeContainer .prizeIntro {
    position: absolute;
    right: 270px;
    z-index: 10;
  }
  .prizeContainer .prizeIntro h3 {
    padding-top: 72px;
  }
  .prizeContainer .prizeIntro p {
    width: 401px;
    font-size: 16px;
    padding: 16px 0px;
  }
  .prizeContainer .prize {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    padding: 180px 60px 95px;
  }
  .prizeContainer .prize .prizecup {
    width: 548px;
  }
  .prizeContainer .priceLevels {
    gap: 26px;
    padding-bottom: 0;
  }
  .prizeContainer .firstPlace p:nth-of-type(1), .prizeContainer .secondPlace p:nth-of-type(1), .prizeContainer .thirdPlace p:nth-of-type(1) {
    font-size: 36px;
    line-height: normal;
  }
  .prizeContainer .firstPlace p:nth-of-type(2), .prizeContainer .secondPlace p:nth-of-type(2), .prizeContainer .thirdPlace p:nth-of-type(2) {
    font-size: 24px;
  }
  .prizeContainer .firstPlace p:nth-of-type(3), .prizeContainer .secondPlace p:nth-of-type(3), .prizeContainer .thirdPlace p:nth-of-type(3) {
    color: #D434FE;
    font-size: 32px;
  }
  .prizeContainer .secondPlace {
    width: 212px;
    height: 296px;
  }
  .prizeContainer .secondPlace img {
    width: 180px;
    height: 180px;
    margin-top: -84px;
  }
  .prizeContainer .firstPlace {
    height: 347px;
    width: 212px;
  }
  .prizeContainer .firstPlace img {
    position: relative;
    right: 45px;
    width: 296px;
    height: 296px;
    margin-top: -147px;
  }
  .prizeContainer .firstPlace p:nth-of-type(1) {
    font-size: 40px;
  }
  .prizeContainer .firstPlace p:nth-of-type(3) {
    color: #903AFF;
  }
  .prizeContainer .thirdPlace {
    width: 212px;
    height: 296px;
  }
  .prizeContainer .thirdPlace img {
    width: 180px;
    height: 180px;
    margin-top: -73px;
  }
  .prizeContainer .thirdPlace p:nth-of-type(3) {
    font-size: 32px;
  }
  .partnersContainer {
    background-size: 806px 781px;
  }
  .partnersContainer p {
    font-size: 14px;
    line-height: 27.5px;
    margin: 22px auto 65px;
    width: 452px;
  }
  .partnersContainer .partnerList {
    grid-template-columns: 257px 4px 257px 4px 257px;
    grid-template-rows: 112px 4px 112px;
  }
  .partnersContainer .partnerList img:nth-of-type(1) {
    width: 120px;
    height: 114px;
  }
  .partnersContainer .partnerList img:nth-of-type(2) {
    width: 213px;
    height: 40px;
  }
  .partnersContainer .partnerList img:nth-of-type(3) {
    width: 132px;
    height: 107px;
  }
  .partnersContainer .partnerList img:nth-of-type(4) {
    width: 147px;
    height: 110px;
  }
  .partnersContainer .partnerList img:nth-of-type(5) {
    width: 204px;
    height: 21px;
  }
  .partnersContainer .partnerList img:nth-of-type(6) {
    width: 231px;
    height: 21px;
  }
  .privacyContainer {
    background-position: right top, left bottom -181px;
    background-size: 519px 948px, 519px 948px;
    text-align: left;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 93px 123px;
    margin-bottom: 0;
  }
  .privacyContainer p:nth-of-type(1) {
    font-size: 14px;
  }
  .privacyContainer p:nth-of-type(2) {
    margin: 28px 0px;
    font-size: 14px;
  }
  .privacyContainer .policyStatement {
    text-align: center;
    margin: 69px 0px 0px;
    padding: 59px 72px;
    border-radius: 5px;
    border: 1px solid #D434FE;
    background: rgba(217, 217, 217, 0.03);
    max-width: 569px;
  }
  .privacyContainer .policyStatement p {
    color: #FFF;
    font-size: 14px;
    text-align: left;
  }
  .privacyContainer .policyStatement h4 {
    font-size: 16px;
    margin-top: 24px;
    text-align: left;
  }
  .privacyContainer .policyStatement .diffFont {
    font-size: 16px;
  }
  .privacyContainer .policyStatement ul {
    list-style-image: url(../images/svgs/listterms.svg);
    text-align: left;
  }
  .privacyContainer .policyStatement ul li {
    margin-top: 18px;
    font-size: 14px;
    padding-left: 14px;
  }
  .privacyContainer .privacyImg {
    background-size: 530px 648px;
    position: relative;
    z-index: 10;
    margin-top: 48px;
  }
  .privacyContainer .privacyImg img {
    width: 559px;
    height: auto;
  }
  footer .footerContainer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 146px;
    justify-content: space-between;
  }
  footer .useLinks {
    margin-top: 0;
  }
  footer .contactUs {
    margin-top: 0;
  }
  .timelineContainer .timeline {
    gap: 11px;
    width: 1233px;
    max-width: 90%;
    margin: 0 auto;
  }
  .timelineContainer .eachEvent {
    display: grid;
    grid-template-columns: 1fr 53px 1fr;
    grid-template-rows: 86px 53px;
    -moz-column-gap: 98px;
         column-gap: 98px;
    row-gap: 4.68px;
  }
  .timelineContainer .eachEvent .vertBar {
    width: 4px;
    height: 86px;
    grid-area: 1/2/2/3;
  }
  .timelineContainer .eachEvent h4 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .timelineContainer .eachEvent p {
    font-size: 16px;
  }
  .timelineContainer .eachEvent .timelineNum {
    width: 53px;
    height: 53px;
    grid-area: 2/2/3/3;
  }
  .timelineContainer .eachEvent .centerNum {
    font-size: 24px;
  }
  .timelineContainer .eachEvent .timelineDate {
    font-size: 24px;
  }
  .timelineContainer .eachEvent .timelineDetails {
    align-self: center;
  }
  .timelineContainer .eachEvent:nth-of-type(odd) .timelineDetails {
    grid-area: 2/1/3/2;
    text-align: right;
  }
  .timelineContainer .eachEvent:nth-of-type(odd) .timelineDate {
    grid-area: 2/3/3/4;
  }
  .timelineContainer .eachEvent:nth-of-type(even) .timelineDetails {
    grid-area: 2/3/3/4;
  }
  .timelineContainer .eachEvent:nth-of-type(even) .timelineDate {
    grid-area: 2/1/3/2;
    text-align: right;
  }
}
@media only screen and (min-width: 1250px) {
  .tophead {
    margin-left: 128px;
    margin-right: 128px;
  }
  .container1 {
    height: 700px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
  }
  .container1 .firstDiv {
    margin-left: 128px;
  }
  .container1 .firstDiv h1 {
    font-size: 80px;
  }
  .container1 .firstDiv h2 {
    font-size: 64px;
    padding-top: 77px;
    padding-bottom: 95px;
  }
  .container1 .secondDiv {
    margin-top: 50px;
  }
  .overviewContainer {
    gap: 109px;
    padding: 62px 148px 78px 230px;
  }
  .overviewContainer .imgtext {
    font-size: 24px;
  }
}
.notAllowed {
  cursor: not-allowed;
}/*# sourceMappingURL=style.css.map */