:root {
  --main-color: hsla(54, 18%, 97%, 1);
  --bkg-color: hsla(227, 3%, 8%, 1);
  --accent-color: hsla(68, 100%, 80%, 1);
  --grey-bkg-color: hsla(60, 2%, 78%, 1);
}

.main-text, h1, h2 {
  color: var(--main-color);
  font-family: "Inter", sans-serif;
  line-height: 80%;
  font-weight: 600;
  font-size: 4.5rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.secondary-text, p, a, h3, h4, h5 {
  color: var(--main-color);
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  margin: 0;
}

h1 {
  color: var(--accent-color);
  font-size: 8rem;
}

h3 {
  color: var(--accent-color);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}

#preloader {
  position: fixed;
  background-color: var(--main-color);
  width: 100%;
  height: 100vh;
  z-index: 200;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader div:before, #preloader div:after {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  border-radius: 50%;
}
#preloader div:before {
  background-color: var(--accent-color);
  animation: scale-1 2400ms linear infinite;
}
#preloader div:after {
  background-color: var(--main-color);
  animation: scale-2 2400ms linear infinite;
}
@keyframes scale-1 {
  0% {
    transform: scale(0);
    z-index: 2;
  }
  50%, 100% {
    transform: scale(1);
  }
}
@keyframes scale-2 {
  0%, 50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.circle {
  width: 100px;
  height: 100px;
  padding: 2px;
  z-index: -100;
  position: fixed;
}

.arrow {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.arrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  border-style: solid;
  border-color: var(--main-color);
  border-width: 2px 2px 0 0;
  position: absolute;
  transform-origin: 50% 50%;
}
.arrow::before:hover {
  border-color: var(--bkg-color);
}
.arrow.down::before {
  transform: rotate(135deg);
  margin: -20px 0 0 -15px;
}
.arrow::after {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  border-style: solid;
  border-color: var(--main-color);
  position: absolute;
  transform-origin: 50% 50%;
}
.arrow::after:hover {
  border-color: var(--bkg-color);
}
.arrow.down::after {
  width: 0;
  height: 40px;
  border-width: 0 2px 0 0;
  transform: translate(0px, -24px);
}
.arrow.up {
  transform: rotate(-180deg);
}
.arrow-container {
  z-index: 300;
  width: 100vw;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 40px;
  height: 100px;
}

.active::before, .active::after {
  border-color: var(--bkg-color);
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}

.circle:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.circle:before {
  speak: none;
  line-height: 90px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}
.circle {
  /* Effect 2 */
}
.circle.effect:after {
  top: -2px;
  left: -2px;
  padding: 2px;
  z-index: -1;
  background: var(--accent-color);
  transform: scale(0);
  transition: transform 0.2s;
}
.circle {
  /* Effect 2b */
}
.circle.effect:hover:after {
  transform: scale(1);
  transition: transform 0.4s;
}

.swiper-button-next {
  transform: rotate(90);
}

.magnet {
  transition: transform 0.3s ease;
}

@media (max-width: 1280px) {
  .arrow::before {
    border-color: var(--bkg-color);
  }
  .arrow::after {
    border-color: var(--bkg-color);
  }
  .circle {
    background-color: var(--accent-color);
  }
}
* {
  box-sizing: border-box;
}

/* Hide native cursor globally; custom ".follow" dot will be shown instead */
html, body, * {
  cursor: none !important;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 12px;
}

body {
  background-color: var(--main-color);
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  margin: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  position: initial;
  overflow-x: hidden;
}

p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

a {
  text-decoration: none;
  cursor: none !important;
}

ul {
  padding-inline-start: 0;
  margin-block-end: 0;
  margin-block-start: 0;
  list-style-type: none !important; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

.hidden {
  display: none;
}

@media (max-width: 1280px) {
  .hiddenMobile {
    display: none !important;
  }
  .hiddenDesktop {
    width: 100vw;
    display: flex;
    flex-direction: column;
  }
  .hiddenDesktop > .swiper-wrapper {
    display: block;
  }
  .hiddenDesktop > .swiper-wrapper > .swiper-slide {
    height: auto;
  }
}
@media (min-width: 1280px) {
  .hiddenDesktop {
    display: none !important;
  }
}
header {
  display: block;
  flex: 1;
  flex-basis: auto;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.categories {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 5vw;
  width: 90vw;
  z-index: 0;
}
.categories .categories-items {
  display: inline-block;
}
.categories .categories-items-web {
  display: block;
}
.categories > ul > li > span {
  display: inline-block;
}
.categories > ul > li > h2 {
  font-size: 8vw;
  filter: blur(1px);
  display: inline-block;
}
.categories > ul > li > h2:hover {
  filter: blur(0px);
}
.categories--designer {
  margin-top: 4rem;
  text-transform: lowercase;
  background-color: var(--accent-colour);
}

#graphic:hover + #message-graphic {
  display: block;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}

.building {
  width: 60px;
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.building--container {
  height: 100vh;
  position: fixed;
  right: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 200;
}

.floor--1 {
  top: 0;
  z-index: 204;
}
.floor--2 {
  top: -20px;
  z-index: 203;
}
.floor--3 {
  top: -40px;
  z-index: 202;
}
.floor--4 {
  top: -60px;
  z-index: 201;
}
.floor {
  width: 40px;
  height: 40px;
  position: relative;
  background: var(--accent-color);
  opacity: 0.4;
  transform: rotate(135deg) skew(20deg, 20deg);
  border: none;
  border-radius: 0;
}
.floor:hover {
  box-shadow: 0px 0px 4px 0px var(--accent-color);
  opacity: 0.6;
}
.floor:active, .floor .active {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.02);
  opacity: 1;
}

@media (min-width: 1280px) {
  .message {
    position: relative;
    font-size: 24px;
  }
  .message-description {
    position: absolute;
    right: 5vw;
    bottom: -20vh;
    width: 35vw;
    text-align: right;
  }
  .message-intro {
    bottom: 1rem;
    padding: 0 0.25rem;
  }
  .message-intro > span {
    font-weight: 500;
  }
}
@media (max-width: 1280px) {
  .categories--designer {
    font-size: 8vw;
  }
  .categories > ul > li > h2 {
    filter: blur(0px);
  }
  .categories > ul > li > h2 {
    font-size: 10vw;
  }
  .message-description {
    width: 60vw;
    padding-top: 4vh;
    text-align: left;
    font-size: 4vw;
  }
  .slide-index {
    height: 100%;
  }
  p {
    font-size: 4vw;
  }
  .categories {
    position: relative;
    margin: 5vw 0;
    width: 100vw;
  }
}
@media (max-width: 768px) {
  .categories > ul > li > h2 {
    font-size: 16vw;
  }
  .message-description {
    width: 90vw;
    padding-top: 4vh;
    text-align: left;
    font-size: 5vw;
  }
  p {
    font-size: 5vw;
  }
}
.nav {
  padding: 20px;
  width: 100vw;
  z-index: 200;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
}
.nav--top, .nav--bottom {
  position: fixed;
  width: 100%;
}
.nav--top > ul, .nav--bottom > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  justify-content: center;
}
.nav--top {
  top: 0px;
}
.nav--bottom {
  bottom: 0px;
}

.single {
  background-color: var(--accent-color);
}
.single > a {
  color: var(--bkg-color);
}

html,
body {
  position: relative;
  height: 100%;
}

#works {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
}

.swiper {
  height: inherit;
}

.slide-works {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.swiper-pointer-events {
  touch-action: pan-y;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: inherit;
}

.WorksSwiper .swiper {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.WorksSwiper .swiper-wrapper {
  height: 40vh;
  display: flex;
}
.WorksSwiper .swiper-wrapper a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.WorksSwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: auto;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.WorksSwiper .swiper-slide img {
  height: 100%;
  display: block;
  filter: contrast(100%);
  -webkit-filter: contrast(100%);
  -moz-filter: contrast(100%);
  -ms-filter: contrast(100%);
  -o-filter: contrast(100%);
  filter: grayscale(1);
  transition: filter 0.3s;
  opacity: 0.35;
  transition: opacity 0.3s;
  width: auto;
}
.WorksSwiper .swiper-slide:hover {
  transform: scale(1.05);
}
.WorksSwiper .swiper-slide:hover img {
  filter: contrast(130%);
  filter: grayscale(0);
  -webkit-filter: contrast(130%);
  -moz-filter: contrast(130%);
  -ms-filter: contrast(130%);
  -o-filter: contrast(130%);
  transition: filter 0.3s;
  opacity: 1;
  transition: opacity 0.3s;
}

.works {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.works--details {
  position: relative;
  top: -250px;
  opacity: 0;
  width: 100px;
  text-transform: uppercase;
  left: 400px;
  font-family: var(--main-font);
  pointer-events: none;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}
.works--details .yellow-600 {
  text-transform: uppercase;
  color: var(--accent-color);
  font-family: "Inter", sans-serif;
  line-height: 80%;
  font-weight: 600;
  padding-top: 20px;
}
.works--details > p {
  color: var(--main-color);
  font-size: 16px;
  letter-spacing: 2px;
}
.works:hover .works--details {
  opacity: 1;
  left: 540px;
  padding-left: 20px;
  width: 100px;
  text-transform: uppercase;
  font-family: var(--main-font);
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}
.works--info {
  position: absolute;
  opacity: 0;
  top: 300px;
  left: -150px;
  font-family: var(--main-font);
  pointer-events: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}
.works--info > * {
  display: inline-block;
}
.works--info > h2 {
  text-transform: uppercase;
  color: var(--accent-color);
  font-family: "Inter", sans-serif;
  line-height: 80%;
  font-weight: 600;
  text-align: right;
  width: auto;
  margin-right: 20px;
}
.works--info > p {
  color: var(--main-color);
  font-size: 16px;
  text-align: left;
  width: 25vw;
  line-height: 1.3;
}
.works:hover .works--info {
  opacity: 1;
  top: 410px;
  padding-top: 30px;
  font-family: var(--main-font);
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}
@media (min-width: 1281px) {
  .works.works-clustag .works--details {
    left: 450px;
  }
  .works.works-clustag .works--details:hover, .swiper-slide:hover .works.works-clustag .works--details {
    left: 620px;
  }
  .works.works-clustag .works--info {
    left: -100px;
  }
  .works.works-clustag .works--info > p {
    width: 20vw;
  }
  .works.works-clustag:hover .works--info {
    top: 410px;
    left: -80px;
  }
  .works.works-camisola .works--details {
    left: 450px;
  }
  .works.works-camisola .works--details:hover, .swiper-slide:hover .works.works-camisola .works--details {
    left: 620px;
  }
  .works.works-camisola .works--info {
    left: -100px;
  }
  .works.works-camisola .works--info > p {
    width: 20vw;
  }
  .works.works-camisola:hover .works--info {
    top: 410px;
    left: -80px;
  }
  .works.works-elsa .works--details {
    left: 450px;
  }
  .works.works-elsa .works--details:hover, .swiper-slide:hover .works.works-elsa .works--details {
    left: 620px;
  }
  .works.works-elsa .works--info {
    left: -100px;
  }
  .works.works-elsa .works--info > p {
    width: 20vw;
  }
  .works.works-elsa:hover .works--info {
    top: 410px;
    left: -80px;
  }
}

.MainSwiper {
  width: 100%;
  height: 100vh;
  scroll-behavior: smooth;
}

.MainSwiper-slide {
  height: 100vh;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.MainSwiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.MainSwiper .swiper-pagination {
  position: fixed;
  font-size: 0px;
  z-index: 200;
}
.MainSwiper .swiper-pagination-bullet {
  text-align: center;
  line-height: 20px;
  font-size: 0px;
  color: #000;
  width: 40px;
  height: 40px;
  position: relative;
  background: var(--accent-color);
  opacity: 0.4;
  transform: rotate(135deg) skew(20deg, 20deg);
  border: none;
  border-radius: 0;
}
.MainSwiper .swiper-pagination-bullet:hover {
  box-shadow: 0px 0px 4px 0px var(--accent-color);
  opacity: 0.6;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}
body .MainSwiper .swiper-pagination-bullet-active, body .MainSwiper .swiper-pagination-bullet:focus {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.02);
  opacity: 1;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 40px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, -20px) 0;
}

.MainSwiper .swiper-pagination-nav {
  color: var(--main-color);
  font-family: "Inter", sans-serif;
  padding: 20px;
  width: 100vw;
  z-index: 200;
}
.MainSwiper .swiper-pagination-nav .pagination-nav {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
}
.MainSwiper .swiper-pagination-nav .pagination-nav .swiper-pagination-bullet {
  width: auto;
  border-radius: 0px;
  height: auto;
  background-color: #fff;
  padding: 5px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}
.MainSwiper .swiper-pagination-nav .pagination-nav .swiper-pagination-bullet-active {
  color: #fff;
}

@media (max-width: 1280px) {
  .WorksSwiper .swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .WorksSwiper .swiper-wrapper {
    height: 100%;
    width: 100%;
  }
  .WorksSwiper .swiper-slide {
    height: 100%;
    width: 90vw;
    overflow: hidden;
    display: block;
    transform: scale(1) !important;
    justify-content: center;
    padding: 10vh 0;
  }
  .WorksSwiper .swiper-slide:hover, .WorksSwiper .swiper-slide:active, .WorksSwiper .swiper-slide:focus {
    transform: scale(1) !important;
    transition: none !important;
  }
  .WorksSwiper .swiper-slide img {
    filter: grayscale(0) !important;
    filter: brightness(0.5) !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: none !important;
  }
  .WorksSwiper .swiper-slide:hover img, .WorksSwiper .swiper-slide:active img, .WorksSwiper .swiper-slide:focus img {
    filter: brightness(0.5) !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: none !important;
  }
  .works--info {
    width: 75vw;
    position: absolute !important;
    opacity: 1 !important;
    top: 50px !important;
    left: 10px !important;
    font-family: var(--main-font);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    margin-left: 2vw;
    transform: none !important;
    transition: none !important;
  }
  .works--info > h2 {
    text-align: left;
    margin-bottom: 2vh;
  }
  .works--info > * {
    text-align: left;
  }
  .works:hover .works--info, .works:active .works--info, .works:focus .works--info {
    position: absolute !important;
    opacity: 1 !important;
    top: 50px !important;
    left: 10px !important;
    padding-top: 0 !important;
    transform: none !important;
    transition: none !important;
  }
  .works--details {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .works:hover .works--details, .works:active .works--details, .works:focus .works--details {
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
  }
  .swiper-slide {
    margin: 10vh 5vw;
  }
  .slide-works {
    margin: 0;
  }
}
.project-header {
  position: relative;
  padding-bottom: 10rem;
  background-color: var(--main-color);
  perspective: 1000px;
  z-index: 100;
}
.project-header__image {
  margin-top: 8vh;
  filter: contrast(130%);
  width: 50vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.project-header__image > * {
  height: 50vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.project-header__title {
  line-height: 1.25;
  word-break: break-all;
  color: var(--bkg-color);
  background-color: var(--accent-color);
}
@media (max-width: 768px) {
  .project-header__title {
    font-size: 4.5rem;
  }
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .project-header {
    padding-bottom: 8rem;
  }
}
@media (min-width: 768px) {
  .project-header {
    padding-bottom: 8rem;
  }
}
@media (min-width: 1280px) {
  .project-header {
    padding-bottom: 7rem;
  }
}
.project-header__image {
  width: 100vw;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .project-header__image {
    margin-top: 8vh;
    position: relative;
    z-index: 1;
    width: 50vw;
  }
}
@media (min-width: 1280px) {
  .project-header__image {
    position: relative;
    z-index: 1;
    width: 50vw;
  }
}
@media (min-width: 768px) {
  .project-header__title {
    position: absolute;
    top: 20vh;
    left: 0;
    z-index: 2;
    margin-top: 0;
    margin-left: 20vw;
    word-break: normal;
  }
}
@media (min-width: 1280px) {
  .project-header__title {
    top: 30vh;
    margin-top: 0;
  }
}
.project-description {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--main-color);
}

@media (min-width: 768px) {
  .project-description {
    width: 100%;
    z-index: 2;
  }
  .project-description__main {
    width: 50vw;
    margin-right: auto;
    margin-left: auto;
  }
}
.project-description__infos {
  display: flex;
}

.project-content {
  position: relative;
  padding: 4vw 0;
  display: block;
  background-color: var(--main-color);
}
.project-content > * {
  display: block;
  max-width: 100vw;
}
.project-content__wrapper > * {
  max-width: inherit;
}
.project-content__quote {
  font-size: 4.5rem;
  color: var(--bkg-color);
  padding: 4vw 0;
}
.project-content__quote > a {
  position: relative;
  font-size: 4.5rem;
  color: var(--bkg-color);
  background: var(--accent-color);
  z-index: 0;
}

@media (min-width: 768px) {
  .project-content {
    max-width: 100vw;
    padding: 4vw 0 !important;
    z-index: 2;
  }
  .project-content__wrapper {
    width: 50vw;
    margin-right: auto;
    margin-left: auto;
    max-width: 100vw;
  }
  .project-content__wrapper > * {
    padding: 1vw 0;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .project-content {
    padding: 10rem 0;
  }
}
.project-description__main .slice-infos__columns .info-column {
  display: flex;
  flex: 1;
}
.project-description__main .slice-infos__columns .info-column:not(:first-child) {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .project-description__main .slice-infos__columns .info-column {
    flex-direction: column;
  }
  .project-description__main .slice-infos__columns .info-column:not(:first-child) {
    margin-top: 0;
    margin-left: 5.5rem;
  }
}
.project-description__main .slice-infos__columns .info-column__title {
  color: var(--bkg-color);
}
@media (max-width: 575px) {
  .project-description__main .slice-infos__columns .info-column__title {
    width: 30%;
    line-height: 2.5;
  }
}
.project-description__main .slice-infos__columns .info-column__text {
  margin-left: 4rem;
}
.project-description__main .slice-infos__columns .info-column__text > p {
  color: var(--bkg-color);
}
.project-description__main .slice-infos__columns .info-column__text a {
  position: relative;
  color: var(--bkg-color);
  background: var(--accent-color);
  text-decoration: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .project-description__main .slice-infos__columns .info-column__text {
    margin-top: 3.6rem;
    margin-left: 0;
  }
}

.project-description__main .slice-infos__title {
  color: var(--bkg-color);
}
.project-description__main .slice-infos__text {
  margin-top: 4rem;
}
.project-description__main .slice-infos__text > p {
  text-align: justify;
  color: var(--bkg-color);
}
.project-description__main .slice-infos__text a {
  position: relative;
  color: var(--bkg-color);
  background: var(--accent-color);
  text-decoration: none;
  z-index: 0;
}
.project-description__main .slice-infos__columns {
  display: flex;
  flex-direction: column;
  margin-top: 4vw;
}

@media (max-width: 1280px) {
  .works--info > p {
    color: var(--main-color);
    font-size: 2.5vw;
    text-align: left;
    width: 50vw;
  }
}
@media (min-width: 768px) {
  .project-description__main .slice-infos__columns {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .padding3 {
    padding: 3vw;
  }
  .works--info > p {
    font-size: 5vw;
    width: 80vw;
  }
}
.about-header {
  position: relative;
  padding-bottom: 10rem;
  perspective: 1000px;
  z-index: 100;
}

@media (max-width: 768px) {
  .about-header {
    padding-bottom: 0rem;
  }
}
@media (max-width: 1280px) {
  .about-header {
    padding-bottom: 0rem;
  }
}
.about-header__image {
  width: 100vw;
  height: 133.33333vw;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-header__image {
    position: relative;
    z-index: 1;
    width: 65vw;
    height: 86.66667vw;
  }
}
@media (min-width: 1280px) {
  .about-header__image {
    position: relative;
    z-index: 1;
    width: 65vw;
    height: 66.66667vw;
  }
}
@media (min-width: 768px) {
  .about-header__title {
    position: absolute;
    top: 35vh;
    left: 0;
    z-index: 2;
    margin-top: 0;
    margin-left: 20vw;
    word-break: normal;
  }
}
@media (min-width: 1280px) {
  .about-header__title {
    top: 50vh;
    margin-top: 0;
  }
}
.about-description {
  width: 65vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: block;
  padding: 6rem 0;
  overflow: hidden;
  min-height: 100vh;
  height: 100%;
}

@media (max-width: 1280px) {
  .about-description {
    width: 100%;
    z-index: 2;
  }
  .about-description__main {
    height: 100%;
    width: 90vw;
    padding-bottom: 10vh;
  }
}
.about-description__infos {
  display: flex;
}

.about-content {
  position: relative;
  padding: 4vw 0;
  display: block;
}
.about-content > * {
  display: block;
  max-width: 100vw;
}
.about-content__wrapper > * {
  max-width: inherit;
}
.about-content__quote {
  font-size: 4.5rem;
  color: var(--main-color);
  padding: 4vw 0;
}
.about-content__quote > a {
  font-size: 4.5rem;
  color: var(--main-color);
  background-color: var(--accent-color);
}

@media (min-width: 768px) {
  .about-content {
    max-width: 100vw;
    padding: 4vw 0 !important;
    z-index: 2;
  }
  .about-content__wrapper {
    width: 65vw;
    margin-right: auto;
    margin-left: auto;
    max-width: 100vw;
  }
  .about-content__wrapper > * {
    padding: 1vw 0;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .about-content {
    padding: 10rem 0;
  }
}
.info-column {
  display: flex;
  flex: 1;
}

.info-column:not(:first-child) {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .info-column:not(:first-child) {
    margin-top: 0;
  }
}
@media (max-width: 1280px) {
  .info-column {
    flex-direction: column;
  }
  .info-column__title {
    min-width: 25vw;
  }
  .info-column:not(:first-child) {
    margin-top: 0;
    margin-left: 5.5rem;
  }
}
.info-column__title {
  color: var(--main-color);
}

@media (max-width: 575px) {
  .info-column__title {
    width: 30%;
    line-height: 2.5;
  }
}
.info-column__text {
  margin-left: 4rem;
}
.info-column__text > ul > li {
  color: var(--main-color);
}

@media (min-width: 768px) {
  .info-column__text {
    margin-top: 3.6rem;
    margin-left: 0;
  }
}
.slice-infos__title {
  color: var(--main-color);
  line-height: 1.2;
  margin-top: 4vh;
}

.slice-infos__text {
  opacity: 0.7;
  margin-top: 4rem;
}
.slice-infos__text > p {
  text-align: justify;
  color: var(--main-color);
}

.slice-infos__columns {
  display: flex;
  flex-direction: column;
  margin-top: 4vw;
}

@media (min-width: 768px) {
  .slice-infos__columns {
    flex-direction: row;
  }
}
.cv-download-container {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

.cv-download-btn {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  border: 1px solid hsl(60, 2%, 78%);
  border-radius: 50px;
  color: var(--main-color);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
.cv-download-btn.effect:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--accent-color);
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.15s ease-out;
}
.cv-download-btn.effect:hover:after {
  transform: scale(1);
  transition: transform 0.2s ease-out;
}
.cv-download-btn:hover {
  border-color: transparent;
  color: var(--bkg-color);
}

@media (max-width: 768px) {
  .cv-download-btn {
    font-size: 2rem;
  }
}
#contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
}

.contact--message {
  position: absolute;
  left: 5vw;
  top: 15vh;
}
.contact--message__main {
  font-size: 13vw;
  display: inline-block;
  max-width: 60vw;
}
.contact--message__main-link {
  z-index: 200;
}
.contact--message__text {
  width: 20vw;
  display: inline-block;
  position: relative;
  left: -3vw;
}

.contact--social {
  position: absolute;
  bottom: 15vh;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact--social__element {
  width: 7vw;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  filter: grayscale(1);
}
.contact--social__element:hover {
  filter: grayscale(0);
}
.contact--social__element h2 {
  color: var(--accent-color);
  width: 40px;
}

.credits {
  font-size: 14px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 200;
  text-transform: uppercase;
  color: var(--main-color);
}
.credits-left {
  left: 10px;
  right: auto;
}

@media (max-width: 1280px) {
  #contact {
    min-height: 80vh;
    padding-bottom: 10vh;
    margin-top: 0vh;
  }
  .contact--message {
    top: 12vh;
    position: static;
  }
  .contact--message__main {
    font-size: 20vw;
    max-width: 85vw;
  }
  .contact--message__text {
    display: block;
    left: 1vw;
    width: 60vw;
    margin-top: 3vh;
  }
  .contact--message__text p {
    font-size: 4vw;
  }
  .contact--social {
    bottom: 8vh;
    align-items: start;
  }
}
.follow {
  /* Use fixed so the dot stays relative to the viewport during scroll */
  position: fixed;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  border-radius: 100%;
  z-index: 1200;
  pointer-events: none;
}

/* Change cursor color in project pages */
body.project-page .follow {
  background-color: hsl(227, 3%, 8%);
}

/* When magnet is active (inside arrow), hide the dot entirely */
.follow-mouse-active {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* CANVAS */
canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

@media all and (max-width: 600px) {
  .mobileHidden {
    display: none;
  }
}
@media all and (min-width: 600px) {
  .desktopHidden {
    display: none;
  }
}

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