.banner-pagination .swiper-pagination-bullet{
    background-color: #d9d9d9;
    width: 14px;
    height: 14px;
}
.banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #f5b14c !important;

}
/* excerpt.css */
.excerpt-content {
  transition: max-height 0.4s ease-in-out; /* Thêm transition cho max-height */
  overflow: hidden;
}

.excerpt-hidden {
  max-height: var(--max-height, 3.5rem);
  position: relative;
}

.excerpt-hidden::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(transparent, white);
}

.excerpt-visible {
  /* max-height sẽ được set qua JS */
}

.excerpt-toggle {
  transition: all 0.3s;
}

.excerpt-toggle i {
  transition: transform 0.4s ease-in-out; /* Mượt hơn cho icon */
}

.excerpt-toggle .rotate {
  transform: rotate(180deg);
}

.main-breadcrumb .breadcrumb li a{
    font-size: 18px;
    text-transform: uppercase;
    color: white;
}
.main-breadcrumb .breadcrumb li a.active{
    font-weight: 700;
    color: white;
}
.modal-search {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.modal-search.active {
  visibility: visible;
  opacity: 1;
}

.modal-search form {
  transform: translateY(-3rem);
  transition: all 0.3s;
}

.modal-search.active form {
  transform: translateY(0);
}