  /*Top Category List CSS view*/
  .top-category-list {
    display: flex;
    flex-flow: row wrap;
    gap: 48px 24px;
    font-family: 'HelveticaNeue_light', Helvetica, sans-serif, Arial;
    /*overwrite with support site TBF*/
  }

  .top-category-list li {
    font-weight: 500;
    width: 100%;
  }

  @media (min-width:565px) {
    .top-category-list li {
      width: calc(50% - 12px);
    }
  }

  @media (min-width:1024px) {
    .top-category-list li {
      width: calc(33.33% - 16px);
    }
  }

  .top-category-list li .top-category-img {
    margin-bottom: 24px;
    min-height: 133px;
    background-color: #9b9b9b;
    position: relative;
  }

  @media (min-width:768px) {
    .top-category-list li .top-category-img {
      min-height: 199px;
    }
  }

  @media (min-width:1024px) {
    .top-category-list li .top-category-img {
      min-height: 180px;
    }
  }
  @media (min-width:1440px) {
    .top-category-list li .top-category-img {
      min-height: 265px;
    }
  }

  .top-category-list li .top-category-img img {
    width: 100%;
  }

  .top-category-list li h3 {
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 8px;
    color: #3E3E3E;
  }

  .top-category-list li p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #3E3E3E;
  }

  .top-category-list li .link-container {
    margin-bottom: 32px;
    display: flex;
    flex-flow: column;
    gap: 8px;
  }

  .top-category-list li .link-container a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: 'HelveticaNeue_Medium', Helvetica, sans-serif, Arial;
    /*overwrite with support site TBF*/
    color: #3E3E3E;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
  }

  .top-category-list li .link-container a:hover {
    color: #3E3E3E !important;
    box-shadow: none;
  }

  .top-category-list li .top-category-list-content {
    padding: 8px;
  }

  /* css for cta    */
  .top-category-cta-link .btn-secondary-hover {
    font-family: "HelveticaNeue_Medium", Arial, Helvetica, sans-serif;
    border: 1px solid #006dcc;
    padding: 7px 24px;
    min-width: 120px;
    border-radius: 30px;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    background-color: #fff;
    text-decoration: none !important;
    color: #006dcc !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .top-category-cta-link .btn-secondary-hover:hover {
    box-shadow: unset;
    color: #fff !important;

  }

  .top-category-cta-link .btn-secondary-hover:hover:after {
    height: 140%;
    width: 135%;
    left: 0;
  }

  .top-category-cta-link .btn-secondary-hover:after {
    background-color: #006dcc;
    content: "";
    height: 20%;
    bottom: -20%;
    left: 10px;
    position: absolute;
    transform-origin: top left;
    transition-duration: .3s;
    width: 10%;
    z-index: -1;
    border-radius: 30px;
  }

  .top-category-cta-link .btn-secondary {
    padding: 7px 24px;
    max-width: 120px;
    border-radius: 30px;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    background-color: #fff;
    border: 1.75px solid #006dcc;
    text-decoration: none !important;
    color: #006dcc !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .top-category-cta-link .btn-secondary:hover {
    padding: 7px 24px;
    color: #004480 !important;
    background-color: #fff !important;
    border: 1.75px solid #004480 !important;
    box-shadow: unset;
    outline: unset;
  }

  .top-category-cta-link .btn-primary {
    padding: 7px 24px !important;
    max-width: 120px;
    border-radius: 30px;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    background-color: #006dcc;
    border: 1.75px solid #006dcc;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .top-category-cta-link .btn-primary:hover {
    background-color: #004480 !important;
    color: #fff !important;
    border: 1.75px solid #006dcc !important;
    box-shadow: unset;
    outline: unset;
  }

  .top-category-cta-link .btn-text-link {
    max-width: 90px;
  }