.home-banner-container {
  overflow: hidden;
  padding-top: 100px;
  padding-inline: 30px;
  position: relative;
  background-image: url("../img/bg_landingpage_lg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-banner-container .content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  z-index: 1;
}

.fs-50 {
  line-height: 55px;
}

.navbar-container__btn--bg-blur {
  font-size: 18px;
  padding: 8px 20px !important;
}

.navbar-container__btn--bg-white {
  color: #000;
  a {
    color: #000;
  }
}

.home-banner-container .event-category-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.home-banner-container .event-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.home-banner-container .event-category-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16.8px);
}

.home-banner-container .event-category-card__title {
  position: absolute;
  top: 20%;
  left: 8px;
  font-size: 36px;
  font-weight: 600;
  color: #CFB9DB;
}

.home-banner-container .text-container {
  font-size: 36px;
}

.home-banner-container .slides-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.home-banner-container .slides-container--to-left {
  width: 100%;
  height: 350px;
  overflow: hidden;
  .slide-track--to-left {
    display: flex;
    width: calc(240px * 5);
    height: 350px;
    animation: scrollToLeft 25s linear infinite;
    .slide {
      width: 220px;
      min-width: 220px;
      height: 320px;
      border-radius: 20px;
      margin-right: 20px;
      background-color: #000;
    }
  }
}

.home-banner-container .slides-container .slide-track {
  height: calc(370px * 5);
}

.home-banner-container .slides-container .slide-track--to-top {
  animation: scrollToTop 40s linear infinite;
  margin-right: 2rem;
  margin-left: auto;
}

.home-banner-container .slides-container .slide-track--to-bottom {
  animation: scrollToBottom 40s linear infinite;
}

.home-banner-container .slides-container .slide,
.home-banner-container .slides-container .slide1 {
  width: 270px;
  height: 350px;
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: #000;
}

.br-btn {
  border: none;
  border-radius: 15px;
  padding: 15px;
  width: fit-content;
  cursor: pointer;
}

.br-btn--white-bg {
  background-color: #fff;
  color: #000;
}

.br-btn--black-bg {
  background-color: #000;
  color: #fff;
}

.br-btn--black-bg .i-chevron-right::ng-deep svg {
  transform: rotateZ(90deg);
}

.section-title {
  margin-inline: auto;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.section-title__text {
  font-size: 48px;
}

.point-mark {
  width: 15px;
  height: 15px;
  border-radius: 50% 50% 50% 0;
  background-color: #ab51e3;
  margin-right: 0.5rem;
  display: inline-block;
}

@keyframes scrollToTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-370px * 5));
  }
}

@keyframes scrollToBottom {
  0% {
    transform: translateY(calc(-370px * 5));
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes scrollToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-290px * 5));
  }
}

.swiper {
  width: 100%;
}

.swiper-slide {
  width: fit-content;
  height: fit-content;
  background-color: #1e1e1e !important;
}

@media screen and (max-width: 767px) {
  .navbar-container__btn--bg-white {
    font-size: 16px !important;
  }

  .home-banner-container {
    padding-inline: 5px;
    background-position: 20%;
  }

  .content {
    margin-top: 50px;
  }

  .mb-sm-5 {
    margin-bottom: 100px;
  }

  .fs-50 {
    font-size: 30px;
    line-height: 38px;
    font-weight: bold;
  }

  .fs-26.mt-5 {
    font-size: 18px;
    line-height: 20px;
    margin-top: 40px !important;
    color: #c4c2c2;
  }
  .fs-18 {
    font-size: 17px;
    margin-top: 5px;
    color: #c4c2c2;
  }
}
