.three-cards-with-icons {
  padding: 60px 0;
  background-color: #fff;
}
.three-cards-with-icons .container {
  max-width: 1363px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.three-cards-with-icons .label-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(60, 90, 120, 0.2);
  color: #3C5A78;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 16px;
}
.three-cards-with-icons .label-button svg {
  width: 16px;
  height: 16px;
}
.three-cards-with-icons .title {
  text-align: center;
  margin-bottom: 48px;
}
.three-cards-with-icons .title h2 {
  margin: 0;
}
.three-cards-with-icons .cards-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 30px;
}
.three-cards-with-icons .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #E8EBEF;
  background: #FEFEFE;
}
.three-cards-with-icons .card .card-icon {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  flex-shrink: 0;
  margin-bottom: 28px;
}
.three-cards-with-icons .card .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.three-cards-with-icons .card .card-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.three-cards-with-icons .card .card-title h3 {
  margin: 0;
  margin-bottom: 12px;
  color: #030D16;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.three-cards-with-icons .card .card-description {
  color: #303A43;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.three-cards-with-icons .card .card-description p {
  color: #303A43;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin: 0 0 16px;
}
.three-cards-with-icons .card .card-description p:last-child {
  margin-bottom: 0;
}
.three-cards-with-icons .button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.three-cards-with-icons .button-wrapper .button {
  max-width: 100%;
  box-sizing: border-box;
}
@media (width <= 768px) {
  .three-cards-with-icons {
    padding: 40px 0;
  }
  .three-cards-with-icons .title {
    margin-bottom: 24px;
  }
  .three-cards-with-icons .cards-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .three-cards-with-icons .cards-wrapper .card {
    padding: 20px;
  }
}