:root {
  --clr-brand: #0e2b63;
  --clr-brand-light: #004f9f;
  --clr-accent: #00b1eb;
}

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/** Import theme styles */
#sage *,
#sage *::before,
#sage *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#sage * {
  margin: 0;
}
#sage html,
#sage body {
  height: 100%;
}
#sage body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
#sage img,
#sage picture,
#sage video,
#sage canvas,
#sage svg {
  display: block;
  max-width: 100%;
}
#sage input,
#sage button,
#sage textarea,
#sage select {
  font: inherit;
}
#sage p,
#sage h1,
#sage h2,
#sage h3,
#sage h4,
#sage h5,
#sage h6 {
  overflow-wrap: break-word;
}

@font-face {
  font-family: "Aeroport";
  src: url(/wp-content/themes/Reynolds/dist/fonts/Aeroport.woff2) format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Aeroport";
  src: url(/wp-content/themes/Reynolds/dist/fonts/Aeroport-Medium.woff2) format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Aeroport";
  src: url(/wp-content/themes/Reynolds/dist/fonts/Aeroport-Bold.woff2) format("woff2");
  font-weight: 700;
}
/* stylelint-disable */
:is(html.no-scroll, html.no-scroll body) {
  overflow: hidden;
  height: 100%;
}

#sage {
  scroll-behavior: smooth;
  scroll-padding-top: 172px;
}
#sage.has-anchor {
  scroll-padding-top: 228px;
}
#sage body {
  font-family: "Aeroport", sans-serif;
}
#sage .container {
  width: min(1340px, 90%);
  margin: 0 auto;
}
#sage h1,
#sage .headingone {
  font-size: 2.3125rem;
  font-size: clamp(2.3125rem, 1.9700413223rem + 1.4049586777vw, 3.375rem);
  line-height: 1.08823529;
}
#sage h1 sup,
#sage .headingone sup {
  font-size: 0.3em;
  position: relative;
  bottom: 13px;
}
#sage [bg] {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -10;
  -o-object-fit: cover;
     object-fit: cover;
}
#sage [overlay] {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -5;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
}
#sage iframe[bg] {
  z-index: -2;
}
#sage .arrow-white {
  height: 100px;
  position: position;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: white;
  text-decoration: none;
}
#sage .arrow-white svg {
  height: 100px;
  width: 100px;
  z-index: 5;
}
#sage .arrow-white svg:last-child {
  display: none;
}
#sage .arrow-white:hover svg:first-child {
  display: none;
}
#sage .arrow-white:hover svg:last-child {
  display: block;
}
#sage .search-menu {
  background-color: white;
  padding: 4rem 0;
  position: relative;
  z-index: 99999999;
  display: none;
}
#sage .search-menu.open {
  display: block;
}
#sage .search-menu .container {
  display: grid;
  place-items: center;
}
#sage .search-menu .container > div {
  width: min(100%, 960px);
  margin: 0 auto;
}
#sage .search-menu .container > div form {
  display: grid;
  grid-template-columns: 2fr minmax(80px, 1fr);
  gap: 1rem;
}
#sage .search-menu .container > div form input:is([type=search], [type=submit]) {
  border: none;
  border-radius: 30px;
  padding: 0 24px;
  width: 100%;
  height: 60px;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  font-weight: 400;
  font-size: 24px;
  line-height: 60px;
  color: #172962;
  background-color: #fff;
}
#sage .search-menu .container > div form input[type=submit] {
  background-color: #172962;
  color: #fff;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: none;
  place-items: center;
  z-index: 99999;
}
.video-modal::after {
  content: "X";
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  color: white;
}
.video-modal.open {
  display: grid;
}
.video-modal iframe {
  width: 80%;
  height: 80%;
  display: block;
}

/* stylelint-disable */
#sage header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
#sage header.main-header .banner {
  padding: 0.625rem 0;
  background-color: var(--clr-brand);
  color: white;
  text-align: right;
  font-weight: 500;
}
#sage header.main-header .banner span {
  color: var(--clr-accent);
}
#sage header.main-header .banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}
#sage header.main-header .banner .container .top-menu ul {
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-right: 1rem;
}
#sage header.main-header .banner .container .top-menu ul a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
#sage header.main-header .banner .container .top-menu ul a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 105%;
  border-bottom: 2px solid white;
  -webkit-transition: 200ms ease;
  -o-transition: 200ms ease;
  transition: 200ms ease;
}
#sage header.main-header .banner .container .top-menu ul a:hover::after {
  width: 100%;
}
#sage header.main-header .inner {
  padding: 2.5rem 0;
  background-color: white;
}
#sage header.main-header .inner .anchor-menu {
  position: absolute;
  display: grid;
  place-items: center;
  bottom: -60px;
  left: 0;
  width: 100%;
  min-height: 60px;
  background-color: rgba(14, 43, 99, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#sage header.main-header .inner .anchor-menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#sage header.main-header .inner .anchor-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
#sage header.main-header .inner .anchor-menu a + a {
  padding-left: 0.5rem;
  margin-left: 0.5rem;
  border-left: solid 2px white;
}
#sage header.main-header .inner .search-container {
  cursor: pointer;
}
#sage header.main-header .inner .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sage header.main-header .inner .flex .nav {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  list-style-type: none;
}
#sage header.main-header .inner .flex .nav a {
  color: var(--clr-brand);
  text-decoration: none;
  font-weight: 700;
}
@media (min-width: 1151px) {
  #sage header.main-header .menu-image a {
    pointer-events: none;
  }
  #sage header.main-header .menu-item-has-children .sub-menu {
    display: none;
    grid-template-columns: 312px minmax(0, 400px);
    gap: 35px;
    position: absolute;
    left: 0;
    top: 10.4rem;
    width: 100%;
    min-height: 400px;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 3rem 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #sage header.main-header .menu-item-has-children .sub-menu .menu-image {
    grid-row: 1/-1;
    list-style-type: none;
  }
  #sage header.main-header .menu-item-has-children .sub-menu li:not(.menu-image) {
    list-style-type: none;
    border-bottom: 2px solid transparent;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  #sage header.main-header .menu-item-has-children .sub-menu li:not(.menu-image) a {
    font-size: 20px;
    font-weight: 300 !important;
  }
  #sage header.main-header .menu-item-has-children .sub-menu li:not(.menu-image) + li {
    margin-top: 1.5rem;
  }
  #sage header.main-header .menu-item-has-children .sub-menu li:not(.menu-image):hover {
    border-color: #fb0;
  }
  #sage header.main-header .menu-item-has-children .sub-menu > li:not(.menu-image) {
    grid-column: 2;
  }
  #sage header.main-header .menu-item-has-children.active .sub-menu {
    display: grid;
  }
}
@media (max-width: 1150px) {
  #sage header.main-header {
    position: fixed;
    z-index: 99999;
  }
  #sage header.main-header .menu-image {
    display: none;
  }
  #sage header.main-header .nav-primary {
    display: none;
  }
  #sage header.main-header .search-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  #sage header.main-header .search-container .mobile-toggle {
    display: block !important;
  }
  #sage header.main-header .search-container .mobile-toggle svg {
    height: 25px;
    width: 25px;
    cursor: pointer;
  }
  #sage header.main-header .search-container .mobile-toggle svg.mobile-togle-close {
    background-color: white;
    padding: 0.2rem;
  }
  #sage header.main-header.mobile .inner {
    background-color: #707070;
  }
  #sage header.main-header.mobile .mobile-menu {
    display: block !important;
    background: white;
    width: 100%;
    height: 100vh;
  }
  #sage header.main-header.mobile .mobile-menu .menu-primary-navigation-container {
    padding: 1rem;
    width: 100%;
    margin: 0 auto;
    background: #efefef;
    height: 100%;
  }
  #sage header.main-header.mobile .mobile-menu ul {
    padding: 0;
  }
  #sage header.main-header.mobile .mobile-menu li {
    list-style-type: none;
    color: black;
  }
  #sage header.main-header.mobile .mobile-menu li a {
    color: black;
    text-decoration: none;
  }
  #sage header.main-header.mobile .mobile-menu .nav > li {
    border-bottom: 1px solid #d0d0d0;
  }
  #sage header.main-header.mobile .mobile-menu .nav > li a {
    padding: 1rem 0;
    display: inline-block;
  }
  #sage header.main-header.mobile .mobile-menu .nav > li:last-of-type {
    border: none;
  }
  #sage header.main-header.mobile .mobile-menu .nav .menu-item-has-children > a {
    position: relative;
    display: block;
    width: 35%;
  }
  #sage header.main-header.mobile .mobile-menu .nav .menu-item-has-children > a::after {
    content: "+";
    position: absolute;
    right: -160%;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #4faee6;
    background-color: white;
    padding: 0.1em 0.5em;
    font-size: 1.4em;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  #sage header.main-header.mobile .mobile-menu .nav .menu-item-has-children.open > a::after {
    content: "-";
    min-width: 35px;
  }
  #sage header.main-header.mobile .mobile-menu .nav .sub-menu {
    display: none;
    background-color: white;
    padding-left: 0.5rem;
  }
}

/* stylelint-disable */
#sage footer .top-footer {
  background-color: white;
}
#sage footer .top-footer .container {
  width: min(1160px, 90%);
}
#sage footer .top-footer .grid-container {
  padding: 4.375rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}
@media (min-width: 600px) {
  #sage footer .top-footer .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #sage footer .top-footer .grid-container {
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
#sage footer .top-footer .grid-container .top-footer-columns * {
  line-height: 1;
}
#sage footer .top-footer .grid-container .top-footer-columns ul {
  list-style: none;
  padding: 0;
}
#sage footer .top-footer .grid-container .top-footer-columns a {
  color: var(--clr-brand);
  text-decoration: none;
  font-size: 0.875rem;
}
#sage footer .top-footer .grid-container .top-footer-columns .top-footer-item-heading h4 {
  margin-bottom: clamp(1rem, 0.4428571429rem + 2.2857142857vw, 2.5rem);
  font-size: 1rem;
  font-weight: 700;
}
#sage footer .top-footer .grid-container .top-footer-columns .top-footer-item-heading h4 a {
  font-size: 1rem;
}
#sage footer .top-footer .grid-container .top-footer-columns .top-footer-items * {
  font-size: 0.875rem;
}
#sage footer .top-footer .grid-container .top-footer-columns.socials .top-footer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sage footer .top-footer .grid-container .top-footer-columns.quick-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#sage footer .top-footer .grid-container .top-footer-columns.contact .top-footer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#sage footer .top-footer .grid-container .top-footer-columns.contact .top-footer-items a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#sage footer .bat-container {
  background-color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5625rem;
  padding-bottom: 3.75rem;
}
#sage footer .bat-container a {
  color: var(--clr-brand-light);
  font-size: 0.875rem;
  font-weight: 700;
}
#sage footer .bottom-footer {
  background-color: var(--clr-brand);
  color: white;
  padding: 1rem 0;
}
#sage footer .bottom-footer ul {
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 0.4428571429rem + 2.2857142857vw, 2.5rem);
}
@media (min-width: 768px) {
  #sage footer .bottom-footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#sage footer .bottom-footer ul a {
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
}

body#tinymce {
  margin: 12px !important;
}

/* stylelint-disable */
#sage .resources-container {
  position: relative;
  isolation: isolate;
}
#sage .resources-container .rainbow-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9px;
}
#sage .resources-container .rainbow-border img {
  -o-object-fit: cover;
     object-fit: cover;
}
#sage .cta-container {
  margin-top: 3.5625rem;
  padding-top: 1.5625rem;
  border-top: 2px solid var(--clr-brand);
}
#sage .cta {
  margin-top: 3.125rem;
}
#sage .resources {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
  #sage .resources {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}
#sage .resources h2 {
  margin: 0 auto 2rem auto;
  font-size: 1.625rem;
}
#sage .resources h3 {
  font-size: 1.0625rem;
}
#sage .resources a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}
#sage .resources .resource-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}
#sage .resources .resource-meta * {
  font-size: 0.875rem;
}
#sage .resources .news-container {
  background: var(--clr-brand);
  color: white;
  padding: clamp(3.125rem, 0.5714285714rem + 10.4761904762vw, 10rem) 0;
}
#sage .resources .news-container .inner {
  width: min(334px, 90%);
  margin: 0 auto;
}
#sage .resources .news-container .news-resource:not(:last-child) {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid white;
}
#sage .resources .posts-container {
  padding: clamp(3.125rem, 0.5714285714rem + 10.4761904762vw, 10rem) 0;
}
#sage .resources .posts-container a {
  color: var(--clr-brand);
}
#sage .resources .posts-container .inner {
  width: min(705px, 90%);
  margin: 0 auto;
}
#sage .resources .posts-container .inner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: clamp(1rem, 0.4428571429rem + 2.2857142857vw, 2.5rem);
}
#sage .resources .posts-container .inner .posts-resources {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.1875rem;
}
@media (min-width: 768px) {
  #sage .resources .posts-container .inner .posts-resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#sage .resources .posts-container .inner .posts-resources .resource-meta * {
  color: #777589 !important;
}
#sage .resources .posts-container .inner .posts-resources .resource-excerpt {
  margin-top: 0.625rem;
}
#sage .resources .posts-container .inner .posts-resources .resource-excerpt a {
  font-weight: 400;
}

/* stylelint-disable */
#sage .single article {
  margin-top: 169px;
}
#sage .single header.post-header {
  position: relative;
  min-height: 400px;
  isolation: isolate;
  color: white;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 2rem;
  padding-left: 1rem;
  background: rgba(0, 0, 0, 0.3);
}
#sage .single header.post-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  mix-blend-mode: multiply;
}
#sage .single header.post-header h1 {
  padding: 0 2rem;
}
#sage .single .entry-content {
  padding: 2rem 0;
}
#sage .single .entry-content > * + * {
  margin-top: 1em;
}

/* stylelint-disable */
#sage .search .wrap {
  margin-top: 169px;
  padding: 4rem 0;
}
#sage .search .wrap .content {
  margin: 0 auto;
  width: min(900px, 100%);
}
#sage .search .wrap .content .search-form-wrapper {
  margin-bottom: 4rem;
}
#sage .search .wrap .content .search-form-wrapper form {
  display: grid;
  grid-template-columns: 2fr minmax(80px, 1fr);
  gap: 2rem;
}
#sage .search .wrap .content .search-form-wrapper form input:is([type=search], [type=submit]) {
  border: none;
  border-radius: 30px;
  padding: 0 24px;
  width: 100%;
  height: 60px;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  font-weight: 400;
  font-size: 24px;
  line-height: 60px;
  color: #172962;
  background-color: #fff;
}
#sage .search .wrap .content .search-form-wrapper form input[type=submit] {
  background-color: #172962;
  color: #fff;
}
#sage .search .wrap .content article {
  padding: 2rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
}
#sage .search .wrap .content article + article {
  margin-top: 1rem;
}

/* stylelint-disable */
#sage .video-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}
#sage .video-hero .inner {
  position: absolute;
  bottom: 3.75rem;
  color: white;
}
#sage .video-hero .inner p {
  font-size: 1.375rem;
  width: min(552px, 100%);
  font-weight: 700;
  margin-top: 0.5rem;
}
#sage .video-hero .rainbow-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

/* stylelint-disable */
#sage .video-panel {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: flex-end;
  color: var(--text-color, white);
}
#sage .video-panel[data-video] {
  cursor: pointer;
}
#sage .video-panel[data-video] .play-icon {
  margin: 0 auto;
}
#sage .video-panel .container {
  margin-bottom: 100px;
}
#sage .video-panel .container h2 {
  margin-bottom: 0.3em;
}
#sage .video-panel .container p {
  width: min(552px, 100%);
  font-size: 1rem;
  font-size: clamp(1rem, 0.8607142857rem + 0.5714285714vw, 1.375rem);
}

/* stylelint-disable */
#sage .image-panel {
  background-color: #ddf3fc;
}
#sage .image-panel img {
  mix-blend-mode: multiply;
}

/* stylelint-disable */
#sage .columns {
  background-color: #ddf3fc;
  padding: 100px 0;
}
#sage .columns .grid {
  display: grid;
  gap: 2rem 4rem;
  grid-template-columns: repeat(auto-fit, minmax(0, 289px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#sage .columns .grid .column-item {
  display: grid;
  place-items: center;
  text-align: center;
}
#sage .columns .grid .column-item h3 {
  color: #d6bf5f;
}
#sage .columns .grid .column-item p {
  opacity: 0.5;
}

/* stylelint-disable */
#sage .media-section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#sage .media-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4rem;
}
#sage .media-section .container .filter-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#sage .media-section .container .filter-side p {
  cursor: pointer;
  color: grey;
  -webkit-transition: 300ms ease;
  -o-transition: 300ms ease;
  transition: 300ms ease;
}
#sage .media-section .container .filter-side p:hover, #sage .media-section .container .filter-side p.active {
  color: #112b62;
}
@media (min-width: 768px) {
  #sage .media-section .container {
    grid-template-columns: auto minmax(0, 1fr);
  }
  #sage .media-section .container .filter-side {
    display: grid;
    -ms-flex-line-pack: baseline;
        align-content: baseline;
  }
}
#sage .media-section .post-resource {
  padding: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  display: block;
  color: #112b62;
  text-decoration: none;
  -webkit-transition: 300ms ease;
  -o-transition: 300ms ease;
  transition: 300ms ease;
}
#sage .media-section .post-resource:hover {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}
#sage .media-section .post-resource a {
  color: #112b62;
  text-decoration: none;
}
#sage .media-section .post-resource .date {
  color: grey;
}
#sage .media-section .post-resource:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

/* stylelint-disable */
#sage .title-break {
  background-color: white;
  padding: 1.25rem 0;
  color: var(--clr-brand);
}
#sage .title-break h2 {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.7071428571rem + 1.7142857143vw, 2.25rem);
}

/* stylelint-disable */
#sage .grid-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 350px;
}
#sage .grid-section .grid-item {
  position: relative;
  isolation: isolate;
  background-color: #ddf3fc;
}
#sage .grid-section .grid-item .inner {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  left: 50%;
  top: 50%;
  height: calc(80% - 94px);
  width: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 900px) {
  #sage .grid-section .grid-item .inner {
    width: 80%;
  }
}
#sage .grid-section .grid-item .inner img {
  height: 100%;
}
#sage .grid-section .grid-item .inner p {
  font-weight: 700;
  color: var(--clr-brand) !important;
}
#sage .grid-section .grid-item h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 1.34375rem;
  font-size: clamp(1.34375rem, 0.8446428571rem + 2.0476190476vw, 2.6875rem);
  background-color: rgba(14, 42, 98, 0.5);
  padding: 1rem 0 1rem 1.875rem;
  color: white;
  font-weight: 700;
}
@media (min-width: 900px) {
  #sage .grid-section {
    grid-template-columns: 2fr 1fr;
  }
  #sage .grid-section > .grid-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  #sage .grid-section > .grid-item:nth-child(1)[two-col] {
    grid-row: 1/2;
  }
  #sage .grid-section > .grid-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  #sage .grid-section > .grid-item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  #sage .grid-section > .grid-item:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  #sage .grid-section > .grid-item:nth-child(5) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  #sage .grid-section > .grid-item:only-child {
    grid-column: 1/-1;
  }
}
#sage .grid-section .rainbow-divider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* stylelint-disable */
#sage .image-with-text .image-side h3 {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 1.34375rem;
  font-size: clamp(1.34375rem, 0.8446428571rem + 2.0476190476vw, 2.6875rem);
  background-color: rgba(14, 42, 98, 0.5);
  padding: 1rem 0 1rem 1.875rem;
  color: white;
  font-weight: 700;
}
#sage .image-with-text .content-side {
  background-color: var(--clr-brand);
  color: white;
  padding-top: clamp(3.125rem, -1.2857142857rem + 18.0952380952vw, 15rem);
  padding-block: clamp(3.125rem, 0.2232142857rem + 11.9047619048vw, 10.9375rem);
}
#sage .image-with-text .content-side h2 {
  font-size: 2.3125rem;
  font-size: clamp(2.3125rem, 1.4535714286rem + 3.5238095238vw, 4.625rem);
  line-height: 1.08823529;
  margin-top: 0 !important;
}
#sage .image-with-text .content-side h5 {
  font-size: 1rem;
  font-size: clamp(1rem, 0.8142857143rem + 0.7619047619vw, 1.5rem);
}
#sage .image-with-text .content-side p {
  font-size: 1rem;
  font-size: clamp(1rem, 0.6285714286rem + 1.5238095238vw, 2rem);
  font-weight: 700;
}
#sage .image-with-text .content-side .inner {
  width: min(500px, 90%);
  margin: 0 auto;
}
#sage .image-with-text .content-side .inner > * + * {
  margin-top: clamp(2rem, 0.2107142857rem + 2.2380952381vw, 2.825rem);
}
@media (min-width: 768px) {
  #sage .image-with-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 100vh;
  }
  #sage .image-with-text .image-side {
    position: relative;
  }
  #sage .image-with-text .image-side img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  #sage .image-with-text .content-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-content: center;
  }
}
#sage .image-with-text[left] .content-side {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* stylelint-disable */
#sage .general-content {
  padding: 5.375rem 0;
  background-color: white;
  position: relative;
}
#sage .general-content .container .inner[half] {
  width: min(768px, 100%);
  margin: 0 auto;
}
#sage .general-content .container .inner > * + * {
  margin-top: 1.5rem;
}
#sage .general-content .container .inner h2 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 0.9428571429rem + 2.2857142857vw, 3rem);
  line-height: 1;
}
#sage .general-content .container .inner p {
  font-size: 1rem;
  font-size: clamp(1rem, 0.8607142857rem + 0.5714285714vw, 1.375rem);
  color: #777589;
}
#sage .general-content .container .inner p strong {
  color: var(--clr-brand);
  font-weight: 600;
}
#sage .general-content .rainbow-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* stylelint-disable */
#sage .leadership-section .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 354px;
  gap: 0.5rem;
  margin: 0.5rem 0;
}
@media (min-width: 600px) {
  #sage .leadership-section .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  #sage .leadership-section .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  #sage .leadership-section .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(4, 430px);
  }
}
#sage .leadership-section .grid > * {
  -webkit-box-ordinal-group: NaN;
      -ms-flex-order: var(--orderCount, 0);
          order: var(--orderCount, 0);
}
#sage .leadership-section .modal-box-container {
  left: 0;
  top: 0;
  position: fixed;
  display: none;
  place-items: center;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.2);
}
#sage .leadership-section .modal-box-container .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 99999;
}
#sage .leadership-section .modal-box-container .modal-close img {
  width: 20px;
  height: 20px;
}
#sage .leadership-section .modal-box-container .modal-box {
  background-color: white;
  padding: 4.6875rem;
  width: min(925px, 90%);
  position: relative;
  z-index: 999999;
}
#sage .leadership-section .modal-box-container .modal-box .inner {
  margin-top: 1.25rem;
}
#sage .leadership-section .modal-box-container .modal-box .top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1.875rem;
  gap: 2.0625rem;
}
#sage .leadership-section .modal-box-container .modal-box .top-content .thumb img {
  width: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}
#sage .leadership-section .modal-box-container .modal-box .top-content h2 {
  font-size: 2.25rem;
}
#sage .leadership-section .modal-box-container .modal-box .top-content p {
  font-size: 1.375rem;
}
#sage .leadership-section .modal-box-container .modal-box .bottom-content > * + * {
  margin-top: 1rem;
}
#sage .leadership-section .people-item {
  cursor: pointer;
}
#sage .leadership-section .people-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sage .leadership-section .people-item.active + .modal-box-container {
  display: grid;
}
#sage .leadership-section .quote-item {
  background-color: var(--bg, #ddf3fc);
  color: white;
  display: grid;
  place-items: center;
  padding: 4rem 2rem;
  position: relative;
  isolation: isolate;
}
#sage .leadership-section .quote-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 25%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: overlay;
  z-index: -1;
}
#sage .leadership-section .quote-item p {
  font-size: 26px;
  font-weight: 600;
}

/*# sourceMappingURL=main.css.map*/
