   .section3 {
       display: block;
       background: #f2f2f2;
   }


   .Box3 {
       width: 100%;
       margin-top: 60px;
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       grid-gap: 25px 20px;
   }

   .item3:nth-child(-n + 6) {
       display: block;
   }

   .item3 {
       width: 100%;
       display: none;
   }


   .item3 .img3 {
       width: 100%;
   }

   .item3 h1 {
       width: 100%;
       height: 45px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #fff;
       font-size: 12px;
       background: linear-gradient(0deg, #ac1025 49%, #b2404f 50%);
   }

   @media (max-width: 1200px) {
       .Box3 {
           margin-top: 30px;
           grid-template-columns: repeat(3, 1fr);
           grid-gap: 25px 20px;
       }
   }


   @media (max-width: 720px) {
       .Box3 {
           grid-template-columns: repeat(2, 1fr);
       }

       .item3 h1 {
           height: 35px;
       }
   }


   @media (max-width: 460px) {}