    .NyBigBox {
      overflow: visible;
      background: #F6F6F6;
    }

    .section1 {
      position: relative;
      overflow: visible;
      width: 100%;
      padding: 60px var(--container);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .lt1 {
      position: sticky;
      top: 140px;
      overflow: hidden;
      width: 320px;

    }

    .lt1 .title {
      padding: 30px;
    }

    .lt1 .title h1,
    .lt1 .title h2 {
      font-weight: 700;
      font-size: 32px;
      color: #000000;
    }

    .list1 {
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px;
      margin-bottom: 2px;
    }



    .list1 p {
      font-size: 18px;
      color: #000000;
      transition: 0.5s;
    }

    .list1.on p {
      font-weight: bold;
      color: var(--color);
    }

    .list1 p .icon {
      width: 30px;
      height: 30px;
      object-fit: contain;
      filter: brightness(0) opacity(0.8);
      margin-right: 10px;
      transition: 0.5s;
    }

    .list1.on .icon {
      filter: brightness(1) opacity(1);
    }

    .list1 .More {
      opacity: 0;
      transition: 0.5s;
    }

    .list1.on .More {
      opacity: 1;
    }

    .rt1 {
      width: calc(100% - 350px);
      display: flex;
      flex-wrap: wrap;
      grid-gap: 20px;
    }

    .rt1 .content {
      width: 100%;
      background: #fff;
      padding: 50px;
    }

    .rt1 .content .title {
      display: flex;
      align-items: center;
      grid-gap: 20px;
      font-weight: 700;
      font-size: 18px;
      color: #000000;
      margin-bottom: 30px;
    }

    .rt1 .content .desc {
      font-size: 16px;
      line-height: 2;
      text-align: justify;
      color: #2F2F2F;
    }

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

    .rt1 .content .desc5 .raw-html-embed {
      width: 100%;
      background: #F8F8F8;
    }

    .rt1 .content .desc5 .raw-html-embed video {
      width: 100%;
    }

    .rt1 .content .desc5 .raw-html-embed h5 {
      padding: 20px;
      padding-bottom: 0px;
      font-weight: 700;
      font-size: 18px;
      line-height: 1.25;
      color: #000000;
    }

    .rt1 .content .desc5 .raw-html-embed h6 {
      padding: 20px;
      padding-top: 0;
      padding-bottom: 30px;
      font-size: 16px;
      color: #676767;
    }

    .rt1 .content .desc5 .raw-html-embed h6 b {
      font-weight: 400;
      color: var(--color);
    }

    @media (max-width: 1440px) {
      .lt1 .title {
        padding: 20px;
      }

      .lt1 .title h1,
      .lt1 .title h2 {
        font-size: 24px;
      }

      .list1 {
        padding: 15px 20px;
      }
    }

    @media (max-width: 1200px) {
      .lt1 {
        top: 90px;
        width: 210px;
      }

      .rt1 {
        width: calc(100% - 220px);
      }

      .rt1 .content {
        padding: 30px;
      }

      .rt1 .content .desc5 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px 20px;
      }
    }

    @media (max-width:720px) {
      .section1 {
        display: flex;
        flex-wrap: wrap;
      }

      .lt1 {
        position: relative;
        top: 0;
        width: 100%;
        margin-bottom: 30px;
      }

      .rt1 {
        width: 100%;
      }

      .rt1 .content {
        padding: 20px;
      }
    }

    @media (max-width:460px) {
      .rt1 .content .desc5 {
        grid-template-columns: repeat(1, 1fr);
      }
    }

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