   .index_banner {
       position: relative;
       z-index: -2;
   }

   .index_banner img {
       width: 100%;
       height: 100%;
       max-height: 100vh;
   }

   @media (max-width: 1200px) {
       .index_banner {
           margin-top: 60px;
       }

   }

   @media (max-width: 720px) {
       .index_banner {
           margin-bottom: 150px;
       }

       .NumberItem {
           width: 33.333%;
       }

       .NumberItem:nth-child(4),
       .NumberItem:nth-child(5) {
           width: 40%;
       }
   }

   @media (max-width: 460px) {

       .NumberItem h1,
       .NumberItem h2 {
           color: var(--color1);
           background: unset;
           -webkit-text-fill-color: unset;
       }

       .NumberItem h2 {
           font-size: 14px;
       }
   }

   .section2 {
       background: var(--white);
       position: relative;
       z-index: 2;
   }

   .Box2 {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       grid-gap: 20px;
   }

   .item2 {
       width: 100%;
       position: relative;
       overflow: hidden;
   }

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

   .item2 .text {
       width: 100%;
       height: 100%;
       position: absolute;
       z-index: 2;
       padding: 50px 45px;
       display: flex;
       justify-content: flex-end;
       align-items: flex-start;
       flex-direction: column;
   }

   .item2 .text h1 {
       font-size: 20px;
       line-height: 1;
       color: var(--white);
       margin-bottom: 15px;
   }

   .item2 .text h1 b {
       font-weight: bold;
   }

   .item2 .text span {
       width: 120px;
       height: 40px;
       background: var(--color2);
       font-size: 14px;
       color: var(--white);
       border-radius: 50px;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   @media (max-width: 1540px) {
       .section2 {
           padding-top: 80px;
       }

       .item2 .text {
           padding: 30px 35px;
       }

       .item2 .text h1 {
           font-size: 18px;
           margin-bottom: 10px;
       }

       .item2 .text span {
           height: 34px;
       }
   }

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

       .item2 .text span {
           width: 110px;
           height: 30px;
       }

       .item2 .text {
           background: #00000080;
           padding: 30px 20px;
       }

       .item2 .text h1 {
           font-size: 16px;
       }
   }

   @media (max-width:800px) {
       .Box2 {
           grid-template-columns: repeat(1, 1fr);
           grid-template-rows: repeat(3, 0.5fr);
       }
   }

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

       .Box2 {
           grid-template-rows: repeat(3, 1fr);
       }
   }