   .section6 {
       position: relative;
       overflow: hidden;
       padding: 80px 0;
       background: #FBFCFF;
   }

   @media (max-width: 1200px) {
       .section6 {
           padding: 60px 0;
       }
   }

   @media (max-width: 460px) {
       .section6 {
           padding: 40px 0;
       }
   }

   .Box6 {
       margin-top: 40px;
       width: 100%;
   }

   .Box6Img {
       position: relative;
       left: -5%;
       width: 110%;
       display: grid;
       grid-template-columns: repeat(7, 1fr);
       grid-gap: 40px;
   }

   .Box6Img .img6 {
       background: #FFFFFF;
       box-shadow: 0px 0px 30px rgba(3, 87, 238, 0.1);
       border-radius: 15px;
       position: relative;

   }

   .Box6Img .img6 img {
       width: 100%;
       height: 100%;
       object-fit: contain;
   }

   @keyframes mover1 {
       0% {
           left: 5vw;
       }

       50% {
           left: -5vw;
       }

       100% {
           left: 5vw;
       }
   }

   @keyframes mover2 {
       0% {
           left: -5vw;
       }

       50% {
           left: 5vw;
       }

       100% {
           left: -5vw;
       }
   }

   .Box6Img .img6.mover1 {
       animation: 30s linear infinite alternate mover1;
   }

   .Box6Img .img6.mover2 {
       animation: 30s linear infinite alternate mover2;
   }

   .Box6Img .img6.mover3 {
       animation: 20s linear infinite alternate mover1;
   }

   .Box6Img .img6.mover4 {
       animation: 40s linear infinite alternate mover2;
   }

   @media (max-width: 1200px) {
       .Box6Img {
           grid-gap: 20px;
       }
   }

   @media (max-width: 800px) {
       .Box6Img {
           width: 150%;
           grid-gap: 10px;
       }
   }

   @media (max-width: 460px) {
       .Box6Img {
           width: 110%;
           grid-gap: 10px;
           grid-template-columns: repeat(4, 1fr);
       }

       .Box6Img .img6.mover1 {
           animation: 15s linear infinite alternate mover1;
       }

       .Box6Img .img6.mover2 {
           animation: 15s linear infinite alternate mover2;
       }

       .Box6Img .img6.mover3 {
           animation: 10s linear infinite alternate mover1;
       }

       .Box6Img .img6.mover4 {
           animation: 20s linear infinite alternate mover2;
       }
   }