.card-benefit {
  background: transparent;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  height: auto;

  border-radius: 1px;
  border: none;
  border-bottom: 1px solid #e6e6e6;
}

.card-benefit.white {
  height: auto;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;

  border-radius: 16px;
  border: 1px solid rgba(0, 30, 39, 0.2);
  background: #fff;
}

.card-benefit.white .description {
  color: #001e27;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.card-benefit.features {
  width: 100%;
  height: auto;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;

  border-radius: 16px;
  border: 1px solid #d9fbfd;
  background: rgba(217, 251, 253, 0.4);
}
.card-benefit.features .description {
  text-align: center;
}

.card-benefit.features .badge {
  border-radius: 1000000px;
  border: 1px solid #00e2f4;
  background: rgba(0, 226, 244, 0.2);
  padding: 10px 32px;

  text-transform: uppercase;
  color: #001e27;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.14px;
}

.card-benefit.features small {
  color: #000;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.08px;
}

.card-benefit.light {
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}

.card-benefit.light h3 {
  color: #505050;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.2px;
}

.border-radius-bl {
  border-radius: 0 0 0 64px;
}

.border-radius-tr {
  border-radius: 0 64px 0 0;
}

.bg-gradient-horizontal {
  background: linear-gradient(109deg, #024d63 20.74%, #001e27 74.62%);
}

@media (min-width: 992px) {
  .border-radius-bl {
    border-radius: 0 0 0 400px;
  }

  .border-radius-tr {
    border-radius: 0 400px 0 0;
  }
}
