    .LeftRight .NyLeft {
      background: #f2f2f2 !important;
    }

    .itemBox {
      margin-bottom: 45px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 25px;
    }

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

    .itemBox .item .img {
      width: 100%;
      border: 1px solid #d5d5d5;
      border-radius: 4px 4px 4px 4px;
      background: #FFFFFF;
      padding: 10px;
    }

    .itemBox .item .img:hover {
      border: 1px solid #A9CF54;
      box-shadow: 0 0 5px #A9CF54;
    }

    .itemBox .item .img img {
      width: 100%;
    }

    .itemBox .item .text {
      margin-top: 15px;
      width: 100%;
    }

    .itemBox .item .text h1 {
      text-align: center;
      font-size: 18px;
      color: var(--color);
    }


    @media (max-width: 1200px) {
      .itemBox {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
      }
    }

    @media (max-width:720px) {
      .itemBox {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width:460px) {
      .itemBox .item .img {
        padding: 5px;
      }
    }

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