.cards_section {
  padding: 80px 0;
  box-sizing: border-box;
}
.cards_section.beige_bg {
  background-color: #f2ece2;
}
.cards_section h2 {
  margin-bottom: 40px;
}
.cards_section h2.has_desc {
  margin-bottom: 16px;
}
.cards_section .section_desc {
  margin-bottom: 40px;
}
.cards_section.beige_cards .cards_outer .card_outer {
  background-color: #f2ece2;
  border-radius: 16px;
}
.cards_section.beige_cards .cards_outer .card_outer .card_content {
  background-color: transparent;
  padding: 32px;
}
.cards_section.beige_cards .cards_outer .card_outer .card_content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 38px;
  margin-top: 80px;
  margin-bottom: 8px;
}
.cards_section.two_top_items .cards_outer {
  gap: 24px;
}
.cards_section.two_top_items .cards_outer .card_outer:first-child, .cards_section.two_top_items .cards_outer .card_outer:nth-child(2) {
  flex: 0 0 calc(50% - 12px);
}
.cards_section .cards_outer {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.cards_section .cards_outer .card_outer {
  overflow: hidden;
  flex: 0 0 calc(32.81% - 20px);
}
.cards_section .cards_outer .card_outer .card_content {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background-color: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.cards_section .cards_outer .card_outer .card_content h3 {
  font-size: 28px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 24px;
}
.cards_section .cards_outer .card_outer .card_content .desc {
  font-size: 16px;
  line-height: 24px;
}
.cards_section .cards_outer .card_outer .card_content ul {
  padding-left: 20px;
  margin: 0;
}
.cards_section .cards_outer .card_outer .card_content ul li {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.cards_section .cards_outer .card_outer .card_content ul li:last-child {
  margin-bottom: 0;
}
.cards_section .cards_outer .card_outer .card_image img {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  max-width: 100%;
}