@use "@/src/assets/scss/variables" as *;
@use "@/src/assets/scss/partial" as *;

.FactsWrapper {
  .FactsItem {
    background-color: $bgColor;
    p {
      font-size: $fs16;
      line-height: 24px;
      color: $grey475Color;
      @media (min-width: $lg) {
        font-size: $fs18;
        line-height: 28px;
      }
      @media (min-width: $xl) {
        font-size: $fs22;
        line-height: 32px;
      }
      @media (min-width: $xxl) {
        font-size: $fs24;
        line-height: 34px;
      }
    }
    .h2 {
      color: $blackColor;
    }
  }
}
