.help__section {
  /* padding: 80px 0px; */
  overflow-x: clip;
  background-color: rgba(var(--bg-color-6));
  position: relative;

  .help__title {
    text-align: center;
    font-family: var(--font-source-serif-4);
    color: rgba(var(--text-color-1));
    font-size: var(--font-9-2);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 73.8px;
  }

  .help__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 43.2px;
    max-width: 1123.2px;
    margin: 0 auto;

    .help-card {
      display: flex;
      flex-direction: column;
      position: relative;
      /* width:350px; */
      width: calc(33.33% - 28.8px);
      background: rgba(var(--bg-color-1));
      z-index: 2;

      .help-card__image {
        img {
          width: 100%;
          aspect-ratio: 11 / 5;
          object-fit: cover;
          object-position: center center;
          display: block;
          height: unset;
        }
      }

      .help-card__content {
        padding: 21.6px 36px 21.6px 21.6px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 14.4px;
        height: 100%;
        background-color: rgba(var(--bg-color-1));

        .help-card__details {
          display: flex;
          flex-direction: column;
          gap: 14.4px;

          .card_title {
            font-family: var(--font-source-serif-4);
            font-size: var(--font-18);
            font-weight: 600;
            letter-spacing: var(--letter-spacing-8);
            line-height: 1.2;
            color: rgba(var(--text-color-6));
          }

          .card__des {
            font-size: var(--font-26);
            line-height: 1.4;
            color: rgba(var(--text-color-6));
          }
        }

        .help-card__action {
          a {
            color: rgba(var(--text-color-6));
            font-size: var(--font-28);
            line-height: 1;
            font-weight: 700;
            display: flex;
            flex-wrap: nowrap;
            gap: 5px;
            align-items: center;

            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
    }

    .help-card:first-child:before,
    .help-card:nth-child(3)::before,
    .help-card:nth-child(4)::before,
    .help-card:nth-child(5)::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0.5;
    }

    .help-card:first-child:before,
    .help-card:nth-child(4)::before {
      background: linear-gradient(270deg,
          rgba(var(--text-color-31)) 0%,
          rgba(var(--bg-color-6)) 93.25%);
      right: calc(100% + 43.2px);
    }

    .help-card:nth-child(3)::before,
    .help-card:nth-child(5)::before {
      background: linear-gradient(90deg,
          rgba(var(--text-color-31)) 1.15%,
          rgba(var(--bg-color-6)) 96.67%);
      left: calc(100% + 43.2px);
    }

    .help__cards:not(:has(.help-card:nth-child(5))) .help-card:nth-child(4)::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
          rgba(var(--text-color-31)) 1.15%,
          rgba(var(--bg-color-6)) 96.67%);
      opacity: 0.5;
      border-radius: 15px;
      left: calc(100% + 43.2px);
    }
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .help__cards {
      .help-card {
        width: calc(50% - 21.6px);
      }
    }

    .help__title {
      margin-bottom: 40px;
    }

    .help-card:first-child:before,
    .help-card:nth-child(3)::before,
    .help-card:nth-child(4)::before,
    .help-card:nth-child(5)::before {
      display: none;
    }
  }

  @media (max-width: 768px) {
    padding: 65px 0px 116px;

    .help__cards {
      display: flex;
      margin: 0 -10px;

      .help-card {
        width: 100%;
        margin: 0 10px;

        &::before {
          display: none !important;
        }

        &::after {
          display: none !important;
        }
      }

      .slick-dots {
        bottom: -56px !important;

        li {
          margin: 0px !important;
        }
      }

      .slick-dots li.slick-active button:before {
        color: rgba(var(--bg-color-1));
        opacity: 1 !important;
      }

      .slick-dots li button:before {
        font-size: var(--font-29);
        color: rgba(var(--bg-color-19));
      }
    }

    .slick-track {
      display: flex !important;
    }

    .slick-list {
      display: flex !important;
    }
  }

  .slick-initialized .slick-slide {
    display: flex;
    height: 100%;
  }
}