*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #1C1C1C;
  background: #eaeaea;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  object-fit: cover;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
main {
  position: relative;
  flex: 1 1 auto;
}
.wrapper {
  padding: 0 16px;
  margin: 0 auto;
  max-width: 1220px;
  position: relative;
}
.page-section {
  position: relative;
  padding: 20px 0;
}
.heading-xl {
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
}
.heading-lg {
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
}
.heading-md {
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
}
.heading-sm {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
}
.text-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 142%;
}
.btn-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 50px;
  border-radius: 100px;
  color: #F9F9F9;
  border: 1px solid #F9F9F9;
  background: transparent;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn-solid {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 50px;
  border-radius: 100px;
  color: #F9F9F9;
  background: #4174F7;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.btn-solid:hover {
  background: #2f5ed4;
}
.site-logo {
  display: inline-flex;
  width: 80px;
  height: 30px;
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  min-height: 77px;
  color: #F9F9F9;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-column {
  display: none;
  column-gap: 60px;
  align-items: center;
}
.nav-column a {
  color: #F9F9F9;
  transition: opacity 0.2s ease;
}
.nav-column a:hover {
  opacity: 0.75;
}
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F9F9F9;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: rgba(20, 20, 20, 0.95);
  padding: 20px 16px;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.mobile-menu.visible {
  display: flex;
}
.mobile-menu a {
  color: #F9F9F9;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.2s ease;
}
.mobile-menu a:hover {
  opacity: 0.75;
}
.hero-section {
  position: relative;
  overflow: hidden;
  color: #F9F9F9;
  padding: 70px 0;
}
.hero-bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  text-align: center;
}
.hero-card {
  border-radius: 20px;
  background: #F9F9F9;
  padding: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #1C1C1C;
}
.game-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.game-list li {
  padding: 13px 20px;
  text-align: center;
  border-radius: 30px;
  background: #edf4ff;
  font-weight: 600;
  font-size: 14px;
}
.hero-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dates {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dates-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  padding: 13px 20px;
  border-radius: 30px;
  background: #edf4ff;
  font-size: 14px;
  font-weight: 600;
}
.about-body {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.about-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.about-content p {
  font-size: 14px;
}
.about-card {
  max-width: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.about-card img {
  border-radius: 10px;
}
.about-info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: flex-start;
}
.about-info a {
  min-width: 180px;
}
.events-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.event-card {
  max-width: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-card img {
  border-radius: 10px;
  min-height: 330px;
}
.event-card-main h2 {
  margin-bottom: 20px;
}
.event-info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.event-features {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  row-gap: 10px;
}
.event-rating {
  align-self: flex-start;
  width: fit-content;
  border-radius: 30px;
  background: #F6FAFC;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 13px;
}
.event-top {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.event-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.event-bottom a {
  padding: 14px 20px;
}
.moments-body {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.moments-body img {
  max-width: 280px;
  align-self: center;
  border-radius: 10px;
}
.moments-body h3 {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background: #F2F8FF;
}
.moments-text {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 20px;
  justify-content: center;
}
.steps-section {
  background: #F2F8FF;
}
.steps-body h2 {
  margin-bottom: 20px;
  text-align: center;
}
.steps-body > p {
  margin-bottom: 30px;
  text-align: center;
  font-size: 14px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #F2F8FF;
  background: #FFF;
  row-gap: 5px;
  padding: 20px;
}
.gallery-body h2 {
  margin-bottom: 20px;
}
.gallery-body > p {
  font-size: 14px;
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.gallery-grid img {
  border-radius: 10px;
}
.services-section {
  background: #F2F8FF;
}
.services-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-titles {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.service-card {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  border-radius: 10px;
  border: 1px solid #F2F8FF;
  background: #FFF;
  padding: 20px;
}
.reviews-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 280px;
  margin: 0 auto;
}
.review-card {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  background: #F2F8FF;
  justify-content: space-between;
}
.review-info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.review-info img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 5px;
}
.review-footer {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 10px;
}
.review-featured {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.review-featured img {
  border-radius: 10px;
}
.review-featured-info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.contact-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info {
  align-self: flex-start;
  border-radius: 10px;
  background: #F2F8FF;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 10px;
}
.contact-info a:hover {
  text-decoration: underline;
}
.contact-form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  align-self: center;
}
.form-row {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: none;
  resize: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #A2A2A2;
  background-color: #eaeaea;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: #4174F7;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #A2A2A2;
}
.form-field textarea {
  max-height: 31px;
  width: 100%;
}
.date-field {
  position: relative;
}
.date-field input[type="date"] {
  width: 100%;
}
.date-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  color: #A2A2A2;
  font-size: 14px;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.date-placeholder.hidden {
  opacity: 0;
}
.form-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
}
.checkbox-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  margin: 0;
}
.checkbox-box {
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
  min-width: 24px;
  background-color: #f5f5f5;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #0E0E0E;
  flex-shrink: 0;
}
.checkbox-box::after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #1C1C1C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-label input:checked ~ .checkbox-box {
  background: transparent;
}
.checkbox-label input:checked ~ .checkbox-box::after {
  display: block;
}
.checkbox-text {
  font-size: 14px;
  margin-left: 35px;
}
.checkbox-text a {
  text-decoration: underline;
}
.site-footer {
  padding: 20px 0;
  background-color: #F6FAFC;
  margin-top: auto;
}
.footer-body {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-top img {
  align-self: center;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.footer-copyright {
  text-align: center;
  color: #A2A2A2;
}
@media (min-width: 760px) {
  .page-section {
    padding: 50px 0;
  }
  .heading-xl {
    font-size: 50px;
  }
  .heading-lg {
    font-size: 30px;
    line-height: 120%;
  }
  .heading-md {
    font-size: 20px;
    line-height: 120%;
  }
  .heading-sm {
    font-size: 17px;
    line-height: 130%;
  }
  .text-label {
    font-size: 15px;
    line-height: 133%;
  }
  .nav-column {
    display: flex;
  }
  .burger-btn {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
  .hero-section {
    padding: 80px 0;
  }
  .hero-body {
    row-gap: 100px;
  }
  .hero-card {
    padding: 20px;
  }
  .game-list {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf4ff;
  }
  .hero-dates {
    text-align: left;
  }
  .dates-list {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .hero-card-bottom {
    gap: 5px;
  }
  .hero-card-bottom a {
    align-self: flex-end;
  }
  .about-body {
    flex-direction: row;
    column-gap: 30px;
  }
  .about-card {
    flex-direction: row;
    max-width: 100%;
    margin: 0;
    column-gap: 20px;
  }
  .about-card img {
    max-width: 335px;
    flex: 0 1 335px;
  }
  .about-info {
    row-gap: 20px;
    align-self: center;
  }
  .events-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .event-card {
    max-width: 100%;
    margin: 0;
  }
  .event-card-main {
    grid-column: span 2;
  }
  .event-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .event-bottom a {
    padding: 14px 40px;
  }
  .moments-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
  }
  .moments-body img {
    max-width: 100%;
  }
  .moments-body h3 {
    padding: 30px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid .step-card:last-of-type {
    grid-column: span 2;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-body {
    gap: 30px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .reviews-body {
    display: flex;
    max-width: 100%;
    margin: 0;
  }
  .review-card {
    padding: 20px;
  }
  .reviews-body article:nth-child(2) {
    flex: 1 0 380px;
  }
  .reviews-body article > img {
    min-height: 400px;
  }
  .contact-body {
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-info {
    padding: 30px;
    flex: 0 0 270px;
    max-width: 270px;
  }
  .contact-form {
    row-gap: 30px;
  }
  .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .form-bottom {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    column-gap: 10px;
  }
  .site-footer {
    padding: 30px 0;
  }
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-links {
    flex-direction: row;
    column-gap: 50px;
  }
  .footer-legal {
    flex-direction: row;
    align-items: flex-end;
    align-self: flex-end;
    column-gap: 50px;
  }
  .footer-contact {
    flex-direction: row;
    align-self: center;
    column-gap: 50px;
  }
}
@media (min-width: 1050px) {
  .page-section {
    padding: 100px 0;
  }
  .heading-xl {
    font-size: 70px;
  }
  .heading-lg {
    font-size: 44px;
    line-height: 106%;
  }
  .heading-sm {
    font-size: 18px;
    line-height: 122%;
  }
  .text-label {
    font-size: 17px;
    line-height: 130%;
  }
  .hero-card-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .about-card {
    align-self: flex-end;
  }
  .about-card img {
    max-height: 410px;
  }
  .events-body {
    grid-template-columns: repeat(3, 1fr);
  }
  .event-card-main {
    grid-column: unset;
    min-width: 470px;
  }
  .event-card-grid {
    grid-row-start: unset;
    align-self: flex-end;
  }
  .event-card-grid img {
    min-height: 415px;
  }
  .moments-body {
    column-gap: 30px;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid .step-card:last-of-type {
    grid-column: unset;
  }
  .services-body {
    flex-direction: row;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .review-card {
    padding: 30px;
  }
  .contact-info {
    flex: 0 0 380px;
    max-width: 380px;
  }
  .contact-body {
    gap: 50px;
  }
}
.site-header-relative {
  position: relative;
  background: transparent;
  color: #1C1C1C;
}
.nav-column-dark a {
  color: #1C1C1C;
}
.burger-btn-dark span {
  background: #1C1C1C;
}
.about-hero-section {
  position: relative;
  overflow: hidden;
  color: #F9F9F9;
  padding: 80px 0;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.about-hero-bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0;
}
.about-hero-content p {
  font-size: 16px;
  line-height: 1.65;
}
.about-events-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-events-body h2 {
  margin-bottom: 10px;
}
.about-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.about-event-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.about-event-card img {
  border-radius: 10px;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
}
.about-event-info {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding: 0 4px 4px;
}
.about-event-top {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.about-event-features {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  row-gap: 8px;
}
.about-event-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.about-event-bottom a {
  padding: 12px 24px;
}
.tags-section {
  background: #F2F8FF;
  padding: 30px 0;
}
.tags-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.tags-strip span {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  background: #edf4ff;
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
}
.legal-body {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.legal-body h2 {
  color: #1C1C1C;
}
.legal-section {
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3a;
}
.legal-section a {
  color: #4174F7;
  text-decoration: underline;
}
.legal-section a:hover {
  opacity: 0.8;
}
@media (min-width: 760px) {
  .about-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-event-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .about-hero-content {
    padding: 80px 0;
  }
  .legal-body {
    padding: 60px 0 80px;
  }
  .legal-section {
    font-size: 16px;
  }
}
@media (min-width: 1050px) {
  .about-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-hero-section {
    padding: 100px 0;
  }
}