.page-help {
  background-color: #f2f2f2;
  .zc-dialog .zc-dialog-wrap{
    max-width: 960px;
  }
  a.i {
    font-style: italic;
    font-size: 12px;
  }

  section.body {
    margin-bottom: 40px;
    min-height: calc(100vh - 70px);
    .container {
      display: flex;
      align-items: center;
      flex-direction: column;
      img {
        min-height: 30vh;
        height: 500px;
        padding: 30px;
        justify-content: center;
      }
      section {
        display: flex;
        border-radius: 4px;
        border: solid 1px #c8c8c8;
        background-color: #ffffff;
        min-height: 15vh;
        .help-button {
          text-decoration: none;
          color: black;
          padding: 25px;
          flex: 1;
          font-weight: 500;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          cursor: pointer;
          &:hover {
            background-color: #f7f9fb;
            border-color: #c8c8c8;
          }
          .mobile-icon {
            display: none;
          }
          .help-button-text {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
            div {
              display: flex;
              flex-direction: column;
            }
          }
          span {
            font-size: 24px;
          }
          strong {
            font-size: 18px;
          }
          p {
            color: #70ad4d;
            font-weight: 700;
          }
        }
      }
    }
  }

  @media screen and (max-device-width: 480px) {
    section.body {
      .container {
        padding: 0px;
        img {
          max-height: 50vw;
          padding: 0px;
        }
        section {
          flex-direction: column;
          border-radius: 0px;
          border: none;
          width: 100%;
          .help-button {
            border-top: 0.5px solid #c8c8c8;
            flex-direction: row;
            .mobile-icon {
              display: flex;
              align-items: center;
              padding-right: 20px;
              font-size: 20px;
            }
            .desktop-icon {
              display: none;
            }
            span {
              font-size: 14px;
            }
            strong {
              font-size: 16px;
            }
          }
        }
      }
    }
  }
}
