/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
/* Mixin for button animation,
    use: @include button-animation(); for .btn-primary-dark--white-bg button
*/
/* Mixin for arrow link animation,
    use: @include arrow-link-animation(); for .btn-tertiary-dark--white-bg button
*/
/* Mixin for link animation,
    use: @include link-animation(); for .btn-link-dark--white-bg button
*/
/* Mixin for button background animation,
    use: @include hoverBgEffect($primary-slate, $scale: 1.4, $speed: 0.4s);
*/
/**
 * Mixin for adding gradient line to the bottom.
 * @param {$side-colors} color.
 */
/**
 * Mixin for adding text underline.
 */
/**
 * Mixin for cropping the text.
 * @param {$line-clamp} number of visible lines.
 */
.b-text__wrapper {
  display: grid;
  padding: 6.25rem 1.875rem;
  text-align: center;
  justify-items: center;
}
.b-text__wrapper--left {
  text-align: left;
  justify-items: left;
}
.b-text__wrapper--center {
  text-align: center;
  justify-items: center;
}
.b-text__wrapper--right {
  text-align: right;
  justify-items: right;
}
.b-text__title, .b-text__description {
  margin: 0;
}
@media (max-width: 991.98px) {
  .b-text__wrapper {
    padding: 2.5rem 2.375rem;
    min-height: auto;
  }
  .b-text__title {
    font-size: 2.25rem;
  }
  .b-text__description {
    font-size: 1rem;
  }
}

.health-text.b-text__wrapper {
  padding: 2rem;
}
@media (min-width: 1024px) {
  .health-text.b-text__wrapper {
    padding: 4rem;
  }
}
.health-text .b-text__title {
  font-size: 1.125rem;
  line-height: 1.167;
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .health-text .b-text__title {
    font-size: 1.5rem;
    padding: 3rem 4rem;
  }
}
