.cards-block .d-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.cards-block.style-2 .card-box .inner-wrapper {
  flex-direction: row;
  align-items: center;
  background-color: var(--bs-secondary);
  border-radius: 45px;
  justify-content: center;
  border: 1px solid #bfddff;
}
.cards-block.style-2 .card-box .inner-wrapper * {
  margin-bottom: 0;
  font-size: 1rem;
}
.cards-block.style-2 .card-box .inner-wrapper figure {
  margin-right: 1rem;
}
.cards-block.style-1 .card-box .inner-wrapper {
  border: 2px solid var(--bs-light);
  padding: 30px !important;
  border-radius: 10px;
}

@media only screen and (min-width: 768px) {
  .cards-block.cols-2 .d-grid, .cards-block.cols-3 .d-grid, .cards-block.cols-4 .d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1025px) {
  .cards-block .d-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
  .cards-block.cols-3 .d-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-block.cols-4 .d-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards-block .card-box * {
    transition: all 0.3s ease-in-out;
  }
}