@font-face {
  font-family: Poppins;
  src: url("https://kenoaus.com/wp-content/themes/kenoaus-com/2RMIDGAZ.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins-Bold;
  src: url("https://kenoaus.com/wp-content/themes/kenoaus-com/NEESVN2L.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins-Semibold;
  src: url("https://kenoaus.com/wp-content/themes/kenoaus-com/VDZEVWB6.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: Poppins, sans-serif;
  color: #020202;
  height: 100%;
  background-color: #fffdfd;
  font-size: 15px;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}
a:focus,
a:active {
  outline: none;
}
:focus,
:active {
  outline: none;
}
ul li {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: inherit;
}
input,
button,
textarea,
select {
  margin: 0;
  font: inherit;
}
input {
  width: 100%;
  border: none;
}
textarea {
  border: none;
  resize: none;
}
img {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#base {
  height: 100%;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
  position: relative;
}
.section {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 760px) {
  .section {
    padding: 60px 0;
  }
}
main {
  position: relative;
  flex: 1 1 auto;
  font-size: 15px;
}
.hero-title {
  animation: fadeSlideUp 1s ease-out forwards;
  font-family: Poppins-Bold, sans-serif;
  font-size: 36px;
  line-height: 100%;
  opacity: 0;
}
@media (min-width: 760px) {
  .hero-title {
    font-size: 50px;
  }
}
@media (min-width: 1050px) {
  .hero-title {
    font-size: 70px;
  }
}
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.heading-lg {
  font-family: Poppins-Semibold, sans-serif;
  font-size: 18px;
  line-height: 144%;
}
@media (min-width: 760px) {
  .heading-lg {
    font-size: 30px;
    line-height: 120%;
  }
}
@media (min-width: 1050px) {
  .heading-lg {
    font-size: 44px;
    line-height: 106%;
  }
}
.heading-md {
  font-family: Poppins-Bold, sans-serif;
  font-size: 18px;
  line-height: 133%;
}
@media (min-width: 760px) {
  .heading-md {
    font-size: 20px;
    line-height: 120%;
  }
}
.text-semibold {
  font-family: Poppins-Semibold, sans-serif;
  font-size: 16px;
  line-height: 125%;
}
@media (min-width: 760px) {
  .text-semibold {
    font-size: 17px;
    line-height: 130%;
  }
}
@media (min-width: 1050px) {
  .text-semibold {
    font-size: 18px;
    line-height: 122%;
  }
}
.text-small {
  font-family: Poppins-Semibold, sans-serif;
  font-size: 14px;
  line-height: 142%;
}
@media (min-width: 760px) {
  .text-small {
    font-size: 15px;
    line-height: 133%;
  }
}
@media (min-width: 1050px) {
  .text-small {
    font-size: 17px;
    line-height: 130%;
  }
}
.btn-primary {
  align-items: center;
  background: #fd4d04;
  border: 1px solid #d20e0e;
  border-radius: 10px;
  color: #f9f9f9;
  display: inline-flex;
  font-family: Poppins-Semibold, sans-serif;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  padding: 13px 50px;
  position: relative;
  text-align: center;
  transition: color 0.5s ease;
  z-index: 1;
}
.btn-primary::before {
  background-color: #ca3131;
  border-radius: 10px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
  z-index: -1;
}
.btn-primary:hover::before {
  width: 100%;
}
.btn-outline {
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #fd4d04;
  border-radius: 10px;
  color: #0e0e0e;
  display: inline-flex;
  font-family: Poppins-Semibold, sans-serif;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  padding: 14px 50px;
  position: relative;
  text-align: center;
  transition: color 0.5s ease;
  z-index: 1;
}
.btn-outline::before {
  background: #ca3131;
  border: 1px solid #fd4d04;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
  z-index: -1;
}
.btn-outline:hover {
  color: #f9f9f9;
}
.btn-outline:hover::before {
  width: 100%;
}
.btn-dark {
  align-items: center;
  background: #0e0e0e;
  border-radius: 15px;
  color: #f9f9f9;
  display: inline-flex;
  font-family: Poppins-Semibold, sans-serif;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  padding: 14px 50px;
  position: relative;
  text-align: center;
  transition: color 0.5s ease;
  z-index: 1;
}
.btn-dark::before {
  background-color: #242424;
  border-radius: 15px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
  z-index: -1;
}
.btn-dark:hover::before {
  width: 100%;
}
.badge {
  align-items: center;
  background: #f9f9f9;
  border-radius: 10px;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  text-align: center;
  width: 100px;
}
.badge--light {
  background: #f9f9f9;
  color: #0e0e0e;
}
.cookie-banner {
  background-color: #fd4d04;
  border: none;
  border-radius: 10px;
  bottom: 20px;
  color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 30px;
  left: 20px;
  max-width: 280px;
  min-width: 280px;
  padding: 20px;
  position: fixed;
  z-index: 10000;
}
@media (min-width: 1050px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    min-width: 1000px;
    padding: 30px 40px;
  }
}
.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 1050px) {
  .cookie-actions {
    align-self: center;
    flex: 0 1 360px;
    grid-template-columns: repeat(3, 1fr);
    min-width: 360px;
  }
  .cookie-actions a,
  .cookie-actions button {
    padding: 13px;
  }
}
.cookie-actions button:first-of-type {
  border: 2px solid #0e0e0e;
}
.cookie-actions button:first-of-type::before {
  display: none;
}
.cookie-actions button:first-of-type:hover {
  background-color: #c0bfbf;
  color: #0c0a0a;
}
.site-header {
  position: relative;
}
.age-bar {
  background-color: #0e0e0e;
  color: #a2a2a2;
  font-size: 14px;
  padding: 11px 0;
  text-align: center;
}
.age-bar a {
  color: #fd4d04;
  text-decoration: underline;
}
.nav-bar {
  background-color: #f9f9f9;
  padding: 10px 0;
}
.nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.desktop-nav {
  display: none;
}
@media (min-width: 760px) {
  .desktop-nav {
    align-items: center;
    display: flex;
    gap: 60px;
  }
}
.desktop-nav a {
  color: #0e0e0e;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.desktop-nav a::after {
  background-color: #fd4d04;
  bottom: -3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
}
.desktop-nav a:hover {
  color: #fd4d04;
}
.desktop-nav a:hover::after {
  width: 100%;
}
.logo-link {
  display: inline-flex;
  height: 40px;
  width: 40px;
}
.logo-link img {
  object-fit: contain;
}
.hamburger {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  height: 28px;
  justify-content: center;
  position: relative;
  width: 28px;
}
@media (min-width: 760px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  background-color: #0e0e0e;
  border-radius: 5px;
  height: 3px;
  position: absolute;
  transform-origin: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger span:first-of-type {
  right: 0;
  top: 4px;
  width: 18px;
}
.hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}
.hamburger span:last-of-type {
  bottom: 4px;
  left: 0;
  width: 18px;
}
.hamburger--open {
  left: 50%;
  position: absolute;
  top: -30px;
  transform: translateX(-50%);
  z-index: 10000;
}
.hamburger--open span:first-of-type {
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 28px;
}
.hamburger--open span:nth-of-type(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}
.hamburger--open span:last-of-type {
  bottom: 50%;
  left: 0;
  transform: translateY(50%) rotate(-45deg);
  width: 28px;
}
.mobile-nav {
  align-items: center;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  height: 400px;
  justify-content: center;
  left: 0;
  position: absolute;
  row-gap: 30px;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media (min-width: 760px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.hidden {
  display: none;
}
.hero-section {
  background: linear-gradient(104deg, #eeffde 7.62%, #efe2ff 62.3%, #ffb4b4 119.72%);
  min-height: 800px;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 760px) {
  .hero-section {
    padding: 60px 0;
  }
}
.hero-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 760px) {
  .hero-wrapper {
    row-gap: 50px;
  }
}
.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
}
.hero-content a {
  min-width: 180px;
}
.hero-images {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.hero-img {
  max-height: 100px;
  max-width: 100px;
  object-fit: contain;
}
@media (min-width: 760px) {
  .hero-img {
    max-height: 240px;
    max-width: 240px;
  }
}
.hero-img--swing {
  animation: swingAnim 3s ease-in-out infinite;
  transform-origin: center top;
}
@media (min-width: 760px) {
  .hero-img--swing {
    max-height: 200px;
    max-width: 200px;
  }
}
.hero-float {
  animation: floatAnim 4s ease-in-out infinite;
  bottom: -50px;
  left: 50%;
  max-height: 320px;
  max-width: 250px;
  object-fit: contain;
  position: absolute;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 760px) {
  .hero-float {
    bottom: -50px;
    max-height: 385px;
    max-width: 310px;
  }
}
@keyframes floatAnim {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(-10%); }
  to   { transform: translateX(-50%) translateY(0); }
}
@keyframes swingAnim {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(-8deg); }
  75%  { transform: rotate(8deg); }
  to   { transform: rotate(0deg); }
}
.section--light {
  background-color: #fff;
}
.section--dark {
  background-color: #0e0e0e;
  color: #f9f9f9;
}
.section--black {
  background: #000;
  color: #f9f9f9;
  padding: 30px 0 0;
}
@media (min-width: 760px) {
  .section--black {
    padding: 50px 0 0;
  }
}
.section--orange {
  background: #fd4d04;
  color: #f9f9f9;
}
.section--gradient {
  background: linear-gradient(104deg, #eeffde 7.62%, #efe2ff 62.3%, #ffb4b4 119.72%);
}
.section-intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  row-gap: 20px;
  text-align: center;
}
.section-intro img {
  max-height: 73px;
  max-width: 78px;
  object-fit: contain;
}
.section-intro-center {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  row-gap: 20px;
  text-align: center;
}
.section-intro-left {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  row-gap: 20px;
}
.section-block {
  display: flex;
  flex-direction: column;
}
.perks-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 760px) {
  .perks-grid {
    align-items: center;
    flex-direction: row;
  }
}
.perks-grid article {
  background-color: #f9f9f9;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.perks-grid article h4 {
  margin-bottom: 5px;
}
.perks-grid article:nth-child(2) {
  background-color: #fd4d04;
  color: #f9f9f9;
  max-height: 100%;
}
@media (min-width: 760px) {
  .perks-grid article:nth-child(2) {
    min-height: 400px;
  }
}
.perks-grid img {
  margin-bottom: 20px;
  max-height: 60px;
  max-width: 60px;
  object-fit: contain;
}
.events-wrapper {
  display: flex;
  flex-direction: column;
}
.events-wrapper a {
  align-self: center;
  min-width: 180px;
}
.events-layout {
  display: flex;
  flex-direction: column;
}
@media (min-width: 760px) {
  .events-layout {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}
.events-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  row-gap: 20px;
}
.events-list article {
  display: flex;
  gap: 10px;
}
.events-list article h4 {
  margin-bottom: 5px;
}
.events-list img {
  align-self: center;
  max-height: 30px;
  max-width: 30px;
  object-fit: contain;
}
.events-photo {
  align-self: center;
  margin: 0 auto 30px;
  max-width: 280px;
}
@media (min-width: 760px) {
  .events-photo {
    margin: 0;
    max-width: 405px;
  }
}
@media (min-width: 1050px) {
  .events-photo {
    max-width: 490px;
  }
}
.stories-wrapper {
  display: flex;
  flex-direction: column;
}
.stories-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1050px) {
  .stories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stories-grid article {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}
.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 760px) {
  .about-wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
  }
}
@media (min-width: 1050px) {
  .about-wrapper p {
    max-width: 400px;
  }
}
.about-wrapper img {
  border-radius: 10px;
}
@media (min-width: 760px) {
  .about-wrapper img {
    max-height: 174px;
    max-width: 174px;
  }
}
@media (min-width: 1050px) {
  .about-wrapper img {
    max-height: 312px;
    max-width: 312px;
  }
}
.games-block {
  display: flex;
  flex-direction: column;
}
.games-intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  row-gap: 20px;
  text-align: center;
}
.games-intro img {
  max-height: 70px;
  max-width: 70px;
  object-fit: contain;
}
.games-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  max-width: 280px;
}
@media (min-width: 760px) {
  .games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-items: center;
    justify-self: center;
    margin: 0;
    max-width: 100%;
  }
}
.games-grid a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 70px 30px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 760px) {
  .games-grid a {
    gap: 30px;
    padding: 70px 57px;
  }
  .games-grid a:nth-child(2),
  .games-grid a:nth-child(3) {
    max-width: 320px;
    padding: 50px 44px;
  }
  .games-grid a:nth-child(2) img,
  .games-grid a:nth-child(3) img {
    max-height: 150px;
    min-height: 150px;
  }
}
@media (min-width: 1050px) {
  .games-grid a:nth-child(2),
  .games-grid a:nth-child(3) {
    max-width: 100%;
    padding: 70px 57px;
  }
  .games-grid a:nth-child(3) {
    margin-left: 100px;
  }
  .games-grid a:nth-child(2) {
    margin-right: 100px;
  }
  .games-grid a:first-child,
  .games-grid a:nth-child(4) {
    max-width: 500px;
  }
}
.games-grid a img {
  border-radius: 10px;
  min-height: 150px;
  object-fit: contain;
}
@media (min-width: 1050px) {
  .games-grid a img {
    max-height: 150px;
    min-height: 150px;
  }
}
.games-grid a:hover {
  transform: scale(1.05);
}
.game-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.game-info button {
  align-items: center;
  color: #fd4d04;
  display: flex;
  justify-content: space-between;
}
.cta-row {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 760px) {
  .cta-row {
    column-gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.cta-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 760px) {
  .cta-text {
    align-self: center;
  }
}
@media (min-width: 1050px) {
  .cta-text {
    align-self: flex-start;
    max-width: 780px;
  }
}
.cta-text a {
  align-self: flex-start;
}
.cta-text p {
  color: #a2a2a2;
}
.cta-text .badge {
  background: #f9f9f9;
  color: #0e0e0e;
}
.cta-image {
  align-self: center;
  max-width: 280px;
}
@media (min-width: 760px) {
  .cta-image {
    max-width: 310px;
  }
}
.pricing-block {
  display: flex;
  flex-direction: column;
}
.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing-grid article {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  row-gap: 20px;
}
.package-header {
  align-items: center;
  column-gap: 20px;
  display: flex;
}
.package-header span {
  font-size: 14px;
  margin-bottom: 5px;
}
.package-header img {
  height: 50px;
  object-fit: contain;
  width: 40px;
}
.pricing-grid article ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.pricing-grid article ul li {
  align-items: center;
  column-gap: 5px;
  display: flex;
}
.package-tag {
  background: #0e0e0e;
  border-radius: 10px 10px 0 0;
  color: #f9f9f9;
  padding: 9px 0;
  text-align: center;
}
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 760px) {
  .faq-wrapper {
    flex-direction: row;
    gap: 30px;
  }
}
.faq-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-intro .badge {
  align-items: center;
  background: #f6fafc;
  color: #0c0a0a;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 100px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (min-width: 1050px) {
  .faq-list {
    max-width: 625px;
  }
}
.faq-question {
  column-gap: 5px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.faq-icon {
  align-self: center;
  background: #fff;
  border-radius: 50%;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
  width: 50px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.faq-icon svg {
  transition: transform 0.3s ease;
}
.faq-icon--active {
  background: #fd4d04;
}
.faq-icon--active svg {
  transform: rotate(180deg);
}
.faq-icon--active svg path {
  fill: #fff;
}
.faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  text-align: left;
  transition: background-color 0.3s ease;
}
.faq-item:hover {
  background-color: #f0f0f0;
}
.faq-item--open {
  background-color: #fff;
  gap: 10px;
}
.faq-answer {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.faq-answer--visible {
  margin-top: 10px;
  max-height: 200px;
  opacity: 1;
}
.final-cta-row {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 760px) {
  .final-cta-row {
    column-gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.final-cta-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 760px) {
  .final-cta-text {
    align-self: center;
  }
}
@media (min-width: 1050px) {
  .final-cta-text {
    align-self: flex-start;
    max-width: 780px;
  }
}
.final-cta-text a {
  align-self: flex-start;
}
.final-cta-text .badge {
  background: #f9f9f9;
  color: #0e0e0e;
}
.final-cta-image {
  align-self: center;
  max-width: 252px;
}
.testimonials-block {
  display: flex;
  flex-direction: column;
}
.testimonials-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials-grid article {
  display: flex;
  gap: 10px;
  padding: 20px;
}
.testimonials-grid article img {
  height: 60px;
  object-fit: contain;
  width: 60px;
}
.testimonials-grid article h4 {
  margin-bottom: 5px;
}
.location-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 760px) {
  .location-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.location-info {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 1050px) {
  .location-info {
    max-width: 545px;
  }
}
.location-info .badge {
  background: #f6fafc;
  color: #0c0a0a;
  height: 30px;
  justify-content: center;
  width: 100px;
}
.location-info a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}
.location-info a:hover {
  text-decoration: underline;
}
.map-container {
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 300px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 760px) {
  .map-container {
    height: 400px;
    max-width: 500px;
  }
}
@media (min-width: 1050px) {
  .map-container {
    height: 450px;
    max-width: 600px;
  }
}
.map-container iframe {
  display: block;
}
.site-footer {
  position: relative;
}
.footer-inner {
  padding: 30px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 760px) {
  .footer-nav {
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
  }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
}
.footer-col:first-of-type {
  font-size: 14px;
  justify-content: space-between;
}
.footer-col a:not(.footer-logo):not(.footer-contact-link) {
  color: #0e0e0e;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
  width: fit-content;
}
.footer-col a:not(.footer-logo):not(.footer-contact-link)::after {
  background-color: #fd4d04;
  bottom: -3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
}
.footer-col a:not(.footer-logo):not(.footer-contact-link):hover {
  color: #fd4d04;
}
.footer-col a:not(.footer-logo):not(.footer-contact-link):hover::after {
  width: 100%;
}
.footer-logo {
  display: inline-flex;
  height: 40px;
  width: 40px;
}
.footer-logo img {
  object-fit: contain;
}
.footer-contact-link {
  align-items: center;
  column-gap: 10px;
  display: flex;
}
.footer-col-title {
  font-family: Poppins-Semibold, sans-serif;
  font-size: 14px;
  line-height: 142%;
  margin-bottom: 10px;
}
.footer-copy {
  background-color: #0e0e0e;
  color: #a2a2a2;
  font-size: 14px;
  padding: 9px 16px;
  text-align: center;
}
.events-hero-section {
  background: linear-gradient(104deg, #eeffde 7.62%, #efe2ff 62.3%, #ffb4b4 119.72%);
  position: relative;
  z-index: 1;
}
.events-hero-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 760px) {
  .events-hero-wrapper {
    row-gap: 50px;
  }
}
.events-hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
}
.events-hero-content a {
  min-width: 180px;
}
.events-hero-img {
  align-self: center;
  max-height: 280px;
  max-width: 280px;
  object-fit: contain;
}
.event-types-block {
  display: flex;
  flex-direction: column;
}
.event-types-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 280px;
}
@media (min-width: 760px) {
  .event-types-grid {
    max-width: 100%;
  }
}
.event-types-grid article {
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
  row-gap: 20px;
}
@media (min-width: 760px) {
  .event-types-grid article {
    column-gap: 20px;
    flex-direction: row;
    padding: 50px 40px;
  }
}
@media (min-width: 1050px) {
  .event-types-grid article {
    padding: 50px 120px;
  }
}
.event-article-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 1050px) {
  .event-article-content {
    max-width: 630px;
  }
}
.event-article-content ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 760px) {
  .event-article-content ul {
    column-gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.event-article-content ul li {
  align-items: center;
  column-gap: 10px;
  display: flex;
}
.event-article-content a {
  align-self: flex-start;
  min-width: 180px;
}
.event-types-grid img {
  border-radius: 10px;
}
@media (min-width: 760px) {
  .event-types-grid img {
    max-height: 312px;
    max-width: 312px;
  }
}
.contact-section {
  background-color: #f9f9f9;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-block h2,
.contact-block p {
  text-align: center;
}
.contact-block p {
  margin-bottom: 10px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 670px;
  row-gap: 20px;
  width: 100%;
}
.contact-form button[type="submit"] {
  align-self: center;
  min-width: 200px;
}
.form-field {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  width: 100%;
}
.form-field input,
.form-field textarea {
  background: #fff;
  border: 1px solid #f8f8f8;
  border-radius: 10px;
  padding: 14px 20px;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a2a2a2;
}
.form-field input[type="number"] {
  -moz-appearance: textfield;
}
.form-field input[type="number"]::-webkit-inner-spin-button,
.form-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-grid-two {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 760px) {
  .form-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-grid-three {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 760px) {
  .form-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.date-input-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}
.date-input-wrapper input {
  width: 100%;
}
.date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.date-input::-moz-calendar-picker-indicator {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.date-input[data-placeholder="true"] {
  color: transparent;
}
.date-input[data-placeholder="true"]::-moz-color-swatch {
  color: transparent;
}
.date-input[data-placeholder="false"] {
  color: #0e0e0e;
}
.date-placeholder {
  color: #a2a2a2;
  font-size: 16px;
  left: 20px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.checkbox-label {
  align-self: center;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.checkbox-label input[type="checkbox"] {
  height: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}
.checkbox-label input:checked ~ span {
  background: transparent;
}
.checkbox-label input:checked ~ span::after {
  display: block;
}
.checkbox-box {
  background-color: #f5f5f5;
  border: 1px solid #0e0e0e;
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 24px;
}
.checkbox-box::after {
  border: solid #fd4d04;
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: 10px;
  left: 8px;
  position: absolute;
  top: 5px;
  transform: rotate(45deg);
  width: 5px;
}
.checkbox-text {
  font-size: 14px;
  margin-left: 40px;
}
.checkbox-text a {
  text-decoration: underline;
}
.form-error {
  color: #fd4d04;
  display: inline-block;
  font-size: 11px;
  margin-top: 2px;
}
.form-success {
  text-align: center;
}
.policy-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}
.policy-block h1 {
  margin-bottom: 5px;
}
.policy-date {
  color: #a2a2a2;
  font-size: 14px;
  margin-bottom: 10px;
}
.policy-block p {
  line-height: 1.75;
}
.policy-block a {
  color: #fd4d04;
  text-decoration: underline;
}
.policy-block a:hover {
  text-decoration: none;
}
.policy-links {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .policy-links {
    gap: 30px;
  }
}
.policy-links a {
  text-decoration: underline;
}