/** Shopify CDN: Minification failed

Line 69:3 Expected "}" to go with "{"

**/

  .help-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    position: relative;
  }

  .help-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
  }

  .help-column:hover .help-text::after {
    width: 100%;
  }

  .help-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 350px;
    aspect-ratio: 350 / 180;
    background-color: #f8f9fc;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  .help-request-template {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
    padding-top: 150px;
  }

  @media (max-width: 768px) {
    .help-request-template {
      justify-content: center;
      gap: 5px;
      overflow-x: auto;
    .help-column {
      padding: 80px 20px 0;
    }
    .help-column{
      flex: 0 0 calc((100% - 20px) / 3) !important;
      padding: 10px;
      aspect-ratio: 350 / 180;
    }
  }