@charset "UTF-8";
/*===================
RESET
===================*/
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, select {
  margin: 0;
  padding: 0;
  border: 0;
}

ol, ul, li {
  list-style: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clear {
  clear: both;
}

.gridImage__edit {
  display: block !important;
}

.gridImage__edit span {
  display: none;
}

.gridImage__edit:hover span {
  display: inline;
}

/*===================
VARIABLES
===================*/
/*===================
BASE
===================*/
body {
  padding: 0;
  margin: 0;
  font-family: "Helvetica Neue", helvetica, sans-serif, sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.4rem;
  height: 100%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a {
  color: #007bff;
  text-decoration: none;
}

h1 {
  font-family: "tiempos";
  font-weight: normal;
  letter-spacing: -0.19px;
  width: 100%;
  padding: 0 0 1rem 0;
  font-size: 2.4em;
  line-height: 3rem;
}

h2 {
  font-family: "tiempos";
  font-weight: normal;
  letter-spacing: -0.19px;
  width: 100%;
  font-size: 1.8em;
  line-height: 3rem;
}

h3 {
  font-family: "tiempos";
  font-weight: normal;
  letter-spacing: -0.19px;
  width: 100%;
  font-size: 1.4em;
  line-height: 2.2rem;
}

p {
  padding: 0 0 1rem 0;
  margin: 0;
  font-size: 1em;
  line-height: 1.6rem;
}

.bold {
  font-weight: 400;
}

img {
  max-width: 100%;
  width: 100%;
}

.hide {
  visibility: hidden;
  opacity: 0;
}

.show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.center {
  text-align: center;
}

.container {
  width: 100vw;
  min-height: 100vh;
}

.content {
  margin-left: 0px;
  padding-top: 6rem;
}

.content-inner {
  width: 100%;
  padding: 0 1rem;
  margin-bottom: 4rem;
}

.full-bleed {
  margin-left: -1rem;
  margin-right: -1rem;
  width: calc(100% + 2rem);
  margin-top: 1rem;
}

.mt-m {
  margin-top: 1rem;
}

.mt-x {
  margin-top: 2rem;
}

.mt-xl {
  margin-top: 4rem;
}

.mb-xl {
  margin-bottom: 4rem;
}

.align-right {
  text-align: right;
}

.caption {
  font-size: x-small;
  color: #929292;
  line-height: 1.2em;
  padding-top: 4px;
  text-align: right;
}

.hr {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid black;
}

.chat-prompt p {
  text-align: right;
}

.chat-response p {
  text-align: left;
}

.footnote-ref {
  vertical-align: super;
  line-height: 1;
  margin-left: 0.2rem;
}
.footnote-ref a {
  color: #007bff;
  font-size: 0.888em;
}

.footnotes {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid black;
}
.footnotes ol, .footnotes li {
  list-style: decimal;
  padding-left: 0;
  list-style-position: inside;
  font-size: 0.888em;
}
.footnotes ol a.footnote-backref, .footnotes li a.footnote-backref {
  color: #007bff;
  font-size: 0.888em;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio = 9/16 = 0.5625 = 56.25% */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.glightbox2,
.grid-3 a {
  text-decoration: none;
}

.plyr {
  min-width: auto;
}

@media (min-width: 968px) {
  .content {
    margin-left: 250px;
  }
  .content-inner {
    padding: 0 4rem;
  }
  .plyr {
    min-width: 200px;
  }
}
/*===================
NAVIGATION
===================*/
li.nav-link {
  font-weight: 500;
}

li.nav-link::before {
  content: "→ ";
}

li.subnav-link {
  font-weight: 400;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* Hidden by default */
  width: 250px;
  height: 100vh;
  background-color: #f4f4f4;
  -webkit-box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease; /* Smooth slide-in effect */
  z-index: 1000;
  padding: 4rem 1rem;
}

/* Sidebar expanded */
.sidebar.expanded {
  left: 0; /* Slide in from the left */
}

.sidebar ul {
  list-style: none;
}

.sidebar a {
  color: #2f2f2f;
  text-decoration: none;
}

/* Toggle button styles */
.toggle-btn {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  background-color: #f4f4f4;
  color: #2f2f2f;
  border: none;
  cursor: pointer;
  z-index: 1100; /* Ensure it stays above the sidebar */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
}

li.subnav-link::before {
  content: "●";
  display: inline-block;
  font-size: 0.35rem;
  margin-right: 15px;
  vertical-align: middle;
}

.nav-link.active > a,
.subnav-link.active > a {
  color: #007bff;
}

/* Sidebar expanded */
.sidebar.expanded {
  left: 0; /* Slide in from the left */
}

/* Always expanded on larger screens */
@media (min-width: 968px) {
  .sidebar {
    left: 0; /* Always visible */
  }
  .toggle-btn {
    display: none; /* Hide the toggle button */
  }
}
/*===================
FONTS
===================*/
@font-face {
  font-family: "tiempos";
  src: url("/site/assets/fonts/Tiempos/TiemposHeadlineWeb-Regular.eot");
  src: url("/site/assets/fonts/Tiempos/TiemposHeadlineWeb-Regular.woff") format("woff"), url("/site/assets/fonts/Tiempos/TiemposHeadlineWeb-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Fade-out animation */
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Fade-in animation */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Define animations for the old and new content with a subtle fade-out and fade-in */
::view-transition-old(fade) {
  -webkit-animation: fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1) both;
          animation: fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

::view-transition-new(fade) {
  -webkit-animation: fade-in 200ms cubic-bezier(0, 0, 0.2, 1) both;
          animation: fade-in 200ms cubic-bezier(0, 0, 0.2, 1) both;
}

/* tie the view transition to a given CSS class */
.fade-transition {
  view-transition-name: fade;
}

/*===================
BUTTONS
===================*/
/*===================
FORMS
===================*/
.form_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.formfield_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: auto;
  gap: 2rem;
}
.formfield_container input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

input {
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid black;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  height: auto;
  background-color: black;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.cta_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cta_text_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2rem 1rem 2rem;
}

.cta_icon_background {
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.confirmation {
  background-color: black;
  padding: 1rem;
  border-radius: 4px;
  color: white;
  text-align: center;
  scroll-margin-top: 4rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}

sub {
  background-color: #f4f4f4;
}

@media (min-width: 620px) {
  .form_container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .formfield_container {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
/*===================
BREADCRUMBS
===================*/
.breadcrumbs {
  width: 100%;
  font-size: 0.875rem;
  color: #929292;
  width: 100%;
  font-size: 0.875rem;
  color: #929292;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.breadcrumbs img.icon {
  width: auto;
}

/*===================
FONT SIZES
===================*/
.xxl {
  font-size: 2.4em;
}

.xl {
  font-size: 1.8em;
}

.l {
  font-size: 1.4em;
}

.m {
  font-size: 1em;
}

.s {
  font-size: 0.888em;
}

.xs {
  font-size: 0.7em;
}

.xxs {
  font-size: 8px;
}

/*===================
GRIDS
===================*/
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  margin-bottom: 1rem;
  line-height: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin-bottom: 1rem;
  line-height: 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  margin-bottom: 1rem;
  line-height: 0;
}

/*===================
FOOTER
===================*/
.footer {
  padding: 2rem;
  background-color: #f4f4f4;
  color: #2f2f2f;
  font-size: 0.888em;
}

.results-container {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  gap: 4rem;
}

.character-logic {
  height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}

.emoji-form {
  width: 100%;
  overflow: hidden;
}

.emoji-btn {
  font-size: 24vw;
  line-height: 1;
  display: inline-block;
  width: 100%; /* Ensure it scales with the container */
  height: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.emoji-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.emoji-container {
  text-align: center;
  margin-top: 4rem;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.meaning {
  font-size: 20px;
  padding-top: 1rem;
}

#emoji-input {
  font-size: 24px;
  width: 100%;
  text-align: center;
  border: none;
  padding: 10px;
  background-color: #fff;
}

input::-webkit-input-placeholder {
  opacity: 0.5;
  font-size: 12px;
}

input::-moz-placeholder {
  opacity: 0.5;
  font-size: 12px;
}

input:-ms-input-placeholder {
  opacity: 0.5;
  font-size: 12px;
}

input::-ms-input-placeholder {
  opacity: 0.5;
  font-size: 12px;
}

input::placeholder {
  opacity: 0.5;
  font-size: 12px;
}

#submit, #start {
  display: block;
  margin: 40px auto;
  font-size: 18px;
  padding: 0.6rem 1rem;
}

#submit {
  display: none;
}

#welcome-screen {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

#welcome-screen h1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

h1.results-header.scroll-here {
  padding-top: 4rem;
}

.results {
  width: 100%;
  margin: 0 auto;
}

.results-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.results-img img {
  padding: 3rem;
}

p.first-item {
  background-color: #e0e0e0;
  padding: 1rem;
}

p.summary {
  padding-bottom: 2rem;
}

.loading {
  position: fixed;
  width: 90%;
  text-align: center;
}

#main.vectors {
  max-width: 520px;
  margin: 0 auto;
}

.label_set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.label_set label {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: right;
  cursor: pointer; /* Change cursor to pointer for better interactivity */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; /* Smooth transition for hover effects */
  padding: 0.5rem;
}

.label_set label:hover {
  background-color: #f6f6f6; /* Add a subtle background color */
}

/*===================
SFG fullpage
===================*/
/* setting up different css for fullpage viewing ... */
body.zine-page .content {
  padding-top: 0;
}

body.zine-page {
  background-color: #f4f4f4 !important;
}

body.zine-page .toggle-btn {
  display: block !important;
}

body.zine-page .content {
  margin-left: 0 !important;
  max-width: 100%;
  margin: 0 auto !important;
}

body.zine-page .sidebar {
  left: -250px !important; /* Hidden by default */
}

/* Sidebar expanded */
body.zine-page .sidebar.expanded {
  left: 0 !important; /* Slide in from the left */
}

.section,
.slide {
  background-size: cover;
  background-attachment: fixed;
  background-position: right center;
}

/* white background slides ... all but images ... */
.section.vision,
.section.mission,
.section.alumni,
.section.resident,
.section.sky,
.section.people-martine,
.section.people-stef {
  background-color: white;
}

.slide-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.slide--centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.slide--footer {
  margin-top: auto;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 1rem;
}

.slide h1,
.slide p,
.slide a {
  font-family: "tiempos";
}

.slide a {
  color: white;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.slide a:hover {
  opacity: 0.8;
}

.sdn_title.cover {
  position: absolute;
  top: 0;
  text-align: center;
}

.sdn_quote_owner,
.sdn_quote {
  width: 100%;
  text-align: right;
}

.sdn_quote {
  font-style: italic;
}

.sdn_quote_owner {
  margin-top: 2rem;
}

.sdn_vision_mission {
  text-align: center;
  font-size: 1em;
  line-height: 1.4em;
}

.sdn_method_text {
  margin-top: auto;
  padding-bottom: 2rem;
  font-size: 1em;
  text-align: center;
}

.sdn_email {
  margin-top: auto;
}

.method-desolve-02,
.method-rebuild-01,
.method-rebuild-02,
.back {
  color: #ffffff;
}

/* full width on mobile >768px */
@media (min-width: 620px) {
  body.zine-page .content {
    max-width: 620px !important;
  }
}
/*  fix for chrome on mobile? *//*# sourceMappingURL=main.css.map */