/* .fetures-list li .img-box {
  position: relative;
}

.fetures-list li .img-box .img {
  position: absolute;
  right: 0;
  inset: 0;
  opacity: 0;
  z-index: 0;
  animation: slideShow 15s linear infinite 0s;
}

.fetures-list li .img-box .img:nth-child(2) {
  animation-delay: 5s;
}

.fetures-list li .img-box .img:nth-child(3) {
  animation-delay: 10s;
}

.fetures-list li .img-box .img img {
  width: 100%;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }

  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  20% {
    opacity: 1;
  }

  40%,
  100% {
    opacity: 0;
  }
}

.fetures-list li .img-box .img02 {
  position: absolute;
  right: 0;
  inset: 0;
  opacity: 0;
  z-index: 0;
  animation: slideShow02 20s linear infinite 0s;
}

.fetures-list li .img-box .-first {
  position: relative;
}

.fetures-list li .img-box .img02:nth-child(2) {
  animation-delay: 5s;
}

.fetures-list li .img-box .img02:nth-child(3) {
  animation-delay: 10s;
}

.fetures-list li .img-box .img02:nth-child(4) {
  animation-delay: 15s;
}

.fetures-list li .img-box .img02 img {
  width: 100%;
}

@keyframes slideShow02 {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }

  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  20% {
    opacity: 1;
  }

  40%,
  100% {
    opacity: 0;
  }
} */
