.main__container {
  margin-top: 150px;
  overflow-x: hidden;
}

.hero__container {
  display: grid;
  gap: 15px;
}

.hero__container>h1 {
  font-size: 30px;
}

.hero__container>h1 span {
  color: #B63700;
}

/* ============= Navigation ============= */

.navigation__container {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 20px;
}

.search__event {
  width: 552px;
  height: 48px;
}

.search__form {
  position: relative;
  height: 100%;
  width: 100%;
}

.search__btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search__btn figure {
  width: 25px;
  height: 25px;
}

.search__btn figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-slide.category__list-item {
  background: #FFFFFF;
  width: 145px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #A0A0A0;
  overflow: hidden;
}

.swiper-slide.category__list-item:hover {
  background: linear-gradient(to right, #F58713 0%, #B63700 100%);
}

.category__list-item a {
  font-size: 18px;
  color: #A0A0A0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide.category__list-item:hover a {
  color: #FFFFFF;
}

.category__list-item a.active__category {
  background: linear-gradient(to right, #F58713 0%, #B63700 100%);
  color: #FFFFFF;
}


/* ============= Cards ============= */

.event__card-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 25px;
  margin-top: 25px;
  margin-bottom: 50px;
  min-height: 525px;
}

.main__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-gap: 26px;
}

.event__card .btn {
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  opacity: 0;
  transition-duration: .4s;
}

.event__card .btn {
  bottom: -120px;
}

.event__card:hover .btn {
  opacity: 1;
  bottom: 150px;
  transition: .4s .2s;
}

.event__card:hover .btn {
  bottom: 120px;
}

.event__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, auto);
  align-items: end;
  height: 250px;
  width: 250px;
  max-width: 100%;
  border-radius: 13px;
  box-shadow: 8px 19px 39px #00000029;
  overflow: hidden;
  margin: 0 auto;
  flex-shrink: 0;
}

.event__card.large {
  grid-column: span 2;
  grid-row: span 2;
  width: 526px;
  height: 526px;
}

.sold__out {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.sold__out>p {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(165, 0, 3, 0.00);
  background: linear-gradient(90deg, rgba(182, 55, 0, 0.50) 0%, #B63700 49.5%, rgba(182, 55, 0, 0.50) 100%);
}

.event__card.large .card__info>h4 {
  font-size: 20px;
}

.event__card.large .card__info>h4 span {
  font-size: 70px;
}

/* .event__card.small {
  width: 250px;
  height: 250px;
} */

.event__card figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.event__card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.event__card-info {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 10px;
  padding: 15px;
}

.event__card-info>ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.event__card-info>ul li figure {
  width: 15px;
  height: 15px;
}

.event__card-info>ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event__card-info .btn {
  margin: 0 auto;
  margin-top: 5px;
}

.card__info {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 10px;
  z-index: 2;
  padding: 10px;
  padding-top: 25px;
}

.card__info {
  position: relative;
  overflow: hidden;
}

.card__info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #2d1607, #2d1607, #2d1607, #2d1607, #2d1607, #2d160799, transparent);
  z-index: -1;
}

.card__info>h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  color: #FFFFFF;
  z-index: 2;
}

.card__info>h4 span {
  font-size: 40px;
  color: var(--second-color);
  line-height: 1;
}

.card__info-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}


.card__info-right ul li {
  line-height: 1;
}

.event__card.large .card__info {
  padding: 10px 25px;
  gap: 15px;
}

.event__card.large .card__info .card__info-right ul li {
  font-size: 16px;
}

.event__card.large .card__info .card__info-right>h4 {
  font-size: 16px;
}

.event__card.large .card__info .card__info-right {
  padding-top: 5px;
  gap: 3px;
}

.card__info-right>ul:first-child li:not(:first-child) {
  border-left: 2px solid #FFFFFF;
  padding-left: 4px;
}

.card__info-right ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.card__info-right>ul:last-of-type {
  gap: 2px;
  width: 100%;
}

.card__info-right ul li {
  font-size: 10px;
  color: #FFFFFF;
}

.card__info-right>h4 {
  font-size: 10px;
  color: var(--second-color);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.card__info-right>h4:last-child {
  color: #FFFFFF;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.pagination__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pagination__content {
  background-color: #FFFFFF;
  width: fit-content;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #D9D9D9;
}

.pagination__btn {
  border: none;
  padding: 0 15px;
  cursor: pointer;
  height: 38px;
  color: #8E8E8E;
  font-size: 14px;
  background-color: #FFFFFF;
}

.pagination__btn.active {
  background-color: #F58713;
  color: #FFFFFF;
}

.pagination__btn:hover {
  background-color: #F58713;
  color: #FFFFFF;
}

.pagination__btn.prev,
.pagination__btn.next {
  background-color: #00000010;
  color: #8E8E8E80;
}

.pagination__btn.prev:hover {
  background-color: #00000010;
  color: #8E8E8E80;
}

/* ============= Banner ============= */

.banner__container {
  background-color: #1C1C1C;
  height: 354px;
}

.banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  height: 100%;
}

.banner__left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}

.banner__left:after {
  position: absolute;
  content: '';
  right: 0;
  width: 100vw;
  height: 100%;
  background-image: url(/images/home/banner.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner__left h2 {
  font-size: 50px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.banner__left h2 span {
  color: #F58713;
}

.banner__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}

.banner__btns>.btn:first-child {
  background: #B63700;
}

.banner__btns>.btn:last-child {
  background: #F58713;
}

.banner__right h3 {
  font-size: 30px;
  color: #FFFFFF;
}

.banner__right h3 span {
  color: #F58713;
}

.banner__right {
  width: 470px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  justify-content: center;
}

.search__banner {
  width: 100%;
  height: 48px;
}

.search__banner form {
  height: 100%;
}

/* ============= Faqs ============= */

.faqs__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 50px 0;
  padding-bottom: 0;
}

.faqs__container>h2 {
  margin: 0 auto;
  width: fit-content;
  font-size: 30px;
  color: #000000;
}

.faqs__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding-top: 15px;
  padding-bottom: 0;
}

.faqs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
  position: relative;
  transition: all .25s ease;
  background-color: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 9px;
  overflow: hidden;
}

.faq__header {
  gap: 20px;
  cursor: pointer;
  width: 100%;
  min-height: 67px;
  opacity: 1;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 9px;
  padding: 0 25px;
  overflow: hidden;
}

.header__info-faqs {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  height: 100%;
}

.services__faqs-number {
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #F7527A;
}

.faq__header>h4 {
  font-size: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.faq__header svg {
  transform: rotate(-180deg)
}

.faq__header.active__faq svg {
  transform: rotate(0deg)
}

.faq__text {
  width: 100%;
  overflow: hidden;
  height: 0;
  transition: all 0.5s ease-in-out;
}

.faq__text>p {
  line-height: 1.5;
  padding: 10px 20px;
  font-size: 18px;
}

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

.faqs__right figure {
  width: fit-content;
  height: 430px;
}

.faqs__right figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ============= Popup ============= */

.popup__home-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000050;
  z-index: var(--z-modal);
  display: none;
}

.popup__home-container.show__offer-container {
  display: flex;
}

.popup__home-content {
  position: relative;
  padding: 0;
  background-color: var(--second-color);
  box-shadow: 0px 3px 6px #00000029;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: 500px;
  max-width: 80%;
  height: 750px;
  max-height: 80%;
  display: none;
  background-color: #FFFFFF;
  border-radius: 20px;
}

.popup__home-content.show__offer-popup {
  display: grid;
}

.popup__home-content figure {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  overflow: hidden;
}

.popup__home-content figure img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.popup__home-close {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
  background-color: #F58713;
  fill: #FFFFFF;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 10px;
  right: -12px;
  top: -12px;
}

.popup__home-content .btn {
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.category__loading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: none;
}

.category__loading.active__category-loading {
  display: flex;
}

.category__loading li {
  background-color: #f0f0f0;
  width: 174.5px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event__cards-loading {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-gap: 26px;
  width: fit-content;
  display: none;
}

.event__card-loading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, auto);
  align-items: end;
  gap: 10px;
  height: 250px;
  width: 250px;
  max-width: 100%;
  border-radius: 13px;
  box-shadow: 8px 19px 39px #00000029;
  overflow: hidden;
  margin: 0 auto;
}

.event__cards-loading>.event__card-loading:first-child {
  grid-column: span 2;
  grid-row: span 2;
  width: 526px;
  height: 526px;
}

.event__card-container.active__loading-card .event__cards-loading {
  display: grid;
}

.event__card-container.active__loading-card .main__cards {
  display: none;
}

.card__loading-image {
  height: 100%;
  width: 100%;
  padding: 25px;
}

.card__loading-image svg {
  height: 100%;
  width: fit-content;
  margin: 0 auto;
}

.card__loading-text {
  height: 80px;
  width: 100%;
  background-color: #f0f0f0;
}

.no__found-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  display: none;
}

.no__found-data figure {
  width: 125px;
  height: 80px;
}

.no__found-data figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.no__found-data.active__no-found {
  display: flex;
}

.no__found-data p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 32px;
  text-align: center;
  color: #777;
  font-style: italic;
  line-height: 1;
  font-weight: 600;
}

.form__input>div {
  position: relative;
}

@media (width <=1180px) {
  .event__cards-loading {
    grid-gap: 10px;
  }
}

@media (width <=1450px) {

  .main__cards {
    gap: 12px;
  }
}

@media (width <=1400px) {

  .main__cards {
    gap: 12px;
  }
}

@media (width <=1380px) {

  .main__cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-gap: 5px;
    width: fit-content;
  }
}

@media (width <=1340px) {

  .main__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 26px;
    width: fit-content;
    margin: 0 auto;
  }
}

@media(min-width <=1280px) {
  .main__cards {
    gap: 26px;
  }
}

@media (width <=1230px) {

  .main__cards {
    gap: 26px;
  }
}

@media (width <=1200px) {

  .popup__home-container {
    z-index: 51;
    display: none;
  }

  .popup__home-content {
    max-width: 90%;
    max-height: 88vh;
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 0;
    display: none;
  }
}

@media (width <=1180px) {

  .main__cards {
    gap: 12px;
  }
}


@media (width <=1150px) {

  .main__container {
    margin-top: 70px;
  }

  .hero__container {
    gap: 0;
  }

  .hero__container>h1 {
    display: none;
  }

  .navigation__container {
    grid-template-columns: minmax(0, 1fr);
    padding: 25px;
    width: 100%;
  }

  .navigation__container .search__event {
    width: 100%;
  }

  .category__list-item a {
    font-size: 16px;
  }

  .main__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 26px;
    width: fit-content;
  }

  .event__card-container {
    padding: 25px;
    margin-top: 0;
    border-top: 1px solid #A0A0A0;
  }

  .card__info {
    padding: 10px;
  }

  .card__info>h4 {
    font-size: 10px;
  }

  .card__info>h4 span {
    font-size: 40px;
  }

  .card__info-right ul li {
    font-size: 9px;
  }

  .card__info-right>h4 {
    font-size: 11px;
  }

  .pagination__container {
    justify-content: center;
  }

  .event__cards-loading {
    grid-template-columns: minmax(0, 1fr);
  }

  .banner__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .banner__left {
    justify-content: center;
    gap: 25px;
    align-items: center;
    width: 100%;
    padding: 25px;
  }

  .banner__left h2 {
    font-size: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3px;
    width: 100%;
    font-style: italic;
  }

  .banner__right h3 {
    font-size: 14px;
  }

  .banner__container,
  .banner__content {
    height: fit-content;
  }

  .banner__right {
    width: 100%;
    padding-left: 0;
    padding: 25px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    justify-content: center;
  }

  .faqs__container {
    padding: 25px;
    padding-bottom: 0;
  }

  .faqs__container>h2 {
    font-size: 20px;
    text-transform: uppercase;
  }

  .faqs__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .faqs__right figure {
    width: fit-content;
    height: 189px;
  }

  .faqs {
    order: 2;
  }

  .faqs__right {
    order: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .faq__header>h4 {
    font-size: 15px;
  }

  .faq__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
    align-items: center;
    padding: 0 10px;
    min-height: 45px;
  }

  .faq__text>p {
    font-size: 14px;
    padding: 5px 10px;
  }

  .faq__header svg {
    height: 10px;
    width: 12px;
  }

  .event__cards-loading {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 26px;
    display: none;
  }

  .popup__home-content .btn {
    width: fit-content;
    max-width: 80%;
  }

  .banner__btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    max-width: 80%;
  }

  .banner__btns>.btn {
    font-size: 14px;
    width: fit-content;
    padding: 12px 15px;
  }

  .swiper-slide.category__list-item:hover {
    background: #FFFFFF;
  }

  .swiper-slide.category__list-item:hover a {
    color: #A0A0A0;
  }

  .category__list-item:hover a.active__category {
    background: linear-gradient(to right, #F58713 0%, #B63700 100%);
    color: #FFFFFF;
  }

}

@media (width <=870px) {
  .main__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 26px;
    width: fit-content;
    margin: 0 auto;
  }

  .event__cards-loading {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
}

@media (width <=768px) {

  .event__card:hover .btn {
    display: none;
  }
}

@media (width <=600px) {
  .main__cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 26px;
    width: 100%;
  }

  .event__card.large {
    grid-column: span 1;
    grid-row: span 1;
    width: 250px;
    height: 250px;
  }

  .event__card.large .card__info {
    padding: 10px;
    gap: 10px;
  }

  .event__card.large .card__info>h4 {
    font-size: 10px;
  }

  .event__card.large .card__info>h4 span {
    font-size: 40px;
  }

  .event__card.large .card__info .card__info-right ul li {
    font-size: 9px;
  }

  .event__card.large .card__info .card__info-right>h4 {
    font-size: 11px;
  }

  .event__card.large .card__info .card__info-right {
    padding-top: 0;
    gap: 2px;
  }

  .event__card-container.active__loading-card .event__cards-loading {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .event__cards-loading>.event__card-loading:first-child {
    grid-row: span 1;
    grid-row: span 1;
    height: 250px;
    width: 250px;
  }
}