   .section3 {
       padding-bottom: 0;
       padding-left: var(--container);
       padding-right: var(--container);
   }

   .section3 .indexTitle h1 {
       text-align: center;
       color: #FFFFFF;

   }

   .section3 .indexTitle h2 {
       text-align: center;
       color: #DADADA;
   }

   .Box3 {
       margin-top: 60px;
       position: relative;
       width: 100%;
       z-index: 2;
       display: flex;
       flex-wrap: wrap;
   }

   .list3 {
       width: 25%;
       display: flex;
       flex-wrap: wrap;
       padding: 15px;
       background: rgba(0, 0, 0, 0.3);
       backdrop-filter: blur(20px);
   }

   .list3 li {
       width: 100%;
       display: flex;
       align-items: center;
       padding: 0 30px;
       font-size: 18px;
       color: #FFFFFF;
   }

   .list3 li.on {
       background: var(--color);
   }

   .item3 {
       width: 75%;
   }

   .item3 li {
       display: none;
   }

   .item3 li.on {
       display: flex;
       flex-wrap: wrap;
   }

   .text3 {
       width: 65%;
       padding: 45px;
       background: rgba(0, 0, 0, 0.1);
       backdrop-filter: blur(30px);
   }

   .desc3 h1 {
       font-weight: 700;
       font-size: 20px;
       color: #FFFFFF;
       margin-bottom: 15px;
   }

   .desc3 h2 {
       font-size: 16px;
       line-height: 1.5;
       color: #FFFFFF;
       opacity: 0.9;
   }

   .icon3Box {
       padding: 40px 0;
       margin-bottom: 40px;
       border-bottom: 1px solid rgba(255, 255, 255, 0.4);
       display: grid;
       justify-items: start;
       grid-template-columns: repeat(3, 1fr);
   }

   .icon3 {
       display: flex;
       flex-direction: column;
       align-items: center;
       grid-gap: 10px;
       color: #fff;
   }

   .img3 {
       width: 35%;
       padding: 30px;
       background: rgba(0, 0, 0, 0.3);
       backdrop-filter: blur(20px);
   }

   .More3Box {
       display: flex;
       grid-gap: 20px;
   }

   .More3Box a {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 150px;
       height: 50px;
       color: #fff;
       font-size: 16px;
       border: 1px solid rgba(255, 255, 255, 0.8);
   }

   .More3Box a:first-child {
       border: 1px solid var(--color);
       background: var(--color);
   }

   .img3 {
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       align-content: flex-start;
       grid-gap: 10px;
   }

   .img3 h1 {
       width: 100%;
       text-align: center;
       font-size: 16px;
       color: #fff;
       padding-bottom: 20px;
       background: url(/assets/images/img3.png) no-repeat center bottom;
   }

   .img3 img {
       width: calc(50% - 5px);
   }


   @media (max-width: 1440px) {
       .icon3Box {
           padding: 30px 0;
           margin-bottom: 30px;
       }

       .text3 {
           width: 60%;
           padding: 30px;
       }

       .img3 {
           width: 40%;
           padding: 30px;
       }
   }

   @media (max-width: 1200px) {
       .list3 {
           width: 35%;
       }

       .item3 {
           width: 65%;
       }

       .text3 {
           width: 100%;
           padding: 30px;
       }

       .img3 {
           width: 100%;
           padding: 30px;
       }

       .img3 img {
           width: calc(33% - 6px);
       }
   }

   @media (max-width: 720px) {
       .list3 {
           padding: 10px;
           width: 100%;
       }

       .list3 li {
           width: 33.33%;
           padding: 15px;
           justify-content: center;
           text-align: center;
       }

       .item3 {
           width: 100%;
       }
   }

   @media (max-width: 460px) {
       .list3 li {
           width: 50%;
       }

       .text3 {
           padding: 15px;
       }

       .img3 {
           padding: 15px;
       }
   }

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