@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400&family=Poppins:wght@200;400;700&display=swap");
/* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css"); */

@import url("https://fonts.googleapis.com/css2?family=Cabin&family=Cabin+Sketch:wght@700&family=Montserrat&display=swap");
/* font-family: 'Cabin', sans-serif;
font-family: 'Cabin Sketch', cursive;
font-family: 'Montserrat', sans-serif; */

@import url("https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Grand+Hotel&family=Lobster&family=VT323&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
  /* font-family: Poppins; */
  /* font-family: 'Cabin', sans-serif; */
  /* font-family: 'Cabin Sketch', cursive; */
  /* font-family: 'Montserrat', sans-serif; */
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 80px;
  overflow-x: hidden;
}
body {
  font-family: Poppins;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100vw;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #69c6fb #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #ebf8ff;
}

*::-webkit-scrollbar-thumb {
  background-color: #69c6fb;
  border-radius: 20px;
  border: 3px solid #ffffff;
}

*::-webkit-scrollbar-thumb:hover {
  background: #156999;
}

@media screen and (max-width: 768px) {
  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 0px;
    -webkit-appearance: none;
  }
  /* body {
    overflow-y: hidden;
  } */
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  font-size: 18px;
  text-align: justify;
}
/* Start Preloader */
#preloader {
  background: #f7fcff no-repeat center center;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.water {
  width: 400px;
  height: 400px;
  background-color: #4db8ff;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.water:before,
.water:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -225px;
  background-color: #fff;
}
.water:before {
  border-radius: 45%;
  background: #fff;
  animation: wave 5s linear infinite;
}
.water:after {
  border-radius: 35%;
  background: rgba(255, 255, 255, 0.5);
  animation: wave 5s linear infinite;
}
@keyframes wave {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* End Preloader */
button {
  border: none;
}
button:focus {
  outline: none;
}

.gradient-text-light {
  background-color: #e4f4ff;
  background-image: linear-gradient(45deg, #6bc4ff, #ffffff);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.gradient-text-dark {
  background-color: #000406;
  background-image: linear-gradient(45deg, #00344d, #16a2ff);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.gradient-text-blue {
  background-color: #6bc4ff;
  background-image: linear-gradient(45deg, rgb(0, 170, 255), #6bc4ff);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

#hero {
  height: 100vh;
  margin-bottom: 0%;
  padding-bottom: 0%;
  background-color: #63c3fb;
}

#hero svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin-bottom: 0%;
  padding-bottom: 0%;
}

#home-section {
  position: absolute;
  top: 0;
  height: 100vh;
  z-index: 2;
  width: 100%;
}

.font-esgalon {
  font-family: "Caveat Brush", cursive;
  font-size: 4em;

  /* font-family: 'Grand Hotel', cursive;
  font-size: 4em; */
  /* font-family: 'VT323', cursive;
  font-size: 4em; */

  /* font-family: 'Lobster', cursive;
  font-size: 3.6em; */

  color: #fff;
}

.cloud-cover svg {
  position: absolute;
  inset: 0;
  width: 100vw;
  top: -20vw;
}

.home {
  min-height: 100vh;
  color: #d1e5dc;
  font-family: Poppins;
}

/* Blinking text */
.blink-hard {
  animation: blinker 1s step-end infinite;
  animation-delay: 4s;
}
.blink-soft {
  font-size: 0.7rem;
  text-align: center;
  /* padding: 1% 1% 0 1%; */
  padding: 0;
  margin: 0;
  /* align-items: center;
  align-content: center; */
}
.hero-card-top {
  color: rgba(255, 255, 255, 0.8);
  min-width: 350px;
  width: 40vmin;
  padding: 0.5rem;
  margin: 1rem 0 0 0;
  align-items: center;
  /* backdrop-filter: blur(3px); */
  border: 1px solid rgba(176, 227, 246, 0.2);
  /* background: rgba(136, 210, 252, 0.5); */
  background: rgba(136, 210, 252, 0.1);
  border-radius: 6px;
  animation: blinker 2s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
/* Blinking text close */
.main {
  height: 80%;
  z-index: 1;
}

.snowflake {
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(white, white);
  border-radius: 50%;
  filter: drop-shadow(0 0 10px white);
  z-index: 1;
}

.fill {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.h1-title {
  font-weight: 700;
  font-size: 3.5rem;
}

.col-text {
  justify-content: center;
}

.dropdown-menu {
  background: #021f3b;
  color: #d1e5dc;
  font-family: Poppins;
}

.dropdown-item:hover {
  background: #021f3b;
  color: #d1e5dc;
}

.register {
  color: white;
  margin-top: 32px;
  font-weight: 700;
  background-color: #00a878;
  border-radius: 50px;
  width: 90%;
  font-size: 1.25rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero-buttons-container {
  max-width: 312px;
}

.hero-button {
  color: white;
  /* margin-top: 32px; */
  font-weight: 700;
  background-color: rgb(110, 197, 255, 0.8);
  /* background-color: rgba(0, 1, 2, 0.7); */
  border: 1px solid rgb(253, 253, 254, 0.5);
  border-radius: 50px;
  width: 100%;
  font-size: 1em;
  padding: 0.5em 1em;
  margin-bottom: 2vmin;
  /* padding: 4px 4px; */
  transition: all 0.4s ease-in-out;
}

.hero-button span {
  font-family: Poppins;
  font-size: 0.9rem;
  font-weight: normal;
}

.hero-button:hover {
  background: rgba(136, 210, 252, 0.8);
}

.hero-button-container > a > img {
  transition: all 0.6s;
}
.hero-button-container > a > img:hover {
  transform: scale(0.9);
}

.about {
  /* background-color: #d1e5dc; */
  /* background-color: #1d1d3a; */
  /* background-image: url("./img/Cavern Background Blue.jpg"); */
  /* min-height: 100vh; */
  /* font-family: Poppins; */
  color: white;
  padding-top: 0%;
}

.about {
  line-height: 1.5;
  padding: 50px 10px 40px 10px;
  text-align: justify;
}

.about h2 {
  text-align: left;
  font-weight: 700;
  font-size: 35px;
}

.about p {
  font-size: 1.25rem;
  font-family: Inter;
  text-align: justify;
  color: #fff;
  font-weight: 350;
}

#about-section {
  position: relative;
  padding-top: 0%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  backdrop-filter: blur(10px);
  background-color: #201c3c;
  z-index: 5;
}

.about-section-logo {
  margin: auto;
  display: block;
  height: auto;
  width: 80%;
}

@media only screen and (min-width: 521px) and (max-width: 1000px) {
  .about {
    padding: 30px 60px 30px 60px;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about p {
    font-size: 1rem;
  }

  .about-section-logo {
    width: 40%;
  }
}

@media only screen and (max-width: 520px) {
  .about {
    padding: 30px 30px 30px 30px;
  }

  .about h2 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 0.75rem;
  }

  .about-section-logo {
    width: 50%;
  }
}

.revisit {
  color: white;
  margin-top: 48px;
  font-weight: 700;
  background-color: #63c3fb;
  border-radius: 50px;
  width: 100%;
  font-size: 1.25rem;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.6s ease-in-out;
}

.revisit:hover {
  background-color: #00a1ff;
}

#stats-section {
  position: relative;
  padding-top: 0%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  backdrop-filter: blur(10px);
  z-index: 5;
}

.stats {
  background-color: #201c3c;
  min-height: 80vh;
  color: #fff;
  /* background-image: url("./img/bg_stars.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0%;
}

.stats-card {
  /* background-color: rgb(0, 162, 255, 0.05); */
  background-color: rgba(0, 0, 0, 0.332);
  /* background-color: #fff; */
  opacity: 10;
  /* mask: linear-gradient(transparent, black 1000%); */
}

.stats-statistics {
  margin-bottom: 3%;
}

/* Start Photo Roller */
:root {
  --photoCount: 6;
  --photoWidth: 350px;
  --photoHeight: 233px;
}

.testimonials-photo-roll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 10vmin auto;
}
.testimonials-photo-roll {
  height: calc(var(--photoHeight) + 55px);
  /* width: calc(var(--photoHeight) * var(--photoWidth)); */
  width: 2532px; /* photoHeight * photoWidth */
  font-size: 0;
}
.testimonials-photo-roll img {
  height: var(--photoHeight);
  width: var(--photoWidth);
  transition: all 0.5s ease;
  object-fit: cover;
  margin: 2rem;
  border-radius: 1rem;
}
.testimonials-photo-roll img:hover {
  scale: 1.05;
  cursor: pointer;
}
.testimonials-photo-roll img:first-child {
  animation: bannermove 25s linear infinite;
}
/* Keyframe animations*/
@keyframes bannermove {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: -2000px;
  }
}
/* End Photo Roller */

/* Start roller img shine on hover */

.img-shine {
  overflow: hidden;
  display: inline-block;
}

.img-shine:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);

  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Hover state - trigger effect */
.img-shine:hover:after {
  opacity: 1;
  left: 130%;
  transition-property: left, top, opacity;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}

/* Active state */
.img-shine:active:after {
  opacity: 0;
}

/* End roller img shine on hover */

/* *** Start Repeating Background Text *** */
.repeating-text-background {
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
}
.repeating-text-background .accent-text {
  font-family: Krona One, sans-serif;
  -webkit-text-stroke: 2px rgba(105, 197, 251, 0.3);
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 92px;
  overflow: hidden;
  width: 2000%;
  line-height: 1.12;
}

.repeating-text-background .accent-text:nth-child(3n - 1) {
  transform: translateX(-50px);
}

.repeating-text-background .accent-text:nth-child(3n - 2) {
  transform: translateX(-150px);
}

.repeating-text-background .accent-text:nth-child(3n) {
  transform: translateX(-100px);
}
/* *** End Repeating Background Text *** */

.bold-t1 {
  font-size: 36px;
  font-weight: 700;
}
.bold-t2 {
  font-size: 24px;
  font-weight: 700;
}

.no-margin {
  margin: 0 !important;
  padding: 0 !important;
}

.stats .bold-t1 {
  /* margin-top: 48px; */
  margin-bottom: 8%;
}

.events {
  background-color: #021f3b;
  min-height: 70vh;
  color: #d1e5dc;
  background-image: url("./img/bg_stars.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel button span {
  font-size: 2rem;
}

.carousel-indicators {
  bottom: -3vh;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
}

.carousel-indicators [data-bs-target].active {
  width: 32px;
  border-radius: 10px;
}

.carousel-control-next {
  right: -8vw;
}
.carousel-control-prev {
  left: -8vw;
}

.carousel-item .card {
  background-color: #3a455085;
}

.carousel-item .card .card-body {
  padding: 48px 16px;
}

.sponsor-us {
  padding: 70px 30px;
  background-color: #fcfeff;
  min-height: 100vh;
  overflow-x: hidden;
}

.sponsor {
  color: white;
  margin-top: 32px;
  font-weight: 700;
  background-color: #00a1ff;
  border-radius: 50px;
  width: 40%;
  font-size: 1.25rem;
  padding: 12px 16px;
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.sponsor:hover {
  background-color: #6ec5ff;
}

.sponsor-section-link {
  color: #0079bf;
}

#sponsors .row img {
  /* max-width: 250px;
  width: auto;
  max-height: 200px; */
  max-width: 200px;
  width: auto;
  max-height: 150px;
  padding: 1rem;
  margin: 1rem;
}

#sponsors a img:hover {
  transform: scale(1.07);
  transition: all 0.6s;
}

#sponsor .row .col-6 {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

@media only screen and (min-width: 521px) and (max-width: 1000px) {
  #sponsors .row img {
    /* width: 95%;
    height: auto; */
  }

  .sponsor-us {
    padding: 30px 60px 30px 60px;
  }

  .sponsor-us p {
    font-size: 1.15rem;
  }
}

@media only screen and (max-width: 700px) {
  .sponsor-spacer {
    display: none;
  }
}

@media only screen and (max-width: 520px) {
  #sponsors .row img {
    width: 80%;
    padding: 0.3rem;
    margin: 0;
  }

  .sponsor-us {
    padding: 30px 30px 30px 30px;
  }

  .sponsor-us p {
    font-size: 1.2rem;
  }

  .sponsor-spacer {
    display: none;
  }
}

.sponsor-container > a > img {
  transition: all 0.6s;
}
.sponsor-container > a > img:hover {
  transform: scale(0.9);
}

.faq {
  min-height: 150vh;
  padding-bottom: 25%;
  background-color: #021f3b;
  color: #dcf0fc;
  padding-top: 8%;
  background: url("img/trees-snow.webp") bottom no-repeat, #63c3fb;
  background-size: 100%, cover;
}

.accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 32px;
  border-radius: 4px;
  border-bottom: 2px solid #22b9f0;
  background: rgba(136, 210, 252, 0.5);
}
.accordion-button {
  color: #305c75;
  background-color: transparent;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
}

.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:hover {
  background: rgba(136, 210, 252, 0.8);
}

.accordion-button:not(.collapsed) {
  color: #305c75;
  background: rgba(136, 210, 252, 0.6);
  box-shadow: none;
}

.accordion-body {
  background: rgba(136, 210, 252, 0.6);
  color: #000;
  font-size: 14px;
  font-family: Inter;
  border-radius: 0 0 4px 4px;
  padding-top: 0;
}

.footer {
  background: linear-gradient(#fff, rgb(136, 210, 252));
  color: #000;
  padding: 5%;
  padding-bottom: 0%;
}

.footer .bi {
  color: #eb476f;
}

.footer h2 {
  text-align: center;
}

.footer p {
  font-size: 14px;
  text-align: center;
}

.footer p.lead.no-margin {
  font-size: 16px;
  color: #d1e5dc;
}

a {
  color: inherit;
}

.sketch-font {
  font-family: "Cabin Sketch", "Poppins", cursive;
}

.social-icons {
  opacity: 0.7;
}

#discord-footer {
  width: 40px;
  border-radius: 45px;
}

.social-icons:hover {
  opacity: 1;
}

.social-icons img {
  width: 36px;
}

#social-nav-icons {
  font-size: 18px;
  color: white;
}

#social-nav-icons > img {
  width: 22px;
}

.campus img {
  border-radius: 5px;
  width: 100%;
}

#scroll-spy {
  padding-top: 0px;
  padding-bottom: 0px;
  background: rgba(105, 197, 251, 0.8);
  box-shadow: 10px 10px 76px 0px rgb(0 0 0 / 5%);
  backdrop-filter: blur(10px);
  /* color: #042c44; */
  mask: linear-gradient(transparent, black 60%);
}

#scroll-spy-link {
  font-family: "Cabin Sketch", "Poppins", cursive;
}

#scroll-spy-link :hover {
  color: #18a7ff;
}

#navbarDropdown {
  /* background: rgba(33, 37, 41, 0.2); */
  font-family: "Cabin Sketch", "Poppins", cursive;
  backdrop-filter: blur(2px);
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-align: center;
}

.navbar-dark .navbar-nav .nav-link :hover {
  color: #fff;
}

.container {
  justify-content: center;
}

.hero-card {
  color: #f3faff;
  min-width: 350px;
  width: 40vmin;
  padding: 0.5rem 0;
  margin: 3vh 0;
  align-items: center;
  /* backdrop-filter: blur(3px); */
  border: 1px solid rgba(176, 227, 246, 0.2);
  /* background: rgba(136, 210, 252, 0.5); */
  background: rgba(136, 210, 252, 0.1);
  border-radius: 6px;
}

.container .main-page .home-page-logo {
  padding: 10rem;
}

/* Countdown Starts Here  */
#countdown-section {
  background: #69c6fb;
}

.countdown-container {
  position: relative;
  margin: auto;
  width: max-content;
}

.countdown p {
  color: #fff;
  text-align: center;
  font-size: larger;
}

.countdown-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 5px;
  width: max-content;
  margin: auto;
  padding: 0.8rem 0 0.8rem 0;
  /* background-color: hsl(204, 100%, 71%, 0.05); */
}

.countdown-block {
  color: #fff;
  position: relative;
  display: inline-block;
  min-width: 80px;
  margin-right: 10px;
  padding-right: 12px;
}
.countdown-block:not(:last-child) ::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  opacity: 0.2;
  background: #ffffff44;
}

.countdown-block span {
  float: left;
  clear: left;
  text-align: center;
  width: 100%;
}

.countdown-block .countdown-title {
  font-size: 2.5rem;
}

.countdown-block .countdown-desc {
  color: rgba(255, 255, 255, 0.5);
}

/* Countdown  Ends Here*/

/* relative position for scrollspy to work */
body,
section {
  position: relative;
}

.navbar-logo-custom {
  margin-right: 50px;
  height: 100px;
  width: auto;
  float: left;
}

.home-top-space-custom {
  width: 100%;
  height: 90px;
}

/* Campus images */
.heading-campus {
  font-size: 20px;
  color: #28fac5;
  margin-bottom: 20px;
}
.campus {
  display: flex;
  justify-content: left;
  margin: 0px -10px;
}

.campus > img {
  width: 200px;
  margin: 10px;
  border-radius: 5px;
}

.snowflakeContainer {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
  -moz-transform: translate(-50%, -50%) scale(1, 1);
  -ms-transform: translate(-50%, -50%) scale(1, 1);
  -o-transform: translate(-50%, -50%) scale(1, 1);
  transform: translate(-50%, -50%) scale(1, 1);
  z-index: 1;
  pointer-events: none !important;
}

.snowflake {
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(white, white);
  border-radius: 50%;
  filter: drop-shadow(0 0 10px white);
}

/* Home text */
/*Typing animation */
#typing-text span {
  border-right: 0.05em solid;
  animation: caret 1s steps(1) infinite;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

/* Float three columns side by side */
.column {
  float: left;
  /* width: 33.33%; */
  /* height: 400px; */
  padding: 0 10px;
  display: flex;
  flex: 1;
}

/* Prizes Section Start */
.hidden {
  display: none !important;
}

.gradient-text-dark {
  background-color: #000406;
  background-image: linear-gradient(45deg, #00344d, #16a2ff);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

#prize-section {
  position: relative;
  padding-top: 0%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #d4eaff;
  padding: 3rem 0;
}

.prize h1 {
  /* font-family: "Caveat Brush", cursive; */
  font-size: 4rem;
  font-weight: 600;
}

.prize h3 {
  color: #1673a8;
  font-weight: bold;
  font-size: 1.25rem;
}

.prize .prize-container {
  background: #b1dffa;
  width: 100%;
  padding: 4rem 6rem;
  display: flex;
  gap: 30px;
  flex-direction: column;
  border-radius: 8px;
}

.prize .prize-container .prize-navbar-container {
  overflow-x: auto;
  overflow-y: hidden;
}

.prize .prize-container .prize-navbar {
  width: 100%;
  border-bottom: 1px solid #7ac8f5;
  display: flex;
  padding: 1rem 0;
  border-radius: 16px 16px 0 0;
  min-width: max-content;
}

.prize .prize-container .prize-navbar .navbar-prize-item {
  margin: 0;
  margin-right: 25px;
  color: rgba(7, 72, 110, 0.5);
  transition: color 350ms ease 0s;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  transition: all 0.2s linear;
}

.prize .prize-container .prize-navbar .active-prize-item,
.prize .prize-container .prize-navbar .active-prize-item:hover {
  color: #07486e !important;
}

.prize .prize-container .prize-navbar .active-prize-item::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 36px;
  border-bottom: 4px solid #4fb5f0;
  border-radius: 100px;
  animation: 0.25s linear view;
}

@keyframes view {
  from {
    opacity: 0;
    scale: 1.25;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

.prize .prize-card-container {
  display: flex;
  gap: 2rem;
  min-height: 250px;
}

.prize .participation-prizes {
  background: rgba(255, 255, 255, 0.13);
  padding: 2rem 3rem;
  font-size: 0.8rem;
  color: #07486e;
}

.prize .prize-card-container .prize-card-container-main {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  display: flex;
  animation: 0.25s linear view;
  width: 100%;
}

.prize .prize-card-container .prize-card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 400px;
  gap: 2rem;
}

.bronze p {
  color: rgba(223, 182, 103, 1);
  z-index: 2;
  margin: 0;
}

.silver p {
  color: rgba(160, 160, 160, 1);
  z-index: 2;
  margin: 0;
}

.gold p {
  color: rgba(242, 215, 50, 1);
  z-index: 2;
  margin: 0;
}

.prize .prize-card-container .prize-card .prize-card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: relative;
  top: 6px;
  border-radius: 500px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
}

.prize .prize-card-container .prize-card .prize-card-number:after {
  content: "";
  width: 135px;
  height: 135px;
  top: 8px;
  left: 8px;
  position: absolute;
  border-radius: 500px;
  z-index: 1;
  transition: all 1s ease;
}

.prize .prize-card-container .prize-card .prize-card-number:before {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  border-radius: 500px;
  z-index: 0;
  transition: all 1s ease;
}

.bronze {
  background: linear-gradient(
    45deg,
    rgba(223, 182, 103, 1) 0%,
    rgba(249, 243, 232, 1) 56%,
    rgba(231, 192, 116, 1) 96%
  );
  border: 1px solid #e6b86a;
}

.bronze:after {
  background: linear-gradient(
    45deg,
    rgba(223, 182, 103, 1) 0%,
    rgba(249, 243, 232, 1) 56%,
    rgba(231, 192, 116, 1) 96%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(209, 156, 53, 0.3);
  border-right: 1px solid rgba(209, 156, 53, 0.5);
  box-shadow: inset 0px 0px 2px 2px rgba(153, 106, 26, 0.05);
}

.silver {
  background: linear-gradient(
    45deg,
    rgba(181, 181, 181, 1) 0%,
    rgba(252, 252, 252, 1) 56%,
    rgba(232, 232, 232, 1) 96%
  );
  border: 1px solid rgba(181, 181, 181, 1);
}

.silver:after {
  background: linear-gradient(
    45deg,
    rgba(181, 181, 181, 1) 0%,
    rgba(252, 252, 252, 1) 56%,
    rgba(232, 232, 232, 1) 96%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(160, 160, 160, 0.3);
  border-right: 1px solid rgba(160, 160, 160, 0.5);
  box-shadow: inset 0px 0px 2px 2px rgba(150, 150, 150, 0.05);
}

.gold {
  background: linear-gradient(
    45deg,
    rgba(242, 215, 12, 1) 0%,
    rgba(255, 255, 255, 1) 56%,
    rgba(252, 235, 0, 1) 96%
  );
  border: 1px solid rgba(242, 215, 12, 1);
}

.gold:after {
  background: linear-gradient(
    45deg,
    rgba(242, 215, 12, 1) 0%,
    rgba(255, 255, 255, 1) 56%,
    rgba(252, 235, 0, 1) 96%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(242, 215, 12, 0.3);
  border-right: 1px solid rgba(242, 215, 12, 0.3);
  box-shadow: inset 0px 0px 2px 2px rgba(150, 150, 150, 0.05);
}

.prize .prize-card-container .prize-card .prize-card-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prize .prize-card-container .prize-card .prize-card-text h3 {
  font-size: 3rem;
}

.prize .prize-card-container .prize-card .prize-card-text p {
  color: #07486e;
  font-weight: 600;
  margin: 0;
  font-size: 1.2rem;
}

.prize .special-prize-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  /* max-height: 500px; */
  /* overflow-y: scroll; */
}

.prize .special-prize-container .special-prize-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  border-radius: 8px;
  padding: 5px;
  position: relative;
  overflow: hidden;
  background: rgba(105, 197, 251, 0.75);
  background: linear-gradient(
    135deg,
    rgba(67, 184, 251, 0.75),
    rgba(65, 181, 249, 0.75),
    rgba(48, 173, 245, 0.9)
  );
  margin: 20px auto;
}

.prize .special-prize-container .special-prize-card .front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 15px;
}

.prize .special-prize-container .special-prize-card .front .title {
  padding: 2px 15px;
  margin-bottom: 8px;
  font-size: x-large;
  color: #156999;
}

.prize .special-prize-container .special-prize-card .front .prize-logo {
  position: relative;
  top: 20px;
  border-radius: 8px;
  /* background: #156999; */
  background: rgba(115, 201, 250, 0.75);
  padding: 5px 20px;
}

.prize .special-prize-container .special-prize-card .front .prize-logo img {
  height: 50px;
  max-width: 180px;
  min-width: 180px;
  object-fit: contain;
  vertical-align: middle;
}

.prize .special-prize-container .special-prize-card .description {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(235, 248, 255, 0.9);
  transition: 1s;
  z-index: 1;
  padding: 0 1rem;
  top: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.prize .special-prize-container .special-prize-card .description p {
  font-size: small;
  text-align: left;
}

.prize .special-prize-container .special-prize-card .description button {
  padding: 0;
}

.prize .special-prize-container .special-prize-card .description button a {
  color: #ebf8ff;
  border-radius: 3px;
  background: #2aa6ec;
  padding: 8px;
}

.prize .special-prize-card:hover .description {
  top: 0%;
}

@media (max-width: 768px) {
  .prize .prize-container {
    padding: 0.5rem;
  }

  .prize .prize-card-container .prize-card {
    flex-direction: column;
  }

  .prize h3 {
    font-size: 1.5rem !important;
  }

  .prize .prize-card-container .prize-card .prize-card-number {
    width: 50vw;
    height: 50vw;
    max-width: 150px;
    max-height: 150px;
  }

  .prize .prize-card-container .prize-card .prize-card-number:after {
    display: none;
  }

  .prize-section-footer h3 {
    font-size: 1.25rem;
    padding: 0;
  }

  .prize-section-footer p {
    font-size: 1rem;
    margin: 0;
    padding: 0;
  }
}
/* Prizes Section End */

/* Tracks Section Start */

#track-section {
  /* position: relative; */
  padding-top: 0%;
  min-height: 60vh;
  width: 100%;
  background-color: #201c3c;
  /* background-color: #398dbb; */
  /* background-color: #021f3b; */
  z-index: 5;
}

/* track section styles */

@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pan-overlay {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -100%;
  }
}
.flake {
  animation: spin 5000ms infinite linear;
}
.scene {
  height: 302px;
  width: 233px;
}
.card-wrapper:hover {
  cursor: pointer;
}
.front-card > img {
  transition: 0.5s all ease-in-out;
}
.card-wrapper:hover > .front-card > img {
  scale: 1.2;
}
.card-wrapper:hover > .slider-wrapper {
  transform: translateY(-100%);
}
.front-card,
.slider {
  width: 14.5rem;
  aspect-ratio: 5/6.5;
  border-radius: 10px;
}
.slider-wrapper {
  border-radius: 10px;
  transition: 0.75s all ease-in-out;
}
.screen-overlay {
  background: linear-gradient(
    rgba(51, 140, 191, 0.5),
    rgba(51, 140, 191, 0.5) 2px,
    transparent 1px,
    transparent 1.5px
  );
  background-size: 100% 2%;
  height: 100%;
  animation: pan-overlay 22s infinite linear;
}
.slider-content {
  color: white;
  text-shadow: black 1px 1px;
  height: 100%;
}
#track-cards::-webkit-scrollbar {
  height: 0.5rem;
}
#track-cards::-webkit-scrollbar-track {
  background-color: #d4eaff;
}
#track-cards::-webkit-scrollbar-thumb {
  background-color: #2e5980;
}
#track-intro {
  font-size: 1.25rem;
  font-family: Inter;
}

/* Tracks Section End */

/* Judges Section Styles Start */

#judges-section,
#speaker-section {
  padding-top: 0%;
  min-height: 60vh;
  z-index: 2;
  width: 100%;
  background-color: #d4eaff;
}

#speaker-section {
  background-color: #2d294d;
}

.snow-head {
  z-index: 3;
  transform: translate(0, -280%);
}

.judge-snowfall {
  background-image: url("img/snowfall.webp");
  background-size: cover;
  filter: brightness(80%);
  border-radius: 15px;
  transform: translate(-100%, -100%);
}

.speaker-snowfall {
  background-image: url("img/speaker-snowfall.webp");
  background-size: cover;
  filter: brightness(80%);
  border-radius: 15px;
  transform: translate(0, -100%);
}

.judge-card,
.speaker-card {
  outline: 0 solid white;
  transition: 0.25s all ease-in-out;
  width: 250px;
  aspect-ratio: 0.7;
  border-radius: 15px;
}

.judge-card:hover,
.speaker-card:hover {
  outline: 3px solid white;
  cursor: pointer;
}

.judge-card:hover > .profile-image > img,
.speaker-card:hover > .profile-image > img {
  scale: 1.05;
  outline: 6px solid white;
  outline-offset: -5.2px;
}

.profile-image > img {
  scale: 1;
  outline: 0 solid white;
  transition: 0.2s all ease-in-out;
}

.judge-card:hover > .judge-snowfall,
.speaker-card:hover > .speaker-snowfall {
  transform: translate(0, 0);
  transition: 0.75s all linear;
}
