   .section3 {
       display: block;
       padding: 0;
       position: relative;
   }

   .Box3 {
       width: 100%;
       display: flex;
   }

   .item3 {
       width: 100%;
       position: relative;
       z-index: 2;
       display: flex;
       justify-content: center;
       background: #000;
       transition: 0.5s;
   }


   .img3 {
       position: relative;
       z-index: 1;
       width: 100%;
       height: 100%;
       object-fit: cover;
       opacity: 0.5;
       transition: 0.5s;
   }


   .text3 {
       position: absolute;
       z-index: 2;
       width: 100%;
       height: 100%;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       bottom: 0%;
       transition: 0.5s;
   }

   .text3 img {
       width: 75px;
   }

   .text3 span {
       display: block;
       width: 28px;
       height: 2px;
       background: #fff;
       margin: 15px auto 20px;
   }

   .text3 h1 {
       font-size: 25px;
       color: #fff;
       text-align: center;
   }

   .item3:hover {
       background: var(--color);
       padding: 5px 0;
   }

   .item3:hover .img3 {
       width: calc(100% - 10px);
       height: 60%;
       opacity: 1;
   }

   .item3:hover .text3 {
       height: 40%;
   }

   @media (max-width: 1200px) {
       .text3 img {
           width: 35px;
       }

       .text3 h1 {
           font-size: 16px;
       }
   }


   @media (max-width: 720px) {
       .Box3 {
           display: flex;
           flex-wrap: wrap;
       }

       .item3 {
           width: 33.33333%;
       }
   }


   @media (max-width: 460px) {
       .text3 span {
           margin: 10px auto;
       }
   }