@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/******** LANDSCAPE **********/
/******** PORTRAIT **********/
#hamburger {
  position: sticky;
  top: 0;
  z-index: 1020;
}
@media screen and (min-width: 1200px) {
  #hamburger {
    display: none;
  }
}

.icon-wrapper {
  position: absolute;
  top: 1em;
  right: 1em;
  background-color: white;
  z-index: 2;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
.icon-wrapper .nav-icon {
  margin: 10px;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.icon-wrapper .nav-icon span {
  background-color: var(--color-primary);
  position: absolute;
  border-radius: 3px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 2px;
  transition-duration: 500ms;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 10px;
  left: 0px;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 20px;
  left: 0px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 30px;
  left: 0px;
}
.icon-wrapper .nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.icon-wrapper .nav-icon.open span:nth-child(2) {
  opacity: 0;
}
.icon-wrapper .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}
.icon-wrapper .nav-icon:not(.open):hover span:nth-child(1) {
  transform: translateY(-4px);
}
.icon-wrapper .nav-icon:not(.open):hover span:nth-child(3) {
  transform: translateY(4px);
}

.blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background: rgba(0, 0, 0, 0.5);
}
.blocker.open {
  display: block;
}

#toggle-menu {
  width: 15em;
  background-color: var(--color-secondary);
  overflow-y: auto;
  text-transform: uppercase;
  transform: translate(20em);
}
#toggle-menu.open {
  transform: translate(0);
  transition: 0.3s ease-in;
  top: 0;
  right: 0;
  background-color: white;
}
#toggle-menu .mobile-menu {
  padding: 3em 1em;
}

/************** DESKTOP MENU **************/
.nav {
  top: 1rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  border-bottom: 1px solid white;
  padding-bottom: 1rem;
  margin-top: 7rem;
  right: 1rem;
  width: 100vw;
}
@media screen and (min-width: 360px) {
  .nav {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .nav {
    width: 100%;
    margin-top: 3rem;
    position: fixed;
  }
}
.nav a {
  text-decoration: none;
  font-size: 1rem;
}
@media screen and (min-width: 360px) {
  .nav a {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1200px) {
  .nav a {
    font-size: 1.3rem;
  }
}
.nav.scrolled {
  background-color: var(--color-primary);
  top: -30px;
  height: 5rem;
  z-index: 3;
}
.nav.scrolled a {
  color: black !important;
}
.nav .menu {
  display: flex;
  flex-direction: row;
  text-transform: uppercase;
  justify-content: end;
}
.nav .menu a {
  text-decoration: none;
}

.menu {
  display: none;
}
@media screen and (min-width: 1200px) {
  .menu {
    display: flex;
    justify-content: end;
  }
}
.menu a {
  padding: 1rem;
  display: block;
}
.menu a[active] {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

/************** LANGUAGE SWITCHER **************/
.languages .active {
  display: none;
}

@font-face {
  font-family: "Josefin Sans";
  src: url("../fonts/JosefinSans-Bold.ttf");
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/GeistMono-Regular.woff2");
}
:root {
  --color-text: black;
  --color-primary: #6fe447;
  --color-secondary: #f535aa;
  --color-white: black;
  --font-text: "Geist", serif;
  --font-header: "Josefin Sans", serif;
}

* {
  margin: 0;
  padding: 0;
}

/************** GENERAL STYLING **************/
html,
body {
  width: 100%;
  font-family: var(--font-text);
  overflow-x: hidden;
  font-size: 14px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--color-white);
  scroll-behavior: smooth;
  color: var(--color-text);
  font-size: 1.2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  body {
    font-size: 1.3rem;
    animation: fadeIn 1.5s ease;
  }
}
body.block {
  height: 100%;
  overflow: hidden;
}

h1 {
  margin-bottom: 1rem;
}

h2,
h3 {
  padding-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-family: var(--font-headlines);
  color: var(--color-secondary);
}

li {
  padding: 1rem;
  margin-left: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}
a:hover {
  color: var(--color-secondary);
}

img {
  width: 100%;
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

.icon {
  padding-top: 4rem;
}
.icon img {
  max-width: 35px;
  top: 12px;
  position: relative;
}
.icon::after {
  content: "->";
  position: absolute;
  padding-left: 0.5rem;
  transform: rotate(-30deg);
}

/************** HEADER **************/
header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 10;
  background-color: black;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    height: 12rem;
  }
}
header #logo {
  padding: 1rem;
  cursor: pointer;
  height: 150px;
  width: calc(100vw - 2rem);
  font-size: 1.5rem;
  transition: font-size 0.51s ease-in-out;
  text-align: right;
}
header #logo a {
  color: white;
}
header #path727 {
  fill: var(--color-white) !important;
}
header.scrolled #path727 {
  fill: var(--color-white) !important;
}

#btt-button {
  opacity: 0;
  position: fixed;
  z-index: 20;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 3rem;
  color: var(--color-primary);
  bottom: 12rem;
  right: 0;
  width: 6rem;
}
#btt-button::before {
  content: "->";
  position: absolute;
  padding-left: 0.5rem;
  transform: rotate(-90deg);
}
#btt-button:hover {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
#btt-button img {
  height: 7rem;
}
@media screen and (min-width: 1200px) {
  #btt-button img {
    height: 10rem;
  }
}
@media screen and (min-width: 1200px) {
  #btt-button {
    right: 30px;
  }
}

.mask {
  position: fixed;
  height: 2rem;
  width: 100vh;
}
@media screen and (min-width: 1200px) {
  .mask {
    border-bottom: 1px solid white;
  }
}

.breadcrumb {
  color: var(--color-primary);
}
.breadcrumb span:not(:last-child)::after {
  content: "->";
}

/************** CONTENT **************/
.content {
  padding: 14rem 2rem;
  position: relative;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .content {
    padding: 14rem 4rem 4rem;
  }
}
.content a {
  transition: all 2s ease-in-out;
}
.content a:hover {
  color: var(--color-secondary);
  transition: all 0.5s ease-in-out;
}

.page-template-default header,
.page-template-legal header {
  background-color: black;
}
.page-template-default main,
.page-template-legal main {
  background-color: white;
}
.page-template-default .content,
.page-template-legal .content {
  max-width: 1000px;
  min-height: calc(100vh - 22rem);
}
.page-template-default .content .heading,
.page-template-legal .content .heading {
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: inline-block;
}
.page-template-default .content p,
.page-template-legal .content p {
  padding-bottom: 1rem;
}

.page-template-projects main {
  max-height: 100vh;
}
.page-template-projects .content {
  perspective: 1px;
  height: calc(100vh - 14rem);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  background-color: white;
  padding: 14rem 1rem 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-projects .content {
    padding: 14rem 4rem 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-projects .content .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
.page-template-projects .content .project {
  position: relative;
  padding-bottom: 2rem;
}
.page-template-projects .content .project h2 {
  position: absolute;
  bottom: 2rem;
  right: 0;
  display: inline;
  z-index: 2;
  font-size: 1.2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-projects .content .project h2 {
    font-size: 1.7rem;
    right: 4rem;
    bottom: 2rem;
  }
}
.page-template-projects .content .project h2 span {
  background-color: var(--color-secondary);
  color: white;
  padding: 0 0.5rem;
}
.page-template-projects .content .project:nth-of-type(even) h2 {
  right: auto;
  left: 0;
  text-align: right;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-projects .content .project:nth-of-type(even) h2 {
    left: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-projects .content .project {
    padding-bottom: 0;
    margin-bottom: -3rem;
  }
}
.page-template-projects .content .project.visible img {
  filter: grayscale(0) contrast(1.2);
  -webkit-filter: grayscale(0) contrast(1.2);
}
.page-template-projects .content .project img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: all 1s ease-in-out;
  scale: 0.8;
  box-shadow: 0 0.5rem 1rem rgb(28, 25, 23), 0 0 rgb(28, 25, 23);
}
.page-template-projects .content .project img:hover {
  transform: scale(1.1);
  transition: all 0.5 ease-in-out;
}
.page-template-projects .line {
  width: 120vw;
  position: absolute;
  left: 0;
  z-index: -1;
}

.page-template-project header {
  background-color: black;
}
.page-template-project .content {
  background-color: white;
  position: relative;
}
.page-template-project .content h1 {
  color: black;
  font-size: 1.5rem;
  hyphens: auto;
}
@media screen and (min-width: 576px) {
  .page-template-project .content h1 {
    hyphens: none;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-project .content h1 {
    font-size: 2.5rem;
  }
}
.page-template-project .content .next {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  color: var(--color-primary);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project .content .next {
    top: 14rem;
  }
}
.page-template-project .content .next::after {
  content: "->";
  position: absolute;
  padding-left: 0.5rem;
  width: 2rem;
}
.page-template-project .content .prev {
  color: var(--color-primary);
  position: absolute;
  left: 4rem;
  bottom: 2rem;
}
.page-template-project .content .prev::before {
  content: "<-";
  position: absolute;
  left: -2rem;
}
.page-template-project .content .grid {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project .content .grid {
    grid-template-columns: 20% 80%;
    gap: 4rem;
  }
}
.page-template-project .content .description {
  color: black;
}
.page-template-project .content .description .url {
  padding: 2rem 0;
}
.page-template-project .content .description .url a {
  border: 1px solid;
}
.page-template-project .content .description .url a::after {
  content: "->";
  position: absolute;
  padding-left: 0.5rem;
  transform: rotate(-30deg);
}
.page-template-project .content .description > div {
  padding-top: 1rem;
}

.gallery {
  position: relative;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .gallery {
    column-width: 40vw;
    padding: 1rem 3rem 5rem 4rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .gallery {
    column-width: 40vw;
    padding: 1rem 3rem 5rem 4rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .gallery {
    padding-right: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .gallery {
    padding: 6rem;
  }
}
@media screen and (min-width: 1400px) {
  .gallery {
    column-width: 25vw;
  }
}
.gallery .portrait {
  max-width: 20rem;
}
.gallery img {
  transition: all 1s ease-in-out;
  position: relative;
  box-shadow: 0 0.5rem 1rem rgb(28, 25, 23), 0 0 rgb(28, 25, 23);
  filter: grayscale(0.4);
}
.gallery img:nth-child(2) {
  z-index: 2;
}
.gallery img:nth-child(3) {
  z-index: 3;
}
.gallery img:nth-child(4) {
  z-index: 4;
}
.gallery img:nth-child(5) {
  z-index: 5;
}
.gallery img:nth-child(odd) {
  margin-left: -0.5rem;
}
.gallery img:nth-child(odd):not(:first-of-type) {
  margin-top: -4rem;
}
.gallery img:nth-child(even) {
  margin-right: -0.5rem;
  margin-top: -1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .gallery img {
    margin-top: 0;
  }
  .gallery img:nth-of-type(odd) {
    margin-top: 2rem;
  }
  .gallery img:nth-of-type(even) {
    margin-left: -4rem;
  }
  .gallery img:nth-of-type(n + 3) {
    margin-top: 3rem;
  }
}
.gallery img:hover {
  transition: all 0.3s ease-in-out;
  z-index: 15;
  filter: grayscale(0);
  position: relative;
  opacity: 1;
}

.nGY2 .nGY2GThumbnailLabel {
  padding: 0 0 2rem;
}

.nGY2ViewerMedia {
  max-width: calc(100vw - 8rem) !important;
  max-height: calc(100vh - 8rem) !important;
  object-fit: contain;
  box-shadow: 0 0.5rem 1rem rgb(28, 25, 23), 0 0 rgb(28, 25, 23) !important;
}

.nGY2GThumbnailLabel {
  filter: none !important;
}

.nGY2Icon-ngy2_close2::before {
  content: "" !important;
  width: 54px;
  height: 54px;
  background-image: url("/assets/img/close.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.nGY2Icon-ngy2_chevron_left3::before {
  content: "" !important;
  width: 54px;
  height: 54px;
  background-image: url("/assets/img/prev.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.nGY2Icon-ngy2_chevron_right3::before {
  content: "" !important;
  width: 54px;
  height: 54px;
  background-image: url("/assets/img/next.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center right;
}

.nGY2 .nGY2ViewerAreaNext > i,
.nGY2 .nGY2ViewerAreaPrevious > i {
  background: unset !important;
}

.nGY2 .toolbarBackground {
  background: none !important;
}

.nGY2 .nGY2ViewerAreaNext {
  padding: 10px 15px 10px 0;
}

.nGY2 .nGY2ViewerAreaPrevious {
  padding: 10px 0 10px 15px;
}

.nGY2 .toolbar {
  margin: 0;
  padding: 0;
}
.nGY2 .toolbar.toolbarBackground {
  padding: 10px 0;
  margin: 2rem;
}
.nGY2 .toolbar .label .description {
  font-size: 2rem;
  color: var(--color-headlines) !important;
}
.nGY2 .toolbar .label .title {
  font-size: 1.5rem;
  color: var(--color-headlines) !important;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .nGY2 .toolbar .label .title {
    font-size: 2rem;
  }
}

.nanogallery_viewertheme_light_my_nanogallery .nGY2Viewer {
  background: rgba(255, 255, 255, 0.85) !important;
}

.toolbarContainer {
  opacity: 1 !important;
}

.nGY2 .toolbarContainer {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
.nGY2 .ngy2viewerToolAction {
  opacity: 1 !important;
}
.nGY2 .nGY2ViewerToolsTopRight {
  opacity: 1 !important;
}

/************** FOOTER **************/
footer {
  display: flex;
  justify-content: space-around;
  align-items: end;
  background-color: black;
  padding: 1rem 0;
  margin-left: -2rem;
  margin-right: -2rem;
  height: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer {
    justify-content: end;
    margin: 0;
    gap: 4rem;
    padding-right: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */
