@media (min-width: 1200px) {
body::-webkit-scrollbar {
     display: none;
 }
  
 .story .container {
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     overflow-y: scroll;
     padding-bottom: 4rem;
 }
 
 .testimonial::-webkit-scrollbar,
 .story .container::-webkit-scrollbar {
     width: 0;
 }
 
 .testimonial {
     overflow-x: scroll;
     width: 100%;
     overflow-y: hidden;
 }

 .set-scroll-testmonial {
     display: flex;
     flex-direction: row;
     align-items: center;
 }
 
 .quoto_carousel.owl-drag .owl-item {
     margin-left: 1px;
 }
 
 /* .main_wraper .testimonial .quoto_carousel {
     max-height: 540px;
 } */
 .owl-carousel .owl-stage {
   display: flex;
}
.outer-wrapper {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
.inner-wrapper {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  transition: 0.4s ease-in-out;
}
.sec{
  width:100vw;
  height:100vh;
  flex-shrink:0;
}
.scrolly {
    overflow-y: scroll;
    margin: 0;
    justify-content: flex-start;
}
}
.slide_direction span{
    position: relative;
    animation: left-right 0.5s infinite;
    animation-direction: alternate;
}
@keyframes left-right {
    0%   {left: 0px;}
    100%  {left: 20px;}
}