.pxblock--card-grid {
  padding: 30px 0;
}

.home-easy-to-use {
  padding-bottom: 160px;
}

.pxblock--card-grid .block-header {
  text-align: center;
  margin-bottom: 40px;
}

.pxblock--card-grid .block-header .tu-secondary-heading {
  margin-bottom: 6px;
}

.pxblock--card-grid .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.card-grid__header {
  max-width: 560px;
  margin: 0 auto;
}

.pxblock--card-grid .card {
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 30px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  max-width: 340px;
  box-sizing: border-box;

  box-shadow: 0px 3px 6px #00000029;

  border-radius: 30px;
}

@media (max-width: 900px) {
  .pxblock--card-grid .card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .pxblock--card-grid .cards {
    gap: 20px;
  }
  .pxblock--card-grid .card {
    padding: 10px 20px;
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: row;
    gap: 6px;
    text-align: left;
  }

  .pxblock--card-grid .card__body {
    align-items: flex-start !important;
  }
  .pxblock--card-grid .card__description {
    margin: 0 !important;
  }

  .pxblock--card-grid .card__heading {
    text-align: left !important;
  }
  .pxblock--card-grid .card__image {
    margin: 0 !important;
    height: auto !important;
  }

  .pxblock--card-grid .card .btn {
    display: none;
  }
}

/* Pink border variant */
.pxblock--card-grid.cards--bordered .card {
  border: 1px solid #e21c93;
}

.pxblock--card-grid .card__image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.pxblock--card-grid .card__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.pxblock--card-grid .card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
}

.pxblock--card-grid .card__heading {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 24px;
  font-family: acumin-pro-extra-condensed, sans-serif;
}

.pxblock--card-grid .card__description {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 20px;
}

.pxblock--card-grid .card__btn {
  margin-top: auto;

  margin-bottom: 0;
}

.card__mobile-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: none;
}

@media (max-width: 768px) {
  .home-easy-to-use {
    padding-bottom: 60px;
  }
  .card__mobile-btn {
    display: block;
  }
}
