.heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -1px;
  }
  .heading-l {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -1px;
  }
  .heading-xl {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -1px;
  }
  .system-tab {
    background-color: #f6f5f4;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-block: 15px;
    border-radius: 15px;
  }
  .system-tab > h2 {
    margin-top: 10px;
    font-size: 25px;
  }
  .business-text {
    font-size: 25px;
    font-weight: 500;
  }
  .growth-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0px;
    padding: 0px;
  }
  .growth-subtitle {
    color: white;
  }
  .features-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  .features-section > div {
    width: 50%;
  }
  .CTA-section {
    background-color: #3c54c7;
    text-align: center;
    color: white;
    margin-block: 10px;
    margin-bottom: 30px;
    padding: 45px;
    border-radius: 20px;
  }
  .demo-reviews {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
  }
  .signup-card {
    background-color: white;
    padding-inline: 20px;
    width: 40%;
    padding-block: 70px;
    border-radius: 15px;
  }
  .oms-c-h {
    font-size: 2rem;
    font-weight: 700;
    line-height: 50px;
    color: #151515;
    margin-top: 10px;
  }
  .oms-c-h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 50px;
    color: #151515;
    margin-top: 10px;
  }
  .oms-c-h4 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    color: #151515;
    margin-top: 10px;
  }
  .oms-c-h4 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 50px;
    color: #151515;
    margin-top: 10px;
  }
  .oms-gp {
    margin-top: 20px;
  }
  .spinner {
    animation: rotation 1s linear infinite;
  }
  
  .schedule-demo-title {
    margin-block: 10px;
  }
  .schedule-demo-title > p {
    display: contents;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @media only screen and (max-width: 900px) {
    .signup-card {
      width: 60%;
    }
  }
  @media only screen and (max-width: 600px) {
    .heading {
      font-size: 1.9rem;
      font-weight: 700;
      line-height: 35px;
      letter-spacing: -1px;
    }
    .heading-xl {
      font-size: 2.9rem;
      font-weight: 700;
      line-height: 45px;
      letter-spacing: -1px;
    }
    .heading-l {
      font-size: 2.9rem;
      font-weight: 700;
      line-height: 45px;
      letter-spacing: -1px;
    }
    .system-tab > h2 {
      display: none;
    }
    .system-tab > p {
      display: none;
    }
    .system-tab {
      padding-block: 5px;
      border-radius: 20px;
    }
    .growth-title {
      font-size: 1.2em;
    }
    .growth-subtitle {
      font-size: 0.8em;
    }
    .features-section {
      flex-direction: column !important;
      text-align: center;
    }
    .features-section > div {
      width: 100%;
    }
    .features-section > Button {
      background-color: red;
    }
    .CTA-section {
      margin-block: 50px;
      padding: 25px;
    }
    .CTA-section > h1 {
      font-size: 20px;
      line-height: 140%;
    }
    .demo-reviews {
      flex-direction: column;
      align-items: center;
    }
    .signup-card {
      padding-inline: 0px;
      padding-block: 40px;
      width: 80%;
    }
    .signup-object {
      display: none;
    }
    .schedule-demo-title > h1 {
      text-align: center;
    }
    .schedule-demo-title > p {
      display: none;
    }
  }
  