/* 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 */
.section.section--info-banner {
  padding: 2.5rem 0 1.25rem;
  background-color: #fff;
}
@media screen and (min-width:700px) {
  .section.section--info-banner {
    padding-bottom: 2.5rem;
  }
}
@media screen and (min-width:1199px) {
  .section.section--info-banner {
    padding-top: 6rem;
    padding-bottom: 6.25rem;
  }
}

.info-banner > .ccw > .container.container--lg {
  max-width: 90rem;
}
.info-banner__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 1rem;
  border-radius: 1rem;
  background-color: #516a40;
  color: #fff;
  text-align: center;
}
@media screen and (min-width:1199px) {
  .info-banner__panel {
    padding: 2.5rem;
    border-radius: 1.5rem;
  }
}
.info-banner__icon {
  width: 6.875rem;
  height: 6.875rem;
  margin: 0;
  flex-shrink: 0;
}
.info-banner__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.info-banner__body {
  width: 100%;
  max-width: 100%;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  color: #fff;
  font-family: "Radio Canada", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
}
@media screen and (min-width:700px) {
  .info-banner__body {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width:1199px) {
  .info-banner__body {
    font-size: 1.875rem;
  }
}
.info-banner__body p {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
}
.info-banner__cta.btn.btn--learn-more {
  min-height: 0;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
