.carousel-container-plugin {
  width: 100%;
  max-width: 1200px;
  position: relative;
  /* perspective: 1000px; */
  height: 550px;
  margin-top: 50px;
}

.carousel-container-plugin .carousel-plugin {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s;
}

.carousel-container-plugin .carousel-plugin .carousel-item-plugin {
  position: absolute;
  width: 650px;
  height: 470px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.carousel-container-plugin .carousel-plugin .carousel-item-plugin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.carousel-container-plugin .carousel-plugin .carousel-item-plugin:hover img {
  transform: scale(1.05);
}

.carousel-container-plugin .carousel-plugin .carousel-item-plugin.active {
  z-index: 10;
  transform: translate(-50%, -50%) scale(1.1);
}

.carousel-container-plugin .carousel-plugin .carousel-item-plugin.prev-2 {
  transform: translate(-100%, -50%) scale(0.7);
  opacity: 0.6;
  z-index: 1;
}

.carousel-container-plugin .carousel-plugin .carousel-item-plugin.prev-1 {
  transform: translate(-80%, -50%) scale(0.8);
  opacity: 0.8;
  z-index: 2;
}

.carousel-container-plugin .carousel-plugin .carousel-item-plugin.next-1 {
  transform: translate(-20%, -50%) scale(0.8);
  opacity: 0.8;
  z-index: 2;
}

.carousel-container-plugin .carousel-plugin .carousel-item-plugin.next-2 {
  transform: translate(0%, -50%) scale(0.7);
  opacity: 0.6;
  z-index: 1;
}

.carousel-container-plugin .carousel-nav {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-container-plugin .carousel-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-container-plugin .carousel-nav button.active {
  background: #333;
}

.carousel-container-plugin .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  font-size: 20px;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.carousel-container-plugin .carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-container-plugin .carousel-arrow.prev {
  left: 20px;
}

.carousel-container-plugin .carousel-arrow.next {
  right: 20px;
}
