  .popup-view {

      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .popup-view.active {
      visibility: visible;
      opacity: 1;
  }

  .popup-view:active .reintro-sec {
      transform: translateY(-8px) scale(1.02);
  }



  .reintro-sec {
      background: #FFFFFF;
      box-shadow: 0px 20px 30px 0px #FE5812BF;
      border-bottom-right-radius: 108px;
      position: relative;
      padding: 52px 20px 55px;
      width: 100%;
      transition: transform 0.3s ease;
      transform: translateY(0px) scale(1);
  }

  .reintro-sec .reintro-inner {
      text-align: center;
      margin: 0 auto;
      max-width: 670px;
  }

  .reintro-sec .reintro-inner h2 {
      font-weight: 700;
      font-size: 34px;
      line-height: 30px;
      letter-spacing: 0;
      margin-bottom: 20px;
  }

  .reintro-sec .reintro-inner h2 em {
      font-style: italic;
  }

  .reintro-sec .reintro-inner p {
      font-weight: 400;
      font-size: 16px;
      line-height: 30px;
      color: #343435;
      margin: 0px auto;
      max-width: 640px;
  }

  .reintro-sec .reintro-inner .cta-wrap {
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 15px;
      margin-top: 40px;
      align-items: center;
  }

  .reintro-sec .reintro-inner .cta-wrap .cta {
      font-size: 14px;
      border-radius: 3px;
      color: #fff;
      text-decoration: none;
      background: #ff4c00;
      width: 174px;
      margin: 0px;
      padding: 13px 5px;
      text-transform: none;
  }

  .reintro-sec .reintro-inner .cta-wrap .cta:last-child {
      background: #fff;
      border: 0.79px solid #343435;
      color: #343435;
  }

  .fire-shape {
      position: absolute;
      bottom: 0px;
      right: 0px;
      width: 216px;
      height: 275px;
      user-select: none;
  }

  .fire-shape img {
      max-width: 100%;
  }