  .NyList {
    padding: 45px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px 25px;
  }

  .NyList .item {
    width: 100%;
    background: #fff;
    border: 1px solid #ecf1f2;
    transition: 0.5s;
  }

  .NyList .item:hover {
    background: #ff6600;
  }

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

  .NyList .item h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    font-size: 14px;
    color: #585858;
    border-bottom: 1px solid #ecf1f2;
    background: #fff;
    margin-bottom: 4px;
  }

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

  @media (max-width:720px) {
    .NyList {
      padding: 30px 0;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 10px;
    }
  }


  @media (max-width:380px) {
    .NyList {
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 10px;
    }
  }