.slidebox-container {
  width: 400px;
  height: 500px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.slidebox-slides {
  height: 100%;
  position: relative;
}

.slidebox-item {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #fceabb, #f8b500);
  border-radius: 20px;
  text-align: center;
  padding: 60px 20px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(100%);
}

.slidebox-item.active {
  top: 0;
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.slidebox-item h1 {
  font-size: 64px;
  color: var(--Dark-Sage-Green);
  margin-bottom: 20px;
}

.slidebox-item p {
  font-size: 20px;
  color: #5a2f00;
}

.slidebox-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
}

.slidebox-icon img {
  width: 80px;  /* tăng kích thước chiều ngang */
  height: auto; /* giữ tỉ lệ ảnh */
  max-height: 80px; /* giới hạn chiều cao nếu muốn */
  object-fit: contain; /* ảnh không bị méo */
  display: block;
  margin: 0 auto; /* căn giữa ảnh trong div */
}

.slidebox-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  pointer-events: auto;
  z-index: 9999; /* Đảm bảo nằm trên slide */
}

.slidebox-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}

.slidebox-dot.active {
  background-color: var(--Dark-Sage-Green);
}

@media only screen and (max-width: 768px) {
	.slidebox-container {
  		width: 350px;
		height: 400px;
	}
	
	.slidebox-item h1 {
		font-size: 60px;
	}
}