* {
  font-family: 'Urbanist', sans-serif;
}

:root {
  --main-text-color: #FFF9D6;
  --main-bg-color: #0A0058;
  --hover-bg-color: #0A0058;
  --hamburger-back-color: #030139;
}

html{
  overflow-x: hidden;
}

html,
body {
  font-size: 16px;
  margin: 0;
}

/* Main Containers */
.container {
  width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 993px) {
  .container {
    width: 90%;
  }
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  letter-spacing: 0.075em;
  margin-bottom: 0px;
  margin-top: 0px;
  text-align: center;
  font-size: 4vw;
  text-transform: uppercase;
}

@media only screen and (max-width: 736px) {
  h1 {
    font-size: 3.5vw;
  }
}

p {
  font-size: 1rem;
}

a {
  color: #0A0058;
}

/* Hambuger Button in Mobile View */
.hamburger-btn {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0c9";
  appearance: none;
  color: var(--main-text-color);
  -webkit-text-stroke: 1px black;
  visibility: hidden;
  z-index: 999;
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
}

.hamburger-btn:checked::before {
  font-size: 3rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00d";
}

.hamburger-menu {
  position: fixed;
  right: -100%;
  transition: all 0.8s ease;
  z-index: 998;
  background-color: var(--hamburger-back-color);
  width: 50vw;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.hamburger-menu * {
  color: var(--main-text-color);
  text-decoration: none;
  font-size: 0.8cm;
}

@media only screen and (max-width: 1005px) {
  .hamburger-btn {
    visibility: visible;
  }

  .hamburger-btn.fa-bars:checked+.hamburger-menu {
    right: 0;
  }
}

/* Nav Bar */

nav {
  width: 100%;
  height: 64px;
  top: 0;
  z-index: 99;
  position: fixed;
  background: transparent;
  transition: all 0.2s ease;
  -webkit-text-stroke-color: #030139;
  -webkit-text-stroke-width: 0px;
}

nav.sticky {
  background-color: #030139;
  -webkit-text-stroke-width: 0px;
}

nav .home {
  display: flex;
  align-items: center;
  height: 60px;
}

nav .home span {
  background-color: #030139;
  border-radius: .5em;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 0px;
}

nav .home img {
  height: 75px;
  margin-right: 7.5px;
  margin-top: 7.5px;
}

nav li:first-child {
  margin-right: auto;
}

nav li:last-child {
  margin-right: 150px;
}

nav li {
  margin: 0px 15px 0px 15px;
  list-style-type: none;
}

nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
  margin: auto;
  padding: 0px;
}

nav ul a {
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  color: #FFF9D6;
  /* color: var(--main-text-color); */
  padding: 0px 10px;
  height: 64px;
  font-size: 1.5rem;
  line-height: 64px;
  position: relative;
  transition: all 0.5s ease;
}

nav ul a.mobile-registration-link {
  background-color: #0A0058;
  /* background-color: #c53043;
  color: var(--main-text-color); */
  height: 27px;
  padding: 0px 5px;
  margin: 0px 10px;
  border-radius: 50%;
  position: relative;
  top: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: normal;
  transition: transform 0.15s;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

nav ul a.mobile-registration-link:hover {
  -webkit-transform: scale(1.05) translateY(-50%);
  transform: scale(1.05) translateY(-50%);
  transition: transform 0.3s;
  background-color: #030139;
  color: #FFF9D6;
  position: relative;
  top: 50%;
}

nav ul a.mobile-registration-link:hover::before {
  visibility: hidden;
}

nav ul a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF9D6;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

nav ul a:hover::before {
  visibility: visible;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}

#nav-section {
  background-color: #030139;
  border-radius: .5em;
  margin-top: -15px;
}

#nav-section a {
  line-height: 0;
  height: 15px;
  margin-top: 15px;
}

/* Splash/Dolly Zoom */

.scroll-track {
  position: relative;
  background-color: black;
  padding-bottom: 10px;
}

.sticky-div {
  position: -webkit-sticky;
  /* for safari compatibility */
  position: sticky;
  top: 0vh;
  /* sets offset point i.e. when screen top hits div+10vh height, sticky activated*/
  background-color: black;
  height: 100vh;
  width: 100vw;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}

.sticky-over {
  margin: 10px;
  margin-top: 100vh;
  /* make text start lower by 100vh so that sticky-div can stay sticky while not covering text over that 100vh scroll */
  color: black;
}

.space-station-frame {
  background: url("/static/assets/images/dolly-zoom-space-art/(border) space station border.svg") no-repeat center;
  background-size: 125vw 110vh;
  height: 100vh;
  width: 100vw;
  z-index: 2;
  overflow: hidden;
}

.starry-sky {
  margin-top: -100vh;
  height: 100vh;
  width: 100vw;
  background: url("/static/assets/images/dolly-zoom-space-art/Stars transparent.svg") no-repeat center;
  background-size: 150vw 150vh;
  scale: 1.0;
  z-index: 1;
}

#astronaut-ram {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -90%);
  height: auto;
  width: 50vw;
  max-width: 100vw;
  z-index: 4;
}

#ctrl-panel {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-10%, -50%);
  height: 30vw;
  /* intentionally kept vw */
  width: auto;
  max-width: 100vw;
  z-index: 3;
}

#pipes {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(10%, -50%);
  height: 40vw;
  /* intentionally kept vw */
  width: auto;
  max-width: 100vw;
  z-index: 3;
}

#id-card {
  position: absolute;
  top: 85%;
  left: 0%;
  transform: translate(20%, -50%);
  height: 15vw;
  /* intentionally kept vw */
  width: auto;
  max-width: 100vw;
  z-index: 3;
}

#screen {
  position: absolute;
  top: 100%;
  right: 0%;
  transform: translate(15%, -115%);
  height: 30vw;
  /* intentionally kept vw */
  width: auto;
  max-width: 100vw;
  z-index: 3;
}

#coffee {
  position: absolute;
  top: 100%;
  right: 0%;
  transform: translate(-170%, -150%);
  height: 10vw;
  /* intentionally kept vw */
  width: auto;
  max-width: 100vw;
  z-index: 3;
}

#ram-planet {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0%, -50%);
  height: 40vw;
  /* intentionally kept vw */
  width: auto;
  max-width: 100vw;
  z-index: 3;
}

#HackNC-text {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0%, -70%);
  height: 40vw;
  /* intentionally kept vw */
  width: auto;
  max-width: 100vw;
  z-index: 3;
}

.banner-info {
  width: calc(38vw - 20px);
  position: absolute;
  right: 7.5%;
  top: 55vh;
  color: #FFED7B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 4;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.banner-info .mobile-registration-link {
  margin-top: 0px;
  display: none;
  text-align: right;
}

.banner-info .date {
  font-weight: bold;
  font-size: 2.5vw;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Monitor View Resizing */
@media only screen and (min-width: 1350px) {
  #astronaut-ram {
    width: 40vw;
  }

  #screen {
    height: 25vw;
    /* intentionally kept vw */
    top: 105%;
    /* transform: translate(15%, -115%); */
  }

  #coffee {
    height: 7.5vw;
    /* intentionally kept vw */
    right: 7.5%;
  }

  #ram-planet {
    height: 35vw;
  }

  #HackNC-text {
    height: 35vw;
  }
}

/* [Mobile] Main Banner */
@media only screen and (min-width: 320px) and (max-width: 600px) {

  .banner-info {
    width: 100%;
    top: 0%;
    right: 100%;
    left: 0%;
    transform: translate(0%, 20%);
    bottom: 0%;
    color: #FFED7B;
    text-align: center;
  }

  #ram-planet {
    top: 42.5%;
    left: 47.5%;
    transform: translate(-50%, -50%);
  }

  #HackNC-text {
    top: 55%;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .banner-info .register-button {
    text-decoration: none;
    background-color: #0A0058;
    display: block;
    color: #FFED7B;
    font-weight: bold;
    width: max-content;
    padding: 5px 10px;
    margin: 10px auto;
    border-radius: 5px;
    font-size: 1rem;
  }

  .banner-info .mobile-registration-link:last-child {
    margin-bottom: 0px;
  }

  .banner-info .date {
    font-weight: bold;
    font-size: 1.45rem;
    text-transform: capitalize;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 320px) {

  .banner-info {
    width: 100%;
    top: 0%;
    right: 100%;
    left: 0%;
    transform: translate(0%, 12.5%);
    bottom: 0%;
    color: #FFED7B;
    text-align: center;
  }

  #ram-planet {
    top: 45%;
    left: 47.5%;
    transform: translate(-50%, -50%);
  }

  #HackNC-text {
    top: 52.5%;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .banner-info .mobile-registration-link {
    text-decoration: none;
    background-color: #0A0058;
    display: block;
    color: #FFED7B;
    font-weight: bold;
    width: max-content;
    padding: 5px 10px;
    margin: 10px auto;
    border-radius: 5px;
    font-size: 0.75rem;
  }

  .banner-info .date {
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: capitalize;
    margin-bottom: 1px;
  }
}

/* MLH Trust Sizing */

#mlh-trust-badge {
  display:block;
  max-width:100px;
  min-width:60px;
  position:fixed;
  right:25px;
  top:0;
  width:10%;
  z-index:10000;
}

#mlh-trust-badge img {
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  #mlh-trust-badge {
    max-width: 80px;
  }

  nav li:last-child {
    margin-right: 120px;
  }

}

@media only screen and (max-width: 600px) {
  .hide-button {
    display: none !important;
  }
}

@media only screen and (max-width: 1005px) {
  .hide-on-med-and-down {
    display: none !important;
  }

  #mlh-trust-badge {
    display: none !important;
  }
}

.involve-button {
  border-radius: 35px;
  width: 30vw;
  transition: transform 0.15s;
  background-color: #0A0058;
  border-color: #702DA4;
  border-width: 1px;
  border-style: solid;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-top: 1vw;
  padding-bottom: 1vw;
  font-size: 2vw;
  position: relative;
  z-index: 3;
  margin-top: 1vh;
}

.involve-button a {
  color: #FFED7B;
  text-decoration: none;
  font-weight: bold;
}

.involve-button:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transition: transform 0.3s;
}

/* Splash to About section transition */

#splash-about-transition {
  background: url("/static/assets/images/dolly-zoom-space-art/Stars transparent.svg"), linear-gradient(#000000,#01001d);
  position: relative;
  width: 100vw;
  height: 30vh;
  max-height: 160vh;
  object-fit: cover;
  z-index: 3;
  margin-top: -25vh;
  margin-bottom: -15vh;
}

/* Medium screens */
@media screen and (max-width: 1199px) and (min-width: 768px) {
  #splash-about-transition {
    max-height: 120vh;
    margin-top: -60vh;
    margin-bottom: -13vh;
  }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
  #splash-about-transition {
    max-height: 80vh;
    margin-top: -40vh;
    margin-bottom: -15vh;
  }
}

/* Smallest of screens */
@media screen and (max-width: 380px) {
  #splash-about-transition {
    max-height: 80vh;
    margin-top: -40vh;
    margin-bottom: -13vh;
  }
}

/* About */
.about {
  background: #01001d url("/static/assets/images/dolly-zoom-space-art/Stars transparent.svg") no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  padding: 20vh 0 23vh 0;
  color: #FFF9D6;
}

.about-description {
  background-color: #FFF9D6;
  color: #0A0058;
  border-radius: 5px;
  border-color: #0A0058;
  padding: 1rem;
  font-size: 1rem;
}

.about-heading {
  text-align: left;
}

.about-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8vw;
}

.about-detail {
  flex: 2 1 0;
}

#about-graphic {
  width: 40%;
  height: auto;
  float: right;
}

#about-past-projects {
  margin-top: 20px;
  border-radius: 35px;
  transition: transform 0.15s;
  background-color: #FFF9D6;
  border-color: #0A0058;
  border-width: 1px;
  border-style: solid;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-top: 1vw;
  padding-bottom: 1vw;
  font-size: 1rem;
  margin-right: 30px;
}

#about-past-projects a {
  color: #0A0058;
  text-decoration: none;
  font-weight: bold;
}

#about-past-projects:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transition: transform 0.3s;
}

/* [Mobile] About */
@media only screen and (max-width: 600px) {
  .about {
    min-height: 0vh;
    padding-top: 27.5vh;
    padding-bottom: 0;
  }

  .about-info {
    position: relative;
    top: -110px;
    text-overflow: initial;
    overflow: scroll; 
  }

  .about-heading {
    font-size: 1.4rem;
    width: max-content;
  }

  .about-description {
    font-size: .8rem;
    margin-bottom: 10px;
    width: 90%;
    max-width: 100%;
    margin-right: 5px;
  }

  #about-graphic {
    display: none;
  }
}

@media only screen and (max-width: 375px) {
  .about-info {
    top: -90px;
  }

  .about-heading {
    font-size: 1.2rem;
  }

  #about-graphic {
    width: 160px;
    right: 90px;
    display: none;
  }

  .about-description {
    font-size: .80rem;
    width: 149%;
  }
}


@media only screen and (max-width: 320px) {
  .about-info {
    top: -60px;
  }

  .about-heading {
    font-size: 1.2rem;
  }

  #about-graphic {
    width: 120px;
    right: 70px;
    top: 197px;
    display: none;
  }

  .about-description {
    font-size: .75rem;
    width: 128%;
  }
}

/* About to FAQ */
.about-to-faq {
  height: 20vh;
  background: url("/static/assets/images/dolly-zoom-space-art/Stars transparent.svg") center, linear-gradient(#01001d,#0A0058);
}

.mars {
  width: 7vw;
  height: auto;
  position: relative;
  top: 2vh;
  left: 15vw;
  transform: translate(50%, 50%);
}

.neptune {
  width: 10vw;
  height: auto;
  position: relative;
  top: -4vh;
  left: 30vw;
  transform: translate(50%, 50%);
}

.saturn {
  width: 20vw;
  height: auto;
  position: relative;
  transform: translate(50%, 50%);
  top: -7vh;
  left: 11vw;
}

/* FAQ */
.faq {
  background: #0A0058 url("/static/assets/images/dolly-zoom-space-art/Stars transparent.svg") no-repeat center;
  background-size: contain;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  padding: 0 0 20vh 0;
  color: #FFF9D6;
}

.faq-img {
  transition: transform 0.3s ease-in-out;
}


#faq-container {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  margin: -1vw;
  align-items: flex-start;
}

#faq-container div {
  flex: 0 1 50%;
  padding: 5px;
  box-sizing: border-box;
}

@media only screen and (max-width: 993px) {
  #faq-container div {
    flex: 0 1 100%;
  }
}

#faq-container div {
  text-align: left;
  margin-bottom: 0px;
  margin-top: 0px;
}

@media only screen and (max-width: 993px) {
  #faq-container div h2 {
    font-size: 2rem;
  }
}

.faq-column {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}

/* FAQ Questions */
.accordion-header {
  cursor: pointer;
  background-color: transparent;
  color: #FFF9D6;
  padding: 10px;
  border: none;
  border-radius: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  margin-top: 0px;
}

.accordion-header img.faq-img {
  height: 30px;
  margin: 0px 15px 0px 15px;
}

.accordion-header p.faq-question {
  margin: 5px;
  font-size: 1.25rem;
  font-weight: 600;
}

.active,
.accordion-header:hover {
  cursor: pointer;
  background-color: #01001d;
}

.accordion-body {
  display: none;
}

.accordion-body p.faq-answer {
  margin: 0 0 0 55px;
  padding: 1rem;
  background-color: #FFF9D6;
  color: #0A0058;
  border-radius: 5px;
  font-size: 1rem;
}


/* [Mobile] FAQ */
@media only screen and (max-width: 600px) {
  .faq-header {
    font-size: 1.7rem;
  }

  .accordion-header p.faq-question {
    font-size: .9rem;
  }

  .accordion-body p.faq-answer {
    font-size: .8rem;
  }

  .accordion-header {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .accordion-header img.faq-img {
    height: 20px;
    margin-right: 15px;
  }

  .faq div.container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Sponsors */
.sponsors {
  background: linear-gradient(#0A0058 0%, #1800cd 80%, #6450ff 100%);
  background-size: contain;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  padding: 0 0 0 0;
  color: #FFF9D6;
}

#sponsor-section {
  display: flex;
  flex-direction: column;
}

.sponsorFooter {
  margin: auto;
  margin-bottom: 2vh;
  text-align: center;
  background-color: #FFF9D6;
  border-radius: 5px;
  border-color: #0A0058;
  padding: 1rem;
  color: #0A0058;
  width: fit-content;
  display: block !important;
}

.sponsor-email {
  color: #702DA4;
}

.sponsor-container {
  background-color: #FFF9D6;
  border-radius: 5px;
  border-color: #0A0058;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 25px;
  padding: 4rem;
}

#JohnDeere-logo {
  height: 7rem;
  width: 10rem;
}

#KTP-logo,
#DeutscheBank-logo, 
#Lowes-logo {
  height: 5rem;
}

#WellsFargo-logo,
#StickerMule-logo {
  height: 7rem;
}

#Pearson-logo,
#Infosys-logo,
#Cisco-logo,
#CapitalOne-logo,
#nutanix-logo {
  height: 4rem;
}

#CapTech-logo,
#Revvity-logo, 
#Fidelity-logo {
  height: 6rem;
}

#Bandwidth-logo {
  height: 9rem;
}

#Principal-logo {
  height: 11rem;
}

#Zilliz-logo,
#Pendo-logo,
#stand-out-stickers-logo,
#Resnet-logo {
  height: 8rem;
}

#PSTC-logo {
  height: 7rem;
}

.sponsor-image {
  mix-blend-mode: multiply;
}

.sponsor-image:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transition: transform 0.3s;
}


/* [Mobile] Sponsors */
@media only screen and (max-width: 736px) {
  .sponsors-header {
    font-size: 1.8rem;
  }

  .sponsorFooter {
    font-size: .9rem;
  }
}

footer {
  background: #6450ff;
  z-index: 1;
  color: #FFF9D6;
  font-size: 1.3rem;
  text-align: center;
  overflow: hidden;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

footer p {
  margin-top: 0;
  margin-bottom: 10px;
}

footer a {
  color: #FFF9D6;
  margin: 0 10px;
}

footer .contact-info {
  margin-bottom: 20px;
}

footer u {
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  color:#0A0058;
}

.background-container {
  background: url("/static/assets/images/Footer/footer combined.svg") bottom center no-repeat;
  background-size: cover;
  height: fit-content;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding-top: 30vw;
  padding-bottom: 5vw;
}

.footer-content div > u {
  color: #FFF9D6;
  font-size: 2vw;
}

.footer-content a > p {
  color: #FFF9D6;
  font-size: 2vw;
}

@media only screen and (max-width: 700px){
  .footer-content div > u {
    font-size: 17.5px;
  }

  .footer-content a > p {
    font-size: 17.5px;
  }

}


.live-button {
  font-size: 2.5em;
}

footer img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 50px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-left u {
  margin-right: 15px;
}

.social-links {
  display: flex;
  align-items: center;
}

.social-links a {
  margin-left: 10px;
}