.index-partners .par_mainbox {
  display: flex;
  justify-content: space-evenly;
}
.index-partners .par_mainbox .par-img img {
  width: 130px;
  height: auto;
}
.index-newsbox .newsboxi-b li a {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 350px;
}
.carousel-container {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
}
.banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /* Initially hidden */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: fade 16s infinite;
  /* 16-second animation, infinite loop */
}
/* Animation delays for each image */
.banner:nth-child(1) {
  animation-delay: 0s;
  /* First image starts immediately */
}
.banner:nth-child(2) {
  animation-delay: 4s;
  /* Second image starts after 4 seconds */
}
.banner:nth-child(3) {
  animation-delay: 8s;
  /* Third image starts after 8 seconds */
}
.banner:nth-child(4) {
  animation-delay: 12s;
  /* Fourth image starts after 12 seconds */
}
/* Fade animation keyframes */
@keyframes fade {
  0% {
    opacity: 0;
  }
  /* Fade in starts */
  6.25% {
    opacity: 1;
  }
  /* Fade in complete */
  25% {
    opacity: 1;
  }
  /* Stay visible */
  31.25% {
    opacity: 0;
  }
  /* Fade out complete */
  100% {
    opacity: 0;
  }
  /* Stay hidden */
}
