* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'figtree';
}

*:not(html)::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

html {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: auto;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
}

@media (max-width: 1100px) {
  html {
    font-size: 16px;
    line-height: 20px;
  }
}

body {
  background-color: white;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  align-items: center;
  padding: 48px;
  overflow: hidden;
}

@media (max-width: 1100px) {
  body {
    padding: 24px;
  }
}

@media (max-width: 800px) {
  body {
    min-height: 600px;
  }
}

.c_background {
  position: absolute;
  border-radius: 14px;
  width: 100%;
  height: 100%;
}

.container {
  position: relative;
  max-width: 1800px;
}

@media (max-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

@media (max-width: 1400px) {
  .container {
    max-width: 1080px;
  }
}

@media (max-width: 1100px) {
  .container {
    max-width: 780px;
  }
}

@media (max-width: 800px) {
  .container {
    max-width: 500px;
  }
}

@media (max-width: 530px) {
  .container {
    max-width: 100%;
  }
}

.s_hidden {
  display: none !important;
}

.l_scrolltip {
  position: absolute;
  right: 56px;
  bottom: -4px;
  border: black 1px solid;
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: black;
  padding: 4px 12px;
  background-color: white;
  border-radius: 14px;
  text-shadow: none;
  animation: poke-down 5s ease-in-out infinite;
  animation-delay: 2s;
  /* waits a bit between loops */
}

@media (max-width: 1100px) {
  .l_scrolltip {
    border: none;
    right: 8px;
    bottom: 12px;
  }
}

.l_scrolltip--bottom {
  box-shadow: unset;
  border: none;
  background-color: transparent;
  bottom: -36px;
  right: 0;
  padding-right: 0;
}

.l_scrolltip i {
  font-size: 20px;
  line-height: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s_show-scrolltip {
  position: relative;
}

.s_show-scrolltip .l_scrolltip {
  display: flex;
}

@keyframes poke-down {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(4px);
    /* how far it pokes */
  }
  40% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
    /* stay still until loop restarts */
  }
}

.highlighted {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlighted:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  transition: width .3s ease-in-out;
  left: -5px;
  z-index: -1;
  width: 0px;
  height: 80%;
  background-color: #fff200;
}

@media (hover: hover) {
  .highlighted:hover:before {
    width: calc(100% + 10px);
  }
}

.highlighted--small:before {
  top: 15px;
  left: 15px;
  height: calc(100% - 30px);
}

@media (max-width: 1100px) {
  .highlighted--small:before {
    top: 5px;
    left: 10px;
    height: calc(100% - 10px);
  }
}

@media (hover: hover) {
  .highlighted--small:hover:before {
    width: calc(100% - 30px);
  }
}

@media (hover: hover) and (max-width: 1100px) {
  .highlighted--small:hover:before {
    width: calc(100% - 20px);
  }
}

.highlighted--small.s_active:before {
  width: calc(100% - 30px);
}

@media (max-width: 1100px) {
  .highlighted--small.s_active:before {
    width: calc(100% - 20px);
  }
}

.highlighted--big:before {
  top: -5px;
  left: -10px;
  height: calc(100% + 10px);
}

@media (hover: hover) {
  .highlighted--big:hover:before {
    width: calc(100% + 20px);
  }
}

.text-display {
  font-size: 72px;
  line-height: 80px;
  font-weight: 800;
  word-break: break-word;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .text-display {
    font-size: 48px;
    line-height: 56px;
  }
}

.text-title--size-1 {
  font-size: 64px;
  line-height: 64px;
}

@media (max-width: 1100px) {
  .text-title--size-1 {
    font-size: 40px;
    line-height: 48px;
  }
}

.text-title--size-2 {
  font-size: 48px;
  line-height: 56px;
}

@media (max-width: 1400px) {
  .text-title--size-2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 1100px) {
  .text-title--size-2 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 420px) {
  .text-title--size-2 {
    font-size: 20px;
    line-height: 32px;
  }
}

.text-title--size-3 {
  font-size: 32px;
  line-height: 40px;
}

@media (max-width: 1100px) {
  .text-title--size-3 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 1400px) {
  .text-big {
    font-size: 22px;
    line-height: 24px;
  }
}

.text-small {
  font-size: 16px;
  line-height: 20px;
}

@media (max-width: 1100px) {
  .text-small {
    font-size: 14px;
    line-height: 18px;
  }
}

.c_loading {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.c_loading__logo {
  filter: drop-shadow(3px 2px 10px rgba(0, 0, 0, 0.15));
  width: 120px;
  height: 120px;
}

.c_loading__logo svg {
  width: 100%;
  height: 100%;
}

.c_loading__logo svg path {
  fill: #fff200;
}

.c_loading__bar {
  position: relative;
  width: 400px;
  max-width: 80%;
  filter: drop-shadow(3px 6px 10px rgba(0, 0, 0, 0.15));
  height: 20px;
  background-color: #e7e7e7;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.356);
  border-radius: 100px;
}

.c_loading__bar-inner {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  overflow: hidden;
  height: calc( 100% - 8px);
  border-radius: 100px;
  z-index: 1;
}

.c_loading__bar-inner-bar {
  position: absolute;
  left: 0;
  width: 0%;
  height: 100%;
  top: 0;
  border-radius: 100px;
  background-color: #fff200;
}

.c_header {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 800px) {
  .c_header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.c_header__name {
  font-weight: 700;
  display: flex;
  text-transform: uppercase;
}

.c_header__name-home {
  display: inline-flex;
  width: fit-content;
  overflow: hidden;
  transition: width .3s, padding .3s;
}

.c_header__name-home.s_hide {
  width: 0px !important;
}

.c_header__name-home.s_hide.firstname {
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .c_header__name-home.s_hide.firstname {
    padding-left: 10px;
  }
}

.c_header__name-home-inner {
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .c_header__name-home-inner {
    padding-left: 10px;
  }
}

.c_header__name-home-inner.firstname {
  padding-left: 0;
  padding-right: 20px;
}

@media (max-width: 1100px) {
  .c_header__name-home-inner.firstname {
    padding-right: 10px;
  }
}

.c_header .c_nav {
  display: flex;
  flex-direction: row;
  gap: 48px;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid black;
  border-radius: 14px;
}

@media (max-width: 1100px) {
  .c_header .c_nav {
    padding: 10px 24px;
    gap: 24px;
    align-self: flex-end;
  }
}

@media (max-width: 800px) {
  .c_header .c_nav {
    width: 100%;
    align-items: center;
    justify-content: space-around;
    align-self: normal;
  }
}

.c_header .c_nav__option {
  cursor: pointer;
}

.c_image {
  overflow: hidden;
  border-radius: 14px;
  display: flex;
  height: 100%;
  width: 100%;
}

.c_image img {
  object-fit: cover;
  object-position: right;
  width: 100%;
  height: 100%;
  opacity: .8;
}

.c_image-container {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 70%;
  width: 70%;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1400px) {
  .c_image-container {
    height: 55%;
  }
}

@media (max-width: 1100px) {
  .c_image-container {
    margin-bottom: 30%;
    width: 80%;
  }
}

.c_image-text {
  font-weight: 700;
  margin-left: auto;
  position: absolute;
  top: -32px;
  right: 24px;
}

@media (max-width: 1100px) {
  .c_image-text {
    display: none;
  }
}

.c_image-bar {
  position: absolute;
  align-self: center;
  transform: translateY(100px);
  border: 2px solid black;
  border-radius: 14px;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  width: fit-content;
  padding: 24px 48px;
  gap: 48px;
  bottom: 0;
}

@media (max-width: 1100px) {
  .c_image-bar {
    display: none;
  }
}

.pages {
  position: relative;
  margin-top: 40px;
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px) {
  .pages {
    margin-top: 24px;
  }
}

.pages .page-project {
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: row;
}

@media (max-width: 1100px) {
  .pages .page-project {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}

.pages .page-project__mobile-buttons {
  display: none;
}

@media (max-width: 1100px) {
  .pages .page-project__mobile-buttons {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    padding: 6px 8px;
    border: 2px solid black;
    border-radius: 14px;
    width: fit-content;
  }
}

.pages .page-project__mobile-buttons button {
  background-color: transparent;
  position: relative;
  border: none;
  padding: 4px 8px;
  display: flex;
  flex-direction: row;
  font-weight: 600;
  gap: 8px;
  transition: background .3s;
}

.pages .page-project__mobile-buttons button p {
  position: relative;
}

.pages .page-project__mobile-buttons button:before {
  content: '';
  position: absolute;
  transition: width .3s;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 0%;
  top: 0;
  background-color: #fff200;
}

.pages .page-project__mobile-buttons button.s_active:before {
  width: 100%;
}

.pages .page-project__copy {
  display: flex;
  flex-direction: column;
  width: 40%;
  height: 100%;
  gap: 24px;
  padding-right: 48px;
}

@media (max-width: 1100px) {
  .pages .page-project__copy {
    position: absolute;
    width: 100%;
    padding-top: 84px;
    padding-right: 0px;
    padding-left: 16px;
    padding-bottom: 16px;
    display: none;
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  }
  .pages .page-project__copy.s_active {
    display: flex;
  }
}

.pages .page-project__copy-date {
  margin-top: auto;
}

.pages .page-project__copy-title {
  text-wrap: balance;
}

@media (max-width: 1100px) {
  .pages .page-project__copy-title {
    padding-right: 16px;
  }
}

.pages .page-project__copy-text {
  padding-right: 8px;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 1100px) {
  .pages .page-project__copy-text {
    padding-right: 16px;
  }
}

.pages .page-project__media {
  position: relative;
  width: 55%;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .pages .page-project__media {
    position: absolute;
    display: none;
    width: 100%;
    padding: 16px;
    bottom: 0;
    height: 90%;
  }
  .pages .page-project__media.s_active {
    display: flex;
  }
}

@media (max-width: 800px) {
  .pages .page-project__media {
    position: absolute;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding-top: 16px;
    bottom: 0;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 16px;
    height: 90%;
    overflow: auto;
  }
}

.pages .page-project__media-subtext {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-wrap: balance;
  width: 30%;
  left: 15%;
  bottom: 10%;
  font-weight: 600;
  color: white;
  text-align: center;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1400px) {
  .pages .page-project__media-subtext {
    left: 0;
    width: 45%;
  }
}

@media (max-width: 1100px) {
  .pages .page-project__media-subtext {
    display: none;
  }
}

.pages .page-project__media-big {
  position: relative;
  width: 50%;
  top: 5%;
  height: 90%;
}

@media (max-width: 1100px) {
  .pages .page-project__media-big {
    top: 0;
    height: 100%;
  }
}

@media (max-width: 800px) {
  .pages .page-project__media-big {
    gap: 32px;
    width: 100%;
    aspect-ratio: 1/1.5;
    right: 0;
    height: 100%;
  }
}

.pages .page-project__media-big-video {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  padding: 8px;
  border: solid 3px black;
  border-radius: 14px;
}

.pages .page-project__media-big-video iframe {
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pages .page-project__media-big-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  padding: 8px;
  border: solid 3px black;
  border-radius: 14px;
}

.pages .page-project__media-big-image img {
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pages .page-project__media-swiper {
  position: relative;
  top: 5%;
  display: flex;
  width: 30%;
  flex-direction: column;
}

@media (max-width: 1400px) {
  .pages .page-project__media-swiper {
    width: 45%;
  }
}

@media (max-width: 1100px) {
  .pages .page-project__media-swiper {
    top: 0;
  }
}

@media (max-width: 800px) {
  .pages .page-project__media-swiper {
    gap: 32px;
    width: 100%;
    height: 100%;
    margin-bottom: 56px;
  }
}

.pages .page-project__media-swiper-container {
  width: 100%;
  height: 100%;
}

.pages .page-project__media-swiper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.pages .page-project__media-swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: white;
  border: 2px solid black;
  color: black;
  font-size: 24px;
  padding: 6px;
  transition: background .3s;
  cursor: pointer;
}

@media (hover: hover) {
  .pages .page-project__media-swiper-button:hover {
    background-color: #fff200;
  }
}

.pages .page-project__media-swiper-button-container {
  top: calc(100% + 16px);
  right: 0px;
  display: flex;
  position: absolute;
  flex-direction: row;
  gap: 16px;
  width: fit-content;
}

.pages .page-project__media .swiper {
  width: 100%;
  padding: 8px;
  aspect-ratio: 1/1.3;
  border: solid 3px black;
  border-radius: 14px;
}

.pages .page-project__media .swiper-slide {
  overflow: hidden;
  cursor: grab;
}

.pages .page-work {
  padding: 60px;
  gap: 56px;
  width: 100%;
  height: 80%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: black;
  bottom: 0;
}

@media (max-width: 1100px) {
  .pages .page-work {
    padding: 24px;
    gap: 16px;
  }
}

@media (max-width: 800px) {
  .pages .page-work {
    padding: 16px;
    height: 90%;
  }
}

.pages .page-work__title {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}

.pages .page-work__cases {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: 3px solid black;
  border-radius: 14px;
}

@media (max-width: 1100px) {
  .pages .page-work__cases {
    white-space: nowrap;
    overflow: auto;
    border-width: 2px;
  }
  .pages .page-work__cases::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }
}

.pages .page-work__cases-item {
  padding: 24px 32px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .pages .page-work__cases-item {
    padding: 8px 16px;
  }
}

.pages .page-work__projects {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1100px) {
  .pages .page-work__projects {
    width: 100%;
  }
}

.pages .page-work__projects-item {
  border-radius: 14px;
  text-transform: uppercase;
  text-wrap: balance;
  opacity: 0;
  visibility: hidden;
  display: none;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 48px;
}

@media (max-width: 1100px) {
  .pages .page-work__projects-item {
    gap: 8px;
    flex-direction: column;
  }
}

.pages .page-work__projects-item span {
  cursor: pointer;
  padding: 24px 32px;
  border: 3px solid black;
  border-radius: 14px;
  width: 100%;
}

@media (max-width: 1100px) {
  .pages .page-work__projects-item span {
    padding: 8px 16px;
    border-width: 2px;
  }
}

.pages .page-work__projects-item.s_active {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.pages .page-work__descriptions {
  color: white;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.5));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.pages .page-work__descriptions-item {
  position: absolute;
  display: none;
  text-wrap: balance;
  opacity: 0;
  visibility: hidden;
}

.pages .page-work__descriptions-item.s_active {
  display: block;
  visibility: visible;
  opacity: 1;
}

.pages .page-about {
  position: absolute;
  display: flex;
  bottom: 0;
  height: calc(65% + 100px);
  width: 100%;
  align-items: flex-start;
}

@media (max-width: 1100px) {
  .pages .page-about {
    flex-direction: column;
  }
}

.pages .page-about__info {
  display: flex;
  position: absolute;
  bottom: 0;
  overflow: auto;
  white-space: nowrap;
  max-width: 100%;
  flex-direction: row;
  align-self: flex-end;
  padding: 16px 32px;
  gap: 32px;
  border: 2px solid black;
  border-radius: 14px;
}

.pages .page-about__info::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.pages .page-about__info a {
  text-decoration: none;
  color: black;
}

.pages .page-about__image {
  width: 65%;
  height: calc(100% - 100px);
  transform: translateY(-80px);
  padding: 8px;
  border: solid 3px black;
  border-radius: 14px;
}

.pages .page-about__image-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  height: 100%;
}

@media (max-width: 1400px) {
  .pages .page-about__image-container {
    width: 40%;
  }
}

@media (max-width: 1100px) {
  .pages .page-about__image-container {
    display: none;
  }
}

@media (max-width: 1400px) {
  .pages .page-about__image {
    width: 75%;
  }
}

.pages .page-about__image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  object-fit: cover;
}

.pages .page-about__copy {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1400px) {
  .pages .page-about__copy {
    width: 60%;
  }
}

@media (max-width: 1100px) {
  .pages .page-about__copy {
    width: 100%;
  }
}

.pages .page-about__title {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}

.pages .page-about__text {
  display: flex;
  align-items: center;
  padding: 32px 32px 32px 0;
  height: calc(100% - 100px);
  color: white;
  position: relative;
}

.pages .page-about__text-inner {
  max-height: 100%;
  overflow: auto;
}

.pages .page-about__text-inner::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.pages .page-about__text-inner {
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.5));
}

@media (max-width: 1100px) {
  .pages .page-about__text {
    height: calc(50);
    padding: 24px;
  }
}

.pages .page-home {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pages .page-home__bar {
  position: absolute;
  align-self: center;
  border: 2px solid black;
  border-radius: 14px;
  display: none;
  flex-direction: row;
  white-space: nowrap;
  width: fit-content;
  padding: 16px 24px;
  gap: 24px;
  bottom: 0;
  max-width: 100%;
  overflow: scroll;
}

.pages .page-home__bar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

@media (max-width: 1100px) {
  .pages .page-home__bar {
    display: flex;
  }
}

.pages .page-home__introtext {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

@media (max-width: 800px) {
  .pages .page-home__introtext .highlighted {
    display: inline;
    width: unset;
  }
  .pages .page-home__introtext .highlighted:before {
    width: 0% !important;
  }
}

.pages .page-home__introtext-line {
  width: 100%;
  display: block;
}

.pages .page-home__introtext-line--last {
  display: inline;
  width: unset;
}

@media (max-width: 800px) {
  .pages .page-home__introtext-line {
    display: inline;
    width: unset;
  }
}

@media (hover: hover) {
  .pages .page-home__introtext:hover .highlighted::before {
    width: calc(100% + 10px);
  }
}

@media (max-width: 1400px) {
  .pages .page-home__introtext {
    max-width: 700px;
  }
}

.pages .page-home__description {
  z-index: 2;
  margin-bottom: 70px;
  width: 700px;
}

@media (max-width: 1400px) {
  .pages .page-home__description {
    margin-bottom: 120px;
  }
}

@media (max-width: 1100px) {
  .pages .page-home__description {
    width: 400px;
    margin-bottom: 130px;
  }
}
