@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.whats-on-sect {
  padding: 2rem 0 9rem;
}
.whats-on-sect h1 {
  text-align: center;
}
.whats-on-sect .ws-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.whats-on-sect .ws-top-wrap .nav-tabs {
  margin-bottom: 0;
}
.whats-on-sect .ws-top-wrap .nav-tabs .nav-link {
  border-color: #1F1F1F;
  color: #1F1F1F;
}
.whats-on-sect .ws-top-wrap .nav-tabs .nav-link.active {
  border-color: #D8DE3F;
}
.whats-on-sect .ws-top-wrap .nav-tabs .nav-link.active:hover {
  color: #1F1F1F;
}
.whats-on-sect .ws-top-wrap .nav-tabs .nav-link:hover {
  color: #D8DE3F;
  border-color: #D8DE3F;
}
.whats-on-sect .promotions-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 20px + 4 * (100vw - 1440px) / 480, 24px);
}
.whats-on-sect .promotions-grid .post-card {
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 0 0 2.5rem 2.5rem;
}
.whats-on-sect .promotions-grid .post-card .post-card__link {
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.whats-on-sect .promotions-grid .post-card .parallax-box {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 2.5rem;
  transition: all 0.5s;
}
.whats-on-sect .promotions-grid .post-card .parallax-box .parallax-inner img {
  transition: all 0.5s;
  transform: scale(1);
}
.whats-on-sect .promotions-grid .post-card .parallax-box .this-tag {
  z-index: 5;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: #ffffff !important;
  border-color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(17px);
}
.whats-on-sect .promotions-grid .post-card .parallax-box .this-tag:hover {
  color: #1F1F1F !important;
  background-color: #D8DE3F;
  border-color: #D8DE3F;
}
.whats-on-sect .promotions-grid .post-card .post-card__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: clamp(20px, 20px + 4 * (100vw - 1440px) / 480, 24px);
  transition: all 0.5s;
}
.whats-on-sect .promotions-grid .post-card .post-card__content .card-up {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 20px + 4 * (100vw - 1440px) / 480, 24px);
}
.whats-on-sect .promotions-grid .post-card .post-card__content .card-up .date {
  font-size: clamp(14px, 14px + 2 * (100vw - 1440px) / 480, 16px);
  font-variant-numeric: lining-nums proportional-nums;
}
.whats-on-sect .promotions-grid .post-card .post-card__content .post-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.whats-on-sect .promotions-grid .post-card .post-card__content .read-more {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.whats-on-sect .promotions-grid .post-card .post-card__content .read-more span {
  transition: all 0.3s;
}
.whats-on-sect .promotions-grid .post-card .post-card__content .read-more img {
  transition: all 0.5s;
  opacity: 0;
}
.whats-on-sect .promotions-grid .post-card:hover {
  background-color: #F5F5F5;
}
.whats-on-sect .promotions-grid .post-card:hover .parallax-box {
  border-radius: 2.5rem 2.5rem 0 0;
}
.whats-on-sect .promotions-grid .post-card:hover .parallax-box .parallax-inner img {
  transform: scale(1.1);
}
.whats-on-sect .promotions-grid .post-card:hover .read-more span {
  color: #D8DE3F;
}
.whats-on-sect .promotions-grid .post-card:hover .read-more img {
  opacity: 1;
}
.whats-on-sect .promotions-grid .list-pagination {
  grid-column: span 4;
  margin-top: 3.125rem;
}

@media screen and (max-width: 1023px) {
  .whats-on-sect {
    padding: 2rem 0 9rem;
  }
  .whats-on-sect .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whats-on-sect .promotions-grid .list-pagination {
    grid-column: span 2;
  }
}
@media screen and (max-width: 767px) {
  .whats-on-sect {
    padding: 3rem 0 3rem;
  }
  .whats-on-sect .ws-top-wrap .group-search {
    display: none;
  }
  .whats-on-sect .ws-top-wrap .nav-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .whats-on-sect .ws-top-wrap .nav-tabs .nav-item {
    flex-shrink: 0;
  }
  .whats-on-sect .promotions-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .whats-on-sect .promotions-grid .list-pagination {
    grid-column: span 1;
  }
}
/*# sourceMappingURL=tpl-whatson.css.map */
