@font-face {
  font-family: 'Archivo';
  src: url("../fonts/archivo-regular-webfont.woff2") format("woff2"), url("../fonts/archivo-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Archivo';
  src: url("../fonts/archivo-italic-webfont.woff2") format("woff2"), url("../fonts/archivo-italic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Archivo';
  src: url("../fonts/archivo-bold-webfont.woff2") format("woff2"), url("../fonts/archivo-bold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Archivo';
  src: url("../fonts/archivo-bolditalic-webfont.woff2") format("woff2"), url("../fonts/archivo-bolditalic-webfont.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Anderson Grotesk';
  src: url("../fonts/andersongrotesk-webfont.woff2") format("woff2"), url("../fonts/andersongrotesk-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Anderson Grotesk';
  src: url("../fonts/andersongrotesk-bold-webfont.woff2") format("woff2"), url("../fonts/andersongrotesk-bold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Anderson Grotesk';
  src: url("../fonts/andersongrotesk-ultrabold-webfont.woff2") format("woff2"), url("../fonts/andersongrotesk-ultrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Anderson Grotesk';
  src: url("../fonts/andersongrotesk-black-webfont.woff2") format("woff2"), url("../fonts/andersongrotesk-black-webfont.woff") format("woff");
  font-weight: 1000;
  font-style: normal;
}

.is-xxs, .is-xs, .is-s, .is-m, .is-l, .is-xl {
  display: none;
}

@media only screen and (min-width: 320px) {
  .is-xxs {
    display: block;
  }
}

@media only screen and (min-width: 570px) {
  .is-xs {
    display: block;
  }
}

@media only screen and (min-width: 740px) {
  .is-s {
    display: block;
  }
}

@media only screen and (min-width: 1000px) {
  .is-m {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .is-l {
    display: block;
  }
}

@media only screen and (min-width: 1600px) {
  .is-xl {
    display: block;
  }
}

.only-xxs, .only-xs, .only-s, .only-m, .only-l, .only-xl {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 320px) {
  .only-xxs {
    display: block;
  }
}

@media only screen and (min-width: 321px) and (max-width: 570px) {
  .only-xs {
    display: block;
  }
}

@media only screen and (min-width: 571px) and (max-width: 740px) {
  .only-s {
    display: block;
  }
}

@media only screen and (min-width: 741px) and (max-width: 1000px) {
  .only-m {
    display: block;
  }
}

@media only screen and (min-width: 1001px) and (max-width: 1200px) {
  .only-l {
    display: block;
  }
}

@media only screen and (min-width: 1201px) {
  .only-xl {
    display: block;
  }
}

*:focus {
  outline: none !important;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

.pointer {
  cursor: pointer;
}

strong {
  font-weight: 600;
}

.alert {
  line-height: 1.8rem;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.swiper-container {
  position: relative;
}

.swiper-container .swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-container .swiper-slide .swiper-button-white {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  margin-left: 10px;
  margin-right: 10px;
}

.swiper-container .swiper-slide .swiper-button-white:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.container-fluid {
  padding: 0 !important;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: block;
  background: #151515;
}

#loader .showbox {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}

#loader .loader-content {
  position: relative;
  margin: 0 auto;
  width: 100px;
}

#loader .loader-content:before {
  content: '';
  display: block;
  padding-top: 100%;
}

#loader .loader-content .circular {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#loader .loader-content .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: loader 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
          animation: loader 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
  stroke: red;
}

@-webkit-keyframes loader {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes loader {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

.fade-in {
  opacity: 0;
}

.slide-up-fade-in {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.slide-right-fade-in {
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.slide-left-fade-in {
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

html {
  overflow-y: auto !important;
}

body {
  color: var(--black);
  font-family: "Anderson Grotesk";
  font-weight: 1000;
  background-color: #151515;
  color: white;
  overflow: hidden;
  height: auto !important;
  margin: 0;
}

body ::-moz-selection {
  background: red;
}

body ::selection {
  background: red;
}

body ::-moz-selection {
  background: red;
}

body a {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

body img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.grain {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-event: none;
  z-index: -300;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.grain:before {
  content: "";
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  z-index: 9999;
  position: fixed;
  background-image: url(../images/noise.png);
  opacity: 0.15;
  pointer-events: none;
  -webkit-animation: noise 1s steps(2) infinite;
  animation: noise 1s steps(2) infinite;
}

@-webkit-keyframes noise {
  to {
    -webkit-transform: translate3d(-7rem, 0, 0);
            transform: translate3d(-7rem, 0, 0);
  }
}

@keyframes noise {
  0% {
    -webkit-transform: translate3d(0, 9rem, 0);
            transform: translate3d(0, 9rem, 0);
  }
  10% {
    -webkit-transform: translate3d(-1rem, -4rem, 0);
            transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    -webkit-transform: translate3d(-8rem, 2rem, 0);
            transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    -webkit-transform: translate3d(9rem, -9rem, 0);
            transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    -webkit-transform: translate3d(-2rem, 7rem, 0);
            transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    -webkit-transform: translate3d(-9rem, -4rem, 0);
            transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    -webkit-transform: translate3d(2rem, 6rem, 0);
            transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    -webkit-transform: translate3d(7rem, -8rem, 0);
            transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    -webkit-transform: translate3d(-9rem, 1rem, 0);
            transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    -webkit-transform: translate3d(6rem, -5rem, 0);
            transform: translate3d(6rem, -5rem, 0);
  }
  to {
    -webkit-transform: translate3d(-7rem, 0, 0);
            transform: translate3d(-7rem, 0, 0);
  }
}

.active {
  color: red;
}

.wiggle a:hover {
  -webkit-text-fill-color: white;
  -webkit-animation: wiggle 0.15s infinite;
          animation: wiggle 0.15s infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-text-stroke-width: 0px;
}

p {
  font-family: "Archivo";
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

p b, p strong {
  font-family: "Anderson Grotesk";
  font-weight: 800;
  background-color: black;
  padding: 3px 6px;
}

.homepage footer {
  display: none;
}

nav {
  position: fixed;
  z-index: 40;
}

nav .mobile-top, nav .mobile-bottom {
  height: 120px;
  width: 100vw;
  z-index: -200;
  display: none;
}

@media only screen and (max-width: 1000px) {
  nav .mobile-top, nav .mobile-bottom {
    display: block;
  }
}

@media only screen and (max-width: 740px) {
  nav .mobile-top, nav .mobile-bottom {
    height: 80px;
  }
}

nav .mobile-top {
  position: fixed;
  top: 0;
}

nav .mobile-bottom {
  position: fixed;
  bottom: 0;
}

nav .top-nav-left {
  position: fixed;
  top: 60px;
  left: 60px;
  z-index: 77777;
}

@media only screen and (max-width: 740px) {
  nav .top-nav-left {
    top: 30px;
    left: 30px;
  }
}

nav .top-nav-right {
  position: fixed;
  top: 60px;
  right: 60px;
}

@media only screen and (max-width: 740px) {
  nav .top-nav-right {
    top: 30px;
    right: 30px;
  }
}

nav .bottom-nav-left {
  position: fixed;
  bottom: 60px;
  left: 60px;
}

@media only screen and (max-width: 740px) {
  nav .bottom-nav-left {
    bottom: 30px;
    left: 30px;
  }
}

nav .bottom-nav-right {
  position: fixed;
  text-align: end;
  bottom: 60px;
  right: 60px;
}

@media only screen and (max-width: 740px) {
  nav .bottom-nav-right {
    bottom: 30px;
    right: 30px;
  }
}

nav a {
  display: inline-block;
  font-family: "Anderson Grotesk";
  font-size: 0.8rem;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration: none;
}

nav a:hover {
  color: currentColor;
}

nav .link-hover a {
  overflow: hidden;
  padding: 0 4px;
  height: 1em;
}

nav .link-hover a span {
  position: relative;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

nav .link-hover a span::before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  color: red;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

nav .link-hover a:hover span, nav .link-hover a:focus span {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

nav #menu #menu-content {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -10;
  width: 100vw;
  height: 100vh;
  background: #151515;
  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;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

nav #menu #menu-content.menu-show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (max-width: 740px) {
  nav #menu #menu-content {
    height: calc(100vh - calc(100vh - 100%)) !important;
  }
}

nav #menu #menu-content .menu-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

nav #menu #menu-content .menu-links span {
  opacity: 0;
  text-align: center;
  margin: 10px 0;
}

nav #menu #menu-content .menu-links span a {
  font-family: "Anderson Grotesk";
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 1000;
  letter-spacing: 5px;
  color: white;
  text-transform: uppercase;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
}

@media only screen and (max-width: 1000px) {
  nav #menu #menu-content .menu-links span a {
    font-size: 4rem;
    line-height: 4rem;
    -webkit-text-stroke-width: 1px;
    padding-bottom: 3px;
    margin: 10px 0;
  }
}

@media only screen and (max-width: 740px) {
  nav #menu #menu-content .menu-links span a {
    font-size: 1.7rem;
    line-height: 2rem;
    letter-spacing: 2px;
    color: white;
    -webkit-text-stroke-width: 0px;
    margin: 20px 0;
  }
}

.scroll-arrow {
  position: fixed;
  width: 100vw;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  bottom: 0px;
}

.scroll-arrow p {
  margin-bottom: 0px;
  font-family: "Anderson Grotesk";
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

.scroll-arrow .line {
  z-index: 9999999;
  border-left: 1px solid white;
  height: 60px;
  -webkit-animation-name: scroll-down;
          animation-name: scroll-down;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes scroll-down {
  from {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

@keyframes scroll-down {
  from {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

.home {
  height: 100vh;
}

@media only screen and (max-width: 740px) {
  .home {
    height: 100%;
    position: absolute;
  }
}

.home > .home-parallax {
  z-index: 20;
  pointer-events: none;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 740px) {
  .home > .home-parallax {
    width: 100vw;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.home > .home-parallax img {
  position: absolute;
  margin: auto;
  width: 260px;
  height: auto;
  z-index: -10;
}

@media only screen and (max-width: 1000px) {
  .home > .home-parallax img {
    width: 200px;
  }
}

@media only screen and (max-width: 740px) {
  .home > .home-parallax img {
    width: 140px;
  }
}

.home > .home-parallax .texts {
  padding-top: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 500px;
  width: 500px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.home > .home-parallax .texts p {
  font-family: "Anderson Grotesk";
  margin: -26px 0;
  letter-spacing: 3px;
  font-size: 6rem;
  font-weight: 1000;
  color: white;
  text-transform: uppercase;
}

@media only screen and (max-width: 1000px) {
  .home > .home-parallax .texts p {
    font-size: 4rem;
    margin: -16px 0;
  }
}

@media only screen and (max-width: 740px) {
  .home > .home-parallax .texts p {
    font-size: 2.4rem;
    margin: -10px 100%;
  }
}

.home > .home-parallax .texts .lastname {
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
}

@media only screen and (max-width: 740px) {
  .home > .home-parallax .texts .lastname {
    -webkit-text-stroke-width: 1px;
  }
}

.about {
  position: relative;
}

.about .about-top {
  width: 100vw;
  height: 100vh;
  position: relative;
  margin-bottom: 100px;
}

@media only screen and (max-width: 740px) {
  .about .about-top {
    margin-bottom: -80px;
  }
}

.about .about-top .about-pres {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 500px;
  z-index: -10;
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
}

@media only screen and (max-width: 1000px) {
  .about .about-top .about-pres {
    height: 400px;
  }
}

.about .about-top .about-pres p {
  font-family: "Anderson Grotesk";
  margin: -26px 0;
  letter-spacing: 3px;
  font-size: 6rem;
  font-weight: 1000;
  text-transform: uppercase;
}

@media only screen and (max-width: 1000px) {
  .about .about-top .about-pres p {
    font-size: 3.6rem;
    margin: -16px 0;
  }
}

.about .about-top .about-pres span {
  color: white;
  -webkit-text-stroke-width: 0px;
  height: 460px;
}

.about .about-top .about-pres #top-box, .about .about-top .about-pres #bottom-box {
  margin: 0 auto;
  padding: 0;
  width: 100vw;
  position: absolute;
}

.about .about-top .about-pres #top-box {
  top: 1px;
}

.about .about-top .about-pres #bottom-box {
  bottom: -13px;
}

.about .about-top .about-pres .background-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 360px;
  height: 360px;
  z-index: -5;
}

@media only screen and (max-width: 1000px) {
  .about .about-top .about-pres .background-box {
    width: 300px;
    height: 300px;
  }
}

.about .about-bottom {
  width: 50%;
  margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
  .about .about-bottom {
    width: 90%;
  }
}

.about .about-bottom p {
  line-height: 1.6rem;
}

@media only screen and (max-width: 1000px) {
  .about .about-bottom p {
    margin-top: 40px;
  }
}

.about .about-bottom p a {
  font-family: "Anderson Grotesk" !important;
  font-weight: 800 !important;
  background-color: black;
  padding: 3px 6px 1px 6px;
  border-bottom: 2px solid red;
}

.about .about-bottom p a:hover {
  color: white;
  background-color: red;
}

.about .about-bottom .links {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about .about-bottom .links a {
  border-bottom: none;
  margin: 0 20px;
  font-size: 2rem;
  font-weight: 1000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  -webkit-transition: none;
  transition: none;
}

@media only screen and (max-width: 1000px) {
  .about .about-bottom .links a {
    font-size: 1.5rem;
  }
}

.about .about-bottom .links a:hover {
  color: white;
  -webkit-text-stroke-width: 0px;
}

.works {
  position: relative;
}

.works .about-top {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  margin-bottom: 100px;
  pointer-events: none;
}

.works .category {
  z-index: 30;
  position: fixed;
  top: 0;
  width: 100vw;
  margin-top: 60px;
  font-size: 2.5rem;
  font-weight: 1000;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

@media only screen and (max-width: 1000px) {
  .works .category {
    margin-top: 140px;
  }
}

@media only screen and (max-width: 740px) {
  .works .category {
    letter-spacing: 1px;
    margin-top: 100px;
    font-size: 1.6rem;
  }
}

.works .grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
  width: 70%;
  margin: 200px auto;
}

@media only screen and (max-width: 1000px) {
  .works .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 140px;
    width: 90%;
    margin-top: 250px;
    margin-bottom: 140px;
  }
}

@media only screen and (max-width: 740px) {
  .works .grid {
    grid-row-gap: 100px;
    width: 100%;
    margin-top: 200px;
    margin-bottom: 100px;
  }
}

.works .grid .cards {
  background-color: #151515;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transform: rotateX(0) rotateY(0);
          transform: rotateX(0) rotateY(0);
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out !important;
          transition-timing-function: ease-out !important;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.works .grid .cards img {
  width: 100%;
  height: auto;
}

.works .grid .cards.is-out {
  -webkit-transform: rotateX(0) rotateY(0) !important;
          transform: rotateX(0) rotateY(0) !important;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.works .grid .cards:hover .background {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (max-width: 1000px) {
  .works .grid .cards:hover .background {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
}

.works .grid .cards:hover .project, .works .grid .cards:hover .details {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.works .grid .cards:hover .project {
  top: 50%;
}

@media only screen and (max-width: 1000px) {
  .works .grid .cards:hover .project {
    top: 0;
  }
}

.works .grid .cards .project, .works .grid .cards .details {
  z-index: 10;
  position: absolute;
  width: 100%;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (max-width: 1000px) {
  .works .grid .cards .project, .works .grid .cards .details {
    opacity: 1;
  }
}

.works .grid .cards .project {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 1000;
  letter-spacing: 1px;
  color: white;
}

@media only screen and (max-width: 1000px) {
  .works .grid .cards .project {
    font-size: 2.5rem;
    top: 0;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    padding-top: 10px;
  }
}

@media only screen and (max-width: 740px) {
  .works .grid .cards .project {
    font-size: 1.8rem;
  }
}

.works .grid .cards .details {
  bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

@media only screen and (max-width: 1000px) {
  .works .grid .cards .details {
    -webkit-text-stroke-width: 0.5px;
    bottom: 0px;
    padding-bottom: 10px;
  }
}

.works .grid .cards .background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: auto 120%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (max-width: 1000px) {
  .works .grid .cards .background {
    opacity: 0.5;
    background-size: cover;
  }
}

.works .presentation {
  width: 70%;
  margin: 0 auto;
}

.works .presentation p a {
  font-family: "Anderson Grotesk" !important;
  font-weight: 800 !important;
  background-color: black;
  padding: 3px 6px 1px 6px;
  border-bottom: 2px solid red;
}

.works .presentation p a:hover {
  color: white;
  background-color: red;
}

.works .presentation p b, .works .presentation p strong {
  font-family: "Anderson Grotesk";
  font-weight: 800;
  background-color: black;
  padding: 3px 6px;
}

.works .presentation img {
  width: 100%;
  height: auto;
}

.works .presentation video {
  width: 100%;
  height: auto;
}

.works .presentation .youtube-video {
  height: 100%;
  position: relative;
}

.works .presentation .youtube-video img {
  width: 100%;
  height: auto;
}

.works .presentation .youtube-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}

@media only screen and (max-width: 1000px) {
  .works .presentation {
    width: 100%;
    padding-top: 120px;
  }
}

@media only screen and (max-width: 740px) {
  .works .presentation {
    padding-top: 80px;
  }
}

.works .work-header {
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-size: cover;
}

.works .work-infos {
  margin-top: 150px;
  line-height: 1.4rem;
}

@media only screen and (max-width: 1000px) {
  .works .work-infos {
    margin-top: 0;
    padding: 0 80px;
  }
}

@media only screen and (max-width: 740px) {
  .works .work-infos {
    padding: 0 40px;
  }
}

.works .work-infos .infos-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.8rem;
}

@media only screen and (max-width: 740px) {
  .works .work-infos .infos-row {
    margin: 60px 0;
  }
  .works .work-infos .infos-row:first-child {
    margin-top: 0px;
  }
}

.works .work-infos .infos-row .title {
  width: 25%;
}

@media only screen and (max-width: 740px) {
  .works .work-infos .infos-row .title {
    width: 100%;
  }
}

.works .work-infos .infos-row .title p {
  font-family: "Anderson Grotesk";
  font-weight: 1000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media only screen and (max-width: 740px) {
  .works .work-infos .infos-row .title p {
    margin: 10px 0;
  }
}

.works .work-infos .infos-row .text {
  width: 75%;
}

@media only screen and (max-width: 740px) {
  .works .work-infos .infos-row .text {
    width: 100%;
  }
}

@media only screen and (max-width: 740px) {
  .works .work-infos .infos-row .text p {
    margin: 10px 0;
  }
}

.works .work-infos .brief {
  margin: 130px 0;
}

@media only screen and (max-width: 740px) {
  .works .work-infos .brief {
    margin: 60px 0;
  }
}

.works .work-gallery img, .works .work-gallery video, .works .work-gallery .youtube-video, .works .work-gallery p {
  margin-bottom: 50px;
}

.works .work-gallery img:last-child, .works .work-gallery video:last-child, .works .work-gallery .youtube-video:last-child, .works .work-gallery p:last-child {
  margin-bottom: 0px;
}

.works .work-gallery p {
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  margin-bottom: 50px;
}

.works .parlons-en {
  margin: 160px 0;
  text-align: center;
}

@media only screen and (max-width: 1000px) {
  .works .parlons-en {
    margin: 100px 0;
  }
}

.works .parlons-en p {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1000px) {
  .works .parlons-en p {
    padding: 0 40px;
  }
}

.works .parlons-en div a {
  font-family: "Anderson Grotesk";
  font-weight: 1000;
  font-size: 6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  -webkit-transition: none;
  transition: none;
}

.works .parlons-en div a:hover {
  border: none;
  color: white;
  -webkit-text-stroke-width: 0px;
  -webkit-transition: none;
  transition: none;
}

@media only screen and (max-width: 1000px) {
  .works .parlons-en div a {
    font-size: 4rem;
  }
}

@media only screen and (max-width: 740px) {
  .works .parlons-en div a {
    font-size: 2.5rem;
  }
}

.works .prev-next-work {
  margin-bottom: 100px;
  position: relative;
}

.works .prev-next-work h2 {
  margin-bottom: 60px;
  font-family: "Anderson Grotesk";
  font-weight: 1000;
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: white;
}

@media only screen and (max-width: 1000px) {
  .works .prev-next-work h2 {
    font-size: 1.5rem;
  }
}

.works .prev-next-work .prev-next-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.works .prev-next-work .prev-next-content .prev-work, .works .prev-next-work .prev-next-content .next-work {
  position: relative;
}

.works .prev-next-work .prev-next-content .prev-work a, .works .prev-next-work .prev-next-content .next-work a {
  display: inline-block;
  border: none;
  margin: 0;
  font-family: "Anderson Grotesk";
  font-weight: 1000;
  font-size: 2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  -webkit-transition: none;
  transition: none;
}

.works .prev-next-work .prev-next-content .prev-work a:hover .info-left span, .works .prev-next-work .prev-next-content .prev-work a:hover .info-right span, .works .prev-next-work .prev-next-content .next-work a:hover .info-left span, .works .prev-next-work .prev-next-content .next-work a:hover .info-right span {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
  opacity: 1;
}

.works .prev-next-work .prev-next-content .prev-work a:hover .image, .works .prev-next-work .prev-next-content .next-work a:hover .image {
  height: 100px;
  background-position: center;
  opacity: 0.5;
}

.works .prev-next-work .prev-next-content .prev-work a .info-left, .works .prev-next-work .prev-next-content .next-work a .info-left {
  text-align: left;
  left: calc(100% + 20px);
}

.works .prev-next-work .prev-next-content .prev-work a .info-right, .works .prev-next-work .prev-next-content .next-work a .info-right {
  text-align: right;
  right: calc(100% + 20px);
}

.works .prev-next-work .prev-next-content .prev-work a .info-left, .works .prev-next-work .prev-next-content .prev-work a .info-right, .works .prev-next-work .prev-next-content .next-work a .info-left, .works .prev-next-work .prev-next-content .next-work a .info-right {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  font-size: 0.8rem;
  top: 8px;
  width: auto;
  color: white;
  -webkit-text-stroke-width: 0px !important;
  white-space: nowrap;
}

.works .prev-next-work .prev-next-content .prev-work a .info-left span, .works .prev-next-work .prev-next-content .prev-work a .info-right span, .works .prev-next-work .prev-next-content .next-work a .info-left span, .works .prev-next-work .prev-next-content .next-work a .info-right span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.works .prev-next-work .prev-next-content .prev-work a .image, .works .prev-next-work .prev-next-content .next-work a .image {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: -9999;
  height: 0px;
  width: 400px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: height, background-position, background-size, opacity;
  transition: height, background-position, background-size, opacity;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  background-position: center center;
  background-size: 100%;
}

@media only screen and (max-width: 1000px) {
  .works .prev-next-work .prev-next-content .prev-work, .works .prev-next-work .prev-next-content .next-work {
    padding: 0 40px;
  }
  .works .prev-next-work .prev-next-content .prev-work a, .works .prev-next-work .prev-next-content .next-work a {
    font-size: 1.5rem;
  }
  .works .prev-next-work .prev-next-content .prev-work .info-left, .works .prev-next-work .prev-next-content .prev-work .info-right, .works .prev-next-work .prev-next-content .prev-work .image, .works .prev-next-work .prev-next-content .next-work .info-left, .works .prev-next-work .prev-next-content .next-work .info-right, .works .prev-next-work .prev-next-content .next-work .image {
    display: none;
  }
}

@media only screen and (max-width: 740px) {
  .works .prev-next-work .prev-next-content .prev-work a, .works .prev-next-work .prev-next-content .next-work a {
    font-size: 1rem;
    color: white;
    -webkit-text-stroke-width: 0px;
  }
}

.works .prev-next-work .prev-next-content .prev-work {
  margin-right: auto;
}

.works .prev-next-work .prev-next-content .next-work {
  margin-left: auto;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
  50% {
    -webkit-transform: translate(-4px, 0);
            transform: translate(-4px, 0);
  }
  100% {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
  50% {
    -webkit-transform: translate(-4px, 0);
            transform: translate(-4px, 0);
  }
  100% {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
}

.error .name {
  font-size: 8rem !important;
}

@media only screen and (max-width: 740px) {
  .error .name {
    font-size: 4rem !important;
  }
}

.error .lastname {
  font-size: 2rem !important;
  -webkit-text-stroke-width: 1px !important;
  margin-top: 10px !important;
}

@media only screen and (max-width: 740px) {
  .error .lastname {
    margin: 10px 0 0 0 !important;
  }
}

.error .error-information {
  font-family: "Archivo" !important;
  margin: 0 auto !important;
  letter-spacing: 0px !important;
  font-size: 1.2rem !important;
  font-weight: initial !important;
  text-transform: initial !important;
  text-align: center !important;
  margin-top: 50px !important;
}

@media only screen and (max-width: 740px) {
  .error .error-information {
    padding: 0 40px;
    margin-top: 30px !important;
  }
}

.basic-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
  margin-top: 30vh;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-family: "Archivo";
  font-weight: 300;
  letter-spacing: 0.5px;
}

.basic-content p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-family: "Archivo";
  font-weight: 300;
  letter-spacing: 0.5px;
}

.basic-content b, .basic-content strong {
  font-family: "Anderson Grotesk";
  font-weight: 800;
  background-color: black;
  padding: 3px 6px;
}

.basic-content a {
  font-family: "Anderson Grotesk";
  font-weight: 1000;
  border-bottom: solid 1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.basic-content a:hover {
  color: red;
}

.basic-content h1, .basic-content h2, .basic-content h3, .basic-content h4, .basic-content h5 {
  margin-top: 10px;
  font-family: "Anderson Grotesk";
  font-weight: 1000;
  letter-spacing: 0.5px;
}

.cc-window, .cc-banner {
  font-size: 0.9rem !important;
  padding: 10px 20px !important;
}

@media only screen and (max-width: 740px) {
  .cc-window, .cc-banner {
    padding: 20px !important;
  }
}

.copyrights {
  margin-top: 100px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1000px) {
  .copyrights {
    margin-bottom: 140px;
    font-size: 0.7rem;
  }
}

@media only screen and (max-width: 740px) {
  .copyrights {
    margin-bottom: 100px;
  }
}
