/* Font Stuff */
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
/* Colors */
@keyframes fade-to-inactive {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes fade-to-active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Core Stuff */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(10pt, 1vw, 16pt);
  font-family: "Sofia Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}

body {
  font-size: 1rem;
  line-height: 1.4;
  color: #000012;
  height: 100vh;
  overflow: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
  display: none;
}

p {
  margin-bottom: 0.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 500;
  margin: 0.5rem 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

a {
  color: #1F8CD6;
}

a:hover {
  color: #175E91;
}

pre {
  background: #F0F0F0;
  margin: 1rem 0;
  border-radius: 2px;
}

blockquote {
  border-left: 10px solid #eee;
  margin: 0;
  padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
  margin: 0 3rem;
}

.padding {
  padding: 3rem 1rem;
}

.left {
  float: left;
}

.right {
  float: right;
}

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

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

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

/* Content Styling */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 6.5rem;
  padding: 2rem 0.5rem 1rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}
header a {
  color: #000012;
  text-decoration: none;
}
header a:hover {
  color: #000012;
}
header .main-menu {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}
header .header-item {
  height: 3.5rem;
  padding: 0 1rem;
  margin: 0 0.5rem;
  background-color: white;
  text-decoration: none;
  color: #000012;
  font-size: 1.5rem;
  display: flex;
  align-items: flex-end;
  position: relative;
}
header .header-item:hover {
  text-decoration: underline;
}
header .header-item.disabled {
  opacity: 0.1;
}
header .header-item.disabled:hover {
  background-color: transparent;
}
header .header-item.active {
  text-decoration: underline;
}
header .logo {
  height: 3.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #000012;
  line-height: 1.6rem;
}
header .logo svg {
  height: 100%;
  margin-bottom: 0.3rem;
}
header .projects {
  position: relative;
  margin-right: 0;
  padding-right: 0;
}
header .projects svg {
  height: 1.5rem;
  margin: 0.5rem 0 0.2rem 0.75rem;
}
header .projects.active {
  text-decoration: underline;
}
header .projects:hover .tags .tag {
  max-height: 2rem;
  opacity: 1;
  padding: 0.25rem 0.5rem;
}
header .tags {
  display: none;
  position: absolute;
  left: 100%;
  top: calc(100% - 1.85rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header .tags .tag {
  padding: 0 0.5rem;
  margin: 0;
  text-decoration: none;
  font-size: 1.2rem;
  color: #000012;
  background-color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height ease 0.3s, opacity ease 0.3s;
}
header .tags .tag:hover {
  text-decoration: underline;
}
header .tags .tag.active {
  text-decoration: underline;
  max-height: 2.5rem;
  opacity: 1;
}
header .tags .tag.active:hover {
  text-decoration: none;
}
header .tags .tag.disabled {
  opacity: 0.1;
}
header .tags .tag.disabled:hover {
  background-color: transparent;
}
header .langswitcher {
  display: flex;
}
header .langswitcher:hover {
  text-decoration: none;
}
header .langswitcher .language {
  color: #000012;
  text-decoration: none;
  display: flex;
}
header .langswitcher .language a:hover {
  text-decoration: underline;
}
header .langswitcher .language a.active {
  text-decoration: underline;
}
header .langswitcher .language .separator {
  margin: 0 0.5rem;
}
header .langswitcher .language:last-of-type .separator {
  display: none;
}

main {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 6.5rem 0.5rem 4rem;
  width: 100%;
}
main .project {
  position: relative;
  height: 33vh;
  padding: 1rem;
  margin: 0.5rem;
  border-bottom: 1px solid white;
}
main .project .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .project .mask a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .project.active {
  opacity: 1;
}
main .project.active .mask {
  height: 0px;
}
main .project.active:hover .title {
  text-decoration: underline;
}
main .project:not(.active) {
  animation: fade-to-inactive 500ms ease-in-out 250ms;
  opacity: 0.2;
}
main .project .cover {
  height: 100%;
}
main .project .cover img {
  display: block;
  width: auto;
  height: 100%;
  padding-bottom: 1.75rem;
}
main .project .title {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0.5rem 1rem;
  margin: 0;
  background-color: white;
}
main .project .project-url {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
main .project .categories {
  position: absolute;
  right: -0.25rem;
  top: 1.5rem;
}
main .project .categories ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
main .project .categories ul li {
  padding: 0 0.5rem;
  margin: 0.125rem 0;
  background-color: rgba(255, 255, 255, 0.65);
  transition: background-color 500ms ease;
  text-align: right;
  font-size: 0.8rem;
}
main .project .categories ul li:hover {
  background-color: white;
}
main .project .categories ul li:has(.active) {
  background-color: white;
}
main .project .categories ul li:has(.active):hover {
  text-decoration: none;
}
main .project .categories ul li a {
  color: #000012;
  text-decoration: none;
}
main.default {
  height: 100vh;
  overflow: hidden;
  padding-bottom: 1rem;
}
main.default a {
  text-decoration: none;
  color: #000012;
}
main.default a:hover {
  text-decoration: underline;
}
main.default .editorial-content {
  width: calc(40% - 1rem);
  margin: 0.5rem;
  padding: 1rem;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.default .editorial-content .separator {
  min-height: 1rem;
  background-image: linear-gradient(transparent, white);
}
main.default .editorial-content .description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
main.default .editorial-content .description .title {
  margin-top: 0;
}
main.default .editorial-content .description .content {
  overflow: auto;
}
main.default .editorial-content .description .tags {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  margin: 0.5rem 0;
}
main.default .editorial-content .description .tags a {
  margin: 0.125rem;
}
main.default .editorial-content .cartouche {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
}
main.default .visual-content {
  width: calc(60% - 1rem);
  margin: 0.5rem;
  padding: 1rem;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
main.default .visual-content::-webkit-scrollbar {
  display: none;
}
main.default .visual-content img {
  max-width: 100%;
  display: block;
  margin-bottom: 1rem;
}
main.about {
  height: 100vh;
  overflow: hidden;
  padding-bottom: 1rem;
}
main.about .left-content {
  width: calc(40% - 1rem);
  margin: 0.5rem;
  padding: 1rem;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.about .left-content .separator {
  min-height: 1rem;
  background-image: linear-gradient(transparent, white);
}
main.about .left-content .description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
main.about .left-content .description .title {
  margin-top: 0;
}
main.about .left-content .description .content {
  overflow: auto;
}
main.about .left-content .description .tags {
  margin: 0.5rem 0;
}
main.about .left-content .cartouche {
  font-size: 0.8rem;
}
main.about .right-content {
  width: calc(60% - 1rem);
  margin: 0.5rem;
  padding: 1rem;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
main.about .right-content::-webkit-scrollbar {
  display: none;
}
main.about .right-content img {
  max-width: 100%;
  display: block;
  margin: 1rem 0;
}

.footer {
  background-color: inherit;
}

.glightbox-clean .goverlay {
  background: whitesmoke;
}
.glightbox-clean .gslide-media {
  box-shadow: none;
}
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background-color: whitesmoke;
}
.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background-color: white;
}
.glightbox-clean .gclose path,
.glightbox-clean .gnext path,
.glightbox-clean .gprev path {
  fill: black;
}

@media screen and (max-width: 576px) {
  header .logo {
    padding-left: 0;
  }
  header .main-menu {
    flex-direction: column-reverse;
  }
  header .main-menu .header-item {
    height: 1.75rem;
    white-space: nowrap;
  }
  header .main-menu .projects svg,
  header .main-menu .projects .tags {
    display: none;
  }
  header .langswitcher {
    flex-direction: column;
  }
  header .langswitcher .language {
    height: 1.75rem;
    font-size: 1.25rem;
  }
  header .langswitcher .separator {
    display: none;
  }
  main .project {
    height: 30vh;
  }
  main.default {
    flex-direction: column;
    height: auto;
  }
  main.default .editorial-content {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
  main.default .visual-content {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
  main.about {
    flex-direction: column;
    height: auto;
  }
  main.about .left-content,
  main.about .right-content {
    width: 100%;
    padding-left: 0;
    height: auto;
  }
  main.about .left-content {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
  main.about .right-content {
    padding-top: 0;
  }
}/*# sourceMappingURL=custom.css.map */