/* ======================================
   SASS VARIABLES
   ====================================== */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Spacing */
/* Layout */
/* .................................................. */
/* ~~~ MIXINS ~~~ */
/* .................................................. */
/* + + + + + Look how they massacred my .wp-block-group__inner-container :( + + + + + */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ NAV ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ FOOTER ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.site-footer {
  text-align: center;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ LAYOUT ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Layout flex gap */
:root :where(.is-layout-flex) {
  gap: var(--wp--preset--spacing--md);
}
/* Base content wrap */
.entry-content > *:not(.alignfull):not([data-align="full"]), .is-style-container {
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;
  padding-inline: var(--wp--preset--spacing--sm);
}
:root :where(.wp-block-group-is-layout-constrained) > * {
  margin-block-start: 0;
  margin-block-end: var(--wp--preset--spacing--sm);
}
/* Full-width layout */
.alignfull, [data-align="full"] {
  width: 100%;
  margin-inline: 0;
  padding-inline: 0;
  max-width: 100vw;
}
/* Full-width background blocks */
.alignfull.has-background {
  padding-inline: 0;
}
.alignfull.has-background > *:not(.alignfull) {
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;
  padding-inline: var(--wp--preset--spacing--sm);
}
.wp-block-column + *, .wp-block-group + * {
  margin-top: var(--wp--preset--spacing--xl);
}
.wp-block-heading + * {
  margin-block-start: var(--wp--preset--spacing--xs) !important;
}
/* --> STRETCH ACTUALLY STRETCHES <---------- */
.wp-block-columns .is-vertically-aligned-stretch {
  align-items: stretch;
  /* make sure container intends to stretch children */
}
.wp-block-columns .is-vertically-aligned-stretch.wp-block-column {
  display: flex;
  flex-direction: column;
}
.wp-block-column.is-vertically-aligned-stretch > .wp-block-group.has-background {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  color: transparent;
}
/* .................................................. */
/* ~~~ TYPOGRAPHY ~~~ */
/* .................................................. */
html {
  font-size: 18px;
  scroll-behavior: smooth;
}
h1 {
  font-family: "indivisible", sans-serif;
  font-size: var(--wp--preset--font-size--xl);
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
h2 {
  font-family: "indivisible", sans-serif;
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 700;
  margin-bottom: 0.75em;
  text-transform: capitalize;
}
h3 {
  font-family: "indivisible", sans-serif;
  font-size: var(--wp--preset--font-size--md);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
h4 {
  font-family: "indivisible", sans-serif;
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 700;
  margin-bottom: 0.5em;
  text-transform: capitalize;
}
h5 {
  font-family: "indivisible", sans-serif;
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
h6 {
  font-family: "indivisible", sans-serif;
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 700;
  text-transform: capitalize;
}
body {
  color: var(--wp--preset--color--black, #1D1C1C);
  font-family: "indivisible", sans-serif;
}
a, p > a, .wp-block-heading > a {
  font-weight: 600;
  color: var(--wp--preset--color--blue, #2A3F92);
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  transition: text-decoration-color 300ms ease;
}
a:hover, p > a:hover, .wp-block-heading > a:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
/* .................................................. */
/* ~~~ BLOCK STYLES ~~~ */
/* .................................................. */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ PARAGRAPH ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.is-style-subheading {
  font-family: "indivisible", sans-serif;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.is-style-billboard {
  font-family: "indivisible", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: normal;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ LIST ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
ul.wp-block-list, ul:not(.menu):not(.sub-menu), ol {
  margin-bottom: var(--wp--preset--spacing--sm);
  margin-left: 0;
  padding: 0 0 var(--wp--preset--spacing--xs) 3.5rem !important;
}
ul.wp-block-list li, ul:not(.menu):not(.sub-menu) li, ol li {
  margin-bottom: var(--wp--preset--spacing--xs);
}
ul.wp-block-list li ol, ul.wp-block-list li ul, ul:not(.menu):not(.sub-menu) li ol, ul:not(.menu):not(.sub-menu) li ul, ol li ol, ol li ul {
  margin-top: var(--wp--preset--spacing--xs);
  padding: 0 0 0 1rem !important;
}
.wp-block-list.is-style-with-subheading {
  padding: 0 0 var(--wp--preset--spacing--sm) 3.5rem !important;
}
.wp-block-list.is-style-with-subheading > li {
  margin-bottom: var(--wp--preset--spacing--xs);
}
.wp-block-list.is-style-with-subheading > li mark {
  font-size: var(--wp--preset--font-size--md);
  font-weight: 700;
  line-height: 1.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.wp-block-list.is-style-with-subheading > li::marker {
  color: var(--wp--preset--color--blue, #2A3F92);
  font-size: var(--wp--preset--font-size--md);
  font-weight: 700;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ TABLE OF CONTENTS ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wp-block-getwid-table-of-contents.is-style-none ul {
  padding-left: 0 !important;
}
.wp-block-getwid-table-of-contents.is-style-none ul li a {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  display: block;
  font-weight: 900;
  line-height: 1.2em;
  padding: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
  transition: text-decoration-color 300ms ease;
  color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-getwid-table-of-contents.is-style-none ul li a.has-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-getwid-table-of-contents.is-style-none ul li a.has-light-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
.wp-block-getwid-table-of-contents.is-style-none ul li a.has-black-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-getwid-table-of-contents.is-style-none ul li a.has-white-color:hover {
  text-decoration-color: var(--wp--preset--color--white, #ffffff);
}
.wp-block-getwid-table-of-contents.is-style-none ul li a:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-getwid-table-of-contents.is-style-none ul li ul {
  padding: 0 var(--wp--preset--spacing--sm) 0.5em var(--wp--preset--spacing--sm) !important;
  margin-top: 0.25em;
  margin-bottom: 0;
}
.wp-block-getwid-table-of-contents.is-style-none ul li ul li {
  margin-bottom: 0.25em;
}
.wp-block-getwid-table-of-contents.is-style-none ul li ul li a {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--wp--preset--color--black, #1D1C1C);
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ BUTTONS ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wp-block-button a {
  border-radius: 0;
  padding: 0.65rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1em;
  text-decoration: none;
  text-transform: uppercase;
  border: 3px solid transparent;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}
.wp-block-button a:hover {
  background-color: var(--wp--preset--color--blue, #2A3F92);
  color: var(--wp--preset--color--white, #ffffff);
  border-color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-button a.has-blue-background-color:hover {
  background-color: var(--wp--preset--color--white, #ffffff) !important;
  color: var(--wp--preset--color--blue, #2A3F92) !important;
  border-color: var(--wp--preset--color--blue, #2A3F92) !important;
}
.wp-block-button a.has-black-background-color:hover {
  background-color: var(--wp--preset--color--white, #ffffff) !important;
  color: var(--wp--preset--color--black, #1D1C1C) !important;
  border-color: var(--wp--preset--color--black, #1D1C1C) !important;
}
.wp-block-button a.has-white-background-color:hover {
  background-color: var(--wp--preset--color--blue, #2A3F92) !important;
  color: var(--wp--preset--color--white, #ffffff) !important;
  border-color: var(--wp--preset--color--white, #ffffff) !important;
}
.wp-block-button a.has-light-blue-background-color:hover {
  background-color: var(--wp--preset--color--blue, #2A3F92) !important;
  color: var(--wp--preset--color--light-blue, #F4F5FA) !important;
  border-color: var(--wp--preset--color--light-blue, #F4F5FA) !important;
}
.wp-block-button.is-style-arrow a {
  border-radius: 0;
  padding: 0.65rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1em;
  text-decoration: none;
  text-transform: uppercase;
  border: 3px solid transparent;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}
.wp-block-button.is-style-arrow a:hover {
  background-color: var(--wp--preset--color--blue, #2A3F92);
  color: var(--wp--preset--color--white, #ffffff);
  border-color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-button.is-style-arrow a.has-blue-background-color:hover {
  background-color: var(--wp--preset--color--white, #ffffff) !important;
  color: var(--wp--preset--color--blue, #2A3F92) !important;
  border-color: var(--wp--preset--color--blue, #2A3F92) !important;
}
.wp-block-button.is-style-arrow a.has-black-background-color:hover {
  background-color: var(--wp--preset--color--white, #ffffff) !important;
  color: var(--wp--preset--color--black, #1D1C1C) !important;
  border-color: var(--wp--preset--color--black, #1D1C1C) !important;
}
.wp-block-button.is-style-arrow a.has-white-background-color:hover {
  background-color: var(--wp--preset--color--blue, #2A3F92) !important;
  color: var(--wp--preset--color--white, #ffffff) !important;
  border-color: var(--wp--preset--color--white, #ffffff) !important;
}
.wp-block-button.is-style-arrow a.has-light-blue-background-color:hover {
  background-color: var(--wp--preset--color--blue, #2A3F92) !important;
  color: var(--wp--preset--color--light-blue, #F4F5FA) !important;
  border-color: var(--wp--preset--color--light-blue, #F4F5FA) !important;
}
.wp-block-button.is-style-arrow a.has-blue-background-color {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.wp-block-button.is-style-arrow a.has-blue-background-color::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.wp-block-button.is-style-arrow a.has-blue-background-color:hover::after {
  transform: translateX(5px);
}
.wp-block-button.is-style-arrow a.has-blue-background-color::after {
  background-image: url("assets/images/arrow-right.svg");
}
.wp-block-button.is-style-arrow a.has-blue-background-color:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
.wp-block-button.is-style-arrow a.has-blue-background-color:hover::after {
  background-image: url("assets/images/arrow-right-blue.svg");
}
.wp-block-button.is-style-arrow a.has-light-blue-background-color {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.wp-block-button.is-style-arrow a.has-light-blue-background-color::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.wp-block-button.is-style-arrow a.has-light-blue-background-color:hover::after {
  transform: translateX(5px);
}
.wp-block-button.is-style-arrow a.has-light-blue-background-color::after {
  background-image: url("assets/images/arrow-right-blue.svg");
}
.wp-block-button.is-style-arrow a.has-light-blue-background-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-button.is-style-arrow a.has-light-blue-background-color:hover::after {
  background-image: url("assets/images/arrow-right-lightblue.svg");
}
.wp-block-button.is-style-arrow a.has-black-background-color {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.wp-block-button.is-style-arrow a.has-black-background-color::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.wp-block-button.is-style-arrow a.has-black-background-color:hover::after {
  transform: translateX(5px);
}
.wp-block-button.is-style-arrow a.has-black-background-color::after {
  background-image: url("assets/images/arrow-right.svg");
}
.wp-block-button.is-style-arrow a.has-black-background-color:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
.wp-block-button.is-style-arrow a.has-black-background-color:hover::after {
  background-image: url("assets/images/arrow-right-black.svg");
}
.wp-block-button.is-style-arrow a.has-white-background-color {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.wp-block-button.is-style-arrow a.has-white-background-color::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.wp-block-button.is-style-arrow a.has-white-background-color:hover::after {
  transform: translateX(5px);
}
.wp-block-button.is-style-arrow a.has-white-background-color::after {
  background-image: url("assets/images/arrow-right-black.svg");
}
.wp-block-button.is-style-arrow a.has-white-background-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-button.is-style-arrow a.has-white-background-color:hover::after {
  background-image: url("assets/images/arrow-right.svg");
}
.is-style-no-fill a {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  display: block;
  font-weight: 900;
  line-height: 1.2em;
  padding: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
  transition: text-decoration-color 300ms ease;
}
.is-style-no-fill a.has-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.is-style-no-fill a.has-light-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
.is-style-no-fill a.has-black-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.is-style-no-fill a.has-white-color:hover {
  text-decoration-color: var(--wp--preset--color--white, #ffffff);
}
.is-style-no-fill-arrow a {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  display: block;
  font-weight: 900;
  line-height: 1.2em;
  padding: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
  transition: text-decoration-color 300ms ease;
}
.is-style-no-fill-arrow a.has-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.is-style-no-fill-arrow a.has-light-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
.is-style-no-fill-arrow a.has-black-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.is-style-no-fill-arrow a.has-white-color:hover {
  text-decoration-color: var(--wp--preset--color--white, #ffffff);
}
.is-style-no-fill-arrow a.has-blue-color {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.is-style-no-fill-arrow a.has-blue-color::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.is-style-no-fill-arrow a.has-blue-color:hover::after {
  transform: translateX(5px);
}
.is-style-no-fill-arrow a.has-blue-color::after {
  background-image: url("assets/images/arrow-right-blue.svg");
}
.is-style-no-fill-arrow a.has-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.is-style-no-fill-arrow a.has-light-blue-color {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.is-style-no-fill-arrow a.has-light-blue-color::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.is-style-no-fill-arrow a.has-light-blue-color:hover::after {
  transform: translateX(5px);
}
.is-style-no-fill-arrow a.has-light-blue-color::after {
  background-image: url("assets/images/arrow-right-lightblue.svg");
}
.is-style-no-fill-arrow a.has-light-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
.is-style-no-fill-arrow a.has-black-color {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.is-style-no-fill-arrow a.has-black-color::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.is-style-no-fill-arrow a.has-black-color:hover::after {
  transform: translateX(5px);
}
.is-style-no-fill-arrow a.has-black-color::after {
  background-image: url("assets/images/arrow-right-black.svg");
}
.is-style-no-fill-arrow a.has-black-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.is-style-no-fill-arrow a.has-white-color {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.is-style-no-fill-arrow a.has-white-color::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.is-style-no-fill-arrow a.has-white-color:hover::after {
  transform: translateX(5px);
}
.is-style-no-fill-arrow a.has-white-color::after {
  background-image: url("assets/images/arrow-right.svg");
}
.is-style-no-fill-arrow a.has-white-color:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ GROUP ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.is-style-bordered-callout {
  border: 2px solid var(--wp--preset--color--blue, #2A3F92);
  padding: var(--wp--preset--spacing--lg) !important;
  padding-top: 0 !important;
}
.is-style-bordered-callout > * {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wp--preset--spacing--sm);
  padding-right: var(--wp--preset--spacing--sm);
}
.is-style-bordered-callout > *[data-align="full"], .is-style-bordered-callout > *.alignfull {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}
.is-style-bordered-callout h2, .is-style-bordered-callout h3, .is-style-bordered-callout h4, .is-style-bordered-callout h5, .is-style-bordered-callout h6 {
  width: fit-content;
  color: var(--wp--preset--color--blue, #2A3F92);
  font-family: "indivisible", sans-serif;
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0.27625rem;
  text-align: center;
  text-transform: uppercase;
  margin-top: -1rem !important;
  background-color: var(--wp--preset--color--white, #ffffff);
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ COLUMNS ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wp-block-columns.is-style-left-border-cols .wp-block-column:not(:first-of-type) {
  border-left: 2px solid var(--wp--preset--color--blue, #2A3F92);
  padding-left: var(--wp--preset--spacing--md);
}
.wp-block-columns.is-style-left-border-cols.has-blue-background-color .wp-block-column:not(:first-of-type), .wp-block-group.has-blue-background-color .wp-block-columns.is-style-left-border-cols .wp-block-column:not(:first-of-type) {
  border-left: 2px solid var(--wp--preset--color--white, #ffffff);
  padding-left: var(--wp--preset--spacing--md);
}
.is-style-pull-up {
  margin-top: -15vh !important;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ TABLES ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wp-block-getwid-table table {
  margin-bottom: var(--wp--preset--spacing--xl);
}
.wp-block-getwid-table table thead {
  background-color: var(--wp--preset--color--blue, #2A3F92);
}
.wp-block-getwid-table table thead th {
  color: var(--wp--preset--color--white, #ffffff);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 600;
  padding: var(--wp--preset--spacing--xs);
  text-align: left;
  text-transform: uppercase;
  border: 2px solid #fff;
}
.wp-block-getwid-table table tbody td {
  background-color: var(--wp--preset--color--light-blue, #F4F5FA);
  padding: var(--wp--preset--spacing--xs);
  border: 2px solid #fff;
}
.wp-block-getwid-table table tbody td:first-of-type {
  color: var(--wp--preset--color--blue, #2A3F92);
  font-weight: bold;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ COVER ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wp-block-cover.is-style-square {
  aspect-ratio: 1 !important;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ Image Box ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wp-block-getwid-image-box__image-container, .wp-block-getwid-image-box__content > * {
  margin: 0;
}
.wp-block-getwid-image-box__content > * {
  padding: var(--wp--preset--spacing--xs) !important;
}
.wp-block-getwid-image-box__image-container img {
  object-fit: cover;
  aspect-ratio: 1.25;
}
.wp-block-getwid-image-box .wp-block-getwid-image-box__content .wp-block-heading {
  border: 3px solid transparent;
}
.wp-block-getwid-image-box .wp-block-getwid-image-box__content .wp-block-heading a {
  display: block;
  text-decoration: none;
  width: 100%;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}
.wp-block-getwid-image-box .wp-block-getwid-image-box__content .wp-block-heading:hover {
  background-color: var(--wp--preset--color--white, #ffffff) !important;
  border: 3px solid var(--wp--preset--color--blue, #2A3F92) !important;
}
.wp-block-getwid-image-box .wp-block-getwid-image-box__content .wp-block-heading:hover a {
  color: var(--wp--preset--color--blue, #2A3F92) !important;
}
/* .................................................. */
/* ~~~ FACILITIES ~~~ */
/* .................................................. */
.single-care-facility main {
  margin-block: var(--wp--preset--spacing--xl);
}
.single-care-facility .header {
  text-align: center;
  margin-block: var(--wp--preset--spacing--xl);
}
.single-care-facility .header h1 {
  color: var(--wp--preset--color--blue, #2A3F92);
  text-align: center;
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 700;
  letter-spacing: 0.425rem;
  text-transform: uppercase;
}
.single-care-facility .facility {
  display: flex;
  gap: var(--wp--preset--spacing--md);
}
.single-care-facility .facility .facility-info {
  flex-basis: 33%;
  border-right: 1px solid var(--wp--preset--color--blue, #2A3F92);
  text-wrap: balance;
}
.single-care-facility .facility .facility-info .info-wrapper {
  padding: var(--wp--preset--spacing--md);
  background-color: var(--wp--preset--color--light-blue, #F4F5FA);
  position: sticky;
  top: 2rem;
}
.single-care-facility .facility .facility-info .website a {
  color: var(--wp--preset--color--blue, #2A3F92);
  font-weight: 600;
  text-transform: capitalize;
}
.single-care-facility .facility .facility-info .location h2 {
  font-size: var(--wp--preset--font-size--sm);
  letter-spacing: 0 !important;
  margin-top: var(--wp--preset--spacing--lg);
}
.single-care-facility .facility .facility-info p {
  margin: 0;
}
.single-care-facility .facility-amenities {
  flex-basis: 66%;
}
.single-care-facility .facility-amenities h2 {
  margin-top: 0;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ FACILLITY FEED ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.facility-feed {
  display: flex;
  background-color: var(--wp--preset--color--light-blue, #F4F5FA);
  gap: 0;
  margin-bottom: var(--wp--preset--spacing--md);
}
.facility-feed .facility-info {
  flex-basis: 33%;
  text-wrap: balance;
  margin: var(--wp--preset--spacing--md);
}
.facility-feed .facility-info .info-wrapper {
  border-right: 2px solid var(--wp--preset--color--blue, #2A3F92);
  padding-right: var(--wp--preset--spacing--md);
}
.facility-feed .facility-info h3 {
  color: var(--wp--preset--color--blue, #2A3F92);
  font-size: var(--wp--preset--font-size--md);
  letter-spacing: 0;
  margin-top: var(--wp--preset--spacing--lg);
}
.facility-feed .facility-info h4.type {
  font-size: var(--wp--preset--font-size--sm);
  letter-spacing: 0;
  margin-bottom: 0;
}
.facility-feed .facility-info p {
  margin: 0;
}
.facility-feed .facility-amenities {
  flex-basis: 66%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: var(--wp--preset--spacing--md);
}
.facility-feed .facility-amenities h2 {
  margin-top: 0;
}
.facility-feed .facility-amenities .tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--xs);
}
.facility-feed .facility-amenities .tags span {
  background-color: #DFE2EF;
  font-style: italic;
  font-size: var(--wp--preset--font-size--xs);
  padding: 0.3rem 0.5rem;
}
.facility-feed .facility-amenities .details, .facility-feed .facility-amenities .website {
  font-size: var(--wp--preset--font-size--sm);
}
@media (max-width: 75rem) {
  .entry-content > *:not(.alignfull):not([data-align="full"]) {
    margin-left: var(--wp--preset--spacing--sm);
    margin-right: var(--wp--preset--spacing--sm);
    width: auto;
  }
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ PARTY INVENTORY ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.party-inventory {
  display: grid;
}
.inventory-header, .inventory-row {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  gap: 0;
}
.inventory-header {
  color: var(--wp--preset--color--white, #ffffff);
  background-color: var(--wp--preset--color--blue, #2A3F92);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}
.inventory-header .inventory-header-item {
  grid-column: span 2;
  padding: var(--wp--preset--spacing--sm);
}
.inventory-header .inventory-header-quantity {
  border-left: 2px solid var(--wp--preset--color--white, #ffffff);
  padding: var(--wp--preset--spacing--sm);
}
.inventory-row {
  grid-template-areas: "image item quantity";
  background-color: var(--wp--preset--color--light-blue, #F4F5FA);
  gap: 0;
  border-bottom: 2px solid var(--wp--preset--color--white, #ffffff);
}
.inventory-image {
  grid-area: image;
  padding: var(--wp--preset--spacing--sm);
}
.inventory-image img {
  width: 100%;
}
.inventory-item {
  grid-area: item;
  grid-column: span 1;
  color: var(--wp--preset--color--blue, #2A3F92);
  text-align: center;
  font-size: var(--wp--preset--font-size--md);
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  padding: var(--wp--preset--spacing--sm);
}
.inventory-quantity {
  border-left: 2px solid var(--wp--preset--color--white, #ffffff);
  grid-area: quantity;
  padding: var(--wp--preset--spacing--sm);
  font-size: var(--wp--preset--font-size--md);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ EVENTS ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.events-feed--full {
  display: grid;
  gap: var(--wp--preset--spacing--md);
}
.events-feed--full .event-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  background: var(--wp--preset--color--light-blue, #F4F5FA);
}
.events-feed--full .event-item .event-date-box {
  background: #e7e9f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--blue, #2A3F92);
  font-weight: 700;
  text-transform: uppercase;
  padding: var(--wp--preset--spacing--sm);
}
.events-feed--full .event-item .event-date-box .event-month {
  font-size: var(--wp--preset--font-size--md);
  line-height: 1em;
}
.events-feed--full .event-item .event-date-box .event-day {
  font-size: var(--wp--preset--font-size--lg);
  line-height: 1em;
}
.events-feed--full .event-item .event-datetime {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: var(--wp--preset--spacing--sm);
}
.events-feed--full .event-item .event-datetime strong {
  font-weight: 600;
}
.events-feed--full .event-item .event-content {
  padding: var(--wp--preset--spacing--md);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.events-feed--full .event-item .event-content .event-title {
  color: var(--wp--preset--color--blue, #2A3F92);
  font-size: var(--wp--preset--font-size--lg);
  margin: 0;
}
.events-feed--full .event-item .event-content .event-flyer {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
}
.events-feed--full .event-item .event-content .event-flyer::after {
  content: "";
  width: 1rem;
  height: 0.75rem;
  background-color: transparent;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
  display: inline-block;
  transition: transform 300ms ease;
}
.events-feed--full .event-item .event-content .event-flyer:hover::after {
  transform: translateX(5px);
}
.events-feed--full .event-item .event-content .event-flyer::after {
  background-image: url("assets/images/arrow-right.svg");
}
.events-feed--full .event-item .event-content .event-flyer:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
.events-feed--featured {
  text-align: center;
}
.events-feed--featured .events-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--wp--preset--spacing--md);
  justify-items: center;
}
.events-feed--featured .events-featured-grid .event-featured {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  color: var(--wp--preset--color--blue, #2A3F92);
}
.events-feed--featured .events-featured-grid .event-featured .event-featured__date {
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.events-feed--featured .events-featured-grid .event-featured .event-featured__date .month {
  font-size: var(--wp--preset--font-size--sm);
  text-transform: uppercase;
}
.events-feed--featured .events-featured-grid .event-featured .event-featured__date .day {
  font-size: var(--wp--preset--font-size--lg);
  line-height: 1;
}
.events-feed--featured .events-featured-grid .event-featured .event-featured__info {
  border-left: 2px solid var(--wp--preset--color--blue, #2A3F92);
  padding-left: var(--wp--preset--spacing--xs);
  text-align: left;
}
.events-feed--featured .events-featured-grid .event-featured .event-featured__info .time {
  font-size: var(--wp--preset--font-size--sm);
  margin: 0;
}
.events-feed--featured .events-featured-grid .event-featured .event-featured__info .title {
  font-weight: 700;
  font-size: var(--wp--preset--font-size--lg);
  margin: 0;
}
.events-feed--featured .btn-view-all {
  display: inline-block;
  background: var(--wp--preset--color--blue, #2A3F92);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~ COURIER ARTICLES ~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.latest-article {
  margin-block: var(--wp--preset--spacing--lg);
}
.latest-article h1 {
  font-size: var(--wp--preset--font-size--lg);
  color: var(--wp--preset--color--blue, #2A3F92);
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--xl);
}
.older-articles h2 {
  font-size: var(--wp--preset--font-size--lg);
  color: var(--wp--preset--color--blue, #2A3F92);
  text-align: center;
  margin-top: var(--wp--preset--spacing--xl);
  margin-bottom: var(--wp--preset--spacing--md);
}
.older-articles ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--wp--preset--spacing--md);
  padding: var(--wp--preset--spacing--md) 0;
  margin: 0 auto;
}
.older-articles ul li {
  list-style-type: none;
  font-size: var(--wp--preset--font-size--md);
  text-wrap: balance;
}
.older-articles ul li a {
  width: 100%;
  padding: 0.5rem 7rem;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--wp--preset--spacing--sm);
}
.pagination .page-numbers[aria-current="page"], .pagination .page-numbers:hover {
  font-weight: 600;
  color: var(--wp--preset--color--blue, #2A3F92);
  transition: font-weight 300ms ease;
}
.pagination .page-numbers {
  color: var(--wp--preset--color--black, #1D1C1C);
  text-decoration: none;
}
.single-courier-article .site-main.is-style-container.courier {
  margin-block: var(--wp--preset--spacing--lg);
}
.single-courier-article .site-main.is-style-container.courier .latest {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  display: block;
  font-weight: 900;
  line-height: 1.2em;
  padding: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
  transition: text-decoration-color 300ms ease;
  color: var(--wp--preset--color--blue, #2A3F92);
}
.single-courier-article .site-main.is-style-container.courier .latest.has-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.single-courier-article .site-main.is-style-container.courier .latest.has-light-blue-color:hover {
  text-decoration-color: var(--wp--preset--color--light-blue, #F4F5FA);
}
.single-courier-article .site-main.is-style-container.courier .latest.has-black-color:hover {
  text-decoration-color: var(--wp--preset--color--blue, #2A3F92);
}
.single-courier-article .site-main.is-style-container.courier .latest.has-white-color:hover {
  text-decoration-color: var(--wp--preset--color--white, #ffffff);
}
.single-courier-article h1 {
  font-size: var(--wp--preset--font-size--lg);
  color: var(--wp--preset--color--blue, #2A3F92);
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--xl);
}
/* ............................... */
/* ~~~ CONTACT FORMS ~~~ */
/* ............................... */
.gform_wrapper .gform_heading h2 {
  margin: auto;
}
.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
  font-weight: 600;
}
.gform_wrapper .gform-footer.gform_footer input[type="submit"] {
  border-radius: 0 !important;
  padding: 0.5rem 1rem !important;
  text-align: center !important;
  font-weight: 600 !important;
  line-height: 1em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}
/* * * * * * * * * * *
 * MEDIA QUERIES     */
/* ~~~~~~~~~~~~~~~~~~*/
@media screen and (max-width: 800px) {
  .facility {
    display: flex;
    flex-direction: column;
  }
  .facility .facility-info {
    border: 2px solid var(--wp--preset--color--blue, #2A3F92) !important;
    margin-bottom: var(--wp--preset--spacing--xl);
  }
  .facility-feed {
    flex-direction: column;
  }
  .facility-feed .info-wrapper {
    border-right: none !important;
    padding-right: 0;
    border-bottom: 2px solid var(--wp--preset--color--blue, #2A3F92);
    padding-bottom: var(--wp--preset--spacing--md);
  }
  .events-feed--full .event-item {
    grid-template-columns: 1fr;
  }
}
