.tax__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  background-color: #fafafa;
  position: relative;
  width: 100%;
  min-height: 50vh;
  /* margin-bottom: 200px; */
}
.tax__hero-badge {
  position: absolute;
  bottom: -50px;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: auto;
}
.tax__content--wrap {
  /* max-width: 1100px; */
  margin: auto;
  padding: 4rem 0;
}
.tax__separator {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.tax__separator h2 {
  font-family: Brandon Grotesque;
  font-size: 56px;
  letter-spacing: -1.06px;
  color: #e9aa00;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
}
.tax__separator h2 small {
  font-family: Briston Regular;
  font-size: 33px;
  letter-spacing: 0.3px;
  color: #dfdfd7;
  font-weight: 400;
  text-transform: none;
}

/*  */
.tax__separator2 {
  /* min-height: 100px; */
  /* background-size: cover; */
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 15px 30px;
  border-radius: 30px;
}
.tax__separator2 h2 {
  font-family: Brandon Grotesque;
  font-size: 28px;
  letter-spacing: -1.06px;
  color: #e9aa00;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .tax__separator2 h2 {
    font-size: 40px;
  }
}
/*  */

.tax__separator--menu {
  width: 140px;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.tax__separator--wave {
  width: 90px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products-grid li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.product__image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #fff; /*s #ede3d7; */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.product__body h3 {
  font-family: "Brandon Grotesque";
  font-weight: 700;
  font-size: 24px;
  color: #153a42;
  text-align: left;
}

/* @media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
} */
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tax__separator h2 {
    font-size: 40px;
  }
  .tax__separator h2 small {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product__body small {
  font-family: Briston Regular;
  font-size: 16px;
  color: #666666;
  display: block;
  font-weight: 400;
}
.product__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 
 */

.tax__content--wrap {
  display: none;
}

.tax__content--wrap.is-open {
  display: block;
}

.tax__separator2 {
  cursor: pointer;
}

.tax-toggle-icon {
  transition: transform 0.25s ease;
}

.tax__separator2.is-open .tax-toggle-icon {
  transform: rotate(180deg);
}
