@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&display=swap");
.hero {
  background-color: #2e1324;
  color: white;
  padding-block: 5rem;
}
.hero .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero .hero-container .hero-logo .hero-logo-ogt {
    width: 320px;
    height: 160px;
  }
}
.hero .hero-container .hero-sub_heding {
  margin-block: 2rem;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .hero .hero-container .hero-sub_heding {
    font-size: 18px;
  }
}
.hero .hero-container .hero-sub_heding > * {
  width: 50rem;
}
@media (max-width: 768px) {
  .hero .hero-container .hero-sub_heding > * {
    width: 20rem;
  }
}
.hero .hero-container .hero-cta {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .hero .hero-container .hero-cta {
    flex-direction: column;
    gap: 2rem;
  }
}
.hero .hero-container .hero-cta .btn {
  font-weight: 600;
  font-size: 2.1rem;
  color: white;
  background-color: transparent;
  border: 3px solid white;
  padding: 1rem 2rem;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .hero .hero-container .hero-cta .btn {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
}

.about {
  background-color: #2e1324;
  color: white;
  padding-block: 5rem;
}
.about .about-season-one {
  display: flex;
  flex-direction: row;
  padding-block: 2.5rem;
  gap: 10rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .about .about-season-one {
    flex-direction: column;
    gap: 2rem;
  }
  .about .about-season-one .season-one-video > * {
    width: 20rem;
    height: 13rem;
  }
}
.about .about-season-one .season-one-text {
  width: 503px;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
}
@media (max-width: 768px) {
  .about .about-season-one .season-one-text {
    text-align: center;
    line-height: 36px;
    width: 100vw;
    font-size: 1.5rem;
  }
}
.about .about-teaser {
  display: flex;
  flex-direction: row-reverse;
  padding-block: 2.5rem;
  gap: 10rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .about .about-teaser {
    flex-direction: column;
    gap: 2rem;
  }
  .about .about-teaser .teaser-video > * {
    width: 20rem;
    height: 13rem;
  }
}
.about .about-teaser .teaser-text {
  width: 503px;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
}
@media (max-width: 768px) {
  .about .about-teaser .teaser-text {
    text-align: center;
    line-height: 36px;
    width: 100vw;
    font-size: 1.5rem;
  }
}

.sponsor {
  background-color: #fff;
  color: #000;
  padding-block: 3rem;
}
.sponsor .sponsor-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sponsor .sponsor-container .sponsor-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 2rem;
}
@media (max-width: 768px) {
  .sponsor .sponsor-container .sponsor-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sponsor .sponsor-container .sponsor-header .header-text {
  color: #2e1324;
}
.sponsor .sponsor-container .sponsor-header .header-text h1 {
  font-size: 4.5rem;
  font-weight: bold;
  margin-block-end: -10px;
}
@media (max-width: 768px) {
  .sponsor .sponsor-container .sponsor-header .header-text h1 {
    font-size: 2rem;
  }
}
.sponsor .sponsor-container .sponsor-header .header-text p {
  font-size: 3.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sponsor .sponsor-container .sponsor-header .header-text p {
    line-height: 60px;
    margin-block-end: 2rem;
    margin-block-start: 1.5rem;
  }
}
.sponsor .sponsor-container .sponsor-header .sponsor-image {
  display: flex;
  margin-block-start: -30px;
}
@media (max-width: 768px) {
  .sponsor .sponsor-container .sponsor-header .sponsor-image {
    margin-top: 0;
  }
}
.sponsor .sponsor-container .sponsor-cta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .sponsor .sponsor-container .sponsor-cta {
    flex-direction: column;
  }
}
.sponsor .sponsor-container .sponsor-cta .sponsor-cta-text {
  width: 60%;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 29px;
}
@media (max-width: 768px) {
  .sponsor .sponsor-container .sponsor-cta .sponsor-cta-text {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.sponsor .sponsor-container .sponsor-cta .btn {
  font-weight: 600;
  font-size: 2.1rem;
  color: #2e1324;
  background-color: transparent;
  border: 3px solid #2e1324;
  padding: 1rem 2rem;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .sponsor .sponsor-container .sponsor-cta .btn {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
}

.prize {
  background-color: #fff;
  color: #000;
  padding-block: 3rem;
}
.prize .prize-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 600;
}
.prize .prize-container .prize-header {
  font-size: 4rem;
  margin-block: 2rem;
}
@media (max-width: 768px) {
  .prize .prize-container .prize-header {
    font-size: 3.2rem;
    line-height: 60px;
    margin-block-end: 2rem;
    margin-block-start: 1.5rem;
  }
}
.prize .prize-container .prize-text {
  font-size: 1.5rem;
  line-height: 29px;
  text-align: center;
  margin-block-end: 4rem;
}
@media (max-width: 768px) {
  .prize .prize-container .prize-text {
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}
.prize .prize-container .caro {
  display: block;
}
.prize .prize-container .caro .carousel-control-prev-icon {
  margin-left: -50px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}
.prize .prize-container .caro .carousel-control-next-icon {
  margin-right: -50px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}
@media (min-width: 768px) {
  .prize .prize-container .caro {
    display: none;
  }
}
.prize .prize-container .prize-images {
  display: flex;
  flex-direction: row;
  gap: 7rem;
}
@media (max-width: 768px) {
  .prize .prize-container .prize-images {
    display: none;
    flex-direction: column;
    gap: 3rem;
  }
}
.prize .prize-container .prize-cta {
  margin-block-start: 5rem;
  margin-block-end: 2rem;
}
.prize .prize-container .prize-cta .btn {
  font-weight: 600;
  font-size: 2.1rem;
  color: #2e1324;
  background-color: transparent;
  border: 3px solid #2e1324;
  padding: 1rem 2rem;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .prize .prize-container .prize-cta .btn {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
}

.faq {
  background-color: #2e1324;
  color: white;
  width: 100%;
  height: 100%;
  padding-block: 5rem;
}
.faq .faq-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.faq .faq-container .faq-heading {
  margin-bottom: 2rem;
}
.faq .faq-container .faq-heading h2 {
  font-weight: 600;
  font-size: 64px;
}
@media (max-width: 768px) {
  .faq .faq-container .faq-heading h2 {
    font-size: 2.2rem;
  }
}
.faq .faq-container .faq-content {
  width: 100%;
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.accordion-flush .accordion-item .accordion-button {
  background-color: #542241;
  color: #fff;
}

.purple {
  background-color: #542241;
  color: #fff;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .purple {
    font-size: 1rem;
  }
}

.footer {
  background-color: #2e1324;
  color: white;
  width: 100%;
  height: 100%;
  padding-block: 2rem;
}
.footer .footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-container .footer-logo {
  margin-right: 20px;
}
.footer .footer-container .footer-logo p {
  margin-top: 20px;
}
.footer .footer-container .footer-logo img {
  width: 270px;
  height: 135px;
}
.footer .footer-container .footer-links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.footer .footer-container .footer-links h5 {
  font-size: 1.2rem;
  font-weight: bold;
}
.footer .footer-container .footer-links .socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.footer .footer-container .footer-links .socials a {
  color: white;
  font-size: 1.5rem;
  margin-right: 20px;
}
.footer .footer-container .footer-links .socials a:last-child {
  margin-right: 0;
}
.footer .footer-container .footer-links .sponsor-info img {
  width: 350px;
  height: 50px;
}

@media Screen and (max-width: 768px) {
  .footer .footer-container {
    flex-direction: column;
    height: 100%;
  }
  .footer .footer-container .footer-logo {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .footer .footer-container .footer-logo img {
    width: 200px;
    height: 100px;
  }
  .footer .footer-container .footer-links {
    align-items: center;
  }
  .footer .footer-container .footer-links .sponsor-info img {
    width: 280px;
    height: 50px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}

.navbar-purple {
  background-color: #2e1324;
}
.navbar-purple .nav-container {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.navbar-purple .navbar-nav {
  font-size: 1.6rem;
}
.navbar-purple .navbar-nav .nav-link {
  color: #fff;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
}
.navbar-purple .navbar-nav .nav-link:hover {
  color: #96296c;
}
.navbar-purple .navbar-nav .active {
  color: #542241 !important;
}
.navbar-purple .navbar-toggler .navbar-toggler-icon {
  color: white;
}

/*# sourceMappingURL=style.css.map */
