@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
::placeholder {
  color: gray;
  opacity: 0.5;
}

::-ms-input-placeholder {
  color: rgb(158, 157, 157);
}

section#hero {
  width: 100vw;
  min-height: 100vh;
  background-color: #f5f4f8;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  z-index: 100;
}
section#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
section#hero * {
  z-index: 1;
}
section#hero #main {
  height: 100vh;
  justify-content: space-between !important;
}
section#hero #main #home-search-container {
  background: white;
  border-radius: 30px;
  margin: 2rem auto 0 auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
section#hero #main #search-city {
  border-radius: 30px;
  width: 100% !important;
}
section#hero #main #search-city:focus {
  outline: none;
  border-color: #af0f2a;
  box-shadow: inset 0 1px 3px #af0f2a, 0 0 10px 2px #a32031;
}
section#hero #main #search-button {
  padding: 7px !important;
  background-color: #af0f2a;
  border-width: 4px;
  width: 100% !important;
}

section#cta {
  height: 15vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}
section#cta .box:nth-child(1) {
  width: 30vw;
}
section#cta .box:nth-child(1)::before {
  content: "";
  width: 27vw;
  height: 27vw;
  position: absolute;
  top: -60px;
  left: -60px;
  background-image: url("../../assets/kt-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(20deg);
  overflow: hidden;
  opacity: 0.8;
}
section#cta .box:nth-child(2) {
  background-color: #af0f2a;
  width: 60vw;
  z-index: 2;
}
section#cta .box:nth-child(3) {
  background-color: #191919;
  width: 20vw;
  position: absolute;
  right: 0;
  height: 100%;
  z-index: 1;
}
section#cta .slant {
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

section#feature {
  width: 100%;
  background-color: white;
}
section#feature div.max-w {
  min-height: 30vh;
}
section#feature #feature-items {
  gap: 50px;
}
section#feature #feature-items div {
  width: 33.3%;
}
section#feature #feature-items div p {
  font-size: 18px;
}

section#testimonials {
  width: 100%;
  background-color: #ebebeb;
}
section#testimonials div.max-w .testimonial-card {
  position: relative;
  background: white;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: left;
  max-width: 600px;
}
section#testimonials div.max-w .testimonial-card p {
  margin-top: 50px;
  font-size: 1.3rem;
  line-height: 1;
}
section#testimonials div.max-w .testimonial-card p strong {
  display: block;
  text-align: left;
  margin-top: 20px;
  font-style: italic;
}
section#testimonials div.max-w .quote-icon {
  position: absolute;
  top: -25px;
  left: 45%;
  background: #af0f2a;
  color: white;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 80px;
  font-weight: bold;
  transform: rotate(180deg);
  align-items: flex-end;
}
section#testimonials div.max-w .quote-icon-purple {
  background: #7b4f8a !important;
}
section#testimonials div.max-w .quote-icon-blue {
  background: #0f52ba !important;
}

section#carousel-container {
  width: 100%;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
  background-color: #ebebeb;
}
section#carousel-container .carousel {
  width: 100% !important;
  display: flex;
  gap: 10px;
  width: max-content;
  transition: transform 0.5s ease-in-out;
}
section#carousel-container .carousel .img {
  width: 33.3333333333%;
  height: 400px;
  flex-shrink: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
}
section#carousel-container .prev,
section#carousel-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  display: none;
}
section#carousel-container .prev {
  left: 10px;
}
section#carousel-container .next {
  right: 10px;
}

section#our-games {
  background-color: #ebebeb;
  padding-top: 50px;
  padding-bottom: 70px;
}
section#our-games #games {
  display: flex;
  gap: 20px;
}
section#our-games #games .game-card {
  width: 33.3333333333%;
  height: 45vh;
}
section#our-games #games .game-card p {
  padding: 20px;
  text-align: center;
}
section#our-games #games .game-card button {
  min-width: 33.3333333333%;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}
section#our-games #games .game-card:nth-child(2) {
  border-left: 4px solid #af0f2a;
  border-right: 4px solid #af0f2a;
  border-radius: 4px;
  width: 44%;
  padding-left: 15px;
  padding-right: 15px;
}
section#our-games #games .game-card .text-lg {
  font-size: 1.1rem;
}
section#our-games #learn-more-button {
  background-color: #af0f2a;
  width: 200px;
}
section#our-games #learn-more-button:hover {
  background-color: #a32031;
}
section#our-games #learn-more-button:active {
  background-color: #af0f2a;
}

section#footer {
  width: 100%;
  min-height: 32vh;
  max-height: auto;
  background-color: #191919 !important;
  z-index: 1;
}
section#footer div.max-w {
  width: 70vw;
}
section#footer div#ribbon-container {
  margin-bottom: 15vh;
  justify-content: center;
}
section#footer div.social-links {
  margin-top: 50px;
  background-color: black;
  height: 50px;
}
section#footer #footer-links ul {
  list-style: none;
}
section#footer #footer-links ul li a {
  color: white;
  line-height: 2;
  border-bottom: 1px solid #767676;
  width: 100%;
  display: inline-block;
  width: 15vw;
}
section#footer #footer-links ul li a:hover {
  color: #af0f2a;
}
section#footer #footer-links ul li:last-child a {
  border-bottom: none;
}
section#footer .ribbon {
  text-align: center;
  display: block;
  width: 14vw;
  height: 25vh;
  background: white;
  position: relative;
  top: -30px;
}
section#footer .ribbon h2 {
  font-size: 2rem;
}
section#footer .ribbon svg {
  margin-top: 3rem;
}
section#footer .ribbon-edge {
  display: block;
  position: relative;
  top: -2px;
  height: 80px;
  clip-path: polygon(100% 0, 100% 100%, 50% 65%, 0 100%, 0 0);
  background-color: white;
}
section#footer .ribbon-edge:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  clip-path: polygon(50% 60%, 100% 90%, 100% 100%, 50% 70%, 0 100%, 0 90%);
  width: 100%;
  height: 90px;
  background-color: #191919;
  border: 10px solid #191919;
}
section#footer .ribbon:before {
  content: "";
  display: block;
  position: absolute;
  top: 10;
  background-color: #af0f2a;
  width: 17vw;
  height: 30px;
  z-index: -1;
  clip-path: polygon(0 0%, 82% 0%, 95% 100%, 0% 100%);
}

.open-btn {
  font-size: 20px;
  cursor: pointer;
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  position: absolute;
  top: 20px;
  left: 20px;
}

.cta-button {
  cursor: pointer;
  background-color: #af0f2a;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  border: 4px solid #ffffff;
  text-align: center;
  display: block;
}
.cta-button:hover {
  background-color: #a32031;
  color: #ffffff;
}
.cta-button:active {
  background-color: #af0f2a;
}

.desktop-only {
  display: none;
}

/*** media screen ***/
@media screen and (max-width: 435px) {
  section#testimonials .max-w {
    width: 85% !important;
  }
  .testimonial-card {
    min-height: 250px !important;
  }
  .testimonial-card p {
    font-size: 1.4rem !important;
  }
}
/*** book button - home hero section ***/
#book-button {
  display: flex;
  align-items: center;
  position: relative;
  bottom: -60px;
}

.glossy-button {
  display: inline-block;
  padding: 0.3rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* For Safari support */
}

.glossy-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ebebeb;
}

.glossy-button:active {
  transform: scale(0.98);
}

/* Glossy Shine Effect using ::before */
.glossy-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Start off-screen to the left */
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Define the white linear gradient highlight */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  /* Smooth transition for the shine movement */
  transform: skewX(-20deg); /* Tilt the shine */
  transition: transform 0.6s ease-out;
  z-index: 10;
}

.glossy-button:hover::before {
  /* Move the shine across the button on hover */
  transform: translateX(200%) skewX(-20deg);
}

.button-text {
  position: relative;
  z-index: 20; /* Ensure text is above the shine */
}

/* --- Glossy card --- */
.glossy-card {
  cursor: pointer;
  width: 90%;
  max-width: 300px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.glossy-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.glossy-card img {
  width: 100%;
  height: auto;
  max-width: 140px;
  border-radius: 8px;
}

.bg-secondary {
  background-color: #0f52ba !important;
}

.bg-purple {
  background-color: #7b4f8a !important;
}

.text-secondary {
  color: #0f52ba !important;
}

.text-purple {
  color: #7b4f8a !important;
}

#navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#navbar ul li {
  position: relative;
}
#navbar ul li a {
  color: gray;
}
#navbar ul li a:hover {
  color: #af0f2a;
}
#navbar ul li ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 250px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  gap: 0;
  padding: 10px;
  z-index: 1;
}
#navbar ul li.has-sub-menu:hover > ul {
  display: flex;
}

section#feed #searchby-container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 0px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}
section#feed #searchby-container .search-group {
  display: flex;
  align-items: center;
}
section#feed #searchby-container .search-group input#search {
  border: 1px solid #bbb;
  display: inline-block;
  width: 250px;
  padding: 5px;
  font-size: 18px;
  color: #191919;
}
section#feed #searchby-container .search-group button#search-button {
  background-color: #af0f2a;
  width: 50px !important;
  border: 1px solid #bbb;
  display: block;
  border-left: 0px;
}
section#feed #searchby-container .search-group button#search-button img {
  width: 22px;
}
section#feed div.filter-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
section#feed div.filter-container .filter-buttons {
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
}
section#feed div.filter-container .filter-buttons button {
  padding: 5px;
  min-width: 80px !important;
  text-align: center;
  border: 1px solid #ddd;
}
section#feed div.filter-container .filter-buttons button:hover {
  border-color: #af0f2a;
  color: #af0f2a;
}

@media screen and (min-width: 300px) {
  .max-w {
    width: 90vw !important;
  }
  .logo {
    width: 40%;
  }
  #main {
    height: 100vh;
    justify-content: end;
    padding-bottom: 15vh;
    padding-top: 15vh;
  }
  #main h1 {
    margin: auto;
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
  #main h2 {
    font-size: 1.1rem;
  }
  #main span.break {
    display: block;
  }
  section#feature #feature-items {
    gap: 20px;
    flex-direction: column;
  }
  section#feature #feature-items div {
    width: 100%;
  }
  section#feature #feature-items div p {
    text-align: left;
  }
  section#feature h2 {
    margin-top: 2rem;
    text-align: center;
  }
  .box:nth-child(1)::before {
    top: -20px !important;
    width: 45vw !important;
    height: 45vw !important;
  }
  #search-city,
  #search-button {
    padding: 10px !important;
    font-size: 1.3rem;
  }
  section#testimonials {
    padding-top: 3.3rem;
    padding-bottom: 2rem;
  }
  section#testimonials .flex {
    flex-direction: column;
    align-items: center;
  }
  section#testimonials .testimonial-card {
    width: 100%;
    margin-bottom: 20px;
  }
  section#testimonials .quote-icon {
    left: 40% !important;
  }
  section#carousel-container .carousel {
    flex-direction: column;
  }
  section#carousel-container .carousel .img {
    width: 100%;
  }
  section#our-games h2 {
    font-size: 2.5rem;
  }
  section#our-games #games {
    flex-direction: column;
  }
  section#our-games #games .game-card {
    width: 100%;
    height: auto;
  }
  section#our-games #games .game-card:nth-child(2) {
    border: none;
    width: 100%;
    border-top: 4px solid #af0f2a;
    border-bottom: 4px solid #af0f2a;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }
  section#footer {
    min-height: 60vh;
  }
  section#footer #ribbon-container {
    display: grid;
    grid-template-columns: auto auto;
  }
  section#footer .ribbon {
    width: 40vw;
  }
  section#footer .ribbon h2 {
    font-size: 1.5rem;
  }
  section#footer .ribbon p {
    font-size: 14px;
    font-weight: normal;
  }
  section#footer .ribbon::before {
    width: 42vw;
  }
  section#footer .ribbon:nth-child(1), section#footer .ribbon:nth-child(2) {
    margin-bottom: 30px;
  }
  section#footer .ribbon:nth-child(3)::before, section#footer .ribbon:nth-child(4)::before {
    width: 28vw;
    z-index: 1;
    left: 15%;
    height: 5px;
    clip-path: none;
  }
  section#footer .ribbon:nth-child(3), section#footer .ribbon:nth-child(4) {
    margin-top: -50px;
  }
  section#footer .ribbon svg {
    margin-top: 0;
    padding-top: 1rem;
  }
  section#footer #footer-links {
    justify-content: center;
    align-items: center;
  }
  section#footer #footer-links #logo-container {
    display: flex;
    justify-content: center;
    width: 80%;
  }
  section#footer #footer-links .flex {
    flex-direction: column;
  }
  section#footer #footer-links .flex li a {
    width: 60vw;
  }
  section#footer #footer-links h3 {
    margin-top: 2rem;
  }
  .hide-on-mobile {
    display: none;
  }
}
@media screen and (max-width: 525px) {
  .sm-p-0 {
    padding: 0 !important;
  }
  .sm-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .glossy-card {
    padding: 5px !important;
    box-shadow: none !important;
    backdrop-filter: unset !important;
  }
  #home-search-container {
    width: 70vw !important;
  }
  .logos-section {
    gap: 0 !important;
  }
  .logos-section .ktlogo, .logos-section .sslogo {
    width: 105px !important;
  }
  .logos-section .mblogo {
    width: 90px !important;
  }
}
@media screen and (min-width: 566px) {
  .max-w {
    width: 80vw !important;
  }
  .logo {
    width: 200px;
  }
  section#footer #ribbon-container {
    gap: 50px;
    padding-left: 0;
  }
  section#footer .ribbon h2 {
    font-size: 2rem;
  }
  section#footer .ribbon p {
    font-weight: bold;
  }
  #main .top-hero-content {
    padding-top: 2rem;
  }
  #home-search-container {
    flex-direction: row !important;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  #main {
    height: 90vh;
    padding-top: 15vh;
  }
  #main h1 {
    width: 100%;
  }
  #main span.break {
    display: inline;
  }
  #main .top-hero-content {
    padding-top: 2rem;
  }
  #search-city,
  #search-button {
    font-size: 1.5rem;
  }
  .box:nth-child(1)::before {
    top: -20px !important;
    width: 32vw !important;
    height: 32vw !important;
  }
  section#carousel-container .carousel {
    flex-direction: row;
  }
  section#carousel-container .carousel .img {
    width: 33.3333333333%;
  }
  section#our-games #games {
    flex-direction: row;
  }
  section#our-games #games .game-card {
    width: 33.3333333333%;
  }
  section#our-games #games .game-card:nth-child(2) {
    border: none;
    border-left: 4px solid #af0f2a;
    border-right: 4px solid #af0f2a;
    padding-top: 0;
    padding-bottom: 0;
    width: 44%;
    margin: 0;
  }
  #footer-links {
    justify-content: space-between !important;
    align-items: start !important;
  }
  #footer-links #logo-container {
    display: block !important;
  }
  #footer-links #link-container {
    width: 100%;
  }
  #footer-links .flex {
    flex-direction: row !important;
  }
  #footer-links .flex li a {
    width: 15vw !important;
  }
  #footer-links h3 {
    margin-top: 0 !important;
  }
  .desktop-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
  .lg-gap-25 {
    gap: 25px !important;
  }
}
@media screen and (max-width: 800px) {
  section#hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.55) 100%);
  }
}
@media screen and (min-width: 993px) {
  #main h1 {
    font-size: 2rem;
  }
  #main h2 {
    font-size: 1.4rem;
  }
  #search-city,
  #search-button {
    font-size: 1.5rem;
  }
  .box:nth-child(1)::before {
    top: -30px !important;
    width: 30vw !important;
    height: 30vw !important;
  }
  section#feature h2 {
    text-align: left;
  }
  section#feature #feature-items {
    flex-direction: row;
  }
  section#testimonials .flex {
    flex-direction: row;
    align-items: stretch;
  }
  section#testimonials .quote-icon {
    left: 40% !important;
  }
  section#testimonials .testimonial-card {
    width: 33.33%;
  }
  section#footer {
    min-height: 32vh;
  }
  section#footer #ribbon-container {
    display: flex !important;
  }
  section#footer .ribbon {
    width: 14vw;
  }
  section#footer .ribbon h2 {
    font-size: 1.5rem;
  }
  section#footer .ribbon p {
    font-weight: bold;
  }
  section#footer .ribbon::before {
    width: 17vw;
  }
  section#footer .ribbon:nth-child(1), section#footer .ribbon:nth-child(2) {
    margin-bottom: none;
  }
  section#footer .ribbon:nth-child(3)::before, section#footer .ribbon:nth-child(4)::before {
    width: 17vw;
    z-index: -1;
    left: 0 !important;
    height: 30px;
    clip-path: polygon(0 0%, 82% 0%, 95% 100%, 0% 100%);
  }
  section#footer .ribbon:nth-child(3), section#footer .ribbon:nth-child(4) {
    margin-top: 0;
  }
  #heading-title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .lh-1-tablet {
    line-height: 1 !important;
  }
  .lh-1pt2-tablet {
    line-height: 1.2 !important;
  }
  .text-lg {
    font-size: 1.2rem !important;
  }
}
@media screen and (min-width: 1400px) {
  #main h1 {
    font-size: 2.5rem;
  }
  #search-city,
  #search-button {
    font-size: 1.5rem;
  }
  .box:nth-child(1)::before {
    top: -80px !important;
    width: 30vw !important;
    height: 30vw !important;
  }
  section#footer .ribbon h2 {
    font-size: 2rem;
  }
  section#footer .ribbon p {
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .sm-gap-10 {
    gap: 10px !important;
  }
  .glossy-card {
    padding: 5px !important;
  }
  .glossy-card img {
    width: 100px !important;
  }
  section#hero #main {
    height: 100dvh !important;
  }
  section#hero #book-button {
    display: inline-table !important;
  }
  section#footer .ribbon::before {
    clip-path: polygon(0 0%, 96% 0%, 100% 100%, 0% 100%) !important;
  }
}
.hero-banner {
  position: relative;
  width: 100vw;
  min-height: min-content;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 5vh;
  padding-bottom: 5vh;
}

.video-container, .video-container-mobile {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.video-container-mobile {
  display: none;
}

.spacer {
  height: 15vh;
}

/* Slanted red shape */
.slanted-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 45vw;
  background: #af0f2a;
  transform: skewY(-28deg);
  transform-origin: top left;
  z-index: 0;
}

.slanted-overlay-ss {
  background: #0f52ba !important;
}

.slanted-overlay-mb {
  background: #7b4f8a !important;
}

@media screen and (min-width: 563px) {
  .slanted-overlay {
    height: 28vw;
    transform: skewY(-18deg);
  }
}
@media screen and (min-width: 769px) {
  .slanted-overlay {
    height: 60vw;
    transform: skewY(-38deg);
  }
}
@media screen and (min-width: 953px) {
  .slanted-overlay {
    height: 50vw;
    transform: skewY(-32deg);
  }
}
/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

div.video-contaier {
  width: 50%;
}

#large-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 13vw;
  font-weight: 700;
  line-height: 0.9;
}

div.cta-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
div.cta-container #subtitle {
  background: #af0f2a;
  color: white;
  padding: 5px 20px;
  padding-left: 60px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  font-weight: 600;
}
div.cta-container p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
}
div.cta-container .cta-button {
  width: 100%;
}

.stats-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.stats-container .stat-item {
  text-align: center;
}
.stats-container .stat-item .stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #af0f2a;
  margin: 0;
}
.stats-container .stat-item .stat-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: #af0f2a;
  margin: 0;
}

.logos-section {
  background: #c2c1c1;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
.logos-section .ktlogo, .logos-section .sslogo {
  width: 140px;
  flex-grow: 0;
}
.logos-section .mblogo {
  width: 120px;
  flex-grow: 0;
}

/***
Engagement Section
**/
.engagement-section {
  background: linear-gradient(to top, #fdfdfd 0%, #f4f4f4 100%);
  padding-top: 70px;
  padding-bottom: 70px;
}
.engagement-section .stat-icon {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.engagement-section .stat-icon p {
  margin-top: 20px;
  font-size: 1.2rem;
}
.engagement-section .stat-icon img {
  width: 90px;
}

/**
trivia experience section
**/
.trivia-experience-section {
  background-color: #191919;
  overflow: hidden;
}
.trivia-experience-section div.top-section {
  padding-top: 70px;
  z-index: 2;
  position: relative;
}
.trivia-experience-section div.bottom-section {
  margin-top: -150px;
  margin-bottom: -100px;
  z-index: 0;
  position: relative;
}
.trivia-experience-section div.bottom-section img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.trivia-experience-section .trivia-experience-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 5px;
  justify-items: start;
}

.trivia-experience-section::before {
  content: "";
  height: 170%;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #151414 30%, #151414 30%, rgba(25, 25, 25, 0) 50%);
  pointer-events: none;
  z-index: 1;
}

@media screen and (min-width: 1300px) {
  .trivia-experience-section::before {
    height: 120%;
  }
  .trivia-experience-section div.top-section {
    padding-bottom: 5%;
  }
  .trivia-experience-section div.bottom-section {
    margin-top: -300px;
    margin-bottom: -50px;
  }
}
@media screen and (max-width: 768px) {
  .trivia-experience-section div.top-section {
    padding-bottom: 0px !important;
  }
  .trivia-experience-section div.bottom-section {
    margin-top: -50px;
    margin-bottom: 0px;
  }
}
#testimonials {
  background-color: transparent !important;
  padding-top: 10vh !important;
  padding-bottom: 5vh !important;
}
#testimonials .mini-container {
  width: 70vw !important;
}

.merged-section {
  background: linear-gradient(to top, #fdfdfd 80%, #e6e6e6 100%) !important;
}

#trivia-experience-heading {
  width: 35%;
  margin-left: auto;
  margin-right: auto;
}

#trivia-experience-heading p {
  line-height: 1;
  text-align: center;
}

#engagement-heading {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

#engagement-heading p {
  line-height: 1;
  text-align: center;
}

.circle-image-content-1 {
  padding: 40px;
  padding-right: 0;
}

.circle-image-content-2 {
  padding: 40px;
  padding-left: 0;
}

.cta-button-small {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/**

MEDIA QUERIES
**/
@media screen and (min-width: 1695px) {
  #large-title.long-title {
    font-size: 8rem !important;
  }
}
@media (max-width: 1694px) {
  #large-title {
    font-size: 8rem;
  }
  #large-title.long-title {
    font-size: 7rem !important;
  }
}
@media (max-width: 1305px) {
  #large-title {
    font-size: 7rem;
  }
  .video-container {
    width: 60%;
  }
}
@media screen and (min-width: 1300px) {
  .trivia-experience-section div.mini-container {
    width: 55vw !important;
  }
}
@media (max-width: 1200px) {
  #large-title {
    font-size: 5rem;
  }
  #trivia-experience-heading {
    width: 50%;
  }
  #engagement-heading {
    width: 100% !important;
  }
  .video-container {
    width: 80%;
  }
  .checkbox-icon {
    width: 70px;
  }
}
@media (max-width: 1120px) {
  .max-w {
    width: 90vw !important;
  }
  .video-container {
    width: 60%;
  }
  .cta-container #large-title {
    font-size: 5rem;
  }
  .cta-container #subtitle {
    font-size: 1rem !important;
  }
  .cta-container .cta-button {
    padding: 5px !important;
  }
  .stats-container .stat-item .stat-label {
    font-size: 0.8rem;
  }
  .stats-container .stat-item .stat-value {
    font-size: 3rem;
  }
  .trivia-experience-section #testimonials div.flex {
    flex-direction: column !important;
  }
}
@media screen and (max-width: 1024px) {
  .video-container {
    width: 70%;
  }
  .stat-icon img {
    width: 50%;
  }
  .stat-icon-label {
    font-size: 1rem !important;
    line-height: 1;
  }
}
@media screen and (min-width: 953px) {
  .trivia-experience-section .mini-container {
    width: 90vw !important;
  }
}
@media screen and (max-width: 952px) {
  .mini-container {
    width: 90vw !important;
  }
  #large-title {
    font-size: 4rem !important;
  }
  #trivia-experience-heading {
    width: 80% !important;
  }
  .trivia-experience-section div.mini-container {
    width: 65vw !important;
  }
  .trivia-experience-section div.top-section {
    padding-bottom: 5%;
  }
  .trivia-experience-section div.trivia-experience-content {
    width: 100% !important;
  }
  .checkbox-list {
    flex-direction: column !important;
    gap: 0px !important;
  }
  #engagement-heading {
    width: 100%;
    font-size: 7vw;
  }
  .video-container {
    width: 50%;
  }
  .stats-container .stat-item .stat-label {
    font-size: 0.7rem;
  }
  .stats-container .stat-item .stat-value {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .cta-container {
    width: 100% !important;
  }
  .cta-container p,
  .cta-container a {
    width: 70% !important;
  }
  .trivia-experience-content {
    grid-template-columns: none !important;
  }
  .video-container {
    width: 100%;
  }
  .hero-content {
    flex-direction: column;
  }
  .video-container {
    display: none;
  }
  .video-container-mobile {
    display: inline-block;
    width: 70% !important;
  }
  .header-mobile-spacer {
    height: 20vh;
  }
  .circled-sections {
    align-items: center !important;
    justify-content: center;
  }
  .circled-sections .justify-end,
  .circled-sections .justify-start {
    align-items: center !important;
    justify-content: center !important;
  }
  .circled-sections a.cta-button {
    width: 100% !important;
    padding: 10px !important;
  }
  .circled-image-container {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
  .circled-image {
    width: 50% !important;
  }
  #emcee-circle-image {
    content: url("../../assets/emcee-circle-transparent-centered.png");
    width: 80% !important;
  }
  #emcee-circle-image-blue {
    content: url("../../assets/emcee-circle-transparent-centered-blue.png");
    width: 80% !important;
  }
  #emcee-circle-image-purple {
    content: url("../../assets/emcee-circle-transparent-centered-purple.png");
    width: 80% !important;
  }
  .engagement-section {
    padding-bottom: 10px !important;
  }
  #testimonials {
    padding-top: 100px !important;
  }
  .circled-1 {
    flex-direction: column !important;
  }
  .circled-1 div.flex {
    align-items: center !important;
  }
  .circled-2 {
    flex-direction: column-reverse !important;
  }
  .circled-2 img {
    margin-bottom: 50px;
  }
  .circled-2 a.cta-button {
    margin-bottom: 10vh;
  }
  .engagement-section .circled-sections:nth-of-type(1) {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .trivia-experience-section div.mini-container {
    width: 90vw !important;
  }
  .circled-image {
    width: 50% !important;
  }
  .circle-image-content-1 {
    margin-top: 40px !important;
  }
  .circle-image-content-1, .circle-image-content-2 {
    padding: 0px !important;
  }
}
@media (max-width: 705px) {
  .cta-container {
    width: 100% !important;
    align-items: center !important;
  }
  .cta-container p,
  .cta-container a {
    width: 100% !important;
    text-align: center;
  }
  .video-container-mobile {
    width: 100% !important;
  }
  .hero-stats {
    margin-top: 10vh !important;
  }
  .stat-description {
    width: 90% !important;
    text-align: center;
  }
}
@media (max-width: 470px) {
  .header-mobile-spacer {
    height: 15vh;
  }
  .cta-container div.flex {
    width: 100% !important;
  }
  .cta-container p,
  .cta-container a {
    width: 100% !important;
  }
  .video-container {
    width: 100%;
  }
}
@media (max-width: 435px) {
  .large-title {
    font-size: 3.5rem !important;
  }
  .hero-stats {
    margin-top: 0 !important;
  }
  .stats-container {
    gap: 15px;
  }
  .stats-container .stat-value {
    font-size: 1.8rem !important;
  }
  .stats-container .stat-label {
    font-size: 0.6rem !important;
  }
  .stat-icon img {
    width: 45% !important;
  }
  .stat-icon-label {
    font-size: 0.7rem !important;
    width: 70% !important;
  }
  #trivia-experience-heading,
  #trivia-experience-heading p {
    font-size: 8vw !important;
    line-height: 1 !important;
  }
}
@media screen and (max-width: 390px) {
  #large-title {
    font-size: 3.5rem !important;
  }
}
@media (max-width: 375px) {
  #trivia-experience-heading,
  #trivia-experience-heading p {
    font-size: 7vw !important;
  }
}
/*** Game CTA **/
.cta-section {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  background-color: #f4f4f4;
  color: #333333;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.8;
}

.pubquiz-bg {
  background: linear-gradient(135deg, #af0f2a 60%, #ec4051 100%);
  color: #ffffff;
}

.survey-slam-bg {
  background: linear-gradient(135deg, #0f52ba 60%, #6a11cb 100%);
  color: #333333;
}

.music-bingo-bg {
  background: linear-gradient(135deg, #7b4f8a 60%, #6a11cb 100%);
  color: #ffffff;
}

.cta-game-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.white-button {
  background-color: white !important;
}

.cta-button-game {
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.cta-button-game:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.25);
  opacity: 0.95;
  color: whitesmoke;
}

.button-icon {
  margin-right: 10px;
  font-size: 1.4em;
}

.pubquiz-color {
  background-color: #af0f2a;
}

.survey-slam-color {
  background-color: #0f52ba;
}

.music-bingo-color {
  background-color: #7b4f8a;
}

@media (max-width: 600px) {
  .cta-section h2 {
    font-size: 2em;
  }
  .cta-game-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-button-game {
    width: 100%;
    margin-bottom: 15px;
    justify-content: center;
  }
}
#hero-banner div.community {
  background: #008fff !important;
}

html,
body {
  font-weight: normal;
  font-size: 18px;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  line-height: 1.5em;
}

button {
  padding: 15px;
}

input[type=text] {
  background-color: white;
  color: #191919;
  padding: 3px;
}

::placeholder {
  color: #3e3e3e;
}

::-ms-input-placeholder {
  color: #3e3e3e;
}

h1,
h2 {
  margin: 0;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.gap-15 {
  gap: 15px;
}

.gap-25 {
  gap: 25px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.rounded {
  border-radius: 30px;
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.h-full {
  height: 100%;
}

.p-0 {
  padding: 0;
}

.py-xs {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-sm {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-md {
  padding-left: 2rem;
  padding-right: 2rem;
}

.p-4 {
  padding: 4px;
}

.p-10 {
  padding: 10px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-10 {
  padding-bottom: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.no-p-r {
  padding-right: 0;
}

.no-p-l {
  padding-left: 0;
}

.uppercase {
  text-transform: uppercase;
}

.border-white {
  border-color: white;
}

.text-white {
  color: white;
}

.text-primary {
  color: #af0f2a;
}

.text-primary-force {
  color: #af0f2a !important;
}

.bg-white {
  background-color: white;
}

.bg-primary {
  background-color: #af0f2a;
}

.font-bold {
  font-weight: bold;
}

.font-semi-bold {
  font-weight: 500;
}

.text-base {
  font-size: 18px;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.3rem;
}

.text-xl {
  font-size: 1.8rem;
}

.text-2xl {
  font-size: 2rem;
}

.text-3xl {
  font-size: 3rem;
}

.mini-container {
  width: 60vw;
}

.max-w {
  width: 80vw;
  margin: auto;
}

.m-0 {
  margin: 0;
}

.mt-sm {
  margin-top: 1rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mt-md {
  margin-top: 2rem;
}

.mb-md {
  margin-bottom: 2rem;
}

.mx-sm {
  margin-left: 1rem;
  margin-right: 1rem;
}

.pt-xs {
  padding-top: 0.5rem;
}

.pb-xs {
  padding-bottom: 0.5rem;
}

.pt-sm {
  padding-top: 1rem;
}

.pb-sm {
  padding-bottom: 1rem;
}

.pt-md {
  padding-top: 2rem;
}

.pb-md {
  padding-bottom: 2rem;
}

.pb-lg {
  padding-bottom: 4rem;
}

.mt-lg {
  margin-top: 4rem;
}

.mt-xl {
  margin-top: 5rem;
}

.mb-xl {
  margin-bottom: 5rem;
}

.mb-lg {
  margin-bottom: 4rem;
}

.mb-0 {
  margin-bottom: 0;
}

.pr-sm {
  padding-right: 1rem;
}

.m-auto {
  margin: auto;
}

.italic {
  font-style: italic;
}

.divider-sm {
  width: 30vw;
  margin: auto;
  border: 2px solid;
}

.hidden {
  display: none !important;
}

.active-menu {
  color: #af0f2a;
}

.drawer-header {
  position: absolute;
  top: 4.6vh;
  right: 0;
  left: 0;
  font-size: 70px;
  cursor: pointer;
  color: white;
  width: 80vw;
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.layout-padding-left {
  padding-left: 15vw;
}

.hide-on-mobile {
  display: none;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-dark {
  color: #191919;
}

.cta-button-forced {
  cursor: pointer;
  background-color: #af0f2a !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 30px !important;
  padding-right: 30px !important;
  border-radius: 30px !important;
  color: #ffffff !important;
  font-weight: bold;
  text-transform: uppercase;
  border: 4px solid #ffffff;
  text-align: center;
  display: block;
}
.cta-button-forced:hover {
  background-color: #a32031 !important;
  color: #ffffff !important;
}
.cta-button-forced:active {
  background-color: #af0f2a !important;
}

.float-right {
  float: right;
}

#footer p.copyright {
  padding-left: 0px !important;
}

/* slideup animation */
.slide-up-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.slide-up-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* scroll delays */
.slide-up-delay-1 {
  transition-delay: 0.1s;
}

.slide-up-delay-2 {
  transition-delay: 0.2s;
}

.slide-up-delay-3 {
  transition-delay: 0.3s;
}

.slide-up-delay-4 {
  transition-delay: 0.4s;
}

.slide-up-delay-5 {
  transition-delay: 0.5s;
}

/* Different animation speeds */
.slide-up-fast {
  transition-duration: 0.5s;
}

.slide-up-slow {
  transition-duration: 1.2s;
}

/* Different distances */
.slide-up-small {
  transform: translateY(30px);
}

.slide-up-large {
  transform: translateY(100px);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
}

.fade-in.animate {
  opacity: 1;
}

/* Fade in delays */
.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

/* Fade in speeds */
.fade-in-fast {
  transition-duration: 0.5s;
}

.fade-in-slow {
  transition-duration: 1.5s;
}

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