.tickets {
  background: var(--Contrast-Green, #003a29);
}
.tickets .banner {
  padding: 100px 18%;
}
.tickets .banner h1 {
  color: var(--White, #fff);
}
.tickets .packages {
  padding: 118px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tickets .packages ul {
  list-style: none;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.tickets .packages ul li {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1200px) {
  .tickets .packages ul {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .tickets .banner {
    padding: 74px 0;
    text-align: center;
  }
  .tickets .packages ul {
    display: flex;
    flex-direction: column;
  }
  .tickets .packages ul li {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .tickets .packages {
    padding: 50px 0px;
  }
  .tickets .packages ul {
    flex-direction: row;
    padding: 24px;
    gap: 48px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  .tickets .packages ul li {
    scroll-snap-align: center;
  }
  .tickets .packages ul li:first-child {
    margin-left: 182px; /* Add margin to the left for the first child */
  }
  .tickets .packages ul li:last-child {
    margin-right: 182px; /* Add margin to the right for the last child */
  }
  .tickets .packages ul::-webkit-scrollbar {
    width: 0;
  }
}

/*# sourceMappingURL=ticketSection.css.map */
