.cards__content {
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.cards__head {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 24px;
}
.cards__title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -0.01rem;
  text-align: center;
  color: #0D499C;
}
.cards__desc {
  max-width: 714px;
  width: 100%;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #898D90;
}
.cards__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  height: auto;
}
.cards__item {
  padding: 24px;
  background: rgba(137, 141, 144, 0.1019607843);
  border-radius: 12px;
  display: flex;
  flex-flow: column;
  gap: 24px;
}
.cards__image {
  height: 182px;
  width: 100%;
  border-radius: 8px;
}
.cards__texting {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.cards__item-title {
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: -0.01rem;
}
.cards__item-text {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  color: #898D90;
}

@media (max-width: 1024px) {
  .cards__head {
    gap: 16px;
  }
  .cards__title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #0D499C;
  }
  .cards__desc {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #898D90;
  }
  .cards__content {
    gap: 28px;
  }
  .cards__body {
    grid-template-columns: 1fr;
    gap: 28px;
    height: 100%;
  }
  .cards__item {
    padding: 20px;
    gap: 20px;
  }
  .cards__item-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #4D525A;
  }
  .cards__item-text {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #898D90;
  }
}/*# sourceMappingURL=style.css.map */