/* 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 */
:root {
  --u-size-tiny: 0.25rem;
  --u-size-2x-tiny: 0.5rem;
  --u-size-3x-tiny: 0.75rem;
  --u-size-small: 1rem;
  --u-size-medium: 1.5rem;
  --u-size-2x-medium: 2rem;
  --u-size-large: 3rem;
  --u-size-2x-large: 4rem;
  --u-size-3x-large: 6rem;
  --u-size-huge: 8rem;
  --u-size-2x-huge: 12rem;
  --u-size-3x-huge: 16rem;
}

/* ===================================
   Brand Palette
=================================== */
:root {
  --black: #000;
  --white: #fff;
  --primary-blue-dark: #024482;
  --primary-blue-light: #C8EBFF;
  --blue-light-secondary: #C0DFEC;
  --primary-blue: #025FD8;
  --primary-cream: #FFFCEE;
  --pink: #FFC7F5;
  --yellow: #FBE546;
  --orange: #FF9F32;
  --red: #FF5F2D;
  --green: #8CE202;
  --base-light: #FFFCEE;
  --base-lighter: #FFFCEE;
}

.ss.page-header {
  min-height: 10.5625rem;
  background-color: var(--primary-blue-light);
  padding: var(--u-size-medium) 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width:1199px) {
  .ss.page-header {
    min-height: 19.8125rem;
  }
}
.ss.page-header h1 {
  margin-bottom: 0;
}

.ss.page-content {
  padding: var(--u-size-large) var(--u-size-small);
}
@media screen and (min-width:1199px) {
  .ss.page-content {
    padding: var(--u-size-3x-large) 0;
    max-width: 60rem;
    margin: 0 auto;
  }
}

.ss.generic-content {
  color: var(--primary-blue-dark);
}
.ss.generic-content a {
  font-weight: 700;
  line-height: 144%;
}
.ss.generic-content ul, .ss.generic-content ol {
  padding-left: 1.75rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width:1199px) {
  .ss.generic-content ul, .ss.generic-content ol {
    padding-left: var(--u-size-medium);
  }
}
.ss.generic-content ul li, .ss.generic-content ol li {
  list-style-position: outside;
}
.ss.generic-content h1, .ss.generic-content h2, .ss.generic-content h3, .ss.generic-content h4, .ss.generic-content h5, .ss.generic-content h6 {
  line-height: 128%;
  letter-spacing: normal;
}
.ss.generic-content h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.ss.generic-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  font-family: var(--primary-font);
  margin-bottom: 1.25rem;
}
.ss.generic-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  font-family: var(--primary-font);
}
.ss.generic-content p {
  margin-bottom: 2.5rem;
}
.ss.generic-content p:has(+ p, + ul, + ol) {
  margin-bottom: var(--u-size-medium);
}
.ss.generic-content p:last-of-type {
  margin-bottom: 0;
}

/*# sourceMappingURL=content-template.css.map */
