/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
/* Font */
/* Images */
.section.section--text-columns {
  background-color: var(--white);
  padding: 3.75rem 0;
}
@media screen and (min-width:991px) {
  .section.section--text-columns {
    background-color: transparent;
    padding: 0;
  }
}
.section.section--text-columns .wrapper {
  padding-block: 3.75rem;
}
@media screen and (min-width:991px) {
  .section.section--text-columns .wrapper {
    padding: 7rem 5rem;
    background-color: var(--white);
    border-radius: 1.25rem;
  }
}
.section.section--text-columns header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (min-width:991px) {
  .section.section--text-columns header {
    margin-bottom: 5rem;
  }
}
.section.section--text-columns header h2 {
  margin-bottom: 2rem;
}
@media screen and (min-width:768px) {
  .section.section--text-columns article {
    column-count: 2;
    gap: 2.5rem;
  }
}
@media screen and (min-width:1199px) {
  .section.section--text-columns article {
    gap: 3.5rem;
  }
}
.section.section--text-columns article:not(:last-child) {
  margin-bottom: 2.5rem;
}
.section.section--text-columns article ul {
  margin: 0;
  padding-left: 0;
}
.section.section--text-columns article li {
  list-style: none;
  position: relative;
  padding-left: 2.375rem;
  break-inside: avoid-column;
}
.section.section--text-columns article li:not(:last-child) {
  margin-bottom: 1rem;
}
.section.section--text-columns article li::before {
  position: absolute;
  top: 0.5625rem;
  left: 0;
  content: "";
  background-color: var(--theme-color);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}

/*# sourceMappingURL=text-columns.css.map */
