.tax-solutions {
  display: flex;
  gap: 36px;
  flex-direction: column;
}

.tax-solutions .showInMobile {
  display: none;
}
.tax-solutions .header {
  background-color: white;
  padding: 16px;
}

.tax-solutions .filter-bubbles {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tax-solutions .filter-bubbles .bubble {
  cursor: pointer;
  padding: 4px 12px;
  border: 1px solid #3c738a;
  color: #3c738a;
  font-size: 20px;
  line-height: 24px;
  border-radius: 100px;
  min-width: 75px;
  white-space: nowrap;
  text-align: center;
}

.tax-solutions .filter-bubbles .bubble.wide {
  min-width: 230px;
}

.tax-solutions .filter-bubbles .bubble.active {
  color: white;
  background-color: #3c738a;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.tax-solutions .filter-bubbles .bubble.active::before {
  content: url("/content/dam/im/assets/web/images/icon/white-tick.svg");
}

.tax-solutions .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tax-solutions .cards .card {
  width: 45%;
  background-color: white;
  border: 1px solid #dddd;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tax-solutions .cards .card.hide {
  display: none;
}

.tax-solutions .cards .card .heading {
  font-size: 38px;
  font-weight: 500;
}

.tax-solutions .cards .card .categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tax-solutions .cards .card .categories .category {
  text-transform: uppercase;
  background-color: #dde6ee;
  border: 1px solid #dde6ee;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 16px;
}

.tax-solutions .cards .card .description {
  font-size: 20px;
}

.tax-solutions .cards .card .card-upper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 75%;
}
.tax-solutions .cards .card .footer {
  height: 25%;
  display: flex;
  align-items: flex-end;
  font-size: 20px;
}

.tax-solutions .cards .card a.external-link {
  display: flex;
  gap: 8px;
}

.tax-solutions .cards .card a.external-link::after {
  display: inline-block;
  content: url("/content/dam/im/assets/web/images/icon/blue-external-link.svg");
  width: 16px;
  height: 16px;
}

@media (max-width: 999px) {
  .tax-solutions .header {
    display: none;
  }

  .tax-solutions .showInMobile {
    display: flex;
    gap: 16px;
    flex-direction: column;
  }

  .tax-solutions .dropdown-content {
    display: none;
  }

  .tax-solutions .dropdown-content.show {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .tax-solutions .header-dropdown-area .label {
    font-size: 16px;
    font-weight: 500;
  }

  .tax-solutions .header-dropdown-area .header-dropdown {
    position: relative;
    width: 100%;
  }
  .tax-solutions .header-dropdown-area .header-dropdown input {
    pointer-events: none;
  }
  .tax-solutions .header-dropdown-area .header-dropdown .dropdown-content,
  .tax-solutions .header-dropdown-area .header-dropdown .dropdown-button {
    width: 100%;
    text-align: left;
  }

  .tax-solutions .dropdown-content.show .checkbox-element{
    display: flex;
    gap: 4px;
  }

  .tax-solutions .cards {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .tax-solutions .cards .card {
    width: initial;
    padding: 24px 12px;
    height: initial;
  }

  .tax-solutions .cards .card.hide {
    display: none;
  }

  .tax-solutions .cards .card .heading {
    font-size: 24px;
  }

  .tax-solutions .cards .card .categories .category {
    padding: 4px 8px;
    font-size: 14px;
  }

  .tax-solutions .cards .card .description {
    font-size: 16px;
  }

  .tax-solutions .cards .card .card-upper {
    gap: 16px;
  }
  .tax-solutions .cards .card .footer {
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width:1540px){
    .tax-solutions .cards .card {
        width: initial;
      }
}
