.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  top: -110px;
}

.community-ban .swiper-main {
  height: 100%;
}

.community-ban .slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: white;
  position: relative;
}

.community-ban .slide-content {
  width: 700px;
  padding: 20px;
  border-radius: 6px;
  position: relative;
  z-index: 99999 !important;
  float: left;
  /* background-color: #f00; */
}

.subtitle {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: left;
    width: 100%;
}

.title {
  font-weight: 600;
  font-size: 60px;
}

.description {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

.btn-view {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #c59d28;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  /* display: inline-block; */
  float: left;
}

.btn-view:hover {
  background-color: #b08a1f;
}



.thumbnails {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 180px;
  height: 250px;
  object-fit: cover;
  border: 4px solid transparent;
  border-radius: 4px;
  transition: border 0.3s;
}

.active-thumbnail {
  border-color: #c59d28;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 34%;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.custom-prev {
  border: none;
  color: white;
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 24%;
  width: 45px;
  height: 45px;
  background: url(../images/icon/lft-arrow.svg) no-repeat center;
  background-color: #c59d28;
  background-size: 60%;
}
.custom-next {
  border: none;
  color: white;
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 24%;
  width: 45px;
  height: 45px;
  background: url(../images/icon/rgt-arrow.svg) no-repeat center;
  background-color: #c59d28;
  background-size: 60%;
}

.custom-prev:hover,
.custom-next:hover {
  background-color: #b08a1f;
}

.slide-number {
  font-size: 50px;
  color: white;
  margin-right: 0%;
  margin-top: 10px;
  line-height: 10px;
  position: absolute;
  right: 0;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255);
  margin-top: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #c59d28;
  transition: width 0.5s ease-in-out;
}



.thumbnail-container {
  position: absolute;
  bottom: 10%;
  right: 10%;
  padding: 20px;
  width: 40%;
  z-index: 999;
}
.thumbnails {
    width: 100%;
    float: right;
}
.thumbnail img{
  width: 100%;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border 0.3s;
}


.community-ban .swiper-slide {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.community-ban .swiper-slide-active {
  opacity: 1;
}



.slide-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.community-ban .swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}


.slide-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.community-ban .swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}
.slide::before{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  /* background-color: #0000005f; */
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
