
    
.faq-boxes {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
}

.lottie-player { width: 140px; height: 140px; }

@media (min-width: 768px) {
  .faq-boxes {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-boxes > *:nth-child(even) .colored-box {
    background-color: var(--dark-beige-color);
  }
}

@media (max-width: 767px) {
  .faq-boxes > * .colored-box {
    background-color: transparent;
  }

  .faq-boxes > *:nth-child(4n+2) .colored-box,
  .faq-boxes > *:nth-child(4n+3) .colored-box {
    background-color: var(--dark-beige-color);
  }
  


}

.lottie-player {
  width: 131px;
  height: 136px;
}

.colored-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 42px 40px 42px;
  text-align: center;
}


.colored-box .icon-group { padding: 40px 10px; }
.colored-box .text-group { gap: 12px; }

