@font-face {
    font-family: UniversLight;
    src: url(../fonts/UniversLTStd-Light.otf);
}

@font-face {
    font-family: Univers;
    src: url(../fonts/univers.otf);
}

@font-face {
    font-family: RobotoLight;
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: NeutraText;
    src: url(../fonts/neutratext-bold.otf);
}

@font-face {
    font-family: Clarendon;
    src: url(../fonts/clarendon-bold.otf);
}

@font-face {
    font-family: RobotoMedium;
    src: url(../fonts/Roboto-Medium.ttf);
}

.container {
  margin: 10vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column
}

.container img {
  max-width: 500px;
  width: 40vw
}

.container img {
  margin-bottom: 50px;
  padding: 15px 70px 15px 15px
}

.container .text {
  width: 40vw
}

.container .text h1 {
  margin-top: 40px
}

@media screen and (max-width:640px) {
  .container img {
    margin-top: 60px;
    width: calc(80vw - 15px - 75px)
  }

  .container .text {
    width: 80vw
  }
}

.name-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10vh;
  margin-bottom: 80px
}

.name-container div {
  display: inline-block
}

#name {
  margin: 0 40px 20px 40px;
  text-align: center;
  font-size: 41px;
  font-family: var(--header_font);
  font-weight: 700
}

#first, #third {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--accent_color);
  text-decoration-color: var(--accent_color);
  transition: -webkit-text-decoration-color ease .4s .3s;
  transition: text-decoration-color ease .4s .3s;
  transition: text-decoration-color ease .4s .3s, -webkit-text-decoration-color ease .4s .3s
}

#fourth, #second {
  white-space: nowrap;
  width: 0;
  opacity: 0;
  transition: width ease .5s, opacity ease .3s;
  text-align: center;
  color: var(--accent_color);
  font-weight: 400
}

#pronounce {
  opacity: 1;
  font-family: var(--body_font)
}

#all-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 60px;
  margin-top: 50px;
  margin-bottom: 150px;
  z-index: 1;
  width: 84vw
}

#all-archive .archive-item {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid #000;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s ease, color .2s ease
}

#all-archive .archive-item img {
  width: 100%;
  height: 60%;
  -o-object-fit: cover;
  object-fit: cover;
  border-bottom: 2px solid #000;
  /* filter: grayscale(1); */
  transition: filter .3s ease
}

#all-archive .archive-item h3, #all-archive .archive-item p {
  font-weight: 400;
  margin: 0 14px 0px 14px
}

#all-archive .archive-item h3.bold {
  font-family: var(--body_font2);
  /* font-weight: 600; */
  margin-top: 12px;
  margin-bottom: 4px
}

#all-archive .archive-item:hover {
  border-color: var(--accent_color);
  color: var(--accent_color)
}

#all-archive .archive-item:hover img {
  border-bottom: 2px solid var(--accent_color);
  filter: grayscale(0)
}

@media screen and (max-width:640px) {
  #all-archive {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px 0;
    margin-bottom: 100px
  }
}

.face {
  position: initial
}

.eyeball {
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--accent_color)
}

.pupil {
  position: absolute;
  background-color: var(--accent_color);
  border-radius: 50%
}

.eyebrow {
  position: absolute;
  height: 5%;
  transition: all .3s ease;
  opacity: 0
}

.mouth {
  opacity: 0;
  position: absolute;
  height: 30px;
  transition: opacity ease .3s, transform ease .3s
}

.face.white .eyeball {
  border: 3px solid var(--white)
}

.face.white .pupil {
  background-color: var(--white)
}

#finger {
  position: absolute;
  left: calc(100% - 120px);
  bottom: 570px;
  width: auto;
  height: 60px;
  transform-origin: left center;
  z-index: 1000000;
  cursor: pointer;
  opacity: .6
}

#finger.transition {
  transition: transform .3s ease, opacity .3s ease
}

#finger.clicked {
  position: fixed;
  left: calc(100% - 180px);
  pointer-events: none;
  opacity: 1
}

#finger:hover {
  transform: translateX(-70px);
  opacity: 1
}

@media screen and (max-width:640px) {
  #finger {
    display: none
  }
}

.definition {
  border: 2px #000 solid;
  height: 20%;
  display: flex;
  flex-direction: column;
  align-items: left;
  width: 60%;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 30px;
  z-index: 4
}

.food-project {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 70px;
  margin-top: 40px;
  z-index: 1;
  border-top: 2px #000 solid;
  padding-top: 50px
}

.cooking-bio-text-small {
  font-weight: 400;
  margin-bottom: 30px
}

.extra-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%
}

.extra-images {
  width: 35%
}

.window {
  -webkit-clip-path: inset(0 30% 0 30% round 25vw 25vw 0 0);
  clip-path: inset(0 30% 0 30% round 25vw 25vw 0 0);
  margin: 15px -8% 0 -12%
}

@media screen and (max-width:640px) {
  .extra-images {
    width: 100%
  }

  .window {
    margin: 10px 0 20px 0;
    -webkit-clip-path: inset(0 30% 0 30% round 35vw 35vw 0 0);
    clip-path: inset(0 30% 0 30% round 35vw 35vw 0 0)
  }
}

#footer {
  background-color: var(--accent_color);
  color: var(--white);
  width: 100%;
  max-width: 100vw;
  /* height: 24px; */
  box-sizing: border-box;
  padding: 8px 1% 8px 1%;
  margin-bottom:0;
  margin: auto;
  display: flex;
  /* align-items: center;
  justify-content: space-between; */
  z-index: 10;
  position: relative;
}

#footer a, #footer a:visited, #footer p {
  color: var(--white);
  font-family: var(--header_font);
  font-size: 18px;
  margin: 0;
  font-weight:400
}

#footer a, #footer a:visited {
  text-decoration: underline
}

#footer .h1-large, #footer .subheader {
  margin: 0;
  font-size: 72px;
  text-decoration: none
}

#footer #email-copy {
  cursor: pointer;
  text-decoration: underline
}

#footer .content {
  max-width: 560px
}

#footer .content div {
  margin: 10px 0
}

#footer .content .links {
  display: flex;
  flex-direction: row;
  justify-content: space-between
}

#footer .content .small {
  font-size: 8px
}


@media screen and (max-width:850px) {
  #footer {
    height: auto
  }

  #footer .h1-large {
    font-size: 56px
  }

  .footer-eyeball {
    display: none
  }
}

iframe.preview {
  display: block;
  position: absolute;
  border: 2px solid var(--accent_color);
  border-radius: 6px;
  width: 400px;
  height: 250px
}

:root {
  --accent_color: #353b4c;
  --accent_color_2: #5a6175;
  --accent_color_3: #26A671;
  --white: #fbfbfb;
  --black: #5a6175;
  --header_font: 'NeutraText';
  --body_font: 'RobotoLight';
  --body_font2: 'RobotoMedium'
}

body, html {
  position: relative;
  background-color: var(--white)
}

body {
  overflow-x: hidden !important;
  position: absolute;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  scroll-behavior: smooth;
  background-color: var(--white)
}

main {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1
}

hr {
  border-top: 2px solid var(--accent_color);
  border-radius: 10px;
  opacity: .7
}

canvas {
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease 1.8s
}

.add-shadow {
  box-shadow: 0 0 28px 0 rgba(0, 0, 0, .15)
}

.button, .button:visited, button, button:visited {
  background-color: var(--accent_color);
  border: none;
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  font-size: 16px;
  z-index: 9999999;
  border-radius: 6px;
  transition: padding ease .3s
}

.button:hover {
  padding: 15px 42px 15px 42px
}

.no-style-button {
  background-color: #ffffff00;
  color: #000;
  font-size: 18px;
  padding: 0;
  filter: hue-rotate(195deg) saturate(1.6)
}

.home-buttons {
  margin-top: 40px !important;
  color: var(--accent_color) 8;
  padding: 0
}

#scrollTo {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 20px;
  z-index: 1;
  width: 100%;
  max-width: unset
}

.spacer-medium {
  height: 10vh
}

.heart {
  color: var(--accent_color);
  font-size: 18px;
  position: fixed;
  -webkit-animation-name: grow;
  animation-name: grow;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

@-webkit-keyframes grow {
  0% {
    font-size: 15px
  }

  15% {
    font-size: 18px
  }

  30% {
    font-size: 15px
  }

  50% {
    font-size: 19px
  }

  90% {
    font-size: 15px
  }

  100% {
    font-size: 14px
  }
}

@keyframes grow {
  0% {
    font-size: 15px
  }

  15% {
    font-size: 18px
  }

  30% {
    font-size: 15px
  }

  50% {
    font-size: 19px
  }

  90% {
    font-size: 15px
  }

  100% {
    font-size: 14px
  }
}

.rotate-container {
  transform: rotateZ(3deg)
}

button:focus {
  outline: 0
}

ul.no-bullets {
  list-style-type: none;
  -webkit-padding-start: 0;
  padding-inline-start: 0
}

ul.no-bullets p {
  margin: 6px 0
}

#banner {
  margin-top: 30px;
  width: 100vw;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

#banner #banner-content {
  width: 90%;
  white-space: nowrap;
  will-change: transform;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-around
}

#banner #banner-content img {
  height: 25px;
  filter: grayscale(1)
}

#banner #banner:hover {
  cursor: wait
}

@-webkit-keyframes move {
  0% {
    transform: translateX(100vw)
  }

  100% {
    transform: translateX(-100%)
  }
}

@keyframes move {
  0% {
    transform: translateX(100vw)
  }

  100% {
    transform: translateX(-100%)
  }
}

@media screen and (max-width:640px) {
  #banner #banner-content {
    flex-wrap: wrap;
    justify-content: space-between
  }

  #banner #banner-content img {
    height: 20px;
    margin: 0 6px 18px 6px
  }

  @-webkit-keyframes move {
    0% {
      right: -1530px
    }

    100% {
      right: 100%
    }
  }

  @keyframes move {
    0% {
      right: -1530px
    }

    100% {
      right: 100%
    }
  }
}

#logo {
  display: flex;
  flex-direction: column
}

.no-margin-left {
  margin-left: 0 !important
}

.no-margin-right {
  margin-right: 0 !important
}

@media screen and (max-width:640px) {
  .home-buttons {
    font-size: 18px;
    margin-top: 0 !important
  }

  #nav {
    height: 75px;
    align-items: center;
    padding-top: 0
  }

  #top-rectangle {
    height: 100px
  }

  #logo {
    max-width: 85%
  }
}

.dropdown-content .menu-buttons {
  margin: 0
}

.only-mobile {
  display: none;
  text-align: center
}

@media screen and (max-width:640px) {
  #research {
    display: none
  }
}

@media screen and (max-width:640px) {
  .dropdown-content {
    display: none !important
  }

  .no-mobile {
    display: none
  }

  .only-mobile {
    display: inline-block
  }
}

.image-grid-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align:center;
  /* margin-bottom: 20px; */
  z-index: 1
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px
}

section.header {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 84vw
}

section.header h3 {
  font-weight: 400;
  /* font-style: italic */
}

@media screen and (max-width:640px) {
  .image-grid-container {
    width: 100%
  }
}

.column {
  flex: 22%;
  padding: 0 8px
}

.column img {
  margin-top: 16px;
  vertical-align: middle;
  width: 100%;
  box-shadow: 0 0 28px 0 rgba(0, 0, 0, .2);
  background-color: #fff
}

@media screen and (max-width:1080px) {
  .column {
    flex: 46%;
    max-width: 50%
  }
}

@media screen and (max-width:640px) {
  .column {
    margin-bottom: 15px;
    flex: 98%;
    max-width: 100%
  }
}

@media screen and (max-width:640px) {
  #footer {
    bottom: -10px
  }

  #bottom-rectangle {
    height: 60px
  }
}

.scroll-button {
  position: fixed;
  bottom: 70px;
  left: 50px;
  padding: 8px 24px;
  border: 1px #000 solid;
  background-color: #fff;
  color: #000;
  box-shadow: none
}

.scroll-button:hover {
  box-shadow: none
}

.offset {
  margin-left: 25%
}

.index-container {
  display: flex;
  flex-direction: row;
  width: 85vw;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  position: relative
}

.index-container div {
  flex: 2;
  max-width: 60%
}

/* .index-container p{
  color: var(--accent_color);
  font-weight: 400;

} */

.index-container .main-hello {
  flex: 6
}

.index-container .index-image-container {
  flex: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-left: 7%;
  margin-right: 7%
}

.index-container .index-image-container .index-image {
  max-width: 85%
}

.index-container .index-image-container .diagonal-container {
  -webkit-clip-path: polygon(25% 0, 64% 0, 38% 100%, 0 100%);
  clip-path: polygon(25% 0, 64% 0, 38% 100%, 0 100%);
  left: auto !important
}



@-webkit-keyframes rotate {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.offset {
  margin-left: 25%
}

.work-bar {
  margin-top: 15px;
  height: 75px;
  text-align: center;
  z-index: 3
}

@media screen and (max-width:640px) {
  #start-magnets {
    display: none
  }

  .index-container {
    margin-top: 80px;
    width: 94vw;
    flex-direction: column;
    justify-content: flex-start;
    height: auto
  }

  .index-container div {
    width: 100%;
    max-width: 90%
  }

  .index-container .main-hello {
    margin-top: 0
  }

  .index-container .index-image-container {
    overflow: hidden;
    position: absolute;
    display: none
  }

  .index-container .index-image-container .index-image {
    display: block !important;
    height: 300px;
    max-width: 100%;
    left: -40px !important
  }

  .index-container .face {
    display: none
  }

  .work-bar {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 40px
  }

  .image-caption {
    padding: 10px
  }
}

.offset {
  margin-left: 25%
}

#background {
  position: absolute;
  height: 100vh;
  background-color: #fff;
  opacity: 1;
  left: -10000;
  top: 0;
  width: 100%;
  z-index: 0
}

.interview-tag {
  position: fixed;
  top: 30px;
  right: 0;
  z-index: 1000;
  background-color: #000;
  color: #fff;
  padding: 10px
}

.dropdown {
  position: relative
}

.dropdown-content {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 100%;
  margin: 0;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .2);
  z-index: 1;
  padding: 15px
}

.dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0
}

.dropdown-content a:hover {
  color: var(--accent_color)
}

.dropdown:hover .dropdown-content {
  display: block
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41
}

#insta {
  height: 20px;
  width: 20px
}

.icon {
  display: block;
  fill: var(--accent_color);
  text-align: center;
  text-decoration: none;
  font-size: 28px;
  margin: 20px;
  margin-right: 0;
  padding: 5px;
  height: 24px;
  width: 24px
}

.icon:hover {
  color: var(--accent_color)
}

.topNav .icon {
  display: none;
  z-index: 2;
  margin: 0
}

#nav {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  position: fixed;
  padding-left: 8%;
  padding-right: 8%;
  padding-top: 30px;
  padding-bottom: 12px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  vertical-align: middle;
  z-index: 102;
  background-color: var(--white);
  border-bottom: 2px solid transparent;
  transition: padding .5s ease, border-bottom .3s ease 0s
}

a.name {
  color: var(--accent_color) !important;
  top: 0;
  font-size: 36px;
  margin: 0;
  font-weight: 800;
  transition: font-size .5s ease, letter-spacing .3s ease
}

#name-subtitle {
  margin-top: 8px;
  font-size: 16px;
  font-style: italic;
  font-family: var(--header_font);
  font-weight: 500;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease
}

#menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0
}

ul#menu {
  list-style-type: none
}

.menu-buttons, .menu-buttons:visited {
  font-family: var(--header_font);
  display: inline-block;
  margin-left: 0;
  margin-right: 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent_color);
  transition: font-size .5s ease, letter-spacing .3s ease, margin-right .5s ease;
  transition-delay: 50ms
}

a.bottom-button:hover, a.menu-buttons:hover {
  letter-spacing: 3px
}

#nav.scroll {
  padding-left: 4%;
  padding-right: 4%;
  border-bottom: 2px solid var(--accent_color);
  transition: border-bottom .3s ease .5s, padding .5s ease 0s
}

#nav.scroll a.name {
  font-size: 24px
}

#nav.scroll #name-subtitle {
  opacity: 0;
  transform: translateY(-10px);
  height: 0
}

#nav.scroll .navigation#menu li {
  font-size: 14px
}

#nav.scroll .menu-buttons, #nav.scroll .menu-buttons:visited {
  font-size: 16px;
  margin-right: 18px
}

@media screen and (max-width:640px) {
  .name {
    margin-top: 0;
    font-size: 22px !important
  }

  #name-subtitle {
    display: none
  }

  .manifesto {
    margin-top: 10px;
    margin-bottom: 75px
  }

  .menu-buttons {
    font-size: 18px;
    margin-left: 10px
  }
}

@media screen and (max-width:640px) {
  .topNav a {
    display: none
  }

  .topNav span {
    display: none
  }

  .topNav .name {
    display: inline-block
  }

  .topNav a.icon {
    float: right;
    display: block
  }

  #nav.scroll {
    padding-left: 7.5%;
    padding-right: 7.5%
  }
}

@media screen and (max-width:640px) {
  .topNav.responsive {
    position: relative
  }

  #menu {
    display: none;
    position: fixed;
    flex-direction: column;
    top: 15px;
    right: 0;
    padding: 20px;
    padding-right: 10vw
  }

  .topNav.responsive a {
    float: none;
    display: block;
    text-align: left
  }

  .topNav.responsive #menu {
    float: none;
    display: flex !important;
    text-align: left;
    background-color: var(--white);
    align-items: flex-start;
    margin-right: 40px
  }

  .topNav.responsive #menu li {
    margin-bottom: 8px
  }

  .profile-image-wrapper {
    width: 280px;
    height: 280px
  }

  #scrollTo {
    margin-top: 20px
  }
}

body {
  height: auto;
  overflow-y: scroll
}

.project-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 100px
}

.project-title {
  color: var(--white);
  font-size: 48px;
  color: #fff;
  text-shadow: none;
  margin: 0
}

.project-section {
  width: 70%;
  max-width: 1000px;
  margin-top: 30px;
  margin-bottom: 20px;
  overflow: hidden
}

.project-section__opening {
  padding-top: 30px;
  display: flex;
  flex-direction: row
}

.project-section__openingText {
  margin-right: 5vw;
  flex: 6;
  display: flex;
  flex-direction: column
}

.project-section__openingImage {
  flex: 4
}

.project-section__openingImage img {
  width: 100%
}

.project-section__overview {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align:center;
}

.project-section__overviewProject {
  /* flex: 1; */
  margin-right: 40px;
  margin-top: 20px;
  margin-bottom: 20px

}

.project-section__overviewImage {
  width: auto;
  width: 300px;
  max-width: 100%;
  /* -o-object-fit: cover; */
  /* object-fit: cover; */
  border-radius: 12px;
  align:center
}

.project-section__screenshot {
  width: auto;
  height: 350px;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.project-hero-image-container {
  position: relative;
  min-height: 120px;
  max-height: auto;
  float: left;
  width: 100vw
}

.project-hero-image-container .project-hero-image {
  width: 100%;
  height: auto;
  max-height: 75vh;
  -o-object-fit: cover;
  object-fit: cover
}

.project-image-container {
  /* margin-top: 20px; */
  max-width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

.project-image-container.full {
  max-width: 100%
}

.project-image {
  max-width: 100%;
  max-height: 70vh;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 20px 0;
  border-radius:12px
}

.project-image-straight {
  max-width: 100%;
  max-height: 70vh;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 20px 0;
}

.project-two-col {
  margin: 30px 0 80px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row
}

.project-two-col .project-image, .project-two-col img {
  max-width: 30%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 80px;
  border-radius: 12px
}

.project-two-col div:first-child, .project-two-col img:first-child, .project-two-col p:first-child {
  margin-bottom: 25px
}

.project-info-container {
  background-color: #222;
  padding: 60px 10vw 10px 10vw !important;
  width: 84vw;
  margin-top: -5px;
  background-color: var(--accent_color)
}

.project-info-container div {
  margin-bottom: 30px
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

@media screen and (max-width:640px) {
  .subheader {
    margin-bottom: 3px
  }

  .project-title {
    font-size: 24px;
    top: 20vh
  }

  .project-hero-image-container {
    height: auto
  }

  .project-image-container {
    height: auto;
    max-width: 84%
  }

  .project-section {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 90vw
  }

  .project-section__opening {
    flex-direction: column-reverse
  }

  .project-section__overview {
    flex-direction: column
  }

  .project-section__overviewProject {
    margin-right: 0
  }

  .project-section__overviewImage {
    width: 100%
  }

  .project-info-container {
    padding-top: 40px !important;
    padding-bottom: 10px !important;
    padding-left: 10vw !important;
    padding-right: 10vw !important
  }

  .project-info-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .project-main-container {
    margin-top: 90px
  }

  .project-two-col {
    flex-direction: column
  }

  .project-two-col .project-image, .project-two-col img {
    max-width: 100%;
    margin-bottom: 20px;
    margin: 0
  }
}

#all-sites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 80px;
  margin-top: 50px;
  margin-bottom: 100px;
  z-index: 1;
  width: 84vw
}

#all-sites .site-container {
  margin-bottom: 40px
}

#all-sites .site-container .site {
  position: relative;
  border:none;
  /* border: 2px solid; */
  /* border-color: var(--accent_color); */
  border-radius: 8px;
  padding: 18px;
  padding-top: 40px;
  transition: transform .2s ease, color .2s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 150px
}

/* #all-sites .site-container .site::before {
  position: absolute;
  content: "";
  width: 100%;
  left: -2px;
  height: 1.9rem;
  top: -1.9rem;
  border: 2px solid #000;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background-repeat: no-repeat;
  background-size: 60px;
  background-position-x: 12px;
  background-position-y: .4em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/4000/svg' viewBox='0 0 80 21'%3E%3Cg id='Layer_1' data-name='Layer 1'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23000000'/%3E%3Ccircle cx='40' cy='10' r='10' fill='%23000000'/%3E%3Ccircle cx='70' cy='10' r='10' fill='%23000000'/%3E%3C/g%3E%3C/svg%3E%0A")
} */

#all-sites .site-container .site:hover {
  transform: scale(1.05);
  border-color: var(--accent_color);
  color: var(--accent_color)
}

/* #all-sites .site-container .site:hover::before {
  border-color: var(--accent_color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/4000/svg' viewBox='0 0 80 21'%3E%3Cg id='Layer_1' data-name='Layer 1'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23195CC8'/%3E%3Ccircle cx='40' cy='10' r='10' fill='%23195CC8'/%3E%3Ccircle cx='70' cy='10' r='10' fill='%23195CC8'/%3E%3C/g%3E%3C/svg%3E%0A")
} */

#all-sites .site-container h3 {
  font-weight: 400;
  margin: 12px 0
}

#all-sites .site-container h3.bold {
  font-family: var(--header_font)
}

@media screen and (max-width:640px) {
  #all-sites {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px 0;
    margin-bottom: 100px
  }
}

#swup-background {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--accent_color);
  z-index: 1000;
  height: 100vh;
  width: 100vw;
  transition: transform .7s ease;
  transform: translateX(-100%) translateY(0);
  display: flex;
  justify-content: center;
  align-items: center
}

#swup-background h1 {
  color: var(--white);
  font-size: 24px
}

#swup-background.initial {
  transform: none
}

#swup-background.second {
  transform: translateY(-100%)
}

#swup-background.third {
  transform: translateX(-100%) translateY(0);
  transition: none
}


html.is-animating #swup-background {
  transform: translateX(0)
}

.transition-fade {
  transition: 1s;
  opacity: 1
}

html.is-animating .transition-fade {
  opacity: 0
}

body {
  font-family: var(--body_font);
  font-weight: 400;
}

.accent-text {
  color: var(--accent_color)
}

.bold {
  font-weight: 700 !important
}

.white {
  color: #fff !important
}

::-moz-selection {
  color: var(--white);
  background-color: var(--accent_color)
}

::selection {
  color: var(--white);
  background-color: var(--accent_color)
}

a, a:visited {
  text-decoration: none;
  color: var(--black)
}

a.highlight, a.highlight:visited, button.highlight {
  text-decoration: underline;
  color: var(--accent_color);
  cursor: pointer !important;
  transition: all ease .3s
}

a.highlight:hover {
  background-color: var(--accent_color);
  padding: 2px 4px;
  text-decoration: none;
  color: #fff;
  border-radius: 4px
}

.h1-large {
  font-family: var(--header_font);
  font-size: 64px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--accent_color);
  text-decoration-color: var(--accent_color);
  font-weight: 500;
  margin: 10px 0 30px 0
}

.h1-subtitle {
  font-weight: 400;
  font-size: 28px;
  margin: 6px 0 6px 0
}

h1 {
  font-size: 36px;
  font-family: var(--header_font)
}

h2 {
  color: var(--accent_color);
  font-family: var(--header_font);
  font-weight: 700;
  font-size: 28px;
  margin: 15px;
  margin-left: 0
}

h3 {
  color: var(--accent_color);
  font-family: var(--body_font2);
  /* font-weight: 400; */
  font-size: 18px;
  margin: 15px;
  margin-left: 0
}

h4 {
  margin: 3px;
  font-size: 16px;
  font-weight: 400
}

h4.white {
  color: #fff;
  font-weight: 400
}

li {
  font-size: 14px;
  line-height: 150%
}

p {
  font-size: 18px;
  margin: 4px 0 12px 0;
  line-height: 1.5em;
  font-weight: 400;
  color: var(--accent_color);
  font-family: var(--body_font)

}

.image-caption {
  color: #888;
  margin-top: 6px;
  font-weight: 400;
  font-style: italic;
  text-align: center
}

.small-header {
  text-transform: uppercase;
  color: grey;
  font-size: 12px;
  font-weight: 700
}

.subheader {
  font-family: var(--header_font);
  margin-bottom: 10px;
  color: var(--accent_color);
  text-transform: uppercase;
  font-weight: 900
}

@media screen and (max-width:1100px) {
  .h1-large {
    font-size: 56px;
    margin: 30px 0 15px 0
  }

  .h1-subtitle {
    font-size: 18px
  }
}

@media screen and (max-width:640px) {
  .h1-large {
    font-size: 42px
  }

  h1 {
    font-size: 36px
  }

  h2 {
    font-size: 20px
  }

  h4 {
    font-size: 14px
  }

  p {
    font-size: 16px;
    margin: 6px 0 8px 0
  }
}

.index-title {
  color: var(--accent_color);
  transition: .3s ease;
  transform-origin: 0 0;
  z-index: 10;
  font-size: 36px;
  font-family: var(--header_font);
  text-align: left;
  top: -50px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 105%
}

.index-info {
  transition: .3s ease;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  line-height: 125%
}

.index-tag {
  background-color: var(--accent_color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 5px
}

.index-tag.red {
  background-color: var(--accent_color_2)
}

.project-question {
  position: absolute;
  bottom: -2.5em;
  margin-top: 78%;
  font-size: 24px;
  text-align: right;
  width: 80%
}

.project-info {
  position: absolute;
  margin-top: 60%;
  margin-left: 60%;
  width: 60%;
  background-color: #fff;
  padding: 25px;
  padding-top: 10px;
  box-shadow: 2px 2px 10px #66666644;
  word-wrap: break-word;
  z-index: 3
}

@media screen and (max-width:640px) {
  .project-question {
    font-size: 20px;
    width: 100%
  }

  .index-title {
    font-size: 32px;
    top: -45px;
    opacity: .9
  }

  /* .index-info {
    font-size: 14px;
    color: #000000ff;
    font-weight: 400
  } */

  .project-info {
    margin-top: 110%;
    margin-left: 10%;
    font-size: 12px;
    width: 100%;
    background-color: #fff;
    padding: 15px;
    padding-top: 5px;
    box-shadow: 2px 2px 10px #66666644
  }
}

.disable-select {
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

#all-project-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 50px;
  margin-bottom: 40px;
  z-index: 1;
  width: 75vw
}

#all-project-cards .project-card {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 150px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  pointer-events: all
}

#all-project-cards .project-card .index-project-image {
  background-color: transparent;
  box-shadow: 0 0 28px 0 rgba(0, 0, 0, .1);
  -o-object-fit: cover;
  object-fit: cover;
  width: 30%;
  margin-right: 120px;
  border-radius: 10px
}

#all-project-cards .project-card .index-project-image-desktop {
  background-color: transparent;
  box-shadow: 0 0 28px 0 rgba(0, 0, 0, .1);
  -o-object-fit: cover;
  object-fit: cover;
  width: 50%;
  margin-right: 80px;
  border-radius: 10px
}

.project-card:hover {
  color: #000
}

.extended {
  bottom: -3.5em
}

@media screen and (max-width:900px) {
  #all-project-cards {
    margin-top: 80px
  }

  #all-project-cards .project-card {
    width: 100%;
    margin-bottom: 50px;
    flex-direction: column;
    align-items: flex-start
  }

  #all-project-cards .project-card .index-project-image {
    width: 100%;
    margin: 0;
    margin-bottom: 20px
  }

  #all-project-cards .project-card .index-project-image-desktop {
    width: 100%;
    margin: 0;
    margin-bottom: 20px
  }

  .project-background {
    width: 100%;
    height: 115%;
    margin-left: 20%
  }

  .full-width-image {
    width: 100vw;
    max-width: initial
  }

  .extended {
    bottom: -3.7em
  }
}
