* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background-color: #f9f9f9;
  color: #0d0d0d;
  font-size: 1.6rem;
  font-family: "Archivo", sans-serif;
  overflow-x: hidden;
}

.heading__secondary {
  font-family: "Archivo", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
}
.heading__secondary--about {
  font-family: "Playfair Display", sans-serif;
  margin-bottom: 3rem;
}

.heading__tertiary {
  font-family: "Archivo", sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  color: #0d0d0d;
}

.u-margin-bottom-regular {
  margin-bottom: 6rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem 3.5rem;
  background-color: #f9f9f9;
  box-shadow: 0 4px 4px rgba(13, 13, 13, 0.25);
  z-index: 100;
}
@media only screen and (max-width: 56.25em) {
  .header {
    padding: 1.6rem 2rem;
  }
}
.header__hamburger {
  display: none;
  visibility: hidden;
  z-index: 101;
}
@media only screen and (max-width: 56.25em) {
  .header__hamburger {
    display: flex;
    visibility: visible;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 75em) {
  .header__hamburger .header__icon {
    color: #fdfdfd;
  }
}
.header__hamburger:hover .header__icon {
  color: #fdfdfd;
}
.header__icon {
  font-size: 3rem;
  color: #2648eb;
}

@media only screen and (max-width: 56.25em) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
    z-index: 100;
  }
  .nav--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }
}
.nav__list {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .nav__list {
    flex-direction: column;
    gap: 4rem;
  }
}
.nav__link {
  text-decoration: none;
  color: inherit;
  font-size: 1.8rem;
  display: inline-block;
}
.nav__link--active {
  font-weight: bold;
  position: relative;
}
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0d0d0d;
  border-radius: 999px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2648eb;
  padding: 1.6rem 3.4rem;
  color: #fdfdfd;
  gap: 2.4rem;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    padding: 0.8rem 1.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer {
    flex-direction: column;
    padding: 2.4rem 1.6rem;
    gap: 1.6rem;
    text-align: center;
  }
}
.footer__icons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer__icon {
  font-size: 2.8rem;
  color: #fdfdfd;
}

.btn {
  display: inline-block;
  white-space: nowrap;
  padding: 1.4rem 1.6rem;
  color: #2648eb;
  border-radius: 1.5rem;
  font-weight: bold;
  border: 2px solid #2648eb;
  box-shadow: 4px 7px 0 0 transparent;
  font-family: inherit;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .btn {
    color: #fdfdfd;
    background-color: #2648eb;
    border: 2px solid #0d0d0d;
    box-shadow: 4px 7px 0 0 #0d0d0d;
  }
}
@media only screen and (max-width: 56.25em) {
  .btn {
    padding: 1.3rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .btn {
    padding: 1.2rem 1.4rem;
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .btn:hover {
    color: #fdfdfd;
    background-color: #2648eb;
    border: 2px solid #0d0d0d;
    box-shadow: 4px 7px 0 0 #0d0d0d;
  }
}
.btn:active {
  color: #fdfdfd;
  background-color: #1b33ab;
  border: 2px solid #0d0d0d;
  box-shadow: 1px 1px 0 0 #0d0d0d;
  transform: translate(2px, 5px);
}
.btn--p1 {
  color: #f97400;
  border-color: #f97400;
}
@media only screen and (max-width: 75em) {
  .btn--p1 {
    background-color: #f97400;
    color: #0d0d0d;
    border-color: #0d0d0d;
  }
}
.btn--p1:hover {
  background-color: #f97400;
  color: #0d0d0d;
  border-color: #0d0d0d;
  box-shadow: 4px 7px 0 0 #0d0d0d;
}
.btn--p1:active {
  background-color: #de6b06;
  box-shadow: 1px 1px 0 0 #0d0d0d;
  transform: translate(2px, 5px);
}
.btn--p2 {
  color: #682e68;
  border-color: #682e68;
}
@media only screen and (max-width: 75em) {
  .btn--p2 {
    background-color: #682e68;
    color: #fdfdfd;
    border-color: #0d0d0d;
  }
}
.btn--p2:hover {
  background-color: #682e68;
  color: #fdfdfd;
  border-color: #0d0d0d;
  box-shadow: 4px 7px 0 0 #0d0d0d;
}
.btn--p2:active {
  background-color: #572757;
  box-shadow: 1px 1px 0 0 #0d0d0d;
  transform: translate(2px, 5px);
}

.heading__project__tag {
  padding: 0.8rem 1.6rem;
  border-radius: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.heading__project__tag--1 {
  background-color: #f97400;
  color: #0d0d0d;
  border: 2px solid #0d0d0d;
}
.heading__project__tag--2 {
  background-color: #682e68;
  color: #fdfdfd;
}

.section__hero {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 75em) {
  .section__hero {
    height: 60vw;
  }
}
@media only screen and (max-width: 56.25em) {
  .section__hero {
    height: auto;
  }
}
.section__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../assets/images/hero-background.png);
  background-size: 30%;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.025;
  z-index: 0;
}
.section__hero > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 3.5rem;
}
@media only screen and (max-width: 75em) {
  .hero {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 22rem 2rem 0 2rem;
    gap: 3rem;
    text-align: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero {
    padding: 16rem 1.5rem 2rem 1.5rem;
    gap: 4rem;
    justify-content: flex-start;
  }
}
.hero__content {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 8rem;
}
@media only screen and (max-width: 75em) {
  .hero__content {
    width: 60%;
    justify-content: center;
    gap: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero__content {
    width: 100%;
    text-align: center;
    padding: 0 4rem;
  }
}
.hero__greeting {
  font-size: 1.6rem;
}
@media only screen and (max-width: 56.25em) {
  .hero__greeting {
    font-size: 1.8rem;
  }
}
.hero__title {
  font-family: "Playfair Display", sans-serif;
  font-size: 6.4rem;
  font-weight: Black;
  font-style: italic;
  color: #2648eb;
}
@media only screen and (max-width: 75em) {
  .hero__title {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero__title {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero__title {
    font-size: 4.6rem;
    line-height: 1.1;
  }
}
.hero__tags {
  display: flex;
  list-style: none;
  gap: 1.6rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 75em) {
  .hero__tags {
    justify-content: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero__tags {
    margin: 0 auto;
    justify-content: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero__tags {
    gap: 1.2rem;
  }
}
.hero__tag {
  padding: 1.4rem 1.6rem;
  background: linear-gradient(270deg, #0e32ff 0%, #001cbe 100%);
  color: #fdfdfd;
  border-radius: 1.5rem;
}
@media only screen and (max-width: 75em) {
  .hero__tag {
    padding: 1.4rem 1.6rem;
    font-size: 1.6rem;
    border-radius: 1.5rem;
    flex: 0 0 calc(50% - 0.8rem);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero__tag {
    padding: 1.2rem 1.6rem;
    font-size: 1.6rem;
    border-radius: 1.5rem;
  }
}
.hero__scroll {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .hero__scroll {
    flex-direction: column;
    gap: 2rem;
  }
}
.hero__description {
  font-size: 1.6rem;
}
@media only screen and (max-width: 56.25em) {
  .hero__description {
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 35rem;
  }
}
.hero__image-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  width: 45%;
}
.hero__image-wrapper picture {
  display: contents;
}
@media only screen and (max-width: 75em) {
  .hero__image-wrapper {
    width: 40%;
    align-items: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero__image-wrapper {
    height: auto;
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
.hero__image {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
}
@media only screen and (max-width: 75em) {
  .hero__image {
    height: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero__image {
    height: auto;
    max-height: 45vh;
    object-position: bottom center;
  }
}

.section__projects {
  padding: 0 3.5rem;
  margin-bottom: 6rem;
  scroll-margin-top: 15rem;
}
@media only screen and (max-width: 56.25em) {
  .section__projects {
    padding: 0 2rem;
  }
}

.projects__heading {
  position: relative;
  font-family: "Playfair Display", sans-serif;
  font-weight: bold;
  color: #2648eb;
  text-align: center;
  font-size: 3.2rem;
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 6rem;
}
.projects__heading::after {
  content: "";
  position: absolute;
  background-color: #2648eb;
  width: 100%;
  height: 4px;
  border-radius: 2rem;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .projects {
    gap: 4rem;
  }
}

.project {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 16px 5px 0 rgba(13, 13, 13, 0.2);
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .project {
    flex-direction: column-reverse;
  }
}
.project__image__container {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
  padding: 11.5rem 3.5rem;
  width: 50%;
}
@media only screen and (max-width: 56.25em) {
  .project__content {
    width: 100%;
    padding: 6rem 3.5rem;
    align-items: center;
    text-align: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .project__content {
    padding: 4rem 2rem;
    gap: 1.6rem;
  }
}
.project__logo {
  width: fit-content;
}
.project__paragraph {
  color: #767676;
  font-size: 1.6rem;
}
@media only screen and (max-width: 56.25em) {
  .project__paragraph {
    font-size: 1.8rem;
  }
}
.project__btn {
  align-self: flex-start;
}
@media only screen and (max-width: 56.25em) {
  .project__btn {
    align-self: center;
  }
}
.project__image__container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .project__image__container {
    width: 100%;
    min-height: 30rem;
  }
}
@media only screen and (max-width: 56.25em) and (max-width: 37.5em) {
  .project__image__container {
    min-height: 22rem;
  }
}
.project__image__container img {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.project__image__container--1 {
  background-color: #feedd8;
}
.project__image__container--1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../assets/images/project-1-bg-doodles.png);
  background-size: 60%;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}
.project__image__container--1:hover img {
  transform: scale(1.1);
}
@media only screen and (max-width: 75em) {
  .project__image__container--1:hover img {
    transform: none;
  }
}
.project__image__container--2 {
  background-color: #422842;
  overflow: hidden;
}
.project__image__container--2 .project__image {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 75%;
  width: auto;
}
.project__image__container--2 .project__image--lamp {
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  height: auto;
  width: 50%;
  max-width: 25rem;
  opacity: 0;
  z-index: 3;
}
.project__image__container--2 .project__image--screen-1 {
  transform: translateX(-30%) scale(0.85);
  z-index: 1;
}
.project__image__container--2 .project__image--screen-3 {
  transform: translateX(30%) scale(0.85);
  z-index: 1;
}
.project__image__container--2 .project__image--screen-2 {
  transform: scale(0.95);
  z-index: 2;
}
.project__image__container--2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, #422842 100%), conic-gradient(from 90deg at 50% -5%, transparent 30deg, rgba(253, 192, 103, 0.25) 60deg, rgba(253, 192, 103, 0.6) 90deg, rgba(253, 192, 103, 0.25) 120deg, transparent 150deg);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
@media (hover: hover) {
  .project__image__container--2:hover .project__image--lamp {
    transform: translate(-50%, -5%);
    opacity: 1;
  }
  .project__image__container--2:hover .project__image--screen-1 {
    transform: translate(-90%, 2%) scale(0.85);
  }
  .project__image__container--2:hover .project__image--screen-3 {
    transform: translate(90%, 2%) scale(0.85);
  }
  .project__image__container--2:hover .project__image--screen-2 {
    transform: scale(1.05);
  }
  .project__image__container--2:hover::before {
    opacity: 1;
  }
}
@media only screen and (max-width: 75em) {
  .project__image__container--2 .project__image--lamp {
    transform: translate(-50%, -5%);
    opacity: 1;
  }
  .project__image__container--2 .project__image--screen-1 {
    transform: translate(-90%, 2%) scale(0.85);
  }
  .project__image__container--2 .project__image--screen-3 {
    transform: translate(90%, 2%) scale(0.85);
  }
  .project__image__container--2 .project__image--screen-2 {
    transform: scale(1.05);
  }
  .project__image__container--2::before {
    opacity: 1;
  }
}
.project__image__container--3 {
  background-color: #f7f3f2;
}
.project__image__container--3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../assets/images/project-3-bg-doodles.png);
  background-size: 40%;
  background-repeat: repeat;
  opacity: 0.1;
  z-index: 0;
}
.project__image__container--3:hover img {
  transform: scale(1.1);
}
@media only screen and (max-width: 75em) {
  .project__image__container--3:hover img {
    transform: none;
  }
}

.section__about {
  padding: 3.5rem;
  padding-top: 15.5rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .section__about {
    padding-top: 22rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section__about {
    padding-top: 18rem;
  }
}

.about {
  display: flex;
  gap: 5rem;
  align-items: start;
}
@media only screen and (max-width: 56.25em) {
  .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
}
.about__image-wrapper {
  flex: 0 0 45%;
  max-width: 50rem;
}
@media only screen and (max-width: 56.25em) {
  .about__image-wrapper {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 2rem;
  }
}
.about__image {
  width: 100%;
  border-radius: 1.5rem;
  border: solid #0d0d0d 2px;
}
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media only screen and (max-width: 56.25em) {
  .about__content {
    align-items: center;
  }
}
.about__paragraph {
  display: block;
  margin-bottom: 1.8rem;
  line-height: 1.8;
  font-size: 1.8rem;
}
@media only screen and (max-width: 37.5em) {
  .about__paragraph {
    font-size: 1.6rem;
  }
}
.about__paragraph:last-child {
  margin-bottom: 0;
}

.section__tools {
  padding: 3.5rem;
  margin-bottom: 6rem;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .section__tools {
    padding: 2rem;
  }
}

.tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
  text-align: left;
}
@media only screen and (max-width: 75em) {
  .tools {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 56.25em) {
  .tools {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.tools__main-heading {
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}
.tools__card {
  background-color: #fff;
  border-radius: 2rem;
  padding: 4rem 2.5rem 3rem;
  position: relative;
  border: 2px solid #0d0d0d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 56.25em) {
  .tools__card {
    padding-top: 5rem;
  }
}
.tools__card-header {
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(270deg, #0e32ff 0%, #001cbe 100%);
  color: #fff;
  padding: 0.8rem 3rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(38, 72, 235, 0.3);
}
.tools__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tool {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 1.2rem;
  background-color: #f8f9fa;
  border-radius: 1.2rem;
  transition: all 0.3s ease;
}
.tool__logo-box {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
}
.tool__logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tool__name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

.section__beyond {
  padding: 6rem 3.5rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .section__beyond {
    padding: 4rem 2rem;
  }
}
.section__beyond-heading {
  margin-bottom: 5rem;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.beyond__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 100%;
  padding: 0 3.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .beyond__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 56.25em) {
  .beyond__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .beyond__grid {
    grid-template-columns: 1fr;
  }
}
.beyond__tile {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fafafa;
}
.beyond__tile:hover {
  transform: translateY(-1rem) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.beyond__tile-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.beyond__tile-inner img,
.beyond__tile-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  cursor: zoom-out;
}
.overlay--open {
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .overlay {
    padding: 2rem;
  }
}
.overlay__close {
  position: absolute;
  top: 3rem;
  right: 4rem;
  z-index: 3100;
}
.overlay__close.btn {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}
.overlay__close.btn ion-icon {
  color: #fff;
}
@media (hover: hover) {
  .overlay__close.btn:hover {
    background-color: #2648eb;
    color: #fff;
    border-color: #0d0d0d;
    box-shadow: 4px 7px 0 0 #0d0d0d;
  }
  .overlay__close.btn:hover ion-icon {
    color: #fff;
  }
}
.overlay__close.btn:active {
  box-shadow: 1px 1px 0 0 #0d0d0d;
  transform: translate(2px, 5px);
}
@media only screen and (max-width: 56.25em) {
  .overlay__close {
    top: 2rem;
    right: 2rem;
  }
}
.overlay__content {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.overlay__content img,
.overlay__content video {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  background-color: #f9f9f9;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 56.25em) {
  .overlay__content img,
  .overlay__content video {
    max-width: 100%;
    max-height: 80vh;
  }
}
.overlay__content video {
  background-color: #000;
}

.project-1-page .section__projectintro {
  padding: 3.5rem;
  padding-top: 15.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .section__projectintro {
    padding-top: 15rem;
    gap: 3rem;
  }
}
.project-1-page .project__header {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  justify-content: center;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__header {
    gap: 1.5rem;
    flex-wrap: nowrap;
  }
}
.project-1-page .project__header h2 {
  white-space: nowrap;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__header h2 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__header h2 {
    font-size: 1.8rem;
  }
}
.project-1-page .project__header img {
  height: auto;
  width: auto;
  object-fit: contain;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__header img {
    height: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__header img {
    height: 8rem;
  }
}
.project-1-page .project__name--1 {
  font-family: "Pixelify Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #0d0d0d;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__name--1 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__name--1 {
    font-size: 1.8rem;
  }
}
.project-1-page .project__name--1-span-1 {
  color: #f97400;
}
.project-1-page .project__name--1-span-2 {
  color: #2648eb;
}
.project-1-page .project__nav {
  width: 100%;
  padding-bottom: 3rem;
}
.project-1-page .project__nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__nav__list {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__nav__list {
    gap: 1.2rem;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__nav__item {
    flex: 0 0 calc(50% - 1.5rem);
    display: flex;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__nav__item {
    flex: 0 0 calc(50% - 1.2rem);
  }
}
.project-1-page .project__nav__link {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__nav__link {
    padding: 1.2rem 1.4rem;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__nav__link {
    padding: 1rem 1.2rem;
    font-size: 1.3rem;
  }
}
.project-1-page .project__details {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__details {
    gap: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__details {
    gap: 1.5rem;
  }
}
.project-1-page .project__details-group {
  width: 25rem;
  white-space: nowrap;
  background-color: #0d0d0d;
  color: #fff;
  padding: 1rem 2.8rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  border: 2px solid #0d0d0d;
  box-shadow: 4px 6px 0 0 rgb(0, 0, 0);
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__details-group {
    width: 22rem;
    padding: 0.8rem 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__details-group {
    width: 18rem;
    padding: 0.8rem 1.6rem;
  }
}
.project-1-page .project__details-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__details-value {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__details-value {
    font-size: 1.3rem;
  }
}
.project-1-page .project__details-icon {
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__details-icon {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__details-icon {
    font-size: 1.4rem;
  }
}
.project-1-page .project__image__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-1-page .project__image__wrapper img {
  width: 100%;
  max-width: 60rem;
  height: auto;
  object-fit: contain;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__image__wrapper img {
    max-width: 85%;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__image__wrapper img {
    max-width: 95%;
  }
}
.project-1-page .project__tools {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.project-1-page .project__tools-list {
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__tools-list {
    gap: 3rem;
  }
}
.project-1-page .project__tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.project-1-page .project__tool-box {
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__tool-box {
    width: 5rem;
    height: 5rem;
    border-radius: 1.2rem;
  }
}
.project-1-page .project__tool-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-1-page .project__tool-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0d0d0d;
  font-family: "Archivo", sans-serif;
}
.project-1-page .section__user__research,
.project-1-page .section__problem__definition,
.project-1-page .section__information__architecture,
.project-1-page .section__wireframes,
.project-1-page .section__design__execution,
.project-1-page .section__ui__ux__design,
.project-1-page .section__learning__outcome {
  width: 100%;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 6rem;
  scroll-margin-top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .section__user__research,
  .project-1-page .section__problem__definition,
  .project-1-page .section__information__architecture,
  .project-1-page .section__wireframes,
  .project-1-page .section__design__execution,
  .project-1-page .section__ui__ux__design,
  .project-1-page .section__learning__outcome {
    padding: 3rem 4rem;
    gap: 3rem;
  }
}
.project-1-page .section__user__research .heading__secondary--lined,
.project-1-page .section__problem__definition .heading__secondary--lined,
.project-1-page .section__information__architecture .heading__secondary--lined,
.project-1-page .section__wireframes .heading__secondary--lined,
.project-1-page .section__design__execution .heading__secondary--lined,
.project-1-page .section__ui__ux__design .heading__secondary--lined,
.project-1-page .section__learning__outcome .heading__secondary--lined {
  text-align: center;
  width: 100%;
  align-self: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .section__problem__definition {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .section__problem__definition {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.project-1-page .project__wireframe-screen,
.project-1-page .project__hifi-screen {
  flex: 1;
  aspect-ratio: 9/19.5;
  background-color: transparent;
  border: none;
  border-radius: 1.5rem;
  overflow: hidden;
  min-width: 0;
}
.project-1-page .project__wireframe-img,
.project-1-page .project__hifi-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-1-page .project__wireframes-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 110rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__wireframes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__wireframes-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.project-1-page .project__hifi-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 145rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__hifi-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__hifi-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.project-1-page .project__hifi-btns {
  display: flex;
  gap: 3rem;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__hifi-btns {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.project-1-page .projectpage__paragraph {
  text-align: center;
  max-width: 125rem;
  line-height: 1.6;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .projectpage__paragraph {
    font-size: 1.6rem;
  }
}
.project-1-page .project__overview__images {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  width: 80%;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__overview__images {
    flex-direction: column;
    gap: 3rem;
  }
}
.project-1-page .project__overview__images img {
  width: 100%;
  max-width: 40%;
  height: auto;
  object-fit: contain;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__overview__images img {
    max-width: 80%;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__overview__images img {
    max-width: 90%;
  }
}
.project-1-page .project__insights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 125rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__insights__grid {
    grid-template-columns: 1fr;
  }
}
.project-1-page .project__insight {
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: transparent;
}
.project-1-page .project__insight-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d0d0d;
  font-family: "Archivo", sans-serif;
}
.project-1-page .project__insight-text {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #0d0d0d;
  font-family: "Archivo", sans-serif;
}
.project-1-page .project__slider__container {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 110rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__slider__container {
    gap: 1.5rem;
  }
}
.project-1-page .project__slider {
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
}
.project-1-page .project__slider-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.project-1-page .project__slider-btn {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__slider-btn {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}
.project-1-page .project__slider-hint {
  text-align: center;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
.project-1-page .project__slide {
  flex: 0 0 100%;
}
.project-1-page .project__slide-img {
  width: 100%;
  display: block;
  cursor: zoom-in;
}
.project-1-page .project__pain-points__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 125rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__pain-points__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__pain-points__grid {
    grid-template-columns: 1fr;
  }
}
.project-1-page .project__pain-point {
  border: 2px solid #0d0d0d;
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  min-height: 12rem;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__pain-point {
    padding: 1.5rem 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__pain-point {
    padding: 1.2rem 0.8rem;
    min-height: 10rem;
  }
}
.project-1-page .project__pain-point-icon {
  font-size: 2.5rem;
  color: #0d0d0d;
}
.project-1-page .project__pain-point-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.3;
  font-family: "Archivo", sans-serif;
}
.project-1-page .projectpage__full-bleed-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
  cursor: zoom-in;
}
.project-1-page .projectpage__full-bleed-img-wrapper--large {
  max-width: 75rem;
}
.project-1-page .projectpage__full-bleed-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
}
.project-1-page .project__approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__approach__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}
.project-1-page .approach-card {
  background-color: #1a1a1a;
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .approach-card {
    padding: 1.8rem 1.2rem;
    gap: 1rem;
    border-radius: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .approach-card {
    padding: 1.5rem 1rem;
  }
}
.project-1-page .approach-card ion-icon {
  font-size: 2.8rem;
  color: #fdfdfd;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .approach-card ion-icon {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .approach-card ion-icon {
    font-size: 2rem;
  }
}
.project-1-page .approach-card__title {
  color: #fdfdfd;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Archivo", sans-serif;
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .approach-card__title {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .approach-card__title {
    font-size: 1.1rem;
  }
}
.project-1-page .project__learning-card {
  background-color: #1a1a1a;
  color: #fdfdfd;
  padding: 3.5rem;
  border-radius: 2rem;
  max-width: 125rem;
  line-height: 1.7;
  font-size: 1.6rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 56.25em) {
  .project-1-page .project__learning-card {
    padding: 2.5rem;
    font-size: 1.5rem;
    text-align: center;
  }
}
.project-1-page .project__learning-img-box {
  width: 100%;
  max-width: 45rem;
  border: none;
  padding: 0;
  border-radius: 0.5rem;
  margin: 2rem 0;
}
.project-1-page .project__learning-img-box img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.project-1-page .project__improvements-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 120rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__improvements-list {
    gap: 1rem;
  }
}
.project-1-page .project__improvement-tag {
  background-color: #f3f4f6;
  border: 1.5px solid #0d0d0d;
  padding: 1.2rem 2.2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0d0d0d;
  white-space: nowrap;
  box-shadow: 0 2px 0 0 rgb(0, 0, 0);
}
@media only screen and (max-width: 37.5em) {
  .project-1-page .project__improvement-tag {
    font-size: 1.2rem;
    padding: 1rem 1.8rem;
  }
}

.project-2-page ul,
.project-2-page li {
  list-style: none !important;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page ul::marker,
  .project-2-page li::marker {
    content: none !important;
    display: none !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page * {
    list-style: none !important;
  }
  .project-2-page *::marker {
    content: none !important;
    display: none !important;
  }
}
.project-2-page .section__projectintro {
  padding: 3.5rem;
  padding-top: 15.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .section__projectintro {
    padding-top: 15rem;
    gap: 3rem;
  }
}
.project-2-page .project__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  width: 100%;
  justify-content: center;
  text-align: left;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__header {
    gap: 1.5rem;
  }
}
.project-2-page .project__header-logo {
  height: auto;
  width: auto;
  object-fit: contain;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__header-logo {
    height: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__header-logo {
    height: 8rem;
  }
}
.project-2-page .project__header-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.project-2-page .project__header h2 {
  white-space: nowrap;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__header h2 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__header h2 {
    font-size: 1.8rem;
  }
}
.project-2-page .project__genere--2 {
  color: #682e68;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Archivo", sans-serif;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__genere--2 {
    font-size: 2.2rem;
  }
}
.project-2-page .project__name--2 {
  color: #682e68 !important;
  font-size: 3.2rem;
  font-weight: 800;
  font-family: inherit;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__name--2 {
    font-size: 2.5rem;
  }
}
.project-2-page .project__nav {
  width: 100%;
  padding-bottom: 3rem;
}
.project-2-page .project__nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__nav__list {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__nav__list {
    gap: 1.2rem;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__nav__item {
    flex: 0 0 calc(50% - 1.5rem);
    display: flex;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__nav__item {
    flex: 0 0 calc(50% - 1.2rem);
  }
}
.project-2-page .project__nav__link {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__nav__link {
    padding: 1.2rem 1.4rem;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__nav__link {
    padding: 1rem 1.2rem;
    font-size: 1.3rem;
  }
}
.project-2-page .project__details {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__details {
    gap: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__details {
    gap: 1.5rem;
  }
}
.project-2-page .project__details-group {
  width: 25rem;
  white-space: nowrap;
  background-color: #e4d183;
  color: #0d0d0d;
  padding: 1rem 2.8rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  border: 2px solid #0d0d0d;
  box-shadow: 4px 6px 0 0 rgb(0, 0, 0);
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__details-group {
    width: 22rem;
    padding: 0.8rem 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__details-group {
    width: 18rem;
    padding: 0.8rem 1.6rem;
  }
}
.project-2-page .project__details-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0d0d0d;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__details-value {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__details-value {
    font-size: 1.3rem;
  }
}
.project-2-page .project__details-icon {
  font-size: 2rem;
  color: #0d0d0d;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__details-icon {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__details-icon {
    font-size: 1.4rem;
  }
}
.project-2-page .project__image__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-2-page .project__image__wrapper img {
  width: 100%;
  max-width: 60rem;
  height: auto;
  object-fit: contain;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__image__wrapper img {
    max-width: 85%;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__image__wrapper img {
    max-width: 95%;
  }
}
.project-2-page .project__tools {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.project-2-page .project__tools-heading {
  color: #682e68;
}
.project-2-page .project__tools-list {
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__tools-list {
    gap: 3rem;
  }
}
.project-2-page .project__tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.project-2-page .project__tool-box {
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__tool-box {
    width: 5rem;
    height: 5rem;
    border-radius: 1.2rem;
  }
}
.project-2-page .project__tool-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-2-page .project__tool-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0d0d0d;
  font-family: "Archivo", sans-serif;
}
.project-2-page .section__user__research,
.project-2-page .section__problem__definition,
.project-2-page .section__information__architecture,
.project-2-page .section__wireframes,
.project-2-page .section__design__execution,
.project-2-page .section__ui__ux__design,
.project-2-page .section__usability__testing,
.project-2-page .section__learning__outcome {
  width: 100%;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 6rem;
  scroll-margin-top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .section__user__research,
  .project-2-page .section__problem__definition,
  .project-2-page .section__information__architecture,
  .project-2-page .section__wireframes,
  .project-2-page .section__design__execution,
  .project-2-page .section__ui__ux__design,
  .project-2-page .section__usability__testing,
  .project-2-page .section__learning__outcome {
    padding: 3rem 4rem;
    gap: 3rem;
  }
}
.project-2-page .section__user__research .heading__secondary--lined,
.project-2-page .section__problem__definition .heading__secondary--lined,
.project-2-page .section__information__architecture .heading__secondary--lined,
.project-2-page .section__wireframes .heading__secondary--lined,
.project-2-page .section__design__execution .heading__secondary--lined,
.project-2-page .section__ui__ux__design .heading__secondary--lined,
.project-2-page .section__usability__testing .heading__secondary--lined,
.project-2-page .section__learning__outcome .heading__secondary--lined {
  color: #682e68;
  text-align: center;
  width: 100%;
  align-self: stretch;
  border-bottom: 1px solid rgba(104, 46, 104, 0.2);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.project-2-page .project__usability-card {
  background-color: #682e68;
  color: #fdfdfd;
  padding: 3.5rem;
  border-radius: 2rem;
  max-width: 125rem;
  line-height: 1.7;
  font-size: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__usability-card {
    padding: 2.5rem;
    font-size: 1.5rem;
  }
}
.project-2-page .project__usability-img-box {
  width: 100%;
  max-width: 45rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__usability-img-box {
    max-width: 35rem;
  }
}
.project-2-page .project__usability-img-box img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.project-2-page .projectpage__paragraph--white {
  color: #fdfdfd !important;
  text-align: left !important;
}
.project-2-page .project__usability-table-wrapper {
  width: 100%;
  max-width: 125rem;
  margin-top: 4rem;
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__usability-table-wrapper {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__usability-table-wrapper {
    border: none;
    overflow-x: visible;
  }
}
.project-2-page .project__usability-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Archivo", sans-serif;
  font-size: 1.4rem;
  text-align: left;
  background-color: #fdfdfd;
  list-style: none;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__usability-table {
    list-style: none;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__usability-table {
    display: block;
    min-width: unset;
    background-color: transparent;
    list-style: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__usability-table thead {
    display: none;
  }
}
.project-2-page .project__usability-table th {
  background-color: #682e68;
  color: #fdfdfd;
  padding: 1.8rem 1.5rem;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__usability-table th {
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__usability-table tbody,
  .project-2-page .project__usability-table tr,
  .project-2-page .project__usability-table td {
    display: block;
    width: 100%;
    list-style: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__usability-table tr {
    background-color: #fdfdfd;
    margin-bottom: 2.5rem;
    border: 2px solid #682e68;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    list-style: none;
  }
}
.project-2-page .project__usability-table td {
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0d0d0d;
  line-height: 1.4;
  vertical-align: top;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__usability-table td {
    padding: 1.2rem;
    padding-top: 3.5rem;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
  }
  .project-2-page .project__usability-table td:last-child {
    border-bottom: none;
  }
  .project-2-page .project__usability-table td::before {
    content: attr(data-label);
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #682e68;
    letter-spacing: 0.1rem;
  }
}
.project-2-page .project__usability-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__usability-table tr:nth-child(even) {
    background-color: #fdfdfd;
  }
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .section__problem__definition {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .section__problem__definition {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.project-2-page .project__wireframe-screen,
.project-2-page .project__hifi-screen {
  flex: 1;
  aspect-ratio: 9/19.5;
  background-color: transparent;
  border: none;
  border-radius: 1.5rem;
  overflow: hidden;
  min-width: 0;
}
.project-2-page .project__wireframe-img,
.project-2-page .project__hifi-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-2-page .project__wireframes-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 110rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__wireframes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__wireframes-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.project-2-page .project__hifi-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 145rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__hifi-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__hifi-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.project-2-page .project__hifi-btns {
  display: flex;
  gap: 3rem;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__hifi-btns {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.project-2-page .projectpage__paragraph {
  text-align: center;
  max-width: 125rem;
  line-height: 1.6;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .projectpage__paragraph {
    font-size: 1.6rem;
  }
}
.project-2-page .project__overview__images {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  width: 80%;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__overview__images {
    flex-direction: column;
    gap: 3rem;
  }
}
.project-2-page .project__overview__images img {
  width: 100%;
  max-width: 40%;
  height: auto;
  object-fit: contain;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__overview__images img {
    max-width: 80%;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__overview__images img {
    max-width: 90%;
  }
}
.project-2-page .project__insights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 125rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__insights__grid {
    grid-template-columns: 1fr;
  }
}
.project-2-page .project__insight {
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: transparent;
}
.project-2-page .project__insight-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d0d0d;
  font-family: "Archivo", sans-serif;
}
.project-2-page .project__insight-text {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #0d0d0d;
  font-family: "Archivo", sans-serif;
}
.project-2-page .project__insight--p2 {
  background-color: #682e68;
  border: none;
  text-align: left;
}
.project-2-page .project__insight-title--p2 {
  color: #fdfdfd !important;
}
.project-2-page .project__insight-text--p2 {
  color: #fdfdfd !important;
  font-style: italic;
  font-size: 1.6rem;
}
.project-2-page .project__slider__container {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 110rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__slider__container {
    gap: 1.5rem;
  }
}
.project-2-page .project__slider {
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
}
.project-2-page .project__slider-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.project-2-page .project__slider-btn {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__slider-btn {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}
.project-2-page .project__slider-hint {
  text-align: center;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
.project-2-page .project__slide {
  flex: 0 0 100%;
}
.project-2-page .project__slide-img {
  width: 100%;
  display: block;
  cursor: zoom-in;
}
.project-2-page .project__pain-points__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 125rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__pain-points__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__pain-points__grid {
    grid-template-columns: 1fr;
  }
}
.project-2-page .project__pain-point {
  border: 2px solid #0d0d0d;
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  min-height: 12rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__pain-point {
    padding: 1.5rem 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__pain-point {
    padding: 1.2rem 0.8rem;
    min-height: 10rem;
  }
}
.project-2-page .project__pain-point-icon {
  font-size: 2.5rem;
  color: #0d0d0d;
}
.project-2-page .project__pain-point-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.3;
  font-family: "Archivo", sans-serif;
}
.project-2-page .project__pain-point--p2 {
  background-color: transparent;
  border: 2px solid #682e68;
  box-shadow: none;
  min-height: auto;
  padding: 3rem 1.5rem;
}
.project-2-page .project__pain-point-svg {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__pain-point-svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.project-2-page .project__pain-point-title--p2 {
  color: #682e68 !important;
}
.project-2-page .projectpage__full-bleed-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
  cursor: zoom-in;
}
.project-2-page .projectpage__full-bleed-img-wrapper--large {
  max-width: 75rem;
}
.project-2-page .projectpage__full-bleed-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
}
.project-2-page .project__approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__approach__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}
.project-2-page .approach-card {
  background-color: #1a1a1a;
}
.project-2-page .approach-card--p2 {
  background-color: #682e68;
}
.project-2-page .approach-card {
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .approach-card {
    padding: 1.8rem 1.2rem;
    gap: 1rem;
    border-radius: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .approach-card {
    padding: 1.5rem 1rem;
  }
}
.project-2-page .approach-card ion-icon {
  font-size: 2.8rem;
  color: #fdfdfd;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .approach-card ion-icon {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .approach-card ion-icon {
    font-size: 2rem;
  }
}
.project-2-page .approach-card__title {
  color: #fdfdfd;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Archivo", sans-serif;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .approach-card__title {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .approach-card__title {
    font-size: 1.1rem;
  }
}
.project-2-page .project__learning-card {
  background-color: #682e68;
  color: #fdfdfd;
  padding: 3.5rem;
  border-radius: 2rem;
  max-width: 125rem;
  line-height: 1.7;
  font-size: 1.6rem;
  text-align: center;
  border: none;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__learning-card {
    padding: 2.5rem;
    font-size: 1.5rem;
  }
}
.project-2-page .project__learning-img-box {
  width: 100%;
  max-width: 50rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .project-2-page .project__learning-img-box {
    max-width: 40rem;
  }
}
.project-2-page .project__learning-img-box img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.project-2-page .project__improvements-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 120rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__improvements-list {
    gap: 1rem;
  }
}
.project-2-page .project__improvement-tag {
  background-color: #f3f4f6;
  border: 1.5px solid #0d0d0d;
  padding: 1.2rem 2.2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0d0d0d;
  white-space: nowrap;
  box-shadow: 0 2px 0 0 rgb(0, 0, 0);
}
@media only screen and (max-width: 37.5em) {
  .project-2-page .project__improvement-tag {
    font-size: 1.2rem;
    padding: 1rem 1.8rem;
  }
}

.project-3-page .section__wip {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15rem 3.5rem 10rem;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .project-3-page .section__wip {
    padding: 12rem 2rem 8rem;
  }
}
.project-3-page .wip__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.project-3-page .wip__spinning-text {
  position: relative;
  width: 40rem;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .project-3-page .wip__spinning-text {
    width: 30rem;
    height: 30rem;
  }
}
.project-3-page .wip__spinning-text svg {
  width: 100%;
  height: 100%;
  animation: rotateText 20s linear infinite;
}
.project-3-page .wip__spinning-text text {
  fill: #2648eb;
}
.project-3-page .wip__icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-3-page .wip__icon {
  font-size: 10rem;
  color: #2648eb;
}
@media only screen and (max-width: 37.5em) {
  .project-3-page .wip__icon {
    font-size: 7rem;
  }
}
.project-3-page .wip__text {
  font-size: 4.8rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 900;
  color: #2648eb;
  margin-top: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .project-3-page .wip__text {
    font-size: 3.6rem;
  }
}
.project-3-page .wip__subtext {
  font-size: 1.8rem;
  color: #666;
  max-width: 50rem;
  line-height: 1.6;
}
@media only screen and (max-width: 37.5em) {
  .project-3-page .wip__subtext {
    font-size: 1.6rem;
  }
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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