html {
  font-family: proxima-nova;
}

/*
    https://www.joshwcomeau.com/css/custom-css-reset/

  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
}

/*
  2. Remove default margin
*/
* {
  margin-top: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  overflow-x: hidden;
}

html {
  background: #111;
}

* {
  color: var(--text-color, #333);
}

em, strong {
  color: inherit;
}

a {
  transition: var(--link-transition, var(--transition-time, 0.4s) all ease);
  color: var(--link-color);
  text-decoration: var(--link-underline);
  background: var(--link-bg-color);
}
a:visited {
  color: var(--link-color-visited, var(--link-color));
  background: var(--link-visited-bg-color);
}
a:hover, a:focus {
  color: var(--link-color-hover);
  background: var(--link-hover-bg-color);
}

.theme-black-bg,
.theme-dark-bg {
  --text-color: #eee;
  --link-color-hover: #fff;
}
.theme-black-bg h3,
.theme-dark-bg h3 {
  --text-color: #aaa;
  --link-color: #fff;
  --link-color-hover: #C24CE6;
}
.theme-black-bg p, .theme-black-bg li,
.theme-dark-bg p,
.theme-dark-bg li {
  --link-color-hover: #000;
  --link-hover-bg-color: #ff0;
}
.theme-black-bg p a, .theme-black-bg li a,
.theme-dark-bg p a,
.theme-dark-bg li a {
  font-weight: bold;
}

.bg-color-gray {
  --bg-color: #1f1f2c;
}

.section.title-on-side.bg-color-gray h2 {
  color: #fff;
}

:root {
  --underline-color-hover: #f00;
  --underline-color: #aaa;
}

.section h3 a {
  --underline-color: #333;
  --underline-color-hover: #752f8a;
  text-decoration: none;
  position: relative;
  background-repeat: no-repeat;
  background-position: 0px bottom;
  transition: background 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-property: background, color;
  background-image: linear-gradient(to right, var(--underline-color-hover) 0%, var(--underline-color-hover) 100%), linear-gradient(to right, var(--underline-color) 0%, var(--underline-color) 100%);
  background-size: 0% 1px, 100% 1px;
}
.section h3 a:hover, .section h3 a:focus {
  opacity: 1;
  background-size: 100% 1px;
}

blockquote {
  background: #161616;
  border-left: 1px solid #444;
  margin: 2rem 0;
  padding: 1rem;
}
blockquote p {
  font-size: 90%;
  font-style: italic;
}
blockquote p:last-child {
  margin: 0;
}

hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid #444;
}

/*
:root {
	--underline-color: #f00;
	--underline-color-2: #aaa;
}

a {
	background-image: linear-gradient(to right, var(--underline-color) 0%, var(--underline-color) 100%), linear-gradient(to right, var(--underline-color-2) 0%, var(--underline-color-2) 100%);
	transition: background 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s !important;
	display: block;
background-position-x: 0px, 0px;
	background-position-y: 100%, 100%;
	background-size: 100% 1px, 100% 1px;
}
a:hover {
	background-size: 100% 1px;
}
*/
p a, li a {
  text-decoration: underline;
  text-decoration-thickness: 0.6px;
  text-underline-offset: 0.2rem;
}

/*
	Todo
	====

	-	Change all variables to --font-[class]-[size]-[attr]
		so --font-sans-larger-size instead of --font-sans-size-larger
	-	--u-lh is the universal line-height, which can be overridden via CSS vars
*/
:root {
  --font-sans-family: "proxima-nova";
  --font-sans-reg-size: 1.3rem;
  --font-sans-reg-lh: 1.24;
  --font-sans-size-larger: 2rem;
  --font-sans-larger-lh-condensed: 1.3;
  --font-sans-narrow: "acumin-pro-extra-condensed","Arial Narrow","Helvetica Condensed";
}

body, p, li {
  font-family: var(--font-sans-family, sans-serif);
  font-size: var(--font-sans-reg-size, 1.2rem);
  line-height: var(--font-sans-reg-lh, var(--u-lh, 1.2));
}

.event_intro {
  font-family: var(--font-sans-family, sans-serif);
  font-size: var(--font-sans-reg-size, 1.2rem);
  line-height: var(--font-sans-reg-lh, var(--u-lh, 1.2));
  line-height: var(--font-reg-lh-condensed, var(--font-lh-condensed, 1.2));
}

.inner-content h2, .inner-content h3 {
  margin-bottom: 0.4em;
  margin-top: 1.2em;
}
.inner-content h3 {
  --text-color: #fff;
}

/*

h3 {
	margin-bottom: var(--h3-margin-bottom, var(--u-margin-bottom, 1rem));

	&:not(:first-of-type) {
	  margin-top: var(--h3-margin-bottom, var(--u-margin-top, 2em));
	}	
}

*/
.inner-page h1 {
  font-family: var(--font-sans-narrow);
  font-weight: lighter;
  font-size: calc(1.725rem + 5.7vw);
  line-height: 0.9;
}
@media (min-width: 1200px) {
  .inner-page h1 {
    font-size: 6rem;
  }
}
.inner-page h2 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  --text-color: #fff;
}
.inner-page h3 {
  --text-color: #fff;
  border-bottom: 1px solid #333;
}

.section.title-on-side h2 {
  font: normal 300 1.75em/1.1 var(--font-sans-narrow);
  text-transform: uppercase;
  font-size: calc(1.625rem + 4.5vw);
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media (min-width: 1200px) {
  .section.title-on-side h2 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 65rem) {
  .section.title-on-side h2 {
    font-size: 6rem;
  }
}

.intro {
  font-family: var(--font-sans-family, sans-serif);
  font-size: var(--font-sans-size-larger, 1.1rem);
  line-height: var(--font-sans-larger-lh-condensed, var(--font-lh-condensed, 1.2));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 50rem !important;
  transform: translateX(calc(50vw - 50%));
  max-width: 100vw;
  /*		width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      max-width: none;	*/
  padding: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
}

.floating-back-btn {
  position: fixed;
  left: clamp(2rem, 6vw, 6rem);
  bottom: clamp(2rem, 6vw, 6rem);
}
.floating-back-btn svg {
  fill: var(--fill-color, #2b64ad);
  width: 2rem;
}
.floating-back-btn a {
  display: inline-block;
  padding: 1rem 1rem 0.4rem 1rem;
  font-family: var(--font-sans-narrow);
  font-size: clamp(3rem, 10vw, 4rem);
}
.floating-back-btn a:hover, .floating-back-btn a:focus {
  --link-hover-bg-color: #2b64ad;
  --link-color-hover: #000;
  --fill-color: #fff;
}

/*
$light-red: #bb5041;
$red: #EA3D24;
$orange: #DD9F40;
$yellow: #fff151;
$light-blue: #00a0d5;
$blue: #00ccf5;
$magenta: #AC296C;
*/
.cover {
  position: absolute;
}

/*	Sets up a media query. This expects that all of a project's breakpoints will
      be stored in a map named $breakpoints, as follows:

$breakpoints: (
  "small": 30em,
  "medium": 50em,
  "large": 70em
);	
  */
@media screen and (min-width: 40rem) {
  .cover {
    position: fixed;
  }
}
zoom-starfield {
  z-index: -1;
}

.cover-section {
  height: 100vh;
  width: 100vw;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-uncertainty {
  font-weight: bold;
  padding-right: 0.4rem;
}

@keyframes hide-fallback {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*  Here's how this is going to work
    On any element that's hidden so there won't be a flash of it
    before the animation plays, have a @include no-js-fallback()
    mixin. That'll apply a delayed animation that unsets a series
    of properties that are/could be used for animation.

    This might need some tailoring. Maybe the mixin includes a
    sort of database of CSS animation-friendly properties, as well
    as their base states? So you could specify in the fallback
    which properties you want to reset.

    Why a delayed animation? We're giving JS time to come in, esp
    if we're using a framework like jQuery.
*/
@keyframes reveal-down {
  0% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(50% 0 0 0);
  }
}
@keyframes reveal-up {
  0% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0% 0 0% 0);
  }
}
@keyframes reveal-right {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0% 0 0% 0);
  }
}
/*
@keyframes blur-in {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(0.2vw);
  }
}
*/
@keyframes shift-right {
  0% {
    opacity: 0;
    transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes black-to-white {
  0% {
    color: #000;
    -webkit-text-stroke: 2px #aaa;
  }
  100% {
    color: #fff;
    -webkit-text-stroke: 2px #fff;
  }
}
@keyframes get-smaller {
  0% {
    font-size: 14vw;
    opacity: 1;
    color: #fff;
  }
  100% {
    font-size: 12vw;
    opacity: 0.7;
    color: #ccf;
  }
}
@keyframes get-larger {
  0% {
    font-size: 14vw;
    color: #fff;
  }
  100% {
    font-size: 18vw;
    color: #fdf251;
  }
}
html {
  background: #000;
}

.title-container h1 {
  margin: 0;
}

.section-cover {
  width: 100vw;
  height: 100vh;
}

.title-canvas {
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  align-content: center;
}

.mf {
  --text-color: #000;
  font-family: var(--font-sans-narrow);
  font-size: 14vw;
  text-transform: uppercase;
  animation-delay: 0.2s;
  z-index: 10;
}
.mf strong {
  color: unset;
}

.cover {
  height: 100vh;
  width: 100vw;
}

h1.mf {
  font-weight: normal;
}

.mf-1 {
  animation-name: reveal-right;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  clip-path: inset(50% 0 50% 0);
  padding: 2rem 0;
}
.mf-1 > * {
  color: #fff;
  animation-delay: 1s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  display: block;
  line-height: 0.8;
}
.mf-1 .get-smaller {
  animation-name: get-smaller;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s;
}
.mf-1 .get-larger {
  animation-name: get-larger;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s;
}
.mf-1 .black-to-white {
  animation-name: black-to-white;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 2.2s;
}

.mf-2 {
  color: #fff;
  animation-name: reveal-down;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  clip-path: inset(50% 0 50% 0);
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.subtitle-item {
  opacity: 0;
  animation-name: shift-right;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.title-subtitle {
  position: relative;
  z-index: 10;
  display: flex;
  grid-template-columns: 1fr 1fr;
  font-size: 2rem;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}

.subtitle-text {
  color: #fff;
}
.subtitle-text img {
  height: 3rem;
}

.subtitle-year {
  text-align: right;
  clip-path: inset(0 100% 0 0);
  animation-name: reveal-right;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.subtitle-year strong {
  background: #8f8fb0;
  background: #31314b;
  color: #fff;
  border-radius: 0.2rem;
  padding: 0.2rem 0.6rem;
}

.js .title-subtitle * {
  opacity: 1;
}
.no-js .title-subtitle * {
  opacity: 0;
  animation-name: fallback !important;
  animation-duration: 1s !important;
  animation-fill-mode: forwards !important;
  animation-delay: 1s;
}

@media (x-prefers-reduced-motion) {
  zoom-starfield {
    display: none;
  }
}
.no-js .mf-1,
.no-js .mf-2,
.no-js .section h2 {
  animation-name: fallback !important;
  animation-duration: 1s !important;
  animation-fill-mode: forwards !important;
}

.animated-down-arrow {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
  left: 0;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: 900;
  color: #fff;
  animation-name: bounce;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  font-size: 2rem;
  opacity: 0.3;
  transition: 0.4s opacity ease;
}
.animated-down-arrow svg {
  fill: #fff;
  width: 2rem;
}
.toggle-0pfrom-topOfWindow .animated-down-arrow {
  opacity: 0;
}

@keyframes bounce {
  0% {
    transform: translateY(0.3em);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.3em);
  }
}
.section {
  background-color: var(--bg-color);
  padding: 1rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  scroll-margin-top: 3em;
}

.inner-content {
  max-width: var(--mw, 40rem);
}

.section_inner {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.section:not(.has-title) .inner-content {
  margin-left: auto;
  margin-right: auto;
}

.section.title-on-side.has-title .section_inner {
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 65rem) {
  .section.title-on-side.has-title .section_inner {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
.section.title-on-side:not(.has-title) .section_inner {
  margin-left: auto;
  margin-right: auto;
}

.section.title-on-side .sec_title {
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 65rem) {
  .section.title-on-side .sec_title {
    width: 22vw;
  }
}
.section.title-on-side h2 {
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
  opacity: 0;
  transition: 1s all ease;
  transform: translateX(-2rem);
  color: #fdf251;
}
@media screen and (min-width: 65rem) {
  .section.title-on-side h2 {
    position: sticky;
    top: 10rem;
  }
}
.section.title-on-side h2:after {
  transition: 1s all ease;
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 0;
  height: 3px;
  background-image: linear-gradient(to right, #fdf251 0%, #fdf251 25%, #2b64ad 25%, #2b64ad 50%, #752f8a 75%, #752f8a 100%);
}
.section.title-on-side.top-75pfrom-topOfWindow h2 {
  opacity: 1;
  transform: translateX(0);
}
.section.title-on-side.top-75pfrom-topOfWindow h2:after {
  width: 14rem;
}

.card_btn {
  display: flex;
  position: relative;
}

:root {
  --mw-1: 100ch;
  --mw-2: 120ch;
  --mw-3: 140ch;
  --mw-4: 160ch;
  --mw-5: none;
}

.mw-1 {
  --current-max-width: var(--mw-1);
  max-width: var(--mw-1);
}

.mw-inner-1 .inner-content {
  max-width: var(--mw-1);
}

@media only screen and (min-width: 40rem) {
  .mw-sm-1 {
    max-width: 100ch;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-1 {
    max-width: 100ch;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-1 {
    max-width: 100ch;
  }
}
@media only screen and (min-width: 40rem) {
  .mw-sm-1 {
    max-width: 100ch;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-1 {
    max-width: 100ch;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-1 {
    max-width: 100ch;
  }
}
.mw-2 {
  --current-max-width: var(--mw-2);
  max-width: var(--mw-2);
}

.mw-inner-2 .inner-content {
  max-width: var(--mw-2);
}

@media only screen and (min-width: 40rem) {
  .mw-sm-2 {
    max-width: 120ch;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-2 {
    max-width: 120ch;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-2 {
    max-width: 120ch;
  }
}
@media only screen and (min-width: 40rem) {
  .mw-sm-2 {
    max-width: 120ch;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-2 {
    max-width: 120ch;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-2 {
    max-width: 120ch;
  }
}
.mw-3 {
  --current-max-width: var(--mw-3);
  max-width: var(--mw-3);
}

.mw-inner-3 .inner-content {
  max-width: var(--mw-3);
}

@media only screen and (min-width: 40rem) {
  .mw-sm-3 {
    max-width: 140ch;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-3 {
    max-width: 140ch;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-3 {
    max-width: 140ch;
  }
}
@media only screen and (min-width: 40rem) {
  .mw-sm-3 {
    max-width: 140ch;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-3 {
    max-width: 140ch;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-3 {
    max-width: 140ch;
  }
}
.mw-4 {
  --current-max-width: var(--mw-4);
  max-width: var(--mw-4);
}

.mw-inner-4 .inner-content {
  max-width: var(--mw-4);
}

@media only screen and (min-width: 40rem) {
  .mw-sm-4 {
    max-width: 160ch;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-4 {
    max-width: 160ch;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-4 {
    max-width: 160ch;
  }
}
@media only screen and (min-width: 40rem) {
  .mw-sm-4 {
    max-width: 160ch;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-4 {
    max-width: 160ch;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-4 {
    max-width: 160ch;
  }
}
.mw-5 {
  --current-max-width: var(--mw-5);
  max-width: var(--mw-5);
}

.mw-inner-5 .inner-content {
  max-width: var(--mw-5);
}

@media only screen and (min-width: 40rem) {
  .mw-sm-5 {
    max-width: none;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-5 {
    max-width: none;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-5 {
    max-width: none;
  }
}
@media only screen and (min-width: 40rem) {
  .mw-sm-5 {
    max-width: none;
  }
}
@media only screen and (min-width: 65rem) {
  .mw-md-5 {
    max-width: none;
  }
}
@media only screen and (min-width: 70rem) {
  .mw-lg-5 {
    max-width: none;
  }
}
.mw-standard {
  max-width: 40rem;
}

.mw-fit-content {
  max-width: fit-content;
}

.stretched-link:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.clip-frame {
  height: max(100%, 100vh);
  position: absolute;
  width: 100%;
  clip-path: inset(0 0 0 0);
  top: 0;
  left: 0;
}

.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.center-content {
  text-align: center;
}

.sec-contact {
  --text-color: #aaa;
  padding: 8rem 0 8rem 0;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--u-margin-below, 1rem);
}
.meta-list li {
  border-bottom: var(--list-item-border, 1px solid var(--list-item-border-color, #00f));
  padding: var(--clean-list-padding);
  padding-left: 0;
}
.meta-list li.is-link > a {
  padding: 0;
}
.meta-list li.is-link > a a {
  padding: var(--clean-list-padding);
}

@supports (selector(:has(p))) {
  /* Supported! */
}
:root {
  --list-item-border-color: #222;
  --clean-list-padding: 0.4rem 0.8rem;
}

:root {
  --media-width: 20rem;
}

.Media {
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 70rem) {
  .Media {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1em;
    gap: var(--media-gap, 2rem);
  }
}

.Media-grid {
  display: grid;
  justify-items: start;
  margin-bottom: 1em;
  gap: var(--media-gap, 2rem);
  grid-template-columns: var(--media-width, 10rem) 1fr;
}

.Media-figure {
  width: var(--media-width, 10rem);
}

.Media-body {
  flex: 1;
}

.Media-body,
.Media-body :last-child {
  margin-bottom: 0;
}

.Media-title {
  margin: 0 0 0.5em;
}

.Media--center {
  align-items: center;
}

.Media--reverse > .Media-figure {
  order: 1;
  margin: 0 0 0 1em;
}

.vassar-masthead {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 14rem;
  z-index: 10;
}
.vassar-masthead .vassar-masthead-link {
  display: block;
  opacity: 0.4;
  transition: 0.4s all ease;
}
.vassar-masthead .vassar-masthead-link:hover, .vassar-masthead .vassar-masthead-link:focus {
  opacity: 0.8;
}
.vassar-masthead svg {
  fill: #fff;
}

.inner-page .header {
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 40rem) {
  .inner-page .header {
    display: flex;
    width: 100%;
    flex: 1;
    flex-flow: row-reverse;
  }
}
.inner-page .vassar-masthead {
  position: static;
  margin-top: 2rem;
  margin-right: 2rem;
}
.inner-page .vassar-masthead-link {
  width: 10rem;
  margin-left: 1.8rem;
}
.inner-page .site-masthead {
  width: 100%;
}
.inner-page .site-masthead-link {
  display: block;
  width: 14rem;
  margin: 2rem;
}
.inner-page .site-masthead-link img {
  transition: 0.4s all ease;
  width: 100%;
}
.inner-page .site-masthead-link:hover img, .inner-page .site-masthead-link:focus img {
  filter: brightness(2);
}

.has-bg-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 0 100%;
}

.event {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}
.event .meta-item {
  font-family: var(--font-sans-family, sans-serif);
  font-size: var(--font-sans-size-small, 1.1rem);
}
.event h3 {
  font-size: calc(1.365rem + 1.38vw);
  line-height: 1.2;
  margin-top: 0;
  color: #aaa;
}
@media (min-width: 1200px) {
  .event h3 {
    font-size: 2.4rem;
  }
}

.event_intro,
.event_info {
  margin-bottom: 1rem;
  max-width: 40rem;
}

.Media-figure {
  border: 1px solid #333;
}

.event_image.Media-figure {
  margin-bottom: 1rem;
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 70rem) {
  .event_image.Media-figure {
    margin-bottom: 0;
  }
}

/*
.event {
   display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto 1fr;
  gap: 0 2rem;
  grid-auto-flow: row;
  grid-template-areas:
    "event_image event_info"
    "event_image event_content";


    margin-bottom: 4rem;
}

.event_image { grid-area: event_image; }

.event_info { grid-area: event_info; }

.event_content { grid-area: event_content; }


.event_image {
  img {
    position: sticky;
    top: 10vh;
  }
}
*/
.nav {
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 70rem) {
  .nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1;
    transition: 1s all ease;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: scale(1.4);
  }
}
.nav ul {
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 70rem) {
  .nav ul {
    display: flex;
    padding: 0;
    justify-content: center;
    gap: 1rem;
  }
}
.nav li {
  list-style: none;
}
.nav a {
  color: #fff;
  padding: 1.2rem 0.4rem;
  font-size: 2rem;
  font-weight: bold;
  display: block;
  text-align: center;
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 70rem) {
  .nav a {
    display: inline-block;
    text-align: left;
  }
}
.nav:not(.toggle-0pfrom-topOfWindow) a {
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
.nav:not(.toggle-0pfrom-topOfWindow) a:hover, .nav:not(.toggle-0pfrom-topOfWindow) a:focus {
  color: #2b64ad !important;
  text-decoration: underline;
}
@media screen and (min-width: 65rem) {
  .nav:not(.toggle-0pfrom-topOfWindow) a:hover, .nav:not(.toggle-0pfrom-topOfWindow) a:focus {
    color: #fff !important;
    filter: blur(4px);
    text-decoration: none;
  }
}
.nav.toggle-0pfrom-topOfWindow {
  transform: scale(1);
}
.nav.toggle-0pfrom-topOfWindow a {
  color: #fff;
  -webkit-text-stroke: 1px #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.nav.toggle-0pfrom-topOfWindow a:hover, .nav.toggle-0pfrom-topOfWindow a:focus {
  color: #2b64ad;
  -webkit-text-stroke: 1px #2b64ad;
  text-decoration: none;
  border-bottom: 2px solid #2b64ad;
}

.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grid {
  padding: 3rem;
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
  /*	Sets up a media query. This expects that all of a project's breakpoints will
        be stored in a map named $breakpoints, as follows:

  $breakpoints: (
    "small": 30em,
    "medium": 50em,
    "large": 70em
  );	
    */
}
@media screen and (min-width: 40rem) {
  .grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 65rem) {
  .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

a.image-btn {
  position: relative;
  border: 2px solid #2b64ad;
  display: inline-block;
}
a.image-btn .image-btn_label {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  transition: 0.4s all ease;
}
a.image-btn:hover .image-btn_label, a.image-btn:focus .image-btn_label {
  background: #2b64ad;
  color: #000;
}

.d-grid {
  display: grid;
}

@media only screen and (min-width: 40rem) {
  .cols-sm-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 65rem) {
  .cols-md-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 70rem) {
  .cols-lg-2 {
    grid-template-columns: 1fr 1fr;
  }
}
