@font-face {
  font-family: "Non Bureau";
  src: url("../fonts/NonBureau-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Non Bureau";
  src: url("../fonts/NonBureau-Thin.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Non Bureau", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 10px;
  overflow: hidden;
}

.project-media-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  max-width: 1920px;
  margin: 0 auto;
}

.col-6-small {
  grid-column: span 6;
}

.col-6 {
  grid-column: span 6;
}

.col-8 {
  grid-column: span 8;
}

.col-10 {
  grid-column: span 10;
}

.col-12 {
  grid-column: span 12;
}

.paired-container {
  grid-column: span 12;
  display: grid;
  gap: 1px;
}

.paired-container.paired-6-grid {
  grid-template-columns: 1fr 1fr;
}

.paired-container.paired-5-grid {
  grid-template-columns: 5fr 5fr;
  max-width: 83.3333333333%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .paired-container.paired-5-grid {
    grid-template-columns: 6fr 6fr;
    max-width: 100%;
  }
}
.site-header {
  color: #ffffff;
  padding-top: 10px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu .menu-item.current-menu-item a {
  background-color: #75fb4c;
}

.nav-menu .menu-item a {
  text-decoration: none;
  color: #000000;
  background: #ffffff;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.nav-menu .menu-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #75fb4c;
  transition: width 0.2s ease;
  z-index: -1;
}
.nav-menu .menu-item a:hover::before {
  width: 100%;
}

.page-transition {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: hidden;
  pointer-events: none;
  visibility: visible;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.page-transition .logo-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: center;
}
.page-transition .logo-grid .logo-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 80px;
  will-change: transform;
  transform: translateZ(0);
}
.page-transition .logo-grid .logo-row .logo {
  width: 60%;
}
.page-transition .logo-grid .logo-row:first-child {
  margin-top: -20px;
}

#page-lottie-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  filter: blur(11px);
}

body:has(.intro-overlay) .page-transition {
  display: none;
}

@media screen and (min-width: 1920px) {
  .nav-menu .menu-item a {
    font-size: 17px;
    line-height: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .nav-menu .menu-item a {
    font-size: 12px;
    line-height: 14px;
  }
  .page-transition .logo-grid {
    gap: 25px;
  }
  .page-transition .logo-grid .logo-row {
    gap: 30px;
  }
  .page-transition .logo-grid .logo-row .logo {
    width: 130%;
  }
  .page-transition .logo-grid .logo-row:first-child {
    margin-top: -10px;
  }
  #page-lottie-animation {
    width: 120vw;
    height: 100vh;
  }
}
@media screen and (max-width: 430px) {
  .site-header {
    width: 100%;
  }
  .nav-menu {
    justify-content: space-around;
  }
}
.footer {
  height: 100vh;
  max-width: 1920px;
  position: relative;
  z-index: 999;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 0 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.footer .newsletter {
  width: 100%;
  height: 100px;
  background-color: #75fb4c;
}
.footer .newsletter .subscribe-bar {
  padding: 10px;
  height: calc(100% - 20px);
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group {
  position: relative;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group input {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Non Bureau";
  font-size: 14px;
  line-height: 14px;
  outline: none;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group input::placeholder {
  color: transparent;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group input:focus {
  border-color: #000000;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group label {
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-family: "Non Bureau";
  letter-spacing: 0.28px;
  pointer-events: none;
  transition: all 0.25s ease;
  outline: none;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group input:focus + label,
.footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group input:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 10px;
  opacity: 0.9;
  color: #000000;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields button {
  background: transparent;
  border: none;
  color: #000000;
  font-family: "Non Bureau";
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.28px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: width 0.2s ease;
  z-index: -1;
}
.footer .newsletter .subscribe-bar .mc4wp-form-fields button:hover::before {
  width: 100%;
}

.footer .footer-logo {
  width: 100%;
  height: 100%;
}

.footer .footer-info {
  width: 100%;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .footer-info .imprint,
.footer .footer-info li:first-child a {
  position: relative;
  z-index: 5;
}
.footer .footer-info .imprint::before,
.footer .footer-info li:first-child a::before {
  content: "";
  background-color: #75fb4c;
  width: 0;
  height: 14px;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}
.footer .footer-info .imprint:hover::before,
.footer .footer-info li:first-child a:hover::before {
  width: 100%;
}

@media screen and (min-width: 1920px) {
  .footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group input {
    font-size: 17px;
    line-height: 17px;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group input:focus + label,
  .footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group input:not(:placeholder-shown) + label {
    font-size: 11px;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form-fields .input-group label {
    font-size: 17px;
    line-height: 17px;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form-fields button {
    font-size: 17px;
    line-height: 17px;
  }
  .footer .imprint::before {
    height: 17px;
  }
  .footer .footer-info {
    font-size: 17px;
    line-height: 17px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    overflow: hidden;
  }
  .footer .newsletter .subscribe-bar {
    height: calc(100% - 20px);
  }
  .footer .newsletter .subscribe-bar .mc4wp-form {
    position: relative;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 0;
    height: 100%;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields .input-group {
    width: 100%;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields .input-group input:focus + label,
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields .input-group input:not(:placeholder-shown) + label {
    top: unset;
    opacity: 0;
    transition: unset;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields .input-group:nth-child(1),
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields .input-group:nth-child(2) {
    grid-column: span 2;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields .input-group:nth-child(2) label {
    top: 50%;
    transform: translateY(-50%);
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields .email-group {
    grid-column: 1;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields .email-group label {
    bottom: 0;
    top: unset;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-form-fields button {
    grid-column: 2;
    justify-self: end;
  }
  .footer .newsletter .subscribe-bar .mc4wp-form .mc4wp-response {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    line-height: 14px;
    font-family: "Non Bureau";
    text-transform: uppercase;
    letter-spacing: 0.28px;
  }
  .footer .image-container {
    height: 15vh;
  }
  .footer .image-container .footer-logo {
    animation: introLogoAnimation 10s linear infinite backwards;
    transform: translateX(100vw);
    height: 100%;
    object-fit: cover;
    width: auto;
  }
  .footer .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer .footer-info li:last-of-type {
    position: absolute;
    right: 10px;
  }
  @keyframes introLogoAnimation {
    0% {
      transform: translateX(100vw);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}
.work-section {
  position: relative;
}
.work-section:has(.dropdown-menu.active) .work-grid.desktop {
  visibility: hidden;
}
.work-section .filter-work {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.work-section .filter-work .filter {
  grid-column: 9/11;
  margin: 0;
  color: #000000;
  font-family: "Non Bureau";
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  background: white;
  border: none;
  text-align: left;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.work-section .filter-work .filter::before {
  content: "";
  background-color: #75fb4c;
  width: 0;
  height: 14px;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}
.work-section .filter-work .filter:hover::before {
  width: 100%;
}
.work-section .filter-work .filter.active {
  background-color: #75fb4c;
}
.work-section .filter-work .dropdown {
  grid-column: 9/11;
  position: relative;
  display: inline-block;
}
.work-section .filter-work .dropdown-menu {
  width: 100%;
  display: none;
  position: absolute;
  list-style: none;
  z-index: 1000;
}
.work-section .filter-work .dropdown-menu.active {
  display: block;
}
.work-section .filter-work .dropdown-menu li a {
  display: block;
  color: #000000;
  text-decoration: none;
  line-height: 1;
  color: #000000;
  font-family: "Non Bureau";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
.work-section .filter-work .dropdown-menu li a::before {
  content: "";
  background-color: #75fb4c;
  width: 0;
  height: 14px;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}
.work-section .filter-work .dropdown-menu li a.active {
  background-color: #75fb4c;
}
.work-section .filter-work .dropdown-menu li a:hover::before {
  width: 100%;
}
.work-section .work-grid.mobile {
  display: none;
}
.work-section .work-grid.desktop {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  min-height: 100vh;
  margin-top: 70px;
}
.work-section .work-grid.desktop .work-thumbnails {
  grid-column: 1/6;
  position: fixed;
  max-height: calc(100vh - 34px - 70px - 10px);
  bottom: 10px;
  max-width: 49%;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.work-section .work-grid.desktop .work-thumbnails .work-thumbnail {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0s ease 0.15s;
  transform: translateY(100%);
  display: flex;
  align-items: flex-end;
}
.work-section .work-grid.desktop .work-thumbnails .work-thumbnail.active {
  opacity: 1;
  transform: translateY(0);
}
.work-section .work-grid.desktop .work-thumbnails .work-thumbnail img,
.work-section .work-grid.desktop .work-thumbnails .work-thumbnail video {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.work-section .work-grid.desktop .work-list {
  grid-column: 9/13;
  margin-top: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  grid-auto-rows: minmax(14px, max-content);
}
.work-section .work-grid.desktop .work-list .work-item {
  grid-column: 1/5;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  cursor: pointer;
  position: relative;
  color: #000000;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.work-section .work-grid.desktop .work-list .work-item:hover::before {
  width: 67vw;
}
.work-section .work-grid.desktop .work-list .work-item:hover .work-category,
.work-section .work-grid.desktop .work-list .work-item:hover .work-year {
  opacity: 1;
}
.work-section .work-grid.desktop .work-list .work-item:not(:hover) .work-category {
  transition: opacity 0.1s ease-in-out 0.1s;
}
.work-section .work-grid.desktop .work-list .work-item:not(:hover) .work-year {
  transition: opacity 0.1s ease-in-out 0.2s;
}
.work-section .work-grid.desktop .work-list .work-item p {
  z-index: 3;
}
.work-section .work-grid.desktop .work-list .work-item .work-name {
  grid-column: 1/3;
}
.work-section .work-grid.desktop .work-list .work-item .work-category {
  grid-column: 3/4;
  opacity: 0;
  transition: opacity 0.1s ease-in-out 0.09s;
}
.work-section .work-grid.desktop .work-list .work-item .work-year {
  grid-column: 4/5;
  text-align: right;
  opacity: 0;
  transition: opacity 0.1s ease-in-out 0s;
}
.work-section .work-grid.desktop .work-list .work-item::before {
  content: "";
  background-color: #75fb4c;
  width: 0;
  height: 14px;
  position: absolute;
  right: 0;
  z-index: 2;
  transition: width 0.3s ease-in-out;
}

@media screen and (min-width: 1920px) {
  .work-section .filter-work .filter,
  .work-section .filter-work .dropdown-menu li a {
    font-size: 17px;
    line-height: 17px;
  }
  .work-section .work-grid.desktop .work-list .work-item {
    font-size: 17px;
    line-height: 17px;
  }
}
@media screen and (max-width: 1024px) {
  .work-section {
    width: 100%;
    min-height: 100vh;
  }
  .work-section .filter-work {
    grid-template-columns: repeat(6, 1fr);
    top: unset;
    bottom: 10px;
  }
  .work-section .filter-work .filter,
  .work-section .filter-work .dropdown-menu li a {
    font-size: 12px;
    line-height: 14px;
    grid-column: 2/6;
    text-align: center;
  }
  .work-section .filter-work .dropdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 90px;
    grid-column: 2/6;
  }
  .work-section .filter-work .dropdown-menu {
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }
  .work-section .filter-work .dropdown-menu.active {
    visibility: visible;
    opacity: 1;
  }
  .work-section .work-grid.desktop {
    display: none;
  }
  .work-section .work-grid.mobile {
    padding-top: 174px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 10px;
    row-gap: 60px;
  }
  .work-section .work-grid.mobile .work-item {
    width: 100%;
    grid-column: 1/5;
    font-size: 17px;
    line-height: 17px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .work-section .work-grid.mobile .work-item .work-name {
    overflow: hidden;
    position: relative;
    z-index: 3;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
  }
  .work-section .work-grid.mobile .work-item .work-name::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #75fb4c;
    transition: width 0.2s ease;
    z-index: -1;
  }
  .work-section .work-grid.mobile .work-item .work-name.active::before {
    width: 100%;
  }
  .work-section .work-grid.mobile .work-item .work-thumbnail {
    width: 100%;
    height: 100%;
  }
  .work-section .work-grid.mobile .work-item .work-thumbnail img,
  .work-section .work-grid.mobile .work-item .work-thumbnail video {
    width: 100%;
    height: 100%;
  }
  .work-section:has(.dropdown-menu.active) {
    overflow: hidden;
  }
  .work-section:has(.dropdown-menu.active) .work-grid.mobile {
    visibility: hidden;
  }
}
.about-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: calc(100vh - 200px);
  position: fixed;
  width: calc(100% - 20px) !important;
}
.about-section .left-container {
  grid-column: 1/7;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: max-content 1fr;
  gap: 10px;
  padding-top: 200px;
}
.about-section .header-content {
  grid-column: 1/7;
  font-family: "Non Bureau";
  font-weight: 100;
  font-size: clamp(24px, 17.5vw, 350px);
  line-height: 0.9;
  letter-spacing: -12.8px;
  text-transform: capitalize;
}
.about-section .content-wrapper {
  grid-column: 1/7;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.about-section .content-wrapper .right-container.mobile {
  display: none;
}
.about-section .middle-content {
  grid-column: 1/6;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.about-section .bottom-container {
  display: grid;
  grid-column: 1/7;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
  align-self: self-end;
  padding-bottom: 10px;
}
.about-section .bottom-container .title-content {
  grid-column: 1/3;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.about-section .bottom-container .details-content {
  grid-column: 3/7;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.about-section .bottom-container .details-content a {
  overflow: hidden;
  position: relative;
  z-index: 3;
  display: block;
}
.about-section .bottom-container .details-content a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 14px;
  background: #75fb4c;
  transition: width 0.2s ease;
  z-index: -1;
}
.about-section .bottom-container .details-content a:hover::before {
  width: 100%;
}
.about-section .right-container {
  height: 100vh;
  grid-column: 9/13;
  overflow: hidden;
}
.about-section .right-container .brands-slider {
  display: flex;
  flex-direction: column;
  align-items: start;
  animation: slideUp 10s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.about-section .right-container .brand-item {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.about-section .right-container.mobile {
  display: none;
}

body:has(.about-section) .footer {
  position: relative;
  top: 100vh;
}

@media screen and (min-width: 1920px) {
  .about-section .middle-content {
    font-size: 17px;
    line-height: 17px;
  }
  .about-section .bottom-container .details-content,
  .about-section .bottom-container .title-content {
    font-size: 17px;
    line-height: 17px;
  }
  .about-section .bottom-container .details-content a::before {
    height: 17px;
  }
  .about-section .right-container .brand-item {
    font-size: 25px;
    line-height: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .about-section {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100% !important;
    position: unset;
  }
  .about-section .left-container {
    padding-top: 150px;
  }
  .about-section .header-content {
    font-size: 18vw;
    letter-spacing: 0.24px;
  }
  .about-section .content-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
  }
  .about-section .content-wrapper .middle-content {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.24px;
  }
  .about-section .content-wrapper .bottom-container {
    display: flex;
    flex-direction: column;
    align-self: self-start;
    padding-bottom: 0;
  }
  .about-section .content-wrapper .bottom-container .title-content,
  .about-section .content-wrapper .bottom-container .details-content {
    font-size: 12px;
    letter-spacing: 0.24px;
  }
  .about-section .content-wrapper .bottom-container .details-content:not(:last-child) {
    margin-bottom: 15px;
  }
  .about-section .content-wrapper .right-container.mobile {
    display: block;
    height: auto;
    overflow: visible;
  }
  .about-section .content-wrapper .right-container.mobile .brands-slider {
    animation: unset;
  }
  .about-section .content-wrapper .right-container.mobile .brands-slider .brand-row {
    display: flex;
    flex-direction: row;
    gap: 13px;
  }
  .about-section .content-wrapper .right-container.mobile .brands-slider .brand-row-0 {
    animation: slideLeft 60s linear infinite;
  }
  .about-section .content-wrapper .right-container.mobile .brands-slider .brand-row-1 {
    animation: slideRight 60s linear infinite;
  }
  .about-section .content-wrapper .right-container.mobile .brands-slider .brand-row-2 {
    animation: slideLeft 60s linear infinite;
    animation-delay: -27.5s;
  }
  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes slideRight {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
  .about-section .content-wrapper .right-container.mobile .brand-item {
    font-size: 18px;
    line-height: 22px;
    white-space: nowrap;
  }
  .about-section .right-container.desktop {
    display: none;
  }
  body:has(.about-section) .footer {
    position: relative;
    top: unset;
  }
}
.production-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  content-visibility: auto;
}
.production-section .headline-wrapper {
  padding-top: 200px;
  grid-column: 1/11;
  margin-bottom: 10px;
}
.production-section .headline-wrapper .headline {
  color: #000000;
  font-family: "Non Bureau";
  font-size: clamp(24px, 17.5vw, 350px);
  font-style: normal;
  font-weight: 100;
  line-height: 0.8;
  letter-spacing: -12.8px;
}
.production-section .content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  grid-column: 1/13;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.production-section .content .left-column {
  grid-column: 1/6;
}
.production-section .content .right-column {
  grid-column: 7/13;
}
.production-section .content .right-column .step-block {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
}
.production-section .content .right-column .step-block:not(:last-child) {
  margin-bottom: 25px;
}
.production-section .content .right-column .step-block .step-title {
  grid-column: 1/3;
  color: #000000;
  font-family: "Non Bureau";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  white-space: pre;
}
.production-section .content .right-column .step-block .description {
  grid-column: 3/7;
  color: #000000;
  font-family: "Non Bureau";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.production-section .carousel {
  grid-column: 1/13;
  position: relative;
  margin: 100px 0;
  height: 700px;
}
.production-section .carousel .slick-carousel {
  width: 100%;
  user-select: none;
  cursor: grab;
  display: flex;
  flex-direction: row;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.production-section .carousel .slick-carousel > * {
  height: 700px;
}
.production-section .carousel .slick-carousel .slide-track {
  display: flex;
  width: max-content;
}
.production-section .carousel .slide {
  padding: 0 1px;
  display: flex;
  align-items: center;
}
.production-section .carousel .slider-content {
  height: 700px;
  width: auto;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.production-section .carousel video.slider-content {
  transform: translate3d(0, 0, 0);
}
.production-section .carousel .smiley {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  pointer-events: none;
  filter: blur(11px);
  width: 100%;
  height: 100%;
  z-index: 20;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 1920px) {
  .production-section .content {
    font-size: 17px;
    line-height: 17px;
  }
  .production-section .content .right-column .step-block .step-title,
  .production-section .content .right-column .step-block .description {
    font-size: 17px;
    line-height: 17px;
  }
}
@media screen and (max-width: 1024px) {
  .production-section .headline-wrapper {
    padding-top: 150px;
  }
  .production-section .headline-wrapper .headline {
    font-size: 18vw;
    letter-spacing: 0.24px;
  }
  .production-section .content {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .production-section .content .right-column .step-block {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .production-section .content .right-column .step-block:not(:last-child) {
    margin-bottom: 20px;
  }
  .production-section .carousel {
    grid-column: 1/13;
    position: relative;
    margin: 50px 0;
    height: 500px;
  }
  .production-section .carousel .slick-carousel {
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
  }
  .production-section .carousel .slide {
    display: flex;
    height: 100%;
    touch-action: none;
  }
  .production-section .carousel .slider-content {
    height: 500px;
  }
  .production-section .carousel .smiley {
    filter: blur(6px);
  }
}
.artists-section {
  position: relative;
  padding: 60px 0;
  text-align: center;
}
.artists-section .artists-grid {
  gap: 10px;
  min-height: 100vh;
  max-width: 1920px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.artists-section .artists-grid .artists-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.artists-section .artists-grid .artists-list .artist-row {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.artists-section .artists-grid .artists-list .artist-item {
  text-align: center;
  height: 89px;
  line-height: 0.9;
}
.artists-section .artists-grid .artists-list .artist-item:hover > .artist-name::before {
  width: 100%;
}
.artists-section .artists-grid .artists-list .artist-item .artist-name {
  color: #000000;
  text-align: center;
  font-family: "Non Bureau";
  font-size: 80px;
  font-style: normal;
  font-weight: 100;
  line-height: 0.76;
  letter-spacing: -0.8px;
  text-transform: capitalize;
  position: relative;
  z-index: 5;
  margin-bottom: 7px;
}
.artists-section .artists-grid .artists-list .artist-item .artist-name::before {
  content: "";
  background-color: #75fb4c;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}
.artists-section .artists-grid .artists-list .artist-item .artist-subtitle {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  z-index: 5;
  position: relative;
}
.artists-section .artists-grid .artist-item:hover > .artist-name,
.artists-section .artists-grid .artist-item:hover > .artist-subtitle {
  z-index: 7;
}
.artists-section .artists-grid .artist-item:hover > .artist-thumbnail {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 6;
}
.artists-section .artists-grid .artist-thumbnail {
  position: fixed;
  pointer-events: none;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%) scale(1.02);
  z-index: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0;
}
.artists-section .artists-grid .artist-thumbnail img,
.artists-section .artists-grid .artist-thumbnail video {
  max-height: 80vh;
}

@media screen and (min-width: 1920px) {
  .artists-section .artists-grid .artists-list .artist-item .artist-name {
    font-size: 83px;
    line-height: 0.79;
  }
  .artists-section .artists-grid .artists-list .artist-item .artist-subtitle {
    font-size: 17px;
    line-height: 17px;
  }
}
@media screen and (max-width: 1024px) {
  .artists-section {
    padding: 45vh 0 20vh;
    padding: 45dvh 0 20vh;
  }
  .artists-section .artists-grid {
    align-items: flex-start;
  }
  .artists-section .artists-grid .artists-list {
    gap: 40px;
  }
  .artists-section .artists-grid .artists-list .artist-row {
    flex-direction: column;
    gap: 40px;
  }
  .artists-section .artists-grid .artists-list .artist-item {
    height: unset;
  }
  .artists-section .artists-grid .artists-list .artist-item .artist-name {
    width: max-content;
    margin: 0 auto 10px;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.4px;
  }
  .artists-section .artists-grid .artists-list .artist-item .artist-subtitle {
    position: relative;
    width: max-content;
    margin: 0 auto;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.24px;
  }
  .artists-section .artists-grid .artists-list .artist-item .artist-subtitle:before {
    content: "";
    background-color: #ffffff;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: -1;
    transition: width 0.3s ease-in-out;
  }
  .artists-section .artists-grid .artists-list .artist-item.active .artist-name::before,
  .artists-section .artists-grid .artists-list .artist-item.active .artist-subtitle::before {
    width: 100%;
  }
  .artists-section .artists-grid .artist-thumbnail img,
  .artists-section .artists-grid .artist-thumbnail video {
    max-height: 70vh;
    max-width: 80vw;
  }
}
.artist-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.artist-section > * {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.artist-section .back-btn {
  position: fixed;
  top: 10px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  width: calc(100% - 20px) !important;
  overflow: hidden;
}
.artist-section .back-btn .back-link {
  background-color: #ffffff;
  color: #000000;
  grid-column: 1/1;
  font-family: "Non Bureau";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.artist-section .back-btn .back-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #75fb4c;
  transition: width 0.2s ease;
  z-index: -1;
}
.artist-section .back-btn .back-link:hover::before {
  width: 100%;
}
.artist-section .artist-name-container {
  padding-top: 200px;
  grid-column: 1/13;
  height: max-content;
}
.artist-section .artist-name-container .artist-name {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 22px;
  font-weight: 400;
  grid-column: 1/3;
  text-transform: uppercase;
}
.artist-section .artist-name-container .artist-surname {
  font-size: 320px;
  font-weight: 100;
  letter-spacing: -12.8px;
  width: 100%;
  grid-column: 1/13;
  font-size: clamp(24px, 17.5vw, 350px);
  line-height: 0.8;
}
.artist-section .artist-details {
  grid-column: 1/13;
  position: fixed;
  bottom: 10px;
  width: calc(100% - 20px);
  max-width: 1920px;
  z-index: 2;
  height: 46vh;
}
.artist-section .artist-details .artist-small-text {
  padding-top: 10px;
  grid-column: 9/13;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.artist-section .artist-details .artist-small-text .artist-type {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.51px;
  text-transform: uppercase;
  grid-column: 1/2;
}
.artist-section .artist-details .artist-small-text .artist-cities {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.51px;
  text-transform: uppercase;
  white-space: nowrap;
  grid-column: 3/4;
}
.artist-section .artist-details .artist-bio-container {
  grid-column: 9/13;
  line-height: 1;
  align-self: self-end;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.artist-section .artist-details .artist-bio-container .artist-bio {
  font-size: 14px;
  line-height: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.28px;
}
.artist-section .artist-details .artist-bio-container .artist-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--CI-Black, #000);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.artist-section .artist-details .artist-bio-container .artist-links .artist-social-link {
  gap: 5px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.artist-section .artist-details .artist-bio-container .artist-links .artist-social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #75fb4c;
  transition: width 0.2s ease;
  z-index: -1;
}
.artist-section .artist-details .artist-bio-container .artist-links .artist-social-link:hover::before {
  width: 0%;
}
.artist-section .artist-content {
  margin-top: 56vh;
  grid-column: 1/13;
  position: relative;
  overflow: visible;
  row-gap: 1px;
}
.artist-section .artist-content > div:first-of-type {
  margin-top: -22px;
}
.artist-section .artist-content .artist-sticky-name {
  grid-column: 9/13;
  font-size: 22px;
  line-height: 22px;
  font-weight: 400;
  text-transform: uppercase;
  position: sticky;
  top: 35%;
  align-self: start;
}
.artist-section .artist-content .artist-sticky-name.is-fixed {
  position: absolute;
}
.artist-section .artist-content .artist-content-item {
  grid-column: 1/8;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}
.artist-section .artist-content .artist-content-item .artist-content-item-img,
.artist-section .artist-content .artist-content-item .artist-content-item-video {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-section .artist-content .artist-content-item .artist-content-item-button {
  background-color: #ffffff;
  position: absolute;
  bottom: 3px;
  right: 3px;
  border: 0;
  color: #000000;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  z-index: 3;
  cursor: pointer;
}
.artist-section .artist-content .artist-content-item .artist-content-item-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #75fb4c;
  transition: width 0.2s ease;
  z-index: -1;
}
.artist-section .artist-content .artist-content-item .artist-content-item-button:hover::before {
  width: 100%;
}

body:has(.artist-section) .site {
  overflow: visible;
}

@media screen and (min-width: 1920px) {
  .artist-section .back-btn .back-link {
    font-size: 17px;
    line-height: 16px;
  }
  .artist-section .artist-details {
    height: 44vh;
  }
  .artist-section .artist-details .artist-small-text .artist-type,
  .artist-section .artist-details .artist-small-text .artist-cities {
    font-size: 17px;
    line-height: 17px;
  }
  .artist-section .artist-details .artist-bio-container .artist-bio {
    font-size: 17px;
    line-height: 17px;
  }
  .artist-section .artist-details .artist-bio-container .artist-links {
    font-size: 25px;
    line-height: 25px;
  }
  .artist-section .artist-content .artist-sticky-name {
    font-size: 25px;
    line-height: 25px;
  }
  .artist-section .artist-content .artist-content-item .artist-content-item-button {
    font-size: 17px;
    line-height: 16px;
  }
}
@media screen and (max-width: 1390px) {
  .artist-section .artist-details {
    align-items: self-end;
  }
  .artist-section .artist-details .artist-small-text {
    grid-column: 8/13;
  }
  .artist-section .artist-details .artist-bio-container {
    grid-column: 8/13;
  }
  .artist-section .artist-content .artist-sticky-name {
    grid-column: 8/13;
  }
  .artist-section .artist-content .artist-content-item {
    grid-column: 1/7;
  }
}
@media screen and (max-width: 1024px) {
  .artist-section .artist-name-container {
    gap: 0;
    padding-top: 150px;
  }
  .artist-section .artist-name-container .artist-name {
    font-size: 12px;
    letter-spacing: 0.24px;
  }
  .artist-section .artist-name-container .artist-surname {
    font-size: 20vw;
    letter-spacing: 0.24px;
  }
  .artist-section .artist-details {
    height: unset;
    position: unset;
    row-gap: 100px;
    width: 100%;
  }
  .artist-section .artist-details .artist-small-text {
    grid-column: 1/13;
    padding-top: 0;
  }
  .artist-section .artist-details .artist-small-text .artist-type,
  .artist-section .artist-details .artist-small-text .artist-cities {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.24px;
  }
  .artist-section .artist-details .artist-small-text .artist-cities {
    text-align: center;
  }
  .artist-section .artist-details .artist-bio-container {
    grid-column: 1/13;
  }
  .artist-section .artist-details .artist-bio-container .artist-bio {
    font-size: 12px;
    line-height: 14px;
  }
  .artist-section .artist-details .artist-bio-container .artist-links {
    font-size: 18px;
    line-height: 18px;
  }
  .artist-section .artist-content {
    margin-top: 50px;
  }
  .artist-section .artist-content > div:first-of-type {
    margin-top: unset;
  }
  .artist-section .artist-content .artist-sticky-name {
    display: none;
  }
  .artist-section .artist-content .artist-content-item {
    grid-column: 1/13;
  }
}
@media screen and (max-width: 430px) {
  .artist-section .back-btn {
    display: none;
  }
  .artist-section .artist-name-container .artist-surname {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -0.8px;
  }
  .artist-section .artist-details .artist-small-text .artist-cities {
    grid-column: 3/5;
  }
}
.case {
  padding-top: 10px;
}
.case .back-link-wrapper {
  position: fixed;
  top: 10px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  width: calc(100% - 20px) !important;
  overflow: hidden;
}
.case .back-link-wrapper .back-link {
  background-color: #75fb4c;
  color: #000000;
  grid-column: 1/4;
  font-family: "Non Bureau";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  height: 14px;
  overflow: hidden;
  position: relative;
}
.case .back-link-wrapper .back-link .left-txt {
  position: absolute;
  left: -45px;
  transition: all 0.2s ease-in-out;
}
.case .back-link-wrapper .back-link .right-txt {
  position: absolute;
  left: 0;
  transition: all 0.2s ease-in-out;
}
.case .back-link-wrapper .back-link:hover .left-txt {
  left: 0;
}
.case .back-link-wrapper .back-link:hover .right-txt {
  left: 100%;
}
.case .front-wrapper {
  height: calc(100vh - 34px);
  max-height: calc(100vh - 34px);
  margin-top: 24px !important;
  padding-bottom: 1px;
  grid-column: 1/13;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
}
.case .front-wrapper .thumbnail {
  grid-column: 1/8;
  grid-row: 1/4;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.case .front-wrapper .thumbnail img,
.case .front-wrapper .thumbnail video {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.case .front-wrapper .category,
.case .front-wrapper .year {
  color: #000000;
  font-family: "Non Bureau";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  grid-row: 2/2;
}
.case .front-wrapper .category {
  grid-column: 11/12;
}
.case .front-wrapper .year {
  grid-column: 12/13;
  text-align: end;
}
.case .front-wrapper .left-column,
.case .front-wrapper .right-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #000000;
  font-family: "Non Bureau";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  grid-row: 3/3;
  align-self: flex-end;
  padding-bottom: 10px;
}
.case .front-wrapper .padding-top {
  padding-top: 15px;
}
.case .front-wrapper .left-column {
  grid-column: 9/11;
}
.case .front-wrapper .right-column {
  grid-column: 11/13;
}
.case .front-wrapper .right-column a {
  overflow: hidden;
  position: relative;
  z-index: 3;
  display: block;
}
.case .front-wrapper .right-column a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #75fb4c;
  transition: width 0.2s ease;
  z-index: -1;
}
.case .front-wrapper .right-column a:hover::before {
  width: 100%;
}
.case .front-wrapper .right-column a:hover::before {
  width: 100%;
}
.case .cases-navigation {
  grid-column: 1/13;
  padding: 100px 0;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  font-family: "Non Bureau";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  position: relative;
}
.case .cases-navigation .next-txt {
  grid-row: 2/2;
  grid-column: 1/2;
}
.case .cases-navigation .case-item {
  grid-row: 2/2;
  grid-column: 4/13;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  column-gap: 10px;
  background-color: #75fb4c;
  cursor: pointer;
  color: #000;
}
.case .cases-navigation .case-item .case-name {
  grid-column: 6/8;
}
.case .cases-navigation .case-item .case-category {
  grid-column: 8/9;
}
.case .cases-navigation .case-item .case-year {
  grid-column: 9/10;
  text-align: end;
}
.case .cases-navigation .case-item:hover + .thumbnail-navigation {
  transform: translateX(0);
}
.case .cases-navigation .thumbnail-navigation {
  grid-column: 1/4;
  grid-row: 1/4;
  position: relative;
  transform: translateX(-105%);
  transition: all 0.3s ease-in-out;
}
.case .cases-navigation .thumbnail-navigation img,
.case .cases-navigation .thumbnail-navigation video {
  max-width: 100%;
  height: 100%;
}

@media screen and (min-width: 1920px) {
  .case .back-link-wrapper .back-link {
    font-size: 17px;
    line-height: 17px;
  }
  .case .front-wrapper .category,
  .case .front-wrapper .year,
  .case .front-wrapper .left-column,
  .case .front-wrapper .right-column {
    font-size: 17px;
    line-height: 17px;
  }
  .case .cases-navigation {
    font-size: 17px;
    line-height: 17px;
  }
}
@media screen and (max-width: 1024px) {
  .case {
    padding-top: 150px;
  }
  .case .back-link-wrapper {
    display: none !important;
  }
  .case .front-wrapper {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr auto;
    row-gap: 70px;
    height: unset;
  }
  .case .front-wrapper .thumbnail {
    grid-row: 1/1;
    grid-column: 1/4;
  }
  .case .front-wrapper .thumbnail img,
  .case .front-wrapper .thumbnail video {
    max-width: 100%;
    height: 100%;
  }
  .case .front-wrapper .category {
    grid-row: 1/1;
    grid-column: 4/6;
    align-self: self-start;
    font-size: 12px;
  }
  .case .front-wrapper .year {
    grid-row: 1/2;
    grid-column: 6/7;
    align-self: flex-start;
    font-size: 12px;
  }
  .case .front-wrapper .left-column {
    grid-row: 2/3;
    grid-column: 1/4;
    font-size: 12px;
  }
  .case .front-wrapper .right-column {
    grid-row: 2/3;
    grid-column: 4/7;
    font-size: 12px;
  }
  .case .front-wrapper .right-column a::before {
    width: 100%;
    height: 12px;
  }
  .case .cases-navigation {
    grid-template-rows: 1fr auto 1fr;
    color: #000000;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.24px;
  }
  .case .cases-navigation .next-txt {
    grid-row: 1/1;
    grid-column: 1/5;
  }
  .case .cases-navigation .case-item {
    grid-row: 3/4;
    grid-column: 1/9;
  }
  .case .cases-navigation .case-item .case-name {
    grid-column: 1/9;
  }
  .case .cases-navigation .case-category,
  .case .cases-navigation .case-year {
    display: none;
  }
  .case .cases-navigation .thumbnail-navigation {
    grid-column: 1/9;
    grid-row: 2/3;
    position: unset;
    transform: unset;
    transition: unset;
  }
  .case .cases-navigation .thumbnail-navigation img,
  .case .cases-navigation .thumbnail-navigation video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-overlay .intro-content-container {
  width: 100%;
  height: 100%;
}
.intro-overlay .intro-content-container .intro-content {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.intro-overlay .intro-logo-container {
  height: 60vh;
  position: absolute;
  bottom: 50px;
  left: 0;
  animation: introLogoAnimation 9s linear backwards;
  transform: translateX(100vw);
}
.intro-overlay .intro-logo-container .intro-logo {
  height: 100%;
}

@keyframes introLogoAnimation {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
body.intro-active {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .intro-overlay .intro-logo-container {
    height: 30vh;
    bottom: 100px;
  }
}
.imprint-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.imprint-section .imprint-grid {
  padding-top: 200px;
  grid-column: 9/13;
}
.imprint-section .imprint-grid .imprint-text h1 {
  padding-bottom: 14px;
  text-align: justify;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.imprint-section .imprint-grid .imprint-text p {
  padding-bottom: 14px;
  text-align: justify;
  font-family: "Non Bureau";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}

@media (min-width: 1920px) {
  .imprint-section .imprint-grid .imprint-text p {
    font-size: 17px;
    line-height: 17px;
  }
}
@media (max-width: 1024px) {
  .imprint-section .imprint-grid {
    grid-column: 1/-1;
    padding-top: 100px;
  }
  .imprint-section .imprint-grid .imprint-text p {
    font-size: 12px;
    line-height: 12px;
  }
}
.section {
  padding-top: 50vh;
}
.section .error-404 {
  display: flex;
  align-items: center;
  font-family: "Non Bureau";
  flex-direction: column;
  width: 100%;
}
.section .error-404 .return-btn {
  display: inline-block;
  cursor: pointer;
}
.section .error-404 .return-btn:hover > .return-btn-text::before {
  width: 100%;
}
.section .error-404 .return-btn .return-btn-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.section .error-404 .return-btn .return-btn-text::before {
  content: "";
  background-color: #75fb4c;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}

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