@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+Display:ital,wght@0,400;0,600;0,700;1,200;1,600;1,700&display=swap");
body {
  --red: 255;
  --green: 255;
  --blue: 255;
  --threshold: 0.57;
  --bg-white: rgb(255, 255, 255);
  --bg-grey: rgb(237, 239, 242);
  --bg-grey-mid: rgb(169, 183, 193);
  --bg-grey-dark: rgb(130, 147, 161);
  --bg-black: rgb(0, 0, 0);
  --bg-red: rgb(229, 0, 37);
  --bg-orange: rgb(255, 165, 0);
  --bg-yellow: rgb(251, 204,0);
  --bg-green: rgb(0, 153, 89);
  --bg-green-light: rgb(0, 201, 190);
  --bg-blue: rgb(32, 56, 70);
  --bg-blue-bright: rgb(16, 107,198);
  --bg-blue-light: rgb(0, 160, 230);
  --bg-purple: rgb(71, 46, 150);
  --bg-purple-light: rgb(123, 96, 226);
  --text-white: rgb(255, 255, 255);
  --text-grey: rgb(237, 239, 242);
  --text-grey-mid: rgb(169, 183, 193);
  --text-grey-dark: rgb(130, 147, 161);
  --text-black: rgb(0, 0, 0);
  --text-red: rgb(229, 0, 37);
  --text-orange: rgb(255, 165, 0);
  --text-yellow: rgb(251, 204,0);
  --text-green: rgb(0, 153, 89);
  --text-green-light: rgb(0, 201, 190);
  --text-blue: rgb(32, 56, 70);
  --text-blue-bright: rgb(16, 107,198);
  --text-blue-light: rgb(0, 160, 230);
  --text-purple: rgb(71, 46, 150);
  --text-purple-light: rgb(123, 96, 226);
  color: var(--text-blue); }

/* -------------------------------------------------------------------- */
/* white */
/* -------------------------------------------------------------------- */
.bg-white {
  background: var(--bg-white); }

div.bg-white:before {
  background: var(--bg-white);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* grey */
/* -------------------------------------------------------------------- */
.bg-grey {
  background-color: var(--bg-grey);
  border-color: var(--bg-grey);
  color: var(--text-blue); }

div.bg-grey:before {
  background: var(--bg-grey);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* grey-mid */
/* -------------------------------------------------------------------- */
.bg-grey-mid {
  background-color: var(--bg-grey-mid);
  border-color: var(--bg-grey-mid);
  color: var(--text-black); }

div.bg-grey-mid:before {
  background: var(--bg-grey-mid);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* grey-dark */
/* -------------------------------------------------------------------- */
.bg-grey-dark {
  background-color: var(--bg-grey-dark);
  border-color: var(--bg-grey-dark);
  color: var(--text-white); }

div.bg-grey-dark:before {
  background-color: var(--bg-grey-dark);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* black */
/* -------------------------------------------------------------------- */
.bg-black {
  background-color: var(--bg-black);
  border-color: var(--bg-black);
  color: var(--text-white); }

div.bg-black:before {
  background-color: var(--bg-black);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* red */
/* -------------------------------------------------------------------- */
.bg-red {
  background-color: var(--bg-red);
  border-color: var(--bg-red);
  color: var(--text-white); }

div.bg-red:before {
  background-color: var(--bg-red);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* orange */
/* -------------------------------------------------------------------- */
.bg-orange {
  background-color: var(--bg-orange);
  border-color: var(--bg-orange);
  color: var(--text-black); }

div.bg-orange:before {
  background-color: var(--bg-orange);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* yellow */
/* -------------------------------------------------------------------- */
.bg-yellow {
  background-color: var(--bg-yellow);
  border-color: var(--bg-yellow);
  color: var(--text-black); }

div.bg-yellow:before {
  background-color: var(--bg-yellow);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* green */
/* -------------------------------------------------------------------- */
.bg-green {
  background-color: var(--bg-green);
  border-color: var(--bg-green);
  color: var(--text-white); }

div.bg-green:before {
  background-color: var(--bg-green);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* green light */
/* -------------------------------------------------------------------- */
.bg-green-light {
  background-color: var(--bg-green-light);
  border-color: var(--bg-green-light);
  color: var(--text-black); }

div.bg-green-light:before {
  background-color: var(--bg-green-light);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* blue */
/* -------------------------------------------------------------------- */
.bg-blue {
  background-color: var(--bg-blue);
  border-color: var(--bg-blue);
  color: var(--text-white); }

div.bg-blue:before {
  background-color: var(--bg-blue);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* blue bright */
/* -------------------------------------------------------------------- */
.bg-blue-bright {
  background-color: var(--bg-blue-bright);
  border-color: var(--bg-blue-bright);
  color: var(--text-white); }

div.bg-blue-bright:before {
  background-color: var(--bg-blue-bright);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* blue light */
/* -------------------------------------------------------------------- */
.bg-blue-light {
  background-color: var(--bg-blue-light);
  border-color: var(--bg-blue-light);
  color: var(--text-black); }

div.bg-blue-light:before {
  background-color: var(--bg-blue-light);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* purple */
/* -------------------------------------------------------------------- */
.bg-purple {
  background-color: var(--bg-purple);
  border-color: var(--bg-purple);
  color: var(--text-white); }

div.bg-purple:before {
  --red: 71;
  --green: 46;
  --blue: 150;
  background-color: var(--bg-purple);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* purple light */
/* -------------------------------------------------------------------- */
.bg-purple-light {
  background-color: var(--bg-purple-light);
  border-color: var(--bg-purple-light);
  color: var(--text-white); }

div.bg-purple-light:before {
  background-color: var(--bg-purple-light);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* glass */
/* -------------------------------------------------------------------- */
.bg-glass {
  background-color: transparent;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-color: var(--bg-white);
  color: var(--text-white); }

div.bg-glass:before {
  background-color: var(--bg-blue);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

/* -------------------------------------------------------------------- */
/* inside colors
/* -------------------------------------------------------------------- */
.iMIS-WebPart div.bg-white,
.iMIS-WebPart div.bg-grey,
.iMIS-WebPart div.bg-grey-mid,
.iMIS-WebPart div.bg-grey-dark,
.iMIS-WebPart div.bg-black,
.iMIS-WebPart div.bg-red,
.iMIS-WebPart div.bg-orange,
.iMIS-WebPart div.bg-yellow,
.iMIS-WebPart div.bg-green,
.iMIS-WebPart div.bg-green-light,
.iMIS-WebPart div.bg-blue,
.iMIS-WebPart div.bg-blue-bright,
.iMIS-WebPart div.bg-blue-light,
.iMIS-WebPart div.bg-purple,
.iMIS-WebPart div.bg-purple-light,
.iMIS-WebPart div.bg-glass {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1; }
  @media (min-width: 767px) {
    .iMIS-WebPart div.bg-white,
    .iMIS-WebPart div.bg-grey,
    .iMIS-WebPart div.bg-grey-mid,
    .iMIS-WebPart div.bg-grey-dark,
    .iMIS-WebPart div.bg-black,
    .iMIS-WebPart div.bg-red,
    .iMIS-WebPart div.bg-orange,
    .iMIS-WebPart div.bg-yellow,
    .iMIS-WebPart div.bg-green,
    .iMIS-WebPart div.bg-green-light,
    .iMIS-WebPart div.bg-blue,
    .iMIS-WebPart div.bg-blue-bright,
    .iMIS-WebPart div.bg-blue-light,
    .iMIS-WebPart div.bg-purple,
    .iMIS-WebPart div.bg-purple-light,
    .iMIS-WebPart div.bg-glass {
      margin-top: -4rem; } }
.bg-white h2:first-child, .bg-white .h2:first-child, .bg-white .PanelTitle:first-child,
.bg-grey h2:first-child,
.bg-grey .h2:first-child,
.bg-grey .PanelTitle:first-child,
.bg-grey-mid h2:first-child,
.bg-grey-mid .h2:first-child,
.bg-grey-mid .PanelTitle:first-child,
.bg-grey-dark h2:first-child,
.bg-grey-dark .h2:first-child,
.bg-grey-dark .PanelTitle:first-child,
.bg-black h2:first-child,
.bg-black .h2:first-child,
.bg-black .PanelTitle:first-child,
.bg-red h2:first-child,
.bg-red .h2:first-child,
.bg-red .PanelTitle:first-child,
.bg-orange h2:first-child,
.bg-orange .h2:first-child,
.bg-orange .PanelTitle:first-child,
.bg-yellow h2:first-child,
.bg-yellow .h2:first-child,
.bg-yellow .PanelTitle:first-child,
.bg-green h2:first-child,
.bg-green .h2:first-child,
.bg-green .PanelTitle:first-child,
.bg-green-light h2:first-child,
.bg-green-light .h2:first-child,
.bg-green-light .PanelTitle:first-child,
.bg-blue h2:first-child,
.bg-blue .h2:first-child,
.bg-blue .PanelTitle:first-child,
.bg-blue-bright h2:first-child,
.bg-blue-bright .h2:first-child,
.bg-blue-bright .PanelTitle:first-child,
.bg-blue-light h2:first-child,
.bg-blue-light .h2:first-child,
.bg-blue-light .PanelTitle:first-child,
.bg-purple h2:first-child,
.bg-purple .h2:first-child,
.bg-purple .PanelTitle:first-child,
.bg-purple-light h2:first-child,
.bg-purple-light .h2:first-child,
.bg-purple-light .PanelTitle:first-child,
.bg-glass h2:first-child,
.bg-glass .h2:first-child,
.bg-glass .PanelTitle:first-child {
  margin-top: 2rem; }

/* Text Classes */
.text-white {
  color: white; }

.text-grey {
  color: #edeff2; }

.text-grey-mid {
  color: #a9b7c1; }

.text-grey-dark {
  color: #8293a1; }

.text-black {
  color: black; }

.text-red {
  color: #e50025; }

.text-orange {
  color: orange; }

.text-yellow {
  color: #fbcc00; }

.text-green {
  color: #009959; }

.text-green-light {
  color: #00c9be; }

.text-blue {
  color: #203846; }

.text-blue-bright {
  color: #106bc6; }

.text-blue-light {
  color: #00a0e6; }

.text-purple {
  color: #472e96; }

.text-purple-light {
  color: #7b60e2; }

.bg-angle-001-top {
  background-color: transparent;
  position: relative;
  padding-top: calc(4vw + 4rem) !important; }

.bg-angle-001-top:before {
  content: '';
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpolygon%20points%3D%221200%2C8000%201200%2C93.8398%201200%2C0%200%2C92.8398%200%2C93.8398%200%2C8000%20%22%2F%3E%0A%3C%2Fsvg%3E%0A");
          mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpolygon%20points%3D%221200%2C8000%201200%2C93.8398%201200%2C0%200%2C92.8398%200%2C93.8398%200%2C8000%20%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  mask-type: alpha;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; }

.bg-angle-001-bottom {
  background-color: transparent;
  position: relative;
  padding-bottom: calc(4vw + 4rem) !important;
  margin-bottom: -4vw !important; }

.bg-angle-001-bottom:before {
  content: '';
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpolygon%20points%3D%220%2C0%200%2C7906.1602%200%2C8000%201200%2C7907.1602%201200%2C7906.1602%201200%2C0%20%22%2F%3E%0A%3C%2Fsvg%3E%0A");
          mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpolygon%20points%3D%220%2C0%200%2C7906.1602%200%2C8000%201200%2C7907.1602%201200%2C7906.1602%201200%2C0%20%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  mask-type: alpha;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; }

.bg-curve-001-top {
  background-color: transparent;
  margin-top: 6rem;
  position: relative;
  padding-top: calc(4vw + 6rem) !important; }

.bg-curve-001-top:before {
  content: '';
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20d%3D%22M774.8494%2C84.9919h-0.5498c-99.4385-0.7673-193.3633-1.4922-277.0215-3.3945%0A%09c-91.2138-2.0742-161.0732-5.3555-219.8525-10.3262c-33.0616-2.8008-62.1944-6.082-89.0596-10.041%0A%09c-13.8096-2.0371-27.082-4.2695-39.4502-6.6387c-12.6212-2.418-24.7714-5.0645-36.1152-7.8691%0A%09c-11.5225-2.8513-22.5645-5.9509-32.8184-9.2146c-10.4004-3.3105-20.3467-6.9004-29.5615-10.6738%0A%09c-9.3077-3.8105-18.1709-7.9297-26.3438-12.248C16.0934%2C10.3906%2C8.3591%2C5.7402%2C0.9119%2C0.6543l0.1465%2C0.0103L0.9119%2C0.6484V0H0.0001%0A%09v7906.1602V8000h1200V84.7849C1200%2C84.7849%2C880.1755%2C84.7575%2C774.8494%2C84.9919z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
          mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20d%3D%22M774.8494%2C84.9919h-0.5498c-99.4385-0.7673-193.3633-1.4922-277.0215-3.3945%0A%09c-91.2138-2.0742-161.0732-5.3555-219.8525-10.3262c-33.0616-2.8008-62.1944-6.082-89.0596-10.041%0A%09c-13.8096-2.0371-27.082-4.2695-39.4502-6.6387c-12.6212-2.418-24.7714-5.0645-36.1152-7.8691%0A%09c-11.5225-2.8513-22.5645-5.9509-32.8184-9.2146c-10.4004-3.3105-20.3467-6.9004-29.5615-10.6738%0A%09c-9.3077-3.8105-18.1709-7.9297-26.3438-12.248C16.0934%2C10.3906%2C8.3591%2C5.7402%2C0.9119%2C0.6543l0.1465%2C0.0103L0.9119%2C0.6484V0H0.0001%0A%09v7906.1602V8000h1200V84.7849C1200%2C84.7849%2C880.1755%2C84.7575%2C774.8494%2C84.9919z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  mask-type: alpha;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; }

.bg-curve-002-bottom {
  background-color: transparent;
  margin-bottom: 6rem;
  position: relative;
  padding-bottom: calc(4vw + 6rem) !important;
  margin-bottom: -4vw !important; }

.bg-curve-002-bottom:before {
  content: '';
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%201200%2016302.5371%22%20style%3D%22enable-background%3Anew%200%200%201200%2016302.5371%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20id%3D%22Intersection_1%22%20d%3D%22M0%2C0h1200v16072.9375c-90.1146%2C178.8379-766.7822%2C221.6074-1200%2C229.5996V0z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
          mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%201200%2016302.5371%22%20style%3D%22enable-background%3Anew%200%200%201200%2016302.5371%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20id%3D%22Intersection_1%22%20d%3D%22M0%2C0h1200v16072.9375c-90.1146%2C178.8379-766.7822%2C221.6074-1200%2C229.5996V0z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  mask-type: alpha;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; }

.bg-curve-003-bottom {
  background-color: transparent;
  margin-bottom: 6rem;
  position: relative;
  padding-bottom: calc(4vw + 6rem) !important;
  margin-bottom: -4vw !important; }

.bg-curve-003-bottom:before {
  content: '';
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%201200%2016326.5449%22%20style%3D%22enable-background%3Anew%200%200%201200%2016326.5449%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20id%3D%22Path_91%22%20d%3D%22M0.7005%2C0H1199.072c0%2C0%2C1.8694%2C16328.2842%2C0.3016%2C16326.541%0A%09c-760.4519-4.1484-1030.5719%2C4.9932-1175.1827-103.4004c-8.6608-6.6006-16.5415-14.166-23.4894-22.5508%0A%09C-0.8763%2C16199.8418%2C0.7005%2C0%2C0.7005%2C0z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
          mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%201200%2016326.5449%22%20style%3D%22enable-background%3Anew%200%200%201200%2016326.5449%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20id%3D%22Path_91%22%20d%3D%22M0.7005%2C0H1199.072c0%2C0%2C1.8694%2C16328.2842%2C0.3016%2C16326.541%0A%09c-760.4519-4.1484-1030.5719%2C4.9932-1175.1827-103.4004c-8.6608-6.6006-16.5415-14.166-23.4894-22.5508%0A%09C-0.8763%2C16199.8418%2C0.7005%2C0%2C0.7005%2C0z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  mask-type: alpha;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; }

/* LINE ART BACKGROUNDS */
.bg-line-art-001 {
  background-color: transparent;
  position: relative; }

.bg-line-art-001:after {
  background: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201192.2594%20693.906%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bopacity%3A0.1%3Bfill%3A%23FFFFFF%3B%7D%0A%3C%2Fstyle%3E%0A%3Cpath%20id%3D%22Path_93%22%20class%3D%22st0%22%20d%3D%22M1086.8218%2C36.8625c24.859%2C73.1579%2C41.4783%2C148.8608%2C49.5494%2C225.7042%0A%09c8.2557%2C78.2806%2C8.3228%2C157.2089%2C0.1997%2C235.5034c-5.7965%2C56.8535-15.7748%2C113.1671-29.8386%2C168.4861%0A%09c-6.3005%2C24.7826-13.421%2C49.3655-21.3528%2C73.708c-26.9584%2C81.9429-63.0613%2C160.5884-107.6262%2C234.4489%0A%09c-45.2505%2C75.2307-98.8978%2C145.7706-157.9424%2C211.3391c-7.4411%2C8.2621-23.4513%2C25.0254-23.8463%2C24.7173%0A%09c-0.395-0.3082-0.4653-0.8782-0.1571-1.2731c0.0328-0.042%2C0.069-0.0809%2C0.1086-0.1165%0A%09c60.1653-63.9663%2C114.1783-133.4519%2C161.325-207.538c46.6453-73.3215%2C87.7987-152.8829%2C116.5641-233.4281%0A%09c27.9489-78.5824%2C47.2953-159.9634%2C57.7002-242.7164c9.9567-77.9577%2C11.8214-156.7363%2C5.5646-235.0778%0A%09c-6.097-76.9006-20.6705-152.8924-43.4553-226.5927c-2.7661-8.8856-23.21-70.4464-26.2131-79.2302%0A%09c-0.3832-1.1257%2C1.4829-1.7852%2C1.8667-0.663%22%2F%3E%0A%3Cpath%20id%3D%22Path_81%22%20class%3D%22st0%22%20d%3D%22M779.1181-15.4617c-1.3745%2C23.6984%2C2.4258%2C47.412%2C11.137%2C69.494%0A%09c8.86%2C22.514%2C23.26%2C43.771%2C42.731%2C63.264c19.1939%2C19.127%2C41.0626%2C35.3667%2C64.922%2C48.211c24.2968%2C13.181%2C50.3569%2C22.8122%2C77.386%2C28.6%0A%09c19.279%2C4.086%2C39.343%2C6.593%2C59.351%2C8.613c23.962%2C2.419%2C48.114%2C4.02%2C72.2841%2C5.236c24.858%2C1.251%2C49.764%2C2.067%2C74.682%2C2.608%0A%09c22.6993%2C0.492%2C37.49%2C1.6757%2C15.6219%2C1.315c-25.022-0.426-50.0389-1.114-75.015-2.195c-24.543-1.063-49.068-2.491-73.449-4.622%0A%09c-21.2789-1.859-42.574-4.191-63.2859-7.912c-24.7745-4.421-48.8875-11.969-71.761-22.463%0A%09c-25.0001-11.4771-48.2181-26.4927-68.94-44.585c-20.8-18.209-37.524-38.232-48.705-59.729%0A%09c-11.1409-21.2885-17.4961-44.7539-18.621-68.755c-0.2593-5.6916-0.226-11.3928%2C0.1-17.081c0.037-0.65%2C1.6-0.654%2C1.562%2C0%22%2F%3E%0A%3Cpath%20id%3D%22Path_82%22%20class%3D%22st0%22%20d%3D%22M880.5127%2C423.5029c-46.0858%2C8.5779-92.1677%2C17.1718-138.2456%2C25.7814%0A%09c-67.1996%2C12.5415-134.3973%2C25.087-201.5928%2C37.6365c-74.8275%2C13.9717-149.6553%2C27.9452-224.4834%2C41.9204%0A%09c-68.814%2C12.8491-137.6287%2C25.6965-206.444%2C38.5424c-41.0311%2C7.6601-82.0626%2C15.3148-123.0944%2C22.9641%0A%09c-8.1276%2C1.5152-16.2553%2C3.0302-24.3829%2C4.545l-12.1322%2C2.2603c-0.8551%2C0.16-1.1879-1.6181-0.3324-1.7762%0A%09c46.0847-8.5804%2C92.1666-17.1743%2C138.2456-25.7814c67.1997-12.5415%2C134.3973-25.087%2C201.5928-37.6365%0A%09c74.8255-13.9714%2C149.6528-27.9457%2C224.4818-41.9232c68.815-12.8472%2C137.631-25.6945%2C206.4481-38.5421%0A%09c49.1591-9.1754%2C98.3182-18.3452%2C147.4773-27.5091c4.0438-0.7568%2C321.2404-60.1114%2C325.285-60.8633%0A%09c0.8552-0.16%2C1.1876%2C1.6161%2C0.3324%2C1.7762%22%2F%3E%0A%3Cpath%20id%3D%22Path_84%22%20class%3D%22st0%22%20d%3D%22M80.952-20.468c0.0313%2C40.858%2C0.057%2C81.7163%2C0.077%2C122.575%0A%09c0.0273%2C51.262%2C0.0523%2C102.5237%2C0.075%2C153.785c0.026%2C55%2C0.0517%2C109.998%2C0.077%2C164.994c0.024%2C52.0667%2C0.0497%2C104.1353%2C0.077%2C156.206%0A%09c0.022%2C42.472%2C0.047%2C84.9443%2C0.075%2C127.417c0.004%2C4.1686%2C0.007%2C8.338%2C0.009%2C12.508c-0.0014%2C0.3805-0.311%2C0.6879-0.6915%2C0.6865%0A%09c-0.3785-0.0014-0.6851-0.3079-0.6865-0.6865c-0.0293-40.858-0.0544-81.717-0.075-122.577%0A%09c-0.0273-51.26-0.053-102.5217-0.077-153.785c-0.026-55-0.0517-109.998-0.077-164.994c-0.024-52.0667-0.049-104.1333-0.075-156.2%0A%09c-0.022-42.4713-0.0477-84.9437-0.077-127.417c-0.0033-4.1687-0.0063-8.338-0.009-12.508c0.0014-0.3805%2C0.311-0.6879%2C0.6915-0.6865%0A%09c0.3785%2C0.0014%2C0.6851%2C0.3079%2C0.6865%2C0.6865%22%2F%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M124.0919%2C717.4062h-2v-4h2V717.4062z%20M124.0919%2C710.4062h-2v-4h2V710.4062z%20M124.0919%2C703.4062h-2v-4h2%0A%09V703.4062z%20M124.0919%2C696.4062h-2v-4h2V696.4062z%20M124.0919%2C689.4062h-2v-4h2V689.4062z%20M124.0919%2C682.4062h-2v-4h2V682.4062z%0A%09%20M124.0919%2C675.4062h-2v-4h2V675.4062z%20M124.0919%2C668.4062h-2v-4h2V668.4062z%20M124.0919%2C661.4062h-2v-4h2V661.4062z%0A%09%20M124.0919%2C654.4062h-2v-4h2V654.4062z%20M124.0919%2C647.4062h-2v-4h2V647.4062z%20M124.0919%2C640.4062h-2v-4h2V640.4062z%0A%09%20M124.0919%2C633.4062h-2v-4h2V633.4062z%20M124.0919%2C626.4062h-2v-4h2V626.4062z%20M124.0919%2C619.4062h-2v-4h2V619.4062z%0A%09%20M124.0919%2C612.4062h-2v-4h2V612.4062z%20M124.0919%2C605.4062h-2v-4h2V605.4062z%20M124.0919%2C598.4062h-2v-4h2V598.4062z%0A%09%20M124.0919%2C591.4062h-2v-4h2V591.4062z%20M124.0919%2C584.4062h-2v-4h2V584.4062z%20M124.0919%2C577.4062h-2v-4h2V577.4062z%0A%09%20M124.0919%2C570.4062h-2v-4h2V570.4062z%20M124.0919%2C563.4062h-2v-4h2V563.4062z%20M124.0919%2C556.4062h-2v-4h2V556.4062z%0A%09%20M124.0919%2C549.4062h-2v-4h2V549.4062z%20M124.0919%2C542.4062h-2v-4h2V542.4062z%20M124.0919%2C535.4062h-2v-4h2V535.4062z%0A%09%20M124.0919%2C528.4062h-2v-4h2V528.4062z%20M124.0919%2C521.4062h-2v-4h2V521.4062z%20M124.0919%2C514.4062h-2v-4h2V514.4062z%0A%09%20M124.0919%2C507.4062h-2v-4h2V507.4062z%20M124.0919%2C500.4062h-2v-4h2V500.4062z%20M124.0919%2C493.4062h-2v-4h2V493.4062z%0A%09%20M124.0919%2C486.4062h-2v-4h2V486.4062z%20M124.0919%2C479.4062h-2v-4h2V479.4062z%20M124.0919%2C472.4062h-2v-4h2V472.4062z%0A%09%20M124.0919%2C465.4062h-2v-4h2V465.4062z%20M124.0919%2C458.4062h-2v-4h2V458.4062z%20M124.0919%2C451.4062h-2v-4h2V451.4062z%0A%09%20M124.0919%2C444.4062h-2v-4h2V444.4062z%20M124.0919%2C437.4062h-2v-4h2V437.4062z%20M124.0919%2C430.4062h-2v-4h2V430.4062z%0A%09%20M124.0919%2C423.4062h-2v-4h2V423.4062z%20M124.0919%2C416.4062h-2v-4h2V416.4062z%20M124.0919%2C409.4062h-2v-4h2V409.4062z%0A%09%20M124.0919%2C402.4062h-2v-4h2V402.4062z%20M124.0919%2C395.4062h-2v-4h2V395.4062z%20M124.0919%2C388.4062h-2v-4h2V388.4062z%0A%09%20M124.0919%2C381.4062h-2v-4h2V381.4062z%20M124.0919%2C374.4062h-2v-4h2V374.4062z%20M124.0919%2C367.4062h-2v-4h2V367.4062z%0A%09%20M124.0919%2C360.4062h-2v-4h2V360.4062z%20M124.0919%2C353.4062h-2v-4h2V353.4062z%20M124.0919%2C346.4062h-2v-4h2V346.4062z%0A%09%20M124.0919%2C339.4062h-2v-4h2V339.4062z%20M124.0919%2C332.4062h-2v-4h2V332.4062z%20M124.0919%2C325.4062h-2v-4h2V325.4062z%0A%09%20M124.0919%2C318.4062h-2v-4h2V318.4062z%20M124.0919%2C311.4062h-2v-4h2V311.4062z%20M124.0919%2C304.4062h-2v-4h2V304.4062z%0A%09%20M124.0919%2C297.4062h-2v-4h2V297.4062z%20M124.0919%2C290.4062h-2v-4h2V290.4062z%20M124.0919%2C283.4062h-2v-4h2V283.4062z%0A%09%20M124.0919%2C276.4062h-2v-4h2V276.4062z%20M124.0919%2C269.4062h-2v-4h2V269.4062z%20M124.0919%2C262.4062h-2v-4h2V262.4062z%0A%09%20M124.0919%2C255.4062h-2v-4h2V255.4062z%20M124.0919%2C248.4062h-2v-4h2V248.4062z%20M124.0919%2C241.4062h-2v-4h2V241.4062z%0A%09%20M124.0919%2C234.4062h-2v-4h2V234.4062z%20M124.0919%2C227.4062h-2v-4h2V227.4062z%20M124.0919%2C220.4062h-2v-4h2V220.4062z%0A%09%20M124.0919%2C213.4062h-2v-4h2V213.4062z%20M124.0919%2C206.4062h-2v-4h2V206.4062z%20M124.0919%2C199.4062h-2v-4h2V199.4062z%0A%09%20M124.0919%2C192.4062h-2v-4h2V192.4062z%20M124.0919%2C185.4062h-2v-4h2V185.4062z%20M124.0919%2C178.4062h-2v-4h2V178.4062z%0A%09%20M124.0919%2C171.4062h-2v-4h2V171.4062z%20M124.0919%2C164.4062h-2v-4h2V164.4062z%20M124.0919%2C157.4062h-2v-4h2V157.4062z%0A%09%20M124.0919%2C150.4062h-2v-4h2V150.4062z%20M124.0919%2C143.4062h-2v-4h2V143.4062z%20M124.0919%2C136.4062h-2v-4h2V136.4062z%0A%09%20M124.0919%2C129.4062h-2v-4h2V129.4062z%20M124.0919%2C122.4062h-2v-4h2V122.4062z%20M124.0919%2C115.4062h-2v-4h2V115.4062z%0A%09%20M124.0919%2C108.4062h-2v-4h2V108.4062z%20M124.0919%2C101.4062h-2v-4h2V101.4062z%20M124.0919%2C94.4062h-2v-4h2V94.4062z%20M124.0919%2C87.4062%0A%09h-2v-4h2V87.4062z%20M124.0919%2C80.4062h-2v-4h2V80.4062z%20M124.0919%2C73.4062h-2v-4h2V73.4062z%20M124.0919%2C66.4062h-2v-4h2V66.4062z%0A%09%20M124.0919%2C59.4062h-2v-4h2V59.4062z%20M124.0919%2C52.4062h-2v-4h2V52.4062z%20M124.0919%2C45.4062h-2v-4h2V45.4062z%20M124.0919%2C38.4062h-2%0A%09v-4h2V38.4062z%20M124.0919%2C31.4062h-2v-4h2V31.4062z%20M124.0919%2C24.4062h-2v-4h2V24.4062z%20M124.0919%2C17.4062h-2v-4h2V17.4062z%0A%09%20M124.0919%2C10.4062h-2v-4h2V10.4062z%20M124.0919%2C3.4062h-2v-4h2V3.4062z%20M124.0919-3.5938h-2v-4h2V-3.5938z%20M124.0919-10.5938h-2v-4%0A%09h2V-10.5938z%20M124.0919-17.5938h-2v-1h2V-17.5938z%22%2F%3E%0A%3Cpath%20id%3D%22Path_205%22%20class%3D%22st0%22%20d%3D%22M113.8224-11.3388c-0.846%2C42.3766-9.6016%2C84.2221-25.8164%2C123.3829%0A%09c-15.9511%2C38.397-39.2574%2C74.5544-68.8866%2C106.7171c-9.0984%2C9.8531-18.6618%2C19.2595-28.656%2C28.1876%0A%09c-6.5136%2C5.8188-13.2101%2C11.4344-20.0803%2C16.8381c-17.7905%2C14.0247-36.8506%2C27.0075-55.6963%2C40.021%0A%09c-27.8347%2C19.2185-56.6632%2C38.062-89.7375%2C50.6355c-35.4997%2C13.5006-74.3136%2C19.3666-112.8036%2C23.5337%0A%09c-6.1424%2C0.6658-12.2914%2C1.2871-18.447%2C1.864c-1.3526%2C0.1291-1.3084-1.6477%2C0.0302-1.776%0A%09c40.6033-3.8561%2C81.9946-8.761%2C120.0962-21.5652c32.4849-10.9181%2C60.932-27.9725%2C88.0229-46.2174%0A%09c36.8677-24.8316%2C73.6908-50.2231%2C104.1664-80.687c9.4581-9.4525%2C18.4263-19.3828%2C26.8694-29.752%0A%09c18.7003-22.8722%2C34.5136-47.9597%2C47.0831-74.6964c17.7669-37.9784%2C28.3006-78.9352%2C31.0615-120.773%0A%09c0.3472-5.2446%2C0.5635-10.4935%2C0.6778-15.745c0.0254-1.1419%2C2.1484-1.1078%2C2.123%2C0.0361%22%2F%3E%0A%3C%2Fsvg%3E%0A);
  background-size: cover;
  background-blend-mode: color;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; }

div.bg-full-width:before,
div.bg-full-width:after {
  width: 100vw;
  left: 0;
  top: 0;
  z-index: -1; }
  @media (min-width: 1170px) {
    div.bg-full-width:before,
    div.bg-full-width:after {
      left: calc(50% - 50vw); } }
/* IMAGE BACKGROUNDS */
.bg-curve-secondary-hero-bottom {
  background-color: transparent;
  color: var(--text-white);
  padding-top: 14rem;
  padding-bottom: 3rem;
  position: relative; }
  .bg-curve-secondary-hero-bottom:before, .bg-curve-secondary-hero-bottom:after {
    background-color: var(--bg-blue);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    content: '';
    left: calc(50% - 50vw);
    -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%201200%208192%22%20style%3D%22enable-background%3Anew%200%200%201200%208192%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23231F20%3B%7D%0A%3C%2Fstyle%3E%0A%3Cg%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M0%2C0v8192c42.1866-1.3145%2C88.2758-2.6226%2C220.5682-6.4629c311.792-6.1543%2C709.3619-30.3008%2C979.4318-60.9648V0%0A%09%09H0z%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
            mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%201200%208192%22%20style%3D%22enable-background%3Anew%200%200%201200%208192%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23231F20%3B%7D%0A%3C%2Fstyle%3E%0A%3Cg%3E%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M0%2C0v8192c42.1866-1.3145%2C88.2758-2.6226%2C220.5682-6.4629c311.792-6.1543%2C709.3619-30.3008%2C979.4318-60.9648V0%0A%09%09H0z%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
    mask-type: alpha;
    -webkit-mask-position: center bottom;
            mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100vw;
    left: calc(50% - 50vw);
    top: 0;
    z-index: -1; }
  .bg-curve-secondary-hero-bottom:after {
    mix-blend-mode: multiply;
    opacity: 0.4; }
  .bg-curve-secondary-hero-bottom h1, .bg-curve-secondary-hero-bottom h2 {
    text-shadow: 0px 6px 8px #00000041; }

.bg-img-about-aaae:before {
  background-image: url("/images/2023/secondary-header/secondary-header-about-aaae.jpg"); }

.bg-img-advocacy:before {
  background-image: url("/images/2023/secondary-header/secondary-header-advocacy.jpg"); }

.bg-img-airport-solutions:before {
  background-image: url("/images/2023/secondary-header/secondary-header-airport-solutions.jpg"); }

.bg-img-events-training:before {
  background-image: url("/images/2023/secondary-header/secondary-header-events-training.jpg"); }

.bg-img-your-career:before {
  background-image: url("/images/2023/secondary-header/secondary-header-your-career.jpg"); }

body,
p, li,
input, button, select, textarea, .TextButton {
  font-family: 'Inter', sans-serif; }

h1, .h1, .PageTitle,
h2, .h2, .PanelTitle,
h3, .h3, .SectionTitle, h3.panel-title
h4, .h4, .SectionLabel,
h5, .h5, .SectionLabelSmaller,
h6, .h6,
.panel-heading.Distinguish,
.panel-group .panel-heading,
.PanelHead.Distinguish,
.TitleBarCaption {
  border-bottom: none;
  font-family: 'Noto Sans Display', sans-serif;
  line-height: 1.3em;
  padding: 0;
  position: relative;
  text-decoration: none; }
  h1 a, h1 .Link, h1 .RadGrid.RadGrid .rgRow a, h1 .RadGrid.RadGrid .rgAltRow a, h1 .RadGrid.RadGrid .rgEditForm a, h1 .k-grid.k-grid a, h1 .RadToolTip.RadToolTip a, .h1 a, .h1 .Link, .h1 .RadGrid.RadGrid .rgRow a, .h1 .RadGrid.RadGrid .rgAltRow a, .h1 .RadGrid.RadGrid .rgEditForm a, .h1 .k-grid.k-grid a, .h1 .RadToolTip.RadToolTip a, .PageTitle a, .PageTitle .Link, .PageTitle .RadGrid.RadGrid .rgRow a, .PageTitle .RadGrid.RadGrid .rgAltRow a, .PageTitle .RadGrid.RadGrid .rgEditForm a, .PageTitle .k-grid.k-grid a, .PageTitle .RadToolTip.RadToolTip a,
  h2 a,
  h2 .Link,
  h2 .RadGrid.RadGrid .rgRow a,
  h2 .RadGrid.RadGrid .rgAltRow a,
  h2 .RadGrid.RadGrid .rgEditForm a,
  h2 .k-grid.k-grid a,
  h2 .RadToolTip.RadToolTip a, .h2 a, .h2 .Link, .h2 .RadGrid.RadGrid .rgRow a, .h2 .RadGrid.RadGrid .rgAltRow a, .h2 .RadGrid.RadGrid .rgEditForm a, .h2 .k-grid.k-grid a, .h2 .RadToolTip.RadToolTip a, .PanelTitle a, .PanelTitle .Link, .PanelTitle .RadGrid.RadGrid .rgRow a, .PanelTitle .RadGrid.RadGrid .rgAltRow a, .PanelTitle .RadGrid.RadGrid .rgEditForm a, .PanelTitle .k-grid.k-grid a, .PanelTitle .RadToolTip.RadToolTip a,
  h3 a,
  h3 .Link,
  h3 .RadGrid.RadGrid .rgRow a,
  h3 .RadGrid.RadGrid .rgAltRow a,
  h3 .RadGrid.RadGrid .rgEditForm a,
  h3 .k-grid.k-grid a,
  h3 .RadToolTip.RadToolTip a, .h3 a, .h3 .Link, .h3 .RadGrid.RadGrid .rgRow a, .h3 .RadGrid.RadGrid .rgAltRow a, .h3 .RadGrid.RadGrid .rgEditForm a, .h3 .k-grid.k-grid a, .h3 .RadToolTip.RadToolTip a, .SectionTitle a, .SectionTitle .Link, .SectionTitle .RadGrid.RadGrid .rgRow a, .SectionTitle .RadGrid.RadGrid .rgAltRow a, .SectionTitle .RadGrid.RadGrid .rgEditForm a, .SectionTitle .k-grid.k-grid a, .SectionTitle .RadToolTip.RadToolTip a, h3.panel-title
h4 a, h3.panel-title
h4 .Link, h3.panel-title
h4 .RadGrid.RadGrid .rgRow a, h3.panel-title
h4 .RadGrid.RadGrid .rgAltRow a, h3.panel-title
h4 .RadGrid.RadGrid .rgEditForm a, h3.panel-title
h4 .k-grid.k-grid a, h3.panel-title
h4 .RadToolTip.RadToolTip a, .h4 a, .h4 .Link, .h4 .RadGrid.RadGrid .rgRow a, .h4 .RadGrid.RadGrid .rgAltRow a, .h4 .RadGrid.RadGrid .rgEditForm a, .h4 .k-grid.k-grid a, .h4 .RadToolTip.RadToolTip a, .SectionLabel a, .SectionLabel .Link, .SectionLabel .RadGrid.RadGrid .rgRow a, .SectionLabel .RadGrid.RadGrid .rgAltRow a, .SectionLabel .RadGrid.RadGrid .rgEditForm a, .SectionLabel .k-grid.k-grid a, .SectionLabel .RadToolTip.RadToolTip a,
  h5 a,
  h5 .Link,
  h5 .RadGrid.RadGrid .rgRow a,
  h5 .RadGrid.RadGrid .rgAltRow a,
  h5 .RadGrid.RadGrid .rgEditForm a,
  h5 .k-grid.k-grid a,
  h5 .RadToolTip.RadToolTip a, .h5 a, .h5 .Link, .h5 .RadGrid.RadGrid .rgRow a, .h5 .RadGrid.RadGrid .rgAltRow a, .h5 .RadGrid.RadGrid .rgEditForm a, .h5 .k-grid.k-grid a, .h5 .RadToolTip.RadToolTip a, .SectionLabelSmaller a, .SectionLabelSmaller .Link, .SectionLabelSmaller .RadGrid.RadGrid .rgRow a, .SectionLabelSmaller .RadGrid.RadGrid .rgAltRow a, .SectionLabelSmaller .RadGrid.RadGrid .rgEditForm a, .SectionLabelSmaller .k-grid.k-grid a, .SectionLabelSmaller .RadToolTip.RadToolTip a,
  h6 a,
  h6 .Link,
  h6 .RadGrid.RadGrid .rgRow a,
  h6 .RadGrid.RadGrid .rgAltRow a,
  h6 .RadGrid.RadGrid .rgEditForm a,
  h6 .k-grid.k-grid a,
  h6 .RadToolTip.RadToolTip a, .h6 a, .h6 .Link, .h6 .RadGrid.RadGrid .rgRow a, .h6 .RadGrid.RadGrid .rgAltRow a, .h6 .RadGrid.RadGrid .rgEditForm a, .h6 .k-grid.k-grid a, .h6 .RadToolTip.RadToolTip a,
  .panel-heading.Distinguish a,
  .panel-heading.Distinguish .Link,
  .panel-heading.Distinguish .RadGrid.RadGrid .rgRow a,
  .panel-heading.Distinguish .RadGrid.RadGrid .rgAltRow a,
  .panel-heading.Distinguish .RadGrid.RadGrid .rgEditForm a,
  .panel-heading.Distinguish .k-grid.k-grid a,
  .panel-heading.Distinguish .RadToolTip.RadToolTip a,
  .panel-group .panel-heading a,
  .panel-group .panel-heading .Link,
  .panel-group .panel-heading .RadGrid.RadGrid .rgRow a,
  .panel-group .panel-heading .RadGrid.RadGrid .rgAltRow a,
  .panel-group .panel-heading .RadGrid.RadGrid .rgEditForm a,
  .panel-group .panel-heading .k-grid.k-grid a,
  .panel-group .panel-heading .RadToolTip.RadToolTip a,
  .PanelHead.Distinguish a,
  .PanelHead.Distinguish .Link,
  .PanelHead.Distinguish .RadGrid.RadGrid .rgRow a,
  .PanelHead.Distinguish .RadGrid.RadGrid .rgAltRow a,
  .PanelHead.Distinguish .RadGrid.RadGrid .rgEditForm a,
  .PanelHead.Distinguish .k-grid.k-grid a,
  .PanelHead.Distinguish .RadToolTip.RadToolTip a,
  .TitleBarCaption a,
  .TitleBarCaption .Link,
  .TitleBarCaption .RadGrid.RadGrid .rgRow a,
  .TitleBarCaption .RadGrid.RadGrid .rgAltRow a,
  .TitleBarCaption .RadGrid.RadGrid .rgEditForm a,
  .TitleBarCaption .k-grid.k-grid a,
  .TitleBarCaption .RadToolTip.RadToolTip a {
    text-decoration: none; }

/* ------------------------------------------------------- */
/* H1 */
/* ------------------------------------------------------- */
h1, .h1, .PageTitle {
  color: inherit;
  font-size: 4rem;
  max-width: 700px; }
  @media (min-width: 600px) {
    h1, .h1, .PageTitle {
      font-size: 6rem; } }
/* ------------------------------------------------------- */
/* H2 */
/* ------------------------------------------------------- */
h2, .h2, .PanelTitle {
  color: inherit;
  font-size: 3rem;
  /*
    &:first-child {
        margin-top: 0;
    }
    */ }
  @media (min-width: 600px) {
    h2, .h2, .PanelTitle {
      font-size: 5rem; } }
  h2 .TextButton, .h2 .TextButton, .PanelTitle .TextButton {
    margin-top: 0.75em; }

h2, .h2, .PanelTitle, .panel-title {
  margin-top: 1em; }

/* ------------------------------------------------------- */
/* H3 */
/* ------------------------------------------------------- */
h3, .h3, .SectionTitle, h3.panel-title {
  color: inherit;
  font-size: 2.8rem; }
  @media (min-width: 600px) {
    h3, .h3, .SectionTitle, h3.panel-title {
      font-size: 3.9rem; } }
h3.panel-title {
  margin-bottom: 1em;
  color: var(--text-grey-dark); }

.bg-grey h3.panel-title {
  color: var(--text-blue); }

.panel-title-center .panel-title {
  text-align: center; }

/* ------------------------------------------------------- */
/* H4 */
/* ------------------------------------------------------- */
h4, .h4, .SectionLabel {
  color: inherit;
  font-size: 2rem;
  margin-top: 1em; }
  @media (min-width: 600px) {
    h4, .h4, .SectionLabel {
      font-size: 2.5rem; } }
/* ------------------------------------------------------- */
/* H5 */
/* ------------------------------------------------------- */
h5, .h5, .SectionLabelSmaller {
  color: inherit;
  font-size: 1.5rem; }

/* ------------------------------------------------------- */
/* H6 */
/* ------------------------------------------------------- */
h6, .h6 {
  color: inherit;
  font-size: 1rem; }

p {
  margin: .5em 0; }
  p.intro {
    font-size: 1.1em; }

.intro {
  max-width: 900px; }

/* ------------------------------------------------------- */
/* LINKS */
/* ------------------------------------------------------- */
a, a:hover, a:focus, a:active, a:visited {
  color: inherit; }

a:not(.TextButton) {
  text-decoration: none;
  border-bottom: 1px solid; }

a:hover, a:focus, a:active, .Link:hover, .Link:focus, .Link:active, .RadGrid.RadGrid .rgRow a:hover, .RadGrid.RadGrid .rgRow a:focus, .RadGrid.RadGrid .rgRow a:active, .RadGrid.RadGrid .rgAltRow a:hover, .RadGrid.RadGrid .rgAltRow a:focus, .RadGrid.RadGrid .rgAltRow a:active, .RadGrid.RadGrid .rgEditForm a:hover, .RadGrid.RadGrid .rgEditForm a:focus, .RadGrid.RadGrid .rgEditForm a:active, .k-grid.k-grid a:hover, .k-grid.k-grid a:focus, .k-grid.k-grid a:active, .RadToolTip.RadToolTip a:hover, .RadToolTip.RadToolTip a:focus, .RadToolTip.RadToolTip a:active {
  text-decoration: none;
  border-bottom: 1px solid; }

a:has(img) {
  border-bottom: none !important; }

/* NOT A VALID URL */
a[href^="#link"] {
  /**/
  background: var(--text-yellow) !important;
  /**/ }

#masterContentArea a[target=_blank]:not(:has(img)),
#masterContentArea .external-link {
  /* fully valid URL, likely external link */ }
  #masterContentArea a[target=_blank]:not(:has(img)):not(.TextButton):after,
  #masterContentArea .external-link:not(.TextButton):after {
    font-family: 'FontAwesome';
    content: "\f08e";
    margin-left: .25em;
    font-size: .9em; }
  #masterContentArea a[target=_blank]:not(:has(img)).TextButton:before,
  #masterContentArea .external-link.TextButton:before {
    float: right;
    font-family: 'FontAwesome';
    content: "\f08e";
    margin-left: .25em; }

.Quote {
  background: var(--bg-grey);
  border-left-color: var(--bg-blue-light); }

.Quote:before {
  color: var(--text-blue-light); }

p, li {
  max-width: 90ch; }

.content-wide p, .content-wide li {
  max-width: none; }

.WebPartZone label.Required,
.WebPartZone .Label.Required {
  background-repeat: no-repeat;
  padding-left: 0.5em; }

.TextButton,
.TextButton,
.TextButton,
.TextButton,
.TextButton:hover,
.TextButton:focus,
.TextButton:active,
a.TextButton,
a.TextButton,
a.TextButton,
a.TextButton,
a.TextButton:hover,
a.TextButton:focus,
a.TextButton:active,
.RadGrid input.TextButton,
.RadGrid input.TextButton,
.RadGrid input.TextButton,
.RadGrid input.TextButton,
.RadGrid input.TextButton:hover,
.RadGrid input.TextButton:focus,
.RadGrid input.TextButton:active {
  background: unset;
  border: unset;
  color: unset;
  box-shadow: unset; }

/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/* BEGIN BUTTON STYLES - BASICS */
h2 > .TextButton {
  float: right; }

a.TextButton a, a.TextButton button, a.TextButton:not(li),
li.TextButton a,
li.TextButton button,
li.TextButton:not(li),
button.TextButton a,
button.TextButton button,
button.TextButton:not(li),
input.TextButton a,
input.TextButton button,
input.TextButton:not(li) {
  border-radius: 1000px;
  border-style: solid;
  border-width: 1px;
  box-shadow: unset;
  cursor: pointer;
  display: inline-block;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0.25rem;
  padding: 0.5rem 1.5em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.5s ease;
  --svg: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.66 18.62"><path d="M8.35,18.62l-1.34-1.34l7.97-7.97L7.01,1.34L8.35,0l9.31,9.31L8.35,18.62z"/><path d="M0,8.35h16.32v1.92H0V8.35z"/></svg>');
  background: var(--bg-white);
  border-color: var(--bg-blue);
  color: var(--text-blue); }
  a.TextButton a:active, a.TextButton a:hover, a.TextButton a:focus, a.TextButton button:active, a.TextButton button:hover, a.TextButton button:focus, a.TextButton:not(li):active, a.TextButton:not(li):hover, a.TextButton:not(li):focus,
  li.TextButton a:active,
  li.TextButton a:hover,
  li.TextButton a:focus,
  li.TextButton button:active,
  li.TextButton button:hover,
  li.TextButton button:focus,
  li.TextButton:not(li):active,
  li.TextButton:not(li):hover,
  li.TextButton:not(li):focus,
  button.TextButton a:active,
  button.TextButton a:hover,
  button.TextButton a:focus,
  button.TextButton button:active,
  button.TextButton button:hover,
  button.TextButton button:focus,
  button.TextButton:not(li):active,
  button.TextButton:not(li):hover,
  button.TextButton:not(li):focus,
  input.TextButton a:active,
  input.TextButton a:hover,
  input.TextButton a:focus,
  input.TextButton button:active,
  input.TextButton button:hover,
  input.TextButton button:focus,
  input.TextButton:not(li):active,
  input.TextButton:not(li):hover,
  input.TextButton:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-white);
    color: var(--text-white);
    border-radius: 1000px;
    border-style: solid;
    border-width: 1px;
    box-shadow: unset;
    outline: unset;
    top: unset;
    transition: all 0.5s ease; }

a.TextButton.bg-white a, a.TextButton.bg-white:not(li),
li.TextButton.bg-white a,
li.TextButton.bg-white:not(li),
button.TextButton.bg-white a,
button.TextButton.bg-white:not(li),
input.TextButton.bg-white a,
input.TextButton.bg-white:not(li) {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
  color: var(--bg-blue); }
  a.TextButton.bg-white a:active, a.TextButton.bg-white a:hover, a.TextButton.bg-white a:focus, a.TextButton.bg-white:not(li):active, a.TextButton.bg-white:not(li):hover, a.TextButton.bg-white:not(li):focus,
  li.TextButton.bg-white a:active,
  li.TextButton.bg-white a:hover,
  li.TextButton.bg-white a:focus,
  li.TextButton.bg-white:not(li):active,
  li.TextButton.bg-white:not(li):hover,
  li.TextButton.bg-white:not(li):focus,
  button.TextButton.bg-white a:active,
  button.TextButton.bg-white a:hover,
  button.TextButton.bg-white a:focus,
  button.TextButton.bg-white:not(li):active,
  button.TextButton.bg-white:not(li):hover,
  button.TextButton.bg-white:not(li):focus,
  input.TextButton.bg-white a:active,
  input.TextButton.bg-white a:hover,
  input.TextButton.bg-white a:focus,
  input.TextButton.bg-white:not(li):active,
  input.TextButton.bg-white:not(li):hover,
  input.TextButton.bg-white:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-grey a, a.TextButton.bg-grey:not(li),
li.TextButton.bg-grey a,
li.TextButton.bg-grey:not(li),
button.TextButton.bg-grey a,
button.TextButton.bg-grey:not(li),
input.TextButton.bg-grey a,
input.TextButton.bg-grey:not(li) {
  background-color: var(--bg-grey);
  border-color: var(--bg-blue);
  color: var(--text-blue); }
  a.TextButton.bg-grey a:active, a.TextButton.bg-grey a:hover, a.TextButton.bg-grey a:focus, a.TextButton.bg-grey:not(li):active, a.TextButton.bg-grey:not(li):hover, a.TextButton.bg-grey:not(li):focus,
  li.TextButton.bg-grey a:active,
  li.TextButton.bg-grey a:hover,
  li.TextButton.bg-grey a:focus,
  li.TextButton.bg-grey:not(li):active,
  li.TextButton.bg-grey:not(li):hover,
  li.TextButton.bg-grey:not(li):focus,
  button.TextButton.bg-grey a:active,
  button.TextButton.bg-grey a:hover,
  button.TextButton.bg-grey a:focus,
  button.TextButton.bg-grey:not(li):active,
  button.TextButton.bg-grey:not(li):hover,
  button.TextButton.bg-grey:not(li):focus,
  input.TextButton.bg-grey a:active,
  input.TextButton.bg-grey a:hover,
  input.TextButton.bg-grey a:focus,
  input.TextButton.bg-grey:not(li):active,
  input.TextButton.bg-grey:not(li):hover,
  input.TextButton.bg-grey:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-grey-mid a, a.TextButton.bg-grey-mid:not(li),
li.TextButton.bg-grey-mid a,
li.TextButton.bg-grey-mid:not(li),
button.TextButton.bg-grey-mid a,
button.TextButton.bg-grey-mid:not(li),
input.TextButton.bg-grey-mid a,
input.TextButton.bg-grey-mid:not(li) {
  background-color: var(--bg-grey-mid);
  border-color: var(--bg-grey-mid);
  color: var(--text-white); }
  a.TextButton.bg-grey-mid a:active, a.TextButton.bg-grey-mid a:hover, a.TextButton.bg-grey-mid a:focus, a.TextButton.bg-grey-mid:not(li):active, a.TextButton.bg-grey-mid:not(li):hover, a.TextButton.bg-grey-mid:not(li):focus,
  li.TextButton.bg-grey-mid a:active,
  li.TextButton.bg-grey-mid a:hover,
  li.TextButton.bg-grey-mid a:focus,
  li.TextButton.bg-grey-mid:not(li):active,
  li.TextButton.bg-grey-mid:not(li):hover,
  li.TextButton.bg-grey-mid:not(li):focus,
  button.TextButton.bg-grey-mid a:active,
  button.TextButton.bg-grey-mid a:hover,
  button.TextButton.bg-grey-mid a:focus,
  button.TextButton.bg-grey-mid:not(li):active,
  button.TextButton.bg-grey-mid:not(li):hover,
  button.TextButton.bg-grey-mid:not(li):focus,
  input.TextButton.bg-grey-mid a:active,
  input.TextButton.bg-grey-mid a:hover,
  input.TextButton.bg-grey-mid a:focus,
  input.TextButton.bg-grey-mid:not(li):active,
  input.TextButton.bg-grey-mid:not(li):hover,
  input.TextButton.bg-grey-mid:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-grey-dark a, a.TextButton.bg-grey-dark:not(li),
li.TextButton.bg-grey-dark a,
li.TextButton.bg-grey-dark:not(li),
button.TextButton.bg-grey-dark a,
button.TextButton.bg-grey-dark:not(li),
input.TextButton.bg-grey-dark a,
input.TextButton.bg-grey-dark:not(li) {
  background-color: var(--bg-grey-dark);
  border-color: var(--bg-grey-dark);
  color: var(--text-white); }
  a.TextButton.bg-grey-dark a:active, a.TextButton.bg-grey-dark a:hover, a.TextButton.bg-grey-dark a:focus, a.TextButton.bg-grey-dark:not(li):active, a.TextButton.bg-grey-dark:not(li):hover, a.TextButton.bg-grey-dark:not(li):focus,
  li.TextButton.bg-grey-dark a:active,
  li.TextButton.bg-grey-dark a:hover,
  li.TextButton.bg-grey-dark a:focus,
  li.TextButton.bg-grey-dark:not(li):active,
  li.TextButton.bg-grey-dark:not(li):hover,
  li.TextButton.bg-grey-dark:not(li):focus,
  button.TextButton.bg-grey-dark a:active,
  button.TextButton.bg-grey-dark a:hover,
  button.TextButton.bg-grey-dark a:focus,
  button.TextButton.bg-grey-dark:not(li):active,
  button.TextButton.bg-grey-dark:not(li):hover,
  button.TextButton.bg-grey-dark:not(li):focus,
  input.TextButton.bg-grey-dark a:active,
  input.TextButton.bg-grey-dark a:hover,
  input.TextButton.bg-grey-dark a:focus,
  input.TextButton.bg-grey-dark:not(li):active,
  input.TextButton.bg-grey-dark:not(li):hover,
  input.TextButton.bg-grey-dark:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-black a, a.TextButton.bg-black:not(li),
li.TextButton.bg-black a,
li.TextButton.bg-black:not(li),
button.TextButton.bg-black a,
button.TextButton.bg-black:not(li),
input.TextButton.bg-black a,
input.TextButton.bg-black:not(li) {
  background-color: var(--bg-black);
  border-color: var(--bg-black);
  color: var(--text-white); }
  a.TextButton.bg-black a:active, a.TextButton.bg-black a:hover, a.TextButton.bg-black a:focus, a.TextButton.bg-black:not(li):active, a.TextButton.bg-black:not(li):hover, a.TextButton.bg-black:not(li):focus,
  li.TextButton.bg-black a:active,
  li.TextButton.bg-black a:hover,
  li.TextButton.bg-black a:focus,
  li.TextButton.bg-black:not(li):active,
  li.TextButton.bg-black:not(li):hover,
  li.TextButton.bg-black:not(li):focus,
  button.TextButton.bg-black a:active,
  button.TextButton.bg-black a:hover,
  button.TextButton.bg-black a:focus,
  button.TextButton.bg-black:not(li):active,
  button.TextButton.bg-black:not(li):hover,
  button.TextButton.bg-black:not(li):focus,
  input.TextButton.bg-black a:active,
  input.TextButton.bg-black a:hover,
  input.TextButton.bg-black a:focus,
  input.TextButton.bg-black:not(li):active,
  input.TextButton.bg-black:not(li):hover,
  input.TextButton.bg-black:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-red a, a.TextButton.bg-red:not(li),
li.TextButton.bg-red a,
li.TextButton.bg-red:not(li),
button.TextButton.bg-red a,
button.TextButton.bg-red:not(li),
input.TextButton.bg-red a,
input.TextButton.bg-red:not(li) {
  background-color: var(--bg-red);
  border-color: var(--bg-red);
  color: var(--text-white); }
  a.TextButton.bg-red a:active, a.TextButton.bg-red a:hover, a.TextButton.bg-red a:focus, a.TextButton.bg-red:not(li):active, a.TextButton.bg-red:not(li):hover, a.TextButton.bg-red:not(li):focus,
  li.TextButton.bg-red a:active,
  li.TextButton.bg-red a:hover,
  li.TextButton.bg-red a:focus,
  li.TextButton.bg-red:not(li):active,
  li.TextButton.bg-red:not(li):hover,
  li.TextButton.bg-red:not(li):focus,
  button.TextButton.bg-red a:active,
  button.TextButton.bg-red a:hover,
  button.TextButton.bg-red a:focus,
  button.TextButton.bg-red:not(li):active,
  button.TextButton.bg-red:not(li):hover,
  button.TextButton.bg-red:not(li):focus,
  input.TextButton.bg-red a:active,
  input.TextButton.bg-red a:hover,
  input.TextButton.bg-red a:focus,
  input.TextButton.bg-red:not(li):active,
  input.TextButton.bg-red:not(li):hover,
  input.TextButton.bg-red:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-orange a, a.TextButton.bg-orange:not(li),
li.TextButton.bg-orange a,
li.TextButton.bg-orange:not(li),
button.TextButton.bg-orange a,
button.TextButton.bg-orange:not(li),
input.TextButton.bg-orange a,
input.TextButton.bg-orange:not(li) {
  background-color: var(--bg-orange);
  border-color: var(--bg-orange);
  color: var(--text-black); }
  a.TextButton.bg-orange a:active, a.TextButton.bg-orange a:hover, a.TextButton.bg-orange a:focus, a.TextButton.bg-orange:not(li):active, a.TextButton.bg-orange:not(li):hover, a.TextButton.bg-orange:not(li):focus,
  li.TextButton.bg-orange a:active,
  li.TextButton.bg-orange a:hover,
  li.TextButton.bg-orange a:focus,
  li.TextButton.bg-orange:not(li):active,
  li.TextButton.bg-orange:not(li):hover,
  li.TextButton.bg-orange:not(li):focus,
  button.TextButton.bg-orange a:active,
  button.TextButton.bg-orange a:hover,
  button.TextButton.bg-orange a:focus,
  button.TextButton.bg-orange:not(li):active,
  button.TextButton.bg-orange:not(li):hover,
  button.TextButton.bg-orange:not(li):focus,
  input.TextButton.bg-orange a:active,
  input.TextButton.bg-orange a:hover,
  input.TextButton.bg-orange a:focus,
  input.TextButton.bg-orange:not(li):active,
  input.TextButton.bg-orange:not(li):hover,
  input.TextButton.bg-orange:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-yellow a, a.TextButton.bg-yellow:not(li),
li.TextButton.bg-yellow a,
li.TextButton.bg-yellow:not(li),
button.TextButton.bg-yellow a,
button.TextButton.bg-yellow:not(li),
input.TextButton.bg-yellow a,
input.TextButton.bg-yellow:not(li) {
  background-color: var(--bg-yellow);
  border-color: var(--bg-yellow);
  color: var(--text-black); }
  a.TextButton.bg-yellow a:active, a.TextButton.bg-yellow a:hover, a.TextButton.bg-yellow a:focus, a.TextButton.bg-yellow:not(li):active, a.TextButton.bg-yellow:not(li):hover, a.TextButton.bg-yellow:not(li):focus,
  li.TextButton.bg-yellow a:active,
  li.TextButton.bg-yellow a:hover,
  li.TextButton.bg-yellow a:focus,
  li.TextButton.bg-yellow:not(li):active,
  li.TextButton.bg-yellow:not(li):hover,
  li.TextButton.bg-yellow:not(li):focus,
  button.TextButton.bg-yellow a:active,
  button.TextButton.bg-yellow a:hover,
  button.TextButton.bg-yellow a:focus,
  button.TextButton.bg-yellow:not(li):active,
  button.TextButton.bg-yellow:not(li):hover,
  button.TextButton.bg-yellow:not(li):focus,
  input.TextButton.bg-yellow a:active,
  input.TextButton.bg-yellow a:hover,
  input.TextButton.bg-yellow a:focus,
  input.TextButton.bg-yellow:not(li):active,
  input.TextButton.bg-yellow:not(li):hover,
  input.TextButton.bg-yellow:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-green a, a.TextButton.bg-green:not(li),
li.TextButton.bg-green a,
li.TextButton.bg-green:not(li),
button.TextButton.bg-green a,
button.TextButton.bg-green:not(li),
input.TextButton.bg-green a,
input.TextButton.bg-green:not(li) {
  background-color: var(--bg-green);
  border-color: var(--bg-white);
  color: var(--text-white); }
  a.TextButton.bg-green a:active, a.TextButton.bg-green a:hover, a.TextButton.bg-green a:focus, a.TextButton.bg-green:not(li):active, a.TextButton.bg-green:not(li):hover, a.TextButton.bg-green:not(li):focus,
  li.TextButton.bg-green a:active,
  li.TextButton.bg-green a:hover,
  li.TextButton.bg-green a:focus,
  li.TextButton.bg-green:not(li):active,
  li.TextButton.bg-green:not(li):hover,
  li.TextButton.bg-green:not(li):focus,
  button.TextButton.bg-green a:active,
  button.TextButton.bg-green a:hover,
  button.TextButton.bg-green a:focus,
  button.TextButton.bg-green:not(li):active,
  button.TextButton.bg-green:not(li):hover,
  button.TextButton.bg-green:not(li):focus,
  input.TextButton.bg-green a:active,
  input.TextButton.bg-green a:hover,
  input.TextButton.bg-green a:focus,
  input.TextButton.bg-green:not(li):active,
  input.TextButton.bg-green:not(li):hover,
  input.TextButton.bg-green:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-green-light a, a.TextButton.bg-green-light:not(li),
li.TextButton.bg-green-light a,
li.TextButton.bg-green-light:not(li),
button.TextButton.bg-green-light a,
button.TextButton.bg-green-light:not(li),
input.TextButton.bg-green-light a,
input.TextButton.bg-green-light:not(li) {
  background-color: var(--bg-green-light);
  border-color: var(--bg-green-light);
  color: var(--text-black); }
  a.TextButton.bg-green-light a:active, a.TextButton.bg-green-light a:hover, a.TextButton.bg-green-light a:focus, a.TextButton.bg-green-light:not(li):active, a.TextButton.bg-green-light:not(li):hover, a.TextButton.bg-green-light:not(li):focus,
  li.TextButton.bg-green-light a:active,
  li.TextButton.bg-green-light a:hover,
  li.TextButton.bg-green-light a:focus,
  li.TextButton.bg-green-light:not(li):active,
  li.TextButton.bg-green-light:not(li):hover,
  li.TextButton.bg-green-light:not(li):focus,
  button.TextButton.bg-green-light a:active,
  button.TextButton.bg-green-light a:hover,
  button.TextButton.bg-green-light a:focus,
  button.TextButton.bg-green-light:not(li):active,
  button.TextButton.bg-green-light:not(li):hover,
  button.TextButton.bg-green-light:not(li):focus,
  input.TextButton.bg-green-light a:active,
  input.TextButton.bg-green-light a:hover,
  input.TextButton.bg-green-light a:focus,
  input.TextButton.bg-green-light:not(li):active,
  input.TextButton.bg-green-light:not(li):hover,
  input.TextButton.bg-green-light:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-blue a, a.TextButton.bg-blue:not(li),
li.TextButton.bg-blue a,
li.TextButton.bg-blue:not(li),
button.TextButton.bg-blue a,
button.TextButton.bg-blue:not(li),
input.TextButton.bg-blue a,
input.TextButton.bg-blue:not(li) {
  background-color: var(--bg-blue);
  border-color: var(--bg-blue);
  color: var(--text-white); }
  a.TextButton.bg-blue a:active, a.TextButton.bg-blue a:hover, a.TextButton.bg-blue a:focus, a.TextButton.bg-blue:not(li):active, a.TextButton.bg-blue:not(li):hover, a.TextButton.bg-blue:not(li):focus,
  li.TextButton.bg-blue a:active,
  li.TextButton.bg-blue a:hover,
  li.TextButton.bg-blue a:focus,
  li.TextButton.bg-blue:not(li):active,
  li.TextButton.bg-blue:not(li):hover,
  li.TextButton.bg-blue:not(li):focus,
  button.TextButton.bg-blue a:active,
  button.TextButton.bg-blue a:hover,
  button.TextButton.bg-blue a:focus,
  button.TextButton.bg-blue:not(li):active,
  button.TextButton.bg-blue:not(li):hover,
  button.TextButton.bg-blue:not(li):focus,
  input.TextButton.bg-blue a:active,
  input.TextButton.bg-blue a:hover,
  input.TextButton.bg-blue a:focus,
  input.TextButton.bg-blue:not(li):active,
  input.TextButton.bg-blue:not(li):hover,
  input.TextButton.bg-blue:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-blue-bright a, a.TextButton.bg-blue-bright:not(li),
li.TextButton.bg-blue-bright a,
li.TextButton.bg-blue-bright:not(li),
button.TextButton.bg-blue-bright a,
button.TextButton.bg-blue-bright:not(li),
input.TextButton.bg-blue-bright a,
input.TextButton.bg-blue-bright:not(li) {
  background-color: var(--bg-blue-bright);
  border-color: var(--bg-blue-bright);
  color: var(--text-white); }
  a.TextButton.bg-blue-bright a:active, a.TextButton.bg-blue-bright a:hover, a.TextButton.bg-blue-bright a:focus, a.TextButton.bg-blue-bright:not(li):active, a.TextButton.bg-blue-bright:not(li):hover, a.TextButton.bg-blue-bright:not(li):focus,
  li.TextButton.bg-blue-bright a:active,
  li.TextButton.bg-blue-bright a:hover,
  li.TextButton.bg-blue-bright a:focus,
  li.TextButton.bg-blue-bright:not(li):active,
  li.TextButton.bg-blue-bright:not(li):hover,
  li.TextButton.bg-blue-bright:not(li):focus,
  button.TextButton.bg-blue-bright a:active,
  button.TextButton.bg-blue-bright a:hover,
  button.TextButton.bg-blue-bright a:focus,
  button.TextButton.bg-blue-bright:not(li):active,
  button.TextButton.bg-blue-bright:not(li):hover,
  button.TextButton.bg-blue-bright:not(li):focus,
  input.TextButton.bg-blue-bright a:active,
  input.TextButton.bg-blue-bright a:hover,
  input.TextButton.bg-blue-bright a:focus,
  input.TextButton.bg-blue-bright:not(li):active,
  input.TextButton.bg-blue-bright:not(li):hover,
  input.TextButton.bg-blue-bright:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-blue-light a, a.TextButton.bg-blue-light:not(li),
li.TextButton.bg-blue-light a,
li.TextButton.bg-blue-light:not(li),
button.TextButton.bg-blue-light a,
button.TextButton.bg-blue-light:not(li),
input.TextButton.bg-blue-light a,
input.TextButton.bg-blue-light:not(li) {
  background-color: var(--bg-blue-light);
  border-color: var(--bg-blue-light);
  color: var(--text-white); }
  a.TextButton.bg-blue-light a:active, a.TextButton.bg-blue-light a:hover, a.TextButton.bg-blue-light a:focus, a.TextButton.bg-blue-light:not(li):active, a.TextButton.bg-blue-light:not(li):hover, a.TextButton.bg-blue-light:not(li):focus,
  li.TextButton.bg-blue-light a:active,
  li.TextButton.bg-blue-light a:hover,
  li.TextButton.bg-blue-light a:focus,
  li.TextButton.bg-blue-light:not(li):active,
  li.TextButton.bg-blue-light:not(li):hover,
  li.TextButton.bg-blue-light:not(li):focus,
  button.TextButton.bg-blue-light a:active,
  button.TextButton.bg-blue-light a:hover,
  button.TextButton.bg-blue-light a:focus,
  button.TextButton.bg-blue-light:not(li):active,
  button.TextButton.bg-blue-light:not(li):hover,
  button.TextButton.bg-blue-light:not(li):focus,
  input.TextButton.bg-blue-light a:active,
  input.TextButton.bg-blue-light a:hover,
  input.TextButton.bg-blue-light a:focus,
  input.TextButton.bg-blue-light:not(li):active,
  input.TextButton.bg-blue-light:not(li):hover,
  input.TextButton.bg-blue-light:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-purple a, a.TextButton.bg-purple:not(li),
li.TextButton.bg-purple a,
li.TextButton.bg-purple:not(li),
button.TextButton.bg-purple a,
button.TextButton.bg-purple:not(li),
input.TextButton.bg-purple a,
input.TextButton.bg-purple:not(li) {
  background-color: var(--bg-purple);
  border-color: var(--bg-purple);
  color: var(--text-white); }
  a.TextButton.bg-purple a:active, a.TextButton.bg-purple a:hover, a.TextButton.bg-purple a:focus, a.TextButton.bg-purple:not(li):active, a.TextButton.bg-purple:not(li):hover, a.TextButton.bg-purple:not(li):focus,
  li.TextButton.bg-purple a:active,
  li.TextButton.bg-purple a:hover,
  li.TextButton.bg-purple a:focus,
  li.TextButton.bg-purple:not(li):active,
  li.TextButton.bg-purple:not(li):hover,
  li.TextButton.bg-purple:not(li):focus,
  button.TextButton.bg-purple a:active,
  button.TextButton.bg-purple a:hover,
  button.TextButton.bg-purple a:focus,
  button.TextButton.bg-purple:not(li):active,
  button.TextButton.bg-purple:not(li):hover,
  button.TextButton.bg-purple:not(li):focus,
  input.TextButton.bg-purple a:active,
  input.TextButton.bg-purple a:hover,
  input.TextButton.bg-purple a:focus,
  input.TextButton.bg-purple:not(li):active,
  input.TextButton.bg-purple:not(li):hover,
  input.TextButton.bg-purple:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-purple-light a, a.TextButton.bg-purple-light:not(li),
li.TextButton.bg-purple-light a,
li.TextButton.bg-purple-light:not(li),
button.TextButton.bg-purple-light a,
button.TextButton.bg-purple-light:not(li),
input.TextButton.bg-purple-light a,
input.TextButton.bg-purple-light:not(li) {
  background-color: var(--bg-purple-light);
  border-color: var(--bg-purple-light);
  color: var(--text-white); }
  a.TextButton.bg-purple-light a:active, a.TextButton.bg-purple-light a:hover, a.TextButton.bg-purple-light a:focus, a.TextButton.bg-purple-light:not(li):active, a.TextButton.bg-purple-light:not(li):hover, a.TextButton.bg-purple-light:not(li):focus,
  li.TextButton.bg-purple-light a:active,
  li.TextButton.bg-purple-light a:hover,
  li.TextButton.bg-purple-light a:focus,
  li.TextButton.bg-purple-light:not(li):active,
  li.TextButton.bg-purple-light:not(li):hover,
  li.TextButton.bg-purple-light:not(li):focus,
  button.TextButton.bg-purple-light a:active,
  button.TextButton.bg-purple-light a:hover,
  button.TextButton.bg-purple-light a:focus,
  button.TextButton.bg-purple-light:not(li):active,
  button.TextButton.bg-purple-light:not(li):hover,
  button.TextButton.bg-purple-light:not(li):focus,
  input.TextButton.bg-purple-light a:active,
  input.TextButton.bg-purple-light a:hover,
  input.TextButton.bg-purple-light a:focus,
  input.TextButton.bg-purple-light:not(li):active,
  input.TextButton.bg-purple-light:not(li):hover,
  input.TextButton.bg-purple-light:not(li):focus {
    background: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }

a.TextButton.bg-glass a, a.TextButton.bg-glass:not(li),
li.TextButton.bg-glass a,
li.TextButton.bg-glass:not(li),
button.TextButton.bg-glass a,
button.TextButton.bg-glass:not(li),
input.TextButton.bg-glass a,
input.TextButton.bg-glass:not(li) {
  background-color: transparent;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-color: var(--bg-white);
  color: var(--text-white); }
  a.TextButton.bg-glass a:active, a.TextButton.bg-glass a:hover, a.TextButton.bg-glass a:focus, a.TextButton.bg-glass:not(li):active, a.TextButton.bg-glass:not(li):hover, a.TextButton.bg-glass:not(li):focus,
  li.TextButton.bg-glass a:active,
  li.TextButton.bg-glass a:hover,
  li.TextButton.bg-glass a:focus,
  li.TextButton.bg-glass:not(li):active,
  li.TextButton.bg-glass:not(li):hover,
  li.TextButton.bg-glass:not(li):focus,
  button.TextButton.bg-glass a:active,
  button.TextButton.bg-glass a:hover,
  button.TextButton.bg-glass a:focus,
  button.TextButton.bg-glass:not(li):active,
  button.TextButton.bg-glass:not(li):hover,
  button.TextButton.bg-glass:not(li):focus,
  input.TextButton.bg-glass a:active,
  input.TextButton.bg-glass a:hover,
  input.TextButton.bg-glass a:focus,
  input.TextButton.bg-glass:not(li):active,
  input.TextButton.bg-glass:not(li):hover,
  input.TextButton.bg-glass:not(li):focus {
    background: var(--bg-white);
    border-color: var(--bg-white);
    color: var(--text-blue); }

/* END BUTTON STYLES - BASICS */
/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/* BEGIN BUTTON STYLES - SIZE */
a.TextButton.lg,
.TextButton.lg a {
  font-size: 2rem; }

a.TextButton.md,
.TextButton.md a {
  font-size: 1.5rem; }

a.TextButton.sm,
.TextButton.sm a {
  font-size: 1.25rem; }

/* END BUTTON STYLES - BASICS */
/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/* BEGIN BUTTON STYLES - ARROW */
a.TextButton.arrow,
.TextButton.arrow a {
  margin-right: 25px; }

a.TextButton.arrow:hover,
.TextButton.arrow a:hover {
  margin-right: 0;
  padding-right: calc(1.5em + 25px); }

a.TextButton.arrow:after,
.TextButton.arrow a:after {
  background-color: white;
  -webkit-mask: var(--svg);
          mask: var(--svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  display: inline-block;
  height: 18px;
  position: absolute;
  opacity: 0;
  right: 17px;
  top: calc(50% - 9px);
  transition: all 0.5s ease;
  width: 0; }

a.TextButton.arrow.bg-glass:after,
.TextButton.arrow.bg-glass a:after {
  background-color: var(--text-blue); }

a.TextButton.arrow:hover:after,
.TextButton.arrow a:hover:after {
  padding: 0 0 0 10px;
  opacity: 1;
  width: 15px;
  transition: all 0.5s ease; }

/* END BUTTON STYLES - ARROW */
/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/* BEGIN BUTTON STYLES - SHADOWS */
a.TextButton.shadow,
.TextButton.shadow a {
  box-shadow: rgba(0, 0, 0, 0.45) 3px 3px 7px; }

/* BEGENDIN BUTTON STYLES - SHADOWS */
/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/* BEGIN BUTTON STYLES - HOVER BG COLORS */
/* note: foreground colors are auto determined by initial button colors */
a.TextButton.hover-bg-white:hover,
li.TextButton.hover-bg-white a:hover {
  background-color: var(--bg-white) !important;
  border-color: var(--bg-blue) !important;
  color: var(--bg-blue) !important; }

a.TextButton.hover-bg-white:hover:after,
li.TextButton.hover-bg-white a:hover:after {
  background-color: var(--bg-blue) !important; }

a.TextButton.hover-bg-grey:hover,
li.TextButton.hover-bg-grey a:hover {
  background-color: var(--bg-grey) !important;
  border-color: var(--bg-grey) !important;
  color: var(--text-black) !important; }

a.TextButton.hover-bg-grey:hover:after,
li.TextButton.hover-bg-grey a:hover:after {
  background-color: var(--bg-black) !important; }

a.TextButton.hover-bg-grey-mid:hover,
li.TextButton.hover-bg-grey-mid a:hover {
  background-color: var(--bg-grey-mid) !important;
  border-color: var(--bg-grey-mid) !important;
  color: var(--text-black) !important; }

a.TextButton.hover-bg-grey-mid:hover:after,
li.TextButton.hover-bg-grey-mid a:hover:after {
  background-color: var(--bg-black) !important; }

a.TextButton.hover-bg-grey-dark:hover,
li.TextButton.hover-bg-grey-dark a:hover {
  background-color: var(--bg-grey-dark) !important;
  border-color: var(--bg-grey-dark) !important;
  color: var(--text-black) !important; }

a.TextButton.hover-bg-grey-mid:hover:after,
li.TextButton.hover-bg-grey-mid a:hover:after {
  background-color: var(--bg-black) !important; }

a.TextButton.hover-bg-black:hover,
li.TextButton.hover-bg-black a:hover {
  background-color: var(--bg-black) !important;
  border-color: var(--bg-black) !important;
  color: var(--text-white) !important; }

a.TextButton.hover-bg-black:hover:after,
li.TextButton.hover-bg-black a:hover:after {
  background-color: var(--bg-white) !important; }

a.TextButton.hover-bg-red:hover,
li.TextButton.hover-bg-red a:hover {
  background-color: var(--bg-red) !important;
  border-color: var(--bg-red) !important;
  color: var(--text-white) !important; }

a.TextButton.hover-bg-red:hover:after,
li.TextButton.hover-bg-red a:hover:after {
  background-color: var(--bg-white) !important; }

a.TextButton.hover-bg-orange:hover,
li.TextButton.hover-bg-orange a:hover {
  background-color: var(--bg-orange) !important;
  border-color: var(--bg-orange) !important;
  color: var(--text-black) !important; }

a.TextButton.hover-bg-orange:hover:after,
li.TextButton.hover-bg-orange a:hover:after {
  background-color: var(--bg-black) !important; }

a.TextButton.hover-bg-yellow:hover,
li.TextButton.hover-bg-yellow a:hover {
  background-color: var(--bg-yellow) !important;
  border-color: var(--bg-yellow) !important;
  color: var(--text-black) !important; }

a.TextButton.hover-bg-yellow:hover:after,
li.TextButton.hover-bg-yellow a:hover:after {
  background-color: var(--bg-black) !important; }

a.TextButton.hover-bg-green:hover,
li.TextButton.hover-bg-green a:hover {
  background-color: var(--bg-green) !important;
  border-color: var(--bg-green) !important;
  color: var(--text-white) !important; }

a.TextButton.hover-bg-green:hover:after,
li.TextButton.hover-bg-green a:hover:after {
  background-color: var(--bg-white) !important; }

a.TextButton.hover-bg-green-light:hover,
li.TextButton.hover-bg-green-light a:hover {
  background-color: var(--bg-green-light) !important;
  border-color: var(--bg-green-light) !important;
  color: var(--text-black) !important; }

a.TextButton.hover-bg-green-light:hover:after,
li.TextButton.hover-bg-green-light a:hover:after {
  background-color: var(--bg-black) !important; }

a.TextButton.hover-bg-blue:hover,
li.TextButton.hover-bg-blue a:hover {
  background-color: var(--bg-blue) !important;
  border-color: var(--bg-blue) !important;
  color: var(--text-white) !important; }

a.TextButton.hover-bg-blue:hover:after,
li.TextButton.hover-bg-blue a:hover:after {
  background-color: var(--bg-white) !important; }

a.TextButton.hover-bg-blue-bright:hover,
li.TextButton.hover-bg-blue-bright a:hover {
  background-color: var(--bg-blue-bright) !important;
  border-color: var(--bg-blue-bright) !important;
  color: var(--text-white) !important; }

a.TextButton.hover-bg-blue-bright:hover:after,
li.TextButton.hover-bg-blue-bright a:hover:after {
  background-color: var(--bg-white) !important; }

a.TextButton.hover-bg-blue-light:hover,
li.TextButton.hover-bg-blue-light a:hover {
  background-color: var(--bg-blue-light) !important;
  border-color: var(--bg-blue-light) !important;
  color: var(--text-black) !important; }

a.TextButton.hover-bg-blue-light:hover:after,
li.TextButton.hover-bg-blue-light a:hover:after {
  background-color: var(--bg-black) !important; }

a.TextButton.hover-bg-purple:hover,
li.TextButton.hover-bg-purple a:hover {
  background-color: var(--bg-purple) !important;
  border-color: var(--bg-purple) !important;
  color: var(--text-white) !important; }

a.TextButton.hover-bg-purple:hover:after,
li.TextButton.hover-bg-purple a:hover:after {
  background-color: var(--bg-white) !important; }

a.TextButton.hover-bg-purple-light:hover,
li.TextButton.hover-bg-purple-light a:hover {
  background-color: var(--bg-purple-light) !important;
  border-color: var(--bg-purple-light) !important;
  color: var(--text-white) !important; }

a.TextButton.hover-bg-purple-light:hover:after,
li.TextButton.hover-bg-purple-light a:hover:after {
  background-color: var(--bg-white) !important; }

/* END BUTTON STYLES - HOVER BG COLORS */
@container h2 (min-width: 40px) {
  h2 > a.TextButton {
    margin-top: calc(.25cqh + 1em); } }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: 'FontAwesome';
  src: url("fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571429em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714286em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

.fa-glass:before {
  content: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

.fa-envelope-o:before {
  content: "\f003"; }

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before, .fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before, .fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before, .fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-feed:before, .fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before, .fa-users:before {
  content: "\f0c0"; }

.fa-chain:before, .fa-link:before {
  content: "\f0c1"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd"; }

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

.fa-file-text-o:before {
  content: "\f0f6"; }

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-pencil-square:before {
  content: "\f14b"; }

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before, .fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before, .fa-usd:before {
  content: "\f155"; }

.fa-rupee:before, .fa-inr:before {
  content: "\f156"; }

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158"; }

.fa-won:before, .fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before, .fa-car:before {
  content: "\f1b9"; }

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd"; }

.fa-circle-o-notch:before {
  content: "\f1ce"; }

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before, .fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7"; }

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-circle-thin:before {
  content: "\f1db"; }

.fa-header:before {
  content: "\f1dc"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-eyedropper:before {
  content: "\f1fb"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-intersex:before, .fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before, .fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\f240"; }

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242"; }

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-sticky-note-o:before {
  content: "\f24a"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-hourglass-o:before {
  content: "\f250"; }

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251"; }

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255"; }

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256"; }

.fa-hand-scissors-o:before {
  content: "\f257"; }

.fa-hand-lizard-o:before {
  content: "\f258"; }

.fa-hand-spock-o:before {
  content: "\f259"; }

.fa-hand-pointer-o:before {
  content: "\f25a"; }

.fa-hand-peace-o:before {
  content: "\f25b"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-safari:before {
  content: "\f267"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-tv:before, .fa-television:before {
  content: "\f26c"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-500px:before {
  content: "\f26e"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-calendar-plus-o:before {
  content: "\f271"; }

.fa-calendar-minus-o:before {
  content: "\f272"; }

.fa-calendar-times-o:before {
  content: "\f273"; }

.fa-calendar-check-o:before {
  content: "\f274"; }

.fa-industry:before {
  content: "\f275"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-map-o:before {
  content: "\f278"; }

.fa-map:before {
  content: "\f279"; }

.fa-commenting:before {
  content: "\f27a"; }

.fa-commenting-o:before {
  content: "\f27b"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-vimeo:before {
  content: "\f27d"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-edge:before {
  content: "\f282"; }

.fa-credit-card-alt:before {
  content: "\f283"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-modx:before {
  content: "\f285"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-usb:before {
  content: "\f287"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-pause-circle-o:before {
  content: "\f28c"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stop-circle-o:before {
  content: "\f28e"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-percent:before {
  content: "\f295"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-envira:before {
  content: "\f299"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-wheelchair-alt:before {
  content: "\f29b"; }

.fa-question-circle-o:before {
  content: "\f29c"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-volume-control-phone:before {
  content: "\f2a0"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3"; }

.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4"; }

.fa-handshake-o:before {
  content: "\f2b5"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-o:before {
  content: "\f2b7"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-book-o:before {
  content: "\f2ba"; }

.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb"; }

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-circle-o:before {
  content: "\f2be"; }

.fa-user-o:before {
  content: "\f2c0"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2"; }

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3"; }

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-eercast:before {
  content: "\f2da"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-snowflake-o:before {
  content: "\f2dc"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-meetup:before {
  content: "\f2e0"; }

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.pt-0, .py-0 {
  padding-top: 0rem !important; }

.pb-0, .py-0 {
  padding-bottom: 0rem !important; }

.pt-10, .py-10 {
  padding-top: 6rem !important; }

.pb-10, .py-10 {
  padding-bottom: 6rem !important; }

.pt-15, .py-15 {
  padding-top: 9rem !important; }

.pb-15, .py-15 {
  padding-bottom: 9rem !important; }

.pt-20, .py-20 {
  padding-top: 12rem !important; }

.pb-20, .py-20 {
  padding-bottom: 12rem !important; }

.mt-0, .my-0 {
  margin-top: 0rem !important; }

.mb-0, .my-0 {
  margin-bottom: 0rem !important; }

.mt-10, .my-10 {
  margin-top: 6rem !important; }

.mb-10, .my-10 {
  margin-bottom: 6rem !important; }

.mt-15, .my-15 {
  margin-top: 9rem !important; }

.mb-15, .my-15 {
  margin-bottom: 9rem !important; }

.mt-20, .my-20 {
  margin-top: 12rem !important; }

.mb-20, .my-20 {
  margin-bottom: 12rem !important; }

/* Content Layouts */
/* hide broken image icons */
img {
  position: relative; }

img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; }

/* hide broken image icons */
.WebPartZone .RadGrid_MetroTouch,
.WebPartZone .RadGrid.RadGrid_MetroTouch .rgHeader,
.WebPartZone .RadGrid.RadGrid_MetroTouch .rgRow td,
.WebPartZone .RadGrid.RadGrid_MetroTouch .rgAltRow td,
.WebPartZone .RadGrid.RadGrid_MetroTouch .rgEditRow td,
.WebPartZone .RadGrid.RadGrid_Metro .rgHeader,
.WebPartZone .RadGrid.RadGrid_Metro .rgRow td,
.WebPartZone .RadGrid.RadGrid_Metro .rgAltRow td,
.WebPartZone .RadGrid.RadGrid_Metro .rgEditRow td,
.WebPartZone .RadGrid_MetroTouch .rgAltRow,
.WebPartZone .RadGrid.RadGrid_MetroTouch .rgMasterTable,
.WebPartZone .RadGrid.RadGrid_Metro .rgMasterTable,
.WebPartZone .RadGrid_MetroTouch .rgHeader,
.WebPartZone .RadGrid_MetroTouch th.rgResizeCol,
.WebPartZone .RadGrid_MetroTouch .rgHeaderWrapper,
.WebPartZone label, .WebPartZone .Label, .WebPartZone .PanelFieldLabelFont,
.WebPartZone .RadGrid.RadGrid_MetroTouch .rgMasterTable .rgSelectedCell,
.WebPartZone .RadGrid.RadGrid_MetroTouch .rgSelectedRow,
.WebPartZone .RadGrid.RadGrid_MetroTouch td.rgEditRow .rgSelectedRow,
.WebPartZone .RadGrid.RadGrid_MetroTouch .rgSelectedRow td.rgSorted,
.WebPartZone .RadGrid.RadGrid_MetroTouch th.rgSorted,
.WebPartZone .RadGrid.RadGrid_Metro .rgMasterTable .rgSelectedCell,
.WebPartZone .RadGrid.RadGrid_Metro .rgSelectedRow,
.WebPartZone .RadGrid.RadGrid_Metro td.rgEditRow .rgSelectedRow,
.WebPartZone .RadGrid.RadGrid_Metro .rgSelectedRow td.rgSorted,
.WebPartZone .RadGrid.RadGrid_Metro th.rgSorted {
  background: transparent;
  border: none;
  color: inherit;
  padding: 0; }

.FilterPanel-hidden .FilterPanel {
  display: none !important;
  padding-top: 0 !important; }

.pager-hidden tr.rgPager,
.pager-hidden .pagination {
  display: none !important; }

tr.rgPager > td > a {
  display: none; }

.rgWrap.rgNumPart a,
.RadGrid .rgNumPart a,
.RadGrid_MetroTouch .rgNumPart a,
.RadGrid_MetroTouch .rgPagePrev,
.RadGrid_MetroTouch .rgPageNext,
.RadGrid_MetroTouch .rgPageFirst,
.RadGrid_MetroTouch .rgPageLast {
  margin: 0 1rem 0 0 !important;
  border-color: var(--bg-grey-dark) !important; }

.GridTitlePanel, .GridFooterPanel {
  margin: 0; }

.thead-hidden thead {
  display: none !important; }

.tfoot-hidden tfoot {
  display: none !important; }

.RadGrid_MetroTouch .rgNumPart a {
  width: 1.9em; }

.RadGrid.RadGrid_MetroTouch .rgNumPart a.rgCurrentPage,
.RadGrid.RadGrid_MetroTouch .rgNumPart a.rgCurrentPage:hover,
.RadGrid.RadGrid_MetroTouch .rgPagePrev:active,
.RadGrid.RadGrid_MetroTouch .rgPageNext:active,
.RadGrid.RadGrid_MetroTouch .rgPageFirst:active,
.RadGrid.RadGrid_MetroTouch .rgPageLast:active,
.RadGrid.RadGrid_MetroTouch .rgPager .rgPagerButton,
.RadGrid.RadGrid_Metro .rgNumPart a.rgCurrentPage,
.RadGrid.RadGrid_Metro .rgNumPart a.rgCurrentPage:hover,
.RadGrid.RadGrid_Metro .rgPagePrev:active,
.RadGrid.RadGrid_Metro .rgPageNext:active,
.RadGrid.RadGrid_Metro .rgPageFirst:active,
.RadGrid.RadGrid_Metro .rgPageLast:active,
.RadGrid.RadGrid_Metro .rgPager .rgPagerButton {
  border-color: var(--text-grey-dark); }

.RadGrid.RadGrid_MetroTouch .rgMasterTable .rgSelectedCell a, .RadGrid.RadGrid_MetroTouch .rgSelectedRow a, .RadGrid.RadGrid_MetroTouch td.rgEditRow .rgSelectedRow a, .RadGrid.RadGrid_MetroTouch .rgSelectedRow td.rgSorted a, .RadGrid.RadGrid_MetroTouch th.rgSorted a, .RadGrid.RadGrid_Metro .rgMasterTable .rgSelectedCell a, .RadGrid.RadGrid_Metro .rgSelectedRow a, .RadGrid.RadGrid_Metro td.rgEditRow .rgSelectedRow a, .RadGrid.RadGrid_Metro .rgSelectedRow td.rgSorted a, .RadGrid.RadGrid_Metro th.rgSorted a,
.RadGrid a:visited, .RadToolTip a:visited {
  color: inherit !important; }

.rgWrap.rgAdvPart {
  display: none; }

.RadGrid.RadGrid_MetroTouch td.rgPagerCell, .RadGrid.RadGrid_Metro td.rgPagerCell {
  display: flex;
  justify-content: center; }

.iqa-ondemand-events, .iqa-past-events, .iqa-upcoming-events {
  /* hover blue stuff */ }
  .iqa-ondemand-events .meeting, .iqa-past-events .meeting, .iqa-upcoming-events .meeting {
    margin-bottom: 4rem; }
    .iqa-ondemand-events .meeting .date, .iqa-ondemand-events .meeting .format, .iqa-ondemand-events .meeting .location, .iqa-past-events .meeting .date, .iqa-past-events .meeting .format, .iqa-past-events .meeting .location, .iqa-upcoming-events .meeting .date, .iqa-upcoming-events .meeting .format, .iqa-upcoming-events .meeting .location {
      display: none; }
    .iqa-ondemand-events .meeting .meetingtitle, .iqa-past-events .meeting .meetingtitle, .iqa-upcoming-events .meeting .meetingtitle {
      font-size: 2rem;
      font-weight: 600; }
    .iqa-ondemand-events .meeting .meetingtitle a, .iqa-ondemand-events .meeting .meetingtitle a:hover, .iqa-ondemand-events .meeting .meetingtitle a:focus, .iqa-past-events .meeting .meetingtitle a, .iqa-past-events .meeting .meetingtitle a:hover, .iqa-past-events .meeting .meetingtitle a:focus, .iqa-upcoming-events .meeting .meetingtitle a, .iqa-upcoming-events .meeting .meetingtitle a:hover, .iqa-upcoming-events .meeting .meetingtitle a:focus {
      border: none; }
  .iqa-ondemand-events .panel-body, .iqa-past-events .panel-body, .iqa-upcoming-events .panel-body {
    padding-inline: 0; }
  .iqa-ondemand-events.display-all-info .date, .iqa-ondemand-events.display-all-info .format, .iqa-ondemand-events.display-all-info .location, .iqa-past-events.display-all-info .date, .iqa-past-events.display-all-info .format, .iqa-past-events.display-all-info .location, .iqa-upcoming-events.display-all-info .date, .iqa-upcoming-events.display-all-info .format, .iqa-upcoming-events.display-all-info .location {
    display: block; }
  .iqa-ondemand-events.display-all-info .date, .iqa-past-events.display-all-info .date, .iqa-upcoming-events.display-all-info .date {
    margin-bottom: 1em; }
  .iqa-ondemand-events .meeting, .iqa-past-events .meeting, .iqa-upcoming-events .meeting {
    padding-left: 2rem;
    position: relative; }
    .iqa-ondemand-events .meeting .meetingtitle a:after, .iqa-past-events .meeting .meetingtitle a:after, .iqa-upcoming-events .meeting .meetingtitle a:after {
      content: '';
      display: inline-block;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      /* background: pink; */
      width: 100%; }
    .iqa-ondemand-events .meeting:hover, .iqa-past-events .meeting:hover, .iqa-upcoming-events .meeting:hover {
      color: var(--text-blue-bright); }
    .iqa-ondemand-events .meeting:before, .iqa-past-events .meeting:before, .iqa-upcoming-events .meeting:before {
      border-left: .5rem solid transparent;
      content: '';
      position: absolute;
      left: 0;
      bottom: 50%;
      height: 10%;
      transition: all .5s ease; }
    .iqa-ondemand-events .meeting:hover:before, .iqa-past-events .meeting:hover:before, .iqa-upcoming-events .meeting:hover:before {
      border-left: 0.5rem solid var(--bg-blue-bright);
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 100%; }

.bg-white .iqa-ondemand-events .meeting:hover, .bg-white .iqa-past-events .meeting:hover, .bg-white .iqa-upcoming-events .meeting:hover,
.bg-grey .iqa-ondemand-events .meeting:hover,
.bg-grey .iqa-past-events .meeting:hover,
.bg-grey .iqa-upcoming-events .meeting:hover,
.bg-grey-mid .iqa-ondemand-events .meeting:hover,
.bg-grey-mid .iqa-past-events .meeting:hover,
.bg-grey-mid .iqa-upcoming-events .meeting:hover,
.bg-grey-dark .iqa-ondemand-events .meeting:hover,
.bg-grey-dark .iqa-past-events .meeting:hover,
.bg-grey-dark .iqa-upcoming-events .meeting:hover {
  color: var(--text-blue); }

.bg-white .iqa-ondemand-events .meeting:hover:before, .bg-white .iqa-past-events .meeting:hover:before, .bg-white .iqa-upcoming-events .meeting:hover:before,
.bg-grey .iqa-ondemand-events .meeting:hover:before,
.bg-grey .iqa-past-events .meeting:hover:before,
.bg-grey .iqa-upcoming-events .meeting:hover:before,
.bg-grey-mid .iqa-ondemand-events .meeting:hover:before,
.bg-grey-mid .iqa-past-events .meeting:hover:before,
.bg-grey-mid .iqa-upcoming-events .meeting:hover:before,
.bg-grey-dark .iqa-ondemand-events .meeting:hover:before,
.bg-grey-dark .iqa-past-events .meeting:hover:before,
.bg-grey-dark .iqa-upcoming-events .meeting:hover:before {
  border-left: 0.5rem solid var(--bg-blue); }

.bg-black .iqa-ondemand-events .meeting:hover, .bg-black .iqa-past-events .meeting:hover, .bg-black .iqa-upcoming-events .meeting:hover,
.bg-red .iqa-ondemand-events .meeting:hover,
.bg-red .iqa-past-events .meeting:hover,
.bg-red .iqa-upcoming-events .meeting:hover,
.bg-orange .iqa-ondemand-events .meeting:hover,
.bg-orange .iqa-past-events .meeting:hover,
.bg-orange .iqa-upcoming-events .meeting:hover,
.bg-yellow .iqa-ondemand-events .meeting:hover,
.bg-yellow .iqa-past-events .meeting:hover,
.bg-yellow .iqa-upcoming-events .meeting:hover,
.bg-green .iqa-ondemand-events .meeting:hover,
.bg-green .iqa-past-events .meeting:hover,
.bg-green .iqa-upcoming-events .meeting:hover,
.bg-green-light .iqa-ondemand-events .meeting:hover,
.bg-green-light .iqa-past-events .meeting:hover,
.bg-green-light .iqa-upcoming-events .meeting:hover,
.bg-blue .iqa-ondemand-events .meeting:hover,
.bg-blue .iqa-past-events .meeting:hover,
.bg-blue .iqa-upcoming-events .meeting:hover,
.bg-blue-bright .iqa-ondemand-events .meeting:hover,
.bg-blue-bright .iqa-past-events .meeting:hover,
.bg-blue-bright .iqa-upcoming-events .meeting:hover,
.bg-blue-light .iqa-ondemand-events .meeting:hover,
.bg-blue-light .iqa-past-events .meeting:hover,
.bg-blue-light .iqa-upcoming-events .meeting:hover,
.bg-purple .iqa-ondemand-events .meeting:hover,
.bg-purple .iqa-past-events .meeting:hover,
.bg-purple .iqa-upcoming-events .meeting:hover,
.bg-purple-light .iqa-ondemand-events .meeting:hover,
.bg-purple-light .iqa-past-events .meeting:hover,
.bg-purple-light .iqa-upcoming-events .meeting:hover {
  color: var(--text-white); }

.bg-black .iqa-ondemand-events .meeting:hover:before, .bg-black .iqa-past-events .meeting:hover:before, .bg-black .iqa-upcoming-events .meeting:hover:before,
.bg-red .iqa-ondemand-events .meeting:hover:before,
.bg-red .iqa-past-events .meeting:hover:before,
.bg-red .iqa-upcoming-events .meeting:hover:before,
.bg-orange .iqa-ondemand-events .meeting:hover:before,
.bg-orange .iqa-past-events .meeting:hover:before,
.bg-orange .iqa-upcoming-events .meeting:hover:before,
.bg-yellow .iqa-ondemand-events .meeting:hover:before,
.bg-yellow .iqa-past-events .meeting:hover:before,
.bg-yellow .iqa-upcoming-events .meeting:hover:before,
.bg-green .iqa-ondemand-events .meeting:hover:before,
.bg-green .iqa-past-events .meeting:hover:before,
.bg-green .iqa-upcoming-events .meeting:hover:before,
.bg-green-light .iqa-ondemand-events .meeting:hover:before,
.bg-green-light .iqa-past-events .meeting:hover:before,
.bg-green-light .iqa-upcoming-events .meeting:hover:before,
.bg-blue .iqa-ondemand-events .meeting:hover:before,
.bg-blue .iqa-past-events .meeting:hover:before,
.bg-blue .iqa-upcoming-events .meeting:hover:before,
.bg-blue-bright .iqa-ondemand-events .meeting:hover:before,
.bg-blue-bright .iqa-past-events .meeting:hover:before,
.bg-blue-bright .iqa-upcoming-events .meeting:hover:before,
.bg-blue-light .iqa-ondemand-events .meeting:hover:before,
.bg-blue-light .iqa-past-events .meeting:hover:before,
.bg-blue-light .iqa-upcoming-events .meeting:hover:before,
.bg-purple .iqa-ondemand-events .meeting:hover:before,
.bg-purple .iqa-past-events .meeting:hover:before,
.bg-purple .iqa-upcoming-events .meeting:hover:before,
.bg-purple-light .iqa-ondemand-events .meeting:hover:before,
.bg-purple-light .iqa-past-events .meeting:hover:before,
.bg-purple-light .iqa-upcoming-events .meeting:hover:before {
  border-left: 0.5rem solid var(--bg-white); }

.row > .col-sm-12 {
  padding-right: 0;
  padding-left: 0; }

div#mainContentWrapper > div > .row > .col-sm-12 > .ContentItemContainer:last-child {
  margin-bottom: 0; }

.col-sm-12 > .ContentItemContainer > div {
  margin: 2rem 0; }

#mainContentWrapper div.emptyDiv {
  display: none; }

div#mainContentWrapper .iMIS-WebPart > div > div {
  padding: 2rem; }

.iMIS-WebPart > .ContentItemContainer, .WebPartZone > .ContentItemContainer {
  margin-bottom: 0; }

.RadMultiPage .row {
  margin-right: 0;
  margin-left: 0; }

.grid, .swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  list-style: none; }
  .grid > *, .swatches > * {
    padding: 4rem; }

.grid-col-2 {
  display: block;
  padding: inherit 1rem;
  margin: 0; }
  .grid-col-2 > div > div > div {
    padding: 2rem 1rem; }
  @media (min-width: 768px) {
    .grid-col-2 {
      display: grid;
      grid-gap: 6rem;
      grid-template-columns: 1fr 1fr; } }
.WebPartZone {
  position: relative; }

/* GRID COL 3 */
.grid-col-3 {
  display: block;
  padding: inherit 1rem;
  margin: 0; }
  .grid-col-3 > div {
    padding: 1rem; }
  @media (min-width: 768px) {
    .grid-col-3 {
      display: grid;
      grid-gap: 4rem;
      grid-template-columns: 1fr 1fr 1fr; } }
/* THREE COLUMN LAYOUT */
.grid-col-3 .iMIS-WebPart {
  display: grid;
  position: relative; }
  .grid-col-3 .iMIS-WebPart > div {
    margin-bottom: 0;
    display: flex; }

/* LAYOUT CARD --- has dark grey background */
div#mainContentWrapper .cards-grey-dark.img-top p.has-img img, div#mainContentWrapper .cards-grey-dark.img-top p:has(img) img {
  -o-object-position: top;
     object-position: top; }

div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart {
  background-color: var(--bg-grey-dark);
  color: var(--text-white);
  padding: 0 0 2rem 0;
  transition: background-color 0.2s ease; }
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart > div {
    display: block !important; }
    div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart > div > div {
      padding: 0;
      display: block !important; }
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h1, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h2, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h3, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h4, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h5, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h6,
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart ul, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart ol, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart p {
    margin-left: 2rem;
    margin-right: 2rem; }
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h1, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h2, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h3, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart h4 {
    font-size: 2rem;
    position: unset; }
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart p.has-img, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart p:has(img) {
    overflow: hidden;
    margin: 0; }
    div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart p.has-img img, div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart p:has(img) img {
      border: none;
      width: 100% !important;
      height: 175px !important;
      -o-object-fit: cover;
         object-fit: cover;
      transition: -webkit-transform .2s ease-in-out;
      transition: transform .2s ease-in-out;
      transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out; }
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart a:not(.TextButton) {
    text-decoration: none;
    border: none; }
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart a:hover {
    text-decoration: none;
    border: none; }
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart a:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px; }
  div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart:hover {
    background-color: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white); }
    div#mainContentWrapper .cards-grey-dark > .iMIS-WebPart:hover img {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }

p.content-text-category {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: .85em; }

h3.content-text-title.h5 {
  margin-top: 0;
  font-size: 2rem; }

p.content-text-date {
  margin-top: 0;
  margin-bottom: 2rem; }

.grid-col-3-tagged-list {
  margin: 0 -20px;
  padding: 0 !important;
  width: calc(100% + 40px);
  padding: 0; }
  @media (max-width: 1040px) {
    .grid-col-3-tagged-list {
      margin: 0 calc(50% - 50vw);
      width: 100vw; } }
  .grid-col-3-tagged-list div {
    padding: 0; }
  .grid-col-3-tagged-list .TaggedListPanel {
    display: grid;
    grid-auto-columns: minmax(275px, 33%);
    grid-auto-flow: column;
    grid-gap: 16px;
    overflow-x: auto;
    padding: 16px;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */ }
    .grid-col-3-tagged-list .TaggedListPanel::-webkit-scrollbar {
      display: none;
      /* Safari and Chrome */ }
    .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item {
      background-color: var(--bg-grey-dark);
      color: var(--text-white);
      padding: 0;
      position: relative;
      scroll-snap-align: center;
      transition: background-color 0.2s ease; }
      .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item h3 {
        position: unset; }
      .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item a {
        border: none !important; }
      .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item a:before {
        content: "";
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px; }
      .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item .content-image {
        overflow: hidden; }
        .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item .content-image img.contentTaggedListImageThumbnail {
          border: none;
          width: 100%;
          height: 175px !important;
          -o-object-fit: cover;
             object-fit: cover;
          transition: -webkit-transform .2s ease-in-out;
          transition: transform .2s ease-in-out;
          transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
          /* Animation */ }
      .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item:hover {
        background-color: var(--bg-blue);
        border-color: var(--bg-blue);
        color: var(--text-white); }
        .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item:hover .content-image img.contentTaggedListImageThumbnail {
          -webkit-transform: scale(1.1);
                  transform: scale(1.1); }
      .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item .content-text {
        padding: 2rem;
        text-align: left; }
      .grid-col-3-tagged-list .TaggedListPanel > div.tagged-item .content-text-category {
        font-family: 'Noto Sans Display', sans-serif;
        text-transform: uppercase; }
    .grid-col-3-tagged-list .TaggedListPanel > div:not(.tagged-item) {
      display: none !important; }

/* UGLY - Turn tables into grid */
.RadGrid, .RadGrid_MetroTouch {
  border: none !important; }

.grid-col-3-iQA-Table *:not(.TextButton),
.grid-col-3-iQA-Table-secondary *:not(.TextButton),
.grid-col-3-iQA-Table-MemberDirectory *:not(.TextButton) {
  border: unset;
  outline: unset;
  background-color: unset !important;
  color: unset;
  justify-items: baseline; }

.grid-col-3-iQA-Table .RadGrid_MetroTouch thead, .grid-col-3-iQA-Table .RadGrid_MetroTouch colgroup,
.grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch thead,
.grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch colgroup,
.grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch thead,
.grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch colgroup {
  display: none; }

.grid-col-3-iQA-Table .RadGrid_MetroTouch tbody,
.grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody,
.grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody {
  display: block;
  padding: inherit 1rem;
  margin: 0; }
  @media (min-width: 650px) {
    .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody,
    .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody,
    .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody {
      display: grid;
      grid-gap: 4rem;
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 800px) {
    .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody,
    .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody,
    .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody {
      display: grid;
      grid-gap: 4rem;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: stretch; } }
  .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody > tr, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgRow, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow,
  .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr,
  .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow,
  .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow,
  .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow,
  .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr,
  .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow,
  .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow,
  .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow {
    background: unset;
    border: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%; }
    .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody > tr > td, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td,
    .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td,
    .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td,
    .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td,
    .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td,
    .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td,
    .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td,
    .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td,
    .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td {
      background: unset;
      border: none;
      color: var(--text-blue);
      margin: 0 !important;
      padding: 0 !important; }
      .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody > tr > td h3, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody > tr > td h3.panel-title, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td h3, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td h3.panel-title, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td h3, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td h3.panel-title, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td h3, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td h3.panel-title,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td h3,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td h3.panel-title,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td h3,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td h3.panel-title,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td h3,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td h3.panel-title,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td h3,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td h3.panel-title,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td h3,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td h3.panel-title,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td h3,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td h3.panel-title,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td h3,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td h3.panel-title,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td h3,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td h3.panel-title {
        color: var(--text-blue);
        font-size: 2rem; }
      .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody > tr > td h4, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td h4, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td h4, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td h4,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td h4,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td h4,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td h4,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td h4,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td h4,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td h4,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td h4,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td h4 {
        color: var(--text-blue);
        font-size: 1.75rem;
        font-weight: 400; }
      .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody > tr > td a, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td a, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td a, .grid-col-3-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td a,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td a,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td a,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td a,
      .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td a,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td a,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td a,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td a,
      .grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td a {
        color: var(--text-blue) !important;
        text-decoration: none; }

.grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td h4,
.grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td h4 {
  margin-top: 0; }

.grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow {
  flex-flow: row; }
  .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 1.4rem; }
    .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td:first-child, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td:first-child, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td:first-child, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td:first-child {
      max-width: 120px;
      padding-top: .5rem !important;
      padding-right: 2rem !important; }
    .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td b, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td strong, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td a, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td b, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td strong, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td a, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td b, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td strong, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td a, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td b, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td strong, .grid-col-3-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td a {
      color: var(--text-blue-light) !important;
      font-weight: 700; }

.grid-col-3-iQA-Table-secondary h3.panel-title {
  color: var(--text-grey-dark); }

.bg-grey .grid-col-3-iQA-Table-secondary h3.panel-title {
  color: var(--text-blue); }

.grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td a,
.grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td a,
.grid-col-3-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td a {
  font-weight: bold;
  color: var(--text-blue-light) !important; }

.grid-col-3-iQA-Table img,
.grid-col-3-iQA-Table-MemberDirectory img {
  min-width: 100%;
  height: 300px !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  display: inline-block; }

.grid-col-3-iQA-Table-secondary img {
  min-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  display: inline-block; }

/* GRID COL 4 */
.grid-col-4 {
  display: block;
  padding: inherit 1rem;
  margin: 0; }
  .grid-col-4 > div {
    padding: 1rem; }
  @media (min-width: 768px) {
    .grid-col-4 {
      display: grid;
      grid-gap: 4rem;
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
/* FOUR COLUMN LAYOUT */
.grid-col-4 .iMIS-WebPart {
  display: grid;
  position: relative; }
  .grid-col-4 .iMIS-WebPart > div {
    margin-bottom: 0;
    display: flex; }

.grid-col-4-tagged-list {
  margin: 0 -20px;
  padding: 0 !important;
  width: calc(100% + 40px);
  padding: 0; }
  @media (max-width: 1040px) {
    .grid-col-4-tagged-list {
      margin: 0 calc(50% - 50vw);
      width: 100vw; } }
  .grid-col-4-tagged-list div {
    padding: 0; }
  .grid-col-4-tagged-list .TaggedListPanel {
    display: grid;
    grid-auto-columns: minmax(275px, 25%);
    grid-auto-flow: column;
    grid-gap: 16px;
    overflow-x: auto;
    padding: 16px;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */ }
    .grid-col-4-tagged-list .TaggedListPanel::-webkit-scrollbar {
      display: none;
      /* Safari and Chrome */ }
    .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item {
      background-color: var(--bg-grey-dark);
      color: var(--text-white);
      padding: 0;
      position: relative;
      scroll-snap-align: center;
      transition: background-color 0.2s ease; }
      .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item h3 {
        position: unset; }
      .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item a {
        border: none !important; }
      .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item a:before {
        content: "";
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px; }
      .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item .content-image {
        overflow: hidden; }
        .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item .content-image img.contentTaggedListImageThumbnail {
          border: none;
          width: 100%;
          height: 175px !important;
          -o-object-fit: cover;
             object-fit: cover;
          transition: -webkit-transform .2s ease-in-out;
          transition: transform .2s ease-in-out;
          transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
          /* Animation */ }
      .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item:hover {
        background-color: var(--bg-blue);
        border-color: var(--bg-blue);
        color: var(--text-white); }
        .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item:hover .content-image img.contentTaggedListImageThumbnail {
          -webkit-transform: scale(1.1);
                  transform: scale(1.1); }
      .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item .content-text {
        padding: 2rem;
        text-align: left; }
      .grid-col-4-tagged-list .TaggedListPanel > div.tagged-item .content-text-category {
        font-family: 'Noto Sans Display', sans-serif;
        text-transform: uppercase; }
    .grid-col-4-tagged-list .TaggedListPanel > div:not(.tagged-item) {
      display: none !important; }

.grid-col-4-iQA-Table *:not(.TextButton),
.grid-col-4-iQA-Table-secondary *:not(.TextButton),
.grid-col-4-iQA-Table-MemberDirectory *:not(.TextButton) {
  border: unset;
  outline: unset;
  background-color: unset !important;
  color: unset;
  justify-items: baseline; }

.grid-col-4-iQA-Table .RadGrid_MetroTouch thead, .grid-col-4-iQA-Table .RadGrid_MetroTouch colgroup,
.grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch thead,
.grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch colgroup,
.grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch thead,
.grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch colgroup {
  display: none; }

.grid-col-4-iQA-Table .RadGrid_MetroTouch tbody,
.grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody,
.grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody {
  display: block;
  padding: inherit 1rem;
  margin: 0; }
  @media (min-width: 580px) {
    .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody,
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody,
    .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody {
      display: grid;
      grid-gap: 4rem;
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 900px) {
    .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody,
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody,
    .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody {
      display: grid;
      grid-gap: 4rem;
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (min-width: 1000px) {
    .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody,
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody,
    .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody {
      display: grid;
      grid-gap: 4rem;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      align-items: stretch; } }
  .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody > tr, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgRow, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow,
  .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr,
  .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow,
  .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow,
  .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow,
  .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr,
  .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow,
  .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow,
  .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow {
    background: unset;
    border: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%; }
    .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody > tr > td, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td,
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td,
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td,
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td,
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td,
    .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td,
    .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td,
    .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td,
    .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td {
      background: unset;
      border: none;
      color: var(--text-blue);
      margin: 0 !important;
      padding: 0 !important; }
      .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody > tr > td h3, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody > tr > td h3.panel-title, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td h3, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td h3.panel-title, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td h3, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td h3.panel-title, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td h3, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td h3.panel-title,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td h3,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td h3.panel-title,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td h3,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td h3.panel-title,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td h3,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td h3.panel-title,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td h3,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td h3.panel-title,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td h3,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td h3.panel-title,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td h3,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td h3.panel-title,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td h3,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td h3.panel-title,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td h3,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td h3.panel-title {
        color: var(--text-blue);
        font-size: 2rem; }
      .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody > tr > td h4, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td h4, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td h4, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td h4,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td h4,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td h4,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td h4,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td h4,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td h4,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td h4,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td h4,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td h4 {
        color: var(--text-blue);
        font-size: 1.75rem;
        font-weight: 400; }
      .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody > tr > td a, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgAltRow > td a, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgRow > td a, .grid-col-4-iQA-Table .RadGrid_MetroTouch tbody .rgSelectedRow > td a,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td a,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td a,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td a,
      .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td a,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td a,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td a,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td a,
      .grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgSelectedRow > td a {
        color: var(--text-blue) !important;
        text-decoration: none; }

.grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td h4,
.grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td h4 {
  margin-top: 0; }

.grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow {
  flex-flow: row; }
  .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 1.4rem; }
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td:first-child, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td:first-child, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td:first-child, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td:first-child {
      max-width: 120px;
      padding-top: .5rem !important;
      padding-right: 2rem !important; }
    .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td b, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td strong, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody > tr > td a, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td b, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td strong, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgAltRow > td a, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td b, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td strong, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgRow > td a, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td b, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td strong, .grid-col-4-iQA-Table-secondary .RadGrid_MetroTouch tbody .rgSelectedRow > td a {
      color: var(--text-blue-light) !important;
      font-weight: 700; }

.grid-col-4-iQA-Table-secondary h3.panel-title {
  color: var(--text-grey-dark); }

.bg-grey .grid-col-4-iQA-Table-secondary h3.panel-title {
  color: var(--text-blue); }

.grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody > tr > td a,
.grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgAltRow > td a,
.grid-col-4-iQA-Table-MemberDirectory .RadGrid_MetroTouch tbody .rgRow > td a {
  font-weight: bold;
  color: var(--text-blue-light) !important; }

.grid-col-4-iQA-Table img,
.grid-col-4-iQA-Table-MemberDirectory img {
  min-width: 100%;
  height: 300px !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  display: inline-block; }

.grid-col-4-iQA-Table-secondary img {
  min-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  display: inline-block; }

.col-promos .iMIS-WebPart * {
  z-index: 1; }

@media (min-width: 900px) {
  .col-promos .iMIS-WebPart {
    padding: 6rem 15rem 0 15rem; } }

.col-promos .iMIS-WebPart > div > div {
  display: grid;
  grid-column-gap: 8rem;
  grid-template-columns: 1fr; }
  @media (min-width: 900px) {
    .col-promos .iMIS-WebPart > div > div {
      grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .col-promos .iMIS-WebPart:nth-child(even) > div > div {
    direction: rtl; } }

.col-promos .iMIS-WebPart:nth-child(even) > div > div div {
  direction: ltr; }

.grid-logos {
  padding-bottom: 5rem; }
  .grid-logos > div > div > div {
    align-items: center;
    display: grid;
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    grid-template-columns: repeat(auto-fill, minmax(245px, auto)); }
    .grid-logos > div > div > div h1,
    .grid-logos > div > div > div .h1,
    .grid-logos > div > div > div .PageTitle,
    .grid-logos > div > div > div h2,
    .grid-logos > div > div > div .h2,
    .grid-logos > div > div > div .PanelTitle,
    .grid-logos > div > div > div h3,
    .grid-logos > div > div > div .SectionTitle,
    .grid-logos > div > div > div h4,
    .grid-logos > div > div > div .h4,
    .grid-logos > div > div > div .SectionLabel,
    .grid-logos > div > div > div h5,
    .grid-logos > div > div > div .h5,
    .grid-logos > div > div > div .SectionLabelSmaller,
    .grid-logos > div > div > div h6,
    .grid-logos > div > div > div .h6 {
      grid-column: 1 / 3; }
    .grid-logos > div > div > div p,
    .grid-logos > div > div > div a {
      margin: 0;
      display: block; }
    .grid-logos > div > div > div img {
      -webkit-filter: contrast(0) brightness(2);
              filter: contrast(0) brightness(2);
      max-height: 55px; }

.content-narrow {
  padding-inline: 0rem; }
  @media (min-width: 950px) {
    .content-narrow {
      padding-inline: 5rem; } }
  @media (min-width: 1200px) {
    .content-narrow {
      padding-inline: 12rem; } }
.iMIS-WebPart > .ContentItemContainer,
.WebPartZone > .ContentItemContainer {
  /*margin-top: 2.45em;
    margin-bottom: 2.45em;*/
  display: block; }

.pagination-hidden .pagination {
  display: none; }

.masonry .QueryTemplateSet {
  display: block;
  padding: inherit 1rem;
  margin: 0; }
  .masonry .QueryTemplateSet > div {
    padding: 1rem; }
  @media (min-width: 768px) {
    .masonry .QueryTemplateSet {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0 2rem;
      grid-auto-rows: minmax(25%, auto); } }
.masonry .QueryTemplateSet section {
  background: var(--bg-yellow);
  color: var(--text-black);
  flex: unset;
  display: block;
  padding: 0;
  margin: 0 0 2rem 0;
  width: unset;
  position: relative;
  transition: all 0.5s ease;
  grid-column: 1 / 3;
  grid-row: 1; }
  .masonry .QueryTemplateSet section a:not(.TextButton) {
    text-decoration: none;
    border-bottom: none; }

.masonry .QueryTemplateSet section:nth-child(2) {
  grid-column: 1 / 3;
  grid-row: 2;
  background: var(--bg-green);
  color: var(--text-white); }

.masonry .QueryTemplateSet section:last-child {
  grid-column: 3;
  grid-row: 1 / 3;
  background: var(--bg-blue-bright);
  color: var(--text-white); }
  .masonry .QueryTemplateSet section:last-child > div .showcase-item img {
    min-width: 100%;
    max-height: 250px !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out; }

.masonry .QueryTemplateSet section:hover,
.masonry .QueryTemplateSet section:active,
.masonry .QueryTemplateSet section:focus {
  background: var(--bg-blue);
  color: white; }
  .masonry .QueryTemplateSet section:hover a:not(.TextButton),
  .masonry .QueryTemplateSet section:active a:not(.TextButton),
  .masonry .QueryTemplateSet section:focus a:not(.TextButton) {
    text-decoration: none;
    border-bottom: none; }

.masonry .QueryTemplateSet section > div {
  padding: 2rem; }

.masonry .panel-body {
  padding: 0; }

/* ---------------------------------------------------------- */
/* preliminary layout for images on events */
/* ---------------------------------------------------------- */
@media (min-width: 600px) {
  .masonry .QueryTemplateSet section:not(:last-child) .showcase-item {
    display: flex;
    padding: 0 !important; } }

@media (min-width: 600px) {
  .masonry .QueryTemplateSet section:not(:last-child) .showcase-item .event-image {
    padding: 0 2rem 0 0;
    max-width: 250px;
    min-width: 250px;
    flex-basis: 100%;
    /* This may not be needed. TBD */ } }

.masonry .QueryTemplateSet .event-content {
  padding: 2rem; }
  .masonry .QueryTemplateSet .event-content .event-description {
    margin: 2rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.masonry .QueryTemplateSet section > div {
  padding: 0 !important; }

@media (min-width: 600px) {
  .masonry .QueryTemplateSet section:not(:last-child) > div .showcase-item img {
    min-width: 100%;
    min-height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out; } }

.event-image:has(img[src='']) {
  display: none; }

img[src=""] {
  display: none; }

/* ---------------------------------------------------------- */
/* ---------------------------------------------------------- */
.promo-aaae-foundation,
.promo-aaae-conference,
.promo-aaae-certification {
  background-color: transparent;
  color: var(--text-white);
  margin-bottom: 0 !important;
  padding-top: 14rem;
  padding-bottom: 3rem;
  position: relative; }
  .promo-aaae-foundation:before, .promo-aaae-foundation:after,
  .promo-aaae-conference:before,
  .promo-aaae-conference:after,
  .promo-aaae-certification:before,
  .promo-aaae-certification:after {
    background-color: var(--bg-blue);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    content: '';
    left: calc(50% - 50vw);
    -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20d%3D%22M774.8494%2C84.9919h-0.5498c-99.4385-0.7673-193.3633-1.4922-277.0215-3.3945%0A%09c-91.2138-2.0742-161.0732-5.3555-219.8525-10.3262c-33.0616-2.8008-62.1944-6.082-89.0596-10.041%0A%09c-13.8096-2.0371-27.082-4.2695-39.4502-6.6387c-12.6212-2.418-24.7714-5.0645-36.1152-7.8691%0A%09c-11.5225-2.8513-22.5645-5.9509-32.8184-9.2146c-10.4004-3.3105-20.3467-6.9004-29.5615-10.6738%0A%09c-9.3077-3.8105-18.1709-7.9297-26.3438-12.248C16.0934%2C10.3906%2C8.3591%2C5.7402%2C0.9119%2C0.6543l0.1465%2C0.0103L0.9119%2C0.6484V0H0.0001%0A%09v7906.1602V8000h1200V84.7849C1200%2C84.7849%2C880.1755%2C84.7575%2C774.8494%2C84.9919z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
            mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20d%3D%22M774.8494%2C84.9919h-0.5498c-99.4385-0.7673-193.3633-1.4922-277.0215-3.3945%0A%09c-91.2138-2.0742-161.0732-5.3555-219.8525-10.3262c-33.0616-2.8008-62.1944-6.082-89.0596-10.041%0A%09c-13.8096-2.0371-27.082-4.2695-39.4502-6.6387c-12.6212-2.418-24.7714-5.0645-36.1152-7.8691%0A%09c-11.5225-2.8513-22.5645-5.9509-32.8184-9.2146c-10.4004-3.3105-20.3467-6.9004-29.5615-10.6738%0A%09c-9.3077-3.8105-18.1709-7.9297-26.3438-12.248C16.0934%2C10.3906%2C8.3591%2C5.7402%2C0.9119%2C0.6543l0.1465%2C0.0103L0.9119%2C0.6484V0H0.0001%0A%09v7906.1602V8000h1200V84.7849C1200%2C84.7849%2C880.1755%2C84.7575%2C774.8494%2C84.9919z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    mask-type: alpha;
    -webkit-mask-position: center top;
            mask-position: center top;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100vw;
    left: calc(50% - 50vw);
    top: 0;
    z-index: -1; }
  .promo-aaae-foundation:after,
  .promo-aaae-conference:after,
  .promo-aaae-certification:after {
    mix-blend-mode: multiply;
    opacity: 0.7; }
  .promo-aaae-foundation:before,
  .promo-aaae-conference:before,
  .promo-aaae-certification:before {
    background-image: url("/images/2023/promos/promo-aaae-foundation.jpg"); }

.promo-aaae-conference {
  background-color: transparent;
  color: var(--text-white);
  margin-bottom: 0 !important;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative; }
  .promo-aaae-conference:before, .promo-aaae-conference:after {
    -webkit-mask-image: none;
            mask-image: none; }
  .promo-aaae-conference:after {
    opacity: 0.7; }
  .promo-aaae-conference:before {
    background-image: url("/images/2023/promos/promo-aaae-conference.jpg"); }

.promo-aaae-certification {
  background-color: transparent;
  color: var(--text-white);
  margin-bottom: 0 !important;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative; }
  .promo-aaae-certification:before, .promo-aaae-certification:after {
    -webkit-mask-image: none;
            mask-image: none; }
  .promo-aaae-certification:after {
    opacity: 0.7; }
  .promo-aaae-certification:before {
    background-image: url("/images/2023/promos/promo-aaae-certification.jpg"); }
  .promo-aaae-certification h1, .promo-aaae-certification h2, .promo-aaae-certification h3, .promo-aaae-certification h4, .promo-aaae-certification h5, .promo-aaae-certification h6, .promo-aaae-certification p, .promo-aaae-certification li {
    max-width: 800px; }

/* Site Chrome */
header#hd {
  margin-bottom: -2rem; }

#ste_container_logo {
  width: 35px !important;
  overflow: hidden; }
  @media (min-width: 600px) {
    #ste_container_logo {
      width: auto !important; } }
img.logo {
  height: 35px !important;
  width: 123px !important;
  max-width: 123px; }
  @media (min-width: 600px) {
    img.logo {
      height: 65px !important;
      width: 245px !important;
      max-width: 245px; } }
.header-bottom-container,
.navbar-collapse {
  background: var(--bg-blue-bright);
  color: white; }

#masterContentArea {
  margin-top: 0; }

.account-menu .sign-in-link {
  display: none; }

.navbar li:not(.TextButton) a:not(.TextButton) {
  border: none;
  color: var(--text-white); }

.navbar-toggle .icon-bar {
  height: 2px;
  width: 26px;
  background-color: var(--bg-blue);
  border-radius: 0; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 6px; }

/* THIS MAKES THE Hamburger menu and X on click */
/* Won't work in older browsers */
.header.navbar .menu-toggle span.icon-bar {
  transition: all .5s ease-out; }

.header.navbar:has(.navbar-collapse.in) .menu-toggle {
  background: pink; }
  .header.navbar:has(.navbar-collapse.in) .menu-toggle span.icon-bar {
    transition: all .5s ease-in;
    -webkit-transform-origin: center;
            transform-origin: center; }
    .header.navbar:has(.navbar-collapse.in) .menu-toggle span.icon-bar:nth-child(2) {
      -webkit-transform: rotate(765deg);
              transform: rotate(765deg);
      /* 720 + 45deg = 405 */
      margin: -2px; }
    .header.navbar:has(.navbar-collapse.in) .menu-toggle span.icon-bar:nth-child(3) {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
      opacity: 0;
      margin: -0; }
    .header.navbar:has(.navbar-collapse.in) .menu-toggle span.icon-bar:nth-child(4) {
      -webkit-transform: rotate(855deg);
              transform: rotate(855deg);
      /* 720 + 135deg = 495 */
      margin: -2px; }

/* END Hamburger X*/
.navbar,
.nav-auxiliary, .nav-auxiliary .navbar-toggle {
  background-color: transparent !important; }

@media (max-width: 767px) {
  .navbar-collapse {
    display: block;
    height: auto !important;
    max-height: 0 !important;
    overflow: hidden;
    transition: all .5s ease-in; }
  .navbar-collapse.in {
    max-height: 800px !important;
    transition: all .5s ease-in; } }

.navbar-collapse,
.navbar-collapse div {
  margin: 0;
  width: 100%;
  text-align: center; }
  @media (min-width: 767px) {
    .navbar-collapse,
    .navbar-collapse div {
      text-align: left; } }
.RadMenu.RadMenu ul.rmHorizontal {
  display: flex;
  flex: auto;
  justify-content: space-evenly;
  flex-wrap: wrap; }
  .RadMenu.RadMenu ul.rmHorizontal > li a {
    transition: all 0.5s ease; }
  .RadMenu.RadMenu ul.rmHorizontal > li:hover > a,
  .RadMenu.RadMenu ul.rmHorizontal > li > a:hover {
    background-color: var(--bg-blue-light); }
  .RadMenu.RadMenu ul.rmHorizontal ul, .RadMenu.RadMenu ul.rmHorizontal li, .RadMenu.RadMenu ul.rmHorizontal div, .RadMenu.RadMenu ul.rmHorizontal span, .RadMenu.RadMenu ul.rmHorizontal a {
    float: none !important;
    width: auto !important;
    height: auto !important;
    max-height: unset !important;
    color: white;
    overflow: visible !important;
    top: unset !important;
    left: unset !important;
    text-decoration: none;
    z-index: unset !important; }
    @media (max-width: 767px) {
      .RadMenu.RadMenu ul.rmHorizontal ul, .RadMenu.RadMenu ul.rmHorizontal li, .RadMenu.RadMenu ul.rmHorizontal div, .RadMenu.RadMenu ul.rmHorizontal span, .RadMenu.RadMenu ul.rmHorizontal a {
        flex-basis: 100%;
        position: relative !important;
        text-align: center; }
        .RadMenu.RadMenu ul.rmHorizontal ul.rmItem:hover *, .RadMenu.RadMenu ul.rmHorizontal li.rmItem:hover *, .RadMenu.RadMenu ul.rmHorizontal div.rmItem:hover *, .RadMenu.RadMenu ul.rmHorizontal span.rmItem:hover *, .RadMenu.RadMenu ul.rmHorizontal a.rmItem:hover * {
          max-height: 500px; } }
  .RadMenu.RadMenu ul.rmHorizontal li div {
    background: transparent;
    transition: all 0.5s ease; }
    @media (max-width: 767px) {
      .RadMenu.RadMenu ul.rmHorizontal li div {
        display: none !important; } }
  .RadMenu.RadMenu ul.rmHorizontal li:hover div {
    background: white; }
  @media (max-width: 767px) {
    .RadMenu.RadMenu ul.rmHorizontal ul, .RadMenu.RadMenu ul.rmHorizontal li, .RadMenu.RadMenu ul.rmHorizontal span, .RadMenu.RadMenu ul.rmHorizontal a {
      display: block !important; }
      .RadMenu.RadMenu ul.rmHorizontal ul:hover, .RadMenu.RadMenu ul.rmHorizontal li:hover, .RadMenu.RadMenu ul.rmHorizontal span:hover, .RadMenu.RadMenu ul.rmHorizontal a:hover {
        background-color: unset; } }
  @media (max-width: 767px) {
    .RadMenu.RadMenu ul.rmHorizontal {
      margin: 3rem 0; } }
  .RadMenu.RadMenu ul.rmHorizontal > .rmItem > div {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all .5s ease-out;
    margin: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1); }
    .RadMenu.RadMenu ul.rmHorizontal > .rmItem > div a {
      margin: 1rem 2rem;
      color: var(--text-blue);
      border-bottom: 2px solid transparent;
      transition: all .3s ease-in-out; }
      .RadMenu.RadMenu ul.rmHorizontal > .rmItem > div a:hover {
        border-bottom: 2px solid var(--bg-blue-light);
        transition: all .3s ease-in-out; }
      .RadMenu.RadMenu ul.rmHorizontal > .rmItem > div a span {
        color: var(--text-blue);
        background: transparent; }
  .RadMenu.RadMenu ul.rmHorizontal > .rmItem:hover > div {
    transition: all .5s ease-in;
    max-height: 800px !important; }

.RadMenu:after, .RadMenu .rmRootGroup:after {
  display: none; }

.RadMenu .rmHorizontal,
.RadMenu .rmLink,
.RadMenu .rmGroup {
  padding: 1rem 2rem; }
  .RadMenu .rmHorizontal .rmText,
  .RadMenu .rmLink .rmText,
  .RadMenu .rmGroup .rmText {
    padding: 0;
    margin: 0; }
  .RadMenu .rmHorizontal .rmRootLink .rmToggle,
  .RadMenu .rmLink .rmRootLink .rmToggle,
  .RadMenu .rmGroup .rmRootLink .rmToggle {
    display: none !important; }

.RadMenu .rmItem a {
  padding: 1.3rem; }

.primary-navigation-area .RadMenu .rmGroup .rmText {
  padding: 0;
  margin: 0; }

.RadMenu .rmHorizontal .rmText {
  padding: 0 0 1px 0 !important; }

/* Aux NAV STYLING */
.header-container {
  display: flex;
  /* Cart + Search */
  /* On Behalf Of */ }
  .header-container > div {
    flex: 1 1 auto; }
  .header-container > div.header-logo-container {
    flex: 1 1 25%; }
  .header-container .nav-auxiliary {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap-reverse;
    justify-content: right;
    align-items: center; }
    .header-container .nav-auxiliary div {
      flex: 0 1 auto;
      margin: 0;
      padding: 0;
      text-align: right; }
    .header-container .nav-auxiliary .NavigationListItem {
      font-family: 'Noto Sans Display', sans-serif;
      margin: 0;
      padding: 0; }
    .header-container .nav-auxiliary li:not(.TextButton) a:not(.TextButton) {
      color: var(--text-blue) !important;
      font-size: 13px;
      padding: 0.5rem 0;
      margin: 0 0.5rem !important;
      text-transform: uppercase;
      text-decoration: none; }
    .header-container .nav-auxiliary .TextButton {
      margin-right: 1rem !important; }
  .header-container .nav-auxiliary .TextButton,
  .header-container .nav-auxiliary .navbar-toggle {
    margin: 0; }
  .header-container .nav-auxiliary .nav-aux-cart a,
  .header-container .nav-auxiliary .search a {
    display: grid; }
  .header-container .nav-auxiliary .nav-aux-cart .nav-text,
  .header-container .nav-auxiliary .search .nav-text {
    display: inline-block;
    width: 25px;
    height: 23px;
    overflow: hidden;
    text-indent: 200vw;
    padding: 0;
    margin: 0 0.7rem;
    background-position: center center;
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2027.2764%2023.7505%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3Anone%3Bstroke%3A%2303509B%3Bstroke-width%3A1.5%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%0A%09.st1%7Bfill%3A%231E4D97%3B%7D%0A%3C%2Fstyle%3E%0A%3Cg%20id%3D%22Group_386%22%20transform%3D%22translate%28-154.862%20-752.689%29%22%3E%0A%09%3Cpath%20id%3D%22Path_95%22%20class%3D%22st0%22%20d%3D%22M155.612%2C753.439h3.9512l4.0352%2C18.3281h14.2998%22%2F%3E%0A%09%3Cpath%20id%3D%22Path_96%22%20class%3D%22st0%22%20d%3D%22M160.3317%2C756.5191h21.0566l-1.9004%2C10.5703h-16.916%22%2F%3E%0A%09%3Cg%20id%3D%22Ellipse_10%22%20transform%3D%22translate%28162.683%20771.966%29%22%3E%0A%09%09%3Ccircle%20class%3D%22st1%22%20cx%3D%222.2367%22%20cy%3D%222.2366%22%20r%3D%222.237%22%2F%3E%0A%09%09%3Ccircle%20class%3D%22st0%22%20cx%3D%222.2367%22%20cy%3D%222.2366%22%20r%3D%221.487%22%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cg%20id%3D%22Ellipse_11%22%20transform%3D%22translate%28174.882%20771.767%29%22%3E%0A%09%09%3Ccircle%20class%3D%22st1%22%20cx%3D%222.2367%22%20cy%3D%222.2366%22%20r%3D%222.237%22%2F%3E%0A%09%09%3Ccircle%20class%3D%22st0%22%20cx%3D%222.2367%22%20cy%3D%222.2366%22%20r%3D%221.487%22%2F%3E%0A%09%3C%2Fg%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A);
    background-repeat: no-repeat;
    background-size: contain; }
  .header-container .nav-auxiliary .nav-aux-cart.search .nav-text,
  .header-container .nav-auxiliary .search.search .nav-text {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2019.5422%2021.4133%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3Anone%3B%7D%0A%09.st1%7Bfill%3Anone%3Bstroke%3A%231E4D97%3Bstroke-width%3A1.6%3B%7D%0A%09.st2%7Bfill%3Anone%3Bstroke%3A%231E4D97%3Bstroke-width%3A1.6%3Bstroke-linecap%3Around%3B%7D%0A%3C%2Fstyle%3E%0A%3Cg%20id%3D%22Group_385%22%20transform%3D%22translate%28-1115%20-91%29%22%3E%0A%09%3Cg%20id%3D%22Ellipse_9%22%20transform%3D%22translate%281115%2091%29%22%3E%0A%09%09%3Ccircle%20class%3D%22st0%22%20cx%3D%228.5%22%20cy%3D%228.5%22%20r%3D%228.5%22%2F%3E%0A%09%09%3Ccircle%20class%3D%22st1%22%20cx%3D%228.5%22%20cy%3D%228.5%22%20r%3D%227.7%22%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cpath%20id%3D%22Path_94%22%20class%3D%22st2%22%20d%3D%22M1133.7422%2C111.6133l-5.2139-5.625%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A); }
  .header-container .obo-toggle-wrapper {
    display: none !important; }
  .header-container .UtilityNavigation .account-menu > li > a,
  .header-container .obo-label,
  .header-container .obo-panel {
    color: var(--text-blue) !important;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding-right: 1rem !important;
    text-transform: uppercase;
    text-decoration: none; }

/* JOIN Button swap from aux to primary nav */
.RadMenu.RadMenu ul.rmHorizontal a.button-join {
  padding: .5rem 2rem !important;
  margin: 0;
  border: 1px solid white !important; }

.RadMenu.RadMenu ul.rmHorizontal a.button-join .rmText {
  display: inline-block !important;
  padding: 0 !important; }

.RadMenu.RadMenu ul.rmHorizontal a.button-join {
  display: inline-block !important; }

@media (min-width: 767px) {
  .RadMenu.RadMenu ul.rmHorizontal a.button-join {
    display: none !important; } }

.nav-auxiliary .NavigationListItem.button-join {
  display: none; }

@media (min-width: 767px) {
  .nav-auxiliary .NavigationListItem.button-join {
    display: inline-block !important; } }

/* JOIN Button swap from aux to primary nav */
html {
  scroll-behavior: smooth; }

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  opacity: .7; }
  #btn-back-to-top:hover {
    opacity: 1; }
  #btn-back-to-top svg.scroll-to-top-icon {
    max-height: 16px;
    padding: 0;
    margin: 0 0 3px 0;
    width: 16px;
    vertical-align: middle; }

a.go-to-the-top {
  display: none; }

#ft {
  background-color: var(--bg-blue-bright); }

.footer abbr[title], .footer abbr[data-original-title] {
  border: none !important;
  text-decoration: none; }

a.text-white.href-tel {
  text-decoration: none; }

.footer-content {
  background-color: var(--bg-blue-bright);
  font-family: 'Noto Sans Display', sans-serif;
  margin: 2rem 0;
  text-align: left; }
  .footer-content p, .footer-content li {
    font-family: 'Noto Sans Display', sans-serif;
    text-align: left; }
  .footer-content #ste_container_LogoType img {
    max-width: 200px;
    margin: 1rem; }
  .footer-content ul.social-media, .footer-content ul.social-media li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block; }
  .footer-content ul.social-media a {
    align-content: space-around;
    border-radius: 100%;
    border: 2px solid white;
    display: grid;
    height: 2.5em;
    margin: 0.25rem;
    text-decoration: none;
    width: 2.5em; }
    .footer-content ul.social-media a:hover {
      background: var(--bg-blue); }
  .footer-content ul.social-media a .fa {
    text-align: center; }
  .footer-content ul.social-media a .fa .text {
    text-indent: 200vw;
    display: inline-block;
    max-width: 0;
    overflow: hidden; }

.footer-nav {
  font-family: 'Noto Sans Display', sans-serif;
  text-align: left; }
  .footer-nav p, .footer-nav li {
    font-family: 'Noto Sans Display', sans-serif;
    text-align: left; }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0; }
  .footer-nav li {
    flex: 1 0 auto;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; }
  .footer-nav a {
    display: inline-block;
    padding: 0 0;
    margin: 2rem 1rem;
    text-decoration: none;
    font-size: 1.5rem;
    border-bottom: 1px solid;
    border-color: transparent; }
  .footer-nav a:hover {
    border-color: white; }

/* Specialty Pages */
/* HOME */
.home-hero:before {
  background-image: url(/images/2023/2023-hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  content: '';
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  z-index: -1; }

.home-hero h1, .home-hero .h1, .home-hero .PageTitle,
.home-hero h2, .home-hero .h2, .home-hero .PanelTitle,
.home-hero h3, .home-hero .SectionTitle {
  color: white;
  letter-spacing: -0.3px;
  text-shadow: 0px 6px 8px #00000041; }

.home-hero .h4, .home-hero .h5 {
  color: var(--text-blue);
  font-family: 'Inter', sans-serif;
  font-weight: 400; }

.home-hero .iMIS-WebPart {
  padding: 7rem 0.5rem 5rem 0.5rem; }

.home-hero .iMIS-WebPart:last-child {
  background-color: transparent;
  padding-top: calc(4vw + 8rem);
  position: relative;
  margin: 0;
  max-width: none;
  width: 100vw;
  z-index: 0; }
  @media (min-width: 1170px) {
    .home-hero .iMIS-WebPart:last-child {
      margin: 0 calc(50% - 50vw); } }
  .home-hero .iMIS-WebPart:last-child:before {
    background: var(--bg-grey);
    content: '';
    -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20d%3D%22M774.8494%2C84.9919h-0.5498c-99.4385-0.7673-193.3633-1.4922-277.0215-3.3945%0A%09c-91.2138-2.0742-161.0732-5.3555-219.8525-10.3262c-33.0616-2.8008-62.1944-6.082-89.0596-10.041%0A%09c-13.8096-2.0371-27.082-4.2695-39.4502-6.6387c-12.6212-2.418-24.7714-5.0645-36.1152-7.8691%0A%09c-11.5225-2.8513-22.5645-5.9509-32.8184-9.2146c-10.4004-3.3105-20.3467-6.9004-29.5615-10.6738%0A%09c-9.3077-3.8105-18.1709-7.9297-26.3438-12.248C16.0934%2C10.3906%2C8.3591%2C5.7402%2C0.9119%2C0.6543l0.1465%2C0.0103L0.9119%2C0.6484V0H0.0001%0A%09v7906.1602V8000h1200V84.7849C1200%2C84.7849%2C880.1755%2C84.7575%2C774.8494%2C84.9919z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
            mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2027.5.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22basic%22%20id%3D%22Layer_1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%201200%208000%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20d%3D%22M774.8494%2C84.9919h-0.5498c-99.4385-0.7673-193.3633-1.4922-277.0215-3.3945%0A%09c-91.2138-2.0742-161.0732-5.3555-219.8525-10.3262c-33.0616-2.8008-62.1944-6.082-89.0596-10.041%0A%09c-13.8096-2.0371-27.082-4.2695-39.4502-6.6387c-12.6212-2.418-24.7714-5.0645-36.1152-7.8691%0A%09c-11.5225-2.8513-22.5645-5.9509-32.8184-9.2146c-10.4004-3.3105-20.3467-6.9004-29.5615-10.6738%0A%09c-9.3077-3.8105-18.1709-7.9297-26.3438-12.248C16.0934%2C10.3906%2C8.3591%2C5.7402%2C0.9119%2C0.6543l0.1465%2C0.0103L0.9119%2C0.6484V0H0.0001%0A%09v7906.1602V8000h1200V84.7849C1200%2C84.7849%2C880.1755%2C84.7575%2C774.8494%2C84.9919z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    mask-type: alpha;
    -webkit-mask-position: center top;
            mask-position: center top;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
  .home-hero .iMIS-WebPart:last-child > div {
    max-width: 1140px;
    margin: 0 auto;
    float: none;
    padding: 0 0.5rem;
    z-index: 1; }
  @media (min-width: 650px) {
    .home-hero .iMIS-WebPart:last-child > div > div {
      display: grid;
      grid-auto-columns: 3fr 1fr;
      grid-auto-flow: column;
      grid-gap: 8rem; } }
.event-date {
  text-align: right;
  margin: 0 0 3rem 0; }

.event-meta {
  font-weight: bold;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 0.9em; }

.event-title {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  -webkit-hyphens: auto;
          hyphens: auto;
  position: unset; }
  .event-title a:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px; }

.event-location {
  margin-left: .5em; }

.FilterPanel {
  background-color: unset;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--bg-blue) !important; }

.RadGrid.RadGrid_MetroTouch .rgNumPart a.rgCurrentPage,
.RadGrid.RadGrid_MetroTouch .rgNumPart a.rgCurrentPage:hover,
.RadGrid.RadGrid_MetroTouch .rgPagePrev:active,
.RadGrid.RadGrid_MetroTouch .rgPageNext:active,
.RadGrid.RadGrid_MetroTouch .rgPageFirst:active,
.RadGrid.RadGrid_MetroTouch .rgPageLast:active,
.RadGrid.RadGrid_MetroTouch .rgPager .rgPagerButton,
.RadGrid.RadGrid_Metro .rgNumPart a.rgCurrentPage,
.RadGrid.RadGrid_Metro .rgNumPart a.rgCurrentPage:hover,
.RadGrid.RadGrid_Metro .rgPagePrev:active,
.RadGrid.RadGrid_Metro .rgPageNext:active,
.RadGrid.RadGrid_Metro .rgPageFirst:active,
.RadGrid.RadGrid_Metro .rgPageLast:active,
.RadGrid.RadGrid_Metro .rgPager .rgPagerButton {
  background-color: var(--bg-blue) !important; }

.RadGrid a,
.RadToolTip a {
  color: inherit !important; }

.RadGrid a:hover, .RadGrid a:focus, .RadGrid a:active, .RadToolTip a:hover, .RadToolTip a:focus, .RadToolTip a:active {
  color: inherit !important; }

.FilterPanel > div > div > div > div {
  display: block;
  padding: inherit 1rem;
  margin: 0; }
  @media (min-width: 768px) {
    .FilterPanel > div > div > div > div {
      display: grid;
      grid-gap: 4rem;
      grid-template-columns: 1fr 1fr;
      justify-items: flex-start; } }
  .FilterPanel > div > div > div > div select,
  .FilterPanel > div > div > div > div textarea,
  .FilterPanel > div > div > div > div input[type="text"],
  .FilterPanel > div > div > div > div input[type="password"],
  .FilterPanel > div > div > div > div input[type="datetime"],
  .FilterPanel > div > div > div > div input[type="datetime-local"],
  .FilterPanel > div > div > div > div input[type="date"],
  .FilterPanel > div > div > div > div input[type="month"],
  .FilterPanel > div > div > div > div input[type="time"],
  .FilterPanel > div > div > div > div input[type="week"],
  .FilterPanel > div > div > div > div input[type="number"],
  .FilterPanel > div > div > div > div input[type="email"],
  .FilterPanel > div > div > div > div input[type="url"],
  .FilterPanel > div > div > div > div input[type="search"],
  .FilterPanel > div > div > div > div input[type="tel"],
  .FilterPanel > div > div > div > div input[type="color"],
  .FilterPanel > div > div > div > div .uneditable-input {
    border: 1px solid var(--bg-grey-dark) !important; }

.PanelField label,
.PanelField .Label {
  width: 17em; }

.iqa-search .SearchField,
.iqa-search .SearchResultSummary .ListItemTitle a {
  display: block;
  background-color: unset;
  padding: 8px 0;
  margin: 0; }

.iqa-search .SearchResult.ClearFix > .ImageSection {
  display: none; }

.iqa-search .SearchResultSummary .Description {
  margin-left: 0; }

.iqa-search .SearchResultSummary .ListItemTitle a {
  border: 1px solid transparent; }

.iqa-search .SearchResultSummary .ListItemTitle a:hover {
  background-color: unset;
  border-bottom: 1px solid var(--text-blue); }

.iqa-search .panel-body, .iqa-search .PanelBody {
  padding: 0; }

.iqa-search .WebPartZone label,
.iqa-search label, .iqa-search .Label, .iqa-search .PanelFieldLabelFont {
  margin-left: 0 !important; }

.iqa-search .SearchField {
  padding: 1rem;
  position: relative; }

.iqa-search .SearchField:before {
  background-color: var(--bg-grey) !important;
  content: '' !important;
  height: 100% !important;
  left: calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw !important;
  z-index: -1; }

.iqa-search h2.panel-title {
  margin-top: 0; }
