/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-3[0].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-3[0].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-3[0].rules[0].use[3]!./src/scss/nasem.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
:root {
  /* stylelint-disable declaration-colon-space-after */
  --color-purple-dark: rgb(33,23,71);
  --color-purple-dark--subtle: #1c143d;
  --color-purple-soft: rgb(73,69,104);
  --color-purple-medium: rgb(65,72,194);
  --color-purple-medium--subtle: #5B6EB9;
  --color-purple-light: rgb(120,153,242);
  --color-brown--tan: rgb(241,239,232);
  --color-brown--bone: rgb(243,241,235);
  --color-brown--merino: rgb(225,218,206);
  --color-brown--sand: rgb(221,213,199);
  --color-brown--wood: rgb(188,155,106);
  --color-gold-light: rgb(254,218,108);
  --color-gold--medium: rgb(220,175,39);
  --color-neutral--white: rgb(255,255,255);
  --color-neutral--white-lilac: rgb(238,238,238);
  --color-neutral--gray-medium: rgb(199,201,199);
  --color-neutral--gray-dark: rgb(96, 96, 96);
  --color-neutral--dusty: rgb(118,118,118);
  --color-neutral--granite: rgb(102,102,102);
  --color-neutral--jet: rgb(51,51,51);
  --color-neutral--charcoal: rgb(34,34,34);
  --color-neutral--black: rgb(0,0,0);
  --box-shadow--charcoal: rgba(34,34,34,.25);
  --color-society--sciences: rgb(115,83,29);
  --color-society--engineering: rgb(49,84,112);
  --color-society--medicine: rgb(93,55,84);
  /* stylelint-enable declaration-colon-space-after */
  --type-font--fallback: -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  --type-font--lato: "Lato", var(--type-font--fallback);
  --type-size--huge: 1.375rem;
  --type-size--intro: 1.3rem;
  --type-size--small: .8em;
  --type-size--1: 1.375rem;
  --type-size--2: 1.5rem;
  --type-size--3: 1.25rem;
  --type-size--4: 1rem;
  --type-size--5: .75rem;
  --type-size--6: .625rem;
  --lato--light: 300;
  --lato--regular: 400;
  --lato--bold: 700;
  --lato--black: 900;
}

/* stylelint-disable */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  /* This causes hr's not to randomly dim in chrome when users zoom out */
  height: 1.5px;
}

/* stylelint-enable */
button {
  padding: 0;
  background-color: transparent;
  border-width: 0;
  border-color: transparent;
  border-radius: 0;
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-family: var(--type-font--lato);
}

.button {
  display: inline-block;
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-family: var(--type-font--lato);
  font-size: 0.67rem;
  font-weight: 900;
  font-weight: var(--lato--black);
  letter-spacing: 2px;
  padding: 1em 1.65em;
  position: relative;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.15s, border-color 0.15s;
}
.button:hover, .button:focus, .button:active {
  text-decoration: underline;
}
.button:not(.button--no-hover):hover .button__icon::after, .button:not(.button--no-hover):focus .button__icon::after, .button:not(.button--no-hover):active .button__icon::after {
  -webkit-transform: translateX(14px);
          transform: translateX(14px);
}
.button.button--primary {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.button.button--primary:hover, .button.button--primary:focus, .button.button--primary:active {
  background-color: rgb(65,72,194);
  background-color: var(--color-purple-medium);
}
.button.button--primary.button--reverse {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
}
.button.button--primary.button--reverse:hover, .button.button--primary.button--reverse:focus, .button.button--primary.button--reverse:active {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
}
.button.button--secondary {
  background-color: transparent;
  border: 1px solid rgb(65,72,194);
  border: 1px solid var(--color-purple-medium);
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  padding: 1.2em 1.5em;
}
.button.button--secondary .button__icon::after {
  background-color: rgba(0, 89, 145, 0.15);
}
.button.button--secondary.button--reverse {
  border: 1px solid rgb(120,153,242);
  border: 1px solid var(--color-purple-light);
  color: rgb(120,153,242);
  color: var(--color-purple-light);
}
.button.button--small {
  padding: 1em;
  font-size: 0.56rem;
}
.button.button--icon {
  padding-right: 2.5rem;
}
.button.button--icon .button__icon {
  display: block;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 4.25em;
}
.button.button--icon svg {
  height: 2.5em;
  position: absolute;
  top: 50%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.5em;
}
.button.button--icon::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  -webkit-transform: translateX(4.25em);
          transform: translateX(4.25em);
  transition: -webkit-transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
}
.button.button--load-more {
  border: 1px solid transparent;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 0.56rem;
  padding: 1em 4em 1em 1em;
  text-shadow: none;
  transition: border-color 0.15s;
}
.button.button--load-more:hover, .button.button--load-more:focus, .button.button--load-more:active {
  border-color: rgb(199,201,199);
  border-color: var(--color-neutral--gray-medium);
}
.button.button--load-more::before {
  display: none;
}
.button.button--load-more .button__icon {
  width: 4em;
}
.button.button--load-more .button__icon svg {
  fill: rgb(220,175,39);
  fill: var(--color-gold--medium);
}
.button.button--load-more .button__icon::after {
  display: none;
}

.scs-contentlist ol.scs-pagination li.loadMore {
  display: inline-block;
  padding: 1em 1.65em;
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-family: var(--type-font--lato);
  font-weight: 900;
  font-weight: var(--lato--black);
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  height: unset;
  line-height: unset;
  transition: background-color 0.15s, border-color 0.15s;
  border: 1px solid transparent;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 0.625rem;
  text-shadow: none;
  background-position: right 10px center;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFLmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoTWFjaW50b3NoKSIgeG1wOkNyZWF0ZURhdGU9IjIwMTktMDMtMjZUMTU6MzU6MDUtMDU6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAzLTI2VDE1OjU1OjUyLTA1OjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE5LTAzLTI2VDE1OjU1OjUyLTA1OjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0ZjEwNjk5LTc1Y2ItNDE0Yy1hZTM4LWE3MDZiYWM1YmVmOSIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjg5YzE0Y2FiLWE0MTItNmI0Yi1iZDRjLThlNGNkY2U2ZTQwMSIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjA0ZjEwNjk5LTc1Y2ItNDE0Yy1hZTM4LWE3MDZiYWM1YmVmOSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6MDRmMTA2OTktNzVjYi00MTRjLWFlMzgtYTcwNmJhYzViZWY5IiBzdEV2dDp3aGVuPSIyMDE5LTAzLTI2VDE1OjM1OjA1LTA1OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoTWFjaW50b3NoKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6F4nC/AAAA70lEQVRIie3VMQ6CMBSA4V/jTVw66AXkDgZdRI9CnDmKuBjrIfQCMrD0LDjY4WlqqURDon0TTcv7eH0lHTRNQx8x7EWNcIQj/BPwyDdptFoDOVAA5TitvcmMVitgCxTjtC59a9sqzoEJsAMyo1Uburfr85a8rXAhnktg7sKNVplFXe91gkvgIsYnYClx2w65rZensTO8PbaRAGdgZscHYGG00sCaexskmgTk9FcsDlMCVGLq6ECrUBRgEHIfi629cj88z1EBU8cHv4yg/1gkmvJYeSc0GPbgndC3YAe+6YpCYI+/Ef93SUQ4whH+WNwAceVFyFhb0vQAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-color: unset !important;
}
.scs-contentlist ol.scs-pagination li.loadMore:hover, .scs-contentlist ol.scs-pagination li.loadMore:focus, .scs-contentlist ol.scs-pagination li.loadMore:active {
  border-color: rgb(199,201,199);
  border-color: var(--color-neutral--gray-medium);
  text-decoration: underline;
}
.scs-contentlist ol.scs-pagination li.loadMore::before {
  display: none;
}
.scs-contentlist ol.scs-pagination li.loadMore a {
  position: relative;
  padding: 0 31px 0 8px;
  background-color: unset !important;
}
.scs-contentlist ol.scs-pagination li.loadMore .disabled {
  display: none;
}

.scs-contentlist ol.scs-pagination li.scs-clickable.scs-disabled {
  display: none;
}

.caption__container {
  margin-top: 1.5em;
}
.caption__container .caption {
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  display: block;
}
.caption__container .caption__sub-caption {
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  font-size: 0.75rem;
  font-style: italic;
  display: block;
  padding-top: 0.875em;
}

.vue-a11y-calendar {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.vue-a11y-calendar button {
  background: none;
  border: 0;
  font-size: 1em;
}
.vue-a11y-calendar * {
  box-sizing: border-box;
}
.vue-a11y-calendar *:focus {
  outline: 2px dotted #757575;
  outline-offset: 2px;
}
.vue-a11y-calendar__header {
  -webkit-align-items: center;
          align-items: center;
  background: #8080ff;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  font-size: 1.5em;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-order: -1;
          order: -1;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  width: 100%;
}
.vue-a11y-calendar__nav {
  color: transparent;
  display: block;
  height: 1px;
  overflow: hidden;
  width: 1px;
}
.vue-a11y-calendar__next, .vue-a11y-calendar__previous {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  text-decoration: none;
}
.vue-a11y-calendar__next:hover, .vue-a11y-calendar__previous:hover {
  cursor: pointer;
}
.vue-a11y-calendar__next {
  -webkit-order: 1;
          order: 1;
}
.vue-a11y-calendar__next::before {
  color: #000;
  content: ">";
  display: block;
  font-weight: 700;
  font-weight: var(--lato--bold);
  padding-left: 0.25em;
  speak: none;
}
.vue-a11y-calendar__previous {
  -webkit-order: -1;
          order: -1;
}
.vue-a11y-calendar__previous::after {
  color: #000;
  content: "<";
  display: block;
  font-weight: 700;
  font-weight: var(--lato--bold);
  padding-right: 0.25em;
  speak: none;
}
.vue-a11y-calendar__month {
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.vue-a11y-calendar__wrapper {
  border-collapse: collapse;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 2em auto;
  width: 100%;
}
.vue-a11y-calendar__head {
  background: #8080ff;
  grid-column: span 7;
  grid-row: span 1;
}
.vue-a11y-calendar__body {
  border: 0.0625em solid #000;
  display: grid;
  grid-auto-rows: minmax(3em, 10vh);
  grid-column: span 7;
}
.vue-a11y-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.vue-a11y-calendar__weekday {
  display: block;
  grid-column: span 1;
}
.vue-a11y-calendar__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.vue-a11y-calendar__day {
  border: 0.031em solid #000;
  grid-column: span 1;
}
.vue-a11y-calendar__day--disabled {
  background: #c4c4c4;
  border: 0.03125em solid #000;
}
.vue-a11y-calendar__day--active {
  background: #ffff80;
  border: 0.03125em solid #000;
}
.vue-a11y-calendar__link {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  color: #000;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding: 0.25em 0.5em;
  text-decoration: none;
  width: 100%;
}
.vue-a11y-calendar__link:focus {
  background-color: rgba(255, 0, 0, 0.5);
}
.vue-a11y-calendar__link:hover {
  cursor: pointer;
}

.vue-a11y-datepicker {
  box-sizing: border-box;
  font-size: 1rem;
  position: relative;
}
.vue-a11y-datepicker * {
  box-sizing: border-box;
}
.vue-a11y-datepicker *:focus {
  outline: 2px dotted #757575;
  outline-offset: 2px;
}
.vue-a11y-datepicker__wrapper {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.vue-a11y-datepicker__activate {
  height: 1em;
  margin-left: 0.5em;
}
.vue-a11y-datepicker__activate:hover {
  cursor: pointer;
}
.vue-a11y-datepicker__label {
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
.vue-a11y-datepicker__popup {
  display: none;
  left: 0;
  position: absolute;
  top: 3rem;
  width: 18.75em;
}
.vue-a11y-datepicker__popup[data-state=open] {
  display: block;
}
.vue-a11y-datepicker__calendar {
  background: #fff;
}
.vue-a11y-datepicker__cancel {
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  color: transparent;
  height: 2.5em;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateY(-1em) translateX(1em);
          transform: translateY(-1em) translateX(1em);
  width: 2.5em;
}
.vue-a11y-datepicker__cancel:hover {
  cursor: pointer;
}
.vue-a11y-datepicker__cancel::before {
  color: #000;
  content: "x";
  display: block;
  font-size: 1.5em;
  font-weight: 400;
  font-weight: var(--lato--regular);
}
.vue-a11y-datepicker__cancel::before:hover {
  cursor: pointer;
}
.vue-a11y-datepicker .vue-a11y-calendar__body {
  grid-auto-rows: 2.25em;
}
.vue-a11y-datepicker .vue-a11y-calendar__head {
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}
.vue-a11y-datepicker .vue-a11y-calendar__header {
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
}

.datepicker__wrapper {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 1em;
  border: 1px solid rgb(199,201,199);
  border: 1px solid var(--color-neutral--gray-medium);
}
.datepicker__wrapper .input-submit {
  position: relative;
  right: auto;
  bottom: auto;
}
.datepicker__wrapper .vue-a11y-datepicker__wrapper {
  position: relative;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  height: 100%;
  min-width: 145px;
  width: calc(100% - 0.4em);
}
.datepicker__wrapper .vue-a11y-datepicker__label {
  -webkit-order: 0;
          order: 0;
  position: absolute;
  height: 0;
  margin: 0;
  visibility: hidden;
}
.datepicker__wrapper .vue-a11y-datepicker__input {
  border: 0;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 0.875rem;
  height: 100%;
  margin: 0;
  -webkit-order: 2;
          order: 2;
  padding: 0.85em 0;
  width: 60% !important;
}
.datepicker__wrapper .vue-a11y-datepicker__activate {
  -webkit-order: 1;
          order: 1;
  -webkit-flex: 0 0 1.75em;
          flex: 0 0 1.75em;
  height: 1.75em;
  margin-left: 0.25em;
  margin-right: 0;
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
}
.datepicker__wrapper .vue-a11y-datepicker__clear {
  -webkit-order: 3;
          order: 3;
  overflow: hidden;
}
.datepicker__wrapper .vue-a11y-datepicker__clear svg {
  height: 1.6rem;
  width: 1.6rem;
}
.datepicker__wrapper .vue-a11y-datepicker__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  box-shadow: 0 5px 10px 0 rgba(34,34,34,.25);
  box-shadow: 0 5px 10px 0 var(--box-shadow--charcoal);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-datepicker__cancel {
  background: rgb(33,23,71);
  background: var(--color-purple-dark);
  border: 0;
  border-radius: 0;
  -webkit-transform: none;
          transform: none;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-datepicker__cancel svg {
  width: 2em;
  height: 2em;
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-datepicker__cancel::before {
  display: none;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__previous svg,
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__next svg {
  width: 1.25em;
  height: 1.25em;
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__previous::before, .datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__previous::after,
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__next::before,
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__next::after {
  display: none;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__wrapper {
  display: block;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__header,
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__head,
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__body,
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day {
  border-color: rgb(199,201,199);
  border-color: var(--color-neutral--gray-medium);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__header {
  font-size: 1.2rem;
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  border-width: 1px 1px 0;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__head {
  display: block;
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  border-width: 0 1px;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__body {
  display: block;
  border-width: 1px;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__weekdays {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  padding: 0.25em 0;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__weekdays .vue-a11y-calendar__weekday {
  -webkit-flex: 0 1 14.286%;
          flex: 0 1 14.286%;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__week {
  display: -webkit-flex;
  display: flex;
}
.datepicker__wrapper .vue-a11y-datepicker__popup [class*=vue-a11y-calendar__day] {
  display: block;
  -webkit-flex: 0 1 14.286%;
          flex: 0 1 14.286%;
  border-width: 0 1px 1px 0;
}
.datepicker__wrapper .vue-a11y-datepicker__popup [class*=vue-a11y-calendar__day]:last-of-type {
  border-right-width: 0;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__link {
  display: block;
  padding: 0.5em;
  text-align: right;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day--active {
  background-color: rgb(65,72,194);
  background-color: var(--color-purple-medium);
  border-color: rgb(199,201,199);
  border-color: var(--color-neutral--gray-medium);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day--active .vue-a11y-calendar__link {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day--active .vue-a11y-calendar__link:focus {
  box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.5);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day--selected {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  border-color: rgb(199,201,199);
  border-color: var(--color-neutral--gray-medium);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day--selected .vue-a11y-calendar__link {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day--selected .vue-a11y-calendar__link:focus {
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.35);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day--disabled {
  background-color: rgb(199,201,199);
  background-color: var(--color-neutral--gray-medium);
  border-color: rgba(0, 0, 0, 0.15);
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__day--disabled .vue-a11y-calendar__link {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}
.datepicker__wrapper .vue-a11y-datepicker__popup .vue-a11y-calendar__link:focus {
  background-color: transparent;
  box-shadow: inset 0 0 0 3px rgb(33,23,71);
  box-shadow: inset 0 0 0 3px var(--color-purple-dark);
}
@media screen and (min-width: 42em) {
  .datepicker__wrapper .vue-a11y-datepicker__popup {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    left: auto;
  }
}
@media screen and (min-width: 60em) {
  .datepicker__wrapper .vue-a11y-datepicker__popup {
    right: auto;
    left: 2em;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media screen and (min-width: 42em) {
  .datepicker__wrapper {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}

.datepicker--single .input-submit {
  margin: 0.7em 0.7em 0.7em 0;
}
.datepicker--single .vue-a11y-datepicker {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
.datepicker--single .vue-a11y-datepicker__input {
  width: calc(100% - 2em);
}

.datepicker--range {
  margin-bottom: 0;
}
.datepicker--range > .datepicker__wrapper {
  margin-bottom: 0;
  border: 0;
}
.datepicker--range .input-submit {
  height: 100%;
  text-align: center;
  white-space: nowrap;
}
.datepicker--range .datepicker__wrapper {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.datepicker--range .datepicker__wrapper .datepicker > .datepicker__wrapper {
  display: block;
}

@media (min-width: 85em) {
  .datepicker--range .input-submit {
    margin: 0;
  }
  .datepicker--range .datepicker__wrapper {
    -webkit-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .datepicker--range .datepicker__wrapper .vue-a11y-datepicker {
    -webkit-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  .datepicker--range .datepicker__wrapper .vue-a11y-datepicker__input {
    width: 70%;
  }
  .datepicker--range .datepicker {
    margin-right: 0.5em;
    width: 100%;
  }

  .datepicker--single .datepicker__wrapper {
    margin-bottom: 0;
  }
}
.active-filters {
  display: inline-block;
  -webkit-align-items: center;
          align-items: center;
  max-width: calc(100vw - 5rem);
  overflow: auto;
  white-space: nowrap;
}
@media screen and (min-width: 65rem) {
  .active-filters {
    display: block;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
  }
}

.active-filter {
  display: inline-block;
  margin-right: 0.5em;
  padding: 0.35rem;
  background-color: transparent;
  border: 1px solid rgb(199,201,199);
  border: 1px solid var(--color-neutral--gray-medium);
  border-radius: 2px;
  text-align: left;
  transition: background-color 0.15s;
  cursor: pointer;
}
.active-filter:hover, .active-filter:focus, .active-filter:active {
  background-color: rgb(243,241,235);
  background-color: var(--color-brown--bone);
}
@media screen and (min-width: 65rem) {
  .active-filter {
    margin-right: 0.3rem;
    margin-bottom: 0.5rem;
  }
}

.active-filter__type {
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  line-height: 0.5em;
}
.active-filter__type svg {
  width: 0.75em;
  height: 0.75em;
  vertical-align: middle;
}
.active-filter__type span {
  font-size: 0.625em;
}

.active-filter__content {
  font-size: 0.875em;
}

label {
  display: block;
  margin-bottom: 0.3em;
  font-size: 0.875em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  letter-spacing: 1px;
}
@media screen and (min-width: 45em) {
  label {
    font-size: 0.778em;
  }
}

fieldset legend {
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
}

input[type=search],
input[type=submit],
input[type=tel],
input[type=text],
input[type=url],
input[type=week],
textarea {
  width: 100%;
  margin-bottom: 1em;
  padding: 0.9em 0.85rem 0.75em;
  border: 1px solid rgb(199,201,199);
  border: 1px solid var(--color-neutral--gray-medium);
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-family: var(--type-font--lato);
  font-size: 1em;
  line-height: 1;
  height: 45px;
  /* stylelint-disable selector-no-vendor-prefix */
  /* stylelint-enable selector-no-vendor-prefix */
}
input[type=search]::-webkit-input-placeholder,
input[type=submit]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
  font-style: italic;
  line-height: 1.15;
}
input[type=search]::-moz-input-placeholder,
input[type=submit]::-moz-input-placeholder,
input[type=tel]::-moz-input-placeholder,
input[type=text]::-moz-input-placeholder,
input[type=url]::-moz-input-placeholder,
input[type=week]::-moz-input-placeholder,
textarea::-moz-input-placeholder {
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
  font-style: italic;
  line-height: 1.15;
}
input[type=search]::-ms-input-placeholder,
input[type=submit]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=text]::-ms-input-placeholder,
input[type=url]::-ms-input-placeholder,
input[type=week]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
  font-style: italic;
  line-height: 1.15;
}
input[type=search]::-moz-placeholder,
input[type=submit]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=week]::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
  font-style: italic;
  line-height: 1.15;
}
input[type=search]:focus,
input[type=submit]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
  border-color: rgb(33,23,71);
  border-color: var(--color-purple-dark);
  box-shadow: 0 0 5px rgb(33,23,71);
  box-shadow: 0 0 5px var(--color-purple-dark);
}
input[type=search]:disabled,
input[type=submit]:disabled,
input[type=tel]:disabled,
input[type=text]:disabled,
input[type=url]:disabled,
input[type=week]:disabled,
textarea:disabled {
  background-color: rgb(238,238,238);
  background-color: var(--color-neutral--white-lilac);
  border-color: rgb(238,238,238);
  border-color: var(--color-neutral--white-lilac);
}
@media screen and (min-width: 45em) {
  input[type=search],
input[type=submit],
input[type=tel],
input[type=text],
input[type=url],
input[type=week],
textarea {
    margin-bottom: 1em;
    font-size: 0.888em;
  }
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
}
input[type=checkbox] ~ label,
input[type=radio] ~ label {
  display: block;
  overflow: hidden;
  padding-left: 0.4em;
  font-weight: 400;
  font-weight: var(--lato--regular);
  letter-spacing: 0;
}
input[type=checkbox] ~ label a,
input[type=radio] ~ label a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
input[type=checkbox] ~ label a:hover, input[type=checkbox] ~ label a:active, input[type=checkbox] ~ label a:focus,
input[type=radio] ~ label a:hover,
input[type=radio] ~ label a:active,
input[type=radio] ~ label a:focus {
  text-decoration: underline;
}
input[type=checkbox]:disabled ~ [class*="--faux"],
input[type=radio]:disabled ~ [class*="--faux"] {
  background-color: rgb(199,201,199);
  background-color: var(--color-neutral--gray-medium);
}
input[type=checkbox]:disabled ~ label,
input[type=radio]:disabled ~ label {
  color: rgb(199,201,199);
  color: var(--color-neutral--gray-medium);
}

.checkbox--faux,
.radio--faux {
  position: relative;
  top: 1px;
  float: left;
  display: block;
  width: 0.9em;
  height: 0.9em;
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  border: 1px solid rgb(199,201,199);
  border: 1px solid var(--color-neutral--gray-medium);
}

.checkbox--faux {
  border-radius: 2px;
}
.checkbox--faux::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6em;
  height: 0.35em;
  border-bottom: 2px solid rgb(255,255,255);
  border-bottom: 2px solid var(--color-neutral--white);
  border-left: 2px solid rgb(255,255,255);
  border-left: 2px solid var(--color-neutral--white);
  -webkit-transform: translate(-50%, -80%) rotate(-45deg);
          transform: translate(-50%, -80%) rotate(-45deg);
  opacity: 0;
}

.radio--faux {
  border-radius: 50%;
}
.radio--faux::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55em;
  height: 0.55em;
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

input[type=checkbox]:focus ~ .checkbox--faux {
  border-color: rgb(33,23,71);
  border-color: var(--color-purple-dark);
  box-shadow: 0 0 5px rgb(33,23,71);
  box-shadow: 0 0 5px var(--color-purple-dark);
}

input[type=checkbox]:checked ~ .checkbox--faux {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  border-color: rgb(33,23,71);
  border-color: var(--color-purple-dark);
}
input[type=checkbox]:checked ~ .checkbox--faux::after {
  opacity: 1;
}

input[type=radio]:focus ~ .radio--faux {
  border-color: rgb(33,23,71);
  border-color: var(--color-purple-dark);
  box-shadow: 0 0 5px rgb(33,23,71);
  box-shadow: 0 0 5px var(--color-purple-dark);
}

input[type=radio]:checked ~ .radio--faux {
  border-color: rgb(33,23,71);
  border-color: var(--color-purple-dark);
}
input[type=radio]:checked ~ .radio--faux::after {
  opacity: 1;
}

.input-container {
  position: relative;
  line-height: 1.2;
  font-size: 18px;
}

.input-container--button input[type=search],
.input-container--button input[type=submit],
.input-container--button input[type=tel],
.input-container--button input[type=text],
.input-container--button input[type=url],
.input-container--button input[type=week],
.input-container--button textarea {
  position: relative;
  z-index: 1;
}
.input-container--button input[type=search],
.input-container--button input[type=submit],
.input-container--button input[type=tel],
.input-container--button input[type=text],
.input-container--button input[type=url],
.input-container--button input[type=week] {
  padding-right: 0.85rem;
}
@media screen and (min-width: 42em) {
  .input-container--button input[type=search],
.input-container--button input[type=submit],
.input-container--button input[type=tel],
.input-container--button input[type=text],
.input-container--button input[type=url],
.input-container--button input[type=week] {
    padding-right: inherit;
  }
}
.input-container--button textarea {
  padding-bottom: 3.5em;
}

.input-container--icon input[type=search],
.input-container--icon input[type=submit],
.input-container--icon input[type=tel],
.input-container--icon input[type=text],
.input-container--icon input[type=url],
.input-container--icon input[type=week] {
  position: relative;
  z-index: 1;
  padding-left: 2.35em;
}
.input-container--icon.input-container--icon-right input[type=search],
.input-container--icon.input-container--icon-right input[type=submit],
.input-container--icon.input-container--icon-right input[type=tel],
.input-container--icon.input-container--icon-right input[type=text],
.input-container--icon.input-container--icon-right input[type=url],
.input-container--icon.input-container--icon-right input[type=week] {
  padding-left: 1em;
  padding-right: 2.35em;
}
.input-container--icon .input-icon {
  position: absolute;
  bottom: 1.3em;
  left: 0.35em;
  z-index: 2;
}
.input-container--icon .input-icon svg {
  width: 1.75em;
  height: 1.75em;
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
}
@media screen and (min-width: 42em) {
  .input-container--icon .input-icon {
    bottom: 1.05em;
  }
}
.input-container--icon.input-container--icon-right .input-icon {
  right: 1em;
  left: auto;
}

.input-submit {
  position: absolute;
  right: 0.5em;
  bottom: 23px;
  z-index: 2;
}

.form--inline .input-container {
  display: inline-block;
}
.form--inline .input-container + .input-container {
  margin-left: 1rem;
}

input[type=text]::-ms-clear,
input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.icon p {
  font-size: 0.8rem;
}
.icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.icon-grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 2rem;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown--content {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  display: inline-block;
  display: none;
  position: absolute;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  z-index: 10;
}
.dropdown--content a {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown--content a:hover {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}

.dropdown--content--boston {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
}

.contentZone {
  display: block;
  width: 10rem;
  position: absolute;
  overflow: auto;
  max-height: 10rem;
  border: 0.1rem solid rgb(33,23,71);
  border: 0.1rem solid var(--color-purple-dark);
  scrollbar-color: initial rgb(33,23,71);
  scrollbar-color: initial var(--color-purple-dark);
}

.contentZoneClosed {
  display: none;
}

.buttonOpen {
  margin-top: 0.4em;
  width: 10rem;
  text-align: center;
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  margin-bottom: 0.25rem;
}

.buttonClosed {
  margin-top: 0.4em;
  text-align: center;
  margin-bottom: 0.25rem;
}

.buttonClosed:hover {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  text-decoration: underline;
}

.button--icon::after {
  height: 0 !important;
}

svg {
  fill: currentColor;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-family: var(--type-font--lato);
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 45em) {
  html,
body {
    font-size: 18px;
  }
}

p,
.scs-paragraph-text {
  font-weight: 400;
  font-weight: var(--lato--regular);
  line-height: 1.5;
}
p.huge, p.scs-title-default-style,
.scs-paragraph-text.huge,
.scs-paragraph-text.scs-title-default-style {
  font-size: 1.375rem;
  font-size: var(--type-size--huge);
}
@media screen and (min-width: 45em) {
  p.huge, p.scs-title-default-style,
.scs-paragraph-text.huge,
.scs-paragraph-text.scs-title-default-style {
    font-size: 2.889rem;
  }
}
p.intro,
.scs-paragraph-text.intro {
  font-size: 1.3rem;
  font-size: var(--type-size--intro);
  font-weight: 400;
  font-weight: var(--lato--regular);
}
@media screen and (min-width: 45em) {
  p.intro,
.scs-paragraph-text.intro {
    font-size: 1.167rem;
  }
}
p a,
.scs-paragraph-text a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
p a:hover, p a:focus, p a:active,
.scs-paragraph-text a:hover,
.scs-paragraph-text a:focus,
.scs-paragraph-text a:active {
  text-decoration: underline;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
  font-weight: var(--lato--bold);
}

small {
  font-size: .8em;
  font-size: var(--type-size--small);
}
@media screen and (min-width: 45em) {
  small {
    font-size: 0.778rem;
  }
}

h1,
.t1 {
  font-size: 1.375rem;
  font-size: var(--type-size--1);
  font-weight: 300;
  font-weight: var(--lato--light);
  line-height: 1.2;
}
@media screen and (min-width: 45em) {
  h1,
.t1 {
    font-size: 2.222rem;
  }
}

h2,
.t2 {
  font-size: 1.5rem;
  font-size: var(--type-size--2);
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.2;
}
@media screen and (min-width: 45em) {
  h2,
.t2 {
    font-size: 1.667rem;
  }
}

h3,
.t3 {
  font-size: 1.25rem;
  font-size: var(--type-size--3);
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.3;
}
@media screen and (min-width: 45em) {
  h3,
.t3 {
    font-size: 1.1rem;
  }
}

h4,
.t4 {
  font-size: 1rem;
  font-size: var(--type-size--4);
  font-weight: 900;
  font-weight: var(--lato--black);
  line-height: 1.4;
}
@media screen and (min-width: 45em) {
  h4,
.t4 {
    font-size: 1rem;
  }
}

h5,
.t5 {
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-family: var(--type-font--lato);
  font-size: .75rem;
  font-size: var(--type-size--5);
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (min-width: 45em) {
  h5,
.t5 {
    font-size: 0.667rem;
  }
}

h6,
.t6 {
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-family: var(--type-font--lato);
  font-size: .625rem;
  font-size: var(--type-size--6);
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (min-width: 45em) {
  h6,
.t6 {
    font-size: 0.556rem;
  }
}

blockquote {
  font-size: 1.125rem;
  font-weight: 300;
  font-weight: var(--lato--light);
  font-style: italic;
  line-height: 1.667;
  text-align: center;
}
@media screen and (min-width: 45em) {
  blockquote {
    font-size: 1.556rem;
    line-height: 1.4;
  }
}

/* .dropcap {
  > :first-child::first-letter {
    color: var(--color-purple-dark);
    float: left;
    font-size: 2.85rem;
    font-weight: var(--lato--black);
    line-height: 2rem;
    padding-top: .35rem;
    padding-right: .35rem;
    vertical-align: top;
  }
} */
.accordion {
  width: 100%;
  border-color: rgb(221,213,199);
  border-color: var(--color-brown--sand);
  border-style: solid;
  border-width: 1px 0;
}
.accordion > div + div {
  border-top: 1px solid rgb(221,213,199);
  border-top: 1px solid var(--color-brown--sand);
}

.accordion__title {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  min-height: 3rem;
}
.accordion__title > .accordion__action {
  width: 100%;
}

.faq__accordion__title {
  background-color: rgba(243, 241, 235, 0);
}
.faq__accordion__title:hover {
  background-color: #eee;
}

.faq__accordion__title__filled {
  background-color: #eee;
}

.accordion__action {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 0.5rem;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 0.875em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  letter-spacing: 1px;
  text-align: left;
  text-decoration: none;
}
.accordion__action[href] {
  width: 100%;
}
.accordion__action + .accordion__action {
  width: auto;
}
.accordion__action .faq__accordion__action {
  color: gray;
}
@media screen and (min-width: 45em) {
  .accordion__action {
    font-size: 0.778em;
  }
}

.accordion__icon {
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  height: 1.8rem;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  width: 1.8rem;
}
.accordion__icon svg {
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
  position: absolute;
}

.faq__accordion__icon {
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  height: 1.8rem;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  width: 1.8rem;
}
.faq__accordion__icon svg {
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
  position: absolute;
}

.accordion__content {
  max-height: 250px;
  overflow: auto;
  padding: 0 0.5em 0.5em;
}
.accordion__content a {
  display: block;
  padding: 0.5em 0;
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.accordion__content a:hover, .accordion__content a:focus {
  text-decoration: underline;
}
.accordion__content .input-container + .input-container {
  margin-top: 0.5em;
}

.faq__accordion__content {
  background-color: transparent;
  overflow: visible;
}

.faq__accordion__content a {
  display: inline;
}
.faq__accordion__content a a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.faq__accordion__content a a:hover, .faq__accordion__content a a:focus {
  text-decoration: underline;
}

.faq__accordion__label {
  font-size: 14pt;
}

.animated-svg.animated-svg__horizontal {
  height: 3px;
  width: 100%;
}
.animated-svg.animated-svg__vertical {
  height: 100%;
  width: 3px;
}
.animated-svg .animated-svg-line {
  transition: stroke-dashoffset 7.5s ease-in-out;
}
.animated-svg.animated-svg__pastel .animated-svg__line {
  stroke: rgb(199,201,199);
  stroke: var(--color-neutral--gray-medium);
}
.animated-svg.animated-svg__dusty .animated-svg__line {
  stroke: rgb(118,118,118);
  stroke: var(--color-neutral--dusty);
}
.animated-svg.animated-svg__gray .animated-svg__line {
  stroke: rgb(96, 96, 96);
  stroke: var(--color-neutral--gray-dark);
}
.animated-svg.animated-svg__medium-purple .animated-svg__line {
  stroke: rgb(65,72,194);
  stroke: var(--color-purple-medium);
}
.animated-svg.animated-svg__sand .animated-svg__line {
  stroke: rgb(221,213,199);
  stroke: var(--color-brown--sand);
}

.animated-border {
  position: absolute;
}
.animated-border.top.inside {
  top: -20px;
}
.animated-border.top.outside {
  top: -30px;
}
.animated-border.right.inside {
  right: -20px;
}
.animated-border.right.outside {
  right: -30px;
}
.animated-border.bottom.inside {
  bottom: -20px;
}
.animated-border.bottom.outside {
  bottom: -30px;
}
.animated-border.left.inside {
  left: -20px;
}
.animated-border.left.outside {
  left: -30px;
}

.animated-border-container {
  margin: 32px;
  position: relative;
}

.blockquote {
  background: rgb(255,255,255);
  background: var(--color-neutral--white);
  padding: 0 2.25rem 2.5rem;
  position: relative;
  width: 100%;
}
.blockquote__border-left {
  border-left: 3px solid rgb(221,213,199);
  border-left: 3px solid var(--color-brown--sand);
  position: absolute;
  left: 0;
  top: 0;
  height: 0%;
  transition: height 0.25s linear 2s;
}
.blockquote__border-bottom {
  border-bottom: 3px solid rgb(221,213,199);
  border-bottom: 3px solid var(--color-brown--sand);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  transition: width 0.25s linear 2.25s;
}
.blockquote__border-right {
  border-right: 3px solid rgb(221,213,199);
  border-right: 3px solid var(--color-brown--sand);
  position: absolute;
  right: 0;
  bottom: 0;
  height: 0%;
  transition: height 0.25s linear 2.5s;
}
.blockquote__border-top {
  border-top: 3px solid rgb(221,213,199);
  border-top: 3px solid var(--color-brown--sand);
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  transition: width 0.25s linear 2.75s;
}
.blockquote .blockquote__icon {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  color: rgb(221,213,199);
  color: var(--color-brown--sand);
  max-width: calc(35px + 1rem);
  padding: 0.5rem;
  position: relative;
  top: -24px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 2s;
  height: 55px;
}
@media screen and (min-width: 60em) {
  .blockquote .blockquote__icon {
    top: -72px;
  }
}
.blockquote .blockquote__content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.blockquote .blockquote__content .blockquote__quote-container {
  position: relative;
}
.blockquote .blockquote__content .blockquote__quote-container blockquote {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  font-style: normal;
  font-weight: 900;
  font-weight: var(--lato--black);
  line-height: 1.2;
  text-align: left;
}
.blockquote .blockquote__content .blockquote__quote-container .blockquote__quote-reveal {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.blockquote .blockquote__content .blockquote__source {
  -webkit-align-self: flex-end;
          align-self: flex-end;
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
  font-size: 1.11rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 2s;
}
.blockquote .blockquote__content .blockquote__source-affiliation {
  -webkit-align-self: flex-end;
          align-self: flex-end;
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  font-size: 0.89rem;
  line-height: 1.11rem;
  font-style: italic;
  text-align: right;
  max-width: 75%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 2.5s;
}
@media screen and (min-width: 60em) {
  .blockquote {
    padding: 2.5rem 2.25rem;
  }
}

.blockquote-show.blockquote .blockquote__icon,
.blockquote-show.blockquote .blockquote__source,
.blockquote-show.blockquote .blockquote__source-affiliation {
  opacity: 1;
}
.blockquote-show.blockquote .blockquote__border-left {
  height: 100%;
}
.blockquote-show.blockquote .blockquote__border-bottom {
  width: 100%;
}
.blockquote-show.blockquote .blockquote__border-right {
  height: 100%;
}
.blockquote-show.blockquote .blockquote__border-top {
  width: 100%;
}

.blockquote.blockquote--motion-false .blockquote__icon,
.blockquote.blockquote--motion-false .blockquote__source,
.blockquote.blockquote--motion-false .blockquote__source-affiliation,
.blockquote.blockquote--motion-false .blockquote__border-left,
.blockquote.blockquote--motion-false .blockquote__border-bottom,
.blockquote.blockquote--motion-false .blockquote__border-right,
.blockquote.blockquote--motion-false .blockquote__border-top,
.blockquote.blockquote--motion-false .blockquote__content .blockquote__source,
.blockquote.blockquote--motion-false .blockquote__content .blockquote__source--affiliation {
  transition: none;
}

.card--color-block {
  cursor: pointer;
  min-height: 100%;
  margin: 0.6rem 1.2rem 0.6rem 0;
  position: relative;
  width: 12.4rem;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.card--color-block::before {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  position: absolute;
  transition: width 0.5s;
  width: 0;
  z-index: 0;
  left: 0;
}
.card--color-block .color-block__container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  height: 100%;
  min-height: 180px;
  padding: 0.5rem;
  position: relative;
}
@media screen and (min-width: 60em) {
  .card--color-block .color-block__container {
    min-height: 200px;
  }
}
.card--color-block .color-block__title {
  font-size: 0.9rem;
  font-weight: 900;
  font-weight: var(--lato--black);
  line-height: 1.3;
  padding: 2rem;
  position: relative;
  text-align: center;
  z-index: 1;
}
.card--color-block .color-block__hover-text {
  font-size: .625rem;
  font-size: var(--type-size--6);
  font-weight: 700;
  font-weight: var(--lato--bold);
  letter-spacing: 1px;
  opacity: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
  text-align: right;
  text-transform: uppercase;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1;
}
@media screen and (min-width: 60em) {
  .card--color-block .color-block__hover-text {
    opacity: 0;
    visibility: hidden;
  }
}
.card--color-block:hover::before {
  width: inherit;
}
.card--color-block:hover .color-block__title {
  text-decoration: underline;
}
.card--color-block:hover .color-block__hover-text {
  opacity: 1;
  visibility: visible;
}

.fade {
  opacity: 0;
  transition: opacity ease-in-out;
}

.fade.fade-show {
  opacity: 1;
}

.full-width-header-image {
  overflow: hidden;
  position: relative;
}
.full-width-header-image .full-width-header-image__container {
  position: relative;
}
.full-width-header-image .full-width-header-image__aspect-ratio {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-top: 37.2%;
}
.full-width-header-image img, .full-width-header-image video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.full-width-header-image .full-width-header-image__aspect-ratio {
  width: 100%;
}
.full-width-header-image .full-width-header-image__aspect-ratio video {
  height: auto;
  top: 0;
  width: 100%;
}
@supports (object-fit: none) {
  .full-width-header-image .full-width-header-image__aspect-ratio video {
    object-fit: none;
    aspect-ratio: 1920/719;
  }
}
.full-width-header-image .full-width-header-image__header-box {
  background-color: rgba(0, 0, 0, 0.5);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  font-size: 28px;
  line-height: 32px;
  font-weight: 900;
  font-weight: var(--lato--black);
  padding: 40px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
}

@media (min-width: 55rem) {
  .full-width-header-image {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: calc(100vw + 10px);
  }
  .full-width-header-image .full-width-header-image__position {
    display: -webkit-flex;
    display: flex;
    max-width: 70rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
  .full-width-header-image .full-width-header-image__position.full-width-header-image__position--left {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .full-width-header-image .full-width-header-image__position.full-width-header-image__position--center {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .full-width-header-image .full-width-header-image__position.full-width-header-image__position--right {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }
  .full-width-header-image .full-width-header-image__header-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .full-width-header-image .full-width-header-image__header-container .full-width-header-image__header-box {
    font-size: 38px;
    line-height: 43px;
    max-width: 30rem;
  }
}
.link-list {
  list-style: none;
}
.link-list li {
  margin-bottom: 0.5em;
}
.link-list a {
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  width: 100%;
  color: #5B6EB9;
  color: var(--color-purple-medium--subtle);
  font-weight: 700;
  text-decoration: none;
}
.link-list a:hover, .link-list a:focus, .link-list a:active {
  text-decoration: underline;
}
.link-list svg {
  -webkit-flex: 0 0 1.5em;
          flex: 0 0 1.5em;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  margin-bottom: 0;
  color: rgb(188,155,106);
  color: var(--color-brown--wood);
}
.link-list .media__content {
  padding-top: 0.15em;
}

.link-item {
  margin-top: -1.1em;
  margin-bottom: -2em;
}

.media {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media screen and (min-width: 65em) {
  .media {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

.media__figure--left {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 65em) {
  .media__figure--left {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 1em;
    margin-bottom: 0;
    text-align: unset;
  }
}

.media__figure--right {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-top: 1em;
  text-align: center;
}
@media screen and (min-width: 65em) {
  .media__figure--right {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-top: 0;
    margin-left: 1em;
    text-align: unset;
  }
}

.clipBoard {
  height: 15px;
  width: 15px;
}
@media screen and (max-width: 65em) {
  .clipBoard {
    display: none;
  }
}

.backButton {
  text-decoration: none;
  float: left;
}
.backButton p {
  color: black;
  display: inline;
  font-size: 1.25em;
}
.backButton svg {
  height: 25px;
  width: 25px;
  margin-right: 0.75em;
  margin-bottom: -5px;
  fill: #dcaf27;
}
@media screen and (max-width: 65em) {
  .backButton {
    text-align: center;
  }
}

.media__content {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
}

.media__content__calendar {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-top: 5px;
}

.mega-menu {
  background-color: rgb(243,241,235);
  background-color: var(--color-brown--bone);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: scroll;
  z-index: 17;
}
.mega-menu .mega-menu__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  padding-top: 1rem;
}
@media screen and (min-width: 65em) {
  .mega-menu .mega-menu__header .global-nav__logo {
    padding-top: 1.25rem;
  }
}
.mega-menu .controls__menu,
.mega-menu .controls__search {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
}
.mega-menu .controls__menu svg,
.mega-menu .controls__search svg {
  display: block;
  width: 2.25em;
  height: 2.25em;
}
@media screen and (min-width: 65em) {
  .mega-menu .controls__menu svg,
.mega-menu .controls__search svg {
    width: 4.5em;
    height: 4.5em;
  }
}
.mega-menu .controls__menu {
  font-size: 0.8em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.2;
}
@media screen and (min-width: 65em) {
  .mega-menu .controls__menu {
    display: none;
  }
}
@media screen and (min-width: 65em) {
  .mega-menu .controls__search {
    display: none;
  }
}
.mega-menu .controls__close {
  margin-left: 0.5em;
}
.mega-menu .controls__close .menus__close-label {
  float: left;
  font-size: 0.8em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.2;
}
.mega-menu .controls__close svg {
  fill: rgb(34,34,34);
  fill: var(--color-neutral--charcoal);
  width: 1.75rem;
  height: 1.75rem;
}
.mega-menu .controls__close:hover .menus__close-label, .mega-menu .controls__close:focus .menus__close-label {
  text-decoration: underline;
}
@media screen and (min-width: 65rem) {
  .mega-menu .controls__close {
    margin-top: -0.75em;
    margin-right: -1.5em;
    padding: 0.75em 1em;
  }
}

.mega-menu__content {
  max-height: calc(100vh - 120px);
  padding: 1.5em 1em 0;
}
.mega-menu__content .accordion {
  border: 0;
  font-weight: 400;
  font-weight: var(--lato--regular);
}
.mega-menu__content .accordion > div {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mega-menu__content .accordion > div:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mega-menu__content .accordion__title {
  background-color: transparent;
}
.mega-menu__content .accordion__action {
  padding: 0.75em 0;
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  font-size: 1.1em;
  font-weight: 700;
  font-weight: var(--lato--bold);
}
.mega-menu__content button.accordion__action {
  padding: 0;
}
.mega-menu__content .accordion__icon {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  border-radius: 50%;
}
.mega-menu__content .accordion__icon svg {
  fill: rgb(243,241,235);
  fill: var(--color-brown--bone);
  position: absolute;
}
.mega-menu__content .accordion__content {
  padding-left: 0;
}
.mega-menu__content .accordion__content a {
  display: inline-block;
  padding: 0.75em 0;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 1em;
  text-decoration: underline;
}
.mega-menu__content .academies-list {
  font-size: 2rem;
  font-weight: 400;
  font-weight: var(--lato--regular);
  margin-top: 1rem;
}
.mega-menu__content [class*=academies-list__item] {
  display: block;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  text-decoration: none;
}
.mega-menu__content .academies-list__item--sciences {
  color: rgb(220,175,39);
  color: var(--color-gold--medium);
}
.mega-menu__content .academies-list__item--engineering {
  color: rgb(49,84,112);
  color: var(--color-society--engineering);
}
.mega-menu__content .academies-list__item--medicine {
  color: rgb(93,55,84);
  color: var(--color-society--medicine);
}
.mega-menu__content .search-form {
  font-weight: 400;
  font-weight: var(--lato--regular);
}
.mega-menu__content .search-form label {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 0.75em;
}
@media screen and (min-width: 65em) {
  .mega-menu__content .search-form label {
    font-size: 1.2em;
  }
}
.mega-menu__content .search-form input {
  padding: 0.5em 2em 0.5em 0.25em;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 0 0 1px;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 1.2em;
  font-weight: 900;
  font-weight: var(--lato--black);
  /* stylelint-disable selector-no-vendor-prefix */
  /* Chrome/Opera/Safari */
  /* Firefox 19+ */
  /* IE 10+ */
  /* Firefox 18- */
  /* stylelint-enable selector-no-vendor-prefix */
}
.mega-menu__content .search-form input:focus {
  outline: none;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.15);
}
.mega-menu__content .search-form input::-webkit-input-placeholder {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-style: normal;
  font-weight: 900;
  font-weight: var(--lato--black);
  line-height: 1.2;
  opacity: 0.5;
}
.mega-menu__content .search-form input::-moz-placeholder {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-style: normal;
  font-weight: 900;
  font-weight: var(--lato--black);
  line-height: 1.2;
  opacity: 0.5;
}
.mega-menu__content .search-form input:-ms-input-placeholder {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-style: normal;
  font-weight: 900;
  font-weight: var(--lato--black);
  line-height: 1.2;
  opacity: 0.5;
}
.mega-menu__content .search-form input:-moz-placeholder {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-style: normal;
  font-weight: 900;
  font-weight: var(--lato--black);
  line-height: 1.2;
  opacity: 0.5;
}
@media screen and (min-width: 65em) {
  .mega-menu__content .search-form input {
    margin-bottom: 3em;
    padding-right: 2em;
    font-size: 1.5em;
  }
}
.mega-menu__content .search-form .search-form__submit {
  position: absolute;
  top: 1.3em;
  right: 0;
  padding: 0;
}
@media screen and (min-width: 65em) {
  .mega-menu__content .search-form .search-form__submit {
    top: 0.5em;
  }
}
.mega-menu__content .search-form svg {
  width: 2em;
  height: 2em;
  fill: rgb(33,23,71);
  fill: var(--color-purple-dark);
}
@media screen and (min-width: 65em) {
  .mega-menu__content .search-form svg {
    width: 4em;
    height: 4em;
  }
}
@media screen and (min-width: 65em) {
  .mega-menu__content .search-form {
    padding: 5em 8.5em;
  }
}
.mega-menu__content .search-form__container {
  position: relative;
  max-width: 70em;
  margin: 0 auto;
}

.popular-searches {
  max-width: 70em;
  margin: 0 auto;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

.popular-searches__label {
  margin-bottom: 1em;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 0.9em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  opacity: 0.7;
}

.popular-searches__list a {
  display: block;
  padding-top: 0.35em;
  padding-bottom: 0.35em;
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  line-height: 1.2;
  text-decoration: none;
}
.popular-searches__list a:hover, .popular-searches__list a:focus {
  text-decoration: underline;
}

.mega-menu__footer {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 65em) {
  .popular-searches__label {
    font-size: 1.25em;
  }

  @supports (display: grid) {
    .popular-searches__list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(auto, 170px));
      grid-template-rows: repeat(2, minmax(-webkit-min-content, -webkit-max-content));
      grid-template-rows: repeat(2, minmax(min-content, max-content));
      grid-gap: 1em;
    }
  }
  .popular-searches__list a {
    margin-bottom: 1em;
    padding: 0;
    font-size: 1em;
    line-height: 1.2;
  }
}
.modal {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 21;
}
@media screen and (max-height: 45em) {
  .modal {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
}

body.modal-is-open {
  overflow: hidden;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.35);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal__container {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  box-shadow: 0 0 10px rgba(34,34,34,.25);
  box-shadow: 0 0 10px var(--box-shadow--charcoal);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  max-height: 75vh;
  max-width: 35em;
  min-height: 600px;
  position: relative;
}
@media screen and (max-height: 45em) {
  .modal__container {
    top: 5em;
  }
}
.modal__container.wide {
  min-width: 100vw;
  min-height: 0;
  max-height: none;
}
@media screen and (min-width: 65rem) {
  .modal__container.wide {
    min-width: 65vw;
  }
}
.modal__container.wide .modal__content {
  overflow-y: hidden;
  width: 100%;
  margin: 1rem auto;
}

.low_profile_modal_container {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  box-shadow: 0 0 10px rgba(34,34,34,.25);
  box-shadow: 0 0 10px var(--box-shadow--charcoal);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-height: 45em) {
  .low_profile_modal_container {
    top: 1em;
  }
}

.low_profile_button {
  position: absolute;
  right: 0.75em;
  top: 0.25em;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
.modal__container {
    height: 485px;
  }

  .modal__container iframe {
    height: 450px !important;
  }
}
.modal__header {
  background-color: rgb(243,241,235);
  background-color: var(--color-brown--bone);
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 1em;
}
.modal__header h2 {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  white-space: break-word;
}
.modal__header .intro {
  font-size: 1em;
}
@media screen and (min-width: 45em) {
  .modal__header .intro {
    font-size: 1.3em;
  }
}
@media screen and (min-width: 45em) {
  .modal__header {
    padding: 1em 2em;
  }
}
.modal__header.empty {
  padding: 0;
}

.modal__close {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  cursor: pointer;
  height: 60px;
  padding: 0;
  position: absolute;
  top: -60px;
  right: 0;
  width: 60px;
}
.modal__close:hover, .modal__close:focus {
  background-color: rgb(65,72,194);
  background-color: var(--color-purple-medium);
}
.modal__close svg {
  height: 100%;
  width: 100%;
}

.low__profile__modal__close {
  cursor: pointer;
  height: 60px;
  padding: 0;
  position: absolute;
  right: 0;
}
.low__profile__modal__close:hover, .low__profile__modal__close:focus {
  background-color: var(--color-blue--imperial);
}
.low__profile__modal__close svg {
  height: 100%;
  width: 100%;
}

.print-bios {
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  cursor: pointer;
}
.print-bios svg {
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
}
.print-bios:hover, .print-bios:focus, .print-bios:active {
  color: var(--color-netural--jet);
  text-decoration: underline;
}

.modal__content {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  margin: 1em 0;
  overflow: auto;
  padding: 0 1em;
}
@media screen and (min-width: 45em) {
  .modal__content {
    padding: 0 2em;
  }
}

.modal__content__low__profile {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  overflow: hidden;
}

.modal__actions {
  -webkit-align-content: flex-end;
          align-content: flex-end;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.modal__actions button {
  -webkit-align-items: center;
          align-items: center;
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 1 100%;
          flex: 0 1 100%;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  padding: 1rem;
  text-align: left;
}
.modal__actions button > div {
  -webkit-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.modal__actions button > div p:last-child {
  font-weight: 700;
  font-weight: var(--lato--bold);
  letter-spacing: 0;
  text-transform: none;
}
.modal__actions button:first-of-type {
  border-bottom: 1px solid rgb(255,255,255);
  border-bottom: 1px solid var(--color-neutral--white);
}
@media screen and (min-width: 45em) {
  .modal__actions button:first-of-type {
    border-right: 1px solid rgb(255,255,255);
    border-right: 1px solid var(--color-neutral--white);
    border-bottom: 0;
  }
}
.modal__actions button:last-of-type svg {
  margin-left: auto;
}
.modal__actions button:hover, .modal__actions button:focus {
  background-color: rgb(65,72,194);
  background-color: var(--color-purple-medium);
  text-decoration: none;
}
.modal__actions button:hover p:nth-of-type(2), .modal__actions button:focus p:nth-of-type(2) {
  text-decoration: underline;
}
@media screen and (min-width: 45em) {
  .modal__actions button {
    -webkit-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .modal__actions button:only-child {
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
    border: none;
  }
}
.modal__actions .modal__action--prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.modal__actions .modal__action--close {
  text-align: right;
  font-size: 1em;
}
.modal__actions .modal__action--close div {
  padding: 0px;
}
@media screen and (min-width: 45em) {
  .modal__actions {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

.global-nav__links {
  display: none;
  opacity: 1;
  transition: opacity 0.15s, -webkit-transform 0.15s;
  transition: opacity 0.15s, transform 0.15s;
  transition: opacity 0.15s, transform 0.15s, -webkit-transform 0.15s;
}
.global-nav--local .global-nav__links {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.global-nav--local.menu-is-hidden .global-nav__links {
  opacity: 0;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
}
.global-nav__links ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  margin-top: 1rem;
}
.global-nav__links li:hover .global-nav__link > span::before,
.global-nav__links li:focus-within .global-nav__link > span::before,
.global-nav__links .global-nav__link.is-active > span::before,
.global-nav__links .global-nav__link:hover > span::before,
.global-nav__links .global-nav__link:focus > span::before {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
}
.global-nav__links li:hover .global-nav__link > span::before::after,
.global-nav__links li:focus-within .global-nav__link > span::before::after,
.global-nav__links .global-nav__link.is-active > span::before::after,
.global-nav__links .global-nav__link:hover > span::before::after,
.global-nav__links .global-nav__link:focus > span::before::after {
  opacity: 1;
}
@media screen and (min-width: 65em) {
  .global-nav__links {
    display: block;
  }
  .global-nav__links > ul > li:last-of-type .global-nav__link {
    margin-right: -1.25em;
  }
}

.global-nav__link {
  position: relative;
  display: block;
  padding: 0.75em 1.5em 0.5em;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  border-bottom: 5px solid transparent;
  font-size: 0.885rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
  text-decoration: none;
  transition: color 0.15s;
}
.global-nav__link > span {
  position: relative;
}
.global-nav__link > span::before {
  content: "";
  position: absolute;
  bottom: -0.5em;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: transparent;
  transition: background-color 0.15s;
}

.global-nav__dropdown {
  position: absolute;
  top: calc(100% + 1em);
  left: 50%;
  display: none;
  width: 600px;
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  box-shadow: 0 5px 15px rgba(34,34,34,.25);
  box-shadow: 0 5px 15px var(--box-shadow--charcoal);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
}
.global-nav__dropdown::before {
  content: "";
  position: absolute;
  top: -1em;
  left: 0;
  display: block;
  width: 100%;
  height: 1em;
}
.global-nav__dropdown .dropdown__left {
  position: relative;
  min-height: 260px;
  width: 40%;
  padding: 1.5rem;
  background-image: linear-gradient(to bottom, hsl(246.86, 20.23%, 33.92%), hsl(246.95, 20.59%, 33.45%) 5.79%, hsl(247.11, 21.23%, 32.65%) 10.88%, hsl(247.34, 22.19%, 31.56%) 15.63%, hsl(247.64, 23.51%, 30.23%) 20.37%, hsl(248.02, 25.27%, 28.69%) 25.46%, hsl(248.48, 27.57%, 27%) 31.25%, hsl(249.04, 30.54%, 25.2%) 38.08%, hsl(249.7, 34.33%, 23.37%) 46.3%, hsl(250.49, 38.97%, 21.61%) 56.25%, hsl(251.36, 44.19%, 20.04%) 68.29%, hsl(252.15, 48.95%, 18.88%) 82.75%, hsl(252.5, 51.06%, 18.43%));
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.global-nav__dropdown .dropdown__left a {
  display: block;
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  font-weight: 400;
  font-weight: var(--lato--regular);
  transition: color 0.15s;
}
.global-nav__dropdown .dropdown__left a:hover, .global-nav__dropdown .dropdown__left a:focus, .global-nav__dropdown .dropdown__left a:active {
  color: rgb(254,218,108);
  color: var(--color-gold-light);
}
.global-nav__dropdown .dropdown__left ul {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.global-nav__dropdown .dropdown__left li a {
  font-size: 0.885rem;
  padding: 0.5em 0;
  line-height: 1.4;
}
.global-nav__dropdown .dropdown__left--default {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-color: rgb(243,241,235);
  background-color: var(--color-brown--bone);
}
.global-nav__dropdown .dropdown__left--default img {
  width: 100%;
  height: auto;
  /* stylelint-disable max-nesting-depth */
  /* stylelint-enable max-nesting-depth */
}
@supports (object-fit: cover) {
  .global-nav__dropdown .dropdown__left--default img {
    height: 100%;
    object-fit: cover;
  }
}
.global-nav__dropdown .dropdown__right {
  width: 60%;
  padding: 1.5rem;
  font-size: 0.775rem;
}
.global-nav__dropdown .dropdown__right .button {
  margin-top: 2em;
  text-shadow: none;
}
.global-nav__dropdown .dropdown__right a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
  transition: color 0.15s;
}
.global-nav__dropdown .dropdown__right a:hover, .global-nav__dropdown .dropdown__right a:focus {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: underline;
}

.rm-dropdown:hover::after, .rm-dropdown:focus::after {
  visibility: hidden;
}

.has-dropdown {
  position: relative;
}
.has-dropdown::after {
  content: "";
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  width: 26px;
  height: 15px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAPCAYAAAD6Ud/mAAAABGdBTUEAALGPC/xhBQAAAldJREFUOBGtkz+oGkEQxu92NV5C0IioBEVFEQsDTzAQEAQlVYrUFinSCKnT2KpFbF+hTbBJoUUKoxIkrZVgrzaKtqIoqPjnqfEyczCi4qFFDo7dnZn9frvf7oqCyifLsniaSqfTZ2PKJZNJmfqiKB77FKP26uRTCAHa7bY4Ho/P6s1ms+z3++V7YGcTiU4ghBBgsViIm81GfHp6EnU6nbJySZJkt9t9uAemIXFqr0FgJwwBAGLdbvcr1nq93keIHfr9vgB5BB9oZ6hxaSMjALYEoRhahZDlcskMBgNvtVqfYRff8Mc+xiaTCcfd1ut1RjZf0zqCTiE4AScSRK/X81qt9hGEc7QI7GMMcwRDm9VgCugWpFqthq1W6w+AcAJhH2OYM5lMDGFgI1ODsUsIFqIVaBeutlgsPjidzp8gLJ1AqCthrlAoPCBsNpsxNdjROtwyQrAQV4eQXC7ngRv1Cw5WT8qXLeZ8Pl85m8168MzUYDyVSim+EgQLjUYjz2Qyr6PR6B/GmP1S/HIMsJc2m+2Dw+EoNxqNJWgI6/Va2O/3QqfTESKRiMChSPEVd4IQXFU8HjfGYrHfAPFdiqqNQeeVx+OJwlGUer3eZjqdChqNRoYjUGAcXrfiK0GA/iKRSJQ452/VRNXiALMGAoF3g8GgBDd2PxwORYJxi8XC5/M5vhUOr1ybz+cLWq32vZrYrTi44AiHw28qlUp5NBoddrudMkUMBoNaOvxms/kdHuOnW2L35LfbbSEUCn0Bp/7CcRwEuFXP7Hb789Vq9Qj+/tcPNV0ul4SMf+6gwxxjOvs3AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
}
.has-dropdown:hover::after, .has-dropdown:focus::after {
  visibility: visible;
}
.has-dropdown:hover .global-nav__dropdown {
  display: -webkit-flex;
  display: flex;
}
.has-dropdown:focus-within .global-nav__dropdown {
  display: -webkit-flex;
  display: flex;
}
.has-dropdown:nth-last-of-type(-n+3) .global-nav__dropdown {
  left: auto;
  -webkit-transform: none;
          transform: none;
}
.has-dropdown:nth-last-of-type(3) .global-nav__dropdown {
  right: -200%;
}
.has-dropdown:nth-last-of-type(2) .global-nav__dropdown {
  right: -90%;
}
.has-dropdown:last-of-type .global-nav__dropdown {
  right: 5%;
}

.site-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-image: linear-gradient(to bottom, #f3f1eb 0, white 500px);
}

.shift .shift-container {
  position: relative;
  transition: all ease-in-out;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.social-share {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.social-share .social-share--title {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  font-size: 0.7rem;
  font-weight: 900;
  font-weight: var(--lato--black);
  letter-spacing: 0.1rem;
  margin-right: 0.6rem;
  text-transform: uppercase;
}
.social-share svg {
  fill: rgb(65,72,194);
  fill: var(--color-purple-medium);
  height: 1.4rem;
  margin: 0 0.1rem;
  width: 1.4rem;
}

.tabs-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column;
          flex-flow: column;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 65em) {
  .tabs-list {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
.tabs-list__tab {
  line-height: 1.3;
  margin-bottom: 0.2em;
}

@media screen and (min-width: 65em) {
  .tabs-list__tab {
    -webkit-flex: 1 1 12em;
            flex: 1 1 12em;
    margin-bottom: 0;
  }
  .tabs-list__tab + .tabs-list__tab {
    margin-left: 0.2em;
  }
}
.tab-link {
  -webkit-align-items: center;
          align-items: center;
  background-color: rgb(243,241,235);
  background-color: var(--color-brown--bone);
  border: 1px solid rgb(243,241,235);
  border: 1px solid var(--color-brown--bone);
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  cursor: default;
  display: -webkit-flex;
  display: flex;
  font-size: 0.75em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  height: 100%;
  -webkit-justify-content: center;
          justify-content: center;
  letter-spacing: 1px;
  padding: 1.25em 1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.tab-link:hover, .tab-link:focus, .tab-link[aria-selected=true] {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  border-color: rgb(199,201,199);
  border-color: var(--color-neutral--gray-medium);
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  text-decoration: underline;
}
.tab-link[aria-selected=true] {
  box-shadow: 0 3px 0 -1px rgb(255,255,255);
  box-shadow: 0 3px 0 -1px var(--color-neutral--white);
}

@media screen and (min-width: 65em) {
  .tab-link {
    border-bottom-width: 0;
  }
}
.tab-content {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  border: 1px solid rgb(199,201,199);
  border: 1px solid var(--color-neutral--gray-medium);
  padding: 1em;
  overflow: auto;
}

.tabs-list__tab--featured {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
}

.tab-link--featured {
  cursor: default;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  padding: 1em 1em 1em 1.5em;
  position: relative;
  text-decoration: none;
}
.tab-link--featured span {
  display: block;
}
.tab-link--featured::before {
  content: "";
  background-color: rgb(188,155,106);
  background-color: var(--color-brown--wood);
  height: 105%;
  position: absolute;
  bottom: -25px;
  left: 10px;
  transition: height 0.35s cubic-bezier(0.86, 0, 0.07, 1), background-color 0.15s;
  width: 1px;
  z-index: 19;
}
.tab-link--featured::after {
  content: "";
  border-bottom: 1px solid rgb(188,155,106);
  border-bottom: 1px solid var(--color-brown--wood);
  border-left: 1px solid rgb(188,155,106);
  border-left: 1px solid var(--color-brown--wood);
  height: 0.75em;
  position: absolute;
  bottom: -24px;
  left: 4px;
  opacity: 1;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  transition: border-color 0.15s, opacity 0.15s;
  width: 0.75em;
  z-index: 19;
}
.tab-link--featured .tab-link__title {
  color: rgb(188,155,106);
  color: var(--color-brown--wood);
  font-size: 1.25rem;
  font-size: var(--type-size--3);
  font-weight: 700;
  font-weight: var(--lato--bold);
  page-break-inside: avoid !important;
}

@media screen and (min-width: 65em) {
  .tab-link--featured {
    height: 100%;
    padding: 2.5em 1em 1em 3em;
  }
  .tab-link--featured::before {
    background-color: rgb(221,213,199);
    background-color: var(--color-brown--sand);
    height: calc(100% - 2em);
    top: 2em;
    left: 26px;
  }
  .tab-link--featured::after {
    border-bottom: 1px solid rgb(221,213,199);
    border-bottom: 1px solid var(--color-brown--sand);
    border-left: 1px solid rgb(221,213,199);
    border-left: 1px solid var(--color-brown--sand);
    opacity: 0;
    bottom: -1.95em;
    left: 20px;
  }
  .tab-link--featured:hover::before, .tab-link--featured:focus::before, .tab-link--featured[aria-selected=true]::before {
    background-color: rgb(188,155,106);
    background-color: var(--color-brown--wood);
    height: 100%;
  }
  .tab-link--featured:hover::after, .tab-link--featured:focus::after, .tab-link--featured[aria-selected=true]::after {
    border-color: rgb(188,155,106);
    border-color: var(--color-brown--wood);
    opacity: 1;
    transition: border-color 0.15s 0.25s, opacity 0.15s 0.25s;
  }
  .tab-link--featured .tab-link__title {
    color: rgb(34,34,34);
    color: var(--color-neutral--charcoal);
    font-size: 1.5rem;
    font-size: var(--type-size--2);
    transition: color 0.15s;
  }
  .tab-link--featured:hover .tab-link__title, .tab-link--featured:focus .tab-link__title, .tab-link--featured[aria-selected=true] .tab-link__title {
    color: rgb(188,155,106);
    color: var(--color-brown--wood);
  }
}
.tab-link__label {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 0.625em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  letter-spacing: 1px;
  margin-bottom: 1em;
  text-transform: uppercase;
}

.tab-content--featured {
  padding: 1em;
}

@media screen and (min-width: 65em) {
  .tab-content--featured {
    padding: 3.25em 1em 1em;
  }
}
@media print {
  .tabs.tabs--featured * {
    position: static;
    margin-left: 0;
  }

  .section {
    display: block !important;
    margin-top: 0 !important;
  }

  ul.tabs-list {
    display: none !important;
  }

  .tabs-list__tab--featured {
    page-break-inside: avoid !important;
    page-break-after: always;
  }

  .tab-link__title {
    display: block;
    page-break-inside: avoid !important;
  }

  .tab-link--featured,
.tab-item {
    display: block !important;
    page-break-inside: avoid !important;
  }
}
.team-member {
  display: block;
  margin-bottom: 1rem;
  text-align: left;
}
.team-member.team-member--trigger {
  text-align: left;
  vertical-align: top;
}
.team-member.team-member--trigger:hover .team-member__name, .team-member.team-member--trigger:focus .team-member__name {
  text-decoration: underline;
}
.team-member .team-member__name {
  font-size: 0.9em;
  font-weight: 900;
  font-weight: var(--lato--black);
  line-height: 1.25;
  white-space: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.team-member .team-member__role {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  font-weight: 700;
  font-weight: var(--lato--bold);
}
.team-member .team-member__description {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: .8em;
  font-size: var(--type-size--small);
  margin-top: 0.625rem;
  margin-bottom: 0.2rem;
}
.team-member .team-member__email {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  font-size: .8em;
  font-size: var(--type-size--small);
  text-decoration: none;
}
.team-member .team-member__email:hover {
  text-decoration: underline;
}

@media screen and (min-width: 45em) {
  .team-member {
    -webkit-flex: 0 1 20%;
            flex: 0 1 20%;
  }
  .team-member:not(:nth-of-type(4n)) {
    margin: 0 6.667% 6.667% 0;
  }
  @supports (display: grid) {
    .team-member {
      -webkit-flex: 0 1;
              flex: 0 1;
      margin: 0;
    }
  }
}
.toolbar {
  display: block;
  border: 1px solid rgb(221,213,199);
  border: 1px solid var(--color-brown--sand);
  text-align: right;
}
.toolbar a {
  display: inline-block;
  padding: 1rem;
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.toolbar a:hover, .toolbar a:focus, .toolbar a:active {
  text-decoration: underline;
}

.announcements__list {
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  margin: 0 -1em;
}
@media screen and (min-width: 65rem) {
  .announcements__list {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.announcement {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.announcement__title a {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
}

.announcement__summary,
.announcement__date {
  font-size: 0.85rem;
}
@media screen and (min-width: 65em) {
  .announcement__summary,
.announcement__date {
    font-size: 0.775rem;
  }
}

.announcement__date {
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
  font-weight: 700;
  font-weight: var(--lato--bold);
}

.bucket {
  box-shadow: 0 0 10px #d6d6d8;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-justify-content: spcae-between;
          justify-content: spcae-between;
  padding: 1rem;
}
.bucket > h2, .bucket > .t2 {
  margin-bottom: 1.5rem;
}
.bucket > div {
  margin-bottom: 1rem;
}
.bucket > div:last-child {
  margin-bottom: 0;
}
.bucket .bucket--content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.bucket .media__content {
  line-height: 1.3;
}
.bucket.dark {
  background: rgb(33,23,71);
  background: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  max-width: 100%;
  /* Filmstrip */
  /* Sidebar Signup Form */
  /* Card Styles */
}
.bucket.dark *,
.bucket.dark .viewMoreLink a,
.bucket.dark .card .card__content .card__title a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.bucket.dark .button--secondary {
  border: 1px solid rgb(255,255,255);
  border: 1px solid var(--color-neutral--white);
}
.bucket.dark input {
  color: #000;
}
.bucket.dark a:link,
.bucket.dark a:visited {
  text-decoration: underline;
}
.bucket.dark a:active,
.bucket.dark a:hover {
  text-decoration: none;
}
.bucket.dark .button.button--primary {
  background-color: rgb(73,69,104);
  background-color: var(--color-purple-soft);
}
.bucket.dark .button.button--primary:hover,
.bucket.dark .button.button--primary:active,
.bucket.dark .button.button--primary:focus {
  background: rgb(220,175,39);
  background: var(--color-gold--medium);
}
.bucket.dark .publication--filmstrip .meta__title,
.bucket.dark .publication__overview .meta__date {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.bucket.dark .sidebar__widget--newsletterForm .t5.mb1 {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.bucket.dark .card {
  border-bottom: 2px solid rgb(115,83,29);
  border-bottom: 2px solid var(--color-society--sciences);
}
.bucket.dark .card .card__title a:hover,
.bucket.dark .card .card__title a:visited,
.bucket.dark .card .card__title a:active,
.bucket.dark .card .card__title a.hovered {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.bucket.dark .card .card__actions {
  border-color: rgba(255, 255, 255, 0.25);
}
.bucket.dark .card .card__actions a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.bucket.dark .uw-columns-first-in-row,
.bucket.dark .uw-columns-last-in-row {
  border-bottom: 2px solid rgb(115,83,29);
  border-bottom: 2px solid var(--color-society--sciences);
}
@media screen and (min-width: 40rem) {
  .bucket.dark .uw-columns-first-in-row,
.bucket.dark .uw-columns-last-in-row {
    border: none;
  }
}
.bucket .viewMoreLink {
  border-top: 1px solid rgb(221,213,199);
  border-top: 1px solid var(--color-brown--sand);
  text-align: right;
}
@media screen and (max-width: 65rem) {
  .bucket .viewMoreLink {
    padding: 1em;
  }
}
.bucket .viewMoreLink a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.bucket .viewMoreLink a:hover, .bucket .viewMoreLink a:focus, .bucket .viewMoreLink a:active {
  text-decoration: underline;
}
.bucket .viewMoreLink svg {
  float: right;
  height: 1.5em;
  margin-bottom: 0;
  margin-top: -5px;
  width: 1.5rem;
}
.bucket .emptyBucket {
  border-top: 1px solid #ddd5c7;
  padding-top: 0.5rem;
  text-align: center;
}
.bucket .emptyBucket > *:not(svg) {
  color: #666;
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto;
  width: 75%;
}
.bucket .emptyBucket svg {
  fill: #4148c2;
  width: 4rem;
  height: 4rem;
  margin: 1rem 0;
}
.bucket .emptyBucket svg g {
  stroke: #4148c2;
}

.call-to-action {
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, cover;
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}
.call-to-action ol,
.call-to-action ul {
  margin-bottom: 1rem;
  list-style-position: outside;
  padding-left: 1.65em;
}
.call-to-action ol {
  list-style-type: decimal;
}
.call-to-action ul {
  list-style-type: disc;
}
.call-to-action a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  text-decoration: underline;
}
.call-to-action a:hover, .call-to-action a:focus, .call-to-action a:active {
  color: rgb(254,218,108);
  color: var(--color-gold-light);
}
.call-to-action .call-to-action__label {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  text-transform: uppercase;
}
.call-to-action .call-to-action__title {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.call-to-action .button.button--secondary.button--reverse {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  border: none;
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
}
@media screen and (min-width: 65em) {
  .call-to-action {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    text-align: left;
  }
}

@media screen and (min-width: 65em) {
  .call-to-action__left {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.call-to-action__right {
  padding-top: 2rem;
}
@media screen and (min-width: 65em) {
  .call-to-action__right {
    margin-left: auto;
    padding-top: 0;
  }
}

.call-to-action--huge a {
  color: inherit;
  text-decoration: underline;
}
.call-to-action--huge a:hover, .call-to-action--huge a:active, .call-to-action--huge a:focus {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
}

.call-to-action__content {
  font-size: 0.9em;
}

.committee {
  width: 100%;
}

.committee__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media screen and (max-width: 65em) {
  .committee__header {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.committee__header .print-bios {
  font-size: 0.85em;
}
@media screen and (max-width: 65em) {
  .committee__header .print-bios {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.committee__header .print-bios svg {
  width: 2em;
  height: 2em;
}
.committee__header button {
  color: #5B6EB9;
  color: var(--color-purple-medium--subtle);
  text-decoration: none;
}
.committee__header button:hover, .committee__header button:active, .committee__header button:focus {
  text-decoration: underline;
}

@media screen and (min-width: 45em), print {
  .committee__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
  @supports (display: grid) {
    .committee__list {
      display: grid;
      grid-template-columns: repeat(4, calc(25% - 2em));
      grid-gap: 2em;
      -webkit-align-items: start;
              align-items: start;
    }
  }
}
@media print {
  .committee__header .print-bios {
    display: none;
  }
}
.contact__box {
  border: 1px solid rgb(188,155,106);
  border: 1px solid var(--color-brown--wood);
  font-weight: 700;
  font-weight: var(--lato--bold);
  margin: 1rem 0;
  padding: 1rem;
  width: 100%;
}
.contact__box li {
  line-height: 1.3;
}
.contact__box li + li {
  margin-top: 0.5em;
}
.contact__box .contact__box--title {
  font-weight: 700;
  font-weight: var(--lato--bold);
}
.contact__box .contact__box--label {
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", sans-serif;
  font-family: var(--type-font--lato);
  font-size: 0.556rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.contact__box .contact__box--email {
  word-wrap: break-word;
  width: 70%;
}
@media screen and (min-width: 65em) {
  .contact__box .contact__box--email {
    width: auto;
  }
}
.contact__box + .contact__box {
  margin-left: 0;
}

.contact__card {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.contact__card p {
  font-weight: 700;
  font-weight: var(--lato--bold);
}
.contact__card a {
  text-decoration: none;
}
.contact__card > div {
  margin-bottom: 1rem;
  margin-right: 3rem;
}
.contact__card > div:last-child {
  margin-bottom: 0;
}
.contact__card.contact__card {
  margin-bottom: 1rem;
}
.contact__card .contact__box--label {
  margin-bottom: 0;
}
.contact__card .icon {
  margin-right: 1rem;
}
.contact__card .icon svg {
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
}

.contact--row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.contact--row .contact__box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-flex: 1 1;
          flex: 1 1;
  -webkit-flex-direction: column;
          flex-direction: column;
  margin-top: 0;
}

@media screen and (min-width: 45em), print {
  .contact__card {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
  .contact__card > div {
    margin-bottom: 0;
  }

  .contact--row {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
  .contact--row .contact__box {
    margin-bottom: 1rem;
    margin-top: 0;
  }
  .contact--row .contact__box + .contact__box {
    margin-left: 1em;
  }
}
.page-header {
  margin-bottom: 2em;
  padding: 1.5rem 0 0;
  overflow: hidden;
}
.page-header.tan {
  background-color: rgb(241,239,232);
  background-color: var(--color-brown--tan);
  border-bottom: 1px solid rgb(225,218,206);
  border-bottom: 1px solid var(--color-brown--merino);
}
.page-header.blue {
  background-color: #1c143d;
  background-color: var(--color-purple-dark--subtle);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.page-header.blue .page-header__title {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.page-header.blue .social-share span {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.page-header.blue .social-share svg {
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
}
.page-header .page-header__title {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 1.78rem;
  font-weight: 900;
  font-weight: var(--lato--black);
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.page-header .social-share {
  margin: 0 0 1.2rem;
}
.page-header .preNavContentSlot {
  margin-bottom: 3rem;
}
.page-header .headerContentSlot {
  margin: 0 0 2rem;
}
.page-header .headerContentSlot.aspect-ratio {
  overflow: hidden;
  padding-top: 23.8%;
  position: relative;
}
.page-header .headerContentSlot.headerContentSlot--full-width-image {
  margin-bottom: 0;
}
.page-header .headerContentSlot img {
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 45rem) {
  .page-header {
    padding: 3rem 1rem 0;
  }
  .page-header .social-share {
    margin: 0.4rem 0 0;
  }
}

.page-header > .container {
  max-width: 68rem;
}
@media screen and (min-width: 45em) {
  .page-header > .container {
    padding-left: 0;
  }
}
.page-header > .container .page-header__top {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media (max-width: 45rem) {
  .page-header > .container .page-header__top {
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.page-header > .container .page-header__top-content {
  max-width: 75%;
}
@media (max-width: 45rem) {
  .page-header > .container .page-header__top-content {
    max-width: 100%;
  }
}
.page-header > .container .page-header__description {
  font-weight: 400;
  font-weight: var(--lato--regular);
  line-height: 1.75;
  margin-bottom: 1rem;
}
@media (min-width: 45rem) {
  .page-header > .container .page-header__description {
    margin-bottom: 2rem;
  }
}
.page-header > .container .page-header__image {
  margin-bottom: 1em;
  overflow: hidden;
  position: relative;
}
.page-header > .container .page-header__image .aspect-ratio {
  padding-bottom: 50%;
}
.page-header > .container .page-header__image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@supports (object-fit: cover) {
  .page-header > .container .page-header__image img {
    object-fit: cover;
  }
}
@supports (object-fit: cover) {
  .page-header > .container .page-header__image {
    height: auto;
  }
}
.page-header > .container .page-header__intro {
  margin-bottom: 0.8rem;
}

@media (min-width: 45rem) {
  .page-header > .container .page-header__image .aspect-ratio {
    padding-bottom: 24.2%;
  }
}
.events .event__day {
  border-top: 1px solid rgb(254,218,108);
  border-top: 1px solid var(--color-gold-light);
  position: relative;
}
.events .event__day + .event__day {
  margin-top: 1em;
}
.events .event__day .event__day-marker {
  -webkit-align-items: center;
          align-items: center;
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: 60px;
  -webkit-justify-content: center;
          justify-content: center;
  position: absolute;
  top: -1px;
  right: 0;
  width: 60px;
}
.events .event__day .event__day-marker p {
  line-height: 1;
  margin: 0;
}
.events .event__day .event {
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  padding-top: 1em;
  padding-bottom: 1em;
}
.events .event__day .event + .event {
  border-top: 1px solid rgb(221,213,199);
  border-top: 1px solid var(--color-brown--sand);
}
.events .event__day .event .event__metadata {
  margin-bottom: 1.5em;
}
.events .event__day .event .event__date {
  color: rgb(51,51,51);
  color: var(--color-neutral--jet);
}
.events .event__day .event .event__title a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  font-size: 1em;
  font-weight: 400;
  font-weight: var(--lato--regular);
  line-height: 1.45;
  text-decoration: none;
}
.events .event__day .event .event__title a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 55em) {
  div:not(.bucket--content) > .events .event__day .event {
    -webkit-flex-flow: row nowrap;
            flex-flow: row nowrap;
    margin-right: 5em;
    padding-bottom: 1.5em;
    padding-top: 1.5em;
  }
  div:not(.bucket--content) > .events .event__day .event .event__metadata {
    -webkit-flex: 0 0 150px;
            flex: 0 0 150px;
    margin-bottom: 0;
    margin-right: 1em;
  }
  div:not(.bucket--content) > .events .event__day .event .event__title a {
    font-size: 1.125em;
  }
}
@media screen and (min-width: 65em) {
  .filterLite {
    display: -webkit-flex;
    display: flex;
  }
}

.filterLite__filter {
  width: 100%;
}
.filterLite__filter .input-container {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 65em) {
  .filterLite__filter .input-container {
    border-right: 1px solid #e6e6e6;
    padding-right: 0.75rem;
  }
}
@media screen and (min-width: 65em) {
  .filterLite__filter {
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
  }
}

.filterLite__list a {
  display: block;
  border-bottom: 1px solid #979797;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  text-decoration: none;
  font-weight: 700;
}
@media screen and (min-width: 65em) {
  .filterLite__list {
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
    padding-left: 2rem;
  }
}

.filmstrip .slider .VueCarousel-navigation {
  position: absolute;
  top: 30%;
  width: 100%;
}
.filmstrip .slider .VueCarousel-navigation button {
  background: rgba(0, 0, 0, 0.25);
  -webkit-transform: none;
          transform: none;
  width: 2rem;
}
.filmstrip .slider .VueCarousel-navigation button svg {
  width: 50px;
  position: relative;
  top: -0.4em;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}
.filmstrip .slider .VueCarousel-navigation .VueCarousel-navigation-prev {
  left: 4.1rem;
}
@media screen and (min-width: 55em) {
  .filmstrip .slider .VueCarousel-navigation .VueCarousel-navigation-prev {
    left: 0.7rem;
  }
}
.filmstrip .slider .VueCarousel-navigation .VueCarousel-navigation-next {
  right: 4.1rem;
}
@media screen and (min-width: 55em) {
  .filmstrip .slider .VueCarousel-navigation .VueCarousel-navigation-next {
    right: 0.7rem;
  }
}

.global-footer {
  background-color: rgb(102,102,102);
  background-color: var(--color-neutral--granite);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  font-weight: 700;
  font-weight: var(--lato--bold);
  z-index: 16;
}
.global-footer .container {
  padding: 0;
}
.global-footer a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
@media screen and (min-width: 65rem), print {
  .global-footer .container {
    display: -webkit-flex;
    display: flex;
  }
}

.global-footer__logo {
  display: block;
  max-width: 235px;
  margin: 2rem auto 0;
  width: 233px;
}
@media screen and (min-width: 65em), print {
  .global-footer__logo {
    margin-bottom: 1.5em;
  }
}
@media print {
  .global-footer__logo {
    max-width: 175px;
    width: 175px;
  }
}

.global-footer__orgs {
  -webkit-align-items: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  display: -webkit-flex;
  display: flex;
  font-size: .8em;
  font-size: var(--type-size--small);
  -webkit-flex-direction: column;
          flex-direction: column;
  letter-spacing: 0.1rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.global-footer__orgs::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: calc(100vw - 70rem);
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 65em), print {
  .global-footer__orgs {
    -webkit-flex: 0 0 340px;
            flex: 0 0 340px;
  }
  .global-footer__orgs + div {
    -webkit-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
@media print {
  .global-footer__orgs {
    padding-bottom: 2rem;
  }
}

.global-footer__org {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  position: relative;
  text-align: left;
  text-decoration: none;
}
.global-footer__org:hover, .global-footer__org:focus {
  text-decoration: underline;
}
.global-footer__org img {
  width: 1.5em;
  height: 1.5em;
  margin-right: 5px;
}
@media screen and (min-width: 45em), print {
  .global-footer__org {
    font-size: .625rem;
    font-size: var(--type-size--6);
  }
}

.global-footer__links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 2rem 1rem 2rem 2rem;
}

.global-footer__nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 2em;
  text-align: center;
}
.global-footer__nav a {
  display: block;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  font-size: 0.9rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.global-footer__nav a:hover, .global-footer__nav a:focus {
  text-decoration: underline;
}
@media screen and (min-width: 65em) {
  .global-footer__nav {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    -webkit-flex: 0 1 50%;
            flex: 0 1 50%;
    max-height: 200px;
    text-align: left;
  }
  .global-footer__nav li {
    width: 50%;
  }
}
@media print {
  .global-footer__nav {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .global-footer__nav li {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.global-footer__social {
  width: 100%;
}
.global-footer__social p {
  text-align: center;
  margin-bottom: 1em;
}
.global-footer__social ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
}
.global-footer__social ul li {
  margin: 0 0.5em 0.25em;
}
.global-footer__social a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(255,255,255);
  border: 1px solid var(--color-neutral--white);
  border-radius: 50%;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s, -webkit-transform 0.15s;
  transition: opacity 0.15s, transform 0.15s;
  transition: opacity 0.15s, transform 0.15s, -webkit-transform 0.15s;
}
.global-footer__social a:hover, .global-footer__social a:focus {
  text-decoration: underline;
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (min-width: 65em) {
  .global-footer__social a {
    width: 30px;
    height: 30px;
  }
}
.global-footer__social svg {
  width: 90%;
  height: 90%;
}
@media screen and (min-width: 65em) {
  .global-footer__social {
    -webkit-flex: 0 1 33%;
            flex: 0 1 33%;
    margin-left: auto;
  }
  .global-footer__social p {
    display: block;
    text-align: left;
    margin-bottom: 1em;
  }
  .global-footer__social ul {
    display: block;
  }
  .global-footer__social ul li {
    margin: 0 0.5em 0.5em 0;
    float: left;
  }
}
@media print {
  .global-footer__social {
    display: none;
  }
}

.global-footer__legal {
  width: 100%;
  margin-top: 1em;
  padding-top: 2em;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}
.global-footer__legal .button {
  margin-bottom: 2rem;
}
@media screen and (min-width: 65em), print {
  .global-footer__legal .button {
    -webkit-order: 2;
            order: 2;
    margin-bottom: 0;
  }
}
.global-footer__legal .button.button--secondary {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  border: 1px solid rgb(255,255,255);
  border: 1px solid var(--color-neutral--white);
}
@media screen and (min-width: 65em), print {
  .global-footer__legal li {
    display: inline-block;
  }
  .global-footer__legal li + li::before {
    content: "|";
    display: inline-block;
    margin-right: 0.5em;
    margin-left: 0.5em;
    font-weight: 300;
    font-weight: var(--lato--light);
  }
}
.global-footer__legal a {
  display: block;
  margin-bottom: 0.5em;
  font-size: 0.8em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  text-decoration: none;
}
.global-footer__legal a:hover, .global-footer__legal a:focus {
  text-decoration: underline;
}
@media screen and (min-width: 65em), print {
  .global-footer__legal a {
    display: inline-block;
    margin-bottom: 0;
  }
}
.global-footer__legal p {
  margin-top: 1em;
  font-size: 0.8em;
  opacity: 0.9;
}
@media screen and (min-width: 65em), print {
  .global-footer__legal p {
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 65em), print {
  .global-footer__legal {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    text-align: left;
  }
}
@media print {
  .global-footer__legal {
    border: none;
    margin-top: 0;
    padding-top: 0;
  }
  .global-footer__legal button {
    display: none;
  }
}

.copyright {
  font-weight: 300;
  font-weight: var(--lato--light);
}

.global-nav {
  position: relative;
}
.global-nav::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  height: 0.6rem;
  background-image: linear-gradient(to right, rgb(33,23,71) 0%, rgb(73,69,104) 100%);
  background-image: linear-gradient(to right, var(--color-purple-dark) 0%, var(--color-purple-soft) 100%);
}
.global-nav .container {
  position: relative;
  -webkit-align-items: center;
          align-items: center;
}
.global-nav .container:not(.mega-menu__header) {
  padding-top: 1rem;
}
@media screen and (min-width: 45em) {
  .global-nav .container:not(.mega-menu__header) {
    padding: 1em;
  }
}
@media screen and (min-width: 65em) {
  .global-nav .container {
    -webkit-align-items: stretch;
            align-items: stretch;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    padding-right: 1rem;
    padding-left: 1rem;
    border-bottom-color: rgb(221,213,199);
    border-bottom-color: var(--color-brown--sand);
  }
}
.global-nav .skip-link {
  display: none;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  font-size: 0.9rem;
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition: opacity 0.15s;
}
.global-nav .skip-link:focus {
  opacity: 1;
}
@media screen and (min-width: 65em) {
  .global-nav {
    z-index: 20;
  }
}

.global-nav__logo {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
}
.global-nav__logo svg {
  fill: rgb(33,23,71);
  fill: var(--color-purple-dark);
  width: 143px;
}
@media (min-width: 45rem) {
  .global-nav__logo {
    margin-left: 1em;
  }
  .global-nav__logo svg {
    width: 233px;
  }
}
@media (min-width: 65rem) {
  .global-nav__logo {
    margin-right: 1.5rem;
    margin-left: 0;
  }
}
@media print {
  .global-nav__logo svg {
    width: 165px;
  }
}

.global-nav__top {
  display: none;
  -webkit-flex-flow: row;
          flex-flow: row;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 20px 0;
}
.global-nav__top > a {
  height: 41px;
  width: 176px;
  background-size: cover;
  margin-right: 60px;
}
.global-nav__top > a:last-child {
  margin-right: 0;
}
.global-nav__top-logo-nas {
  background-image: url(data:image/png;base64,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);
  background-position: 0 0;
}
.global-nav__top-logo-nas:hover {
  background-position: -216px 0;
}
.global-nav__top-logo-nae {
  background-image: url(data:image/png;base64,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);
  background-position: 0 0;
}
.global-nav__top-logo-nae:hover {
  background-position: -216px 0;
}
.global-nav__top-logo-nam {
  background-image: url(data:image/png;base64,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);
  background-position: 0 0;
}
.global-nav__top-logo-nam:hover {
  background-position: -216px 0;
}
@media (min-width: 45rem) {
  .global-nav__top {
    display: -webkit-flex;
    display: flex;
  }
}

.logo__societies {
  margin-left: 0.5rem;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-size: 0.8rem;
  font-weight: 400;
  font-weight: var(--lato--regular);
  line-height: 1.25;
}
.logo__societies span {
  display: block;
}
@media (min-width: 65rem) {
  .logo__societies {
    display: none;
  }
}

.global-nav__menus {
  -webkit-flex: 1 1;
          flex: 1 1;
}
@media (min-width: 65rem) {
  .global-nav__menus {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
@media print {
  .global-nav__menus {
    display: none;
  }
}

.global-nav__menus--upper {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: auto;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 65em) {
  .global-nav__menus--upper {
    margin-bottom: 0;
  }
}
.global-nav__menus--upper .button--secondary {
  -webkit-align-self: flex-end;
          align-self: flex-end;
  padding: 1em 3.5em 0.75em 0.75em;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
}
.global-nav__menus--upper .button--secondary .button__icon {
  width: 3em;
}
.global-nav__menus--upper .button--secondary .button__icon svg {
  width: 75%;
  height: 75%;
}
.global-nav--local .global-nav__menus--upper .button--secondary {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.global-nav--local.menu-is-hidden .global-nav__menus--upper .button--secondary {
  -webkit-transform: translateY(1.25em);
          transform: translateY(1.25em);
}
@media (max-width: 65em) {
  .global-nav__menus--upper .button--secondary {
    display: none;
  }
}

.global-nav__menus--lower {
  margin-bottom: 1rem;
}

.global-nav__societies {
  display: none;
  text-align: center;
}
.global-nav__societies > a {
  -webkit-flex-grow: 0;
          flex-grow: 0;
  margin-bottom: -0.15em;
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  font-size: 2.5rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
  text-decoration: none;
  transition: color 0.15s;
}
.global-nav__societies > a small {
  display: block;
  font-weight: 400;
  font-weight: var(--lato--regular);
}
.global-nav__societies > a + a {
  margin-left: 0.75em;
}
@media (min-width: 65em) {
  .global-nav__societies > a {
    font-size: 1.85rem;
  }
}
@media (min-width: 75em) {
  .global-nav__societies > a {
    font-size: 2.5rem;
  }
}
.global-nav__societies .society--sciences:hover,
.global-nav__societies .society--sciences:focus {
  color: rgb(115,83,29);
  color: var(--color-society--sciences);
}
.global-nav__societies .society--engineering:hover,
.global-nav__societies .society--engineering:focus {
  color: rgb(49,84,112);
  color: var(--color-society--engineering);
}
.global-nav__societies .society--medicine:hover,
.global-nav__societies .society--medicine:focus {
  color: rgb(93,55,84);
  color: var(--color-society--medicine);
}
@media screen and (min-width: 65rem) {
  .global-nav__societies {
    display: -webkit-flex;
    display: flex;
  }
  .global-nav--local .global-nav__societies {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
  }
  .global-nav--local.menu-is-hidden .global-nav__societies {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

.global-nav__controls {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  margin-left: auto;
}
@media screen and (min-width: 45em) {
  .global-nav__controls {
    padding-right: 1rem;
  }
}
@media (min-width: 65rem) {
  .global-nav__controls {
    position: absolute;
    top: 1em;
    right: 0;
    margin: 0;
  }
}
.global-nav__controls a {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  font-weight: 700;
  font-weight: var(--lato--bold);
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.controls__search,
.controls__menu,
.controls__nav {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
}
.controls__search svg,
.controls__menu svg,
.controls__nav svg {
  width: 2em;
  height: 2em;
  fill: currentColor;
}
@media (max-width: 65rem) {
  .controls__search svg,
.controls__menu svg,
.controls__nav svg {
    width: 2em;
    height: 2em;
  }
}
.controls__search:hover, .controls__search:focus,
.controls__menu:hover,
.controls__menu:focus,
.controls__nav:hover,
.controls__nav:focus {
  text-decoration: underline;
}
@media screen and (min-width: 65em) {
  .controls__search,
.controls__menu,
.controls__nav {
    font-size: 0.67rem;
  }
}

.controls__search {
  text-transform: uppercase;
  padding-left: 1em;
}
@media screen and (max-width: 65em) {
  .controls__search {
    border: none;
  }
}
.controls__search .search__label {
  display: none;
  font-weight: 700;
  font-weight: var(--lato--bold);
}
@media screen and (min-width: 65em) {
  .controls__search .search__label {
    display: inline;
  }
}

.controls__menu,
.controls__nav {
  text-transform: uppercase;
}
@media screen and (min-width: 65em) {
  .controls__menu,
.controls__nav {
    margin-right: 0;
  }
}

.controls__menu {
  margin-left: 0.5em;
}
@media screen and (min-width: 65em) {
  .controls__menu {
    display: none;
  }
}
@media screen and (max-width: 65em) {
  .controls__menu svg {
    display: none;
  }
}

.controls__nav {
  display: none;
}
@media screen and (min-width: 65em) {
  .controls__nav {
    display: -webkit-flex;
    display: flex;
    border: 1px solid rgb(33,23,71);
    border: 1px solid var(--color-purple-dark);
    padding: 0.5em 0.6em;
    margin-left: 0.5em;
  }
}
.controls__nav.invert {
  background: rgb(33,23,71);
  background: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}

.controls__close {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  text-transform: uppercase;
}

.controls__social {
  border-right: 1px solid rgb(0,0,0);
  border-right: 1px solid var(--color-neutral--black);
  padding-right: 1rem;
}
.controls__social .button.button--icon {
  padding: 0.4rem 2rem 0.4rem 0;
}
@media screen and (max-width: 65em) {
  .controls__social .button.button--icon {
    display: none;
  }
}

.global-nav__upcoming-event a {
  text-transform: none;
}

.global-nav__featured-publication img {
  width: 5.5rem;
  height: auto;
}
.global-nav__featured-publication a {
  font-size: 0.7rem;
  font-style: italic;
}

.global-nav__dropdown .global-nav__links-widget {
  margin-top: 0;
}
.global-nav__dropdown .global-nav__links-widget li:first-child a {
  padding-top: 0;
}

.global-nav__external-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 1rem;
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  font-size: 0.9rem;
}
.global-nav__external-link svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  fill: currentColor;
}

.hero {
  position: relative;
  overflow-y: hidden;
}

.hero__image {
  height: 100%;
  object-fit: cover;
  max-height: 400px;
}
.hero__image img {
  width: 100%;
}

.hero__content {
  background-color: rgba(0, 0, 0, 0.5);
  border: 0;
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  height: 100%;
  margin: 0;
  padding: 1.25rem 2rem;
  width: 100%;
  z-index: 2;
}
.hero__content .hero__title {
  font-size: 1.75rem;
  line-height: 32px;
  font-weight: 900;
  font-weight: var(--lato--black);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem;
}
@media (min-width: 55rem) {
  .hero__content .hero__title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (min-width: 72rem) {
  .hero__content .hero__title {
    font-size: 38px;
    line-height: 43px;
  }
}
@media (min-width: 55rem) {
  .hero__content {
    height: auto;
    max-width: 45%;
    padding: 40px;
  }
  .hero__content.content-is-top {
    top: 3rem;
  }
  .hero__content.content-is-right {
    right: 3rem;
  }
  .hero__content.content-is-bottom {
    bottom: 3rem;
  }
  .hero__content.content-is-left {
    left: 3rem;
  }
  .hero__content.content-is-x-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .hero__content.content-is-y-center {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .hero__content.content-is-x-center.content-is-y-center {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (min-width: 55rem) {
  .hero__content {
    position: absolute;
  }
}

.call-to-action--home {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  text-align: center;
}
@media screen and (min-width: 45em) {
  .call-to-action--home {
    text-align: left;
  }
}
.call-to-action--home .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  max-width: 54em;
  margin-right: auto;
  margin-left: auto;
}
.call-to-action--home .call-to-action__category {
  display: inline-block;
  margin-bottom: 1.25em;
  padding: 0.25em 1em;
  background-color: rgb(73,69,104);
  background-color: var(--color-purple-soft);
  text-transform: uppercase;
}
.call-to-action--home .flex {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.call-to-action--home .flex > * {
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (min-width: 45em) {
  .call-to-action--home .flex {
    padding: 0 1rem;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    width: 90%;
  }
}
.call-to-action--home .call-to-action__statement {
  margin-bottom: 1em;
}
@media screen and (min-width: 45em) {
  .call-to-action--home .call-to-action__statement {
    max-width: 60%;
    margin-right: 1em;
    margin-bottom: 0;
  }
}
.call-to-action--home a {
  max-width: 100%;
}
@media screen and (min-width: 45em) {
  .call-to-action--home a {
    max-width: 30%;
  }
}

.call-to-action--huge {
  background-color: rgb(243,241,235);
  background-color: var(--color-brown--bone);
}
.call-to-action--huge .container {
  max-width: 54em;
  margin-right: auto;
  margin-left: auto;
}

.call-to-action__quick-links {
  width: calc(100% + 2em);
  margin-right: -1em;
  margin-left: -1em;
}

.call-to-action__quick-link {
  position: relative;
  -webkit-flex: 0 0.5 160px;
          flex: 0 0.5 160px;
  width: 160px;
  height: 160px;
  margin: 1em;
  padding: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  font-size: 0.75em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
}
.call-to-action__quick-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(58, 133, 179, 0.7);
}
.call-to-action__quick-link:hover, .call-to-action__quick-link:focus {
  text-decoration: underline;
}
.call-to-action__quick-link span {
  position: relative;
  z-index: 2;
}

.hero--home {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin: -1rem -50vw;
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}

.hero-block {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid rgb(255,255,255);
  border-top: 1px solid var(--color-neutral--white);
}
.hero-block:first-child {
  border-top: none;
}
.hero-block .media {
  display: block;
}
.hero-block .media__figure--left {
  float: right;
  position: relative;
  max-width: 120px;
  height: auto;
  margin-top: 0;
  margin-left: 1em;
}
@media screen and (min-width: 65em) {
  .hero-block .media__figure--left {
    max-width: calc(100% + 2em);
    width: calc(100% + 2em);
    margin: -1em -1em 1em;
    padding-bottom: 56.25%;
  }
  .hero-block .media__figure--left img {
    position: absolute;
    width: 100%;
    height: auto;
    /* stylelint-disable max-nesting-depth */
    /* stylelint-enable max-nesting-depth */
  }
  @supports (object-fit: cover) {
    .hero-block .media__figure--left img {
      height: 100%;
      object-fit: cover;
    }
  }
}
.hero-block .button {
  margin-top: 0.75em;
  padding: 0.8em 5.1em 0.8em 1.1em;
}
@media screen and (min-width: 65em) {
  .hero-block .button {
    margin-right: 0.5em;
    background-color: transparent;
    border: 1px solid rgb(65,72,194);
    border: 1px solid var(--color-purple-medium);
    color: rgb(65,72,194);
    color: var(--color-purple-medium);
  }
  .hero-block .button .button__icon::after {
    background-color: rgba(65, 72, 194, 0.15);
  }
}
@media screen and (min-width: 65em) {
  .hero-block {
    padding: 1em;
    background-color: rgb(255,255,255);
    background-color: var(--color-neutral--white);
    border-top: 0;
    color: rgb(34,34,34);
    color: var(--color-neutral--charcoal);
  }
}

.hero-block__title,
.hero-block__metadata,
.hero-block__summary {
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.hero-block__title a,
.hero-block__metadata a,
.hero-block__summary a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
@media screen and (min-width: 65em) {
  .hero-block__title a,
.hero-block__metadata a,
.hero-block__summary a {
    color: rgb(34,34,34);
    color: var(--color-neutral--charcoal);
  }
}

.hero-block__title {
  font-size: var(--type--size--3);
}

.hero-block__metadata {
  opacity: 0.75;
}

.hero-block--main {
  position: relative;
  width: calc(100% + 2em);
  margin-right: -1em;
  margin-bottom: 1em;
  margin-left: -1em;
  padding: 1em;
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  border-top: 0;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
}
.hero-block--main .hero-block__title {
  font-size: 1.5rem;
  font-size: var(--type-size--2);
}
.hero-block--main a {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
}
.hero-block--main .button {
  background-color: transparent;
  border: 1px solid rgb(65,72,194);
  border: 1px solid var(--color-purple-medium);
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
}
.hero-block--main .button .button__icon::after {
  background-color: rgba(65, 72, 194, 0.15);
}
@media screen and (min-width: 65em) {
  .hero-block--main {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .hero-block--main .hero-block--main__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    padding: 1em;
    background-color: rgb(255,255,255);
    background-color: var(--color-neutral--white);
  }
}

.hero-block--main__image {
  position: relative;
  max-width: calc(100% + 2em);
  width: calc(100% + 2em);
  margin: -1em -1em 1em;
  padding-bottom: 56.25%;
}
.hero-block--main__image img {
  position: absolute;
  width: 100%;
  height: auto;
}
@supports (object-fit: cover) {
  .hero-block--main__image img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 65em) {
  .hero-block--main__image {
    margin-bottom: -1em;
  }
}

@media screen and (min-width: 65em) {
  .hero-row {
    display: -webkit-flex;
    display: flex;
    width: calc(100% + 1em);
    margin-right: -0.5em;
    margin-left: -0.5em;
  }
  .hero-row .hero-block {
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
    margin: 0 0.5em 1em;
  }
}
.local-nav {
  border: 1px solid rgb(199,201,199);
  border: 1px solid var(--color-neutral--gray-medium);
  display: none;
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.local-nav.accordion {
  display: block;
  margin: 0.6rem auto 1rem;
}
@media screen and (min-width: 65em), print {
  .local-nav.accordion {
    display: none;
  }
}
.local-nav .accordion__content li {
  display: block;
}
.local-nav .accordion__content li a {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  display: block;
  padding: 0.5em;
  text-decoration: none;
}
.local-nav .accordion__content li + li {
  border-top: 1px dashed rgb(199,201,199);
  border-top: 1px dashed var(--color-neutral--gray-medium);
}
.local-nav .accordion__content li ul {
  border-top: 1px dashed rgb(199,201,199);
  border-top: 1px dashed var(--color-neutral--gray-medium);
}
.local-nav .accordion__content li ul a {
  padding-left: 1.25em;
}
.local-nav .accordion__content > ul > li:first-of-type {
  border-top: 2px solid rgb(199,201,199);
  border-top: 2px solid var(--color-neutral--gray-medium);
}
@media screen and (min-width: 65em) {
  .local-nav {
    border-color: rgb(199,201,199);
    border-color: var(--color-neutral--gray-medium);
    border-width: 1px 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    max-width: 100%;
    padding-top: 0.4rem;
  }
}

.local-nav__link {
  color: rgb(51,51,51);
  color: var(--color-neutral--jet);
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
  min-width: 4rem;
  max-width: 15rem;
  padding: 0.75rem 1.75rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s;
}
.local-nav__link::after {
  content: "";
  background-color: transparent;
  display: block;
  height: 7px;
  left: -2px;
  position: absolute;
  top: -1.2em;
  transition: background-color 0.15s;
  width: 101%;
}
.local-nav__link.is-active, .local-nav__link.is-hovered {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  z-index: 1;
}
.local-nav__link.is-active::after, .local-nav__link.is-hovered::after {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
}
.local-nav__link + .local-nav__link {
  margin-left: 1.875rem;
}

.microsite-footer {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.microsite-footer .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0;
}
.microsite-footer .microsite-footer__logo {
  background-color: rgba(0, 0, 0, 0.175);
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-justify-content: center;
          justify-content: center;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 1.25rem 0;
  width: 100%;
}
.microsite-footer .microsite-footer__logo svg {
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
}
.microsite-footer .global-footer__social ul {
  margin: 0.5em 0 1rem;
  -webkit-justify-content: center;
          justify-content: center;
}
.microsite-footer .global-footer__social ul li + li {
  margin-left: 1em;
}
@media screen and (min-width: 65em) {
  .microsite-footer .global-footer__social ul {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .microsite-footer .global-footer__social ul li + li {
    margin-left: 1em;
  }
}
.microsite-footer .global-footer__social svg {
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
}
.microsite-footer .microsite-footer__content {
  -webkit-flex: 1 1;
          flex: 1 1;
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  font-size: 0.8em;
  padding: 2rem 0;
  text-align: center;
}
.microsite-footer .microsite-footer__content .microsite-footer__address {
  margin-bottom: 1rem;
  clear: both;
}
.microsite-footer .microsite-footer__content .microsite-footer__links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 0.2rem;
}
.microsite-footer .microsite-footer__content .microsite-footer__links a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  font-weight: 700;
  font-weight: var(--lato--bold);
  margin-bottom: 0.5em;
  text-decoration: none;
}
.microsite-footer .microsite-footer__content .microsite-footer__links a:hover,
.microsite-footer .microsite-footer__content .microsite-footer__links a:focus {
  text-decoration: underline;
}
.microsite-footer .microsite-footer__content .microsite-footer__links li {
  display: inline-block;
  line-height: 1.4;
}
.microsite-footer .microsite-footer__content .microsite-footer__links li + li::before {
  content: "|";
  display: inline-block;
  margin-right: 0.2em;
  margin-left: 0.2em;
  font-weight: 300;
  font-weight: var(--lato--light);
}
.microsite-footer .copyright {
  font-weight: 300;
  font-weight: var(--lato--light);
}

@media screen and (min-width: 65em) {
  .microsite-footer .container {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    position: relative;
  }
  .microsite-footer .microsite-footer__logo {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    -webkit-flex: 0 0 320px;
            flex: 0 0 320px;
    margin: 0;
    padding: 2.2rem 1.25rem;
  }
  .microsite-footer .microsite-footer__logo::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: calc(100vw - 70rem);
    height: 100%;
    background-color: #2d6d93;
  }
  .microsite-footer .microsite-footer__content {
    padding: 2rem;
    text-align: left;
  }
  .microsite-footer .microsite-footer__content .microsite-footer__links {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .microsite-footer .microsite-footer__content .microsite-footer__links li + li::before {
    margin: 0 0.5rem;
  }
}
.microsite-header .microsite-header__conentWrap {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 65rem) {
  .microsite-header .microsite-header__conentWrap {
    display: -webkit-flex;
    display: flex;
    max-height: 5.5rem;
  }
}
.microsite-header .microsite-header__logo {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  max-width: 220px;
  max-height: 56px;
}
.microsite-header .microsite-header__logo svg {
  fill: rgb(0,0,0);
  fill: var(--color-neutral--black);
  width: 220px;
  height: 56px;
}
@media (max-width: 65rem) {
  .microsite-header .microsite-header__logo svg {
    width: 120px;
  }
}
@media (max-width: 65rem) {
  .microsite-header .microsite-header__logo {
    padding-left: 1rem;
  }
}
@media (min-width: 65rem) {
  .microsite-header .global-nav__controls {
    position: initial;
  }
}
.microsite-header .mobile__actions {
  display: none;
  padding-right: 1rem;
}
.microsite-header .mobile__actions .controls__menu,
.microsite-header .mobile__actions .controls__search {
  font-size: 0.8em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.2;
  margin-left: 0.9em;
}
.microsite-header .mobile__actions .controls__menu svg,
.microsite-header .mobile__actions .controls__search svg {
  height: 2em;
  width: 2em;
}
@media (max-width: 65rem) {
  .microsite-header .mobile__actions {
    display: -webkit-flex;
    display: flex;
  }
}
.microsite-header .microsite-header__heading {
  -webkit-align-items: flex-end;
          align-items: flex-end;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 65em) {
  .microsite-header .microsite-header__heading {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    border-top: 1px solid rgb(199,201,199);
    border-top: 1px solid var(--color-neutral--gray-medium);
    margin-top: 0.75rem;
    padding-left: 1rem;
    padding-top: 0.75rem;
    width: 100%;
  }
}
.microsite-header .microsite-header__heading .microsite-header__title {
  font-size: 1.4rem;
  font-weight: 400;
  font-weight: var(--lato--regular);
}
.microsite-header .microsite-header__heading .microsite-header__site-logo {
  max-width: 350px;
  text-align: right;
}
.microsite-header .microsite-header__skip-link {
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  display: none;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  font-size: 0.9rem;
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition: opacity 0.15s;
}
.microsite-header .microsite-header__skip-link:focus {
  opacity: 1;
}
@media screen and (max-width: 65em) {
  .microsite-header .microsite-header__skip-link {
    display: none;
  }
}
.microsite-header .microsite-header__links {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  display: none;
}
.microsite-header .microsite-header__links ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  margin-left: -1.5rem;
  padding: 1.5rem 0 0;
}
.microsite-header .microsite-header__links li:hover .microsite-header__link > span::before,
.microsite-header .microsite-header__links li:focus-within .microsite-header__link > span::before,
.microsite-header .microsite-header__links .microsite-header__link.is-active > span::before,
.microsite-header .microsite-header__links .microsite-header__link:hover > span::before,
.microsite-header .microsite-header__links .microsite-header__link:focus > span::before {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
}
.microsite-header .microsite-header__links li:hover .microsite-header__link > span::before::after,
.microsite-header .microsite-header__links li:focus-within .microsite-header__link > span::before::after,
.microsite-header .microsite-header__links .microsite-header__link.is-active > span::before::after,
.microsite-header .microsite-header__links .microsite-header__link:hover > span::before::after,
.microsite-header .microsite-header__links .microsite-header__link:focus > span::before::after {
  opacity: 1;
}
.microsite-header .microsite-header__links > .container {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.microsite-header .microsite-header__links .microsite-header__link {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  display: block;
  font-size: 0.885rem;
  font-weight: 400;
  font-weight: var(--lato--regular);
  padding: 0 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s;
}
.microsite-header .microsite-header__links .microsite-header__link .microsite-header__popover {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  left: 1.5rem;
  position: absolute;
  top: 35%;
  width: 16rem;
  z-index: 20;
}
.microsite-header .microsite-header__links .microsite-header__link .microsite-header__popover::before {
  content: "";
  background-color: rgb(65,72,194);
  background-color: var(--color-purple-medium);
  height: 1rem;
  margin-left: 0.5rem;
  position: absolute;
  top: 1rem;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 1rem;
}
.microsite-header .microsite-header__links .microsite-header__link .microsite-header__dropdown {
  background: linear-gradient(180deg, #003f5c 0%, #3a85b3 34%, #3a85b3 100%);
  background-color: rgb(65,72,194);
  background-color: var(--color-purple-medium);
  display: inline-block;
  font-size: 0.9rem;
  left: 0;
  padding: 0;
  position: absolute;
  text-transform: initial;
  top: 1.5rem;
  width: 100%;
}
.microsite-header .microsite-header__links .microsite-header__link .microsite-header__dropdown > li:first-child a {
  padding-top: 1.6rem;
}
.microsite-header .microsite-header__links .microsite-header__link .microsite-header__dropdown > li:last-child a {
  padding-bottom: 1.6rem;
}
.microsite-header .microsite-header__links .microsite-header__link .microsite-header__dropdown-item:hover {
  color: rgb(254,218,108);
  color: var(--color-gold-light);
  text-decoration: underline;
}
.microsite-header .microsite-header__links .microsite-header__link a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  display: block;
  padding: 0.6rem 1.6rem;
  text-decoration: none;
}
.microsite-header .microsite-header__links .microsite-header__link > span {
  position: relative;
}
.microsite-header .microsite-header__links .microsite-header__link > span::before {
  content: "";
  background-color: transparent;
  height: 5px;
  position: absolute;
  bottom: -0.5em;
  left: 0;
  transition: background-color 0.15s;
  width: 100%;
}

@media (min-width: 65rem) {
  .microsite-header .microsite-header__links {
    display: block;
  }
}
.microsite-megamenu {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
}
@media (min-width: 65rem) {
  .microsite-megamenu {
    background-color: rgb(243,241,235);
    background-color: var(--color-brown--bone);
  }
}
.microsite-megamenu .global-nav__controls {
  padding-right: 0;
}
.microsite-megamenu .microsite-header .container {
  padding-left: 0;
  padding-right: 0;
}

.moving-visual video {
  width: 100%;
  box-shadow: #ababab 0 0 15px 3px;
}
.moving-visual__toggle {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: -webkit-flex;
  display: flex;
  font-size: 0.7rem;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  position: absolute;
  right: 4px;
  bottom: 6px;
  padding: 4px 7px;
  cursor: pointer;
}
.moving-visual__toggle:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
}
.moving-visual__toggle--indicator {
  background-color: #f00;
  border: #fff 1px solid;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}
.moving-visual__toggle.on .moving-visual__toggle--indicator {
  background-color: #008000;
}

.popularTopics .popularTopics__linkContainer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 45rem) {
  .popularTopics .popularTopics__linkContainer {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
.popularTopics .popularTopics__linkContainer-link {
  -webkit-flex-basis: 25%;
          flex-basis: 25%;
  padding: 0 1rem 0.5rem 0;
}
.popularTopics .popularTopics__linkContainer-link a {
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
}

.project-scope {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 65rem) {
  .project-scope {
    -webkit-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .project-scope .project-scope__body {
    line-height: 1.5;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
    padding-right: 2em;
  }
  .project-scope .project-scope__body p,
.project-scope .project-scope__body ol,
.project-scope .project-scope__body ul,
.project-scope .project-scope__body ul li,
.project-scope .project-scope__body ol li {
    margin-bottom: 1rem;
  }
  .project-scope .project-scope__body ul,
.project-scope .project-scope__body ol {
    list-style-position: outside;
    padding-left: 1.65em;
  }
  .project-scope .project-scope__body ol {
    list-style-type: decimal;
  }
  .project-scope .project-scope__body ul {
    list-style-type: disc;
  }
  .project-scope .project-scope__sidebar {
    -webkit-flex: 0 0 180px;
            flex: 0 0 180px;
    grid-template-columns: 1fr 180px;
  }
}

.publication {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  height: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (max-width: 65em) {
  .publication {
    font-size: 14px;
  }
}

.publication__content {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  margin-bottom: 2em;
  padding-right: 1em;
  padding-left: 1em;
  width: 100%;
}
@media screen and (max-width: 65em) {
  .publication__content {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: stretch;
            align-items: stretch;
  }
}

.publication__sample {
  display: -webkit-flex;
  display: flex;
  margin: 0 2rem 0 0;
  text-align: center;
}
.publication__sample img {
  height: auto;
  margin: 0 auto;
  object-fit: cover;
  object-position: top left;
  width: 224px;
}
@media screen and (max-width: 65em) {
  .publication__sample img {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 65em) {
  .publication__sample {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}

.publication__overview {
  -webkit-flex: 2 1;
          flex: 2 1;
}
.publication__overview .meta__date {
  margin-bottom: 1em;
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
  font-size: 0.875em;
  font-weight: 700;
  font-weight: var(--lato--bold);
}
.publication__overview .meta__title {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  margin-bottom: 0.75em;
  text-decoration: none;
}
.publication__overview .meta__title.hovered {
  text-decoration: underline;
}
.publication__overview .meta__summary {
  line-height: 1.5;
}
.publication__overview .meta__summary a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.publication__overview .meta__summary a:hover, .publication__overview .meta__summary a:focus, .publication__overview .meta__summary a:active {
  text-decoration: underline;
}
@media screen and (max-width: 65em) {
  .publication__overview {
    margin-right: 0;
  }
}

.publication__resources {
  -webkit-flex: 0 1 25%;
          flex: 0 1 25%;
  margin-left: 2em;
}
.publication__resources h5 {
  letter-spacing: 0.1rem;
  margin-top: 3.5em;
  margin-bottom: 0.2em;
  text-transform: uppercase;
}
@media screen and (max-width: 65em) {
  .publication__resources {
    display: none;
  }
}

.publication__links {
  list-style: none;
}
.publication__links li {
  border-bottom: 1px dashed rgb(225,218,206);
  border-bottom: 1px dashed var(--color-brown--merino);
}
.publication__links a {
  -webkit-align-items: center;
          align-items: center;
  color: #5B6EB9;
  color: var(--color-purple-medium--subtle);
  display: -webkit-flex;
  display: flex;
  padding: 0.5rem 0.15rem;
  text-decoration: none;
  width: 100%;
}
.publication__links a:hover, .publication__links a:focus, .publication__links a:active {
  text-decoration: underline;
}
.publication__links svg {
  fill: var(--color-brown-wood);
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  height: 30px;
  margin-right: 0.5rem;
  width: 30px;
}

.slider--home {
  display: -webkit-flex;
  display: flex;
}
.slider--home .publication--filmstrip {
  height: auto;
}

.slider.slider--lite .VueCarousel {
  position: relative;
}

.publication--filmstrip {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  max-width: 250px;
  width: 250px;
  margin: 0 auto;
  padding: 0 0.7rem;
  position: relative;
}
@media screen and (min-width: 45em) {
  .publication--filmstrip {
    height: 100%;
  }
}
.publication--filmstrip:hover .meta__title, .publication--filmstrip:focus-within .meta__title {
  text-decoration: underline;
}
.publication--filmstrip > a {
  display: block;
  text-decoration: none;
}
.publication--filmstrip .publication__sample {
  height: 0;
  margin: 0 auto;
  padding-bottom: 150%;
  position: relative;
  text-align: center;
}
.publication--filmstrip .publication__sample img {
  position: absolute;
  object-fit: cover;
  max-height: 336px;
  max-width: 100%;
  margin: auto;
  height: auto;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.publication--filmstrip .publication__overview {
  margin: 1rem 0;
}
.publication--filmstrip .meta__title {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
}
.publication--filmstrip .toolbar {
  border-width: 1px 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.publication--filmstrip .toolbar a {
  font-size: 0.875rem;
  padding: 1rem 0 0.5rem;
}
.publication--filmstrip .toolbar a svg {
  display: block;
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
  width: 2rem;
}
.publication--filmstrip .toolbar a + a {
  margin-left: auto;
}

.filters {
  border-right: none;
  margin-right: 0;
}
@media screen and (min-width: 65rem) {
  .filters {
    border-right: 1px solid rgb(221,213,199);
    border-right: 1px solid var(--color-brown--sand);
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
  }
}

.filters__title,
.filters__title--no-action {
  border-bottom: none;
  margin-bottom: 1rem;
  padding: 1rem 1rem 1rem 0;
}
.filters__title h3,
.filters__title--no-action h3 {
  font-size: 1.25rem;
}
.filters__title .results-count,
.filters__title--no-action .results-count {
  font-size: 0.875rem;
}
@media screen and (min-width: 65rem) {
  .filters__title,
.filters__title--no-action {
    border-bottom: 1px solid rgb(221,213,199);
    border-bottom: 1px solid var(--color-brown--sand);
    display: none;
  }
  .filters__title h3,
.filters__title--no-action h3 {
    font-size: 1.4rem;
  }
}

.filters__title--no-action {
  display: none;
}
@media screen and (min-width: 65rem) {
  .filters__title--no-action {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}

.filters__title__top__layout--no-action {
  border-bottom: none;
}
.filters__title__top__layout--no-action h3 {
  font-size: 1.25rem;
}
.filters__title__top__layout--no-action .results-count {
  font-size: 0.875rem;
}
@media screen and (min-width: 65rem) {
  .filters__title__top__layout--no-action {
    display: none;
  }
  .filters__title__top__layout--no-action h3 {
    font-size: 1.4rem;
  }
}

.filters__title__top__layout {
  display: none;
}
@media screen and (min-width: 65rem) {
  .filters__title__top__layout {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}

.active-filters {
  margin-bottom: 1rem;
}
@media screen and (min-width: 65rem) {
  .active-filters {
    border-bottom: 1px solid rgb(225,218,206);
    border-bottom: 1px solid var(--color-brown--merino);
    padding-bottom: 0.5rem;
  }
}

.filters__clear {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  font-size: 0.885rem;
  margin-right: 1rem;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (min-width: 65rem) {
  .filters__clear {
    display: block;
    margin-bottom: 1rem;
    margin-right: 0;
  }
}

.filter-controls {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
  transition: -webkit-transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  width: 100vw;
  z-index: 17;
}
.filter-controls.is-open {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.filter-controls .active-filters,
.filter-controls .filter-controls__container > .input-container {
  padding-right: 1rem;
}
.filter-controls .close-filter-controls {
  background-color: rgb(51,51,51);
  background-color: var(--color-neutral--jet);
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
}
.filter-controls .close-filter-controls svg {
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
  height: 2rem;
  position: absolute;
  top: 0.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2rem;
}
@media screen and (min-width: 65em) {
  .filter-controls .close-filter-controls {
    display: none;
  }
}
.filter-controls .filters-controls__content {
  padding: 0 0 3.5rem 3.5rem;
}
@media screen and (min-width: 65em) {
  .filter-controls {
    background-color: inherit;
    height: 100%;
    overflow: visible;
    padding: 0;
    position: relative;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
  .filter-controls .filters-controls__content {
    padding: 0;
  }
}

.filter-controls__container {
  max-height: 90%;
  overflow-y: scroll;
  padding-bottom: 10rem;
  padding-right: 3.5rem;
  position: absolute;
  width: 100%;
}
.filter-controls__container > .input-container {
  margin-bottom: 0.5rem;
}
.filter-controls__container > .input-container input {
  margin-bottom: 0;
  height: 45px;
}
.filter-controls__container > .input-container:not(.datepicker) .input-submit {
  right: 1.5rem;
  bottom: 0.4rem;
}
.filter-controls__container > .input-container + .input-container {
  border-top: 1px solid rgb(225,218,206);
  border-top: 1px solid var(--color-brown--merino);
  padding-top: 1rem;
}
@media screen and (min-width: 65rem) {
  .filter-controls__container {
    max-height: auto;
    overflow: visible;
    padding-bottom: 0;
    padding-right: 0;
    position: relative;
  }
}

.filter-controls__actions {
  -webkit-align-self: flex-end;
          align-self: flex-end;
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  border-top: 1px solid rgb(199,201,199);
  border-top: 1px solid var(--color-neutral--gray-medium);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding: 0.5rem 1rem;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 2.5em;
  z-index: 3;
}
.filter-controls__actions .button + .button {
  margin-left: 0.5rem;
}
@media screen and (min-width: 65em) {
  .filter-controls__actions {
    display: none;
  }
}

.w-third-ns .filters__title {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.w-third-ns .filters__title .toggle-filters {
  margin-top: 15px;
}

.results {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
@media screen and (min-width: 65em) {
  .results {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}

.result + .result {
  margin-top: 2em;
}

.result__category {
  margin-bottom: 0.25em;
  font-weight: 900;
  font-weight: var(--lato--black);
}

.result__title a, .result__title.t3 a {
  display: block;
  margin-bottom: 0.5em;
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.result__title a:hover, .result__title a:focus, .result__title.t3 a:hover, .result__title.t3 a:focus {
  text-decoration: underline;
}

.result__text {
  font-size: 0.8em;
}

.result__metadata {
  font-size: 0.875em;
}
.result__metadata .media {
  margin-bottom: 1em;
}
@media screen and (min-width: 65em) {
  .result__metadata .media {
    margin-bottom: 0;
  }
}
.result__metadata .media__figure--left {
  width: 10%;
  margin-right: 1em;
  margin-bottom: 0.5em;
  text-align: left;
}
.result__metadata .media__content {
  margin-bottom: 0.25em;
  line-height: 1.3;
}
.result__metadata a {
  color: #5B6EB9;
  color: var(--color-purple-medium--subtle);
  text-decoration: underline;
}
.result__metadata a + a {
  margin-left: 0.5ch;
}
.result__metadata a:hover, .result__metadata a:focus, .result__metadata a:active {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
}
@media screen and (min-width: 65em) {
  .result__metadata {
    font-size: 0.778em;
  }
}

.sidebar {
  width: 100%;
  z-index: 1;
}
.sidebar .sidebar__widget {
  padding: 1rem 0;
}
.sidebar .sidebar__widget:first-child {
  padding-top: 0;
}
.sidebar .sidebar__widget:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 75em) {
  .sidebar {
    max-width: 175px;
  }
}

.sidebar__widget,
.layout__sidebar .scs-paragraph-text {
  font-size: 0.875rem;
  line-height: 1.3;
}
.sidebar__widget + .sidebar__widget,
.layout__sidebar .scs-paragraph-text + .sidebar__widget {
  border-top: 1px solid rgb(221,213,199);
  border-top: 1px solid var(--color-brown--sand);
}
.sidebar__widget a,
.layout__sidebar .scs-paragraph-text a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.sidebar__widget a:hover, .sidebar__widget a:focus, .sidebar__widget a:active,
.layout__sidebar .scs-paragraph-text a:hover,
.layout__sidebar .scs-paragraph-text a:focus,
.layout__sidebar .scs-paragraph-text a:active {
  text-decoration: underline;
}
@media screen and (min-width: 65em) {
  .sidebar__widget,
.layout__sidebar .scs-paragraph-text {
    font-size: 0.75rem;
  }
}

.sidebar__widget--social,
.sidebar__widget--social-share {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.sidebar__widget--social a,
.sidebar__widget--social-share a {
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.sidebar__widget--social a:hover, .sidebar__widget--social a:focus,
.sidebar__widget--social-share a:hover,
.sidebar__widget--social-share a:focus {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.sidebar__widget--social svg,
.sidebar__widget--social-share svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
}

.sidebar__widget--social-share .social-share--title {
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 0.6rem;
}
.sidebar__widget--social-share .social-share--networks {
  -webkit-transform: translate(-6%, 0);
          transform: translate(-6%, 0);
}

.sidebar__widget--list li + li {
  margin-top: 0.5rem;
}

.sidebar__widget--feedback .media {
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.sidebar__widget--feedback .media .media__figure--left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 1em;
  margin-bottom: -6px;
  text-align: unset;
}
@media screen and (min-width: 45em) {
  .sidebar__widget--feedback .media .media__figure--left {
    margin-bottom: 0;
  }
}
.sidebar__widget--feedback svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
}

.sidebar__widget--date .media {
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.sidebar__widget--date .media .media__figure--left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 0.9em;
  margin-bottom: -6px;
  margin-top: 5px;
  text-align: unset;
}
@media screen and (min-width: 45em) {
  .sidebar__widget--date .media .media__figure--left {
    margin-bottom: 0;
  }
}
.sidebar__widget--date svg {
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  fill: rgb(188,155,106);
  fill: var(--color-brown--wood);
}
@media only screen and (max-width: 320px) {
  .sidebar__widget--date svg {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.sidebar__widget--date svg use {
  -webkit-transform: translateX(-15%);
          transform: translateX(-15%);
}

.sidebar__widget--html p > em {
  font-style: italic;
}

.layout__sidebar .sidebar__widget--newsletterForm {
  border-top: 1px solid rgb(221,213,199);
  border-top: 1px solid var(--color-brown--sand);
  margin-top: 1rem;
  padding-top: 1rem;
}

.sidebar__widget--newsletterForm {
  line-height: 1;
  color: #575757;
  margin-bottom: 30px;
}
@media screen and (min-width: 45em) {
  .sidebar__widget--newsletterForm {
    margin-bottom: 0;
  }
}
.sidebar__widget--newsletterForm .t5.mb1 {
  color: #000;
  margin-bottom: 0.5rem;
}
.sidebar__widget--newsletterForm .newsletterForm__subtitle {
  line-height: 1;
  font-size: 0.8em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.sidebar__widget--newsletterForm .newsletterForm__successMessage {
  font-style: italic;
}
.sidebar__widget--newsletterForm .newsletterForm__disclaimer {
  font-style: italic;
  margin-bottom: 0.25rem;
  font-size: 0.7em;
  line-height: 1.25;
  font-weight: 600;
}
.sidebar__widget--newsletterForm button {
  cursor: pointer;
  width: 100%;
  text-align: center;
  margin-top: 1em;
}

.slider {
  max-width: 1260px;
  position: relative;
  width: 100%;
}
.slider > .aspect-ratio {
  display: none;
}
.slider .VueCarousel,
.slider .VueCarousel-wrapper,
.slider .VueCarousel-inner {
  height: 100% !important;
}
.slider .VueCarousel-inner {
  display: -webkit-flex !important;
  display: flex !important;
  width: 100%;
}
.slider .VueCarousel-navigation {
  position: static;
}
.slider .VueCarousel-navigation-button {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: auto;
  height: 50px;
  margin: 0;
  padding: 0;
  background-color: rgba(26, 26, 26, 0.6);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider .VueCarousel-navigation-button svg {
  height: 50px;
  fill: rgba(255, 255, 255, 0.65);
  transition: fill 0.15s;
}
.slider .VueCarousel-navigation-button:hover svg, .slider .VueCarousel-navigation-button:focus svg {
  fill: rgba(255, 255, 255, 0.9);
}
.slider .VueCarousel-pagination {
  display: none;
  position: absolute;
  bottom: 0.5rem;
}
.slider .VueCarousel-pagination .VueCarousel-dot-container {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0 !important;
}
.slider .VueCarousel-pagination .VueCarousel-dot {
  box-sizing: border-box !important;
  position: relative;
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-align-items: center !important;
          align-items: center !important;
  -webkit-justify-content: center !important;
          justify-content: center !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0.75em 0.5em !important;
  background-color: transparent !important;
}
.slider .VueCarousel-pagination .VueCarousel-dot::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 2px solid rgb(255,255,255);
  border: 2px solid var(--color-neutral--white);
  border-radius: 50%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.35);
  transition: background-color 0.15s;
}
.slider .VueCarousel-pagination .VueCarousel-dot.VueCarousel-dot--active::before {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
}
@media (min-width: 55rem) {
  .slider .VueCarousel-pagination {
    display: block;
  }
}
@media (min-width: 55rem) {
  .slider .aspect-ratio {
    padding-bottom: 26.9%;
  }
  .slider > .aspect-ratio {
    display: inline;
  }
  .slider.is-full-image > .aspect-ratio {
    display: inherit;
    padding-bottom: 37.2%;
  }
  .slider.is-full-image .VueCarousel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.VueCarousel-slide {
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
.VueCarousel-slide .slider__image {
  -webkit-flex: 1 1 55.6%;
          flex: 1 1 55.6%;
  position: relative;
  overflow: hidden;
}
.VueCarousel-slide .slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.VueCarousel-slide .slider__image > .aspect-ratio {
  padding-bottom: 37.2%;
}
@media (min-width: 55rem) {
  .VueCarousel-slide .slider__image {
    height: 100%;
  }
  .VueCarousel-slide .slider__image img {
    position: absolute;
  }
}
.VueCarousel-slide .slider__content {
  -webkit-flex: 1 1 60%;
          flex: 1 1 60%;
  font-size: 0.85rem;
  margin-left: 0.5rem;
  padding: 0.5rem 2rem;
}
.VueCarousel-slide .slider__content > * + * {
  margin-top: 1em;
}
.VueCarousel-slide .slider__content .slider__title {
  font-size: 1.2rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.4;
}
@media (min-width: 55em) {
  .VueCarousel-slide .slider__content {
    padding-top: 0.5rem;
    padding-right: 0;
    padding-left: 0.5rem;
    border-left: 2px solid rgb(118,118,118);
    border-left: 2px solid var(--color-neutral--dusty);
  }
}
@media (min-width: 55em) {
  .VueCarousel-slide {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row !important;
            flex-direction: row !important;
  }
}

.is-full-image .VueCarousel-navigation-button {
  padding: 3px 0 0 !important;
  margin-right: 0 !important;
  -webkit-transform: none !important;
          transform: none !important;
  background: rgba(0, 0, 0, 0.6) !important;
  height: 55px;
  width: 27px;
}

.is-full-image .VueCarousel-slide {
  display: block !important;
  min-height: 300px;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.is-full-image .VueCarousel-slide .slider__content {
  background-color: rgba(0, 0, 0, 0.5);
  border: 0;
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  height: 100%;
  margin: 0;
  padding: 1.25rem 2rem;
  width: 100%;
  z-index: 2;
}
.is-full-image .VueCarousel-slide .slider__content .slider__title {
  font-size: 28px;
  line-height: 32px;
  font-weight: 900;
  font-weight: var(--lato--black);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem;
}
@media (min-width: 55rem) {
  .is-full-image .VueCarousel-slide .slider__content .slider__title {
    font-size: 38px;
    line-height: 43px;
  }
}
.is-full-image .VueCarousel-slide .slider__content .slider__summary {
  font-size: 1rem;
  line-height: 1.22;
  margin-bottom: 1em;
}
.is-full-image .VueCarousel-slide .slider__content .slider__summary a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  text-decoration: underline;
}
.is-full-image .VueCarousel-slide .slider__content .slider__summary a:hover, .is-full-image .VueCarousel-slide .slider__content .slider__summary a:focus, .is-full-image .VueCarousel-slide .slider__content .slider__summary a:active {
  color: rgb(254,218,108);
  color: var(--color-gold-light);
}
.is-full-image .VueCarousel-slide .slider__content .slider__content-wrapper {
  padding-bottom: 50px;
}
.is-full-image .VueCarousel-slide .slider__content .slider__content-wrapper > .button {
  position: absolute;
  bottom: 40px;
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  border: 1px solid rgb(255,255,255);
  border: 1px solid var(--color-neutral--white);
}
@media (min-width: 55rem) {
  .is-full-image .VueCarousel-slide .slider__content {
    height: auto;
    max-width: 45%;
    padding: 40px;
  }
  .is-full-image .VueCarousel-slide .slider__content.content-is-top {
    top: 3rem;
  }
  .is-full-image .VueCarousel-slide .slider__content.content-is-right {
    right: 3rem;
  }
  .is-full-image .VueCarousel-slide .slider__content.content-is-bottom {
    bottom: 3rem;
  }
  .is-full-image .VueCarousel-slide .slider__content.content-is-left {
    left: 3rem;
  }
  .is-full-image .VueCarousel-slide .slider__content.content-is-x-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .is-full-image .VueCarousel-slide .slider__content.content-is-y-center {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .is-full-image .VueCarousel-slide .slider__content.content-is-x-center.content-is-y-center {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (min-width: 55rem) {
  .is-full-image .VueCarousel-slide {
    min-height: 400px;
  }
  .is-full-image .VueCarousel-slide .slider__content {
    position: absolute;
  }
}

.slider.global-slider {
  max-width: none;
  position: relative;
  width: 100%;
}
.slider.global-slider > .aspect-ratio {
  display: none;
}
.slider.global-slider .VueCarousel-navigation {
  margin-left: 5%;
  position: absolute;
  top: 0;
}
.slider.global-slider .VueCarousel-navigation::before {
  content: "";
  display: block;
  padding-top: 42%;
}
.slider.global-slider .VueCarousel-navigation .VueCarousel-navigation-button {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media (min-width: 55rem) {
  .slider.global-slider .VueCarousel-navigation {
    bottom: 0;
    top: auto;
    margin-left: 0;
  }
  .slider.global-slider .VueCarousel-navigation::before {
    content: none;
  }
  .slider.global-slider .VueCarousel-navigation .VueCarousel-navigation-button {
    -webkit-transform: none;
            transform: none;
  }
}
.slider.global-slider .VueCarousel-navigation-button {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  height: 45px;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  top: 0;
  width: 45px;
  z-index: 10;
}
@media (min-width: 55rem) {
  .slider.global-slider .VueCarousel-navigation-button {
    height: 75px;
    width: 75px;
  }
}
.slider.global-slider .VueCarousel-navigation-button.VueCarousel-navigation-prev svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.slider.global-slider .VueCarousel-navigation-button svg {
  height: 20px;
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
  transition: fill 0.15s;
}
@media (min-width: 55rem) {
  .slider.global-slider .VueCarousel-navigation-button svg {
    height: 30px;
  }
}
.slider.global-slider .VueCarousel-navigation-button:hover svg, .slider.global-slider .VueCarousel-navigation-button:focus svg {
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
}
.slider.global-slider .VueCarousel-pagination {
  bottom: 0.5rem;
  display: block;
  margin-left: 5%;
  position: absolute;
  width: 90%;
}
@media (min-width: 55rem) {
  .slider.global-slider .VueCarousel-pagination {
    display: none;
  }
}
.slider.global-slider .VueCarousel-pagination .VueCarousel-dot-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0;
}
.slider.global-slider .VueCarousel-pagination .VueCarousel-dot {
  -webkit-align-items: center;
          align-items: center;
  background-color: transparent;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  height: auto;
  margin: 0;
  padding: 0.75em 0.5em;
  position: relative;
  width: auto;
}
.slider.global-slider .VueCarousel-pagination .VueCarousel-dot::before {
  content: "";
  background-color: rgb(199,201,199);
  background-color: var(--color-neutral--gray-medium);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.35);
  display: block;
  height: 14px;
  transition: background-color 0.15s;
  width: 14px;
}
.slider.global-slider .VueCarousel-pagination .VueCarousel-dot.VueCarousel-dot--active::before {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
}
@media (min-width: 55rem) {
  .slider.global-slider .aspect-ratio {
    padding-bottom: 26.9%;
  }
  .slider.global-slider > .aspect-ratio {
    display: inline;
  }
}

.global-slider .VueCarousel-slide {
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
@media (min-width: 55rem) {
  .global-slider .VueCarousel-slide {
    display: block !important;
    z-index: 0;
  }
}
.global-slider .VueCarousel-slide .slider__image {
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media (min-width: 55rem) {
  .global-slider .VueCarousel-slide .slider__image {
    width: 85.25%;
    min-height: 470px;
  }
}
.global-slider .VueCarousel-slide .slider__image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
.global-slider .VueCarousel-slide .slider__image > .aspect-ratio {
  padding-bottom: 42%;
}
@media (min-width: 55rem) {
  .global-slider .VueCarousel-slide .slider__image > .aspect-ratio {
    padding-bottom: 41.5%;
  }
}
@media (min-width: 55rem) {
  .global-slider .VueCarousel-slide .slider__image img {
    position: absolute;
    z-index: 0;
  }
}
.global-slider .VueCarousel-slide .slider__content {
  background: rgb(33,23,71);
  background: var(--color-purple-dark);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  -webkit-flex-basis: 30%;
          flex-basis: 30%;
  font-size: 0.85rem;
  height: 100%;
  margin: 0 auto;
  max-height: 470px;
  padding: 1.5rem 1.5rem 3rem;
  position: relative;
  width: 90%;
  z-index: 100;
}
@media (min-width: 55rem) {
  .global-slider .VueCarousel-slide .slider__content {
    height: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30%;
    right: 0;
    border-left: 2px solid rgb(118,118,118);
    border-left: 2px solid var(--color-neutral--dusty);
    padding: 2rem;
    z-index: 100;
  }
}
.global-slider .VueCarousel-slide .slider__content .slider__content-wrapper {
  height: 100%;
  overflow-y: hidden;
}
.global-slider .VueCarousel-slide .slider__content > * + * {
  margin-top: 1em;
}
.global-slider .VueCarousel-slide .slider__content .slider__summary {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  margin-bottom: 1rem;
}
.global-slider .VueCarousel-slide .slider__content .slider__summary a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  text-decoration: underline;
}
.global-slider .VueCarousel-slide .slider__content .slider__summary a:hover, .global-slider .VueCarousel-slide .slider__content .slider__summary a:focus, .global-slider .VueCarousel-slide .slider__content .slider__summary a:active {
  color: rgb(254,218,108);
  color: var(--color-gold-light);
}
.global-slider .VueCarousel-slide .slider__content .slider__title {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--lato--bold);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.global-slider .VueCarousel-slide .slider__content .button {
  border: 1px solid rgb(255,255,255);
  border: 1px solid var(--color-neutral--white);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  cursor: pointer;
}
.global-slider .VueCarousel-slide .slider__content .button svg {
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
}

.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
  height: 65px;
  width: 65px;
}
.spinner circle {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  stroke-width: 6;
  stroke-linecap: round;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
@-webkit-keyframes colors {
  0% {
    stroke: rgb(33,23,71);
    stroke: var(--color-purple-dark);
  }
  50% {
    stroke: rgb(65,72,194);
    stroke: var(--color-purple-medium);
  }
  75% {
    stroke: rgb(120,153,242);
    stroke: var(--color-purple-light);
  }
  100% {
    stroke: #73531D;
  }
}
@keyframes colors {
  0% {
    stroke: rgb(33,23,71);
    stroke: var(--color-purple-dark);
  }
  50% {
    stroke: rgb(65,72,194);
    stroke: var(--color-purple-medium);
  }
  75% {
    stroke: rgb(120,153,242);
    stroke: var(--color-purple-light);
  }
  100% {
    stroke: #73531D;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
.sponsors {
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 40em) {
  .sponsors {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.sponsor {
  -webkit-flex: 0 1 100%;
          flex: 0 1 100%;
  margin: 0 1em 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid rgb(221,213,199);
  border-top: 1px solid var(--color-brown--sand);
  font-size: 1.25rem;
  font-size: var(--type-size--3);
  font-weight: 300;
  font-weight: var(--lato--light);
  line-height: 1.2em;
}
@media screen and (min-width: 40em) {
  .sponsor {
    -webkit-flex-basis: calc(50% - 2em);
            flex-basis: calc(50% - 2em);
  }
}
@media screen and (min-width: 65em) {
  .sponsor {
    -webkit-flex-basis: calc(33% - 2em);
            flex-basis: calc(33% - 2em);
  }
}

.card__in__list {
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-bottom: 3rem;
  margin-right: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.cards__list {
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  margin: 0 -1em;
}
@media screen and (min-width: 65rem) {
  .cards__list {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.card {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  font-size: 0.875em;
  height: 100%;
  position: relative;
}
.card .card__graphic--overlay {
  content: "";
  position: absolute;
  height: 105%;
  opacity: 0.6;
  top: 0;
  width: 100%;
  z-index: 1;
}
.card .card__graphic--content {
  bottom: -5%;
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  padding: 0 1rem 1rem;
  opacity: 1;
  position: absolute;
  transition: opacity 0.5s;
  width: 100%;
  z-index: 3;
}
.card .card__graphic--content::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.card .card__graphic--content .card__graphic--heading {
  font-size: 1.125rem;
  font-weight: 900;
  font-weight: var(--lato--black);
  opacity: 1;
  transition: top 0.5s, opacity 0.75s;
}
@media screen and (min-width: 60em) {
  .card .card__graphic--content .card__graphic--heading {
    opacity: 0;
    position: relative;
    top: 100px;
  }
}
.card .card__graphic--content a.card__graphic--contact {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  font-size: .75rem;
  font-size: var(--type-size--5);
  font-weight: 700;
  font-weight: var(--lato--bold);
  text-decoration: none;
  transition: top 0.5s, opacity 0.75s;
}
.card .card__graphic--content a.card__graphic--contact:hover {
  text-decoration: underline;
}
@media screen and (min-width: 60em) {
  .card .card__graphic--content a.card__graphic--contact {
    opacity: 0;
    position: relative;
    top: 50px;
  }
}
@media screen and (min-width: 60em) {
  .card .card__graphic--content {
    opacity: 0;
  }
}
.card .card__graphic {
  position: relative;
}
.card .card__graphic a img {
  opacity: 1 !important;
}
.card .card__label {
  -webkit-align-self: flex-start;
          align-self: flex-start;
  background-color: rgb(73,69,104);
  background-color: var(--color-purple-soft);
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  display: inline-block;
  font-size: 0.75em;
  font-weight: 700;
  font-weight: var(--lato--bold);
  margin-bottom: 1.5em;
  padding: 0.75em 1.5em;
  position: relative;
  z-index: 2;
}
.card .card__content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.card .card__content .card__category {
  color: rgb(96, 96, 96);
  color: var(--color-neutral--gray-dark);
  font-size: 0.75em;
}
.card .card__content .card__category:not(:empty) {
  margin-bottom: 1.5em;
}
.card .card__content .card__title {
  margin-bottom: 0.75rem;
}
.card .card__content .card__title a {
  background-image: linear-gradient(transparent, transparent), linear-gradient(rgb(33,23,71), rgb(33,23,71));
  background-image: linear-gradient(transparent, transparent), linear-gradient(var(--color-purple-dark), var(--color-purple-dark));
  background-size: 100% 3px, 0 3px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
  text-decoration: none;
  transition: background-size 0.3s linear, color 0.15s;
  cursor: pointer;
}
.card .card__content .card__title a:hover,
.card .card__content .card__title a:focus,
.card .card__content .card__title a.hovered {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  text-decoration: underline;
}
.card .card__content .card__summary {
  font-size: 0.875em;
}
.card .card__content .card__summary ul,
.card .card__content .card__summary ol {
  list-style-position: outside;
  padding-left: 1.65em;
}
.card .card__content .card__summary ol {
  list-style-type: decimal;
}
.card .card__content .card__summary ul {
  list-style-type: disc;
}
.card .card__content .card__summary a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.card .card__content .card__summary a:hover, .card .card__content .card__summary a:focus, .card .card__content .card__summary a:active {
  text-decoration: underline;
}
.card .card__content .button {
  margin-top: 1rem;
}
.card .card__actions {
  display: -webkit-flex;
  display: flex;
  line-height: 1.5;
  margin-top: 1.5rem;
}
.card .card__actions:not(:empty) {
  border-top: 1px solid rgb(221,213,199);
  border-top: 1px solid var(--color-brown--sand);
  padding-top: 0.5em;
}
.card .card__actions * + * {
  margin-left: auto;
}
.card .card__actions a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.card .card__actions a:hover, .card .card__actions a:focus, .card .card__actions a:active {
  text-decoration: underline;
}

.card__animated .card__graphic img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.card__animated:hover .card__graphic--content {
  opacity: 1;
}
.card__animated:hover .card__graphic--heading {
  opacity: 1;
  top: 0;
}
.card__animated:hover a.card__graphic--contact {
  opacity: 1;
  top: 0;
}
.card__animated:hover a img {
  cursor: pointer;
  -webkit-transform: scale(1.1) translateX(4%);
          transform: scale(1.1) translateX(4%);
}
.card__animated:hover .card__title a {
  background-size: 0 3px, 100% 3px;
  text-decoration: none !important;
}

.card--scream {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 1em;
}
.card--scream::before {
  content: "";
  background-color: rgba(33, 23, 71, 0.9);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.card--scream .card__content .card__title a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.card--scream .card__content .card__title a:hover, .card--scream .card__content .card__title a:focus {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}
.card--scream .card__content .card__summary a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  text-decoration: underline;
}
.card--scream .card__content .card__summary a:hover, .card--scream .card__content .card__summary a:focus, .card--scream .card__content .card__summary a:active {
  color: rgb(254,218,108);
  color: var(--color-gold-light);
}
.card--scream .card__label {
  letter-spacing: 1px;
  text-transform: uppercase;
}
.card--scream .card__content {
  height: 100%;
}
.card--scream .card__actions:not(:empty) {
  border-top: 1px solid rgb(96, 96, 96);
  border-top: 1px solid var(--color-neutral--gray-dark);
  padding-top: 0.5em;
}
.card--scream .card__actions a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  text-decoration: underline;
}
.card--scream .card__actions a:hover, .card--scream .card__actions a:focus, .card--scream .card__actions a:active {
  color: rgb(254,218,108);
  color: var(--color-gold-light);
}

.card--shout {
  padding-bottom: 1rem;
}
.card--shout .card__graphic {
  width: 100%;
}
.card--shout .card__graphic img {
  height: auto;
  top: 0;
  width: 100%;
}
@supports (object-fit: cover) {
  .card--shout .card__graphic img {
    height: 100%;
    object-fit: cover;
  }
}
.card--shout .card__graphic__16X9 {
  width: 100%;
}
.card--shout .card__graphic__16X9 img {
  height: auto;
  top: 0;
  width: 100%;
}
@supports (object-fit: cover) {
  .card--shout .card__graphic__16X9 img {
    object-fit: cover;
    aspect-ratio: 16/9;
  }
}
.card--shout .card__graphic__4X5 {
  width: 100%;
}
.card--shout .card__graphic__4X5 img {
  height: auto;
  top: 0;
  width: 100%;
}
@supports (object-fit: cover) {
  .card--shout .card__graphic__4X5 img {
    object-fit: cover;
    aspect-ratio: 4/5;
  }
}
.card--shout .card__graphic__4X3 {
  width: 100%;
}
.card--shout .card__graphic__4X3 img {
  height: auto;
  top: 0;
  width: 100%;
}
@supports (object-fit: cover) {
  .card--shout .card__graphic__4X3 img {
    object-fit: cover;
    aspect-ratio: 4/3;
  }
}
.card--shout .card__graphic__1X1 {
  width: 100%;
}
.card--shout .card__graphic__1X1 img {
  height: auto;
  top: 0;
  width: 100%;
}
@supports (object-fit: cover) {
  .card--shout .card__graphic__1X1 img {
    object-fit: cover;
    aspect-ratio: 1/1;
  }
}
.card--shout .card__content {
  height: 100%;
  padding: 1em;
}

.card--talk {
  padding-bottom: 1rem;
}
.card--talk .card__graphic {
  background-color: rgb(238,238,238);
  background-color: var(--color-neutral--white-lilac);
  -webkit-flex: 0 1 500px;
          flex: 0 1 500px;
}
@media screen and (min-width: 50em) {
  .card--talk .card__graphic {
    margin-right: 1.6rem;
  }
}
.card--talk .card__graphic > a {
  display: block;
  height: 100%;
}
.card--talk .card__graphic > div {
  height: 100%;
}
.card--talk .card__graphic img {
  height: 100%;
  width: 100%;
}
@supports (object-fit: cover) {
  .card--talk .card__graphic img {
    height: 100%;
    object-fit: cover;
  }
}
.card--talk .card__graphic__right {
  background-color: rgb(238,238,238);
  background-color: var(--color-neutral--white-lilac);
  -webkit-flex: 0 1 500px;
          flex: 0 1 500px;
}
@media screen and (min-width: 50em) {
  .card--talk .card__graphic__right {
    margin-left: 1.6rem;
  }
}
.card--talk .card__graphic__right > a {
  display: block;
  height: 100%;
}
.card--talk .card__graphic__right > div {
  height: 100%;
}
.card--talk .card__graphic__right img {
  height: 100%;
  width: 100%;
}
@supports (object-fit: cover) {
  .card--talk .card__graphic__right img {
    height: 100%;
    object-fit: cover;
  }
}
.card--talk .card__content {
  -webkit-flex: 1 1 50%;
          flex: 1 1 50%;
  height: 100%;
  padding: 1rem 1rem 0;
}
@media screen and (min-width: 50em) {
  .card--talk .card__content {
    padding: 1rem 0 0;
  }
}
.card--talk.card--talk--full .card__graphic {
  background-color: transparent;
  box-shadow: none;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  padding-top: 1rem;
}
.card--talk.card--talk--full .card__graphic > a {
  height: auto;
}
.card--talk.card--talk--full .card__graphic > div {
  height: auto;
}
@supports (object-fit: cover) {
  .card--talk.card--talk--full .card__graphic img {
    object-fit: contain;
  }
}
.card--talk.card--talk--full .card__graphic__16X9 {
  background-color: transparent;
  box-shadow: none;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  padding-top: 1rem;
}
.card--talk.card--talk--full .card__graphic__16X9 > a {
  height: auto;
}
.card--talk.card--talk--full .card__graphic__16X9 > div {
  height: auto;
}
@supports (object-fit: cover) {
  .card--talk.card--talk--full .card__graphic__16X9 img {
    object-fit: cover;
    aspect-ratio: 16/9;
  }
}
.card--talk.card--talk--full .card__graphic__4X3 {
  background-color: transparent;
  box-shadow: none;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  padding-top: 1rem;
}
.card--talk.card--talk--full .card__graphic__4X3 > a {
  height: auto;
}
.card--talk.card--talk--full .card__graphic__4X3 > div {
  height: auto;
}
@supports (object-fit: cover) {
  .card--talk.card--talk--full .card__graphic__4X3 img {
    object-fit: cover;
    aspect-ratio: 4/3;
  }
}
.card--talk.card--talk--full .card__graphic__4X5 {
  background-color: transparent;
  box-shadow: none;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  padding-top: 1rem;
}
.card--talk.card--talk--full .card__graphic__4X5 > a {
  height: auto;
}
.card--talk.card--talk--full .card__graphic__4X5 > div {
  height: auto;
}
@supports (object-fit: cover) {
  .card--talk.card--talk--full .card__graphic__4X5 img {
    object-fit: cover;
    aspect-ratio: 4/5;
  }
}
.card--talk.card--talk--full .card__graphic__1X1 {
  background-color: transparent;
  box-shadow: none;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 1rem;
  height: 100%;
}
.card--talk.card--talk--full .card__graphic__1X1 > a {
  height: auto;
}
.card--talk.card--talk--full .card__graphic__1X1 > div {
  height: auto;
}
@supports (object-fit: cover) {
  .card--talk.card--talk--full .card__graphic__1X1 img {
    object-fit: cover;
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 50em) {
  .card--talk {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}

.card--whisper {
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0.6rem 0;
  position: relative;
}
.card--whisper .announcement__date {
  margin-bottom: 1rem;
}

.card--location {
  -webkit-flex-flow: column-reverse nowrap;
          flex-flow: column-reverse nowrap;
}
.card--location .card--location--content,
.card--location .card--location--image {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
}
.card--location .card--location--content {
  margin-top: 2rem;
  padding-right: 0;
}
.card--location .card--location--image {
  color: rgb(102,102,102);
  color: var(--color-neutral--granite);
  font-weight: 300;
  font-weight: var(--lato--light);
}
.card--location .card--location--image img {
  display: block;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.card--location .card--location--image p {
  font-size: 0.875em;
  line-height: 1.2;
}
@media screen and (min-width: 55em) {
  .card--location .card--location--image p {
    font-size: 0.775em;
    padding-left: 3em;
  }
}
.card--location .card--location--image hr {
  border-color: rgb(221,213,199);
  border-color: var(--color-brown--sand);
  border-width: 1px 0 0;
  margin: 1em 0;
  opacity: 0.25;
  width: 20%;
}
@media screen and (min-width: 55em) {
  .card--location .card--location--image hr {
    margin-left: 2.35em;
  }
}
.card--location .card--location--image a {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  text-decoration: none;
}
.card--location .card--location--image a:hover, .card--location .card--location--image a:focus {
  cursor: pointer;
  text-decoration: underline;
}
@media screen and (min-width: 65em) {
  .card--location {
    -webkit-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .card--location .card--location--content,
.card--location .card--location--image {
    -webkit-flex: 1 1 50%;
            flex: 1 1 50%;
  }
  .card--location .card--location--content {
    margin-bottom: 0;
    padding-right: 2rem;
  }
}

.dark .card .card__content .card__category {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
}

.who-we-are {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 55em) {
  .who-we-are {
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
}

.who-we-are__intro {
  width: calc(100% + 2em);
  position: relative;
  z-index: 1;
  margin-top: -1em;
  margin-right: -1em;
  margin-left: -1em;
  padding: 2em 1.5em;
  background-color: rgb(243,241,235);
  background-color: var(--color-brown--bone);
  border: 1px solid rgb(221,213,199);
  border: 1px solid var(--color-brown--sand);
}
.who-we-are__intro a {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  transition: color 0.15s;
}
.who-we-are__intro a:hover, .who-we-are__intro a:focus {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
}
@media screen and (min-width: 55em) {
  .who-we-are__intro {
    -webkit-flex: 1 1 50%;
            flex: 1 1 50%;
    padding: 3em 5em 4em;
    font-size: 0.885em;
  }
}

.who-we-are__title {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  font-size: 1.25em;
}
@media screen and (min-width: 55em) {
  .who-we-are__title {
    font-size: 1.6em;
  }
}

.who-we-are__location {
  margin-top: -1em;
}
.who-we-are__location img {
  max-width: 650px;
}
@media screen and (min-width: 55em) {
  .who-we-are__location {
    -webkit-flex: 1 1 50%;
            flex: 1 1 50%;
    margin-top: 1.5em;
    margin-left: -0.5em;
  }
}

.table-of-contents {
  margin-bottom: 1rem;
  position: relative;
}
.table-of-contents.sticky-fixed {
  position: fixed;
  top: 0;
  left: auto;
  width: 100% !important;
}
.table-of-contents .accordion__content {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  max-height: none;
  position: absolute;
  width: 110%;
  padding-right: 10%;
  z-index: 9999;
}
.table-of-contents ol {
  padding-left: 1.5em;
  position: relative;
}
.table-of-contents ol::before {
  content: "";
  background-image: linear-gradient(to bottom, rgba(221, 213, 199, 0), #ddd5c7 10%, #ddd5c7 90%, rgba(221, 213, 199, 0));
  height: 100%;
  position: absolute;
  left: 12px;
  top: 0;
  width: 1px;
}
.table-of-contents a {
  color: rgb(118,118,118);
  color: var(--color-neutral--dusty);
  display: block;
  padding: 0.5em 0;
  position: relative;
  text-decoration: none;
}
.table-of-contents a::before {
  content: "";
  background-color: rgb(221,213,199);
  background-color: var(--color-brown--sand);
  border: 2px solid rgb(255,255,255);
  border: 2px solid var(--color-neutral--white);
  border-radius: 50%;
  height: 11px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: -17px;
  -webkit-transform: translateY(-49%);
          transform: translateY(-49%);
  transition: opacity 0.15s;
  width: 11px;
}
.table-of-contents a:hover, .table-of-contents a:focus {
  text-decoration: underline;
}
.table-of-contents a:hover::before, .table-of-contents a:focus::before {
  opacity: 1;
}
.table-of-contents a.active::before {
  background-color: rgb(33,23,71);
  background-color: var(--color-purple-dark);
  border: 0;
  height: 9px;
  left: -16px;
  opacity: 1;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  width: 9px;
}
.table-of-contents a.active {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
}

.table-of-contents--nav {
  display: none;
}

.table-of-contents--accordion {
  background-color: rgb(255,255,255);
  background-color: var(--color-neutral--white);
  display: block;
  margin-left: -1rem;
  width: 110%;
}

.table-of-contents--accordion .accordion__title {
  padding: 0 1rem;
}

.table-of-contents.sticky-fixed .table-of-contents--accordion {
  width: 100%;
}

.anchor::before {
  content: "";
  display: block;
  position: relative;
  width: 0;
  height: 5em;
  margin-top: -5em;
}

@media screen and (min-width: 45em) {
  .table-of-contents {
    width: auto;
  }
  .table-of-contents a {
    font-size: 0.775em;
    max-width: 9rem;
  }
  .table-of-contents a::before {
    left: -20px;
  }
  .table-of-contents a.active::before {
    left: -19px;
  }
}
@media screen and (min-width: 65rem) {
  .table-of-contents {
    -webkit-align-self: flex-start;
            align-self: flex-start;
    margin: 0;
    position: absolute;
    z-index: 9;
  }
  .table-of-contents.sticky-fixed {
    width: auto !important;
  }

  .table-of-contents--nav {
    display: block;
  }

  .table-of-contents--accordion {
    display: none;
  }

  .anchor::before {
    content: none;
  }
}
@media print {
  .table-of-contents {
    display: none;
  }
}
.videos {
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.video {
  -webkit-flex: 0 1 100%;
          flex: 0 1 100%;
  margin: 0 0.5rem 2rem;
}
.video > a {
  color: rgb(34,34,34);
  color: var(--color-neutral--charcoal);
}
.video .aspect-ratio {
  padding-bottom: 56.25%;
}
.video .video__thumbnail {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
}
.video .video__thumbnail img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.video .video__thumbnail .video__icon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(73, 69, 104, 0.9);
}
.video .video__thumbnail .video__icon svg {
  width: 100%;
  height: 100%;
  fill: rgb(255,255,255);
  fill: var(--color-neutral--white);
}
.video .video__title {
  font-weight: 700;
  font-weight: var(--lato--bold);
}

.videoPlayer__container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.videoPlayer__container .videoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video__wrapper > * {
  display: none;
}
@media screen and (min-width: 60rem) {
  .video__wrapper > * {
    display: block;
  }
  .video__wrapper > *.modal {
    display: -webkit-flex;
    display: flex;
  }
}
.video__wrapper .video__mobile {
  display: block;
}
@media screen and (min-width: 60rem) {
  .video__wrapper .video__mobile {
    display: none;
  }
}

@media screen and (min-width: 40rem) {
  .videos {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
  }

  .video {
    -webkit-flex-basis: calc(50% - 1rem);
            flex-basis: calc(50% - 1rem);
  }
}
@media screen and (min-width: 65rem) {
  .video {
    -webkit-flex-basis: calc(25% - 1rem);
            flex-basis: calc(25% - 1rem);
  }
}
.web-friendly-description p,
.web-friendly-description ol,
.web-friendly-description ul,
.web-friendly-description ul li,
.web-friendly-description ol li {
  font-weight: 400;
  font-weight: var(--lato--regular);
  margin-bottom: 1rem;
}
.web-friendly-description ul,
.web-friendly-description ol {
  list-style-position: outside;
  padding-left: 1.1em;
}
.web-friendly-description ol {
  list-style-type: decimal;
}
.web-friendly-description ul {
  list-style-type: disc;
}

.apiFailBox {
  text-align: center;
  display: inline-block;
  margin: 50px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 72rem) {
  .container {
    max-width: 70rem;
    margin-right: auto;
    margin-left: auto;
  }
}

body {
  overflow-x: hidden;
}

.global-nav,
.global-footer {
  position: relative;
}

main {
  z-index: 5;
}

.scs-paragraph-text a {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
  text-decoration: none;
}
.scs-paragraph-text a:hover, .scs-paragraph-text a:focus {
  text-decoration: underline;
}

section.section__layout[id]::before {
  content: "";
  display: block;
  margin-top: -75px;
  padding-top: 75px;
}

@media screen and (min-width: 65rem) {
  [class*=layout--] {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  @supports (display: grid) {
    [class*=layout--] {
      display: grid;
      grid-gap: 1rem;
    }
  }

  .layout__sidebar {
    -webkit-flex: 0 0 180px;
            flex: 0 0 180px;
  }

  .layout__content {
    -webkit-flex: 1 1 100%;
            flex: 1 1 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .layout__content > p, .layout__content > ul, .layout__content > ol, .layout__content > ul li, .layout__content > ol li {
    font-weight: 400;
    font-weight: var(--lato--regular);
    margin-bottom: 1rem;
  }
  .layout__content > ul, .layout__content > ol {
    list-style-position: outside;
    padding-left: 2em;
  }
  .layout__content > ol {
    list-style-type: decimal;
  }
  .layout__content > ul {
    list-style-type: disc;
  }

  @supports (display: grid) {
    .layout__content {
      padding-right: 0;
      padding-left: 0;
    }

    .layout--full {
      grid-template-columns: 100%;
    }

    .layout--sidebar-left {
      grid-template-columns: 180px 1fr;
    }

    .layout--sidebar-right {
      grid-template-columns: 1fr 180px;
    }

    .layout--sidebar-both {
      grid-template-columns: 180px 1fr 180px;
    }
  }
}
.layout__content > ul {
  list-style-position: outside;
  list-style-type: disc;
  margin-left: 1rem;
}
.layout__content > ul li {
  margin-bottom: 1em;
}

div.uw-columns div.scs-component-bounding-box,
div.uw-columns div.scs-component-bounding-box > div,
div.uw-columns div.scs-custom-component,
div.uw-columns div.scs-component-content,
div.uw-columns div.scs-custom-component-wrapper,
div.uw-columns div.scs-custom-component-wrapper > div {
  height: 100%;
}

.scs-image-caption {
  margin-top: 10px;
}

.scs-paragraph-text p,
.scs-paragraph-text ol,
.scs-paragraph-text ul {
  margin-bottom: 1rem;
}

.scs-paragraph-text ol,
.scs-paragraph-text ul {
  list-style-position: outside;
  padding-left: 1.65em;
}

.scs-paragraph-text ol {
  list-style-type: decimal;
}

.scs-paragraph-text ul {
  list-style-type: disc;
}

.scs-youtube-edit {
  pointer-events: none;
}

.nas-scs-section.scs-sectionlayout > .scs-container-styles,
.nas-scs-section .scs-container-styles,
.layout__sidebar .scs-component-container > .scs-component-bounding-box,
.layout__sidebar .scs-sectionlayout > .scs-container-styles,
.layout__sidebar .scs-componentgroup > .scs-container-styles,
.layout__sidebar .scs-custom-component-wrapper,
.uw-columns-container > .scs-container-styles,
.uw-columns > .uw-content-bucket-container > .scs-container-styles,
.uw-columns .uw-event-list-default-style .scs-custom-component-wrapper,
.uw-columns .uw-project-list-default-style .scs-custom-component-wrapper,
.uw-columns .uw-content-bucket .scs-componentgroup > .scs-container-styles {
  overflow: visible;
}

.full-height {
  height: 100%;
}

.scs-paragraph table td {
  color: inherit !important;
  background-color: unset !important;
  border-color: unset !important;
}

.scs-paragraph-text table td {
  white-space: nowrap;
}
@media screen and (min-width: 40rem) {
  .scs-paragraph-text table td {
    white-space: normal;
  }
}

@media screen and (min-width: 85rem) {
  .sl-two-columns-left .datepicker-end .vue-a11y-datepicker__popup {
    left: -94px;
  }
}
body.scs-edit-mode {
  padding: 0 !important;
}

.tabs-list .scs-component-container > .scs-container-styles {
  padding: 0 0.5em;
}
@media screen and (min-width: 40rem) {
  .tabs-list .scs-component-container > .scs-container-styles {
    padding: 0;
  }
}

.bucket.dark .scs-contentlist ol.scs-pagination li.loadMore a,
.bucket.dark .scs-recommendation ol.scs-pagination li.loadMore a {
  color: white;
}

.bucket.dark .card .card__content .card__summary a {
  color: rgb(255,255,255);
  color: var(--color-neutral--white);
  text-decoration: underline;
}
.bucket.dark .card .card__content .card__summary a:hover, .bucket.dark .card .card__content .card__summary a:focus, .bucket.dark .card .card__content .card__summary a:active {
  color: rgb(254,218,108);
  color: var(--color-gold-light);
}

#sectionContainer .section.section--clean:first-of-type {
  padding-bottom: 0;
}

.scs-facebook-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAChSURBVEiJY2AYBaNgFKACDwYGhoMMDAzfGBgY/kMxzUE+AwPDPyQL6WKxFgMDw28slhJtMQuZFscg6f3LwMDQw8DAcI9Ms0gCyxkQPtxCjgFMZFrMjMT+Ro4BpAS1CxJbHI2NLLeHGMMYSbCY2IRDlJnkBjXFYMAsJgUoIeFtDIhUvQ1NjihASuJCzqdf0Ngk5+GRF8ejFg9/i0fBKBh+AACaECEL1OYivQAAAABJRU5ErkJggg==);
}

.bucket .scs-facebook-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAApElEQVRIiWMYBaNgFKABj/9ogB4BlI9u6X86WKyFzVJSLGYh0+IYZA4jI2MnAwPDPTLNIgksR/LhFhAFw8QCcn3MjMT+BvU1SQaQYrELElscmc3IyIgst4cYw4h2JrEJh5FIrzMRazG1wYBZTApQQsLbkFL1NjQ5ogDRiev////wfMrIyPgFSeoLmhx1LcZnIKlZiWFEJq5Ri0fBKBgF5AEGBgYAl+trJFAmZ+gAAAAASUVORK5CYII=);
}

.scs-twitter-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAEISURBVEiJ7dQ/K0ZRHMDxD6NBDIqyyYIyMJhIXgN5A+QNWJ4X4A3I5M9k5R2YDBSTTUmKIplM5PE8huOpZ7j3us+5Z9L91pnO6Xzq3n6Hurq6/95QiTPruMUnbrCGPixiKgYdwQMmCs5soZ2xXnGO4Rh44feSJ6xk7A/gPQdu4QqbMfAoml0XHWC6a38+B+2s7Ri0037GhZfYxc4f8GQVeEP4z0VA3hqsAp9Goo9VUMJIfEfAR1VhWMV9j/ByCvhQmMuy6EUKlDBCbyXRD8ymgmFMGJ/nArQlvGRJm8FxAdoU+UpltYQT3BWAbeFpnEuFdhpHA2d4wZfwua+xJ4xbf2q0rq6up34AvsOeoUxKAjQAAAAASUVORK5CYII=);
}

.bucket .scs-twitter-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAA70lEQVRIie2VMQrCQBBF34iVhWghKNjZqWChhZUinkHxAgYvYOM5tPYK3sHCwtZD2HuAlWgCQZLNZrOV7GsGMsm8md8Ej8fz9zQMDtyoBMAaEGAG9G0CaqnvoJ7mnZ3KALgCTRvxNB4JLFP6tSxp4rvARtxOGTRI9Cc50v23pFPViJ+/D5RSj7CKyBF45Sx+sbk2ZpsXp+bium6w6JpKl1U+IpI9vqLdSmRuaTyXWPhzcVhWFjEvyoUVxV1QeistjRgUFI+ciKMhHUPpztW1MUMDaRAWF+K54ZV3YOxKGtMFDhnCU/QHqriWejwec4A3O273YlAIjboAAAAASUVORK5CYII=);
}

.scs-linkedin-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAADmSURBVEiJ7dExSkNBFIXhTxG7WFipCBaWVlaCO0ghNoKuwMLC0nW4gLiKNNbu4Al2dqK9iqAgxsIphtH4QrwJBOeHYebeO5wzw6FS+W+c4RlXWJqm8SMGaR1GCs+3zJu0v+Mm0riNDo6wFS280DI/SftGuttgEwfZnfM062Idd7jEy18eNsjWcertFf0dPBS9e+z+JtyW8ShcYLXoraGPlUjjuaIelv8yTidpfI1tLPrK/jWbdcfQx88Z7/uecU4vmz0NE4748W1RN9m5M0njj6J+G0UkwngsZso4hJn6cYhxpVIJ4xPmSy0fFFajggAAAABJRU5ErkJggg==);
}

.bucket .scs-linkedin-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAA4ElEQVRIie2SOwrCQBCGvxGx09pCsLC0slK8gYWdoCewsLAUvIUX8Aj2XkCwNIWdnWewEMGR4AohJObBGpDs1yw7zP7/PBaHo3Ss1AA0CmteAwBTm9qVDLlnm8ZJ1IEZ0H03bY9qgtLCnG0R8XM9oANMAjkbozMCWsAV2AO33FWGdjw34XEo3tcIgOE37Sw7jivuGBM/AE2bxpIhd/lTYxHpiUhNRIK797te2zQOmw5U9aSqD1Xdicg2zbukXx3pFbpfTAGfu5dGxMaonwFTn3tRxrn4K2MrlG/UDofDDsALlShntC4qq0oAAAAASUVORK5CYII=);
}

.scs-pinterest-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFtSURBVEiJ7dSxS1VxGMbxjwpXM0kDC3JoMCFwUByjXALHhpb2RgMn1/6FFmlucqhFwUkQJJR0kmbBSog71NCN1PSadht+78XLAdHuPbchzgOH95z39/B+Oe/7nkOhQoW4j9f4jF+oYA0z6GkHsAtz+I0adrCEVRxFbht38wa/jOJf8AgdDWe38DbOP6I/L+hkFK1gOHKdGU8fyuF7nhf4TRR8Fs+zqOJVxvcifFt5gcvSIl2Pqz7Trxnf08j/uKhgtl3naRD7Uqsn0B35DxnfScRSXuC9gJVw2JBfzfhuR8x2omnwOq7giTS/08ivZHwPIr6/ZN0LNYpv0ic1Js2xhhsNnhGp1TVp1rlpIIpPN4AfxtlNbEZu19kO5Kr5AJxK834ndaMmLeC9dkDhU0AeY1Fq7wmWMd4u6LWAHqM3ck219bJbXdediBv4GffVfwEeirjQDKwVTUk/h6utFvrbN/4u/UQOWgUXKvT/6Q8C6lOntDxCgQAAAABJRU5ErkJggg==);
}

.bucket .scs-pinterest-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAABJElEQVRIie2Uv0oEMRCHvznFPeTwXyFoqYKChVgeYqG9ha9g7xvca/oc2iicCJHViczGuJvEtZH8YNlMdjJfZrIZqqqqgAsXEXAPTP+iQCsxYCjgeFSqjQ/cANIOP032gu+bY3EvTdADhU08WO2Z8VkMBZQUqgazazq2iHi460z2aJKe9EewHRHZ/uFb+9ylxsoCO+cegfMel7eceClAf3ZrwPz7j9z1C44mqtXMDSxFpPG2iFwlMKJKKrWInBrzxIwfzPjI+Cefda80q602eFDOa123G8w3ZaSIzJ0d6lzz0vIPbcADbiPQM9NQRtWGgawroLEdLBWadY+BQ5P5i76X1mGgYX0p6zoB+yWQmHIzflXgrJhYCH7SpvH8W3BV1T8T8A7K/jb0gvJD8AAAAABJRU5ErkJggg==);
}

.scs-rss-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAF4SURBVEiJ7dU/SJVRGMfxj1ciIaEloiG8g4OLm0NNERQE0ugm7QZO4ejgYEO0Bw0FYjS6JLY1CCqKOORSQ1igiAhSNohR14Z7Lve5r1eE6/su8v7gcN7ze857vs/5856XUqUum7rOiW+jJ9WbWMQCdgrOy0mb8hfzuFMkeO8M+AlqeI9qEeCrGMAwJvG5TQKHeFwEPKtBzDm9/BN5QsbxFA/UD1nUPXzPJPAsL3Ac9Cfeoj/Eb2JJ68yH8wDXnN7TY0yjO/XpwXKI/8Lti4LHMIutNgksoDf1u4UfITZzUXBDXbiP1Qx8XnPmD4P/D0N5waGCFxn4VIh/CP5cnuCGXgbAkeYlMhT8P7jRKaBPPfMveIPrye/GRoC8Cu98Df5op+BPWpc1Ah4Ffx9Xkv88+K87Bf/OgNdDrKL+l2rE7iZ/JHjLZw1cOQe8lmmvhucaVkJ7INXfgtfx91zFR+zineYeNzSOg1SeJO+a+lV6oHWFSpUqVYz+A/hIhQFxV5q1AAAAAElFTkSuQmCC);
}

.bucket .scs-rss-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAABKUlEQVRIie2UsUoDQRCGv70gSRHQQkSIGMEijV0KrSSgEAiW6awDCaQSSwsLLcResBHE2msi1nkOIa8SJbqHw7AJx+0eFu4Px7D/7M03s3csUVH/S59KwABolH4IGiwFHP4JOBPQLINdBVpAD7haAT8LSl3U1A9wAKQO+GVI9hgYASdATTYBHDvgF0GojsJPwL7NLcKWY08vOFgUvwEqFl5z5Hd82UPgZQn8Hahb+LbKPftOnB2pAToO+JuY/FTl2r5TywYS4E4Brvn95hPhp95gRwP3Cp5dIm3lbxZl7apC69avKP9BNCf986ITLvmvvtVV5pr1b4X3WAY4UeaR9fuuzVpJoY5+NDfGvIp1y8ZZnpdXgo0xe2q9obZMZSM2fuQBR0VFhRHwBa0GBB8uBziNAAAAAElFTkSuQmCC);
}

.scs-flickr-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAEOSURBVEiJ7dK9SgNBFIbhJ2oTMCpi4Q2otQFB/AGvxp/KTluvJFUa7dTCztpW0yqKjZcQdIVY5IibkF3cXSyEfWHYmXPOfN/snKGmpqbmD7jAoOI4zxKfyjG+Q1Lh4ElolGIDz4r/6Su2ypquxHcJNwVML7E4plGIBKcxb+AYHzmGCc78tG8f72WM0w+kFbE9vE0wfcFm1LSMPszSxn3spOLLuDX5amE39lQyfsR6rOexHfNpnODIsA0iNxfzNp7KGnfCbFyog2aqrhmx74O2I74Q8dIcGr26Ae6xijU8jOX6OKhiOIuu7Ff8GSMr3w2NwvRyRH87elniMznG14b9a+TU5DHAVcm9NTU1/4AvZiiKXRPR3VIAAAAASUVORK5CYII=);
}

.bucket .scs-flickr-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAA1klEQVRIie2UTQrCMBBGX+qq4B/iFaprC26sXkdd68Ib6C1cudFLRgJTCNIGM+2ii7xVmPDm6yShJBKJhBbT5llrbR+naoxpzMgCwrWH0Eu0JANvrRJgpz20QsRlbDSwELfQTOzMmzQwEaGZOEfVO/EavYGJW/6XywT4+AVVsMh7CQ6F1+/i8Psl2ok34s+AStYjb99IrQKmopedgl2YuH6jJ5B7E+au5u2XUp9rg+vG55bLXAHrlr2T50czBl6BOw3iXOnRyCB/mY8eQu9deyQSiYECfAGv5t4zFzv77QAAAABJRU5ErkJggg==);
}

.cke_dialog_contents_body input[type=checkbox],
.cke_dialog_contents_body input[type=radio] {
  position: unset;
  width: unset;
  height: unset;
  overflow: unset;
  margin: unset;
  padding: unset;
  border: unset;
  clip: unset;
}
.cke_dialog_contents_body input[type=checkbox] ~ label,
.cke_dialog_contents_body input[type=radio] ~ label {
  display: unset;
  overflow: unset;
  padding-left: unset;
  letter-spacing: unset;
}

.uw-animation.scs-sectionlayout > .scs-container-styles,
.uw-animation.scs-componentgroup > .scs-container-styles {
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .uw-animation .scs-col,
.uw-animation .scs-inner-row,
.uw-animation .scs-component-container {
    float: none !important;
  }
}
.media__content__news {
  font-weight: 700;
}

@media screen and (min-width: 65rem) {
  #results {
    -webkit-flex: 1 1 70%;
            flex: 1 1 70%;
    padding-left: 3em;
  }
}

.section {
  background-image: linear-gradient(to bottom, #f3f1eb 0, rgba(243, 241, 235, 0) 100%);
  height: auto;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 3rem 0;
  position: relative;
  width: 100vw;
  /* p:last-of-type {
    margin-bottom: 0;
  } */
}
.section.section--clean {
  background-image: none;
}
.section.section--collapse {
  min-height: 0;
}
.section.section--pb0 {
  padding-bottom: 1rem;
}
.section .layout--sidebar-left .layout__sidebar,
.section .layout--sidebar-both .layout__sidebar {
  margin-bottom: 1rem;
}
.section .layout--sidebar-right .layout__sidebar,
.section .layout--sidebar-both .layout__sidebar {
  margin-bottom: 0;
  margin-top: 1rem;
}
.section .layout__sidebar-empty {
  display: none;
}

.section--clean {
  padding-top: 0;
}

@media screen and (min-width: 65rem) {
  .section {
    background-image: linear-gradient(to bottom, #f3f1eb 0, rgba(243, 241, 235, 0) 250px);
  }
  .section.section--collapse .sidebar {
    position: absolute;
  }
  .section .layout--sidebar-left .layout__sidebar,
.section .layout--sidebar-right .layout__sidebar,
.section .layout--sidebar-both .layout__sidebar {
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
  }
  .section .layout__sidebar-empty {
    display: block;
  }
}
.uw-columns-1 > .scs-component-container {
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}

@media screen and (min-width: 40rem) {
  .uw-columns-2 > .scs-component-container {
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 40rem) {
  .uw-columns-3 > .scs-component-container {
    -webkit-flex-basis: 33.333%;
            flex-basis: 33.333%;
    max-width: 33.333%;
  }
}

@media screen and (min-width: 40rem) {
  .uw-columns-4 > .scs-component-container {
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 40rem) {
  .uw-columns-5 > .scs-component-container {
    -webkit-flex-basis: 20%;
            flex-basis: 20%;
    max-width: 20%;
  }
}

.uw-columns {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  margin: 0 -0.4rem;
}
.uw-columns > .scs-component-container, .uw-columns > .scs-component-container.scs-sectionlayout, .uw-columns > .scs-component-container.scs-componentgroup {
  padding: 0.4rem;
}
@media screen and (min-width: 40rem) {
  .uw-columns .scs-component-container:last-of-type .bucket {
    margin-right: 0.75em;
  }
}
@media screen and (min-width: 40rem) {
  .uw-columns .scs-component-container:first-of-type .bucket {
    margin-left: 0.75em;
  }
}
@media screen and (min-width: 40rem) {
  .uw-columns {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.about-page .container {
  margin: 10em auto;
}
.about-page .container .ind-board-container img {
  width: 100%;
}
@media screen and (min-width: 60em) {
  .about-page .flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
  }
  .about-page .flex-container .half-half {
    -webkit-flex: 0 0 46%;
            flex: 0 0 46%;
  }
  .about-page .boards-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
  .about-page .boards-container .ind-board-container {
    -webkit-flex: 0 0 32%;
            flex: 0 0 32%;
  }
  .about-page .team-members__container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .about-page .team-members__container .team-member {
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}

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

.showhide .showhide__wrapper {
  overflow: hidden;
  position: relative;
  transition: max-height 0.25s ease;
}
.showhide .showhide__wrapper::after {
  background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
.showhide.showhide--visible .showhide__wrapper::after {
  opacity: 0;
  content: normal;
}
.showhide .showhide__trigger {
  color: rgb(33,23,71);
  color: var(--color-purple-dark);
  margin-top: 1rem;
}
.showhide .showhide__trigger:focus {
  outline-color: rgb(33,23,71);
  outline-color: var(--color-purple-dark);
  outline-offset: 7px;
}
.showhide .showhide__trigger:hover {
  color: rgb(65,72,194);
  color: var(--color-purple-medium);
}

/*# sourceMappingURL=http://localhost:5050/css/nasem.css.map*/