@keyframes radius {
 0%{
     border-radius: 58% 42% 22% 78% / 34% 72% 28% 66%;
 }
 100%{
     border-radius: 17% 83% 30% 70% / 36% 50% 50% 64%  ;
     /* border-radius: 76% 63% 26% 73% / 67% 100% 27% 66%; */
     /* border-radius: 23% 77% 26% 74% / 67% 24% 76% 33% ; */   
 }
}

@keyframes product-animation {
  from{
   transform: translateY(0%);
  }
  to{
   transform: translateY(3%);
  }
 
}

@keyframes testi-animation {
  from{
    transform: translateY(0%);
  }
  to{
    transform: translateY(-100%);
  }
  
}
@keyframes testi-animation-x{
  from{
    transform: translateX(0%);
  }
  to{
    transform: translateX(-100%);
  }
}
@keyframes scroll-negX {
  from{
    transform: translateX(-200%);
    opacity: 0.4;
    scale: 0.3;
  }
  to{
    transform: translateX(0%);
    opacity: 1;
    scale: 1;
  }
}
@keyframes scroll-posx {
  0%{
    /* transform: translateX(100vw); */
    opacity: 0.5;
    scale: 0.7;
    width: 0%;
  }
  40%, 50%{
    opacity: 1;
    scale: 1;
    width: 80%;
  }
  100%{
    /* transform: translateX(0); */
    opacity: 1;
    scale: 1;
    width: 100%;
  }
  
}

@keyframes scroll-up {
  from{
    opacity: 0;
    transform: translateY(100px) scale(0.5);
  }
  to{
    opacity: 1;
    transform: translateY(0%) scale(1);
  }
  
}

@keyframes text-ani {
  /* from{
    transform: translateY(50px);
  } */
  to{
    transform: translateY(0px);
    opacity: 1;
  }
  
}

@keyframes opacity-animation {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
  
}

@keyframes right-ani {
  0% {
    opacity: 0;
    /* -webkit-transform: translate3d(100%, 0, 0); */
    transform: translateX(100%);
}
100% {
    opacity: 1;
    /* -webkit-transform: translateZ(0); */
    transform: translateX(0);
}
  
}
.translate-negx{
  animation: scroll-negX linear both;
  animation-timeline: view(90% 20%);
}
.translate-posx{
  animation: scroll-posx linear both;
  animation-timeline: view(90%, 30%);
}
.translate-scrollup{
  animation: scroll-up linear both;
  animation-timeline: view(70%, 5%);
}
.text-animation{
  animation: text-ani linear;
  animation-timeline: view(90%, 30%);
}
.radius-animation{
 animation: radius 3s ease-in-out infinite alternate;
}
.product-img-ani{
 animation: product-animation 3s ease  infinite alternate;
}
.testi-slider-animation{
  animation: testi-animation linear infinite;
}