      .banner {
          width: 100%;
          height: 600px;
          max-width: 2000px;
          margin: 10px auto;
      }

      .swiper {
          width: 100%;
          height: 100%;
      }

      .swiper-button-prev,
      .swiper-button-next {
          width: 60px !important;
          height: 60px !important;
          background-color: black;
          opacity: 0.8;
          color: #FFFFFF !important;
          border-radius: 50%;
          font-weight: 600 !important;
          display: none !important;
      }

      .banner:hover .swiper-button-prev {
          display: flex !important;
      }

      .banner:hover .swiper-button-next {
          display: flex !important;
      }

      .swiper-slide img {
          width: 100%;
          height: 100%;
      }

      .swiper-slide {
          position: relative;
      }

      .bannerTxt {
          width: 600px;
          height: 380px;
          position: absolute;
          bottom: 50px !important;
          left: 150px;
          background-color: #01063d !important;
          z-index: 999 !important;
          padding: 30px;
      }

      .bannerTxt p:nth-child(1) {
          margin: 10px 0px;
          font-size: 34px;
          font-weight: 600;
          line-height: 30px;
          margin-top: 50px;
          margin-bottom: 30px;
          color: #94CB2F;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical;
         
      }

      .bannerTxt p:nth-child(2) {
          font-size: 20px;
          font-weight: normal;
          line-height: 30px;
          margin-bottom: 40px;
          position: relative;
          color: #ffffff;
          width: 90%;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
         
      }

      .bannerTxt p:nth-child(3) {
          text-transform: uppercase;
          background-color: #01063d;
          color: #fff;
          width: 25%;
          text-align: center;
          padding: 10px 0px;
          border: 1px solid;
          cursor: pointer;
      }

      @media screen and (max-width:960px) {
          .banner {
              height: 245px;
              background-color: #FFFFFF;
              width: 95%;
              margin: 10px auto;
          }

          .bannerTxt {
              width: 75%;
              height: 66%;
              bottom: 30px !important;
              left: 30px;
              padding: 5px;
          }

          .bannerTxt p:nth-child(1) {
              margin: 0px;
              font-size: 18px;
          }

          .bannerTxt p:nth-child(2) {
              margin: 0px;
              font-size: 16px;
          }

          .bannerTxt p:nth-child(3) {
              width: 55%;
              font-size: 16px;
              padding: 5px 0px;
              position: absolute;
              bottom: 10px;
          }
      }