/**
 * tingle.js - A simple modal plugin written in pure JavaScript
 * @version v0.16.0
 * @link https://github.com/robinparisi/tingle#readme
 * @license MIT
 */
 
.tingle-modal * {
  box-sizing: border-box;
}

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, .9);
  opacity: 0;
  cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"), auto;
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

/* confirm and alerts
-------------------------------------------------------------- */

.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
-------------------------------------------------------------- */

.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}

.tingle-modal-box__content {
  padding: 3rem 3rem;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px; /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom .3s ease-in-out .3s;
}

/* state
-------------------------------------------------------------- */

.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  animation: scale .2s cubic-bezier(.68, -.55, .265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */

.tingle-btn {
  display: inline-block;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color .4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
-------------------------------------------------------------- */

@media (max-width : 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }

  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }

  .tingle-modal-box__content {
    overflow-y: scroll;
  }

  .tingle-modal--noClose {
    top: 0;
  }

  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }

  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }

  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    box-shadow: none;
    color: #fff;
  }

  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }

  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: .8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}

/* animations
-------------------------------------------------------------- */

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@charset "UTF-8";
/*
! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont; /* 4 */
  font-feature-settings: normal; /* 5 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.pointer-events-none{
  pointer-events: none;
}
.visible{
  visibility: visible;
}
.\!visible{
  visibility: visible !important;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.top-\[50\%\]{
  top: 50%;
}
.left-\[50\%\]{
  left: 50%;
}
.left-0{
  left: 0px;
}
.top-0{
  top: 0px;
}
.bottom-0{
  bottom: 0px;
}
.right-0{
  right: 0px;
}
.bottom-4{
  bottom: 1rem;
}
.-bottom-10{
  bottom: -2.5rem;
}
.top-\[18px\]{
  top: 18px;
}
.right-4{
  right: 1rem;
}
.-right-full{
  right: -100%;
}
.-right-\[13\%\]{
  right: -13%;
}
.-right-\[26\%\]{
  right: -26%;
}
.-left-\[10\%\]{
  left: -10%;
}
.-left-\[38\%\]{
  left: -38%;
}
.left-1\/2{
  left: 50%;
}
.-top-5{
  top: -1.25rem;
}
.top-\[100\%\]{
  top: 100%;
}
.top-8{
  top: 2rem;
}
.right-6{
  right: 1.5rem;
}
.right-5{
  right: 1.25rem;
}
.-left-\[10000px\]{
  left: -10000px;
}
.top-auto{
  top: auto;
}
.top-4{
  top: 1rem;
}
.bottom-8{
  bottom: 2rem;
}
.left-4{
  left: 1rem;
}
.right-16{
  right: 4rem;
}
.top-6{
  top: 1.5rem;
}
.-top-9{
  top: -2.25rem;
}
.top-\[-40\%\]{
  top: -40%;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-\[1\]{
  z-index: 1;
}
.z-40{
  z-index: 40;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.col-span-3{
  grid-column: span 3 / span 3;
}
.col-span-4{
  grid-column: span 4 / span 4;
}
.col-start-1{
  grid-column-start: 1;
}
.col-start-2{
  grid-column-start: 2;
}
.col-start-3{
  grid-column-start: 3;
}
.col-start-4{
  grid-column-start: 4;
}
.col-start-5{
  grid-column-start: 5;
}
.col-start-6{
  grid-column-start: 6;
}
.col-start-7{
  grid-column-start: 7;
}
.col-start-8{
  grid-column-start: 8;
}
.col-start-9{
  grid-column-start: 9;
}
.col-start-10{
  grid-column-start: 10;
}
.col-start-11{
  grid-column-start: 11;
}
.col-start-12{
  grid-column-start: 12;
}
.col-start-13{
  grid-column-start: 13;
}
.col-start-auto{
  grid-column-start: auto;
}
.m-auto{
  margin: auto;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.-mx-2{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-auto{
  margin-top: auto;
  margin-bottom: auto;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-12{
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-1\.5{
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}
.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}
.mb-7{
  margin-bottom: 1.75rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-8{
  margin-top: 2rem;
}
.ml-auto{
  margin-left: auto;
}
.mt-6{
  margin-top: 1.5rem;
}
.ml-8{
  margin-left: 2rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-auto{
  margin-top: auto;
}
.mb-0{
  margin-bottom: 0px;
}
.mb-4{
  margin-bottom: 1rem;
}
.mr-14{
  margin-right: 3.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.-mb-\[1px\]{
  margin-bottom: -1px;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mr-5{
  margin-right: 1.25rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mt-4{
  margin-top: 1rem;
}
.ml-4{
  margin-left: 1rem;
}
.mr-8{
  margin-right: 2rem;
}
.ml-16{
  margin-left: 4rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mb-24{
  margin-bottom: 6rem;
}
.mb-20{
  margin-bottom: 5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.mt-\[3px\]{
  margin-top: 3px;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mr-4{
  margin-right: 1rem;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-auto{
  margin-bottom: auto;
}
.mt-5{
  margin-top: 1.25rem;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.table-caption{
  display: table-caption;
}
.table-cell{
  display: table-cell;
}
.grid{
  display: grid;
}
.\!grid{
  display: grid !important;
}
.contents{
  display: contents;
}
.hidden{
  display: none;
}
.\!hidden{
  display: none !important;
}
.aspect-thumbnail{
  aspect-ratio: 5 / 3;
}
.aspect-video{
  aspect-ratio: 16 / 9;
}
.h-8{
  height: 2rem;
}
.h-full{
  height: 100%;
}
.h-auto{
  height: auto;
}
.h-fit{
  height: -moz-fit-content;
  height: fit-content;
}
.h-5{
  height: 1.25rem;
}
.h-\[10px\]{
  height: 10px;
}
.h-\[50vw\]{
  height: 50vw;
}
.h-\[435px\]{
  height: 435px;
}
.h-24{
  height: 6rem;
}
.h-3{
  height: 0.75rem;
}
.h-10{
  height: 2.5rem;
}
.h-52{
  height: 13rem;
}
.h-\[340px\]{
  height: 340px;
}
.h-12{
  height: 3rem;
}
.h-screen{
  height: 100vh;
}
.h-32{
  height: 8rem;
}
.h-\[4\.75rem\]{
  height: 4.75rem;
}
.h-\[17px\]{
  height: 17px;
}
.h-9{
  height: 2.25rem;
}
.max-h-\[632px\]{
  max-height: 632px;
}
.max-h-20{
  max-height: 5rem;
}
.max-h-24{
  max-height: 6rem;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[340px\]{
  min-height: 340px;
}
.min-h-\[32rem\]{
  min-height: 32rem;
}
.min-h-\[310px\]{
  min-height: 310px;
}
.min-h-\[80px\]{
  min-height: 80px;
}
.min-h-\[264px\]{
  min-height: 264px;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.333333%;
}
.w-1\/4{
  width: 25%;
}
.w-1\/5{
  width: 20%;
}
.w-full{
  width: 100%;
}
.w-8{
  width: 2rem;
}
.w-5{
  width: 1.25rem;
}
.w-\[15px\]{
  width: 15px;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-4{
  width: 1rem;
}
.w-\[20px\]{
  width: 20px;
}
.w-\[18px\]{
  width: 18px;
}
.w-2\.5{
  width: 0.625rem;
}
.w-2{
  width: 0.5rem;
}
.w-auto{
  width: auto;
}
.w-\[336px\]{
  width: 336px;
}
.w-12{
  width: 3rem;
}
.w-3{
  width: 0.75rem;
}
.w-10{
  width: 2.5rem;
}
.w-5\/6{
  width: 83.333333%;
}
.w-16{
  width: 4rem;
}
.w-screen{
  width: 100vw;
}
.w-6{
  width: 1.5rem;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[23px\]{
  width: 23px;
}
.min-w-\[14rem\]{
  min-width: 14rem;
}
.min-w-\[240px\]{
  min-width: 240px;
}
.max-w-\[200px\]{
  max-width: 200px;
}
.max-w-3xl{
  max-width: 48rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-\[80\%\]{
  max-width: 80%;
}
.max-w-\[160px\]{
  max-width: 160px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[25rem\]{
  max-width: 25rem;
}
.max-w-6xl{
  max-width: 72rem;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.grow{
  flex-grow: 1;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-full{
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90{
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\!transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.appearance-none{
  -webkit-appearance: none;
          appearance: none;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.flex-nowrap{
  flex-wrap: nowrap;
}
.place-items-center{
  place-items: center;
}
.items-start{
  align-items: flex-start;
}
.items-center{
  align-items: center;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-items-center{
  justify-items: center;
}
.gap-10{
  gap: 2.5rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-12{
  gap: 3rem;
}
.gap-4{
  gap: 1rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-16{
  gap: 4rem;
}
.gap-\[14px\]{
  gap: 14px;
}
.gap-3{
  gap: 0.75rem;
}
.gap-x-8{
  column-gap: 2rem;
}
.gap-x-2{
  column-gap: 0.5rem;
}
.gap-x-\[10px\]{
  column-gap: 10px;
}
.gap-y-4{
  row-gap: 1rem;
}
.gap-x-5{
  column-gap: 1.25rem;
}
.gap-y-12{
  row-gap: 3rem;
}
.gap-x-0\.5{
  column-gap: 0.125rem;
}
.gap-x-0{
  column-gap: 0px;
}
.gap-x-4{
  column-gap: 1rem;
}
.gap-y-10{
  row-gap: 2.5rem;
}
.gap-y-8{
  row-gap: 2rem;
}
.gap-x-6{
  column-gap: 1.5rem;
}
.gap-y-5{
  row-gap: 1.25rem;
}
.self-start{
  align-self: flex-start;
}
.self-center{
  align-self: center;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-visible{
  overflow: visible;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.text-clip{
  text-overflow: clip;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.border{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-t{
  border-top-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-t-2{
  border-top-width: 2px;
}
.border-b-\[1px\]{
  border-bottom-width: 1px;
}
.border-dashed{
  border-style: dashed;
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-blue{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
}
.border-grey-medium{
  --tw-border-opacity: 1;
  border-color: rgb(221 221 221 / var(--tw-border-opacity));
}
.border-blue-brand{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
}
.border-b-blue{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(0 76 151 / var(--tw-border-opacity));
}
.border-b-black{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-t-blue{
  --tw-border-opacity: 1;
  border-top-color: rgb(0 76 151 / var(--tw-border-opacity));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-white-fade75{
  background-color: rgba(255, 255, 255, 0.75);
}
.bg-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.bg-blue-brand{
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.bg-blue-light{
  --tw-bg-opacity: 1;
  background-color: rgb(167 195 232 / var(--tw-bg-opacity));
}
.bg-blue-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(21 56 103 / var(--tw-bg-opacity));
}
.bg-blue-lighter{
  --tw-bg-opacity: 1;
  background-color: rgb(225 238 255 / var(--tw-bg-opacity));
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-grey{
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity));
}
.bg-grey-lighest{
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity));
}
.bg-grey-light{
  --tw-bg-opacity: 1;
  background-color: rgb(232 232 232 / var(--tw-bg-opacity));
}
.bg-grey-medium{
  --tw-bg-opacity: 1;
  background-color: rgb(221 221 221 / var(--tw-bg-opacity));
}
.bg-grey-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(92 92 92 / var(--tw-bg-opacity));
}
.bg-grey-bg{
  --tw-bg-opacity: 1;
  background-color: rgb(238 238 238 / var(--tw-bg-opacity));
}
.bg-white\/0{
  background-color: rgb(255 255 255 / 0);
}
.bg-white\/5{
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/10{
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/25{
  background-color: rgb(255 255 255 / 0.25);
}
.bg-white\/30{
  background-color: rgb(255 255 255 / 0.3);
}
.bg-white\/40{
  background-color: rgb(255 255 255 / 0.4);
}
.bg-white\/50{
  background-color: rgb(255 255 255 / 0.5);
}
.bg-white\/60{
  background-color: rgb(255 255 255 / 0.6);
}
.bg-white\/70{
  background-color: rgb(255 255 255 / 0.7);
}
.bg-white\/75{
  background-color: rgb(255 255 255 / 0.75);
}
.bg-white\/80{
  background-color: rgb(255 255 255 / 0.8);
}
.bg-white\/90{
  background-color: rgb(255 255 255 / 0.9);
}
.bg-white\/95{
  background-color: rgb(255 255 255 / 0.95);
}
.bg-white\/100{
  background-color: rgb(255 255 255 / 1);
}
.bg-white-fade75\/0{
  background-color: rgb(255 255 255 / 0);
}
.bg-white-fade75\/5{
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white-fade75\/10{
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white-fade75\/20{
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white-fade75\/25{
  background-color: rgb(255 255 255 / 0.25);
}
.bg-white-fade75\/30{
  background-color: rgb(255 255 255 / 0.3);
}
.bg-white-fade75\/40{
  background-color: rgb(255 255 255 / 0.4);
}
.bg-white-fade75\/50{
  background-color: rgb(255 255 255 / 0.5);
}
.bg-white-fade75\/60{
  background-color: rgb(255 255 255 / 0.6);
}
.bg-white-fade75\/70{
  background-color: rgb(255 255 255 / 0.7);
}
.bg-white-fade75\/75{
  background-color: rgb(255 255 255 / 0.75);
}
.bg-white-fade75\/80{
  background-color: rgb(255 255 255 / 0.8);
}
.bg-white-fade75\/90{
  background-color: rgb(255 255 255 / 0.9);
}
.bg-white-fade75\/95{
  background-color: rgb(255 255 255 / 0.95);
}
.bg-white-fade75\/100{
  background-color: rgb(255 255 255 / 1);
}
.bg-blue\/0{
  background-color: rgb(0 76 151 / 0);
}
.bg-blue\/5{
  background-color: rgb(0 76 151 / 0.05);
}
.bg-blue\/10{
  background-color: rgb(0 76 151 / 0.1);
}
.bg-blue\/20{
  background-color: rgb(0 76 151 / 0.2);
}
.bg-blue\/25{
  background-color: rgb(0 76 151 / 0.25);
}
.bg-blue\/30{
  background-color: rgb(0 76 151 / 0.3);
}
.bg-blue\/40{
  background-color: rgb(0 76 151 / 0.4);
}
.bg-blue\/50{
  background-color: rgb(0 76 151 / 0.5);
}
.bg-blue\/60{
  background-color: rgb(0 76 151 / 0.6);
}
.bg-blue\/70{
  background-color: rgb(0 76 151 / 0.7);
}
.bg-blue\/75{
  background-color: rgb(0 76 151 / 0.75);
}
.bg-blue\/80{
  background-color: rgb(0 76 151 / 0.8);
}
.bg-blue\/90{
  background-color: rgb(0 76 151 / 0.9);
}
.bg-blue\/95{
  background-color: rgb(0 76 151 / 0.95);
}
.bg-blue\/100{
  background-color: rgb(0 76 151 / 1);
}
.bg-blue-brand\/0{
  background-color: rgb(0 76 151 / 0);
}
.bg-blue-brand\/5{
  background-color: rgb(0 76 151 / 0.05);
}
.bg-blue-brand\/10{
  background-color: rgb(0 76 151 / 0.1);
}
.bg-blue-brand\/20{
  background-color: rgb(0 76 151 / 0.2);
}
.bg-blue-brand\/25{
  background-color: rgb(0 76 151 / 0.25);
}
.bg-blue-brand\/30{
  background-color: rgb(0 76 151 / 0.3);
}
.bg-blue-brand\/40{
  background-color: rgb(0 76 151 / 0.4);
}
.bg-blue-brand\/50{
  background-color: rgb(0 76 151 / 0.5);
}
.bg-blue-brand\/60{
  background-color: rgb(0 76 151 / 0.6);
}
.bg-blue-brand\/70{
  background-color: rgb(0 76 151 / 0.7);
}
.bg-blue-brand\/75{
  background-color: rgb(0 76 151 / 0.75);
}
.bg-blue-brand\/80{
  background-color: rgb(0 76 151 / 0.8);
}
.bg-blue-brand\/90{
  background-color: rgb(0 76 151 / 0.9);
}
.bg-blue-brand\/95{
  background-color: rgb(0 76 151 / 0.95);
}
.bg-blue-brand\/100{
  background-color: rgb(0 76 151 / 1);
}
.bg-blue-light\/0{
  background-color: rgb(167 195 232 / 0);
}
.bg-blue-light\/5{
  background-color: rgb(167 195 232 / 0.05);
}
.bg-blue-light\/10{
  background-color: rgb(167 195 232 / 0.1);
}
.bg-blue-light\/20{
  background-color: rgb(167 195 232 / 0.2);
}
.bg-blue-light\/25{
  background-color: rgb(167 195 232 / 0.25);
}
.bg-blue-light\/30{
  background-color: rgb(167 195 232 / 0.3);
}
.bg-blue-light\/40{
  background-color: rgb(167 195 232 / 0.4);
}
.bg-blue-light\/50{
  background-color: rgb(167 195 232 / 0.5);
}
.bg-blue-light\/60{
  background-color: rgb(167 195 232 / 0.6);
}
.bg-blue-light\/70{
  background-color: rgb(167 195 232 / 0.7);
}
.bg-blue-light\/75{
  background-color: rgb(167 195 232 / 0.75);
}
.bg-blue-light\/80{
  background-color: rgb(167 195 232 / 0.8);
}
.bg-blue-light\/90{
  background-color: rgb(167 195 232 / 0.9);
}
.bg-blue-light\/95{
  background-color: rgb(167 195 232 / 0.95);
}
.bg-blue-light\/100{
  background-color: rgb(167 195 232 / 1);
}
.bg-blue-dark\/0{
  background-color: rgb(21 56 103 / 0);
}
.bg-blue-dark\/5{
  background-color: rgb(21 56 103 / 0.05);
}
.bg-blue-dark\/10{
  background-color: rgb(21 56 103 / 0.1);
}
.bg-blue-dark\/20{
  background-color: rgb(21 56 103 / 0.2);
}
.bg-blue-dark\/25{
  background-color: rgb(21 56 103 / 0.25);
}
.bg-blue-dark\/30{
  background-color: rgb(21 56 103 / 0.3);
}
.bg-blue-dark\/40{
  background-color: rgb(21 56 103 / 0.4);
}
.bg-blue-dark\/50{
  background-color: rgb(21 56 103 / 0.5);
}
.bg-blue-dark\/60{
  background-color: rgb(21 56 103 / 0.6);
}
.bg-blue-dark\/70{
  background-color: rgb(21 56 103 / 0.7);
}
.bg-blue-dark\/75{
  background-color: rgb(21 56 103 / 0.75);
}
.bg-blue-dark\/80{
  background-color: rgb(21 56 103 / 0.8);
}
.bg-blue-dark\/90{
  background-color: rgb(21 56 103 / 0.9);
}
.bg-blue-dark\/95{
  background-color: rgb(21 56 103 / 0.95);
}
.bg-blue-dark\/100{
  background-color: rgb(21 56 103 / 1);
}
.bg-blue-lighter\/0{
  background-color: rgb(225 238 255 / 0);
}
.bg-blue-lighter\/5{
  background-color: rgb(225 238 255 / 0.05);
}
.bg-blue-lighter\/10{
  background-color: rgb(225 238 255 / 0.1);
}
.bg-blue-lighter\/20{
  background-color: rgb(225 238 255 / 0.2);
}
.bg-blue-lighter\/25{
  background-color: rgb(225 238 255 / 0.25);
}
.bg-blue-lighter\/30{
  background-color: rgb(225 238 255 / 0.3);
}
.bg-blue-lighter\/40{
  background-color: rgb(225 238 255 / 0.4);
}
.bg-blue-lighter\/50{
  background-color: rgb(225 238 255 / 0.5);
}
.bg-blue-lighter\/60{
  background-color: rgb(225 238 255 / 0.6);
}
.bg-blue-lighter\/70{
  background-color: rgb(225 238 255 / 0.7);
}
.bg-blue-lighter\/75{
  background-color: rgb(225 238 255 / 0.75);
}
.bg-blue-lighter\/80{
  background-color: rgb(225 238 255 / 0.8);
}
.bg-blue-lighter\/90{
  background-color: rgb(225 238 255 / 0.9);
}
.bg-blue-lighter\/95{
  background-color: rgb(225 238 255 / 0.95);
}
.bg-blue-lighter\/100{
  background-color: rgb(225 238 255 / 1);
}
.bg-black\/0{
  background-color: rgb(0 0 0 / 0);
}
.bg-black\/5{
  background-color: rgb(0 0 0 / 0.05);
}
.bg-black\/10{
  background-color: rgb(0 0 0 / 0.1);
}
.bg-black\/20{
  background-color: rgb(0 0 0 / 0.2);
}
.bg-black\/25{
  background-color: rgb(0 0 0 / 0.25);
}
.bg-black\/30{
  background-color: rgb(0 0 0 / 0.3);
}
.bg-black\/40{
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/50{
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/60{
  background-color: rgb(0 0 0 / 0.6);
}
.bg-black\/70{
  background-color: rgb(0 0 0 / 0.7);
}
.bg-black\/75{
  background-color: rgb(0 0 0 / 0.75);
}
.bg-black\/80{
  background-color: rgb(0 0 0 / 0.8);
}
.bg-black\/90{
  background-color: rgb(0 0 0 / 0.9);
}
.bg-black\/95{
  background-color: rgb(0 0 0 / 0.95);
}
.bg-black\/100{
  background-color: rgb(0 0 0 / 1);
}
.bg-grey\/0{
  background-color: rgb(217 217 217 / 0);
}
.bg-grey\/5{
  background-color: rgb(217 217 217 / 0.05);
}
.bg-grey\/10{
  background-color: rgb(217 217 217 / 0.1);
}
.bg-grey\/20{
  background-color: rgb(217 217 217 / 0.2);
}
.bg-grey\/25{
  background-color: rgb(217 217 217 / 0.25);
}
.bg-grey\/30{
  background-color: rgb(217 217 217 / 0.3);
}
.bg-grey\/40{
  background-color: rgb(217 217 217 / 0.4);
}
.bg-grey\/50{
  background-color: rgb(217 217 217 / 0.5);
}
.bg-grey\/60{
  background-color: rgb(217 217 217 / 0.6);
}
.bg-grey\/70{
  background-color: rgb(217 217 217 / 0.7);
}
.bg-grey\/75{
  background-color: rgb(217 217 217 / 0.75);
}
.bg-grey\/80{
  background-color: rgb(217 217 217 / 0.8);
}
.bg-grey\/90{
  background-color: rgb(217 217 217 / 0.9);
}
.bg-grey\/95{
  background-color: rgb(217 217 217 / 0.95);
}
.bg-grey\/100{
  background-color: rgb(217 217 217 / 1);
}
.bg-grey-lighest\/0{
  background-color: rgb(249 249 249 / 0);
}
.bg-grey-lighest\/5{
  background-color: rgb(249 249 249 / 0.05);
}
.bg-grey-lighest\/10{
  background-color: rgb(249 249 249 / 0.1);
}
.bg-grey-lighest\/20{
  background-color: rgb(249 249 249 / 0.2);
}
.bg-grey-lighest\/25{
  background-color: rgb(249 249 249 / 0.25);
}
.bg-grey-lighest\/30{
  background-color: rgb(249 249 249 / 0.3);
}
.bg-grey-lighest\/40{
  background-color: rgb(249 249 249 / 0.4);
}
.bg-grey-lighest\/50{
  background-color: rgb(249 249 249 / 0.5);
}
.bg-grey-lighest\/60{
  background-color: rgb(249 249 249 / 0.6);
}
.bg-grey-lighest\/70{
  background-color: rgb(249 249 249 / 0.7);
}
.bg-grey-lighest\/75{
  background-color: rgb(249 249 249 / 0.75);
}
.bg-grey-lighest\/80{
  background-color: rgb(249 249 249 / 0.8);
}
.bg-grey-lighest\/90{
  background-color: rgb(249 249 249 / 0.9);
}
.bg-grey-lighest\/95{
  background-color: rgb(249 249 249 / 0.95);
}
.bg-grey-lighest\/100{
  background-color: rgb(249 249 249 / 1);
}
.bg-grey-light\/0{
  background-color: rgb(232 232 232 / 0);
}
.bg-grey-light\/5{
  background-color: rgb(232 232 232 / 0.05);
}
.bg-grey-light\/10{
  background-color: rgb(232 232 232 / 0.1);
}
.bg-grey-light\/20{
  background-color: rgb(232 232 232 / 0.2);
}
.bg-grey-light\/25{
  background-color: rgb(232 232 232 / 0.25);
}
.bg-grey-light\/30{
  background-color: rgb(232 232 232 / 0.3);
}
.bg-grey-light\/40{
  background-color: rgb(232 232 232 / 0.4);
}
.bg-grey-light\/50{
  background-color: rgb(232 232 232 / 0.5);
}
.bg-grey-light\/60{
  background-color: rgb(232 232 232 / 0.6);
}
.bg-grey-light\/70{
  background-color: rgb(232 232 232 / 0.7);
}
.bg-grey-light\/75{
  background-color: rgb(232 232 232 / 0.75);
}
.bg-grey-light\/80{
  background-color: rgb(232 232 232 / 0.8);
}
.bg-grey-light\/90{
  background-color: rgb(232 232 232 / 0.9);
}
.bg-grey-light\/95{
  background-color: rgb(232 232 232 / 0.95);
}
.bg-grey-light\/100{
  background-color: rgb(232 232 232 / 1);
}
.bg-grey-medium\/0{
  background-color: rgb(221 221 221 / 0);
}
.bg-grey-medium\/5{
  background-color: rgb(221 221 221 / 0.05);
}
.bg-grey-medium\/10{
  background-color: rgb(221 221 221 / 0.1);
}
.bg-grey-medium\/20{
  background-color: rgb(221 221 221 / 0.2);
}
.bg-grey-medium\/25{
  background-color: rgb(221 221 221 / 0.25);
}
.bg-grey-medium\/30{
  background-color: rgb(221 221 221 / 0.3);
}
.bg-grey-medium\/40{
  background-color: rgb(221 221 221 / 0.4);
}
.bg-grey-medium\/50{
  background-color: rgb(221 221 221 / 0.5);
}
.bg-grey-medium\/60{
  background-color: rgb(221 221 221 / 0.6);
}
.bg-grey-medium\/70{
  background-color: rgb(221 221 221 / 0.7);
}
.bg-grey-medium\/75{
  background-color: rgb(221 221 221 / 0.75);
}
.bg-grey-medium\/80{
  background-color: rgb(221 221 221 / 0.8);
}
.bg-grey-medium\/90{
  background-color: rgb(221 221 221 / 0.9);
}
.bg-grey-medium\/95{
  background-color: rgb(221 221 221 / 0.95);
}
.bg-grey-medium\/100{
  background-color: rgb(221 221 221 / 1);
}
.bg-grey-dark\/0{
  background-color: rgb(92 92 92 / 0);
}
.bg-grey-dark\/5{
  background-color: rgb(92 92 92 / 0.05);
}
.bg-grey-dark\/10{
  background-color: rgb(92 92 92 / 0.1);
}
.bg-grey-dark\/20{
  background-color: rgb(92 92 92 / 0.2);
}
.bg-grey-dark\/25{
  background-color: rgb(92 92 92 / 0.25);
}
.bg-grey-dark\/30{
  background-color: rgb(92 92 92 / 0.3);
}
.bg-grey-dark\/40{
  background-color: rgb(92 92 92 / 0.4);
}
.bg-grey-dark\/50{
  background-color: rgb(92 92 92 / 0.5);
}
.bg-grey-dark\/60{
  background-color: rgb(92 92 92 / 0.6);
}
.bg-grey-dark\/70{
  background-color: rgb(92 92 92 / 0.7);
}
.bg-grey-dark\/75{
  background-color: rgb(92 92 92 / 0.75);
}
.bg-grey-dark\/80{
  background-color: rgb(92 92 92 / 0.8);
}
.bg-grey-dark\/90{
  background-color: rgb(92 92 92 / 0.9);
}
.bg-grey-dark\/95{
  background-color: rgb(92 92 92 / 0.95);
}
.bg-grey-dark\/100{
  background-color: rgb(92 92 92 / 1);
}
.bg-grey-bg\/0{
  background-color: rgb(238 238 238 / 0);
}
.bg-grey-bg\/5{
  background-color: rgb(238 238 238 / 0.05);
}
.bg-grey-bg\/10{
  background-color: rgb(238 238 238 / 0.1);
}
.bg-grey-bg\/20{
  background-color: rgb(238 238 238 / 0.2);
}
.bg-grey-bg\/25{
  background-color: rgb(238 238 238 / 0.25);
}
.bg-grey-bg\/30{
  background-color: rgb(238 238 238 / 0.3);
}
.bg-grey-bg\/40{
  background-color: rgb(238 238 238 / 0.4);
}
.bg-grey-bg\/50{
  background-color: rgb(238 238 238 / 0.5);
}
.bg-grey-bg\/60{
  background-color: rgb(238 238 238 / 0.6);
}
.bg-grey-bg\/70{
  background-color: rgb(238 238 238 / 0.7);
}
.bg-grey-bg\/75{
  background-color: rgb(238 238 238 / 0.75);
}
.bg-grey-bg\/80{
  background-color: rgb(238 238 238 / 0.8);
}
.bg-grey-bg\/90{
  background-color: rgb(238 238 238 / 0.9);
}
.bg-grey-bg\/95{
  background-color: rgb(238 238 238 / 0.95);
}
.bg-grey-bg\/100{
  background-color: rgb(238 238 238 / 1);
}
.bg-opacity-0{
  --tw-bg-opacity: 0;
}
.bg-opacity-5{
  --tw-bg-opacity: 0.05;
}
.bg-opacity-10{
  --tw-bg-opacity: 0.1;
}
.bg-opacity-20{
  --tw-bg-opacity: 0.2;
}
.bg-opacity-25{
  --tw-bg-opacity: 0.25;
}
.bg-opacity-30{
  --tw-bg-opacity: 0.3;
}
.bg-opacity-40{
  --tw-bg-opacity: 0.4;
}
.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}
.bg-opacity-60{
  --tw-bg-opacity: 0.6;
}
.bg-opacity-70{
  --tw-bg-opacity: 0.7;
}
.bg-opacity-75{
  --tw-bg-opacity: 0.75;
}
.bg-opacity-80{
  --tw-bg-opacity: 0.8;
}
.bg-opacity-90{
  --tw-bg-opacity: 0.9;
}
.bg-opacity-95{
  --tw-bg-opacity: 0.95;
}
.bg-opacity-100{
  --tw-bg-opacity: 1;
}
.bg-none{
  background-image: none;
}
.bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.bg-gradient-to-tr{
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-bl{
  background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
}
.bg-gradient-to-l{
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.bg-gradient-to-tl{
  background-image: linear-gradient(to top left, var(--tw-gradient-stops));
}
.from-blue-dark{
  --tw-gradient-from: #153867;
  --tw-gradient-to: rgb(21 56 103 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue{
  --tw-gradient-to: #004C97;
}
.bg-auto{
  background-size: auto;
}
.bg-cover{
  background-size: cover;
}
.bg-contain{
  background-size: contain;
}
.bg-fixed{
  background-attachment: fixed;
}
.bg-local{
  background-attachment: local;
}
.bg-scroll{
  background-attachment: scroll;
}
.bg-clip-border{
  background-clip: border-box;
}
.bg-clip-padding{
  background-clip: padding-box;
}
.bg-clip-content{
  background-clip: content-box;
}
.bg-clip-text{
  -webkit-background-clip: text;
          background-clip: text;
}
.bg-bottom{
  background-position: bottom;
}
.bg-center{
  background-position: center;
}
.bg-left{
  background-position: left;
}
.bg-left-bottom{
  background-position: left bottom;
}
.bg-left-top{
  background-position: left top;
}
.bg-right{
  background-position: right;
}
.bg-right-bottom{
  background-position: right bottom;
}
.bg-right-top{
  background-position: right top;
}
.bg-top{
  background-position: top;
}
.bg-repeat{
  background-repeat: repeat;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.bg-repeat-x{
  background-repeat: repeat-x;
}
.bg-repeat-y{
  background-repeat: repeat-y;
}
.bg-repeat-round{
  background-repeat: round;
}
.bg-repeat-space{
  background-repeat: space;
}
.bg-origin-border{
  background-origin: border-box;
}
.bg-origin-padding{
  background-origin: padding-box;
}
.bg-origin-content{
  background-origin: content-box;
}
.fill-white{
  fill: #FFFFFF;
}
.fill-blue{
  fill: #004C97;
}
.fill-blue-light{
  fill: #A7C3E8;
}
.stroke-white{
  stroke: #FFFFFF;
}
.stroke-blue{
  stroke: #004C97;
}
.stroke-blue-light{
  stroke: #A7C3E8;
}
.stroke-1{
  stroke-width: 1;
}
.stroke-2{
  stroke-width: 2;
}
.object-contain{
  object-fit: contain;
}
.object-cover{
  object-fit: cover;
}
.object-center{
  object-position: center;
}
.object-top{
  object-position: top;
}
.p-2{
  padding: 0.5rem;
}
.p-4{
  padding: 1rem;
}
.p-8{
  padding: 2rem;
}
.p-6{
  padding: 1.5rem;
}
.py-48{
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-7{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.pt-4{
  padding-top: 1rem;
}
.pr-\[8\%\]{
  padding-right: 8%;
}
.pr-8{
  padding-right: 2rem;
}
.pl-7{
  padding-left: 1.75rem;
}
.pr-16{
  padding-right: 4rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.pl-4{
  padding-left: 1rem;
}
.pt-\[10\%\]{
  padding-top: 10%;
}
.pt-2{
  padding-top: 0.5rem;
}
.pb-14{
  padding-bottom: 3.5rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pt-1{
  padding-top: 0.25rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pt-12{
  padding-top: 3rem;
}
.pb-16{
  padding-bottom: 4rem;
}
.pt-14{
  padding-top: 3.5rem;
}
.pt-9{
  padding-top: 2.25rem;
}
.pb-9{
  padding-bottom: 2.25rem;
}
.pt-16{
  padding-top: 4rem;
}
.pb-12{
  padding-bottom: 3rem;
}
.pr-\[17px\]{
  padding-right: 17px;
}
.pb-24{
  padding-bottom: 6rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-justify{
  text-align: justify;
}
.text-start{
  text-align: start;
}
.text-end{
  text-align: end;
}
.font-roboto{
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
}
.text-xs{
  font-size: 0.75rem;
}
.text-sm{
  font-size: 0.875rem;
}
.text-base{
  font-size: 1rem;
}
.text-lg{
  font-size: 1.125rem;
}
.text-xl{
  font-size: 1.375rem;
}
.text-2xl{
  font-size: 1.5625rem;
}
.text-3xl{
  font-size: 1.875rem;
}
.text-4xl{
  font-size: 3.125rem;
}
.text-5xl{
  font-size: 3.75rem;
}
.text-6xl{
  font-size: 4.375rem;
}
.font-black{
  font-weight: 900;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.font-normal{
  font-weight: 400;
}
.font-extrabold{
  font-weight: 800;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.capitalize{
  text-transform: capitalize;
}
.normal-case{
  text-transform: none;
}
.italic{
  font-style: italic;
}
.leading-normal{
  line-height: 1.5;
}
.leading-snug{
  line-height: 1.375;
}
.leading-8{
  line-height: 2rem;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-white-fade75{
  color: rgba(255, 255, 255, 0.75);
}
.text-blue{
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.text-blue-brand{
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.text-blue-light{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}
.text-blue-dark{
  --tw-text-opacity: 1;
  color: rgb(21 56 103 / var(--tw-text-opacity));
}
.text-blue-lighter{
  --tw-text-opacity: 1;
  color: rgb(225 238 255 / var(--tw-text-opacity));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-grey{
  --tw-text-opacity: 1;
  color: rgb(217 217 217 / var(--tw-text-opacity));
}
.text-grey-lighest{
  --tw-text-opacity: 1;
  color: rgb(249 249 249 / var(--tw-text-opacity));
}
.text-grey-light{
  --tw-text-opacity: 1;
  color: rgb(232 232 232 / var(--tw-text-opacity));
}
.text-grey-medium{
  --tw-text-opacity: 1;
  color: rgb(221 221 221 / var(--tw-text-opacity));
}
.text-grey-dark{
  --tw-text-opacity: 1;
  color: rgb(92 92 92 / var(--tw-text-opacity));
}
.text-grey-bg{
  --tw-text-opacity: 1;
  color: rgb(238 238 238 / var(--tw-text-opacity));
}
.text-white\/0{
  color: rgb(255 255 255 / 0);
}
.text-white\/5{
  color: rgb(255 255 255 / 0.05);
}
.text-white\/10{
  color: rgb(255 255 255 / 0.1);
}
.text-white\/20{
  color: rgb(255 255 255 / 0.2);
}
.text-white\/25{
  color: rgb(255 255 255 / 0.25);
}
.text-white\/30{
  color: rgb(255 255 255 / 0.3);
}
.text-white\/40{
  color: rgb(255 255 255 / 0.4);
}
.text-white\/50{
  color: rgb(255 255 255 / 0.5);
}
.text-white\/60{
  color: rgb(255 255 255 / 0.6);
}
.text-white\/70{
  color: rgb(255 255 255 / 0.7);
}
.text-white\/75{
  color: rgb(255 255 255 / 0.75);
}
.text-white\/80{
  color: rgb(255 255 255 / 0.8);
}
.text-white\/90{
  color: rgb(255 255 255 / 0.9);
}
.text-white\/95{
  color: rgb(255 255 255 / 0.95);
}
.text-white\/100{
  color: rgb(255 255 255 / 1);
}
.text-white-fade75\/0{
  color: rgb(255 255 255 / 0);
}
.text-white-fade75\/5{
  color: rgb(255 255 255 / 0.05);
}
.text-white-fade75\/10{
  color: rgb(255 255 255 / 0.1);
}
.text-white-fade75\/20{
  color: rgb(255 255 255 / 0.2);
}
.text-white-fade75\/25{
  color: rgb(255 255 255 / 0.25);
}
.text-white-fade75\/30{
  color: rgb(255 255 255 / 0.3);
}
.text-white-fade75\/40{
  color: rgb(255 255 255 / 0.4);
}
.text-white-fade75\/50{
  color: rgb(255 255 255 / 0.5);
}
.text-white-fade75\/60{
  color: rgb(255 255 255 / 0.6);
}
.text-white-fade75\/70{
  color: rgb(255 255 255 / 0.7);
}
.text-white-fade75\/75{
  color: rgb(255 255 255 / 0.75);
}
.text-white-fade75\/80{
  color: rgb(255 255 255 / 0.8);
}
.text-white-fade75\/90{
  color: rgb(255 255 255 / 0.9);
}
.text-white-fade75\/95{
  color: rgb(255 255 255 / 0.95);
}
.text-white-fade75\/100{
  color: rgb(255 255 255 / 1);
}
.text-blue\/0{
  color: rgb(0 76 151 / 0);
}
.text-blue\/5{
  color: rgb(0 76 151 / 0.05);
}
.text-blue\/10{
  color: rgb(0 76 151 / 0.1);
}
.text-blue\/20{
  color: rgb(0 76 151 / 0.2);
}
.text-blue\/25{
  color: rgb(0 76 151 / 0.25);
}
.text-blue\/30{
  color: rgb(0 76 151 / 0.3);
}
.text-blue\/40{
  color: rgb(0 76 151 / 0.4);
}
.text-blue\/50{
  color: rgb(0 76 151 / 0.5);
}
.text-blue\/60{
  color: rgb(0 76 151 / 0.6);
}
.text-blue\/70{
  color: rgb(0 76 151 / 0.7);
}
.text-blue\/75{
  color: rgb(0 76 151 / 0.75);
}
.text-blue\/80{
  color: rgb(0 76 151 / 0.8);
}
.text-blue\/90{
  color: rgb(0 76 151 / 0.9);
}
.text-blue\/95{
  color: rgb(0 76 151 / 0.95);
}
.text-blue\/100{
  color: rgb(0 76 151 / 1);
}
.text-blue-brand\/0{
  color: rgb(0 76 151 / 0);
}
.text-blue-brand\/5{
  color: rgb(0 76 151 / 0.05);
}
.text-blue-brand\/10{
  color: rgb(0 76 151 / 0.1);
}
.text-blue-brand\/20{
  color: rgb(0 76 151 / 0.2);
}
.text-blue-brand\/25{
  color: rgb(0 76 151 / 0.25);
}
.text-blue-brand\/30{
  color: rgb(0 76 151 / 0.3);
}
.text-blue-brand\/40{
  color: rgb(0 76 151 / 0.4);
}
.text-blue-brand\/50{
  color: rgb(0 76 151 / 0.5);
}
.text-blue-brand\/60{
  color: rgb(0 76 151 / 0.6);
}
.text-blue-brand\/70{
  color: rgb(0 76 151 / 0.7);
}
.text-blue-brand\/75{
  color: rgb(0 76 151 / 0.75);
}
.text-blue-brand\/80{
  color: rgb(0 76 151 / 0.8);
}
.text-blue-brand\/90{
  color: rgb(0 76 151 / 0.9);
}
.text-blue-brand\/95{
  color: rgb(0 76 151 / 0.95);
}
.text-blue-brand\/100{
  color: rgb(0 76 151 / 1);
}
.text-blue-light\/0{
  color: rgb(167 195 232 / 0);
}
.text-blue-light\/5{
  color: rgb(167 195 232 / 0.05);
}
.text-blue-light\/10{
  color: rgb(167 195 232 / 0.1);
}
.text-blue-light\/20{
  color: rgb(167 195 232 / 0.2);
}
.text-blue-light\/25{
  color: rgb(167 195 232 / 0.25);
}
.text-blue-light\/30{
  color: rgb(167 195 232 / 0.3);
}
.text-blue-light\/40{
  color: rgb(167 195 232 / 0.4);
}
.text-blue-light\/50{
  color: rgb(167 195 232 / 0.5);
}
.text-blue-light\/60{
  color: rgb(167 195 232 / 0.6);
}
.text-blue-light\/70{
  color: rgb(167 195 232 / 0.7);
}
.text-blue-light\/75{
  color: rgb(167 195 232 / 0.75);
}
.text-blue-light\/80{
  color: rgb(167 195 232 / 0.8);
}
.text-blue-light\/90{
  color: rgb(167 195 232 / 0.9);
}
.text-blue-light\/95{
  color: rgb(167 195 232 / 0.95);
}
.text-blue-light\/100{
  color: rgb(167 195 232 / 1);
}
.text-blue-dark\/0{
  color: rgb(21 56 103 / 0);
}
.text-blue-dark\/5{
  color: rgb(21 56 103 / 0.05);
}
.text-blue-dark\/10{
  color: rgb(21 56 103 / 0.1);
}
.text-blue-dark\/20{
  color: rgb(21 56 103 / 0.2);
}
.text-blue-dark\/25{
  color: rgb(21 56 103 / 0.25);
}
.text-blue-dark\/30{
  color: rgb(21 56 103 / 0.3);
}
.text-blue-dark\/40{
  color: rgb(21 56 103 / 0.4);
}
.text-blue-dark\/50{
  color: rgb(21 56 103 / 0.5);
}
.text-blue-dark\/60{
  color: rgb(21 56 103 / 0.6);
}
.text-blue-dark\/70{
  color: rgb(21 56 103 / 0.7);
}
.text-blue-dark\/75{
  color: rgb(21 56 103 / 0.75);
}
.text-blue-dark\/80{
  color: rgb(21 56 103 / 0.8);
}
.text-blue-dark\/90{
  color: rgb(21 56 103 / 0.9);
}
.text-blue-dark\/95{
  color: rgb(21 56 103 / 0.95);
}
.text-blue-dark\/100{
  color: rgb(21 56 103 / 1);
}
.text-blue-lighter\/0{
  color: rgb(225 238 255 / 0);
}
.text-blue-lighter\/5{
  color: rgb(225 238 255 / 0.05);
}
.text-blue-lighter\/10{
  color: rgb(225 238 255 / 0.1);
}
.text-blue-lighter\/20{
  color: rgb(225 238 255 / 0.2);
}
.text-blue-lighter\/25{
  color: rgb(225 238 255 / 0.25);
}
.text-blue-lighter\/30{
  color: rgb(225 238 255 / 0.3);
}
.text-blue-lighter\/40{
  color: rgb(225 238 255 / 0.4);
}
.text-blue-lighter\/50{
  color: rgb(225 238 255 / 0.5);
}
.text-blue-lighter\/60{
  color: rgb(225 238 255 / 0.6);
}
.text-blue-lighter\/70{
  color: rgb(225 238 255 / 0.7);
}
.text-blue-lighter\/75{
  color: rgb(225 238 255 / 0.75);
}
.text-blue-lighter\/80{
  color: rgb(225 238 255 / 0.8);
}
.text-blue-lighter\/90{
  color: rgb(225 238 255 / 0.9);
}
.text-blue-lighter\/95{
  color: rgb(225 238 255 / 0.95);
}
.text-blue-lighter\/100{
  color: rgb(225 238 255 / 1);
}
.text-black\/0{
  color: rgb(0 0 0 / 0);
}
.text-black\/5{
  color: rgb(0 0 0 / 0.05);
}
.text-black\/10{
  color: rgb(0 0 0 / 0.1);
}
.text-black\/20{
  color: rgb(0 0 0 / 0.2);
}
.text-black\/25{
  color: rgb(0 0 0 / 0.25);
}
.text-black\/30{
  color: rgb(0 0 0 / 0.3);
}
.text-black\/40{
  color: rgb(0 0 0 / 0.4);
}
.text-black\/50{
  color: rgb(0 0 0 / 0.5);
}
.text-black\/60{
  color: rgb(0 0 0 / 0.6);
}
.text-black\/70{
  color: rgb(0 0 0 / 0.7);
}
.text-black\/75{
  color: rgb(0 0 0 / 0.75);
}
.text-black\/80{
  color: rgb(0 0 0 / 0.8);
}
.text-black\/90{
  color: rgb(0 0 0 / 0.9);
}
.text-black\/95{
  color: rgb(0 0 0 / 0.95);
}
.text-black\/100{
  color: rgb(0 0 0 / 1);
}
.text-grey\/0{
  color: rgb(217 217 217 / 0);
}
.text-grey\/5{
  color: rgb(217 217 217 / 0.05);
}
.text-grey\/10{
  color: rgb(217 217 217 / 0.1);
}
.text-grey\/20{
  color: rgb(217 217 217 / 0.2);
}
.text-grey\/25{
  color: rgb(217 217 217 / 0.25);
}
.text-grey\/30{
  color: rgb(217 217 217 / 0.3);
}
.text-grey\/40{
  color: rgb(217 217 217 / 0.4);
}
.text-grey\/50{
  color: rgb(217 217 217 / 0.5);
}
.text-grey\/60{
  color: rgb(217 217 217 / 0.6);
}
.text-grey\/70{
  color: rgb(217 217 217 / 0.7);
}
.text-grey\/75{
  color: rgb(217 217 217 / 0.75);
}
.text-grey\/80{
  color: rgb(217 217 217 / 0.8);
}
.text-grey\/90{
  color: rgb(217 217 217 / 0.9);
}
.text-grey\/95{
  color: rgb(217 217 217 / 0.95);
}
.text-grey\/100{
  color: rgb(217 217 217 / 1);
}
.text-grey-lighest\/0{
  color: rgb(249 249 249 / 0);
}
.text-grey-lighest\/5{
  color: rgb(249 249 249 / 0.05);
}
.text-grey-lighest\/10{
  color: rgb(249 249 249 / 0.1);
}
.text-grey-lighest\/20{
  color: rgb(249 249 249 / 0.2);
}
.text-grey-lighest\/25{
  color: rgb(249 249 249 / 0.25);
}
.text-grey-lighest\/30{
  color: rgb(249 249 249 / 0.3);
}
.text-grey-lighest\/40{
  color: rgb(249 249 249 / 0.4);
}
.text-grey-lighest\/50{
  color: rgb(249 249 249 / 0.5);
}
.text-grey-lighest\/60{
  color: rgb(249 249 249 / 0.6);
}
.text-grey-lighest\/70{
  color: rgb(249 249 249 / 0.7);
}
.text-grey-lighest\/75{
  color: rgb(249 249 249 / 0.75);
}
.text-grey-lighest\/80{
  color: rgb(249 249 249 / 0.8);
}
.text-grey-lighest\/90{
  color: rgb(249 249 249 / 0.9);
}
.text-grey-lighest\/95{
  color: rgb(249 249 249 / 0.95);
}
.text-grey-lighest\/100{
  color: rgb(249 249 249 / 1);
}
.text-grey-light\/0{
  color: rgb(232 232 232 / 0);
}
.text-grey-light\/5{
  color: rgb(232 232 232 / 0.05);
}
.text-grey-light\/10{
  color: rgb(232 232 232 / 0.1);
}
.text-grey-light\/20{
  color: rgb(232 232 232 / 0.2);
}
.text-grey-light\/25{
  color: rgb(232 232 232 / 0.25);
}
.text-grey-light\/30{
  color: rgb(232 232 232 / 0.3);
}
.text-grey-light\/40{
  color: rgb(232 232 232 / 0.4);
}
.text-grey-light\/50{
  color: rgb(232 232 232 / 0.5);
}
.text-grey-light\/60{
  color: rgb(232 232 232 / 0.6);
}
.text-grey-light\/70{
  color: rgb(232 232 232 / 0.7);
}
.text-grey-light\/75{
  color: rgb(232 232 232 / 0.75);
}
.text-grey-light\/80{
  color: rgb(232 232 232 / 0.8);
}
.text-grey-light\/90{
  color: rgb(232 232 232 / 0.9);
}
.text-grey-light\/95{
  color: rgb(232 232 232 / 0.95);
}
.text-grey-light\/100{
  color: rgb(232 232 232 / 1);
}
.text-grey-medium\/0{
  color: rgb(221 221 221 / 0);
}
.text-grey-medium\/5{
  color: rgb(221 221 221 / 0.05);
}
.text-grey-medium\/10{
  color: rgb(221 221 221 / 0.1);
}
.text-grey-medium\/20{
  color: rgb(221 221 221 / 0.2);
}
.text-grey-medium\/25{
  color: rgb(221 221 221 / 0.25);
}
.text-grey-medium\/30{
  color: rgb(221 221 221 / 0.3);
}
.text-grey-medium\/40{
  color: rgb(221 221 221 / 0.4);
}
.text-grey-medium\/50{
  color: rgb(221 221 221 / 0.5);
}
.text-grey-medium\/60{
  color: rgb(221 221 221 / 0.6);
}
.text-grey-medium\/70{
  color: rgb(221 221 221 / 0.7);
}
.text-grey-medium\/75{
  color: rgb(221 221 221 / 0.75);
}
.text-grey-medium\/80{
  color: rgb(221 221 221 / 0.8);
}
.text-grey-medium\/90{
  color: rgb(221 221 221 / 0.9);
}
.text-grey-medium\/95{
  color: rgb(221 221 221 / 0.95);
}
.text-grey-medium\/100{
  color: rgb(221 221 221 / 1);
}
.text-grey-dark\/0{
  color: rgb(92 92 92 / 0);
}
.text-grey-dark\/5{
  color: rgb(92 92 92 / 0.05);
}
.text-grey-dark\/10{
  color: rgb(92 92 92 / 0.1);
}
.text-grey-dark\/20{
  color: rgb(92 92 92 / 0.2);
}
.text-grey-dark\/25{
  color: rgb(92 92 92 / 0.25);
}
.text-grey-dark\/30{
  color: rgb(92 92 92 / 0.3);
}
.text-grey-dark\/40{
  color: rgb(92 92 92 / 0.4);
}
.text-grey-dark\/50{
  color: rgb(92 92 92 / 0.5);
}
.text-grey-dark\/60{
  color: rgb(92 92 92 / 0.6);
}
.text-grey-dark\/70{
  color: rgb(92 92 92 / 0.7);
}
.text-grey-dark\/75{
  color: rgb(92 92 92 / 0.75);
}
.text-grey-dark\/80{
  color: rgb(92 92 92 / 0.8);
}
.text-grey-dark\/90{
  color: rgb(92 92 92 / 0.9);
}
.text-grey-dark\/95{
  color: rgb(92 92 92 / 0.95);
}
.text-grey-dark\/100{
  color: rgb(92 92 92 / 1);
}
.text-grey-bg\/0{
  color: rgb(238 238 238 / 0);
}
.text-grey-bg\/5{
  color: rgb(238 238 238 / 0.05);
}
.text-grey-bg\/10{
  color: rgb(238 238 238 / 0.1);
}
.text-grey-bg\/20{
  color: rgb(238 238 238 / 0.2);
}
.text-grey-bg\/25{
  color: rgb(238 238 238 / 0.25);
}
.text-grey-bg\/30{
  color: rgb(238 238 238 / 0.3);
}
.text-grey-bg\/40{
  color: rgb(238 238 238 / 0.4);
}
.text-grey-bg\/50{
  color: rgb(238 238 238 / 0.5);
}
.text-grey-bg\/60{
  color: rgb(238 238 238 / 0.6);
}
.text-grey-bg\/70{
  color: rgb(238 238 238 / 0.7);
}
.text-grey-bg\/75{
  color: rgb(238 238 238 / 0.75);
}
.text-grey-bg\/80{
  color: rgb(238 238 238 / 0.8);
}
.text-grey-bg\/90{
  color: rgb(238 238 238 / 0.9);
}
.text-grey-bg\/95{
  color: rgb(238 238 238 / 0.95);
}
.text-grey-bg\/100{
  color: rgb(238 238 238 / 1);
}
.text-opacity-0{
  --tw-text-opacity: 0;
}
.text-opacity-5{
  --tw-text-opacity: 0.05;
}
.text-opacity-10{
  --tw-text-opacity: 0.1;
}
.text-opacity-20{
  --tw-text-opacity: 0.2;
}
.text-opacity-25{
  --tw-text-opacity: 0.25;
}
.text-opacity-30{
  --tw-text-opacity: 0.3;
}
.text-opacity-40{
  --tw-text-opacity: 0.4;
}
.text-opacity-50{
  --tw-text-opacity: 0.5;
}
.text-opacity-60{
  --tw-text-opacity: 0.6;
}
.text-opacity-70{
  --tw-text-opacity: 0.7;
}
.text-opacity-75{
  --tw-text-opacity: 0.75;
}
.text-opacity-80{
  --tw-text-opacity: 0.8;
}
.text-opacity-90{
  --tw-text-opacity: 0.9;
}
.text-opacity-95{
  --tw-text-opacity: 0.95;
}
.text-opacity-100{
  --tw-text-opacity: 1;
}
.underline{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.no-underline{
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.decoration-\[3px\]{
  text-decoration-thickness: 3px;
}
.underline-offset-8{
  text-underline-offset: 8px;
}
.bg-blend-normal{
  background-blend-mode: normal;
}
.bg-blend-multiply{
  background-blend-mode: multiply;
}
.bg-blend-screen{
  background-blend-mode: screen;
}
.bg-blend-overlay{
  background-blend-mode: overlay;
}
.bg-blend-darken{
  background-blend-mode: darken;
}
.bg-blend-lighten{
  background-blend-mode: lighten;
}
.bg-blend-color-dodge{
  background-blend-mode: color-dodge;
}
.bg-blend-color-burn{
  background-blend-mode: color-burn;
}
.bg-blend-hard-light{
  background-blend-mode: hard-light;
}
.bg-blend-soft-light{
  background-blend-mode: soft-light;
}
.bg-blend-difference{
  background-blend-mode: difference;
}
.bg-blend-exclusion{
  background-blend-mode: exclusion;
}
.bg-blend-hue{
  background-blend-mode: hue;
}
.bg-blend-saturation{
  background-blend-mode: saturation;
}
.bg-blend-color{
  background-blend-mode: color;
}
.bg-blend-luminosity{
  background-blend-mode: luminosity;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-navigation{
  --tw-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  --tw-shadow-colored: 0px 2px 5px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-blue{
  --tw-shadow-color: #004C97;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-white{
  --tw-shadow-color: #FFFFFF;
  --tw-shadow: var(--tw-shadow-colored);
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\!invert{
  --tw-invert: invert(100%) !important;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\!filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.transition{
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.line-clamp-\[8\]{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}
.line-clamp-\[18\]{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 18;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
/** Common */
/**
 * Common
 */
/**
 * Global
 *
 * NOTE: @apply directives have been converted to their plain CSS equivalents based on
 * standard Tailwind CSS utility values. Custom color/spacing tokens (e.g. max-w-[1376px],
 * stroke-black, stroke-2) have been preserved as CSS custom values where possible.
 */
/*
.spacing-1: 12px
.spacing-1: 12px
.spacing-1: 12px
.spacing-1: 12px

.spacing-2: 16px
.spacing-2: 16px
.spacing-2: 16px
.spacing-2: 16px

.spacing-3: 12px
.spacing-3: 16px
.spacing-3: 24px
.spacing-3: 24px

.spacing-4: 16px
.spacing-4: 16px
.spacing-4: 16px
.spacing-4: 36px

.spacing-5: 16px
.spacing-5: 24px
.spacing-5: 36px
.spacing-5: 44px

.spacing-6: 24px
.spacing-6: 36px
.spacing-6: 44px
.spacing-6: 48px

.spacing-7: 36px
.spacing-7: 44px
.spacing-7: 48px
.spacing-7: 60px

.spacing-8: 44px
.spacing-8: 48px
.spacing-8: 60px
.spacing-8: 72px

.spacing-9: 36px
.spacing-9: 60px
.spacing-9: 72px
.spacing-9: 96px

.spacing-10: 110px
.spacing-10: 110px
.spacing-10: 110px
.spacing-10: 110px

.spacing-11: 48px
.spacing-11: 72px
.spacing-11: 96px
.spacing-11: 120px

.spacing-12: 160px
.spacing-12: 160px
.spacing-12: 160px
.spacing-12: 160px
*/
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
html,
body {
  line-height: 1.5;
}

.theme-blue,
.theme-blue-hover:hover {
  color: #0d4e97;
}

.theme-white,
.theme-white-hover:hover {
  color: #fff;
}

.theme-black,
.theme-black-hover:hover {
  color: #000;
}

.theme-blue-highlight,
.theme-blue-highlight-hover:hover {
  color: #0086ff;
}

.theme-blue-light,
.theme-blue-light-hover:hover {
  color: #80c3ff;
}

.theme-blue-inactive,
.theme-blue-inactive-hover:hover {
  color: #80c3ff;
}

.theme-grey,
.theme-grey-hover:hover {
  color: #e5e5e5;
}

.theme-bg-blue {
  background-color: #0d4e97;
}

.theme-bg-white {
  background-color: #fff;
}

.theme-bg-black {
  background-color: #000;
}

.theme-bg-blue-highlight {
  background-color: #0086ff;
}

.theme-bg-blue-light {
  background-color: #c6ebff;
}

.theme-bg-blue-inactive {
  background-color: #80c3ff;
}

.theme-bg-grey {
  background-color: #f7f7f7;
}

.theme-green,
.theme-green-hover:hover {
  color: #00a676;
}

.theme-bg-green {
  background-color: #00a676;
}

.theme-border-green {
  box-shadow: inset 0 0 0 2px #00a676;
}

.border-round {
  border-radius: 18px;
}

h1,
h2,
h3,
h4 {
  font-family: "Lora", serif;
  font-weight: 500;
}

h5,
h6 {
  font-family: "Roboto";
  text-transform: uppercase;
}

h1 {
  font-size: 36px;
  line-height: 40px;
}

h2 {
  font-size: 28px;
  line-height: 34px;
}

h3 {
  font-size: 22px;
  line-height: 26px;
}

h4 {
  font-size: 20px;
  line-height: 26px;
}

h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
}

h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

p {
  font-family: "Roboto";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.para-2 > p {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 28px;
}

.para-3 > p {
  font-size: 18px;
  line-height: 28px;
}

.para-4 > p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
}

.para-5 > p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 44px;
    line-height: 54px;
  }

  h2 {
    font-size: 34px;
    line-height: 44px;
  }

  h3 {
    font-size: 24px;
    line-height: 28px;
  }

  h6 {
    font-size: 20px;
    line-height: 30px;
  }

  p {
    font-size: 18px;
    line-height: 26px;
  }

  .para-2 > p {
    font-size: 22px;
    line-height: 32px;
  }

  .para-3 > p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 54px;
    line-height: 64px;
  }

  h2 {
    font-size: 44px;
    line-height: 54px;
  }

  h3 {
    font-size: 28px;
    line-height: 32px;
  }

  h4 {
    font-size: 22px;
    line-height: 28px;
  }

  h6 {
    font-size: 22px;
    line-height: 32px;
  }

  p {
    font-size: 18px;
    line-height: 26px;
  }

  .para-2 > p {
    font-size: 20px;
    line-height: 30px;
  }

  .para-3 > p {
    font-size: 22px;
    line-height: 32px;
  }

  .para-5 > p {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (min-width: 1296px) {
  h1 {
    font-size: 74px;
    line-height: 84px;
  }

  h2 {
    font-size: 54px;
    line-height: 64px;
  }

  h3 {
    font-size: 34px;
    line-height: 38px;
  }

  h4 {
    font-size: 22px;
    line-height: 28px;
  }

  h6 {
    font-size: 28px;
    line-height: 38px;
  }

  p {
    font-size: 18px;
    line-height: 26px;
  }

  .para-2 > p {
    font-size: 28px;
    line-height: 38px;
  }

  .para-3 > p {
    font-size: 28px;
    line-height: 38px;
  }

  .para-4 > p {
    font-size: 18px;
    line-height: 22px;
  }
}
.center-text,
.center-text h1,
.center-text h2,
.center-text h3,
.center-text h4,
.center-text h5,
.center-text h6,
.center-text p,
.center-text span {
  text-align: center;
}

.text-preview {
  height: 20px;
}

.spacing-1, .spacing-1-bottom {
  box-sizing: border-box;
  padding-bottom: 12px;
}

.spacing-1-top {
  box-sizing: border-box;
  padding-top: 12px;
}

.spacing-2, .spacing-2-bottom {
  box-sizing: border-box;
  padding-bottom: 16px;
}

.spacing-2-top {
  box-sizing: border-box;
  padding-top: 16px;
}

.spacing-3, .spacing-3-bottom {
  box-sizing: border-box;
  padding-bottom: 12px;
}

.spacing-3-top {
  box-sizing: border-box;
  padding-top: 12px;
}

.spacing-4, .spacing-4-bottom {
  box-sizing: border-box;
  padding-bottom: 16px;
}

.spacing-4-top {
  box-sizing: border-box;
  padding-top: 16px;
}

.spacing-5, .spacing-5-bottom {
  box-sizing: border-box;
  padding-bottom: 16px;
}

.spacing-5-top {
  box-sizing: border-box;
  padding-top: 16px;
}

.spacing-6, .spacing-6-bottom {
  box-sizing: border-box;
  padding-bottom: 24px;
}

.spacing-6-top {
  box-sizing: border-box;
  padding-top: 24px;
}

.spacing-7, .spacing-7-bottom {
  box-sizing: border-box;
  padding-bottom: 36px;
}

.spacing-7-top {
  box-sizing: border-box;
  padding-top: 36px;
}

.spacing-8, .spacing-8-bottom {
  box-sizing: border-box;
  padding-bottom: 44px;
}

.spacing-8-top {
  box-sizing: border-box;
  padding-top: 44px;
}

.spacing-9, .spacing-9-bottom {
  box-sizing: border-box;
  padding-bottom: 36px;
}

.spacing-9-top {
  box-sizing: border-box;
  padding-top: 36px;
}

.spacing-10, .spacing-10-bottom {
  box-sizing: border-box;
  padding-bottom: 110px;
}

.spacing-10-top {
  box-sizing: border-box;
  padding-top: 110px;
}

.spacing-11, .spacing-11-bottom {
  box-sizing: border-box;
  padding-bottom: 48px;
}

.spacing-11-top {
  box-sizing: border-box;
  padding-top: 48px;
}

.spacing-12, .spacing-12-bottom {
  box-sizing: border-box;
  padding-bottom: 160px;
}

.spacing-12-top {
  box-sizing: border-box;
  padding-top: 160px;
}

@media (min-width: 768px) {
  .spacing-1, .spacing-1-bottom {
    box-sizing: border-box;
    padding-bottom: 12px;
  }

  .spacing-1-top {
    box-sizing: border-box;
    padding-top: 12px;
  }

  .spacing-2, .spacing-2-bottom {
    box-sizing: border-box;
    padding-bottom: 16px;
  }

  .spacing-2-top {
    box-sizing: border-box;
    padding-top: 16px;
  }

  .spacing-3, .spacing-3-bottom {
    box-sizing: border-box;
    padding-bottom: 16px;
  }

  .spacing-3-top {
    box-sizing: border-box;
    padding-top: 16px;
  }

  .spacing-4, .spacing-4-bottom {
    box-sizing: border-box;
    padding-bottom: 16px;
  }

  .spacing-4-top {
    box-sizing: border-box;
    padding-top: 16px;
  }

  .spacing-5, .spacing-5-bottom {
    box-sizing: border-box;
    padding-bottom: 24px;
  }

  .spacing-5-top {
    box-sizing: border-box;
    padding-top: 24px;
  }

  .spacing-6, .spacing-6-bottom {
    box-sizing: border-box;
    padding-bottom: 36px;
  }

  .spacing-6-top {
    box-sizing: border-box;
    padding-top: 36px;
  }

  .spacing-7, .spacing-7-bottom {
    box-sizing: border-box;
    padding-bottom: 44px;
  }

  .spacing-7-top {
    box-sizing: border-box;
    padding-top: 44px;
  }

  .spacing-8, .spacing-8-bottom {
    box-sizing: border-box;
    padding-bottom: 48px;
  }

  .spacing-8-top {
    box-sizing: border-box;
    padding-top: 48px;
  }

  .spacing-9, .spacing-9-bottom {
    box-sizing: border-box;
    padding-bottom: 60px;
  }

  .spacing-9-top {
    box-sizing: border-box;
    padding-top: 60px;
  }

  .spacing-10, .spacing-10-bottom {
    box-sizing: border-box;
    padding-bottom: 110px;
  }

  .spacing-10-top {
    box-sizing: border-box;
    padding-top: 110px;
  }

  .spacing-11, .spacing-11-bottom {
    box-sizing: border-box;
    padding-bottom: 72px;
  }

  .spacing-11-top {
    box-sizing: border-box;
    padding-top: 72px;
  }

  .spacing-12, .spacing-12-bottom {
    box-sizing: border-box;
    padding-bottom: 160px;
  }

  .spacing-12-top {
    box-sizing: border-box;
    padding-top: 160px;
  }
}
@media (min-width: 1024px) {
  .spacing-1, .spacing-1-bottom {
    box-sizing: border-box;
    padding-bottom: 12px;
  }

  .spacing-1-top {
    box-sizing: border-box;
    padding-top: 12px;
  }

  .spacing-2, .spacing-2-bottom {
    box-sizing: border-box;
    padding-bottom: 16px;
  }

  .spacing-2-top {
    box-sizing: border-box;
    padding-top: 16px;
  }

  .spacing-3, .spacing-3-bottom {
    box-sizing: border-box;
    padding-bottom: 24px;
  }

  .spacing-3-top {
    box-sizing: border-box;
    padding-top: 24px;
  }

  .spacing-4, .spacing-4-bottom {
    box-sizing: border-box;
    padding-bottom: 16px;
  }

  .spacing-4-top {
    box-sizing: border-box;
    padding-top: 16px;
  }

  .spacing-5, .spacing-5-bottom {
    box-sizing: border-box;
    padding-bottom: 36px;
  }

  .spacing-5-top {
    box-sizing: border-box;
    padding-top: 36px;
  }

  .spacing-6, .spacing-6-bottom {
    box-sizing: border-box;
    padding-bottom: 44px;
  }

  .spacing-6-top {
    box-sizing: border-box;
    padding-top: 44px;
  }

  .spacing-7, .spacing-7-bottom {
    box-sizing: border-box;
    padding-bottom: 48px;
  }

  .spacing-7-top {
    box-sizing: border-box;
    padding-top: 48px;
  }

  .spacing-8, .spacing-8-bottom {
    box-sizing: border-box;
    padding-bottom: 60px;
  }

  .spacing-8-top {
    box-sizing: border-box;
    padding-top: 60px;
  }

  .spacing-9, .spacing-9-bottom {
    box-sizing: border-box;
    padding-bottom: 72px;
  }

  .spacing-9-top {
    box-sizing: border-box;
    padding-top: 72px;
  }

  .spacing-10, .spacing-10-bottom {
    box-sizing: border-box;
    padding-bottom: 110px;
  }

  .spacing-10-top {
    box-sizing: border-box;
    padding-top: 110px;
  }

  .spacing-11, .spacing-11-bottom {
    box-sizing: border-box;
    padding-bottom: 96px;
  }

  .spacing-11-top {
    box-sizing: border-box;
    padding-top: 96px;
  }

  .spacing-12, .spacing-12-bottom {
    box-sizing: border-box;
    padding-bottom: 160px;
  }

  .spacing-12-top {
    box-sizing: border-box;
    padding-top: 160px;
  }
}
@media (min-width: 1296px) {
  .spacing-1, .spacing-1-bottom {
    box-sizing: border-box;
    padding-bottom: 12px;
  }

  .spacing-1-top {
    box-sizing: border-box;
    padding-top: 12px;
  }

  .spacing-2, .spacing-2-bottom {
    box-sizing: border-box;
    padding-bottom: 16px;
  }

  .spacing-2-top {
    box-sizing: border-box;
    padding-top: 16px;
  }

  .spacing-3, .spacing-3-bottom {
    box-sizing: border-box;
    padding-bottom: 24px;
  }

  .spacing-3-top {
    box-sizing: border-box;
    padding-top: 24px;
  }

  .spacing-4, .spacing-4-bottom {
    box-sizing: border-box;
    padding-bottom: 36px;
  }

  .spacing-4-top {
    box-sizing: border-box;
    padding-top: 36px;
  }

  .spacing-5, .spacing-5-bottom {
    box-sizing: border-box;
    padding-bottom: 44px;
  }

  .spacing-5-top {
    box-sizing: border-box;
    padding-top: 44px;
  }

  .spacing-6, .spacing-6-bottom {
    box-sizing: border-box;
    padding-bottom: 48px;
  }

  .spacing-6-top {
    box-sizing: border-box;
    padding-top: 48px;
  }

  .spacing-7, .spacing-7-bottom {
    box-sizing: border-box;
    padding-bottom: 60px;
  }

  .spacing-7-top {
    box-sizing: border-box;
    padding-top: 60px;
  }

  .spacing-8, .spacing-8-bottom {
    box-sizing: border-box;
    padding-bottom: 72px;
  }

  .spacing-8-top {
    box-sizing: border-box;
    padding-top: 72px;
  }

  .spacing-9, .spacing-9-bottom {
    box-sizing: border-box;
    padding-bottom: 96px;
  }

  .spacing-9-top {
    box-sizing: border-box;
    padding-top: 96px;
  }

  .spacing-10, .spacing-10-bottom {
    box-sizing: border-box;
    padding-bottom: 110px;
  }

  .spacing-10-top {
    box-sizing: border-box;
    padding-top: 110px;
  }

  .spacing-11, .spacing-11-bottom {
    box-sizing: border-box;
    padding-bottom: 120px;
  }

  .spacing-11-top {
    box-sizing: border-box;
    padding-top: 120px;
  }

  .spacing-12, .spacing-12-bottom {
    box-sizing: border-box;
    padding-bottom: 160px;
  }

  .spacing-12-top {
    box-sizing: border-box;
    padding-top: 160px;
  }
}
.standard-spacing-new {
  box-sizing: border-box;
  padding-top: 48px;
  padding-bottom: 48px;
}

.standard-spacing-new-1 {
  padding-top: 48px;
  padding-bottom: 36px;
}

.standard-spacing-new-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.standard-spacing-new-3 {
  padding-top: 16px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .standard-spacing-new {
    box-sizing: border-box;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .standard-spacing-new-1 {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .standard-spacing-new-2 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .standard-spacing-new-3 {
    padding-top: 24px;
    padding-bottom: 72px;
  }
}
@media (min-width: 1024px) {
  .standard-spacing-new {
    box-sizing: border-box;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .standard-spacing-new-1 {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .standard-spacing-new-2 {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .standard-spacing-new-3 {
    padding-top: 36px;
    padding-bottom: 96px;
  }
}
@media (min-width: 1296px) {
  .standard-spacing-new {
    box-sizing: border-box;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .standard-spacing-new-1 {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .standard-spacing-new-2 {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .standard-spacing-new-3 {
    padding-top: 44px;
    padding-bottom: 120px;
  }
}
.col-spacing {
  gap: 18px;
}

.col-1-item {
  width: calc(100% - 12px);
}

.col-2-item {
  width: calc(100% - 12px);
}

.col-3-item {
  width: calc(100% - 12px);
}

.col-4-item {
  width: calc(50% - 12px);
}

.col-5-item {
  width: calc(50% - 12px);
}

.col-blog-item {
  width: 70% !important;
}

@media (min-width: 768px) {
  .col-spacing {
    gap: 30px;
  }

  .col-1-item {
    width: calc(100% - 20px);
  }

  .col-2-item {
    width: calc(50% - 20px);
  }

  .col-3-item {
    width: calc(33.3334% - 20px);
  }

  .col-4-item {
    width: calc(25% - 20px);
  }

  .col-5-item {
    width: calc(20% - 20px);
  }

  .col-blog-item {
    width: calc(33.3334% - 20px) !important;
  }
}
.basic-inner-padding {
  padding: 25px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .basic-inner-padding {
    padding: 40px;
  }
}
.chevron-arrow svg {
  width: 16px;
}

.svg-small {
  width: 18px;
}

.svg-medium {
  width: 44px;
}

.svg-large {
  width: 74px;
}

.svg-blue path,
.svg-blue-hover:hover path {
  fill: #0d4e97;
}

.svg-white path,
.svg-white-hover:hover path {
  fill: #fff;
}

.svg-blue-highlight path,
.svg-blue-highlight-hover:hover path {
  fill: #0086ff;
}

.svg-blue-inactive path,
.svg-blue-inactive-hover:hover path {
  fill: #80c3ff;
}

.svg-green path,
.svg-green-hover:hover path {
  fill: #00a676;
}

@media (min-width: 640px) {
  .container-new {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container-new {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container-new {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container-new {
    max-width: 1280px;
  }
}
.container-new {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1376px;
}

.news-events-view-more {
  position: absolute;
  top: 7px;
  right: 0;
}

@media (min-width: 768px) {
  .news-events-view-more {
    top: 12px;
  }
}
@media (min-width: 1024px) {
  .news-events-view-more {
    top: 18px;
  }
}
@media (min-width: 1296px) {
  .news-events-view-more {
    top: 28px;
  }
}
html {
  scroll-behavior: smooth;
}

/* @apply mx-auto max-w-[1376px] */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1376px;
}

/* @apply py-6 md:py-10 */
.standard-spacing {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .standard-spacing {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
/* @apply w-4/6 */
.main {
  width: 66.666667%;
}

/* @apply z-30 */
#drift-frame-controller {
  z-index: 30 !important;
}

/* @apply flex flex-row */
.nav-wrapper .menu > li > .sub-menu a.external-link-svg,
.external-link-svg {
  display: flex;
  flex-direction: row;
}

.nav-wrapper .menu > li > .sub-menu a.external-link-svg::after,
.external-link-svg::after {
  content: url("../../dist/images/external-link.svg");
  /* @apply w-5 h-5 ml-2 block */
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  display: block;
}

.nav-wrapper .menu > li > .sub-menu a.external-link-svg:hover::after,
.external-link-svg:hover::after {
  content: url("../../dist/images/external-link-red.svg");
}

/* @apply relative border border-blue rounded-md px-4 py-2 bg-white */
.dropdown {
  position: relative;
  border: 1px solid #004c97;
  /* blue */
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #ffffff;
  overflow: hidden;
}

.dropdown:after {
  background-image: url("../../dist/images/arrow-down.svg");
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  background-size: 20px 15px;
  background-color: white;
  width: 45px;
  height: 26px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 5px;
  pointer-events: none;
}

/* @apply border-none */
.dropdown select {
  border: none;
  background: transparent;
  width: calc(100% + 30px);
}

/* @apply md:h-4 md:w-7 */
@media (min-width: 768px) {
  .dropdown .filter-arrow {
    height: 1rem;
    width: 1.75rem;
  }
}
/* @apply stroke-black stroke-2 */
.dropdown .filter-arrow path,
.dropdown .filter-arrow rect,
.dropdown .filter-arrow circle {
  stroke: #000000;
  stroke-width: 2;
}

/* fix for scrolling with a sticky nav */
[id] {
  scroll-margin-top: 100px;
}

@media (min-width: 768px) {
  [id] {
    scroll-margin-top: 150px;
  }
}
/* @apply text-white */
.is-screen-reader-text {
  color: #ffffff;
}

.components-button.is-primary {
  background-color: #007cba;
}

/* @apply font-sans font-normal */
.wysiwyg,
.basic-page-content,
.mce-content-body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

/* @apply mb-0 */
.wysiwyg p:last-of-type,
.basic-page-content p:last-of-type,
.mce-content-body p:last-of-type,
.wysiwyg ul:last-of-type,
.basic-page-content ul:last-of-type,
.mce-content-body ul:last-of-type,
.wysiwyg ol:last-of-type,
.basic-page-content ol:last-of-type,
.mce-content-body ol:last-of-type {
  margin-bottom: 30px;
}

.wysiwyg .alignleft,
.basic-page-content .alignleft,
.mce-content-body .alignleft {
  margin-right: 24px;
}

.wysiwyg .alignright,
.basic-page-content .alignright,
.mce-content-body .alignright {
  margin-left: 24px;
}

/* @apply underline */
.wysiwyg a:not(.wp-element-button),
.basic-page-content a:not(.wp-element-button),
.mce-content-body a:not(.wp-element-button) {
  text-decoration: underline;
}

/* @apply pb-4 pr-6 leading-relaxed ml-6 md:ml-8 mt-2 */
.wysiwyg ol,
.wysiwyg ul,
.basic-page-content ol,
.basic-page-content ul,
.mce-content-body ol,
.mce-content-body ul {
  padding-right: 1.5rem;
  line-height: 1.625;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .wysiwyg ol,
.wysiwyg ul,
.basic-page-content ol,
.basic-page-content ul,
.mce-content-body ol,
.mce-content-body ul {
    margin-left: 2rem;
  }
}
.wysiwyg ol,
.basic-page-content ol,
.mce-content-body ol {
  list-style: decimal;
}

.wysiwyg ol[type=a],
.basic-page-content ol[type=a],
.mce-content-body ol[type=a] {
  list-style: lower-roman;
}

.wysiwyg ul > li,
.basic-page-content ul > li,
.mce-content-body ul > li {
  list-style: disc;
}

.wysiwyg ul > li > ul > li,
.basic-page-content ul > li > ul > li,
.mce-content-body ul > li > ul > li {
  list-style: circle;
}

.wysiwyg ul > li > ul > li > ul > li,
.basic-page-content ul > li > ul > li > ul > li,
.mce-content-body ul > li > ul > li > ul > li {
  list-style: disc;
}

.wysiwyg ul > li > ul > li > ul > li > ul > li,
.basic-page-content ul > li > ul > li > ul > li > ul > li,
.mce-content-body ul > li > ul > li > ul > li > ul > li {
  list-style: circle;
}

/* @apply mb-2 */
.wysiwyg li,
.basic-page-content li,
.mce-content-body li {
  margin-bottom: 0.5rem;
}

/* &.indentify - @apply indent-16 on first p */
.wysiwyg.indentify p:first-of-type,
.basic-page-content.indentify p:first-of-type,
.mce-content-body.indentify p:first-of-type {
  text-indent: 4rem;
}

/* &.copy-content headings */
/* @apply mb-4 text-blue font-black text-2xl leading-tight */
.wysiwyg.copy-content h1,
.wysiwyg.copy-content h2,
.wysiwyg.copy-content h3,
.wysiwyg.copy-content h4,
.basic-page-content.copy-content h1,
.basic-page-content.copy-content h2,
.basic-page-content.copy-content h3,
.basic-page-content.copy-content h4,
.mce-content-body.copy-content h1,
.mce-content-body.copy-content h2,
.mce-content-body.copy-content h3,
.mce-content-body.copy-content h4 {
  margin-bottom: 20px;
  color: #004c97;
}

/* @apply no-underline */
.wysiwyg.copy-content h1 a,
.wysiwyg.copy-content h2 a,
.wysiwyg.copy-content h3 a,
.wysiwyg.copy-content h4 a,
.wysiwyg.copy-content h5 a,
.wysiwyg.copy-content h6 a,
.basic-page-content.copy-content h1 a,
.basic-page-content.copy-content h2 a,
.basic-page-content.copy-content h3 a,
.basic-page-content.copy-content h4 a,
.basic-page-content.copy-content h5 a,
.basic-page-content.copy-content h6 a,
.mce-content-body.copy-content h1 a,
.mce-content-body.copy-content h2 a,
.mce-content-body.copy-content h3 a,
.mce-content-body.copy-content h4 a,
.mce-content-body.copy-content h5 a,
.mce-content-body.copy-content h6 a {
  text-decoration: none;
}

/* @apply ml-8 md:ml-16 text-lg */
.wysiwyg--blog ul,
.wysiwyg--blog ol,
.wysiwyg.mce-content-body ul,
.wysiwyg.mce-content-body ol,
.mce-content-body ul,
.mce-content-body ol {
  margin-left: 2rem;
}

@media (min-width: 768px) {
  .wysiwyg--blog ul,
.wysiwyg--blog ol,
.wysiwyg.mce-content-body ul,
.wysiwyg.mce-content-body ol,
.mce-content-body ul,
.mce-content-body ol {
    margin-left: 4rem;
  }
}
/* @apply font-roboto mb-4 text-blue */
.wysiwyg--blog h1,
.wysiwyg--blog h2,
.wysiwyg--blog h3,
.wysiwyg--blog h4,
.wysiwyg.mce-content-body h1,
.wysiwyg.mce-content-body h2,
.wysiwyg.mce-content-body h3,
.wysiwyg.mce-content-body h4,
.mce-content-body h1,
.mce-content-body h2,
.mce-content-body h3,
.mce-content-body h4 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  color: #004c97;
}

/* @apply text-blue-brand */
.wysiwyg--blog a:not(.wp-element-button),
.wysiwyg.mce-content-body a:not(.wp-element-button),
.mce-content-body a:not(.wp-element-button) {
  color: #0086ff;
}

.wysiwyg .container.p-4,
.basic-page-content .container.p-4,
.mce-content-body .container.p-4 {
  padding-left: 0;
  padding-right: 0;
}

/* .wysiwyg--blog blockquote */
/* @apply text-2xl relative leading-tight font-semibold border-2 border-black rounded-lg bg-white py-4 my-8 pr-16 pl-32 text-ellipsis */
.wysiwyg--blog blockquote:not(.testimonial-quote) {
  font-size: 1.5rem;
  position: relative;
  line-height: 1.25;
  font-weight: 600;
  border: 2px solid #000000;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-right: 4rem;
  padding-left: 8rem;
  text-overflow: ellipsis;
  font-style: italic;
}

.wysiwyg--blog blockquote:not(.testimonial-quote):before {
  content: "";
  background-image: url("../images/icons/quote.svg");
  width: 64px;
  height: 64px;
  /* @apply block absolute top-0 left-0 ml-8 mt-6 */
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 2rem;
  margin-top: 1.5rem;
}

/* @apply mb-4 */
figure {
  margin-bottom: 1rem;
}

/* @apply text-blue underline */
.hero p a:not(.button),
.styled_section p a:not(.button) {
  color: #004c97;
  text-decoration: underline;
}

.hero p a:not(.button):hover,
.hero p a:not(.button):focus,
.styled_section p a:not(.button):hover,
.styled_section p a:not(.button):focus {
  color: #000000;
}

.hero p a:not(.button):active,
.styled_section p a:not(.button):active {
  color: #003370;
  /* blue-dark */
}

/* @apply text-blue */
.styled_section .text-highlight {
  color: #004c97;
}

/* @apply font-roboto */
.container > p {
  font-family: "Roboto", sans-serif;
}

/* @apply text-blue hover:text-black no-underline flex text-base md:text-lg font-bold items-center mt-6 */
a.text-button {
  color: #004c97;
  text-decoration: none;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  align-items: center;
  margin-top: 1.5rem;
}

a.text-button:hover {
  color: #000000;
}

@media (min-width: 768px) {
  a.text-button {
    font-size: 1.125rem;
  }
}
/* @apply fill-blue hover:fill-black */
a.text-button svg {
  fill: #004c97;
}

a.text-button:hover svg {
  fill: #000000;
}

/* @apply w-full md:w-1/2 border-2 rounded py-4 md:py-5 text-sm md:text-lg font-bold text-center bg-white */
.copy-buttons a {
  width: 100%;
  border: 2px solid;
  border-radius: 0.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .copy-buttons a {
    width: 50%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
/* section-type-blue overrides */
/* @apply text-white */
.section-type-blue .text-highlight,
.section-type-blue .wysiwyg .text-highlight {
  color: #ffffff;
}

/* @apply text-white */
.section-type-blue a:not(.button),
.section-type-blue .wysiwyg a:not(.button) {
  color: #ffffff;
}

.section-type-blue a:not(.button):hover,
.section-type-blue a:not(.button):focus,
.section-type-blue .wysiwyg a:not(.button):hover,
.section-type-blue .wysiwyg a:not(.button):focus {
  color: #a7c3e8;
  /* blue-light */
}

.section-type-blue a:not(.button):hover svg,
.section-type-blue a:not(.button):focus svg,
.section-type-blue .wysiwyg a:not(.button):hover svg,
.section-type-blue .wysiwyg a:not(.button):focus svg {
  fill: #a7c3e8;
}

.section-type-blue a:not(.button):active,
.section-type-blue .wysiwyg a:not(.button):active {
  color: #d1d5db;
  /* grey-light */
}

.section-type-blue a:not(.button):active svg,
.section-type-blue .wysiwyg a:not(.button):active svg {
  fill: #d1d5db;
}

/* @apply mb-4 text-white font-black text-2xl */
.section-type-blue .copy-content h1,
.section-type-blue .copy-content h2,
.section-type-blue .copy-content h3,
.section-type-blue .copy-content h4,
.section-type-blue .wysiwyg .copy-content h1,
.section-type-blue .wysiwyg .copy-content h2,
.section-type-blue .wysiwyg .copy-content h3,
.section-type-blue .wysiwyg .copy-content h4 {
  margin-bottom: 20px;
  color: #ffffff;
}

/* @apply text-white hover:text-blue-light */
.section-type-blue a.text-button,
.section-type-blue .wysiwyg a.text-button {
  color: #ffffff;
}

.section-type-blue a.text-button:hover,
.section-type-blue .wysiwyg a.text-button:hover {
  color: #a7c3e8;
}

/* @apply fill-white hover:fill-blue-light */
.section-type-blue a.text-button svg,
.section-type-blue .wysiwyg a.text-button svg {
  fill: #ffffff;
}

.section-type-blue a.text-button:hover svg,
.section-type-blue .wysiwyg a.text-button:hover svg {
  fill: #a7c3e8;
}

/** Blocks */
/**
 * Blocks
 */
/* .accordion */
.accordion {
  color: #000000;
  border-color: #000000;
}

@media (min-width: 768px) {
  .accordion {
    width: 75%;
  }
}
.accordion {
  margin-left: 0;
}

.accordion .section-title {
  max-width: calc(95% - 30px);
}

.accordion .accordion-svg svg {
  transform: rotate(90deg);
  margin-top: auto;
  margin-bottom: auto;
  fill: #004c97;
}

.accordion .wysiwyg h3,
.accordion .wysiwyg h4,
.accordion .wysiwyg h5 {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .accordion .wysiwyg h3,
.accordion .wysiwyg h4,
.accordion .wysiwyg h5 {
    font-size: 1.25rem;
  }
}
.accordion .nested-section .nested-section-header {
  color: #004c97;
}

.accordion .nested-section .subsection {
  max-height: 0;
  overflow: hidden;
  transition: all 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion .nested-section .subsection .subsection-content {
  max-height: 0;
  overflow: hidden;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion .nested-section .subsection .subsection-content.section-preview {
  max-height: 3.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .accordion .nested-section .subsection .subsection-content.section-preview {
    max-height: 4rem;
  }
}
/* .nested-section.open */
.accordion .nested-section.open .nested-section-header svg {
  transform: rotate(-90deg);
}

.accordion .nested-section.open .subsection {
  max-height: 1000px;
}

.accordion .nested-section.open .subsection.open {
  max-height: 4000px;
}

.accordion .nested-section.open .subsection.open svg {
  transform: rotate(-90deg);
}

.accordion .nested-section.open .subsection.open .subsection-content {
  padding-bottom: 1rem;
  max-height: 6000px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .accordion .nested-section.open .subsection.open .subsection-content {
    padding-bottom: 2.5rem;
  }
}
/* .section */
.accordion .section {
  max-height: 6000px;
}

.accordion .section .section-image {
  display: none;
}

.accordion .section .section-content {
  max-height: 0;
  overflow: hidden;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion .section .section-content.section-preview {
  max-height: 3.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .accordion .section .section-content.section-preview {
    max-height: 4rem;
  }
}
.accordion .section.open .accordion-svg svg {
  transform: rotate(-90deg);
}

.accordion .section.open .section-image {
  display: block;
}

.accordion .section.open .section-content {
  padding-bottom: 1rem;
  max-height: 6000px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .accordion .section.open .section-content {
    padding-bottom: 2.5rem;
  }
}
/* section-type-white / grey */
.section-type-white .accordion,
.section-type-grey .accordion {
  color: #000000;
  border-color: #000000;
}

.section-type-white .accordion .accordion-title,
.section-type-white .accordion .section-title,
.section-type-grey .accordion .accordion-title,
.section-type-grey .accordion .section-title {
  color: #004c97;
}

.section-type-white .accordion .nested-section-header,
.section-type-grey .accordion .nested-section-header {
  color: #000000;
}

.section-type-white .accordion .accordion-svg svg,
.section-type-grey .accordion .accordion-svg svg {
  transform: rotate(90deg);
  margin-top: auto;
  margin-bottom: auto;
  fill: #004c97;
}

/* section-type-blue */
.section-type-blue .accordion {
  color: #ffffff;
  border-color: #ffffff;
}

.section-type-blue .accordion .nested-section-header {
  color: #ffffff;
}

.section-type-blue .accordion .accordion-svg svg {
  transform: rotate(90deg);
  margin-top: auto;
  margin-bottom: auto;
  fill: #ffffff;
}

/* left-margin-container override */
@media (min-width: 768px) {
  .left-margin-container .accordion {
    width: 100%;
  }
}
/* Accordion small */
.accordion-small {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0;
}

.accordion-small > div button {
  justify-content: center;
  p-width: 0px;
  padding: 0;
}

.accordion-small > div button .section-title {
  font-size: 14px;
  padding: 0 10px 0 0;
}

.accordion-small > div button svg {
  width: 1rem;
  height: 1rem;
}

.accordion-small > div .flex-row .section-content {
  padding: 0;
}

.accordion-small > div .flex-row .section-content p {
  font-size: 14px;
  text-align: center;
}

.glide__track{
  width: 100%;
  overflow: hidden;
}

.glide__slides{
  display: flex;
  flex-wrap: nowrap;
}

.glide__slides .block-editor-inner-blocks{
  width: 100%;
}

.marketo-form .mktoForm{
  margin-left: auto;
  margin-right: auto;
  max-width: 64rem;
  width: 100% !important;
}
.marketo-form .mktoForm > .mktoFormRow{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.marketo-form .mktoForm > .mktoFormRow > .mktoFormCol{
  width: 100%;
}
@media (min-width: 768px){
  .marketo-form .mktoForm > .mktoFormRow > .mktoFormCol{
    display: flex;
    flex-wrap: wrap;
  }
}
.marketo-form .mktoForm > .mktoFormRow > .mktoFormCol {
  padding: 0 !important;
  margin: 0 !important;
}
.marketo-form .mktoForm > .mktoFormRow > .mktoFormCol > .mktoFormRow:has(div > .mktoFieldWrap) {
  flex: 50%;
  flex-grow: inherit;
}
.marketo-form .mktoForm > .mktoFormRow > .mktoFormCol > .mktoFormRow:has(div > .mktoFieldWrap > .mktoCheckboxList) {
  flex: 80%;
  flex-grow: inherit;
}
.marketo-form .mktoForm > .mktoFormRow:first-of-type .mktoFieldWrap .mktoHtmlText > h3{
  margin-top: 0px;
}
.marketo-form .mktoForm .mktoOffset{
  display: none;
}
.marketo-form .mktoForm .mktoLabel{
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 5px !important;
  color: #004c97 !important;
}
.marketo-form .mktoForm .mktoFieldWrap{
  position: relative;
  margin-bottom: 1rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.marketo-form .mktoForm .mktoFieldWrap .mktoHtmlText > h3{
  margin-top: 1.5rem;
  border-bottom-width: 0px;
  border-top-width: 1px;
  padding-top: 3rem;
  padding-bottom: 0px;
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: capitalize;
}
.marketo-form .mktoForm .mktoFieldWrap label{
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 1rem;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .marketo-form .mktoForm .mktoFieldWrap label{
    font-size: 1.125rem;
  }
}
.marketo-form .mktoForm .mktoFieldWrap label {
  width: 100% !important;
}
.marketo-form .mktoForm .mktoFieldWrap label .mktoAsterix {
  color: #004c97 !important;
}
.marketo-form .mktoForm .mktoFieldWrap select{
  -webkit-appearance: none;
          appearance: none;
  background: url("../images/chevron-down-black.svg") no-repeat right #fff;
  background-origin: content-box;
  background-position-x: calc(100% + 1.5rem);
}
.marketo-form .mktoForm .mktoFieldWrap .mktoGutter{
  height: 0.5rem;
}
.marketo-form .mktoForm .mktoFieldWrap > .mktoField{
  height: auto;
  border-radius: 0.5rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 0.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.button.marketo-form .mktoForm .mktoFieldWrap > .mktoField > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.marketo-form .mktoForm .mktoFieldWrap > .mktoField > div svg {
  fill: #0D4E97;
}
@media (min-width: 768px){
  .marketo-form .mktoForm .mktoFieldWrap > .mktoField{
    font-size: 0.875rem;
  }
}
.marketo-form .mktoForm .mktoFieldWrap > .mktoField {
  width: 100% !important;
  padding: 0.75rem 2.5rem 0.75rem 1rem !important;
  font-size: 1.125rem !important;
  line-height: 1.5rem !important;
  border: 1px solid #737171 !important;
  border-radius: 4px !important;
}
.marketo-form .mktoForm .mktoFieldWrap > .mktoField.mktoInvalid{
  position: relative;
  border: 1px solid #f00 !important;
}
.marketo-form .mktoForm .mktoFieldWrap label.mktoLabel{
  font-weight: 700;
  text-transform: none;
  font-size: 1.125rem !important;
}
.marketo-form .mktoForm .mktoFieldWrap:has(.mktoInvalid)::before {
  content: url("../images/status-error.svg");
  position: absolute;
  top: 41px;
  right: 30px;
  z-index: 20;
}
@media (min-width: 768px){
  .marketo-form .mktoForm .mktoFieldWrap:has(.mktoInvalid)::before{
    top: 64px;
  }
}
.marketo-form .mktoForm .mktoFieldWrap:has(select.mktoInvalid)::before {
  content: url("../images/status-error.svg");
  position: absolute;
  top: 41px;
  right: 54px;
  z-index: 20;
}
@media (min-width: 768px){
  .marketo-form .mktoForm .mktoFieldWrap:has(select.mktoInvalid)::before{
    top: 64px;
  }
}
.marketo-form .mktoForm .mktoCheckboxList{
  display: flex;
  flex-direction: row;
  padding-top: 0px;
  padding-bottom: 0px;
}
.accordion-small > div .marketo-form .mktoForm .mktoCheckboxList .section-content {
  padding: 0;
}
.accordion-small > div .marketo-form .mktoForm .mktoCheckboxList .section-content p {
  font-size: 14px;
  text-align: center;
}
.marketo-form .mktoForm .mktoCheckboxList {
  width: 100% !important;
}
.marketo-form .mktoForm .mktoCheckboxList > label{
  margin-left: 1rem;
  margin-bottom: auto;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 1rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.marketo-form .mktoForm .mktoCheckboxList input{
  height: 20px;
  width: 20px;
  align-self: center;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}
.marketo-form .mktoForm .mktoButtonRow{
  width: 100%;
}
@media (min-width: 768px){
  .marketo-form .mktoForm .mktoButtonRow{
    width: 66.666667%;
  }
}
.marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap {
  margin: 0 !important;
  margin-right: auto !important;
  display: block;
}
.marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton{
  width: 100%;
  max-width: 42rem;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton{
    border-width: 3px;
    font-size: 0.875rem;
  }
}
.marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
  border: 2px solid #153867 !important;
  border-radius: 4px !important;
  padding: 1.25rem 0 !important;
  background: url("../images/crest-dark-blue.svg") !important;
  background-repeat: no-repeat !important;
  background-color: #004c97 !important;
  background-position-y: -28px !important;
  background-position-x: -55px !important;
  background-size: 130px !important;
  font-size: 14px !important;
  margin-top: 12px !important;
}
@media (min-width: 640px) {
  .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    background-position-y: -67px !important;
    background-position-x: 0 !important;
    background-size: 200px !important;
    font-size: 18px !important;
  }
}
.marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover, .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus {
  background-color: #0256a9 !important;
}
.marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active {
  background-color: #16437e !important;
}
.marketo-form .mktoForm fieldset legend{
  margin: 0px;
}
.marketo-form .disclaimer{
  margin-bottom: 1rem;
  font-size: 0.875rem;
  --tw-text-opacity: 1;
  color: rgb(115 113 113 / var(--tw-text-opacity));
}

.hero--white-highlight .marketo-form .mktoForm .mktoFieldWrap label,
.section-type-red .marketo-form .mktoForm .mktoFieldWrap label{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.hero--white-highlight .marketo-form .mktoForm .mktoFieldWrap > .mktoField,
.section-type-red .marketo-form .mktoForm .mktoFieldWrap > .mktoField{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.button.hero--white-highlight .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div,.button
.section-type-red .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.hero--white-highlight .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div svg,.button
.section-type-red .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div svg {
  fill: #0D4E97;
}
.hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button.hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton > div,.button
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton > div {
  border-color: #FFF;
}
.hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover, .hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus,
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover,
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.button.hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button .hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div,.button
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div svg,.button .hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div svg,.button
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div svg,.button
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div svg {
  fill: #0D4E97;
}
.button.hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button .hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div,.button
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div {
  border-color: #FFF;
}
.hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active,
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(21 56 103 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button.hero--white-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active > div,.button
.section-type-red .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active > div {
  border-color: #FFF;
}

.hero--red-highlight .marketo-form .mktoForm .mktoFieldWrap label,
.section-type-black .marketo-form .mktoForm .mktoFieldWrap label{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hero--red-highlight .marketo-form .mktoForm .mktoFieldWrap > .mktoField,
.section-type-black .marketo-form .mktoForm .mktoFieldWrap > .mktoField{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button.hero--red-highlight .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div,.button
.section-type-black .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div {
  border-color: #FFF;
}
.hero--red-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.section-type-black .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hero--red-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover, .hero--red-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus,
.section-type-black .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover,
.section-type-black .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button.hero--red-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button .hero--red-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div,.button
.section-type-black .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button
.section-type-black .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div {
  border-color: #FFF;
}
.hero--red-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active,
.section-type-black .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active{
  --tw-border-opacity: 1;
  border-color: rgb(21 56 103 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(21 56 103 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hero--blue-highlight .marketo-form .mktoForm .mktoFieldWrap label,
.section-type-yorkville-grey .marketo-form .mktoForm .mktoFieldWrap label,
.section-type-yorkville-white .marketo-form .mktoForm .mktoFieldWrap label{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.hero--blue-highlight .marketo-form .mktoForm .mktoFieldWrap > .mktoField,
.section-type-yorkville-grey .marketo-form .mktoForm .mktoFieldWrap > .mktoField,
.section-type-yorkville-white .marketo-form .mktoForm .mktoFieldWrap > .mktoField{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.button.hero--blue-highlight .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div,.button
.section-type-yorkville-grey .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div,.button
.section-type-yorkville-white .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.hero--blue-highlight .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div svg,.button
.section-type-yorkville-grey .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div svg,.button
.section-type-yorkville-white .marketo-form .mktoForm .mktoFieldWrap > .mktoField > div svg {
  fill: #0D4E97;
}
.hero--blue-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.section-type-yorkville-grey .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.section-type-yorkville-white .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hero--blue-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover, .hero--blue-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus,
.section-type-yorkville-grey .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover,
.section-type-yorkville-grey .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus,
.section-type-yorkville-white .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover,
.section-type-yorkville-white .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.button.hero--blue-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button .hero--blue-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div,.button
.section-type-yorkville-grey .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button
.section-type-yorkville-grey .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div,.button
.section-type-yorkville-white .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div,.button
.section-type-yorkville-white .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.hero--blue-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div svg,.button .hero--blue-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div svg,.button
.section-type-yorkville-grey .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div svg,.button
.section-type-yorkville-grey .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div svg,.button
.section-type-yorkville-white .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div svg,.button
.section-type-yorkville-white .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div svg {
  fill: #0D4E97;
}
.hero--blue-highlight .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active,
.section-type-yorkville-grey .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active,
.section-type-yorkville-white .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:active{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.cta-banner .mobile-image .cta-copy,
.cta-banner .mobile-image .headline-component .headline{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.cta-banner .mobile-imageless > picture{
  display: none;
}
@media (min-width: 1024px){
  .cta-banner .mobile-imageless > picture{
    display: block;
  }
  .cta-banner .mobile-imageless div.cta-copy,
.cta-banner .mobile-imageless .headline-component .headline{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.cta-banner .header-copy{
  padding-top: 2rem;
}
@media (min-width: 768px){
  .cta-banner .header-copy{
    padding-top: 4rem;
  }
}

.feature-post{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.button.feature-post > div {
  color: #0D4E97;
  background-color: #FFF;
}

.button.feature-post > div svg {
  fill: #0D4E97;
}

.hero--white-highlight .feature-post,
.section-type-red .feature-post{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.hero--white-highlight .feature-post a,
.section-type-red .feature-post a{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hero--white-highlight .feature-post a:hover, .hero--white-highlight .feature-post a:focus,
.section-type-red .feature-post a:hover,
.section-type-red .feature-post a:focus{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.hero--red-highlight .feature-post,
.section-type-black .feature-post{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.button.hero--red-highlight .feature-post > div,.button
.section-type-black .feature-post > div {
  border-color: #FFF;
}

.section-type-yorkville-grey .feature-post{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}


.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg path,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg rect,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg circle {
  stroke: #000000;
}


.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg:hover path,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg:hover rect,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg:hover circle,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg:focus path,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg:focus rect,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container svg:focus circle {
  stroke: #0086ff;
}


.hero.section-type-yorkville-grey .feature-post .faculty-directory-container .filter-open p {
  color: #000000;
  border-color: #000000;
}


.hero.section-type-yorkville-grey .feature-post .faculty-directory-container .filter-open:hover p,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container .filter-open:focus p {
  color: #0086ff;
}


.hero.section-type-yorkville-grey .feature-post .faculty-directory-container .filter-open:hover svg > path,
.hero.section-type-yorkville-grey .feature-post .faculty-directory-container .filter-open:focus svg > path {
  stroke: #0086ff;
}

.button.section-type-yorkville-grey .feature-post > div {
  border-color: #FFF;
}

/* .hero-headline */
.hero-headline {
  width: 100%;
  line-height: 1.25;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  position: relative;
  font-size: clamp(1.875rem, 5vw, 3.75rem);
}

@media (min-width: 768px) {
  .hero-headline {
    font-weight: 900;
  }
}
.hero-headline.hero-long {
  font-size: clamp(1.25rem, 4vw, 3rem);
}

.hero-headline.homepage-hero {
  font-size: clamp(1.875rem, 5vw, 4.375rem);
}

.hero-headline-blog {
  font-size: 2.25rem;
  text-transform: none;
}

.hero-headline-blog span {
  display: inline;
  margin-left: auto;
}

.hero-headline span {
  margin-left: 4rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .hero-headline span {
    margin-left: 8rem;
  }
}
@media (min-width: 768px) {
  .hero-headline span {
    font-weight: 800;
  }
}
.hero-headline.hide-span span {
  opacity: 0;
  position: absolute;
}

.hero-headline span:first-child {
  display: block;
  color: transparent;
  -webkit-text-stroke: 3px #e32028;
}

.hero-headline span:last-child {
  color: #0086ff;
}

.hero-headline.headline-effect {
  position: relative;
}

.hero-headline.headline-effect span:last-child {
  position: absolute;
  top: 0;
}

/* .hero-notification-banner */
.hero-notification-banner .wysiwyg p {
  margin-bottom: 0;
}

/* .hero .hero-subtitle */
.hero .hero-subtitle p,
.hero .hero-subtitle p span {
  line-height: 1.25;
  font-weight: 600 !important;
}

/* .hero variant highlights */
.hero.hero--white-highlight .hero-headline span:first-child {
  -webkit-text-stroke: 3px #fff;
}

.hero.hero--white-highlight .hero-headline span:last-child {
  color: #ffffff;
}

.hero.hero--red-highlight .hero-headline span:first-child {
  -webkit-text-stroke: 3px #e32028;
}

.hero.hero--red-highlight .hero-headline span:last-child {
  color: #0086ff;
}

.hero.hero--blue-highlight .hero-headline span:first-child {
  -webkit-text-stroke: 3px #004c97;
}

.hero.hero--blue-highlight .hero-headline span:last-child {
  color: #0086ff;
}

/* .hero-notification-banner transition */
.hero-notification-banner {
  transition: transform 1s ease-in-out;
}

/* .event-banner */
.event-banner {
  max-height: 0;
  transition: max-height 1s ease-in-out;
}

.event-banner.banner-open {
  max-height: 900px;
}

.hero-slideshow {
  height: 380px;
  position: relative;
  width: 100%;
}

.hero-slideshow .slide-cont {
  height: inherit;
}

.hero-slideshow .slide {
  height: inherit;
  padding: 1rem;
  padding-bottom: 3rem;
  box-sizing: border-box;
  background-size: cover;
  background-position: 70% 0;
}

.hero-slideshow .hero-slide {
  max-width: 850px;
}

.hero-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  fill: white;
}

.hero-arrow--prev {
  left: 0px;
}

.hero-arrow--next {
  right: 0px;
}

.hero-arrow:hover svg path {
  fill: #fff;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #80c3ff;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.hero-dot.is-active,
.hero-dot:hover {
  background: #0086ff;
}

@media (min-width: 768px) {
  .hero-slideshow {
    height: 640px;
  }

  .hero-arrow {
    display: block;
  }

  .hero-slideshow .slide {
    justify-content: flex-start;
    background-position: right;
    padding: 3rem;
  }
}
/* SVG stroke defaults */
.faculty-directory-container svg path,
.faculty-directory-container svg rect,
.faculty-directory-container svg circle {
  stroke: #000000;
  stroke-width: 2;
}

.faculty-directory-container svg:hover path,
.faculty-directory-container svg:hover rect,
.faculty-directory-container svg:hover circle,
.faculty-directory-container svg:focus path,
.faculty-directory-container svg:focus rect,
.faculty-directory-container svg:focus circle {
  stroke: #0086ff;
}

/* .faculty-filter .filter-open */
.faculty-directory-container .faculty-filter .filter-open p {
  color: #000000;
  border-color: #000000;
}

@media (min-width: 768px) {
  .faculty-directory-container .faculty-filter .filter-open svg {
    height: 1rem;
    width: 1.75rem;
  }
}
.faculty-directory-container .faculty-filter .filter-open:hover p,
.faculty-directory-container .faculty-filter .filter-open:focus p {
  color: #0086ff;
}

.faculty-directory-container .faculty-filter .filter-open:hover svg > path,
.faculty-directory-container .faculty-filter .filter-open:focus svg > path {
  stroke: #0086ff;
}

/* .filter-dropdown */
.faculty-directory-container .faculty-filter .filter-dropdown {
  background-color: #ffffff;
}

/* .filter-close-button */
.faculty-directory-container .faculty-filter .filter-close-button svg {
  height: 1rem;
  width: 1rem;
}

.faculty-directory-container .faculty-filter .filter-close-button svg path {
  stroke: #ffffff;
}

.faculty-directory-container .faculty-filter .filter-close-button:hover svg path,
.faculty-directory-container .faculty-filter .filter-close-button:focus svg path {
  stroke: #0086ff;
}

.faculty-directory-container .faculty-filter a:hover,
.faculty-directory-container .faculty-filter a:focus {
  color: #0086ff;
}

/* dropdown_open */
.faculty-directory-container .faculty-filter.dropdown_open .filter-dropdown {
  display: flex;
  flex-direction: column;
}

/* .faculty-entry */
.faculty-directory-container .faculty-entry .default-faculty-profile svg {
  width: 100%;
  height: 100%;
}

.faculty-directory-container .faculty-entry .faculty-headline svg {
  transform: rotate(90deg);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  height: 2.5rem;
  width: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .faculty-directory-container .faculty-entry .faculty-headline svg {
    width: 3.5rem;
    height: 3rem;
  }
}
.faculty-directory-container .faculty-entry.open .faculty-headline svg {
  transform: rotate(-90deg);
}

.faculty-directory-container .faculty-entry.open .faculty-bio {
  max-height: 800px;
}

/* show-all */
.faculty-directory-container .faculty-directory.show-all .faculty-entry-shell {
  max-height: 1000px;
}

/* ========================================
   hero--white-highlight / section-type-red
   ======================================== */
.hero--white-highlight .faculty-directory-container svg path,
.hero--white-highlight .faculty-directory-container svg rect,
.hero--white-highlight .faculty-directory-container svg circle,
.section-type-red .faculty-directory-container svg path,
.section-type-red .faculty-directory-container svg rect,
.section-type-red .faculty-directory-container svg circle {
  stroke: #ffffff;
}

.hero--white-highlight .faculty-directory-container svg:hover path,
.hero--white-highlight .faculty-directory-container svg:hover rect,
.hero--white-highlight .faculty-directory-container svg:hover circle,
.hero--white-highlight .faculty-directory-container svg:focus path,
.hero--white-highlight .faculty-directory-container svg:focus rect,
.hero--white-highlight .faculty-directory-container svg:focus circle,
.section-type-red .faculty-directory-container svg:hover path,
.section-type-red .faculty-directory-container svg:hover rect,
.section-type-red .faculty-directory-container svg:hover circle,
.section-type-red .faculty-directory-container svg:focus path,
.section-type-red .faculty-directory-container svg:focus rect,
.section-type-red .faculty-directory-container svg:focus circle {
  stroke: #000000;
}

.hero--white-highlight .faculty-directory-container .filter-open p,
.section-type-red .faculty-directory-container .filter-open p {
  color: #ffffff;
  border-color: #ffffff;
}

.hero--white-highlight .faculty-directory-container .filter-open:hover p,
.hero--white-highlight .faculty-directory-container .filter-open:focus p,
.section-type-red .faculty-directory-container .filter-open:hover p,
.section-type-red .faculty-directory-container .filter-open:focus p {
  color: #000000;
}

.hero--white-highlight .faculty-directory-container .filter-open:hover svg > path,
.hero--white-highlight .faculty-directory-container .filter-open:focus svg > path,
.section-type-red .faculty-directory-container .filter-open:hover svg > path,
.section-type-red .faculty-directory-container .filter-open:focus svg > path {
  stroke: #000000;
}

.hero--white-highlight .faculty-directory-container .filter-dropdown,
.section-type-red .faculty-directory-container .filter-dropdown {
  background-color: #0086ff;
  /* bg-blue-brand */
}

/* ========================================
   hero--red-highlight / section-type-black
   ======================================== */
.hero--red-highlight .faculty-directory-container svg path,
.hero--red-highlight .faculty-directory-container svg rect,
.hero--red-highlight .faculty-directory-container svg circle,
.section-type-black .faculty-directory-container svg path,
.section-type-black .faculty-directory-container svg rect,
.section-type-black .faculty-directory-container svg circle {
  stroke: #ffffff;
}

.hero--red-highlight .faculty-directory-container svg:hover path,
.hero--red-highlight .faculty-directory-container svg:hover rect,
.hero--red-highlight .faculty-directory-container svg:hover circle,
.hero--red-highlight .faculty-directory-container svg:focus path,
.hero--red-highlight .faculty-directory-container svg:focus rect,
.hero--red-highlight .faculty-directory-container svg:focus circle,
.section-type-black .faculty-directory-container svg:hover path,
.section-type-black .faculty-directory-container svg:hover rect,
.section-type-black .faculty-directory-container svg:hover circle,
.section-type-black .faculty-directory-container svg:focus path,
.section-type-black .faculty-directory-container svg:focus rect,
.section-type-black .faculty-directory-container svg:focus circle {
  stroke: #0086ff;
}

.hero--red-highlight .faculty-directory-container .filter-open p,
.section-type-black .faculty-directory-container .filter-open p {
  color: #ffffff;
  border-color: #ffffff;
}

.hero--red-highlight .faculty-directory-container .filter-open:hover p,
.hero--red-highlight .faculty-directory-container .filter-open:focus p,
.section-type-black .faculty-directory-container .filter-open:hover p,
.section-type-black .faculty-directory-container .filter-open:focus p {
  color: #0086ff;
}

.hero--red-highlight .faculty-directory-container .filter-open:hover svg > path,
.hero--red-highlight .faculty-directory-container .filter-open:focus svg > path,
.section-type-black .faculty-directory-container .filter-open:hover svg > path,
.section-type-black .faculty-directory-container .filter-open:focus svg > path {
  stroke: #0086ff;
}

.hero--red-highlight .faculty-directory-container .filter-dropdown,
.section-type-black .faculty-directory-container .filter-dropdown {
  background-color: #000000;
}

/* ========================================
   bg-yorkville-white / bg-yorkville-grey / section-type-yorkville-white / grey
   ======================================== */
.hero.bg-yorkville-white .faculty-directory-container svg path,
.hero.bg-yorkville-white .faculty-directory-container svg rect,
.hero.bg-yorkville-white .faculty-directory-container svg circle,
.hero.bg-yorkville-grey .faculty-directory-container svg path,
.hero.bg-yorkville-grey .faculty-directory-container svg rect,
.hero.bg-yorkville-grey .faculty-directory-container svg circle,
.section-type-yorkville-white .faculty-directory-container svg path,
.section-type-yorkville-white .faculty-directory-container svg rect,
.section-type-yorkville-white .faculty-directory-container svg circle,
.section-type-yorkville-grey .faculty-directory-container svg path,
.section-type-yorkville-grey .faculty-directory-container svg rect,
.section-type-yorkville-grey .faculty-directory-container svg circle {
  stroke: #000000;
}

.hero.bg-yorkville-white .faculty-directory-container svg:hover path,
.hero.bg-yorkville-white .faculty-directory-container svg:hover rect,
.hero.bg-yorkville-white .faculty-directory-container svg:hover circle,
.hero.bg-yorkville-white .faculty-directory-container svg:focus path,
.hero.bg-yorkville-white .faculty-directory-container svg:focus rect,
.hero.bg-yorkville-white .faculty-directory-container svg:focus circle,
.hero.bg-yorkville-grey .faculty-directory-container svg:hover path,
.hero.bg-yorkville-grey .faculty-directory-container svg:hover rect,
.hero.bg-yorkville-grey .faculty-directory-container svg:hover circle,
.hero.bg-yorkville-grey .faculty-directory-container svg:focus path,
.hero.bg-yorkville-grey .faculty-directory-container svg:focus rect,
.hero.bg-yorkville-grey .faculty-directory-container svg:focus circle,
.section-type-yorkville-white .faculty-directory-container svg:hover path,
.section-type-yorkville-white .faculty-directory-container svg:hover rect,
.section-type-yorkville-white .faculty-directory-container svg:hover circle,
.section-type-yorkville-white .faculty-directory-container svg:focus path,
.section-type-yorkville-white .faculty-directory-container svg:focus rect,
.section-type-yorkville-white .faculty-directory-container svg:focus circle,
.section-type-yorkville-grey .faculty-directory-container svg:hover path,
.section-type-yorkville-grey .faculty-directory-container svg:hover rect,
.section-type-yorkville-grey .faculty-directory-container svg:hover circle,
.section-type-yorkville-grey .faculty-directory-container svg:focus path,
.section-type-yorkville-grey .faculty-directory-container svg:focus rect,
.section-type-yorkville-grey .faculty-directory-container svg:focus circle {
  stroke: #0086ff;
}

.hero.bg-yorkville-white .faculty-directory-container .filter-open p,
.hero.bg-yorkville-grey .faculty-directory-container .filter-open p,
.section-type-yorkville-white .faculty-directory-container .filter-open p,
.section-type-yorkville-grey .faculty-directory-container .filter-open p {
  color: #000000;
  border-color: #000000;
}

.hero.bg-yorkville-white .faculty-directory-container .filter-open:hover p,
.hero.bg-yorkville-white .faculty-directory-container .filter-open:focus p,
.hero.bg-yorkville-grey .faculty-directory-container .filter-open:hover p,
.hero.bg-yorkville-grey .faculty-directory-container .filter-open:focus p,
.section-type-yorkville-white .faculty-directory-container .filter-open:hover p,
.section-type-yorkville-white .faculty-directory-container .filter-open:focus p,
.section-type-yorkville-grey .faculty-directory-container .filter-open:hover p,
.section-type-yorkville-grey .faculty-directory-container .filter-open:focus p {
  color: #0086ff;
}

.hero.bg-yorkville-white .faculty-directory-container .filter-open:hover svg > path,
.hero.bg-yorkville-white .faculty-directory-container .filter-open:focus svg > path,
.hero.bg-yorkville-grey .faculty-directory-container .filter-open:hover svg > path,
.hero.bg-yorkville-grey .faculty-directory-container .filter-open:focus svg > path,
.section-type-yorkville-white .faculty-directory-container .filter-open:hover svg > path,
.section-type-yorkville-white .faculty-directory-container .filter-open:focus svg > path,
.section-type-yorkville-grey .faculty-directory-container .filter-open:hover svg > path,
.section-type-yorkville-grey .faculty-directory-container .filter-open:focus svg > path {
  stroke: #0086ff;
}

/* =============================================
  FLIPPING CARDS
  Set card width here — e.g. max-width: 400px;
  ============================================= */
.flipping-cards .card-front,
.flipping-cards .card-back {
  height: 100%;
}

.flipping-cards h3 {
  color: #0d4e97;
  margin-bottom: 10px;
}

.flipping-cards .card-front p {
  font-size: 18px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .flipping-cards .card-front p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  .flipping-cards .card-front p {
    font-size: 22px;
    line-height: 32px;
  }
}
.flipping-cards .card-front img {
  width: 100%;
}

.flipping-cards .card-text-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.flipping-cards .flipbutton {
  margin-top: auto;
}

.flipping-cards .flipcard {
  max-width: 438px;
  height: auto;
  position: relative;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flipping-cards .video-play-button {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.flipping-cards .video-play-button > svg {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.flipping-cards .video-play-button:hover > svg circle {
  fill: #fff;
}

.flipping-cards .video-play-button:hover > svg path {
  fill: #0089ff;
}

.flipping-cards .flipcard-arrows button svg {
  border-radius: 100%;
}

.flipping-cards .flipcard-arrows button:hover svg {
  box-shadow: 0 0 0 1px #0089ff inset;
}

.flipping-cards .flipcard-arrows button:hover svg > path:first-of-type {
  fill: none;
}

.flipping-cards .flipcard-arrows button:hover svg path {
  fill: #0089ff;
}

@media (max-width: 768px) {
  .flipping-cards .flipcard-arrows {
    display: none;
  }
}
.flipping-cards .flipcard .flipcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
}

.flipping-cards .flipcard .card-front,
.flipping-cards .flipcard .card-back {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  cursor: default;
  font-weight: 400;
}

.flipping-cards .flipcard .card-front {
  background-color: #f7f7f7;
  overflow: hidden;
}

.flipping-cards .flipcard .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-color: var(--color-blue-lighter, #cce5ff);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flipping-cards .glide__track {
  overflow: visible;
}

@media (min-width: 1024px) {
  .flipping-cards .last__bullet {
    display: none;
  }
}
.flipping-cards .glide__bullet--active {
  background-color: #004c97;
  border-color: #004c97;
}

.four-up .tile{
  height: auto;
  width: 100%;
  flex-grow: 1;
  cursor: default;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.wysiwyg .container.four-up .tile,
.basic-page-content .container.four-up .tile,
.mce-content-body .container.four-up .tile {
  padding-left: 0;
  padding-right: 0;
}

.button.four-up .tile > div {
  color: #0D4E97;
  background-color: #FFF;
}

.button.four-up .tile > div svg {
  fill: #0D4E97;
}

@media (min-width: 768px){
  .four-up .tile{
    padding: 2rem;
    padding-bottom: 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 1024px){
  .four-up .tile{
    font-size: 1.375rem;
  }
}

.four-up .tile {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px){
  .four-up .last__bullet{
    display: none;
  }
}
.four-up .glide__bullet--active{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.four-up .glide__bullet--active > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.four-up .glide__bullet--active > div svg {
  fill: #FFF;
}
.button.four-up .glide__bullet--active > div {
  border-color: #0D4E97;
}

.section-type-blue .four-up .tile{
  border-style: none;
  --tw-bg-opacity: 0;
  padding: 0px;
  padding-bottom: 1rem;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 768px){
  .section-type-blue .four-up .tile{
    padding: 0px;
    padding-bottom: 2rem;
  }
}
.section-type-blue .four-up .glide__bullet--active{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.button.section-type-blue .four-up .glide__bullet--active > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.section-type-blue .four-up .glide__bullet--active > div svg {
  fill: #0D4E97;
}
.button.section-type-blue .four-up .glide__bullet--active > div {
  border-color: #FFF;
}
.section-type-blue .four-up .glide__slides{
  column-gap: 2rem;
}
@media (min-width: 768px){
  .section-type-blue .four-up .glide__slides{
    column-gap: 5rem;
  }
  .section-type-blue .four-up .glide__slides.three-up-variant{
    column-gap: 1.25rem;
  }
  .left-margin-container .four-up .glide__track{
    width: 100%;
  }
}

.marquee {
  position: relative;
  display: flex;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.marquee .marquee-scroll {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  height: 100%;
  max-width: none;
  min-width: 100%;
}

.paused .marquee .marquee-scroll {
  animation-play-state: paused !important;
}
@keyframes scroll {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(-130%);
  }
}
.multi-column-list.three-columns .list{
  width: 100%;
  columns: 2;
}
@media (min-width: 1024px){
  .multi-column-list.three-columns .list{
    columns: 3;
  }
}
.multi-column-list .list p{
  margin-bottom: 1rem;
  display: flex;
}
@media (min-width: 768px){
  .multi-column-list .list p{
    margin-bottom: 1.5rem;
  }
}

.new-term-block{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.new-term-block svg{
  fill: #004C97;
}

.section-type-white .new-term-block,
.section-type-grey .new-term-block{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.section-type-white .new-term-block svg,
.section-type-grey .new-term-block svg{
  fill: #004C97;
}

.section-type-blue .new-term-block{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue svg{
  fill: #FFFFFF;
}

.numbered-steps{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .numbered-steps .step{
    margin-left: auto;
    width: 75%;
  }
}

.section-type-white .numbered-steps,
.section-type-grey .numbered-steps{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.section-type-blue .numbered-steps{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.button.section-type-blue .numbered-steps > div {
  border-color: #FFF;
}

@media (min-width: 768px){
  .left-margin-container .numbered-steps .step{
    width: 100%;
  }
  .left-margin-container .proof-points .points-4:first-of-type {
    margin-left: -133%;
    padding-left: calc(133% + 1.5rem);
    background-image: linear-gradient(to right, #004c97, #003370);
  }
  .left-margin-container .proof-points .points-3:first-of-type {
    margin-left: -100%;
    padding-left: calc(100% + 1.5rem);
    background-image: linear-gradient(to right, #004c97, #003370);
  }
}
.left-margin-container .proof-points .point-text {
  font-size: clamp(18px, 5vw - 20px, 50px);
}

/* .proof-points */
.proof-points {
  grid-auto-rows: 1fr;
}

/* section-type-blue override */
.section-type-blue .proof-points .-right-full {
  display: block;
}

@media (min-width: 768px) {
  .left-margin-container .proof-points-new .points-4:first-of-type {
    margin-left: -133%;
    padding-left: calc(133% + 1.5rem);
  }
  .left-margin-container .proof-points-new .points-3:first-of-type {
    margin-left: -100%;
    padding-left: calc(100% + 1.5rem);
  }
}
.left-margin-container .proof-points-new .point-text {
  font-size: clamp(18px, 5vw - 20px, 50px);
}

.proof-points-new {
  justify-content: space-around;
  padding-bottom: 15px;
}

.proof-points-new .proof-text p {
  margin: 0;
}

.proof-points-new .proof-title div {
  font-weight: 800;
  font-size: 60px;
}

@media (max-width: 1180px) {
  .proof-points-new .proof-title div {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  .proof-points-new {
    padding-bottom: 8px;
  }

  .proof-points-new .proof-title div {
    font-size: 22px;
  }
}
.student-showcase .student-tile .student-tile-img,
.tingle-modal .student-modal .student-tile-img{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.student-showcase .student-tile .student-overlay,
.tingle-modal .student-modal .student-overlay{
  display: none;
}
.student-showcase .student-tile:hover .student-overlay, .student-showcase .student-tile:active .student-overlay, .student-showcase .student-tile.focus .student-overlay,
.tingle-modal .student-modal:hover .student-overlay,
.tingle-modal .student-modal:active .student-overlay,
.tingle-modal .student-modal.focus .student-overlay{
  display: flex;
}
.student-showcase .student-tile:hover .student-tile-img, .student-showcase .student-tile:active .student-tile-img, .student-showcase .student-tile.focus .student-tile-img,
.tingle-modal .student-modal:hover .student-tile-img,
.tingle-modal .student-modal:active .student-tile-img,
.tingle-modal .student-modal.focus .student-tile-img{
  --tw-grayscale: grayscale(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.student-showcase .student-tile .accordion,
.tingle-modal .student-modal .accordion{
  width: 100%;
}
.student-showcase .student-tile .glide__arrows,
.tingle-modal .student-modal .glide__arrows{
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.student-showcase .student-tile .glide__arrows .glide__arrow.glide__arrow--right,
.tingle-modal .student-modal .glide__arrows .glide__arrow.glide__arrow--right{
  margin-left: 1rem;
}
.student-showcase .student-tile .glide__arrows .glide__arrow svg,
.tingle-modal .student-modal .glide__arrows .glide__arrow svg{
  width: 0.625rem;
}
.student-showcase .student-tile .glide__bullet--active,
.tingle-modal .student-modal .glide__bullet--active{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.student-showcase .student-tile .glide .carousel-controls .glide__arrows,
.tingle-modal .student-modal .glide .carousel-controls .glide__arrows{
  pointer-events: auto;
  display: flex;
}
.student-showcase .student-tile .glide .carousel-controls .glide__arrows .glide__arrow svg,
.tingle-modal .student-modal .glide .carousel-controls .glide__arrows .glide__arrow svg{
  margin-top: auto;
  margin-bottom: auto;
  height: 2rem;
  width: 1rem;
}
.student-showcase .student-tile .glide .carousel-controls .glide__bullet--active,
.tingle-modal .student-modal .glide .carousel-controls .glide__bullet--active{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button.student-showcase .student-tile .glide .carousel-controls .glide__bullet--active > div,.button
.tingle-modal .student-modal .glide .carousel-controls .glide__bullet--active > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.student-showcase .student-tile .glide .carousel-controls .glide__bullet--active > div svg,.button
.tingle-modal .student-modal .glide .carousel-controls .glide__bullet--active > div svg {
  fill: #FFF;
}

@media (min-width: 768px) {
  .student-tile {
    height: 300px;
  }
}
/* .styled_section */
.styled_section {
  border-color: #000000;
}

.styled_section > .container {
  border-color: #000000;
}

.styled_section .secondary-color {
  color: #004c97;
}

.styled_section .secondary-bg-color {
  background-color: #004c97;
}

.styled_section .secondary-border-color {
  border-color: #004c97;
}

.styled_section a:hover:not(.wp-element-button, .button, .text-button, .view-more),
.styled_section a:focus:not(.wp-element-button, .button, .text-button, .view-more) {
  color: #004c97;
}

.styled_section > div > svg {
  fill: #004c97;
}

.styled_section.crest-grey > div > svg {
  fill: #efeded;
}

@media (min-width: 768px) {
  .styled_section .styled-section-notched .copy-block {
    padding-left: 0;
  }
  .styled_section .styled-section-notched .headline-block .headline-component {
    padding-left: 0;
  }
}
/* section-type-white + section-type-white stacking */
.section-type-white + .section-type-white {
  margin-top: -1.5rem;
  padding-top: 0;
}

@media (min-width: 768px) {
  .section-type-white + .section-type-white {
    margin-top: -2.5rem;
    padding-top: 0;
  }
}
/* section-type-grey */
.section-type-grey > div > svg {
  fill: #e1e1e1;
}

.section-type-grey.crest-light-grey > div > svg {
  fill: #f6f6f6;
}

/* section-type-blue */
/* @apply text-white bg-gradient-to-b from-blue-dark */
.section-type-blue {
  color: #ffffff;
  background-color: #0D4E97;
  border-color: #ffffff;
}

.section-type-blue > .container {
  border-color: #ffffff;
}

.section-type-blue .secondary-color {
  color: #ffffff;
}

.section-type-blue .secondary-bg-color {
  background-color: #ffffff;
}

.section-type-blue .secondary-border-color {
  border-color: #ffffff;
}

.section-type-blue a:hover,
.section-type-blue a:focus {
  color: #80c3ff;
  /* blue-light */
}

.section-type-blue > div > svg {
  fill: #0D4E97;
}

/* left-margin-container */
@media (min-width: 768px) {
  .left-margin-container .headline-grey-bg .grey-bg {
    margin-left: -33%;
    padding-left: 33%;
    width: 133%;
  }
  .tabbed-accordion{
    width: 75%;
  }
}
.tabbed-accordion .tabbed-section .tab-button{
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 0.875rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.button.tabbed-accordion .tabbed-section .tab-button > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.tabbed-accordion .tabbed-section .tab-button > div svg {
  fill: #0D4E97;
}
@media (min-width: 768px){
  .tabbed-accordion .tabbed-section .tab-button{
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.125rem;
  }
}
.tabbed-accordion .tabbed-section .tab-button {
  background: white;
}
.tabbed-accordion .tabbed-section .tab-button:hover, .tabbed-accordion .tabbed-section .tab-button:focus{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.button.tabbed-accordion .tabbed-section .tab-button:hover > div,.button .tabbed-accordion .tabbed-section .tab-button:focus > div {
  border-color: #0D4E97;
}
.tabbed-accordion .tabbed-section .tab-button:hover, .tabbed-accordion .tabbed-section .tab-button:focus {
  background: white;
}
.tabbed-accordion .tabbed-section .tab-button:active{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 255 / var(--tw-bg-opacity));
}
.button.tabbed-accordion .tabbed-section .tab-button:active > div {
  border-color: #0D4E97;
}
.tabbed-accordion .tabbed-section .tab-button.active-tab:before{
  position: absolute;
  height: 2rem;
  width: 2rem;
  border-radius: 4px;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
.tabbed-accordion .tabbed-section .tab-button.active-tab:after{
  position: absolute;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 3px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.tabbed-accordion .tabbed-section .tab-button.active-tab:after > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.tabbed-accordion .tabbed-section .tab-button.active-tab:after > div svg {
  fill: #FFF;
}
.tabbed-accordion .tabbed-section .tab-button.active-tab:after {
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%) rotate(45deg);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
.tabbed-accordion .tab-content{
  display: none;
}
.tabbed-accordion .tab-content.active-tab{
  display: flex;
}
.tabbed-accordion .tab-content .tab-link{
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.tabbed-accordion .tab-content .tab-link:hover{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}
.tabbed-accordion .section{
  max-height: 6000px;
}
.tabbed-accordion .section .section-content{
  max-height: 0px;
  overflow: hidden;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.tabbed-accordion .section.open svg{
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.tabbed-accordion .section.open .section-content{
  max-height: 6000px;
  padding-bottom: 1rem;
}
@media (min-width: 768px){
  .tabbed-accordion .section.open .section-content{
    padding-bottom: 2.5rem;
  }
}

.section-type-white .tabbed-accordion .tabbed-section .tab-button.active-tab,
.section-type-grey .tabbed-accordion .tabbed-section .tab-button.active-tab{
  cursor: default;
  --tw-border-opacity: 1;
  border-color: rgb(21 56 103 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.button.section-type-white .tabbed-accordion .tabbed-section .tab-button.active-tab > div,.button
.section-type-grey .tabbed-accordion .tabbed-section .tab-button.active-tab > div {
  color: #FFF;
  background-color: #0D4E97;
}

.button.section-type-white .tabbed-accordion .tabbed-section .tab-button.active-tab > div svg,.button
.section-type-grey .tabbed-accordion .tabbed-section .tab-button.active-tab > div svg {
  fill: #FFF;
}
.section-type-white .tabbed-accordion .tabbed-section .tab-button.active-tab:before,
.section-type-grey .tabbed-accordion .tabbed-section .tab-button.active-tab:before{
  --tw-bg-opacity: 1;
  background-color: rgb(21 56 103 / var(--tw-bg-opacity));
}
.section-type-white .tabbed-accordion .tabbed-section .tab-button.active-tab:after,
.section-type-grey .tabbed-accordion .tabbed-section .tab-button.active-tab:after{
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.section-type-white .tabbed-accordion .tabbed-section .tab-button.active-tab:after > div,.button
.section-type-grey .tabbed-accordion .tabbed-section .tab-button.active-tab:after > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.section-type-white .tabbed-accordion .tabbed-section .tab-button.active-tab:after > div svg,.button
.section-type-grey .tabbed-accordion .tabbed-section .tab-button.active-tab:after > div svg {
  fill: #FFF;
}
.section-type-white .section svg,
.section-type-grey .section svg{
  margin-top: auto;
  margin-bottom: auto;
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  fill: #004C97;
}

.section-type-blue .tabbed-accordion .tabbed-header p{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tabbed-accordion .tabbed-section .tab-button.active-tab{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(167 195 232 / var(--tw-bg-opacity));
}
.button.section-type-blue .tabbed-accordion .tabbed-section .tab-button.active-tab > div {
  border-color: #0D4E97;
}
.section-type-blue .tabbed-accordion .tabbed-section .tab-button.active-tab:before{
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.section-type-blue .tabbed-accordion .tabbed-section .tab-button.active-tab:before > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.section-type-blue .tabbed-accordion .tabbed-section .tab-button.active-tab:before > div svg {
  fill: #FFF;
}
.section-type-blue .tabbed-accordion .tabbed-section .tab-button.active-tab:after{
  --tw-bg-opacity: 1;
  background-color: rgb(167 195 232 / var(--tw-bg-opacity));
}
.section-type-blue .tab-content{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tab-content .tab-link{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tab-content .tab-link:hover{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}
.section-type-blue .section svg{
  margin-top: auto;
  margin-bottom: auto;
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  fill: #FFFFFF;
}

@media (min-width: 768px){
  .left-margin-container .tabbed-accordion{
    width: 100%;
  }
}
.left-margin-container .tabbed-accordion .tabbed-header{
  margin-left: 0px;
}

/* .tabbed-categories .tabbed-header */
.tabbed-categories .tabbed-header{
  margin-left: calc(13.33% + 20px);
}
.tabbed-categories .tabbed-header p{
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.tabbed-categories .tabbed-section .tab-button{
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.button.tabbed-categories .tabbed-section .tab-button > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.tabbed-categories .tabbed-section .tab-button > div svg {
  fill: #0D4E97;
}
@media (min-width: 768px){
  .tabbed-categories .tabbed-section .tab-button{
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.125rem;
  }
}
.tabbed-categories .tabbed-section .tab-button {
  background: white;
}
.tabbed-categories .tabbed-section .tab-button:hover, .tabbed-categories .tabbed-section .tab-button:focus{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.button.tabbed-categories .tabbed-section .tab-button:hover > div,.button .tabbed-categories .tabbed-section .tab-button:focus > div {
  border-color: #0D4E97;
}
.tabbed-categories .tabbed-section .tab-button:hover, .tabbed-categories .tabbed-section .tab-button:focus {
  background: white;
}
.tabbed-categories .tabbed-section .tab-button:active{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 255 / var(--tw-bg-opacity));
}
.button.tabbed-categories .tabbed-section .tab-button:active > div {
  border-color: #0D4E97;
}
.tabbed-categories .tabbed-section .tab-button.active-tab:before{
  position: absolute;
  height: 2rem;
  width: 2rem;
  border-radius: 4px;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
.tabbed-categories .tabbed-section .tab-button.active-tab:after{
  position: absolute;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 3px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.tabbed-categories .tabbed-section .tab-button.active-tab:after > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.tabbed-categories .tabbed-section .tab-button.active-tab:after > div svg {
  fill: #FFF;
}
.tabbed-categories .tabbed-section .tab-button.active-tab:after {
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%) rotate(45deg);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
.tabbed-categories .tab-content{
  display: none;
}
.tabbed-categories .tab-content.active-tab{
  display: flex;
}
.tabbed-categories .tab-content .tab-link{
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.tabbed-categories .tab-content .tab-link:hover{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.tabbed-categories .tab-content .wysiwyg :last-child{
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.section-type-white .tabbed-categories .tabbed-section .tab-button.active-tab,
.section-type-grey .tabbed-categories .tabbed-section .tab-button.active-tab{
  cursor: default;
  --tw-border-opacity: 1;
  border-color: rgb(21 56 103 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.button.section-type-white .tabbed-categories .tabbed-section .tab-button.active-tab > div,.button
.section-type-grey .tabbed-categories .tabbed-section .tab-button.active-tab > div {
  color: #FFF;
  background-color: #0D4E97;
}

.button.section-type-white .tabbed-categories .tabbed-section .tab-button.active-tab > div svg,.button
.section-type-grey .tabbed-categories .tabbed-section .tab-button.active-tab > div svg {
  fill: #FFF;
}
.section-type-white .tabbed-categories .tabbed-section .tab-button.active-tab:before,
.section-type-grey .tabbed-categories .tabbed-section .tab-button.active-tab:before{
  --tw-bg-opacity: 1;
  background-color: rgb(21 56 103 / var(--tw-bg-opacity));
}
.section-type-white .tabbed-categories .tabbed-section .tab-button.active-tab:after,
.section-type-grey .tabbed-categories .tabbed-section .tab-button.active-tab:after{
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.section-type-white .tabbed-categories .tabbed-section .tab-button.active-tab:after > div,.button
.section-type-grey .tabbed-categories .tabbed-section .tab-button.active-tab:after > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.section-type-white .tabbed-categories .tabbed-section .tab-button.active-tab:after > div svg,.button
.section-type-grey .tabbed-categories .tabbed-section .tab-button.active-tab:after > div svg {
  fill: #FFF;
}

.section-type-blue .tabbed-categories .tabbed-header p{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tabbed-categories .tabbed-section .tab-button.active-tab{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(167 195 232 / var(--tw-bg-opacity));
}
.button.section-type-blue .tabbed-categories .tabbed-section .tab-button.active-tab > div {
  border-color: #0D4E97;
}
.section-type-blue .tabbed-categories .tabbed-section .tab-button.active-tab:before{
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.section-type-blue .tabbed-categories .tabbed-section .tab-button.active-tab:before > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.section-type-blue .tabbed-categories .tabbed-section .tab-button.active-tab:before > div svg {
  fill: #FFF;
}
.section-type-blue .tabbed-categories .tabbed-section .tab-button.active-tab:after{
  --tw-bg-opacity: 1;
  background-color: rgb(167 195 232 / var(--tw-bg-opacity));
}
.section-type-blue .tab-content{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tab-content .tab-link{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tab-content .tab-link:hover{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}

.left-margin-container .tabbed-categories .tabbed-header{
  margin-left: 0px;
}

.styled-section-notched .tabbed-categories .tabbed-header{
  margin-left: calc(12% + 10px);
}

@media (min-width: 768px){
  .styled-section-notched .tabbed-categories .tabbed-header{
    margin-left: 0px;
  }
}

/* .tabbed-categories-new .tabbed-header */
.tabbed-categories-new .tabbed-header {
  margin-left: calc(13.33% + 20px);
}

.tabbed-categories-new .tabbed-header p {
  color: #004c97;
}

.tabbed-categories-new a {
  border-bottom: 1px solid #e5e5e5;
}

/* tab-button: nearly identical to tabbed-accordion but with font-medium tracking */
.tabbed-categories-new .tabbed-section .tab-button {
  position: relative;
  border-radius: 4px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  font-size: 0.875rem;
  border: 2px solid;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
  background: white;
}

@media (min-width: 768px) {
  .tabbed-categories-new .tabbed-section .tab-button {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.125rem;
  }
}
.tabbed-categories-new .tabbed-section .tab-button:hover,
.tabbed-categories-new .tabbed-section .tab-button:focus {
  border-color: #004c97;
  color: #004c97;
  background: white;
}

.tabbed-categories-new .tabbed-section .tab-button:active {
  background-color: #F0F7FF;
  border-color: #004c97;
}

.tabbed-categories-new .tabbed-section .tab-button.active-tab::before {
  width: 2rem;
  height: 2rem;
  position: absolute;
  border-radius: 4px;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}

.tabbed-categories-new .tabbed-section .tab-button.active-tab::after {
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  background-color: #004c97;
  border-radius: 3px;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%) rotate(45deg);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}

/* tab-content */
.tabbed-categories-new .tab-content {
  display: none;
}

.tabbed-categories-new .tab-content.active-tab {
  display: flex;
}

/* text-blue font-bold hover:text-black */
.tabbed-categories-new .tab-content .tab-link {
  color: #004c97;
  font-weight: 700;
}

.tabbed-categories-new .tab-content .tab-link:hover {
  color: #000000;
}

/* wysiwyg :last-child */
.tabbed-categories-new .tab-content .wysiwyg :last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ========================================
   section-type-white / grey
   ======================================== */
.section-type-white .tabbed-categories-new .tabbed-section .tab-button.active-tab,
.section-type-grey .tabbed-categories-new .tabbed-section .tab-button.active-tab {
  background-color: #004c97;
  color: #ffffff;
  border-color: #003370;
  cursor: default;
}

.section-type-white .tabbed-categories-new .tabbed-section .tab-button.active-tab::before,
.section-type-grey .tabbed-categories-new .tabbed-section .tab-button.active-tab::before {
  background-color: #003370;
}

.section-type-white .tabbed-categories-new .tabbed-section .tab-button.active-tab::after,
.section-type-grey .tabbed-categories-new .tabbed-section .tab-button.active-tab::after {
  background-color: #004c97;
}

/* ========================================
   section-type-blue
   ======================================== */
.section-type-blue .tabbed-categories-new .tabbed-header p {
  color: #ffffff;
}

.section-type-blue .tabbed-categories-new .tabbed-section .tab-button.active-tab {
  background-color: #a7c3e8;
  /* blue-light */
  border-color: #004c97;
}

.section-type-blue .tabbed-categories-new .tabbed-section .tab-button.active-tab::before {
  background-color: #004c97;
}

.section-type-blue .tabbed-categories-new .tabbed-section .tab-button.active-tab::after {
  background-color: #a7c3e8;
}

.section-type-blue .tabbed-categories-new .tab-content {
  color: #ffffff;
}

.section-type-blue .tabbed-categories-new .tab-content .tab-link {
  color: #ffffff;
}

.section-type-blue .tabbed-categories-new .tab-content .tab-link:hover {
  color: #a7c3e8;
}

/* ========================================
   left-margin-container
   ======================================== */
.left-margin-container .tabbed-categories-new .tabbed-header {
  margin-left: 0;
}

/* .styled-section-notched */
.styled-section-notched .tabbed-categories-new .tabbed-header {
  margin-left: calc(12% + 10px);
}

@media (min-width: 768px) {
  .styled-section-notched .tabbed-categories-new .tabbed-header {
    margin-left: 0;
  }
}
.three-cards .card {
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.25);
}
.three-cards .card .wysiwyg{
  font-size: 1rem;
}
@media (min-width: 768px){
  .three-cards .card .wysiwyg{
    font-size: 1.125rem;
  }
}
.three-cards .card .wysiwyg h1,
.three-cards .card .wysiwyg h2,
.three-cards .card .wysiwyg h3{
  font-weight: 900;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.three-cards .card .wysiwyg h1{
  font-size: 1.875rem;
}
@media (min-width: 768px){
  .three-cards .card .wysiwyg h1{
    font-size: 3.125rem;
  }
}
.three-cards .card .wysiwyg h2{
  font-size: 1.5625rem;
}
@media (min-width: 768px){
  .three-cards .card .wysiwyg h2{
    font-size: 1.875rem;
  }
}
.three-cards .card .wysiwyg h3{
  font-size: 1.375rem;
}
@media (min-width: 768px){
  .three-cards .card .wysiwyg h3{
    font-size: 1.5625rem;
  }
}
.three-cards .card .wysiwyg h4{
  font-weight: 700;
}
.three-cards .card a{
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.three-cards .card a:hover, .three-cards .card a:focus{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.three-cards .header-text h1{
  font-size: 1.875rem;
}
@media (min-width: 768px){
  .three-cards .header-text h1{
    font-size: 3.125rem;
  }
}
.three-cards .header-text h2{
  font-size: 1.5625rem;
}
@media (min-width: 768px){
  .three-cards .header-text h2{
    font-size: 1.875rem;
  }
}
.three-cards .header-text h3{
  font-size: 1.375rem;
}
@media (min-width: 768px){
  .three-cards .header-text h3{
    font-size: 1.5625rem;
  }
}
.three-cards .header-text h4{
  font-size: 1.125rem;
}
@media (min-width: 768px){
  .three-cards .header-text h4{
    font-size: 1.375rem;
  }
}
.three-cards .glide__track{
  overflow: visible;
}
@media (min-width: 1024px){
  .three-cards .last__bullet{
    display: none;
  }
}
.three-cards .glide__bullet--active{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.three-cards .glide__bullet--active > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.three-cards .glide__bullet--active > div svg {
  fill: #FFF;
}
.button.three-cards .glide__bullet--active > div {
  border-color: #0D4E97;
}

.three-cards-new .card-wrapper {
  max-width: 438px;
  margin-top: 20px;
}

.three-cards-new .card {
  height: 100%;
  padding-top: 40px;
}

.tuition-fees .tabbed-section .tab-button{
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 0.875rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.button.tuition-fees .tabbed-section .tab-button > div {
  color: #0D4E97;
  background-color: #FFF;
}

.button.tuition-fees .tabbed-section .tab-button > div svg {
  fill: #0D4E97;
}

@media (min-width: 768px){
  .tuition-fees .tabbed-section .tab-button{
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.125rem;
  }
}

.tuition-fees .tabbed-section .tab-button {
  background: white;
}
.tuition-fees .tabbed-section .tab-button:hover, .tuition-fees .tabbed-section .tab-button:focus{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.button.tuition-fees .tabbed-section .tab-button:hover > div,.button .tuition-fees .tabbed-section .tab-button:focus > div {
  border-color: #0D4E97;
}
.tuition-fees .tabbed-section .tab-button:hover, .tuition-fees .tabbed-section .tab-button:focus {
  background: white;
}
.tuition-fees .tabbed-section .tab-button:active{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 255 / var(--tw-bg-opacity));
}
.button.tuition-fees .tabbed-section .tab-button:active > div {
  border-color: #0D4E97;
}
.tuition-fees .tabbed-section .tab-button.active-tab:before{
  position: absolute;
  height: 2rem;
  width: 2rem;
  border-radius: 4px;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
.tuition-fees .tabbed-section .tab-button.active-tab:after{
  position: absolute;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 3px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.tuition-fees .tabbed-section .tab-button.active-tab:after > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.tuition-fees .tabbed-section .tab-button.active-tab:after > div svg {
  fill: #FFF;
}
.tuition-fees .tabbed-section .tab-button.active-tab:after {
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%) rotate(45deg);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
.tuition-fees .tab-content{
  display: none;
}
.tuition-fees .tab-content.active-tab{
  display: flex;
}
.tuition-fees .tab-content .tab-link{
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.tuition-fees .tab-content .tab-link:hover{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}

.section-type-white .tuition-fees .tabbed-section .tab-button.active-tab,
.section-type-grey .tuition-fees .tabbed-section .tab-button.active-tab{
  cursor: default;
  --tw-border-opacity: 1;
  border-color: rgb(21 56 103 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.button.section-type-white .tuition-fees .tabbed-section .tab-button.active-tab > div,.button
.section-type-grey .tuition-fees .tabbed-section .tab-button.active-tab > div {
  color: #FFF;
  background-color: #0D4E97;
}

.button.section-type-white .tuition-fees .tabbed-section .tab-button.active-tab > div svg,.button
.section-type-grey .tuition-fees .tabbed-section .tab-button.active-tab > div svg {
  fill: #FFF;
}
.section-type-white .tuition-fees .tabbed-section .tab-button.active-tab:before,
.section-type-grey .tuition-fees .tabbed-section .tab-button.active-tab:before{
  --tw-bg-opacity: 1;
  background-color: rgb(21 56 103 / var(--tw-bg-opacity));
}
.section-type-white .tuition-fees .tabbed-section .tab-button.active-tab:after,
.section-type-grey .tuition-fees .tabbed-section .tab-button.active-tab:after{
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.section-type-white .tuition-fees .tabbed-section .tab-button.active-tab:after > div,.button
.section-type-grey .tuition-fees .tabbed-section .tab-button.active-tab:after > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.section-type-white .tuition-fees .tabbed-section .tab-button.active-tab:after > div svg,.button
.section-type-grey .tuition-fees .tabbed-section .tab-button.active-tab:after > div svg {
  fill: #FFF;
}

.section-type-blue .tuition-fees .tabbed-header p{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tuition-fees .tabbed-section .tab-button.active-tab{
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(167 195 232 / var(--tw-bg-opacity));
}
.button.section-type-blue .tuition-fees .tabbed-section .tab-button.active-tab > div {
  border-color: #0D4E97;
}
.section-type-blue .tuition-fees .tabbed-section .tab-button.active-tab:before{
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.section-type-blue .tuition-fees .tabbed-section .tab-button.active-tab:before > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.section-type-blue .tuition-fees .tabbed-section .tab-button.active-tab:before > div svg {
  fill: #FFF;
}
.section-type-blue .tuition-fees .tabbed-section .tab-button.active-tab:after{
  --tw-bg-opacity: 1;
  background-color: rgb(167 195 232 / var(--tw-bg-opacity));
}
.section-type-blue .tab-content{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tab-content .tab-link{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .tab-content .tab-link:hover{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}

.left-margin-container .tuition-fees .tabbed-header{
  margin-left: 0px;
}

.toc{
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 2rem);
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(221 221 221 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  --tw-shadow-colored: 0px 2px 5px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 1024px){
  .toc{
    top: 0px;
    left: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.toc {
  max-width: 300px;
}
@media (min-width: 1024px) {
  .toc.toc-stuck {
    position: fixed !important;
    top: 104px !important;
  }
  .toc.toc-sticky{
    position: sticky;
    top: 130px;
  }
  .toc.toc-absolute{
    position: absolute;
    z-index: 10;
    width: 20%;
    left: 30px;
  }
}
@media (min-width: 1280px) {
  .toc.toc-absolute {
    margin-top: 50px;
    left: 30px;
  }
}
@media (min-width: 1536px) {
  .toc.toc-absolute {
    left: 50%;
    margin-left: -688px;
  }
}
.toc a{
  position: relative;
  display: block;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
@media (min-width: 1024px){
  .toc a{
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px){
  .toc a{
    font-size: 1rem;
  }
}
@media (min-width: 1536px){
  .toc a{
    font-size: 1.125rem;
  }
}
.toc a {
  text-overflow: ellipsis;
}
.toc .menu_level_2 a{
  padding-left: 1.5rem;
  font-size: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media (min-width: 768px){
  .toc .menu_level_2 a{
    font-size: 0.875rem;
  }
}
.toc .menu_level_2 a:before {
  content: "- ";
}
.toc .menu_level_2 li:after {
  height: 15px;
  width: 8px;
  top: -5px;
  display: none;
}
.toc .menu_level_3, .toc .menu_level_4, .toc .menu_level_5 {
  display: none;
}
.toc li{
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
}
@media (min-width: 1280px){
  .toc li{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
.toc li a{
  display: block;
  padding-left: 1.5rem;
  padding-right: 2.5rem;
}
.toc li a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(204 224 249 / var(--tw-bg-opacity));
}
.toc li a{
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.toc li:after{
  position: absolute;
  right: 0px;
  top: 0px;
  margin-top: 8px;
  margin-right: 1rem;
  display: block;
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
}
.button.toc li:after > div {
  color: #FFF;
  background-color: #0D4E97;
}
.button.toc li:after > div svg {
  fill: #FFF;
}
.toc li:after {
  content: "";
  width: 11px;
  height: 20px;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAxNSAzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggaWQ9IlZlY3RvciIgZD0iTTAgMFY2LjAwMjgzTDkuMDAwNzEgMTQuOTk2NUwwIDIzLjk5NzJWMzBMMTQuOTk2NSAxNC45OTY1TDAgMFoiLz4KPC9zdmc+Cg==");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAxNSAzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggaWQ9IlZlY3RvciIgZD0iTTAgMFY2LjAwMjgzTDkuMDAwNzEgMTQuOTk2NUwwIDIzLjk5NzJWMzBMMTQuOTk2NSAxNC45OTY1TDAgMFoiLz4KPC9zdmc+Cg==");
  -webkit-mask-size: 11px 20px;
          mask-size: 11px 20px;
  -webkit-mask-position: right;
          mask-position: right;
}

/** Components */
/**
 * Components
 */
/* ============================= */
/* NAV BUTTONS                   */
/* ============================= */
/* @apply absolute bottom-0 left-0 w-full grid grid-cols-2 gap-x-0.5 md:flex flex-row text-center p-0 text-sm border-t border-white md:border-0 md:relative md:w-fit md:gap-0 */
.nav-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.125rem;
  text-align: center;
  padding: 0;
  font-size: 0.875rem;
  border-top: 1px solid #ffffff;
}

@media (min-width: 768px) {
  .nav-buttons {
    display: flex;
    flex-direction: row;
    border-top: none;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    column-gap: 0;
  }
}
.nav-buttons > a {
  width: 100%;
  white-space: nowrap;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .nav-buttons > a {
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #ffffff;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .nav-buttons > a {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.nav-buttons > a.request {
  background-color: #a7c3e8;
  /* blue-light */
  color: #000000;
}

.nav-buttons > a.request:hover,
.nav-buttons > a.request:focus {
  color: #003370;
}

.nav-buttons > a.apply {
  background-color: #003370;
  color: #ffffff;
}

.nav-buttons > a.apply:hover,
.nav-buttons > a.apply:focus {
  color: #a7c3e8;
}

/* ============================= */
/* BUTTON SYSTEM                 */
/* ============================= */
/* @apply max-w-full flex justify-center font-roboto text-base font-normal tracking-[0.5px] uppercase p-0 rounded-[2px] */
.button:not(.acf-actions *):not(.acf-input *) {
  max-width: 100%;
  display: flex;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .button:not(.acf-actions *):not(.acf-input *) {
    font-size: 18px;
  }
}
/* @apply flex justify-around items-center w-full p-[1.2rem_1rem] rounded-[2px] */
.button:not(.acf-actions *):not(.acf-input *) > div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 17px;
  border-radius: 4px;
}

.button {
  background-color: #0D4E97;
}

.button > div {
  color: #fff;
  background-color: #0D4E97;
  border: 1px solid;
  border-color: #FFF;
  transition: transform 0.1s ease-in-out;
}

.button > div span {
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px 0 0;
}

@media (min-width: 768px) {
  .button > div span {
    padding: 0 40px 0 0;
  }
}
.button > div svg {
  width: 18px;
  fill: #0D4E97;
}

.button:hover > div {
  transform: translate(15px, -15px);
}

.button.bg-blue > div {
  color: #FFF;
  background-color: #0D4E97;
}

.button.bg-blue > div svg {
  fill: #FFF;
}

.button.bg-white > div {
  color: #0D4E97;
  background-color: #FFF;
}

.button.bg-white > div svg {
  fill: #0D4E97;
}

.button.bg-blue-highlight > div {
  color: #FFF;
  background-color: #0086FF;
}

.button.bg-blue-highlight > div svg {
  fill: #FFF;
}

.button.border-white > div {
  border-color: #FFF;
}

.button.border-blue > div {
  border-color: #0D4E97;
}

.button.border-blue-highlight > div {
  border-color: #0086FF;
}

.button.shadow-white {
  background-color: #FFF;
}

.button.shadow-blue {
  background-color: #0D4E97;
}

.button.shadow-white-blue {
  background-color: #FFF;
  box-shadow: inset 0 0 0 1px #0D4E97;
}

.button.shadow-white-blue-highlight {
  background-color: #FFF;
  box-shadow: inset 0 0 0 1px #0086FF;
}

/* @apply flex flex-wrap */
.button-container {
  display: flex;
  flex-wrap: wrap;
}

/* ============================= */
/* .glide__arrows                */
/* ============================= */
/* @apply absolute w-full h-full z-10 pointer-events-none hidden lg:flex */
.glide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .glide__arrows {
    display: flex;
  }
}
/* @apply text-sm font-roboto font-bold self-end text-blue-brand ml-auto md:ml-3 mb-1 w-7 text-right */
.glide__arrows .counter {
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  align-self: flex-end;
  color: #0086ff;
  margin-left: auto;
  margin-bottom: 0.25rem;
  width: 1.75rem;
  text-align: right;
}

@media (min-width: 768px) {
  .glide__arrows .counter {
    margin-left: 0.75rem;
  }
}
/* @apply relative pointer-events-auto */
.glide__arrows .glide__arrow {
  position: relative;
  pointer-events: auto;
}

/* @apply fill-blue h-14 w-7 */
.glide__arrows .glide__arrow svg {
  fill: #004c97;
  height: 3.5rem;
  width: 1.75rem;
}

.glide__arrows .glide__arrow:hover svg,
.glide__arrows .glide__arrow:focus svg {
  fill: #000000;
}

/* @apply ml-auto */
.glide__arrows .glide__arrow.glide__arrow--right {
  margin-left: auto;
}

/* ============================= */
/* .glide__arrows_w_pagination   */
/* ============================= */
/* @apply lg:flex lg:justify-end my-8 */
.glide__arrows_w_pagination {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .glide__arrows_w_pagination {
    display: flex;
    justify-content: flex-end;
  }
}
/* @apply text-lg font-bold text-blue-brand text-center p-0 */
.glide__arrows_w_pagination button {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0086ff;
  text-align: center;
  padding: 0;
}

.glide__arrows_w_pagination .counter {
  display: inline;
}

/* @apply p-3 px-4 rounded-md hover:bg-blue hover:text-white text-blue hover:shadow-navigation */
.glide__arrows_w_pagination .glide__bullet {
  padding: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0.375rem;
  color: #004c97;
}

.glide__arrows_w_pagination .glide__bullet:hover {
  background-color: #004c97;
  color: #ffffff;
  box-shadow: var(--shadow-navigation, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
}

/* @apply text-white shadow-navigation bg-blue */
.glide__arrows_w_pagination .glide__bullet--active {
  color: #ffffff;
  box-shadow: var(--shadow-navigation, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  background-color: #004c97;
}

.glide__arrows_w_pagination .glide__arrow {
  position: relative;
  pointer-events: auto;
}

.glide__arrows_w_pagination .glide__arrow svg {
  fill: #004c97;
  height: 1.75rem;
  width: 1.75rem;
}

.glide__arrows_w_pagination .glide__arrow:hover svg,
.glide__arrows_w_pagination .glide__arrow:focus svg {
  fill: #000000;
}

/* ============================= */
/* .pagination                   */
/* ============================= */
/* @apply my-8 */
.pagination {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .pagination .nav-links {
    display: flex;
    justify-content: flex-end;
  }
}
/* @apply text-sm font-bold text-blue-brand text-center */
.pagination .counter {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0086ff;
  text-align: center;
}

/* @apply p-3 px-4 rounded-md text-blue leading-none */
.pagination .page-numbers {
  padding: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0.375rem;
  color: #004c97;
  line-height: 1;
}

/* @apply text-white shadow-navigation bg-blue */
.pagination .page-numbers.current {
  color: #ffffff;
  box-shadow: var(--shadow-navigation, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  background-color: #004c97;
}

.pagination .page-numbers:not(.dots, .prev, .next):hover {
  background-color: #004c97;
  color: #ffffff;
  box-shadow: var(--shadow-navigation, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
}

/* @apply flex relative pointer-events-auto p-0 items-center hover:bg-white hover:shadow-none */
.pagination .next,
.pagination .prev {
  display: flex;
  position: relative;
  pointer-events: auto;
  padding: 0;
  align-items: center;
}

.pagination .next:hover,
.pagination .prev:hover {
  background-color: #ffffff;
  box-shadow: none;
}

.pagination .next svg,
.pagination .prev svg {
  fill: #004c97;
  height: 1.75rem;
  width: 1.75rem;
}

.pagination .next:hover svg,
.pagination .next:focus svg,
.pagination .prev:hover svg,
.pagination .prev:focus svg {
  fill: #000000;
}

.carousel-card.border-slide {
  border-radius: 0.5rem;
  border: 2px solid #000000;
  padding: 1rem;
}

@media (min-width: 768px) {
  .carousel-card.border-slide {
    border-radius: 20px;
    border-width: 3px;
    padding-top: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 3rem;
  }
}
/* .carousel-card.image-slide.border-slide */
.carousel-card.image-slide.border-slide {
  padding: 1rem;
}

@media (min-width: 768px) {
  .carousel-card.image-slide.border-slide {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .carousel-card.image-slide.border-slide {
    padding: 4rem;
  }
}
/* @apply mb-4 */
.carousel-card .carousel-image {
  margin-bottom: 1rem;
}

/* @apply text-blue-brand */
.carousel-card .carousel-number {
  color: #0086ff;
}

/* @apply text-black */
.carousel-card .carousel-text {
  color: #000000;
}

/* @apply text-blue-brand */
.carousel-card .carousel-text .carousel-title {
  color: #0086ff;
}

/* @apply italic font-bold */
.carousel-card .carousel-text span {
  font-style: italic;
  font-weight: 700;
}

/* @apply list-decimal ml-7 */
.carousel-card .carousel-text .carousel-content ol {
  list-style: decimal;
  margin-left: 1.75rem;
}

/* @apply text-blue-brand font-semibold */
.carousel-card .carousel-text .carousel-content ol li::marker {
  color: #0086ff;
  font-weight: 600;
}

/* .quote-slide */
.carousel-card.quote-slide .carousel-content {
  font-style: italic;
}

/* .large-titles */
.carousel-card.large-titles .carousel-text .carousel-title {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .carousel-card.large-titles .carousel-text .carousel-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .carousel-card.large-titles .carousel-text .carousel-title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1280px) {
  .carousel-card.large-titles .carousel-text .carousel-title {
    font-size: 2.25rem;
  }
}
/* ========================================
   section-type-red
   ======================================== */
.section-type-red .carousel-card {
  border-color: #ffffff;
}

.section-type-red .carousel-card .carousel-number {
  -webkit-text-stroke: 1px #fff;
}

@media (min-width: 768px) {
  .section-type-red .carousel-card .carousel-number {
    color: #000000;
    -webkit-text-stroke: 0;
  }
}
.section-type-red .carousel-card .carousel-text {
  color: #ffffff;
}

.section-type-red .carousel-card .carousel-text .carousel-title {
  color: #000000;
}

.section-type-red .carousel-card .carousel-text .carousel-content ol li::marker {
  color: #000000;
}

/* ========================================
   section-type-black
   ======================================== */
.section-type-black .carousel-card {
  border-color: #ffffff;
}

.section-type-black .carousel-card .carousel-text {
  color: #ffffff;
}

.section-type-black .carousel-card .carousel-text .carousel-title {
  color: #0086ff;
}

.section-type-black .carousel-card .carousel-text .carousel-content ol li::marker {
  color: #0086ff;
}

/* ========================================
   section-type-yorkville-white
   ======================================== */
.section-type-yorkville-white .carousel-card {
  border-color: #000000;
}

.section-type-yorkville-white .carousel-card .carousel-text {
  color: #000000;
}

.section-type-yorkville-white .carousel-card .carousel-text .carousel-title {
  color: #0086ff;
}

.section-type-yorkville-white .carousel-card .carousel-text .carousel-content ol li::marker {
  color: #0086ff;
}

/* ========================================
   section-type-yorkville-grey
   ======================================== */
.section-type-yorkville-grey .carousel-card {
  border-color: #ffffff;
}

.section-type-yorkville-grey .carousel-card .carousel-text {
  color: #ffffff;
}

.section-type-yorkville-grey .carousel-card .carousel-text .carousel-title {
  color: #ffffff;
}

.section-type-yorkville-grey .carousel-card .carousel-text .carousel-content ol li::marker {
  color: #ffffff;
}

.headline-component .headline{
  width: 100%;
  padding-right: 10%;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}

@media (min-width: 768px){
  .headline-component .headline{
    font-size: 3.75rem;
  }
}

.header-copy p{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

@media (min-width: 768px){
  .header-copy p{
    max-width: 75%;
  }
  .left-margin-container .headline-component .header-copy p{
    max-width: 67%;
  }
}

.section-type-blue .headline-component .headline{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .headline-component .header-copy p{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.section-type-blue .headline-grey-bg .headline-component .headline{
  width: 100%;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .section-type-blue .headline-grey-bg .headline-component .headline{
    font-size: 3.75rem;
  }
  .section-type-blue .headline-grey-bg .headline-component .header-copy p{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
  }
}

/*
Default Inputs

Standard text inputs

Markup:
<div class="p-12 lg:w-1/2">
  <label class="form__label">First Name</label>
  <input type="text" class="form__text-input {{modifier_class}}">
</div>

:hover - Hover / Active state
.error - Error state

Styleguide Components.Form.Inputs
*/
/*
Textarea Inputs

Larger textarea type of inputs

Markup:
<div class="p-12 lg:w-1/2">
  <label class="form__label">Your Message</label>
  <textarea class="form__text-input {{modifier_class}}"></textarea>
</div>

:hover - Hover / Active state
.error - Error state

Styleguide Components.Form.Textarea
*/
.program-thumbnail{
  height: -moz-fit-content;
  height: fit-content;
  min-height: 336px;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(221 221 221 / var(--tw-border-opacity));
}
@media (min-width: 768px){
  .program-thumbnail{
    height: 336px;
  }
}
.program-thumbnail {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}
.program-thumbnail .thumbnail-container{
  display: none;
}
.program-thumbnail .thumbnail-description{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.program-thumbnail .program-explore{
  position: absolute;
  bottom: 2rem;
  padding-top: 1rem;
}
.program-thumbnail.open{
  height: -moz-fit-content;
  height: fit-content;
}
.program-thumbnail.open svg{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.program-thumbnail.open .thumbnail-container{
  display: block;
}
.program-thumbnail.open .thumbnail-description{
  -webkit-line-clamp: unset;
}
.program-thumbnail.open .program-explore{
  position: relative;
  bottom: 0.5rem;
}
.program-thumbnail ul,
.program-thumbnail ol{
  margin-top: 1.5rem;
}

.table thead, .table__head{
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.table td{
  padding: 1rem;
}
.wysiwyg .container.table td,
.basic-page-content .container.table td,
.mce-content-body .container.table td {
  padding-left: 0;
  padding-right: 0;
}
.table td:first-child {
  padding-left: 0;
}
.table td:last-child {
  padding-right: 0;
}
.table tr{
  border-bottom-width: 1px;
}
.table tr:last-child{
  border-bottom-width: 0px;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* ============================= */
/* .splide                       */
/* ============================= */
.splide__slide {
  display: flex;
  flex-direction: column;
}

/* _2 variant */
.splide__slide_2 > div {
  height: 50%;
}

/* _3 variant */
.splide__slide_3 > div {
  height: 33%;
}

/* ============================= */
/* .splide__arrows               */
/* ============================= */
/* @apply absolute w-full h-full z-10 pointer-events-none hidden lg:flex */
.splide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .splide__arrows {
    display: flex;
  }
}
/* .splide__arrow */
.splide__arrows .splide__arrow {
  top: 45%;
  position: absolute;
  pointer-events: auto;
}

/* @apply fill-blue h-14 w-7 */
.splide__arrows .splide__arrow svg {
  fill: #004c97;
  height: 3.5rem;
  width: 1.75rem;
}

.splide__arrows .splide__arrow:hover svg,
.splide__arrows .splide__arrow:focus svg {
  fill: #000000;
}

.splide__arrows .splide__arrow.splide__arrow--right {
  margin-left: auto;
}

/* @apply left-0 -ml-10 + rotate(180deg) */
.splide__arrows .splide__arrow--prev {
  transform: rotate(180deg);
  left: 0;
  margin-left: -2.5rem;
}

/* @apply right-0 -mr-10 */
.splide__arrows .splide__arrow--next {
  right: 0;
  margin-right: -2.5rem;
}

/* ============================= */
/* .splide__pagination           */
/* ============================= */
/* @apply my-2 md:my-8 lg:flex lg:justify-center items-center gap-2 */
.splide__pagination {
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .splide__pagination {
    display: flex;
    justify-content: center;
  }
}
/* @apply text-sm font-bold text-blue-brand text-center */
.splide__pagination .counter {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0086ff;
  text-align: center;
}

/* @apply hidden m-[1px] p-2 px-3 text-sm rounded-md leading-none shadow-none */
.splide__pagination .splide__pagination__page {
  margin: 1px;
  padding: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  line-height: 1;
  box-shadow: none;
  background: transparent;
  color: #80c3ff;
  font-weight: bold;
}

@media (min-width: 768px) {
  .splide__pagination .splide__pagination__page {
    padding: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1rem;
    display: block;
  }
}
.splide__pagination .splide__pagination__page:hover {
  background: transparent;
  box-shadow: none;
  color: #0086ff;
}

.splide__pagination .splide__pagination__page.is-active {
  background: transparent;
  box-shadow: none;
  color: #0086ff;
  display: block;
}

/* @apply fill-blue h-7 w-7 */
.splide__pagination svg {
  fill: #004c97;
  height: 1.75rem;
  width: 1.75rem;
}

.splide__pagination li:hover svg,
.splide__pagination li:focus svg {
  fill: #000000;
}

/* .next / .prev */
/* @apply flex relative pointer-events-auto p-0 items-center */
.splide__pagination .next,
.splide__pagination .prev {
  display: flex;
  position: relative;
  pointer-events: auto;
  padding: 0;
  align-items: center;
  background: transparent;
}

.splide__pagination .next svg,
.splide__pagination .prev svg {
  fill: #004c97;
  height: 1.75rem;
  width: 1.75rem;
}

.splide__pagination .next:hover,
.splide__pagination .next:focus,
.splide__pagination .prev:hover,
.splide__pagination .prev:focus {
  background: transparent;
  box-shadow: none;
}

.splide__pagination .next:hover svg,
.splide__pagination .next:focus svg,
.splide__pagination .prev:hover svg,
.splide__pagination .prev:focus svg {
  fill: #000000;
}

/** Partials */
/**
 * Partials
 */
.site_cookie-banner {
  max-height: 400px;
  transition: max-height 0.3s linear;
}
.site_cookie-banner.hide{
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s linear;
}
.site_cookie-banner .copy a{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.site_cookie-banner .cookie-close svg{
  height: 1rem;
  width: 1rem;
}
.site_cookie-banner .cookie-close svg path{
  stroke: #000;
  stroke-width: 2;
}
.site_cookie-banner .cookie-close:hover svg path, .site_cookie-banner .cookie-close:focus svg path{
  stroke: #004C97;
}

/* ============================= */
/* .header                       */
/* ============================= */
.header {
  position: sticky;
  color: #ffffff;
  background-color: #004c97;
  top: 0;
  width: 100%;
  z-index: 50;
  pointer-events: none;
}

@media (min-width: 768px) {
  .header {
    top: 2.25rem;
  }
}
.header .container {
  pointer-events: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  height: 4rem;
  z-index: 10;
  letter-spacing: 0.25px;
}

@media (min-width: 768px) {
  .header .container {
    font-size: 0.875rem;
    justify-content: space-between;
    padding: 0;
    margin-top: 2.25rem;
    height: 5rem;
  }
}
.header .container .brand {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  margin-right: auto;
  display: flex;
  padding-left: 10px;
  height: 2.5rem;
}

.header .container .brand img {
  height: 2.5rem;
  margin: auto 0;
}

@media (min-width: 768px) {
  .header .container .brand {
    font-size: 1.125rem;
    margin-right: 0.5rem;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    width: 12rem;
  }

  .header .container .brand img {
    height: auto;
  }
}
@media (min-width: 1024px) {
  .header .container .brand {
    margin-right: 4rem;
  }
}
/* ============================= */
/* .hamburger                    */
/* ============================= */
.hamburger {
  display: block;
  width: 23px;
  height: 17px;
  position: relative;
  margin-left: auto;
  z-index: 10;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger__line {
  background-color: #ffffff;
  height: 3px;
  width: 100%;
  display: block;
  position: absolute;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger__line:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

.hamburger__line:nth-child(2) {
  top: 7px;
  transform-origin: left center;
}

.hamburger__line:nth-child(3) {
  top: 14px;
  transform-origin: left center;
}

/* ============================= */
/* .menu--active header state    */
/* ============================= */
.menu--active header nav.nav-primary .menu-header-nav-container,
.menu--active div.nav-fixed-parent nav.nav-primary .menu-header-nav-container {
  max-height: 24rem;
}

.menu--active header .hamburger__line,
.menu--active div.nav-fixed-parent .hamburger__line {
  background-color: #ffffff;
}

.menu--active header .hamburger__line:nth-child(1),
.menu--active div.nav-fixed-parent .hamburger__line:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 3px;
}

.menu--active header .hamburger__line:nth-child(2),
.menu--active div.nav-fixed-parent .hamburger__line:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.menu--active header .hamburger__line:nth-child(3),
.menu--active div.nav-fixed-parent .hamburger__line:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
  left: 3px;
}

/* ============================= */
/* .nav-wrapper                  */
/* ============================= */
.nav-wrapper {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  height: 0;
  top: 100%;
  left: 0;
  background-color: #004c97;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 10;
}

@media (min-width: 768px) {
  .nav-wrapper {
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    position: static;
    height: 100%;
    width: 100%;
    justify-content: space-between;
  }
}
.nav-wrapper .menu-container {
  height: calc(100% - 146px);
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .nav-wrapper .menu-container {
    overflow: hidden;
    height: auto;
  }
}
/* .menu */
.nav-wrapper .menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

@media (min-width: 768px) {
  .nav-wrapper .menu {
    width: auto;
    flex-direction: row;
    position: static;
    height: 100%;
  }
}
/* menu > li */
.nav-wrapper .menu > li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-wrapper .menu > li {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    flex-direction: row;
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .nav-wrapper .menu > li {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.nav-wrapper .menu > li:hover {
  background-color: #003370;
}

.nav-wrapper .menu > li:hover > a {
  color: #a7c3e8;
}

.nav-wrapper .menu > li > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.25px;
}

@media (min-width: 768px) {
  .nav-wrapper .menu > li > a {
    font-size: 15px;
  }
}
/* chevron after for non-link items */
.nav-wrapper .menu > li:not(.menu-link) > a:after {
  content: url("../../dist/images/chevron-down-small.svg");
  display: block;
  stroke: #ffffff;
  margin-left: 0.5rem;
  width: 0.75rem;
}

.nav-wrapper .menu > li:not(.menu-link):hover > a:after {
  content: url("../../dist/images/chevron-down-blue-light-small.svg");
}

/* ============================= */
/* sub-menu                      */
/* ============================= */
.nav-wrapper .menu > li > .sub-menu {
  position: relative;
  display: none;
  width: 100%;
  cursor: default;
  padding-left: calc((100% - 1376px) / 2);
  padding-right: calc((100% - 1376px) / 2);
  max-height: 0;
  overflow-y: hidden;
}

@media (min-width: 768px) {
  .nav-wrapper .menu > li > .sub-menu {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    height: 0;
    overflow-x: hidden;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #003370;
    word-break: break-word;
    max-height: calc(100vh - 131px);
  }
}
@media (min-width: 1024px) {
  .nav-wrapper .menu > li > .sub-menu {
    padding-right: 25%;
  }
}
@media (min-width: 1396px) {
  .nav-wrapper .menu > li > .sub-menu {
    padding-right: calc(50vw - 354px);
  }
}
.nav-wrapper .menu > li > .sub-menu a {
  display: block;
  line-height: 2;
  cursor: pointer;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .nav-wrapper .menu > li > .sub-menu a {
    margin-bottom: 0.75rem;
  }
}
.nav-wrapper .menu > li > .sub-menu a:focus,
.nav-wrapper .menu > li > .sub-menu a:hover,
.nav-wrapper .menu > li > .sub-menu a:active {
  color: #a7c3e8;
}

@media (min-width: 768px) {
  .nav-wrapper .menu > li > .sub-menu .menu-section-info > a:hover,
.nav-wrapper .menu > li > .sub-menu .menu-section-info > p:hover {
    text-decoration: none;
  }
  .nav-wrapper .menu > li > .sub-menu > li:not(.menu-section-info) {
    width: 21%;
    margin-left: 52%;
    font-weight: 400;
  }

  .nav-wrapper .menu > li > .sub-menu > li:not(.menu-section-info):first-child {
    padding-top: 0.5rem;
  }
}
.nav-wrapper .menu > li > .sub-menu > li.menu-item-has-children {
  padding-bottom: 1rem;
  padding-top: 0.5rem;
}

@media (min-width: 380px) {
  .nav-wrapper .menu > li > .sub-menu > li.menu-item-has-children {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .nav-wrapper .menu > li > .sub-menu > li.menu-item-has-children {
    width: auto;
  }
}
.nav-wrapper .menu > li > .sub-menu > li.menu-item-has-children > a {
  font-weight: 600;
}

.nav-wrapper .menu > li > .sub-menu > li.menu-item-has-children > p {
  display: block;
  text-transform: none;
  width: 100%;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  cursor: default;
  text-decoration: none;
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-wrapper .menu > li > .sub-menu > li.menu-item-has-children > p {
    margin-bottom: 0.75rem;
  }
}
/* ============================= */
/* .active--section              */
/* ============================= */
@media (min-width: 768px) {
  .nav-wrapper .menu > li.active--section {
    background-color: #003370;
  }
}
.nav-wrapper .menu > li.active--section > a:after {
  transform: rotate(180deg) translateY(0.125rem);
}

.nav-wrapper .menu > li.active--section > .sub-menu {
  display: block;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

@media (min-width: 768px) {
  .nav-wrapper .menu > li.active--section > .sub-menu {
    height: auto;
    color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: translate3d(0, 0, 0);
  }
  .nav-wrapper .menu > li.active--section > .sub-menu > div,
.nav-wrapper .menu > li.active--section > .sub-menu > .menu-section-info {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    grid-column: 1;
    grid-row: 1/6;
  }
  .nav-wrapper .menu > li.active--section > .sub-menu > li:not(.menu-section-info) {
    margin-left: 4%;
    width: 100%;
  }
}
/* .sub-menu-has-children */
@media (min-width: 380px) {
  .nav-wrapper .menu > li.active--section > .sub-menu.sub-menu-has-children {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .nav-wrapper .menu > li.active--section > .sub-menu.sub-menu-has-children {
    display: grid;
  }
  .nav-wrapper .menu > li.active--section > .sub-menu.sub-menu-has-children .menu-section-title {
    display: block;
  }
}
/* svg hover/focus */
.nav-wrapper svg:hover path,
.nav-wrapper svg:focus path {
  stroke: #a7c3e8;
}

/* ============================= */
/* .search-form                  */
/* ============================= */
.nav-wrapper .search-form {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #004c97;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  display: none;
}

@media (min-width: 768px) {
  .nav-wrapper .search-form {
    top: 100%;
    background-color: #003370;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.nav-wrapper .search-form form {
  border: 2px solid #ffffff;
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .nav-wrapper .search-form form {
    max-width: 1376px;
    margin-left: auto;
    margin-right: auto;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #ffffff;
    border-radius: 0;
  }
}
.nav-wrapper .search-form form label input {
  background-color: #004c97;
  margin-left: 1rem;
  padding: 0;
  width: 91.666667%;
  color: #ffffff;
  border: none !important;
}

@media (min-width: 768px) {
  .nav-wrapper .search-form form label input {
    background-color: #003370;
    font-size: 1.125rem;
    height: 1.5rem;
  }
}
.nav-wrapper .search-form form label input:-ms-input-placeholder {
  content: "hello";
}
.nav-wrapper .search-form form label input::placeholder {
  content: "hello";
}

.nav-wrapper .search-form form button {
  background-color: transparent;
  border-radius: 9999px;
  overflow: hidden;
}

.nav-wrapper .search-form form button span.is-search-icon {
  border: none;
  background-color: #004c97;
}

@media (min-width: 768px) {
  .nav-wrapper .search-form form button span.is-search-icon {
    background-color: #003370;
  }
  .nav-wrapper .search-form form button span.is-search-icon svg {
    display: block;
    height: 2rem;
    width: 2rem;
  }
}
.nav-wrapper .search-form form button span.is-search-icon svg path {
  stroke: #ffffff;
  fill: #fff !important;
}

.nav-wrapper .search-form form button span.is-search-icon svg:hover path,
.nav-wrapper .search-form form button span.is-search-icon svg:focus path {
  stroke: #a7c3e8;
  fill: #a7c3e8 !important;
}

.nav-wrapper .search-form form .is-search-input {
  font-family: "Roboto", sans-serif;
}

/* ============================= */
/* .menu--active                 */
/* ============================= */
.menu--active .nav-wrapper {
  height: -moz-fit-content;
  height: fit-content;
  min-height: calc(100vh - 64px);
  padding-bottom: 1rem;
  padding-top: 4rem;
  display: flex;
}

.menu--active .search-form {
  display: block;
}

.menu--active main,
.menu--active footer {
  display: none;
}

@media (min-width: 768px) {
  .menu--active main,
.menu--active footer {
    display: block;
  }
}
.menu--active .search-button-desktop {
  display: block;
}

/* ============================= */
/* .menu--search--active         */
/* ============================= */
.menu--search--active .search-form {
  max-height: 100vh;
  height: 100%;
  display: block;
}

@media (min-width: 768px) {
  .menu--search--active .search-form {
    height: calc(100vh - 100px);
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.menu--search--active .search-button-desktop svg:first-child {
  display: none;
}

.menu--search--active .search-button-desktop svg:last-child {
  display: block;
}

.menu--search--active div.is-ajax-search-result {
  display: block;
}

/* ============================= */
/* .nav-buttons                  */
/* ============================= */
.nav-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.125rem;
  flex-direction: row;
  text-align: center;
  padding: 0;
  background-color: #ffffff;
  font-size: 0.875rem;
  border-top: 1px solid #ffffff;
}

@media (min-width: 768px) {
  .nav-buttons {
    border-top: none;
    display: flex;
    flex-direction: row;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    column-gap: 0;
  }
}
.nav-buttons > a {
  width: 100%;
  white-space: nowrap;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .nav-buttons > a {
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #ffffff;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .nav-buttons > a {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.nav-buttons > a.request {
  background-color: #a7c3e8;
  color: #000000;
}

.nav-buttons > a.request:hover,
.nav-buttons > a.request:focus {
  color: #003370;
}

.nav-buttons > a.apply {
  background-color: #003370;
  color: #ffffff;
}

.nav-buttons > a.apply:hover,
.nav-buttons > a.apply:focus {
  color: #a7c3e8;
}

/* ============================= */
/* Ajax search results           */
/* ============================= */
/* @apply mt-4 bg-blue-dark hidden h-[calc(100vh-364px)] md:h-[calc(100vh-390px)] text-sm text-left */
body div.is-ajax-search-result {
  margin-top: 1rem;
  background-color: #003370;
  display: none;
  height: calc(100vh - 364px);
  font-size: 0.875rem;
  text-align: left;
}

@media (min-width: 768px) {
  body div.is-ajax-search-result {
    height: calc(100vh - 390px);
  }
}
body div.is-ajax-search-result .is-ajax-search-items {
  height: inherit;
  max-height: 100% !important;
}

/* @apply bg-blue-dark border-b-0 text-white hover:bg-blue */
body div.is-ajax-search-result .is-ajax-search-post {
  background-color: #003370;
  border-bottom: none;
  color: #ffffff;
}

body div.is-ajax-search-result .is-ajax-search-post:hover {
  background-color: #004c97;
}

body div.is-ajax-search-result .is-ajax-search-post .is-search-sections {
  display: flex;
  flex-direction: row;
}

/* @apply text-white underline hover:text-blue-light focus:text-blue-light text-xs md:text-lg */
body div.is-ajax-search-result .is-ajax-search-post .is-search-sections a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.75rem;
}

body div.is-ajax-search-result .is-ajax-search-post .is-search-sections a:hover,
body div.is-ajax-search-result .is-ajax-search-post .is-search-sections a:focus {
  color: #a7c3e8;
}

@media (min-width: 768px) {
  body div.is-ajax-search-result .is-ajax-search-post .is-search-sections a {
    font-size: 1.125rem;
  }
  body div.is-ajax-search-result .is-ajax-search-post .is-search-sections .is-ajax-result-description {
    font-size: 0.875rem;
  }
}
body div.is-ajax-search-result .is-ajax-search-post .is-search-sections .is-title {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* @apply py-2 rounded bg-blue md:bg-blue-dark border-2 border-t-2 border-white text-white hover:border-blue-light hover:text-blue-light box-border mt-6 md:py-10 cursor-pointer */
body div.is-ajax-search-result .is-show-more-results {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0.25rem;
  background-color: #004c97;
  border: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  color: #ffffff;
  box-sizing: border-box;
  margin-top: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  body div.is-ajax-search-result .is-show-more-results {
    background-color: #003370;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
body div.is-ajax-search-result .is-show-more-results:hover {
  border-color: #a7c3e8;
  color: #a7c3e8;
  background-color: #004c97;
}

@media (min-width: 768px) {
  body div.is-ajax-search-result .is-show-more-results:hover {
    background-color: #003370;
  }
  body div.is-ajax-search-result .is-show-more-results > div {
    font-size: 1.5rem;
  }

  body div.is-ajax-search-result .is-show-more-results > div span {
    font-size: 1.5rem;
  }
}
footer.footer .footer-main .footer-column{
  height: auto;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
footer.footer .footer-main .footer-column.footer-left{
  padding-bottom: 0.5rem;
}
footer.footer .footer-main .footer-column.footer-center{
  padding-bottom: 5rem;
}
@media (min-width: 1024px){
  footer.footer .footer-main .footer-column.footer-center{
    padding-bottom: 1.5rem;
  }
}
footer.footer .footer-main .footer-column.footer-center nav{
  font-size: 0.875rem;
}
@media (min-width: 768px){
  footer.footer .footer-main .footer-column.footer-center nav{
    font-size: 1rem;
  }
}
footer.footer .footer-main .footer-column.footer-center nav li{
  margin-bottom: 1.5rem;
}
footer.footer .footer-main .footer-column .footer-title{
  margin-bottom: 1.5rem;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 1024px){
  footer.footer .footer-main .footer-column .footer-title{
    padding-bottom: 0.5rem;
    font-size: 1.375rem;
  }
}
footer.footer .footer-main a:hover, footer.footer .footer-main a:focus{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}
footer.footer .mktoForm {
  width: 100% !important;
}
footer.footer .mktoForm .mktoFormCol{
  width: 100%;
}
footer.footer .mktoForm .mktoOffset{
  display: none;
}
footer.footer .mktoForm .mktoFieldWrap{
  display: flex;
  width: 100%;
  flex-direction: column;
}
footer.footer .mktoForm .mktoFieldWrap label{
  font-size: 0.75rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  footer.footer .mktoForm .mktoFieldWrap label{
    font-size: 0.875rem;
  }
}
footer.footer .mktoForm .mktoFieldWrap label {
  width: 100% !important;
}
footer.footer .mktoForm .mktoFieldWrap label .mktoAsterix{
  display: none;
}
footer.footer .mktoForm .mktoFieldWrap .mktoGutter{
  height: 0.5rem;
}
footer.footer .mktoForm .mktoFieldWrap .mktoField{
  border-radius: 0.5rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
footer.button.footer .mktoForm .mktoFieldWrap .mktoField > div {
  border-color: #FFF;
}
@media (min-width: 768px){
  footer.footer .mktoForm .mktoFieldWrap .mktoField{
    font-size: 0.875rem;
  }
}
footer.footer .mktoForm .mktoFieldWrap .mktoField {
  width: 100% !important;
}
footer.footer .mktoForm .mktoFormRow{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
footer.footer .mktoForm .mktoButtonRow{
  margin-top: 0.5rem;
  width: 100%;
}
footer.footer .mktoForm .mktoButtonRow .mktoButtonWrap {
  margin: 0 !important;
}
footer.footer .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton{
  width: 100%;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 76 151 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  footer.footer .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton{
    border-width: 3px;
    font-size: 0.875rem;
  }
}
footer.footer .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover, footer.footer .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
footer.button.footer .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover > div, footer.button.footer .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus > div {
  border-color: #FFF;
}

/**
 * These are overrides to tingle.
 * We should consider moving the tingle source into here
 * and ignoring the global import
 */
.tingle-modal-box__content{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.button.tingle-modal-box__content > div {
  color: #0D4E97;
  background-color: #FFF;
}
.button.tingle-modal-box__content > div svg {
  fill: #0D4E97;
}
@media (min-width: 640px){
  .tingle-modal-box__content{
    padding: 2rem;
  }
}
@media (min-width: 768px){
  .tingle-modal-box__content{
    padding: 3rem;
  }
}

.tingle-modal {
  background-color: rgba(0, 0, 0, 0.5);
}

.tingle-modal__close{
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
  height: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}

@media (min-width: 768px){
  .tingle-modal__close{
    top: 1rem;
    right: 1rem;
  }
}
.tingle-modal__close:hover, .tingle-modal__close:focus{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}
.tingle-modal__close .tingle-modal__closeIcon{
  display: inline;
}
.tingle-modal__close .tingle-modal__closeIcon svg{
  height: 100%;
}
.tingle-modal__close .tingle-modal__closeLabel{
  display: none;
}

.tingle-modal-box{
  width: 100%;
}

@media (min-width: 640px){
  .tingle-modal-box{
    width: 95%;
  }
}

.tingle-modal-box {
  max-width: 1200px;
}

.mini-subnav{
  position: fixed;
  left: 0px;
  right: 0px;
  z-index: 30;
  width: 100%;
  overflow-y: visible;
  overflow-x: scroll;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.button.mini-subnav > div {
  color: #0D4E97;
  background-color: #FFF;
}

.button.mini-subnav > div svg {
  fill: #0D4E97;
}
@media (min-width: 768px) {
  .mini-subnav{
    display: none;
  }
}
.mini-subnav a{
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.mini-subnav a.mini-nav-active{
  --tw-bg-opacity: 1;
  background-color: rgb(225 238 255 / var(--tw-bg-opacity));
  font-weight: 600;
}
.hover\:z-10:hover{
  z-index: 10;
}
.hover\:border:hover{
  border-width: 1px;
}
.hover\:border-black:hover{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.hover\:border-b-black:hover{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.hover\:bg-blue-lighter:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(225 238 255 / var(--tw-bg-opacity));
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hover\:bg-blue-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(21 56 103 / var(--tw-bg-opacity));
}
.hover\:fill-blue-light:hover{
  fill: #A7C3E8;
}
.hover\:fill-blue:hover{
  fill: #004C97;
}
.hover\:fill-black:hover{
  fill: #000;
}
.hover\:stroke-blue-light:hover{
  stroke: #A7C3E8;
}
.hover\:stroke-black:hover{
  stroke: #000;
}
.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.hover\:text-blue:hover{
  --tw-text-opacity: 1;
  color: rgb(0 76 151 / var(--tw-text-opacity));
}
.hover\:text-blue-dark:hover{
  --tw-text-opacity: 1;
  color: rgb(21 56 103 / var(--tw-text-opacity));
}
.hover\:text-blue-light:hover{
  --tw-text-opacity: 1;
  color: rgb(167 195 232 / var(--tw-text-opacity));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:opacity-90:hover{
  opacity: 0.9;
}
.hover\:grayscale-0:hover{
  --tw-grayscale: grayscale(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.focus\:static:focus{
  position: static;
}
.focus\:block:focus{
  display: block;
}
.focus\:h-auto:focus{
  height: auto;
}
.focus\:w-auto:focus{
  width: auto;
}
.focus\:border-black:focus{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.focus\:bg-white:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.focus\:text-black:focus{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.active\:border-blue-dark:active{
  --tw-border-opacity: 1;
  border-color: rgb(21 56 103 / var(--tw-border-opacity));
}
.active\:bg-blue-dark:active{
  --tw-bg-opacity: 1;
  background-color: rgb(21 56 103 / var(--tw-bg-opacity));
}
.active\:text-white:active{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 640px){
  .sm\:h-full{
    height: 100%;
  }
  .sm\:w-5{
    width: 1.25rem;
  }
  .sm\:w-auto{
    width: auto;
  }
}
@media (min-width: 768px){
  .md\:absolute{
    position: absolute;
  }
  .md\:relative{
    position: relative;
  }
  .md\:left-1\/2{
    left: 50%;
  }
  .md\:bottom-auto{
    bottom: auto;
  }
  .md\:left-auto{
    left: auto;
  }
  .md\:top-8{
    top: 2rem;
  }
  .md\:right-8{
    right: 2rem;
  }
  .md\:-left-\[20\%\]{
    left: -20%;
  }
  .md\:top-0{
    top: 0px;
  }
  .md\:left-0{
    left: 0px;
  }
  .md\:-top-\[26px\]{
    top: -26px;
  }
  .md\:right-24{
    right: 6rem;
  }
  .md\:-top-6{
    top: -1.5rem;
  }
  .md\:right-7{
    right: 1.75rem;
  }
  .md\:col-span-3{
    grid-column: span 3 / span 3;
  }
  .md\:col-start-2{
    grid-column-start: 2;
  }
  .md\:m-0{
    margin: 0px;
  }
  .md\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .md\:my-9{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }
  .md\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .md\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }
  .md\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
  .md\:my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .md\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:mt-20{
    margin-top: 5rem;
  }
  .md\:mt-9{
    margin-top: 2.25rem;
  }
  .md\:mb-4{
    margin-bottom: 1rem;
  }
  .md\:mr-6{
    margin-right: 1.5rem;
  }
  .md\:mt-12{
    margin-top: 3rem;
  }
  .md\:mb-12{
    margin-bottom: 3rem;
  }
  .md\:mb-5{
    margin-bottom: 1.25rem;
  }
  .md\:mt-8{
    margin-top: 2rem;
  }
  .md\:ml-44{
    margin-left: 11rem;
  }
  .md\:mb-16{
    margin-bottom: 4rem;
  }
  .md\:mb-28{
    margin-bottom: 7rem;
  }
  .md\:mb-auto{
    margin-bottom: auto;
  }
  .md\:ml-auto{
    margin-left: auto;
  }
  .md\:mt-14{
    margin-top: 3.5rem;
  }
  .md\:mt-16{
    margin-top: 4rem;
  }
  .md\:mb-14{
    margin-bottom: 3.5rem;
  }
  .md\:mb-0{
    margin-bottom: 0px;
  }
  .md\:ml-8{
    margin-left: 2rem;
  }
  .md\:mr-32{
    margin-right: 8rem;
  }
  .md\:mt-auto{
    margin-top: auto;
  }
  .md\:ml-2{
    margin-left: 0.5rem;
  }
  .md\:mt-10{
    margin-top: 2.5rem;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:grid{
    display: grid;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-full{
    height: 100%;
  }
  .md\:h-8{
    height: 2rem;
  }
  .md\:h-\[480px\]{
    height: 480px;
  }
  .md\:h-\[60px\]{
    height: 60px;
  }
  .md\:max-h-\[450px\]{
    max-height: 450px;
  }
  .md\:max-h-40{
    max-height: 10rem;
  }
  .md\:min-h-\[344px\]{
    min-height: 344px;
  }
  .md\:w-2\/3{
    width: 66.666667%;
  }
  .md\:w-3\/4{
    width: 75%;
  }
  .md\:w-2\/5{
    width: 40%;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-1\/3{
    width: 33.333333%;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:w-6{
    width: 1.5rem;
  }
  .md\:w-4{
    width: 1rem;
  }
  .md\:w-5\/6{
    width: 83.333333%;
  }
  .md\:w-\[calc\(25\%_-_40px\)\]{
    width: calc(25% - 40px);
  }
  .md\:w-8{
    width: 2rem;
  }
  .md\:w-1\/5{
    width: 20%;
  }
  .md\:w-14{
    width: 3.5rem;
  }
  .md\:w-1\/4{
    width: 25%;
  }
  .md\:w-3\/5{
    width: 60%;
  }
  .md\:w-4\/5{
    width: 80%;
  }
  .md\:max-w-\[50\%\]{
    max-width: 50%;
  }
  .md\:max-w-\[280px\]{
    max-width: 280px;
  }
  .md\:max-w-lg{
    max-width: 32rem;
  }
  .md\:max-w-\[480px\]{
    max-width: 480px;
  }
  .md\:grow{
    flex-grow: 1;
  }
  .md\:-translate-x-1\/2{
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .md\:flex-col{
    flex-direction: column;
  }
  .md\:flex-wrap{
    flex-wrap: wrap;
  }
  .md\:items-start{
    align-items: flex-start;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-end{
    justify-content: flex-end;
  }
  .md\:justify-center{
    justify-content: center;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-24{
    gap: 6rem;
  }
  .md\:gap-16{
    gap: 4rem;
  }
  .md\:gap-6{
    gap: 1.5rem;
  }
  .md\:gap-5{
    gap: 1.25rem;
  }
  .md\:gap-x-5{
    column-gap: 1.25rem;
  }
  .md\:gap-y-10{
    row-gap: 2.5rem;
  }
  .md\:gap-x-2{
    column-gap: 0.5rem;
  }
  .md\:gap-x-6{
    column-gap: 1.5rem;
  }
  .md\:gap-x-4{
    column-gap: 1rem;
  }
  .md\:gap-y-7{
    row-gap: 1.75rem;
  }
  .md\:self-center{
    align-self: center;
  }
  .md\:rounded{
    border-radius: 0.25rem;
  }
  .md\:rounded-\[20px\]{
    border-radius: 20px;
  }
  .md\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .md\:border-\[3px\]{
    border-width: 3px;
  }
  .md\:border{
    border-width: 1px;
  }
  .md\:border-t-\[3px\]{
    border-top-width: 3px;
  }
  .md\:border-none{
    border-style: none;
  }
  .md\:border-white{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }
  .md\:bg-blue-dark{
    --tw-bg-opacity: 1;
    background-color: rgb(21 56 103 / var(--tw-bg-opacity));
  }
  .md\:bg-blue{
    --tw-bg-opacity: 1;
    background-color: rgb(0 76 151 / var(--tw-bg-opacity));
  }
  .md\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
  .md\:stroke-blue{
    stroke: #004C97;
  }
  .md\:p-3{
    padding: 0.75rem;
  }
  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .md\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .md\:px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .md\:px-\[10\%\]{
    padding-left: 10%;
    padding-right: 10%;
  }
  .md\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:px-\[2\%\]{
    padding-left: 2%;
    padding-right: 2%;
  }
  .md\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .md\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .md\:pt-8{
    padding-top: 2rem;
  }
  .md\:pr-24{
    padding-right: 6rem;
  }
  .md\:pt-4{
    padding-top: 1rem;
  }
  .md\:pl-\[calc\(13\.33\%\+20px\)\]{
    padding-left: calc(13.33% + 20px);
  }
  .md\:pb-8{
    padding-bottom: 2rem;
  }
  .md\:pt-0{
    padding-top: 0px;
  }
  .md\:pt-16{
    padding-top: 4rem;
  }
  .md\:pb-10{
    padding-bottom: 2.5rem;
  }
  .md\:pb-12{
    padding-bottom: 3rem;
  }
  .md\:pl-8{
    padding-left: 2rem;
  }
  .md\:pr-16{
    padding-right: 4rem;
  }
  .md\:pb-2{
    padding-bottom: 0.5rem;
  }
  .md\:pl-16{
    padding-left: 4rem;
  }
  .md\:pr-4{
    padding-right: 1rem;
  }
  .md\:pl-4{
    padding-left: 1rem;
  }
  .md\:pb-16{
    padding-bottom: 4rem;
  }
  .md\:pb-28{
    padding-bottom: 7rem;
  }
  .md\:pt-20{
    padding-top: 5rem;
  }
  .md\:pt-1{
    padding-top: 0.25rem;
  }
  .md\:pr-12{
    padding-right: 3rem;
  }
  .md\:pl-6{
    padding-left: 1.5rem;
  }
  .md\:pt-28{
    padding-top: 7rem;
  }
  .md\:pl-12{
    padding-left: 3rem;
  }
  .md\:pb-4{
    padding-bottom: 1rem;
  }
  .md\:pb-24{
    padding-bottom: 6rem;
  }
  .md\:text-4xl{
    font-size: 3.125rem;
  }
  .md\:text-lg{
    font-size: 1.125rem;
  }
  .md\:text-3xl{
    font-size: 1.875rem;
  }
  .md\:text-2xl{
    font-size: 1.5625rem;
  }
  .md\:text-xl{
    font-size: 1.375rem;
  }
  .md\:text-5xl{
    font-size: 3.75rem;
  }
  .md\:text-base{
    font-size: 1rem;
  }
  .md\:text-sm{
    font-size: 0.875rem;
  }
  .md\:font-black{
    font-weight: 900;
  }
  .md\:font-medium{
    font-weight: 500;
  }
  .md\:font-extrabold{
    font-weight: 800;
  }
  .md\:normal-case{
    text-transform: none;
  }
  .md\:text-blue{
    --tw-text-opacity: 1;
    color: rgb(0 76 151 / var(--tw-text-opacity));
  }
  .md\:no-underline{
    -webkit-text-decoration-line: none;
            text-decoration-line: none;
  }
  .md\:hover\:border-blue-light:hover{
    --tw-border-opacity: 1;
    border-color: rgb(167 195 232 / var(--tw-border-opacity));
  }
  .md\:focus\:border-blue-light:focus{
    --tw-border-opacity: 1;
    border-color: rgb(167 195 232 / var(--tw-border-opacity));
  }
}
@media (min-width: 1024px){
  .lg\:static{
    position: static;
  }
  .lg\:relative{
    position: relative;
  }
  .lg\:bottom-auto{
    bottom: auto;
  }
  .lg\:left-auto{
    left: auto;
  }
  .lg\:col-start-1{
    grid-column-start: 1;
  }
  .lg\:col-start-2{
    grid-column-start: 2;
  }
  .lg\:col-start-3{
    grid-column-start: 3;
  }
  .lg\:col-start-4{
    grid-column-start: 4;
  }
  .lg\:col-start-5{
    grid-column-start: 5;
  }
  .lg\:col-start-6{
    grid-column-start: 6;
  }
  .lg\:col-start-7{
    grid-column-start: 7;
  }
  .lg\:col-start-8{
    grid-column-start: 8;
  }
  .lg\:col-start-9{
    grid-column-start: 9;
  }
  .lg\:col-start-10{
    grid-column-start: 10;
  }
  .lg\:col-start-11{
    grid-column-start: 11;
  }
  .lg\:col-start-12{
    grid-column-start: 12;
  }
  .lg\:col-start-13{
    grid-column-start: 13;
  }
  .lg\:col-start-auto{
    grid-column-start: auto;
  }
  .lg\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .lg\:ml-24{
    margin-left: 6rem;
  }
  .lg\:mt-0{
    margin-top: 0px;
  }
  .lg\:mb-10{
    margin-bottom: 2.5rem;
  }
  .lg\:mb-16{
    margin-bottom: 4rem;
  }
  .lg\:block{
    display: block;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:w-2\/3{
    width: 66.666667%;
  }
  .lg\:w-1\/2{
    width: 50%;
  }
  .lg\:w-1\/3{
    width: 33.333333%;
  }
  .lg\:w-1\/5{
    width: 20%;
  }
  .lg\:w-96{
    width: 24rem;
  }
  .lg\:max-w-none{
    max-width: none;
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:justify-between{
    justify-content: space-between;
  }
  .lg\:gap-20{
    gap: 5rem;
  }
  .lg\:gap-x-9{
    column-gap: 2.25rem;
  }
  .lg\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .lg\:pt-12{
    padding-top: 3rem;
  }
  .lg\:pl-8{
    padding-left: 2rem;
  }
  .lg\:pr-12{
    padding-right: 3rem;
  }
  .lg\:pr-10{
    padding-right: 2.5rem;
  }
  .lg\:text-6xl{
    font-size: 4.375rem;
  }
  .lg\:text-4xl{
    font-size: 3.125rem;
  }
  .lg\:text-xl{
    font-size: 1.375rem;
  }
  .lg\:text-3xl{
    font-size: 1.875rem;
  }
  .lg\:text-5xl{
    font-size: 3.75rem;
  }
  .lg\:text-lg{
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px){
  .xl\:col-span-4{
    grid-column: span 4 / span 4;
  }
  .xl\:mr-12{
    margin-right: 3rem;
  }
  .xl\:ml-auto{
    margin-left: auto;
  }
  .xl\:grid{
    display: grid;
  }
  .xl\:w-1\/2{
    width: 50%;
  }
  .xl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:gap-24{
    gap: 6rem;
  }
  .xl\:pr-24{
    padding-right: 6rem;
  }
  .xl\:text-4xl{
    font-size: 3.125rem;
  }
}
@media (min-width: 1396px){
  .min-\[1396px\]\:mr-\[calc\(\(100\%-1376px\)\/2\)\]{
    margin-right: calc((100% - 1376px) / 2);
  }
}
