.section-entertainment .list-entertainment {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}
.section-entertainment .list-entertainment .--item:nth-child(5n+1) {
  grid-column: span 2;
  height: 280px;
}
.section-entertainment .list-entertainment .--item:nth-child(5n+2) {
  height: 280px;
}
.section-entertainment .list-entertainment .--item:nth-child(5n+3) {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}
.section-entertainment .list-entertainment .--item:nth-child(5n+4) {
  height: 280px;
}
.section-entertainment .list-entertainment .--item:nth-child(5n+5) {
  grid-column: span 2;
  height: 280px;
}
.section-entertainment .list-entertainment.length-1 {
  display: flex;
  justify-content: center;
  grid-template-rows: unset;
}
.section-entertainment .list-entertainment.length-1 .--item {
  width: 40% !important;
}
.section-entertainment .list-entertainment.length-2 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: unset;
}
.section-entertainment .list-entertainment.length-2 .--item {
  grid-column: unset !important;
}
.section-entertainment .list-entertainment.length-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: unset;
}
.section-entertainment .list-entertainment.length-3 .--item {
  grid-column: unset !important;
  grid-row: unset !important;
  height: 280px;
}
.section-entertainment .list-entertainment.length-4 .--item:nth-child(4) {
  grid-column: span 3;
}
@media (max-width: 768px) {
  .section-entertainment .list-entertainment {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: unset;
    gap: 8px;
  }
  .section-entertainment .list-entertainment .--item {
    height: auto !important;
    aspect-ratio: 3/2;
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .section-entertainment .list-entertainment.length-1 .--item {
    width: 100% !important;
  }
  .section-entertainment .list-entertainment.length-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-entertainment .list-entertainment.length-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-search .cols {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-search .cols.active {
  opacity: 1;
  transform: translateY(0);
}

.list-banner .--item .cols {
  display: flex;
  justify-content: end;
  flex-flow: column;
  gap: 8px;
}
.list-banner .--item .cols img {
  height: auto;
  border-radius: 8px;
}
.list-banner .--item .cols img:first-child {
  width: 100%;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-banner .--item .cols:nth-child(1) img:nth-child(2), .list-banner .--item .cols:nth-child(7) img:nth-child(2) {
  aspect-ratio: 2/3;
}
.list-banner .--item .cols:nth-child(2) img:nth-child(2), .list-banner .--item .cols:nth-child(6) img:nth-child(2) {
  aspect-ratio: 7/5;
}
.list-banner .--item .cols:nth-child(3) img:nth-child(2), .list-banner .--item .cols:nth-child(5) img:nth-child(2) {
  aspect-ratio: 2.8/1;
}
@media (max-width: 768px) {
  .list-banner {
    width: 120%;
    margin-left: -10%;
  }
  .list-banner .--item .cols:nth-child(1) img:nth-child(2), .list-banner .--item .cols:nth-child(3) img:nth-child(2) {
    aspect-ratio: 2.8/1;
  }
  .list-banner .--item .cols:nth-child(2) img {
    aspect-ratio: 2/2.5;
  }
}

.video-section .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.video-section .slick-dots li {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #D9D9D9;
  overflow: hidden;
}
.video-section .slick-dots li.slick-active {
  background: var(--color-primary);
}
.video-section .slick-dots li button {
  opacity: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=home.css.map */