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

   .Box3 {
       position: absolute;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       z-index: 2;
       display: flex;
   }

   .item3 {
       width: 100%;
       height: 100%;
       border-right: 1px solid rgba(255, 255, 255, 0.2);
       padding: 0 75px;
       padding-top: 10vw;
   }

   .item3.on {
       background: linear-gradient(180deg, var(--color) 0%, rgba(0, 0, 0, 0) 100%);
   }

   .item3 img {
       width: 40px;
       height: 40px;
       object-fit: contain;
       margin-bottom: 60px;
   }

   .item3 h1 {
       color: #FFF;
       font-size: 14px;
       text-transform: capitalize;
   }

   .item3 h2 {
       color: #FFF;
       font-size: 42px;
       margin-bottom: 45px;
   }

   .item3 p {
       color: #FFF;
       font-size: 16px;
       line-height: 1.5;
       height: 120px;
       opacity: 0;
   }

   .item3.on p {
       opacity: 1;
   }

   .item3 a {
       width: 180px;
       height: 60px;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 18px 0;
       background: #FFF;
       color: #000;
       text-align: center;
       font-size: 16px;
       opacity: 0;
   }

   .item3.on a {
       opacity: 1;
   }

   .img3 {
       position: relative;
       z-index: 1;
       width: 100%;
   }

   .img3 img {
       width: 100%;
       display: none;
   }

   .img3 img.on {
       width: 100%;
       display: block;
   }

   @media (max-width: 1440px) {
       .item3 {
           padding: 0 45px;
           padding-top: 5vw;
       }

       .item3 img {
           margin-bottom: 30px;
       }

       .item3 h2 {
           font-size: 32px;
           margin-bottom: 20px;
       }

       .item3 p {
           font-size: 14px;
       }

       .item3 a {
           width: 150px;
           height: 40px;
           font-size: 14px;
       }
   }

   @media (max-width: 1200px) {
       .item3 {
           padding: 0 15px;
           padding-top: 5vw;
       }

       .item3 img {
           width: 30px;
           height: 30px;
           margin-bottom: 20px;
       }

       .item3 h1 {
           font-size: 12px;
       }

       .item3 h2 {
           font-size: 24px;
       }

       .item3 p {
           height: auto;
           margin-bottom: 15px;
       }
   }

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

       .item3 {
           padding: 15px;
           width: 50%;
           height: 50%;
           border-bottom: 1px solid rgba(255, 255, 255, 0.2);
           display: flex;
           flex-direction: column;
           justify-content: center;
       }

       .item3 img {
           width: 30px;
           height: 30px;
           margin-bottom: 10px;
       }

       .item3 h2 {
           margin-bottom: 10px;
       }

       .item3 p {
           margin-bottom: 5px;
       }

       .img3 img {
           width: 100%;
           height: 500px;
           object-fit: cover;
       }

       .item3 a {
           width: 120px;
           height: 30px;
           font-size: 12px;
       }
   }

   @media (max-width: 460px) {
       .item3 p {
           overflow: hidden;
           display: -webkit-box;
           -webkit-box-orient: vertical;
           -webkit-line-clamp: 2;
       }
   }

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