:root {
  --light: #FFF8ED;
  --beige: #F2E9DB;
  --darkGreen: #19372C;
  --green: #02442D;
  --lightGreen: #D2E3DB;
}

@font-face {
  font-family: "Maragsa";
  src: url("../fonts/Maragsa-Display.woff2");
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Light.otf");
  font-weight: 100;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Black.otf");
  font-weight: 900;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--light);
  color: var(--darkGreen);
  font-family: "Satoshi", sans-serif;
}
body:not(.home) main {
  padding-inline: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Maragsa", serif;
}

p {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 2rem;
}

.btn {
  padding: 0.9rem 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1rem;
  border: 1px solid var(--lightGreen);
  background-color: var(--lightGreen);
  color: var(--darkGreen);
  font-size: 0.6875rem;
  text-transform: uppercase;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.btn.secondary {
  background-color: var(--green);
  border-color: var(--darkGreen);
  color: var(--light);
}
.btn.secondary svg path {
  stroke: var(--light);
}
.btn.ghost {
  border-color: var(--light);
  background-color: transparent;
}
.btn.outline {
  background-color: transparent;
  color: var(--darkGreen);
}
.btn.progress {
  border: 1px solid var(--lightGreen);
  background-color: transparent;
  border-radius: 0.5rem;
  padding: 1rem;
}
.btn svg {
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.btn svg path {
  stroke: var(--darkGreen);
}
.btn:hover.arrow-up svg {
  transform: translateY(-0.25rem);
}
.btn:hover svg {
  transform: translateX(0.25rem);
}
.btn img {
  height: 27px;
  width: 27px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

main {
  padding-top: 80px;
  padding-bottom: 48px;
}
main section {
  padding-top: 9rem;
  padding-inline: 10px;
  overflow: hidden;
}
main section:first-of-type {
  padding-top: 2.5rem;
}
main .container {
  margin-inline: auto;
  max-width: 1328px;
}
main .container hr {
  border-color: var(--darkGreen);
  opacity: 0.5;
  width: 100%;
}
main .grid {
  -moz-column-gap: 22px;
       column-gap: 22px;
  row-gap: 20px;
}

.section-title {
  font-weight: 300;
  letter-spacing: 0.02625rem;
  margin-bottom: 20px;
}
.section-title h1,
.section-title h2 {
  flex-shrink: 0;
  font-family: "Satoshi", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
}
.section-title span {
  flex-shrink: 0;
  font-size: 0.875rem;
}

.swiper {
  z-index: 0;
}
.swiper .swiper-wrapper {
  margin-bottom: 50px;
  align-items: center;
}
.swiper .swiper-wrapper .swiper-slide {
  transition: transform 250ms ease;
}
.swiper .swiper-wrapper .swiper-slide img {
  border-radius: 15px;
}
.swiper .swiper-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  max-width: 200px;
  margin-inline: auto;
}
.swiper .swiper-bottom .swiper-scrollbar {
  height: 1px;
  background-color: rgba(25, 55, 44, 0.2);
  position: relative;
  z-index: 0;
  inset: unset;
}
.swiper .swiper-bottom .swiper-scrollbar::before, .swiper .swiper-bottom .swiper-scrollbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  height: 1px;
  width: 5px;
  background-color: rgba(25, 55, 44, 0.2);
  z-index: 0;
}
.swiper .swiper-bottom .swiper-scrollbar::after {
  left: unset;
  right: -5px;
}
.swiper .swiper-bottom .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--darkGreen);
  height: 12px;
  border-radius: 6px;
  top: -5px;
  cursor: grab;
}

@media only screen and (min-width: 1024px) {
  main {
    padding-bottom: 80px;
  }
  .section-title {
    margin-bottom: 60px;
  }
  .swiper .swiper-bottom {
    max-width: 430px;
  }
}
.lampie-john-images {
  display: flex;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .lampie-john-images {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}
.lampie-john-images .tile {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .lampie-john-images .tile img {
    -o-object-fit: unset;
       object-fit: unset;
    height: auto;
  }
  .lampie-john-images .tile.lasersnijmachine {
    grid-area: 1/1/2/2;
  }
  .lampie-john-images .tile.illustrator-bestand-snijlijnen {
    grid-area: 1/2/3/3;
  }
  .lampie-john-images .tile.testmontage {
    grid-area: 2/1/3/2;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-animation=slide-up] {
    transform: translateY(30px);
  }
  .no-js [data-animation=slide-up] {
    transform: translateY(0);
  }
  [data-animation=slide-down] {
    transform: translateY(-30px);
  }
  .no-js [data-animation=slide-down] {
    transform: translateY(0);
  }
  [data-animation=slide-left] {
    transform: translateX(30px);
  }
  .no-js [data-animation=slide-left] {
    transform: translateX(0);
  }
  [data-animation=slide-right] {
    transform: translateX(-30px);
  }
  .no-js [data-animation=slide-right] {
    transform: translateX(0);
  }
  [data-animation=fade-up] {
    opacity: 0;
    transform: translateY(30px);
  }
  .no-js [data-animation=fade-up] {
    opacity: 1;
    transform: translateY(0);
  }
  [data-animation=fade-down] {
    opacity: 0;
    transform: translateY(-30px);
  }
  .no-js [data-animation=fade-down] {
    opacity: 1;
    transform: translateY(0);
  }
  [data-animation=fade-left] {
    opacity: 0;
    transform: translateX(30px);
  }
  .no-js [data-animation=fade-left] {
    opacity: 1;
    transform: translateX(0);
  }
  [data-animation=fade-right] {
    opacity: 0;
    transform: translateX(-30px);
  }
  .no-js [data-animation=fade-right] {
    opacity: 1;
    transform: translateX(0);
  }
  [data-animation=fade-in] {
    opacity: 0;
  }
  .no-js [data-animation=fade-in] {
    opacity: 1;
  }
  [data-animation=zoom-in] {
    opacity: 0;
    transform: scale(0.5);
  }
  .no-js [data-animation=zoom-in] {
    opacity: 1;
    transform: scale(1);
  }
  [data-animation=zoom-out] {
    opacity: 0;
    transform: scale(1.5);
  }
  .no-js [data-animation=zoom-out] {
    opacity: 1;
    transform: scale(1);
  }
  /* Slide Up */
  @keyframes slide-up {
    0% {
      transform: translateY(30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  /* Slide Down */
  @keyframes slide-down {
    0% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  /* Slide Left */
  @keyframes slide-left {
    0% {
      transform: translateX(30px);
    }
    100% {
      transform: translateX(0);
    }
  }
  /* Slide Right */
  @keyframes slide-right {
    0% {
      transform: translateX(-30px);
    }
    100% {
      transform: translateX(0);
    }
  }
  /* Fade Up */
  @keyframes fade-up {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Fade Down */
  @keyframes fade-down {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Fade Down Project Button */
  @keyframes fade-down-button {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Fade Left */
  @keyframes fade-left {
    0% {
      opacity: 0;
      transform: translateX(30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* Fade Right */
  @keyframes fade-right {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* Fade In */
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* Zoom In */
  @keyframes zoom-in {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  /* Zoom Out */
  @keyframes zoom-out {
    0% {
      opacity: 0;
      transform: scale(1.5);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
}
header {
  background-color: rgba(236, 236, 227, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: sticky;
  width: 100%;
  max-width: calc(100vw - 40px);
  top: 40px;
  border-radius: 1.5rem;
  margin-inline: auto;
  z-index: 1;
}
header .container {
  max-width: 1328px;
  margin-inline: auto;
}
header .logo {
  z-index: 2;
  transition: transform 350ms ease;
}
header .logo:hover {
  transform: scale(1.15);
}
header ul li {
  display: flex;
}
header ul li a {
  font-size: 0.6875rem;
  position: relative;
  padding-block: 18px;
  z-index: 1;
}
header ul li a:hover::before {
  height: calc(100% - 1rem);
  opacity: 1;
}
header ul li a::before {
  content: "";
  position: absolute;
  background-color: var(--lightGreen);
  width: calc(100% + 2.5rem);
  height: 0;
  border-radius: 2rem;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms ease;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  header {
    max-width: 1392px;
  }
}

body.home .intro p {
  margin-bottom: 60px;
}
@media only screen and (min-width: 1024px) {
  body.home .intro p {
    margin-bottom: 40px;
  }
}
body.home section:not(#work) {
  padding-inline: 30px;
}

.intro h1 {
  font-size: 3.5rem;
  line-height: 4.375rem;
  margin-bottom: 20px;
}
.intro .tagline {
  margin-bottom: 20px;
}
.intro .tagline .wrap {
  font-size: 1.375rem;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 0.0875rem;
}
.intro .tagline .wrap .emoji {
  transform: translateY(-4px);
  font-size: 22px;
}
.intro p {
  margin-bottom: 20px;
}
.intro p strong {
  font-weight: 500;
}
.intro .navigation .nav-title {
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.06875rem;
  text-transform: uppercase;
}
.intro .navigation ul {
  max-width: 380px;
}
.intro .navigation ul li a {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-block: 0.4rem;
  border-bottom: 1px solid rgba(25, 55, 44, 0.2);
  padding-left: 0.3rem;
  transition: padding-left 250ms ease;
}
.intro .navigation ul li a:hover {
  padding-left: 0.75rem;
}
@media only screen and (min-width: 1024px) {
  .intro .tagline {
    margin-bottom: 40px;
  }
  .intro .tagline span {
    font-size: 1.25rem;
  }
  .intro h1 {
    font-size: 6.625rem;
    line-height: 6.875rem;
    margin-bottom: 40px;
  }
  .intro p {
    margin-bottom: 60px;
  }
}

#work {
  overflow: hidden;
}
#work .tile {
  border-radius: 1.25rem;
  color: var(--darkGreen);
  border: 1px solid var(--lightGreen);
  row-gap: 0;
  position: relative;
  padding: 10px;
}
#work .tile:not(.progress) {
  color: var(--light);
  background: linear-gradient(0deg, #000804 0%, #02462e 66.57%, #108059 100%);
}
#work .tile.selamat-jalan img {
  -o-object-position: left;
     object-position: left;
}
#work .tile a:not(.btn) {
  position: absolute;
  inset: 0;
}
#work .tile a:not(.btn):hover ~ .text .btn svg {
  transform: translateX(0.25rem);
}
#work .tile .text {
  padding: 2.25rem 0.75rem;
}
#work .tile .text .subtitle {
  opacity: 0.6;
  margin-bottom: 0.6rem;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.0225rem;
}
#work .tile .text .subtitle span {
  display: block;
  color: currentColor;
  text-transform: uppercase;
}
#work .tile .text h3 {
  font-size: 2.5rem;
  color: currentColor;
  margin-bottom: 2.5rem;
  letter-spacing: 0.125rem;
}
#work .tile .text p {
  color: currentColor;
  margin-bottom: 2.5rem;
  line-height: 2rem;
  font-weight: 300;
}
#work .tile img {
  border-radius: 13px;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1023px) {
  #work .tile .text {
    order: -1;
    padding-bottom: 0;
  }
  #work .tile .text h3 {
    margin-bottom: 22px;
  }
  #work .tile .btn {
    transform: translateY(18px);
    padding: 9px 15px;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  #work .tile.alt .text {
    padding-left: 12px;
    padding-right: 0;
  }
  #work .tile .text {
    padding-block: 5rem;
    padding-left: 0;
    padding-right: 12px;
  }
  #work .tile .text .subtitle {
    margin-bottom: 1.25rem;
  }
  #work .tile .text h3 {
    font-size: 3.125rem;
    margin-bottom: 5rem;
    line-height: 3.125rem;
    letter-spacing: 0.15625rem;
  }
  #work .tile .text p {
    margin-bottom: 40px;
  }
  #work .tile img {
    aspect-ratio: 5/4;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.fotografie {
  overflow: hidden;
}
.fotografie .title {
  margin-bottom: 1.6rem;
}
.fotografie .title h2 {
  font-size: 2.5rem;
}
.fotografie .title span {
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.02625rem;
}
.fotografie p {
  margin-bottom: 2.5rem;
}
.fotografie .swiper {
  margin-top: 60px;
  overflow: visible;
}
.fotografie .swiper .swiper-slide {
  transition: all 350ms ease;
  transform: scale(0.9);
  opacity: 0.5;
}
.fotografie .swiper .swiper-slide img {
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.15);
}
.fotografie .swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .fotografie .swiper {
    margin-top: 80px;
  }
}

.bottom-buttons {
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.6rem;
}
.bottom-buttons a {
  width: 100%;
}

section.design {
  overflow: hidden;
}
section.design .title {
  margin-bottom: 1.6rem;
}
section.design .title h2 {
  font-size: 2.5rem;
  flex-shrink: 0;
}
section.design .title span {
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.02625rem;
}
section.design p {
  margin-bottom: 2.5rem;
}
section.design .swiper {
  overflow: visible;
  margin-top: 60px;
}
section.design .swiper .swiper-slide {
  transition: all 350ms ease;
  transform: scale(0.9);
  opacity: 0.5;
}
section.design .swiper .swiper-slide video {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.3);
}
section.design .swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  section.design .swiper {
    margin-top: 80px;
  }
}

.bottom-buttons {
  margin-top: 80px;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.6rem;
}
.bottom-buttons a {
  width: 100%;
  height: 60px;
}

body.about main {
  padding-inline: 0;
}
body.about main section {
  padding-inline: 20px !important;
}
body.about main section:not(.intro) {
  padding-inline: 0;
}

.intro.about {
  overflow: hidden;
}
.intro.about .navigation {
  margin-block: 20px;
}
.intro.about h1 {
  flex-shrink: 0;
  font-family: "Satoshi", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
}
.intro.about .swiper {
  overflow: visible;
}
.intro.about .swiper .swiper-wrapper {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .intro.about .navigation {
    margin-block: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .intro.about .navigation {
    margin-block: 60px;
  }
}

#funfacts .tile {
  padding: 1.25rem;
  border-radius: 0.9375rem;
  background-color: rgba(229, 218, 200, 0.5);
  height: 100%;
}
#funfacts .tile .top {
  display: flex;
  font-size: 0.75rem;
  font-weight: 300;
  justify-content: space-between;
}
#funfacts .tile .top h3 {
  text-transform: uppercase;
  letter-spacing: 0.0225rem;
  font-family: "Satoshi", sans-serif;
  opacity: 0.6;
}
#funfacts .tile .top .side {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-end;
}
#funfacts .tile .top .side span:nth-child(2) {
  opacity: 0.6;
  position: absolute;
  top: 100%;
}
#funfacts .tile .image {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#funfacts .tile .image.artist img {
  border-radius: 50%;
}
#funfacts .tile .image.canvas {
  border-radius: 0.3125rem;
}
#funfacts .tile .image.canvas img {
  border: 10px solid #FFFFFF;
}
#funfacts .tile .image img {
  height: 170px;
  box-shadow: 6px 6px 20px 1px rgba(0, 0, 0, 0.18);
  border-radius: 0.3125rem;
}

#experience .grid {
  row-gap: 80px;
}
#experience .jobs,
#experience .education {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#experience .jobs .section-title,
#experience .education .section-title {
  margin-bottom: 1.25rem;
}
#experience .tile {
  border-radius: 1rem;
  padding: 1.25rem;
  padding-bottom: 4rem;
  border: 1px solid var(--darkGreen);
}
#experience .tile.active {
  background-color: var(--darkGreen);
  color: var(--light);
}
#experience .tile .flex {
  justify-content: space-between;
}
#experience .tile .left {
  display: flex;
  flex-direction: column;
}
#experience .tile .left h3 {
  font-size: 1rem;
  font-family: "Satoshi", sans-serif;
}
#experience .tile .left .function {
  font-size: 0.875rem;
  font-weight: 300;
}
#experience .tile .left .type {
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.5;
  font-weight: 300;
}
#experience .tile .right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.075rem;
  font-size: 0.75rem;
  height: -moz-fit-content;
  height: fit-content;
}
#experience .tile .right svg path {
  stroke: currentColor;
}
#experience .skills .section-title,
#experience .character .section-title {
  margin-bottom: 2.5rem;
}
#experience .skills .items,
#experience .character .items {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
#experience .skills .items .item,
#experience .character .items .item {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 300;
  border: 1px solid currentColor;
  border-radius: 0.3125rem;
  padding: 0.4rem 0.9rem;
}
@media only screen and (min-width: 1024px) {
  #experience .tile {
    padding: 2rem;
    height: 100%;
  }
  #experience .tile .left h3 {
    font-size: 1.25rem;
  }
  #experience .tile .left .function,
  #experience .tile .left .type {
    font-size: 1.125rem;
  }
  #experience .tile .right {
    letter-spacing: 0.1125rem;
    font-size: 1.125rem;
  }
  #experience .skills .items .item,
  #experience .character .items .item {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
}

.photography main section:not(.intro) .column {
  flex-direction: column;
  gap: 1.25rem;
}
.photography main section:not(.intro) .column .image img {
  border-radius: 0.9375rem;
  margin-bottom: 0.75rem;
  width: 100%;
}
.photography main section:not(.intro) .column .image .text {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.0225rem;
  font-weight: 300;
}
.photography main section:not(.intro) .column .image .text .type {
  text-transform: uppercase;
  opacity: 0.6;
}
.photography main .intro h1 {
  flex-shrink: 0;
  font-family: "Satoshi", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
}

body.design .intro {
  padding-bottom: 0;
}
body.design section:not(.intro) .column {
  flex-direction: column;
  gap: 1.25rem;
}
body.design section:not(.intro) .column .block video,
body.design section:not(.intro) .column .block img {
  border-radius: 0.9375rem;
  margin-bottom: 0.75rem;
  width: 100%;
}
body.design section:not(.intro) .column .block h3 {
  font-size: 0.75rem;
  letter-spacing: 0.0225rem;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: "Satoshi", sans-serif;
}
body.design .intro h1 {
  flex-shrink: 0;
  font-family: "Satoshi", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
}

.project-intro .section-title {
  text-transform: uppercase;
  order: 0;
}
.project-intro .project {
  order: 1;
}
.project-intro h1 {
  font-size: 40px;
}
.project-intro .text {
  order: 3;
}
.project-intro .highlight {
  order: 2;
}

figure {
  display: flex;
  flex-direction: column;
  height: 100%;
}
figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13px;
}
figure figcaption {
  padding-top: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.6;
}

video {
  border-radius: 13px;
}

@media only screen and (min-width: 1024px) {
  .project-intro h1 {
    font-size: 60px;
    letter-spacing: 3px;
  }
  .project-intro .section-title {
    margin-bottom: 20px;
  }
  .project-intro .section-title,
  .project-intro .project,
  .project-intro .text,
  .project-intro .highlight {
    order: unset;
  }
}
body.deel-de-duif .concept figure {
  width: 100%;
}
body.deel-de-duif .concept figure.logo img {
  padding-block: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
body.deel-de-duif .concept figure img {
  height: 350px;
  background-color: #FFFFFF;
}

body.selamat-jalan .extra-text {
  margin-top: -10px;
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #828c81;
  font-weight: 300;
}
body.selamat-jalan .spinner figure {
  width: 100%;
}
body.selamat-jalan .spinner figure img {
  background-color: var(--beige);
  height: 400px;
  padding-block: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
body.selamat-jalan .cards-prototype {
  row-gap: 10px;
}
body.selamat-jalan .cards-prototype figure {
  border-radius: 13px;
  background-color: var(--beige);
  padding: 45px 70px;
}
body.selamat-jalan .cards-prototype figure img {
  border-radius: 0;
}
body.selamat-jalan .cards-prototype span {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.6;
  text-transform: uppercase;
}
body.selamat-jalan .cards-list {
  line-height: 2rem;
  font-weight: 300;
  padding-top: 38px;
}
@media only screen and (min-width: 1024px) {
  body.selamat-jalan .cards-prototype span {
    margin-bottom: 40px;
  }
  body.selamat-jalan .map-final .img-wrap {
    overflow: hidden;
    border-radius: 15px;
  }
  body.selamat-jalan .cards-final {
    height: 800px;
  }
}
body.selamat-jalan #presentationVideo {
  cursor: pointer;
}

body.easy-recepy .images-grid {
  row-gap: 5rem;
}
body.easy-recepy .images-grid .img-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
body.easy-recepy .images-grid .img-block figure img {
  height: 400px;
}
body.easy-recepy .video-block .video-wrap {
  padding-block: 2rem;
  background-color: #eee4d5;
  border-radius: 13px;
  margin-bottom: 8px;
  overflow: hidden;
}
body.easy-recepy .video-block .video-wrap video {
  height: 400px;
  transform: scale(1.75);
}
body.easy-recepy .video-block span {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.6;
}
@media only screen and (min-width: 1024px) {
  body.easy-recepy .images-grid .img-block {
    gap: 2.5rem;
  }
  body.easy-recepy .images-grid .img-block figure img {
    height: 700px;
  }
  body.easy-recepy .video-block .video-wrap video {
    height: 700px;
    transform: unset;
  }
}

body.leaseauto .icon-set .grid {
  row-gap: 10px;
}
body.leaseauto .icon-set figure {
  background-color: var(--beige);
  border-radius: 13px;
  padding: 40px;
}
body.leaseauto .icon-set figure img {
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
}
body.leaseauto .icon-set span {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.6;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  body.leaseauto .icon-set figure {
    padding: 90px;
  }
  body.leaseauto .icon-set figure img {
    max-width: 1150px;
  }
}

body.k-lixer .project-intro img {
  min-height: 350px;
}
body.k-lixer .top-image {
  height: 100%;
}
body.k-lixer .top-image.name .img-wrap img {
  max-width: 450px;
}
body.k-lixer .top-image .img-wrap {
  height: 100%;
  border-radius: 13px;
  padding-block: 4rem;
  background-color: var(--beige);
  display: flex;
  justify-content: center;
  align-items: center;
}
body.k-lixer .top-image .img-wrap img {
  max-width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
body.k-lixer .packaging img {
  height: 420px;
}
@media only screen and (min-width: 1024px) {
  body.k-lixer .project-intro img {
    min-height: 500px;
  }
  body.k-lixer .packaging img {
    height: 475px;
  }
}/*# sourceMappingURL=styles.css.map */