@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.cards {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 96px 0 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cards.backgroundwhite {
  background-color: #ffffff;
}
.cards.backgroundbeige {
  background-color: #fffef3;
}
.cards.backgrounddarkerbeige {
  background-color: #f5efe5;
}
.cards.backgrounddark {
  background-color: #212121;
}
.cards.backgroundblush {
  background-color: #f6f1e9;
}
.cards.backgroundgrey {
  background-color: #fffdfa;
}
.cards.backgroundblue {
  background-color: #deedff;
}
.cards.backgrounddark * {
  color: #fffdfa;
}
.cards .wrapper {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 1rem;
  padding: 0 16px;
}
.cards .heading {
  grid-column-start: 1;
  grid-column-end: span 4;
  color: #212121;
  text-align: center;
}
{#.cards .heading * {
  font-weight: 400;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
  font-size: 1.625rem;
}#}
@media (min-width: 80rem) {
	{#  .cards .heading * {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
  }#}
}
.cards .heading * b,
.cards .heading * strong {
  font-weight: 400;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
  font-size: 1.625rem;
}
@media (min-width: 80rem) {
  .cards .heading * b,
  .cards .heading * strong {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
  }
}
.cards .buttons {
  grid-column-start: 1;
  grid-column-end: span 4;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
.cards .button_secondary {
  display: flex;
  padding: 20px 28px;
  justify-content: center;
  align-items: center;
  border-radius: 106px;
  background-color: transparent;
  height: fit-content;
  cursor: pointer;
  transition: all 0.3s ease !important;
  border: 1px solid #212121;
  color: #212121;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 1.2px;
	text-decoration:none;
}
@media (min-width: 80rem) {
  .cards .button_secondary {
    font-size: 0.75rem;
    letter-spacing: 1.2px;
  }
}
.cards .button_secondary:hover {
  color: #fffdfa;
  background-color: #212121;
}
@media (min-width: 48rem) {
  .cards .button_secondary {
    width: fit-content;
  }
}
@media (min-width: 80rem) {
  .cards .button_secondary {
    padding: 24px 28px;
  }
}
.cards .container {
  grid-column-start: 1;
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 64px;
  margin-bottom: 120px;
}
.cards .card {
  border-radius: 32px;
  border: 1px solid #ebeade;
  background: #ffffff;
	{#  height: 320px;#}
  width: 100%;
  color: #2a2a2a;
  transition: all 0.3s ease;
}
.cards .card.card-blue .image {
  background-color: #deedff;
}
.cards .card.card-orange .image {
  background-color: #fff1d4;
}
.cards .card.card-green .image {
  background-color: #d9f2df;
}
.cards .image {
  position: relative;
  overflow: hidden;
  height: 10.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f1e9;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.cards .image .imagecontainer {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 40px);
  max-width: 360px;
  height: 0;
  padding-bottom: 34%;
  transform: translateX(-50%);
}
.cards .image .imagecontainer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cards .content {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 48px 32px;
  gap: 32px;
}
.cards .kicker {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.625rem;
}
@media (min-width: 80rem) {
  .cards .kicker {
    font-size: 0.75rem;
  }
}
.cards .kicker.kicker-blue {
  color: #4b67f2;
}
.cards .kicker.kicker-orange {
  color: #fea539;
}
.cards .kicker.kicker-green {
  color: #57b57d;
}
.cards .title {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
}
@media (min-width: 80rem) {
  .cards .title {
    font-size: 1.25rem;
  }
}
@media (min-width: 48rem) {
  .cards .wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0 2rem;
    padding: 0 4rem;
  }
  .cards .heading {
    grid-column-start: 2;
    grid-column-end: span 6;
  }
  .cards .buttons {
    grid-column-start: 2;
    grid-column-end: span 6;
  }
  .cards .container {
    grid-column-start: 3;
    grid-column-end: span 4;
  }
}
@media (min-width: 80rem) {
  .cards {
    padding: 120px 0 32px 0;
  }
  .cards .wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0 2rem;
    max-width: 1440px;
    padding: 0 4rem;
  }
  .cards .heading {
    grid-column-start: 4;
    grid-column-end: span 6;
  }
  .cards .buttons {
    grid-column-start: 4;
    grid-column-end: span 6;
  }
  .cards .container {
    grid-column-start: 1;
    grid-column-end: span 12;
    flex-direction: row;
  }
  .cards .card {
    width: 416px;
  }
}
.heading h6, h2,.description h3  {
    margin-bottom: 24px;
}

.imagecontainer {
    margin-top: 24px;
}
.buttons .button_secondary {
    display: none;
}
