/* ---------------------------------------------------
  1. GENERAL STYLE
------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fafbfc;
  color: #343a40;
  font-size: 14px;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 400;
  line-height: 2;
  overflow-x: hidden;
  max-width: 100%;
}

.bold {
  font-weight: 700;
}

.img--center {
  display: block;
  margin: 0 auto;
}

.txt--center {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.container {
  padding: 0 1rem;
  margin-top: 5rem;
}

.container__tool-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  height: 1.5rem;
}

.margin--auto {
  margin: 0 auto;
}

.margin-top--4 {
  margin-top: 4rem;
}

.txt__color--orange {
  color: #df823e;
}

.txt__color--green {
  color: #186049;
}

.container__flex-right {
  display: flex;
  justify-content: end;
}

.no-margin-top {
  margin-top: 0;
}

/* --------------------------------------------------------
  1.1. TYPOGRAPHY
---------------------------------------------------------- */

h1,
h2 {
  font-family: "Amatic SC", "Outfit", sans-serif;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
}

h2 {
  font-size: 32px;
  text-align: center;
}

h3 {
  font-size: 1.75em;
  font-family: "Klee One", "Noto Sans Japanese", sans-serif;
}

h4 {
  font-size: 1.25em;
  margin-bottom: 0.5rem;
  font-weight: 700;
  max-width: 500px;
  line-height: 1.75rem;
  margin-top: 2rem;
}

h5 {
  font-size: 1.125em;
  margin-bottom: 0.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

h6 {
  font-size: 1em;
  font-weight: 700;
}

p {
  font-size: 1em;
  margin-bottom: 1.5rem;
  max-width: 31.25rem;
}

.txt__caption {
  font-size: 0.875em;
}

/* ---------------------------------------------------------
  1.2 ELEMENTS
----------------------------------------------------------- */

a:link,
a:visited {
  font-family: "Amatic SC", "Outfit", sans-serif;
  text-decoration: none;
  color: #e3fafc;
  font-size: 1.4em;
}

.btn__main:link,
.btn__main:visited {
  display: inline-block;
  background-color: #1864ab;
  padding: 8px 24px;
  border-radius: 20px 0;
  font-size: 1.2em;
  font-weight: 700;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.btn__main:hover,
.btn__main:focus {
  background-color: #295278;
}

.btn-center {
  text-align: center;
}

.btn__main span {
  margin-right: 8px;
}

.figma-embed {
  margin-top: 5rem;
  height: 90%;
  width: 90%;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.figma-prototype {
  height: 100vh;
  width: 65vw;
  border: none;
}

.prototype__container--tryIt {
  position: relative;
  width: 200px;
  text-align: center;
}

.container__tryIt {
  position: relative;
}

.icon__arrow-prototype--L {
  display: none;
}

.icon__arrow-prototype--S {
  position: absolute;
  top: 90%;
  left: 40%;
}

.text__tryIt {
  color: #1864ab;
  font-family: "Amatic SC", "Outfit", sans-serif;
  font-size: 64px;
  font-weight: 700;
}

.lingoshelf__tryIt {
  width: 200px;
  margin: 2rem auto 2rem auto;
  z-index: 10;
}

ul {
  margin-left: 1rem;
}

li {
  max-width: 31.25rem;
}

.flex__list-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.img--100 {
  width: 100%;
}

.back-to-top {
  position: fixed;
  bottom: 8px;
  right: 24px;
  z-index: 1000;
}

.back-btn:link,
.back-btn:visited {
  display: block;
  background-color: #1864ab;
  color: #d8edf5;
  font-weight: 600;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  margin: 8px 0 16px 0;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.back-btn:hover,
.back-btn:active {
  background-color: #0b7285;
}

/* ---------------------------------------------------------
 2. NAVBAR
 -----------------------------------------------------------*/

.navtoggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}

nav ul {
  list-style: none;
}

.primary-navigation {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: fixed;
  inset: 0 0 0 30%;

  z-index: 1000;
  align-items: flex-start;
  padding: min(20vh, 10rem) 4rem;

  background: hsl(188, 83%, 37%, 0.1);

  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);

  transform: translateX(100%);
  transition: transform 350ms ease-out;
}

.nav-item:link,
.nav-item:visited {
  position: relative;
  display: inline-block;
  color: #343a40;
  font-size: 2em;
}

.nav-item:hover,
.nav-item:focus {
  color: #1864ab;
  font-weight: 700;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background-color: #1864ab;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-item > span {
  font-weight: 700;
  margin-inline-end: 0.5rem;
}

.mobile-nav-toggle {
  position: absolute;
  z-index: 9999;
  background-image: url(../img/other/icon__hamburger.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  width: 2rem;
  aspect-ratio: 1;
  top: 1.5rem;
  right: 2rem;
  border: 0;
}

.mobile-nav-toggle[aria-expanded="true"] {
  background-image: url(../img/other/icon__close.svg);
}

.primary-navigation[data-visible="true"] {
  transform: translateX(0%);
}

.languages {
  display: flex;
  height: 20px;
  gap: 1rem;
}

.btn__language {
  transition: transform 0.2s;
}

/* .btn__language:link,
.btn__language:visited {
  line-height: 0;
  font-size: 0;
} */

.btn__language:hover {
  transform: scale(1.2);
}

.lang--jp {
  border: solid 0.5px #868e96;
}

.open-navbar {
  position: fixed;
  height: 100vh;
  overflow-y: hidden;
}

/* ---------------------------------------------------------
  3. HOMEPAGE
------------------------------------------------------------ */

/* ---------------------------------------------------------
  3.1 HERO SECTION
------------------------------------------------------------- */

.hero-img {
  background-image: url(../img/homepage/homepage__hero-background--XS.svg);
  height: 100vh;
  background-size: cover;
}

.container__relative {
  position: relative;
}

.hero--el1--XS {
  position: absolute;
  z-index: -1;
}

.hero--el1--S {
  display: none;
  position: absolute;
  z-index: -1;
}

.hero--el1--M {
  display: none;
  position: absolute;
  z-index: -1;
}

.hero--el1--L {
  display: none;
  position: absolute;
  z-index: -1;
}

.hero--el2 {
  position: absolute;
  top: 55vh;
  left: 2vh;
}

.hero--el3 {
  position: absolute;
  display: none;
}

.hero--el4 {
  position: absolute;
  top: 50vh;
  right: 2vh;
}

.hero-intro {
  position: absolute;
  text-align: center;
  background-image: url(../img/homepage/homepage__hero-circle--XS.svg);
  height: 343px;
  width: 343px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding-top: 94px;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text__hero {
  font-family: "Amatic SC", "Outfit", sans-serif;
  font-size: 1.125em;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.typewriter-text {
  display: block;
  color: #1864ab;
  min-height: 70px;
}

/* -----------------------------------------------------------
 3.2 ABOUT SECTION
 ------------------------------------------------------------*/

#about {
  color: #e3fafc;
  position: relative;
  padding: 48px 16px;
  padding-bottom: 0;
}

#about::before {
  content: "";
  position: absolute;
  height: 85%;
  width: 110%;
  left: -10%;
  top: 0%;
  z-index: -1;
  background-color: #1098ad;
}

.container__about {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#about h2 {
  position: relative;
  margin-bottom: 77px;
}

.heading-underline {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

#about p {
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  padding: 0 32px;
}

.homepage__about-text {
  position: relative;
}

.decoration__about--S {
  position: absolute;
  top: -29px;
  left: -29px;
}

.container__about-link {
  display: inline-block;
  margin-right: 0;
}

.about-link:link,
.about-link:visited {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  font-size: 20px;
  font-family: "Amatic SC", "Outfit", sans-serif;
  color: #e3fafc;
  font-size: 1.4em;
}

.about-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background-color: #d8edf5;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.about-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.img__homepage-about--x1 {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  height: auto;
}

.decoration__about-img--right {
  display: none;
}

.deco__about-img--left {
  display: none;
}

/* ----------------------------------------------------------
  3.3 WORK
------------------------------------------------------------- */

#work {
  margin-top: 64px;
  margin-bottom: 100px;
}

#work h2 {
  position: relative;
}

.filter__design-type {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  list-style: none;
}

.filter__design-type li {
  font-family: "Amatic SC", "Outfit", sans-serif;
  border: solid 1px #868e96;
  border-radius: 100px;
  padding: 2px 16px;
  width: 103px;
  text-align: center;
}

.filter--active {
  color: #e3fafc;
  background-color: #1864ab;
}

.project-section {
  margin-top: 48px;
  padding: 0 16px;
}

.project-section p {
  margin-bottom: 1.25rem;
}

.project-item {
  margin-top: 80px;
}

.background__project-img {
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 10%;
}

.img__homepage--project {
  display: block;
  width: 60%;
  margin: 0 auto;
}

.container__hp-project-content {
  margin-top: 1rem;
}

/* .container__hp-project-content p {
  margin
} */

.tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
}

.tags li {
  border: solid 1px #343a40;
  border-radius: 100px;
  display: inline-block;
  padding: 4px 16px;
  font-size: 0.8em;
}

.project-section .btn__main {
  margin-top: 48px;
}

/* ------------------------------------------------------
  4. FOOTER
---------------------------------------------------------*/

footer {
  background-color: #1098ad;
  color: #d8edf5;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.5em;
}

footer p {
  margin: 0 auto;
}

.icons__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  list-style: none;
}
.copyright {
  font-size: 0.75em;
}

/* -----------------------------------------------------------
  5. ABOUT PAGE
--------------------------------------------------------------*/

/* -----------------------------------------------------------
  6. PROJECT PAGES
---------------------------------------------------------------*/

.container__project {
  margin-top: 5rem;
}

.project--hero {
  padding: 0 1rem;
  max-width: 1200px;
  margin: 1rem auto 0 auto;
}

.img__project--hero {
  width: 100%;
}

.project-catchphrase {
  font-family: "Klee One", "Noto Sans Japanese", sans-serif;
  text-align: center;
  font-size: 1.25em;
  margin: 1rem auto 0 auto;
  max-width: none;
  line-height: 1.4;
  max-width: 400px;
}

.project--overview {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  margin-top: 4em;
  border-bottom: solid 1px #343a40;
}

.icon__tool--project {
  width: 1.5rem;
  height: 1.5rem;
}

.tags__project {
  /* justify-content: center; */
  /* margin-top: 2rem; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  margin-top: 1rem;
}

.project-section-link:link,
.project-section-link:visited {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  color: #343a40;
  border: solid 1px #343a40;
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.8em;
  /* margin-top: 1rem; */
  transition: transform 0.3s ease;
}

.project-section-link:hover,
.project-section-link:focus {
  border: solid 1px transparent;
  background-color: #1864ab;
  color: #d8edf5;
}

.btn__prototype:link,
.btn__prototype:visited {
  /* font-family: "Klee One", "Noto Sans Japanese", sans-serif;
  font-size: 1em; */
  margin-top: 4rem;
  padding: 0.5rem 2rem;
}

.container__problems-solutions {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background-color: #1098ad;
  color: #e3fafc;
  font-size: 1em;
  padding: 4rem 3rem;
  border-radius: 1.875rem 0;
  margin-top: 5rem;
}

.container__problems-solutions h5 {
  margin-top: 0;
}

.container__problems-solutions ul {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-headline {
  border-bottom: solid 1px #343a40;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.container__list {
  background-color: #1098ad;
  color: #e3fafc;
  padding: 2rem 3rem;
  border-radius: 15px;
}

.user-flow__chart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 3rem;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  width: 313px;
  border-radius: 20px;
  background: #fafbfc;
  margin: 3rem auto;
}

.user-flow__chart-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-flow__chart-item img {
  max-height: 50px;
}

.user-flow__chart-item p {
  font-size: 0.75em;
  margin-bottom: 0;
}

.container__user-flow {
  margin-top: 4rem;
}

.lingo__user-flow-diagram {
  width: 100%;
  margin-top: 2rem;
}

.learnings {
  background-color: #1098ad;
  color: #d8edf5;
  padding-top: 48px;
  padding-bottom: 48px;
}

.learnings .project-headline {
  border-bottom: solid 1px #d8edf5;
}

/* SLIDER STYLING */

.media-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 38%;
  gap: 1rem;

  overflow-x: auto;
  overscroll-behavior-inline: contain;

  scroll-snap-type: inline mandatory;
  padding-left: 1rem;
  scroll-padding-inline: 1rem;
  padding-right: 1rem;
  margin: 2rem 0;
  /* margin-right: -16px; */
}

.media-element {
  scroll-snap-align: start;
}

.carousel__image {
  width: 100%;
}

.carousel__heading {
  text-align: center;
  margin-bottom: 0.2rem;
  font-size: 0.857em;
}

.persona__item-list {
  display: grid;
  grid-template-columns: auto 1fr;
  list-style: none;
  column-gap: 2rem;
  row-gap: 1rem;
  align-items: start;
}

.persona__item-heading {
  font-size: 1.125em;
  font-weight: 600;
}

/* IMAGE CONTAINER */

.img__span {
  width: 100%;
  object-fit: cover;
}

.underline__white {
  border-bottom: solid 1px #d8edf5;
}

/* ------------------------------------------------------------
  6.1 PLANTWISE
-------------------------------------------------------------- */

.plantwise__lettering {
  display: block;
  width: 30%;
  margin: 0 auto;
}

/* .plantwise__catchphrase {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
} */

.plantwise__background--light-green {
  position: relative;
  padding-bottom: 5rem;
}

.plantwise__background--light-green::before {
  position: absolute;
  content: "";
  height: 116%;
  width: 100%;
  top: -16%;
  z-index: -1;
  background-color: #ebfbee;
}

/* PLANTWISE USER RESEARCH SECTION */

.background__dark-green--gradient {
  position: relative;
  padding-top: 10px;
  padding-bottom: 24px;
  color: #d8edf5;
}

.background__dark-green--gradient::before {
  position: absolute;
  content: "";
  background: rgb(106, 178, 155);
  background: linear-gradient(
    45deg,
    rgba(106, 178, 155, 1) 0%,
    rgba(36, 113, 88, 0.95) 54%
  );

  height: 107%;
  width: 100%;
  z-index: -1000;
  top: 0%;
}

#plantwise__user-research.container {
  margin-top: 0;
}

.plantwise__user-research-deco-S--1 {
  display: none;
}

.plantwise__user-research-deco-S--2 {
  display: none;
}

.plantwise__user-research-deco-L--1 {
  display: none;
}

.plantwise__user-research-deco-L--2 {
  display: none;
}

.plantwise__user-research-deco-L--3 {
  display: none;
}

.plantwise__user-research-deco-L--4 {
  display: none;
}

.plantwise__user-research-deco-L--5 {
  display: none;
}

.plantwise__challenges {
  margin-top: 3rem;
}

.plantwise__challenges ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plantwise__user-interview--results {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 250px 24px;
  margin-left: 24px;
  margin-right: 24px;
  background-color: #247158;
  background-image: url(../img/plantwise/plantwise__research-results--background--S.svg);
  background-repeat: none;
  background-size: cover;
  padding: 64px 24px;
  border-radius: 40px;
  box-shadow: 2px 2px 15px 2px rgba(52, 58, 64, 0.5);
}

.plantwise__speech-bubble--1 {
  position: absolute;
  top: -200px;
  right: 50px;
}

.plantwise__speech-bubble--2 {
  position: absolute;
  bottom: -150px;
  left: 60px;
}

/* PLANTWISE PERSONAS */

.plantwise__personas {
  margin-top: 80px;
}

.plantwise__container-persona-image {
  position: relative;
  max-width: 236px;
  margin: 0 auto;
  width: 80%;
}

.plantwise__persona--quote {
  text-align: center;
  font-size: 1.125em;
  font-weight: 600;
  max-width: 270px;
  margin: 1rem auto 4rem auto;
  line-height: 1.5;
}

.plantwise__mockup--1 {
  width: 100%;
}

/*  PLANTWISE USER FLOW */

.plantwise__tree-card--1 {
  display: none;
}

.plantwise__tree-card--2 {
  display: none;
}

/* PLANTWISE USABILITY TESTING */

.plantwise__background--dark-green {
  position: relative;
  padding-top: 20px;
  padding-bottom: 64px;
  color: #343a40;
  margin-top: 100px;
}

.plantwise__background--dark-green::before {
  position: absolute;
  content: "";
  background-color: #d8edf5;
  border-radius: 0 130px 0 0;

  z-index: -1000;
  height: 103%;
  width: 100%;
  top: 0;
}

.plantwise__grass--S {
  position: absolute;
  top: -1%;
  left: -3%;
  z-index: -1500;
}

.plantwise__grass--M {
  display: none;
}

.plantwise__low-fi {
  margin-top: 3rem;
  margin-bottom: 6rem;
}

.plantwise__usability {
  margin-top: 5rem;
}

.plantwise__container-usability-image {
  position: relative;
  width: 216px;
  margin: 0 auto;
}

.plantwise__usability-explanation {
  margin: 2rem auto 0 auto;
  color: #343a40;
  border-radius: 20px;
  max-width: 400px;
}
.plantwise__usability-explanation p {
  margin-bottom: 0;
}

.plantwise__usability-describtion-arrow-1--S {
  position: absolute;
  transform: scale(0.7);
  right: 20%;
  bottom: -10%;
}

.plantwise__usability-describtion-arrow-1--L {
  display: none;
}

.plantwise__usability-description-arrow-2 {
  display: none;
}

.plantwise__usability-arrow--S {
  display: block;
  margin: 3rem auto -2rem auto;
}

.plantwise__usability-arrow--L--1 {
  display: none;
}

.plantwise__usability-arrow--M--2 {
  display: none;
}

.plantwise__leave-deco--1 {
  position: absolute;
  z-index: -500;
  top: 20%;
  left: -30%;
}

.plantwise__leave-deco--2 {
  position: absolute;
  z-index: -500;
  bottom: -230%;
  right: 15%;
}

.plantwise__leave-deco--3 {
  position: absolute;
  z-index: -500;
  bottom: 10%;
  left: -20%;
}

.plantwise__leave-deco--4 {
  position: absolute;
  z-index: -500;
  top: 15%;
  left: -30%;
}

.plantwise__leave-deco--5 {
  position: absolute;
  z-index: -500;
  bottom: -7%;
  right: -22%;
}

.plantwise__usability-problem--1 {
  display: none;
}

.plantwise__usability-problem--3 {
  display: none;
}

.plantwise__usability-problem--4 {
  display: none;
}

.plantwise__usability-solution--1 {
  display: none;
}

.plantwise__usability-solution--3 {
  display: none;
}

.plantwise__usability-solution--4 {
  display: none;
}

.plantwise__tree-card--3 {
  display: none;
}

.container__usability-testing {
  margin-top: 5rem;
}

.plantwise__solution--2 {
  position: relative;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.plantwise__solution--2 img {
  width: 100%;
}

/* PLANTWISE STYLE GUIDE */

.plantwise__container-style-guide {
  margin-top: 1rem;
}

.plantwise__style-heading {
  margin-top: 4rem;
  text-decoration: underline;
}

.plantwsie__media-scroller--color {
  grid-template-columns: 160px 160px 160px 160px 160px;
  margin-right: -1rem;
  margin-left: -1rem;
}

.plantwise__color-element {
  width: 160px;
}

.plantwise__color-list {
  list-style: none;
}

.plantwise__color-code {
  display: flex;
  gap: 0.5rem;
}

.plantwise__color-list h5 {
  font-size: 11.5px;
  font-weight: 700;
  margin: 0;
}

.plantwise__color-list p {
  font-size: 11.5px;
  margin: 0;
}

.plantwsie__media-scroller--typography {
  grid-auto-columns: 80%;
  margin-right: -1rem;
  margin-left: -1rem;
}

.plantwise__typography-name {
  text-align: center;
}

.plantwsie__container-buttons {
  margin: 2rem auto;
  padding: 0 2rem;
  max-width: 500px;
}

.plantwsie__container-buttons img {
  width: 100%;
}

.plantwsie__container-buttons h5 {
  margin-top: 2rem;
}

.plantwsie__container-secondary-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-end;
}

.plantwsie__container-mockups {
  position: relative;
  margin-top: 6rem;
  margin-bottom: 110%;
}

.plantwise__mockup--3 {
  width: 100%;
  border-radius: 0 50px 0 0;
}

.plantwise__mockup--4 {
  position: absolute;
  width: 80%;
  border-radius: 50px 0 0 50px;
  right: 0%;
  bottom: -125%;
}

/* PLANTWISE SCREEN MOCKUPS */

.plantwsie__container--screen-mockups {
  grid-auto-columns: 684;
  margin-left: -1rem;
  margin-right: -1rem;
}

.plantwise__cloud-container {
  position: relative;
}

.plantwise__deco-cloud--1 {
  display: none;
}

.plantwise__deco-cloud--2 {
  display: none;
}

.plantwise__deco-cloud--3 {
  display: none;
}

.plantwise__deco-cloud--4 {
  display: none;
}

.plantwise__deco-cloud--5 {
  display: none;
}

.plantwise__deco-cloud--6 {
  display: none;
}

.plantwise__deco-cloud--7 {
  display: none;
}

.plantwise__deco-cloud--8 {
  display: none;
}

.plantwise__deco-cloud--9 {
  display: none;
}

.plantwise__deco-cloud--10 {
  display: none;
}

.plantwise__deco-cloud--11 {
  display: none;
}

.plantwise__deco-cloud--12 {
  display: none;
}

.plantwise__deco-cloud--13 {
  display: none;
}

.plantwsie__screen-mockup--text {
  text-align: center;
  max-width: 360px;
  padding: 0 1rem;
  margin: 0 auto 4rem auto;
}

.plantwise__screen-mockup--single-screen {
  display: block;
  width: 64%;
  margin: 2rem auto;
}

/* ------------------------------------------------------------
  6.2 LINGOSHELF
--------------------------------------------------------------- */

.lingo--catchphrase {
  margin-bottom: 1rem;
}

.container__lingo--background--1 {
  position: relative;
  padding-bottom: 5rem;
}

.container__lingo--background--1::before {
  position: absolute;
  content: "";
  height: 107%;
  width: 100%;
  top: -7%;
  z-index: -1;
  background-color: #ddf6f9;
}

.lingo__5WH {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.background__lingo--books {
  background-image: url(../img/lingoshelf/lingo__background--books@x1.jpg);
  box-shadow: inset 0 0 0 1000px rgba(219, 243, 251, 0.9);
}

.background__lingo--books-content {
  padding: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.lingo__user-flow--key-points {
  margin: 0 1rem;
}

.lingo__mass-mockup--2 {
  margin-top: 5rem;
}

.lingo__mass-mockup--2 img {
  max-height: 1038px;
  object-fit: cover;
}

.background__light-blue {
  background-color: #d8edf5;
  height: 100%;
}

.background__light-blue .container {
  margin-top: 0;
  padding-top: 128px;
  padding-bottom: 2rem;
}

.img__usability--lingo {
  display: block;
  margin: 2rem auto 1rem auto;
  width: 50%;
}

.lingoshelf__usability-text h5 {
  margin-top: 0;
}

.lingo__solution {
  margin-top: 2rem;
}

.lingo__problem {
  margin-top: 4rem;
}

.lingo__solution--3 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lingo__solution--3 img {
  display: block;
  margin-top: 5px;
}

.lingo__screen-mockup-slider {
  grid-auto-columns: 60%;
  gap: 2rem;
  /* margin-right: 0; */
}

.lingo__caption--hidden {
  display: none;
}

.lingo__caption {
  display: none;
}

.lingo__caption-arrow {
  display: none;
}

.lingo__screen-mockups {
  display: none;
}

/* -------------------------------------------------------
   6.3 Meal Compass 
-------------------------------------------------------- */

.mealcompass__logo {
  width: 50%;
}

.mealcompass__background--light-orange {
  position: relative;
  padding-bottom: 5rem;
}

.mealcompass__background--light-orange::before {
  position: absolute;
  content: "";
  height: 115%;
  width: 100%;
  top: -15%;
  z-index: -1;
  background-color: #feeed9;
}

.mealcompass__container--project-overview {
  margin-top: 24px;
}

.mealcompass__container--project-overview .project--overview {
  margin-top: 24px;
}

#projectSolution {
  margin-top: 3rem;
}

/* MEAL COMPASS USER RESEARCH */

.mealcompass__background--orange {
  background-color: #ffebb7;
  padding-top: 20px;
  padding-bottom: 48px;
}

.mealcompass__5WH {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  color: #d8edf5;
  background-color: #f37725;
  border-radius: 50px;
  padding: 48px 32px;
  box-shadow: 0px 3px 20px 3px rgba(0, 0, 0, 0.25);
  margin-top: 3rem;
}

.mealcompass__5WH h5 {
  margin-top: 0;
}

.mealcompass__research-findings {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.mealcompass__user-research-arrow {
  display: none;
}

/* MEAL COMPASS PERSONAS */

.mealcompass__carousel--personas {
  display: none;
}

.mealcompass__persona-slider {
  grid-auto-columns: 90%;

  /* margin-left: -16px;
  margin-right: -16px; */
}

.mealcompass__persona {
  width: 100%;
  max-width: 1020px;
}

/* MEAL COMPASS MVP */

.mealcompass__mvp-container h5 {
  margin-top: 0;
}

.mealcompass__mockup--1 {
  width: 100%;
}

.mealcompass__orange-box {
  position: absolute;
  height: 100px;
  width: 95%;
  background-color: #df823e;
  border-radius: 30px 0 0 30px;
  z-index: -100;
  top: 25%;
  right: -16px;
}

.mealcompass__mvp-container {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1rem;
  row-gap: 3rem;
}

#mealcompassHypothesis {
  margin-bottom: 0;
}

.mealcompass__user-story {
  font-weight: 700;
}

.mealcompass__container-user-stories {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3rem;
  margin-top: 2rem;
  background-color: #fec732;
  border-radius: 50px;
  padding: 48px 32px;
  box-shadow: 0px 3px 20px 3px rgba(0, 0, 0, 0.25);
  margin-bottom: 100px;
}

/* MEAL COMPASS MOCKUPS */

.mealcompass__cotainer-mockups {
  position: relative;
  margin-top: 80px;
  margin-bottom: 55%;
}

.mealcompass__mockup--2 {
  position: absolute;
  display: block;
  width: 70%;
  z-index: -1;
  top: 85%;
  max-width: 900px;
}

.mealcompass__mockup--3 {
  display: block;
  width: 70%;
  margin-right: 0;
  margin-left: auto;
  max-width: 900px;
}

.mealcompass__yellow-background-box {
  position: absolute;
  height: 200px;
  width: 100%;
  background-color: #fec732;
  z-index: -10;
  top: 30%;
}

/* MEAL COMPASS USABILITY TESTING */

.mealcompass__usability-problem-arrow--1 {
  display: none;
}

.mealcompass__usability-problem-arrow--2 {
  display: none;
}

.mealcompass__usability-problem-arrow--3 {
  display: none;
}

.mealcompass__usability-solution-arrow--1 {
  display: none;
}

.mealcompass__usability-solution-arrow--2 {
  display: none;
}

.mealcompass__usability-solution-arrow--3 {
  display: none;
}

.mealcompass__usability-img {
  display: block;
  width: 60%;
  margin: 2rem auto;
}

.mealcompass__usability-testing-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
}

.mealcompass__usability-text {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* MEAL COMPASS STYLE GUIDE */

.mealcompas__colors {
  margin-right: -16px;
  margin-left: -16px;
}

.mealcompas__typography {
  grid-auto-columns: 65%;
  margin-right: -16px;
  margin-left: -16px;
}

.mealcompas__typography h5,
.mealcompas__typography p {
  text-align: center;
}

.mealcompass__tertiary-button {
  height: 27px;
}

.mealcompas__container-buttons {
  grid-auto-flow: initial;
  grid-template-columns: 200px 200px 200px;
  column-gap: 2rem;
  margin-right: -16px;
  margin-left: -16px;
}

.mealcompass__icons {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 50px 50px 50px 50px;
  row-gap: 2rem;
  column-gap: 2rem;
  justify-items: center;
  justify-content: center;
}

.mealcompass__categories {
  display: grid;
  grid-template-columns: 80px 80px 80px;
  margin-top: 4rem;
  column-gap: 3rem;
  row-gap: 1rem;
  justify-items: center;
  justify-content: center;
}

.mealcompass__category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mealcompass__category-text {
  font-size: 14px;
}

.mealcompass__style-guide--logo img {
  width: 90%;
  display: block;
  margin: 2rem auto;
}

.mealcompass__style {
  margin-top: 4rem;
}

.mealcompass__mockup--4 {
  margin-top: 6rem;
  display: block;
  width: 100%;
  max-height: 1000px;
  object-fit: cover;
}

/* MEAL COMPASS FINAL SCREENS */

.mealcompass__functionality--text {
  /* background-color: #df823e; */
  /* border-radius: 30px 30px 30px 30px; */
  /* padding: 24px 16px; */
  /* margin-top: 16px; */
  /* color: #d8edf5; */
  font-size: 12px;
  text-align: center;
}

.mealcompass__screen-arrow--1 {
  display: none;
}

.mealcompass__screen-arrow--2 {
  display: none;
}

.mealcompass__screen-arrow--3 {
  display: none;
}

.mealcompass__screen-arrow--4 {
  display: none;
}

.mealcompass__screen-arrow--5 {
  display: none;
}

.mealcompass__screen-arrow--6 {
  display: none;
}

.mealcompass__screen-arrow--7 {
  display: none;
}

.mealcompass__screen-arrow--8 {
  display: none;
}

.mealcompass__screen-arrow--9 {
  display: none;
}

.mealcompass__screen--5--L {
  display: none;
}

.mealcompass__deco--cloud--1 {
  display: none;
}

.mealcompass__deco--cloud--2 {
  display: none;
}

.mealcompass__deco--cloud--3 {
  display: none;
}

.mealcompass__deco--cloud--4 {
  display: none;
}

.mealcompass__deco--cloud--5 {
  display: none;
}

.mealcompass__screens--1 {
  margin-left: -16px;
  margin-right: -16px;
}

.mealcompass__screens--2 {
  margin-left: -16px;
  margin-right: -16px;
}

.mealcompass__screens--3 {
  margin-left: -16px;
  margin-right: -16px;
}

/* MEAL COMPASS PROTOTYPE */

.mealcompass__prototype {
  position: relative;
  width: 50vh;
  margin: 300px auto;
}

.mealcompass__tryIt {
  position: absolute;
  right: 24%;
  top: -40%;
}

.adobe-prototype {
  display: block;
  margin: 0 auto;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}

/* -----------------------------------------------------------
  7. RESPONSIVE DESIGN
-------------------------------------------------------------*/

/*-----------------------------------------------------------
  7.1 SMALL DEVICES (530px and larger)
-------------------------------------------------------------*/
@media only screen and (min-width: 530px) {
  h1 {
    font-size: 3em;
  }

  .project-catchphrase {
    font-size: 1.5em;
  }

  .hero-img {
    background-image: url(../img/homepage/homepage__hero-background--S.svg);
  }

  .hero-intro {
    background-image: url(../img/homepage/homepage__hero-circle--S.svg);
    height: 398px;
    width: 398px;
    padding-top: 105px;
  }

  .typewriter-text {
    min-height: 84px;
  }

  .text__hero {
    font-size: 20px;
  }

  .hero--el1--XS {
    display: none;
  }

  .hero--el1--S {
    display: block;
  }

  .hero--el2 {
    transform: scale(1.2);
  }

  .hero--el4 {
    transform: scale(1.2);
  }

  #about {
    padding: 48px 32px;
  }

  .img__homepage-about--x1 {
    width: 70%;
    box-shadow: -50px 50px #0b7285;
    margin-right: 48px;
    margin-top: 64px;
  }

  .container__hp-project-content {
    margin: 3rem auto 1rem auto;
    max-width: 500px;
  }

  .tags {
    justify-content: center;
    gap: 8px;
  }

  .btn__homepage {
    margin-bottom: 8rem;
  }

  .project-section h4 {
    text-align: center;
  }

  .project-section p {
    text-align: center;
  }

  .container__problems-solutions {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .container__list {
    width: 31.25rem;
  }

  .media-scroller {
    grid-auto-columns: 32%;
  }

  /* --------------------------------------------------------
   PLANTWISE 
  --------------------------------------------------------- */

  .plantwise__background--light-green::before {
    height: 125%;
    top: -25%;
  }

  /* PLANTWISE PERSONAS */

  .background__dark-green--gradient::before {
    height: 111%;
  }

  .plantwise__user-research-deco-S--1 {
    display: block;
    position: absolute;
    z-index: -500;
    top: -40%;
    right: -35%;
  }

  .plantwise__user-research-deco-S--2 {
    display: block;
    position: absolute;
    z-index: -500;
    top: -35%;
    left: -25%;
  }

  .plantwise__persona {
    margin-top: 100px;
  }

  /* PLANTWISE USABILITY TESTING */

  .plantwise__background--dark-green::before {
    height: 105%;
  }

  /* PLANTWISE STYLE GUIDE */

  .plantwsie__media-scroller--typography {
    grid-auto-columns: 60%;
  }

  /* PLANTWISE SCREEN MOCKUPS */

  .plantwise__screen-mockup--single-screen {
    width: 32%;
    margin-left: 16px;
    margin-bottom: 80px;
  }

  .plantwsie__screen-mockup--text {
    margin-left: 0;
    text-align: start;
  }

  .plantwise__single-screen--text {
    position: absolute;
    top: 25%;
    left: 40%;
  }

  .plantwise__single-mockup--text {
    margin-bottom: 0;
  }

  /* ---------------------------------------------------------
    LINGOSHELF
  -----------------------------------------------------------*/

  .container__lingo--background--1::before {
    height: 112%;
    top: -12%;
  }

  .lingo__5WH {
    align-items: center;
  }

  .lingo__screen-mockup-slider {
    grid-auto-columns: 40%;
  }

  .lingo__solution {
    margin-top: 4rem;
  }

  .lingoshelf__usability-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }

  /* ----------------------------------------------------------
   MEAL COMPASS
  ---------------------------------------------------------- */

  .mealcompass__background--light-orange::before {
    height: 125%;
    top: -25%;
  }

  /* MEAL COMPASS PERSONAS */

  .mealcompass__persona-slider {
    grid-auto-columns: 90%;
  }

  /* MEAL COMPASS MVP */

  .mealcompass__orange-box {
    height: 150px;
  }

  /* MEAL COMPASS MOCKUPS */

  .mealcompass__yellow-background-box {
    height: 300px;
  }

  /* MEAL COMPASS USABILITY TESTING */

  .mealcompass__usability-img {
    width: 40%;
  }

  .mealcompass__usability-testing-container {
    margin-top: 3rem;
  }

  /* MEAL COMPASS STYLE GUIDE */

  .mealcompas__typography {
    grid-auto-columns: 40%;
    justify-content: center;
  }

  .mealcompass__icons {
    grid-template-columns: 50px 50px 50px 50px 50px 50px;
  }

  .mealcompass__categories {
    grid-template-columns: 80px 80px 80px 80px;
  }

  .mealcompass__style-guide--logo img {
    width: 80%;
  }

  /* MEAL COMPASS FINAL SCREENS */

  .mealcompass__screens {
    gap: 24px;
  }
}

/* ------------------------------------------------------------
  7.2 MEDIUM DEVICES (744px and larger) 
-------------------------------------------------------------*/
@media only screen and (min-width: 744px) {
  .col-md-6 {
    width: 50%;
  }

  h1 {
    font-size: 3.5em;
  }

  p {
    font-size: 1em;
  }

  .txt__caption {
    font-size: 1em;
  }

  li {
    font-size: 1em;
  }

  .container__flex--row {
    display: flex;
    gap: 3rem;
  }

  /* NAVBAR */

  .primary-navigation {
    position: static;
    flex-direction: row;
    align-items: center;
    inset: 0 0 0 0;

    padding: 8px 16px;

    background-color: transparent;
    backdrop-filter: none;

    transform: translateX(0%);
    transition: none;
  }

  .nav-item:link,
  .nav-item:visited {
    font-size: 1.5em;
  }

  .mobile-nav-toggle {
    display: none;
  }

  /* HERO SECTION */

  .hero-img {
    background-image: url(../img/homepage/homepage__hero-background--M.svg);
  }

  .hero-intro {
    background-image: url(../img/homepage/homepage__hero-circle--M.svg);
    height: 550px;
    width: 550px;
    padding-top: 130px;
  }

  .typewriter-text {
    min-height: 98px;
  }

  .text__hero {
    font-size: 32px;
  }

  .hero--el2 {
    transform: scale(1.2);
    top: 64vh;
    left: 3vh;
  }

  .hero--el4 {
    transform: scale(1.4);
    top: 55vh;
    right: 1.5vh;
  }

  .container {
    padding: 0 48px;
    max-width: 1200px;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* .container__S {
    padding: 0 48px;
  } */

  /* ABOUT SECTION */

  #about {
    padding: 48px 48px;
  }

  #about::before {
    height: 80%;
  }

  .img__decoration-about {
    transform: scale(1.3);
  }

  .decoration__about--S {
    top: -16px;
    left: -16px;
  }

  .about-content {
    padding: 0 60px;
  }

  .img__homepage-about--x1 {
    box-shadow: -50px 50px #0b7285;
    margin-right: 48px;
    margin-top: 112px;
  }

  .decoration__about-img--right {
    display: block;
    position: absolute;
    right: 0;
    top: -48px;
  }

  .filter__design-type {
    font-size: 1em;
    gap: 24px;
  }

  .filter__design-type li {
    width: 130px;
  }

  .img__homepage--project {
    width: 50%;
  }

  .background__project-img {
    left: 5%;
    width: 90%;
    top: 8%;
  }

  .tags li {
    font-size: 0.875em;
  }

  .project-section h4 {
    text-align: center;
  }

  .project-section p {
    text-align: center;
  }

  .project-catchphrase {
    max-width: 500px;
  }

  .img__project--hero {
    width: 80%;
  }

  .tags__project {
    font-size: 1em;
  }

  .media-scroller {
    grid-auto-columns: 21%;
    gap: 1rem;

    padding-left: 3rem;
    scroll-padding-inline: 3rem;
    margin: 2rem 0;
    margin-right: -48px;
  }

  .user-flow__chart {
    margin-top: 5rem;
  }

  /* -------------------------------------------------------------
    PLANTWISE
  ---------------------------------------------------------------- */

  .plantwise__background--light-green::before {
    height: 135%;
    top: -35%;
  }

  .plantwise__challenges {
    margin-top: 0;
  }

  .plantwise__user-interview--results {
    flex-direction: row;
    background-image: url(../img/plantwise/plantwise__research-results--background--L.svg);
    margin: 220px 24px 250px 24px;
  }

  .background__dark-green--gradient::before {
    height: 112%;
  }

  .plantwise__container-persona-image {
    max-width: 331px;
  }

  .plantwise__persona-image {
    width: 80%;
  }

  .plantwise__mathew {
    margin-top: 150px;
  }

  .plantwise__persona--quote {
    max-width: 250px;
  }

  .persona__item-heading {
    font-weight: 700;
  }

  .persona__item-list {
    row-gap: 1rem;
    column-gap: 3rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .plantwise__mockup--1 {
    max-width: 70%;
    margin-left: 4rem;
    margin-top: 2rem;
  }

  /* PLANTWISE USABILITY TESTING */

  .plantwise__background--dark-green::before {
    height: 106%;
  }

  .plantwise__grass--S {
    display: none;
  }

  .plantwise__grass--M {
    display: block;
    position: absolute;
    top: -2%;
    left: -15%;
    z-index: -1500;
    transform: scale(0.8);
  }

  .plantwise__usability-describtion-arrow-1--S {
    transform: scale(0.8);
    bottom: -6%;
  }

  .plantwise__leave-deco--1 {
    left: -25%;
  }

  .plantwise__leave-deco--2 {
    bottom: 100%;
    right: -2%;
  }

  .plantwise__leave-deco--3 {
    bottom: 13%;
    left: -16%;
  }

  .plantwise__leave-deco--4 {
    left: -24%;
  }

  .plantwise__leave-deco--5 {
    bottom: -5%;
    right: -19%;
  }

  .plantwise__container-usability-image {
    width: 300px;
  }

  .plantwise__usability-image {
    width: 300px;
  }

  .plantwise__solution--2 img {
    width: 300px;
  }

  /* PLANTWISE STYLE GUIDE */

  .plantwise__container-style-guide {
    margin-top: 1rem;
  }

  .plantwsie__media-scroller--color {
    margin-left: -48px;
    margin-right: -48px;
  }

  .plantwsie__media-scroller--typography {
    grid-auto-columns: 40%;
    justify-items: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .plantwsie__container-mockups {
    margin-bottom: 35%;
  }

  .plantwise__mockup--3 {
    width: 60%;
  }

  .plantwise__mockup--4 {
    width: 45%;
    right: 0%;
    bottom: -50%;
  }

  /* PLANTWISE SCREEN MOCKUPS */

  .plantwsie__screen-mockup--text {
    text-align: center;
  }

  .plantwise__single-screen--text {
    top: 25%;
    left: 38%;
  }

  .plantwise__single-mockup--text {
    margin-bottom: 0;
  }

  .plantwsie__container--screen-mockups {
    grid-auto-columns: 25%;
    padding: 0;
    justify-items: center;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    margin-top: 4rem;
  }

  .plantwise__cloud-container {
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 8rem;
  }

  .plantwise__deco-cloud--1 {
    display: block;
    position: absolute;
    top: -70%;
    left: -13%;
    z-index: -50;
  }

  .plantwise__deco-cloud--2 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -100%;
    transform: scale(1.1);
  }

  .plantwise__deco-cloud--3 {
    display: block;
    position: absolute;
    z-index: -50;
    transform: scale(1.2);
    top: -80%;
  }

  .plantwise__deco-cloud--4 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -120%;
    left: -4%;
    transform: scale(1.1);
  }

  #plantwiseFunctionality4 {
    max-width: 300px;
  }

  .plantwise__deco-cloud--5 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -150%;
  }

  .plantwise__screen-explanation--5 p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .plantwise__deco-cloud--6 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -130%;
    left: -3%;
  }

  .plantwise__screen-explanation--6 p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .plantwise__deco-cloud--7 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -170%;
    left: -13%;
    transform: scale(0.9);
  }

  .plantwise__deco-cloud--8 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -70%;
    left: 5%;
    transform: scale(1.3);
  }

  .plantwise__deco-cloud--9 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -100%;
    left: -10%;
  }

  .plantwise__deco-cloud--10 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -120%;
    left: 7%;
    transform: scale(1.2);
  }

  .plantwise__screen-explanation--10 p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .plantwise__deco-cloud--11 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -110%;
    left: -12%;
  }

  .plantwise__deco-cloud--12 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -85%;
    transform: scale(1.2);
  }

  .plantwise__deco-cloud--13 {
    display: block;
    position: absolute;
    z-index: -50;
    top: -135%;
    transform: scale(1.2);
  }

  .plantwise__screen-mockup--single-screen {
    width: 27%;
  }

  /* ---------------------------------------------------------
    LINGOSHELF
  -----------------------------------------------------------*/

  .container__lingo--background--1::before {
    height: 115%;
    top: -15%;
  }

  .icon__tool--project {
    width: 2em;
    height: 2em;
  }

  .container__tool-icons {
    height: 2rem;
  }

  .lingo__user-flow-diagram {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .lingo__user-flow--key-points {
    margin: 0 3rem;
  }

  /* LINGOSHELF USABILITY TESTING */

  .img__usability--lingo {
    width: 35%;
  }

  .lingo__solution {
    margin-top: 4rem;
  }

  .lingo__problem {
    margin-top: 6rem;
  }

  .lingo__solution--3 {
    margin-top: 2rem;
  }

  .lingo__after--3 {
    margin-top: 5rem;
  }

  .media-scroller.lingo__screen-mockup-slider {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;

    padding: 0 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .lingo__screen-mockup-slider p {
    max-width: 200px;
  }

  .lingo__screen-mockup {
    max-width: 208px;
  }

  /* --------------------------------------------------------
    MEAL COMPASS
  --------------------------------------------------------- */

  .mealcompass__background--light-orange::before {
    height: 132%;
    top: -32%;
  }

  #projectSolution {
    margin-top: 0;
  }

  .mealcompass__container--project-overview {
    margin-top: 48px;
  }

  #projectHeadingBackground {
    margin-top: 0;
  }

  /* MEAL COMPASS USER RESEARCH */

  .mealcompass__5WH {
    grid-template-columns: 500px;
    justify-content: center;
  }

  /* MEAL COMPASS PERSONAS */

  .mealcompass__persona-slider {
    grid-auto-columns: 83%;
    /* margin-left: -48px;
    margin-right: -48px; */
    gap: 3rem;
  }

  /* MEAL COMPASS MVP */

  .mealcompass__orange-box {
    height: 200px;
  }

  .mealcompass__mvp-container {
    justify-content: center;
    grid-template-columns: 500px;
  }

  .mealcompass__container-user-stories {
    grid-template-columns: 500px;
    justify-content: center;
  }

  /* MEAL COMPASS MOCKUPS */

  .mealcompass__yellow-background-box {
    height: 400px;
  }

  /* MEAL COMPASS USABILITY TESTING */

  .mealcompass__usability-testing-container {
    grid-template-columns: 275px;
  }

  .mealcompass__container--usability-problem {
    margin-top: 2rem;
  }

  .mealcompass__usability-img {
    margin-left: 0;
    width: 275px;
  }

  .mealcompass__usability-text {
    position: absolute;
    max-width: 300px;
  }

  .mealcompass__usability-problem-arrow--1 {
    display: block;
    position: absolute;
    top: 4%;
    right: -15%;
  }

  .mealcompass__usability-text--1 {
    top: 5%;
    right: -130%;
  }

  .mealcompass__usability-solution-arrow--1 {
    display: block;
    position: absolute;
    top: 36%;
    right: -14%;
  }

  .mealcompass__usability-text--2 {
    top: 38%;
    right: -127%;
  }

  .mealcompass__usability-problem-arrow--2 {
    display: block;
    position: absolute;
    top: 11%;
    right: -15%;
  }

  .mealcompass__usability-text--3 {
    top: 11%;
    right: -130%;
  }

  .mealcompass__usability-solution-arrow--2 {
    display: block;
    position: absolute;
    top: 24%;
    right: -15%;
  }

  .mealcompass__usability-text--4 {
    top: 22%;
    right: -130%;
  }

  .mealcompass__usability-problem-arrow--3 {
    display: block;
    position: absolute;
    top: 27%;
    right: -15%;
  }

  .mealcompass__usability-text--5 {
    top: 18%;
    right: -130%;
  }

  .mealcompass__usability-solution-arrow--3 {
    display: block;
    position: absolute;
    bottom: 7%;
    right: -28%;
  }

  .mealcompass__usability-text--6 {
    top: 40%;
    right: -126%;
  }

  /* MEAL COMPASS STYLE GUIDE */

  .mealcompas__colors {
    grid-auto-flow: initial;
    grid-template-columns: 190px 190px 190px;
    justify-content: center;
  }

  .mealcompass__color--6 {
    grid-column: 1;
    grid-row: 3;
  }

  .mealcompass__color--7 {
    grid-column: 2;
    grid-row: 3;
  }

  .mealcompas__typography {
    grid-template-columns: 250px 250px;
    gap: 2rem;
  }

  .mealcompas__container-buttons {
    grid-auto-flow: initial;
    grid-template-columns: 170px 170px 170px;
    column-gap: 2rem;
    justify-content: center;
  }

  .mealcompass__icons {
    margin-top: 4rem;
    grid-template-columns: 50px 50px 50px 50px 50px 50px 50px;
  }

  .mealcompass__categories {
    margin-top: 6rem;
    grid-template-columns: 80px 80px 80px 80px 80px;
  }

  /* MEAL COMPASS FINAL SCREENS */

  .mealcompass__functionality--text {
    background-color: #df823e;
    border-radius: 30px 30px 30px 30px;
    padding: 24px 16px;
    color: #d8edf5;
    text-align: start;
  }

  .mealcompass__screens {
    grid-auto-flow: initial;
    grid-template-columns: 220px 220px;
    column-gap: 80px;
    justify-content: center;
  }

  .mealcompass__screens--2 {
    row-gap: 0;
  }

  .mealcompass__screen {
    width: 220px;
  }

  .mealcompass__screen--4 {
    grid-column: 1;
    grid-row: 1;
  }

  .mealcompass__screen--5 {
    height: 518px;
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 32px;
  }

  .mealcompass__screen--6 {
    grid-column: 1;
    grid-row: 3;
  }

  .mealcompass__screen--7 {
    grid-column: 2;
    grid-row: 3;
  }

  .mealcompass__functionality--1 {
    position: absolute;
    width: 250px;
    top: 10%;
    right: -130%;
  }

  .mealcompass__functionality--2 {
    position: absolute;
    width: 250px;
    top: 15%;
    right: -130%;
  }

  .mealcompass__functionality--3 {
    position: absolute;
    width: 250px;
    top: 40%;
    left: -130%;
  }

  .mealcompass__functionality--6 {
    position: relative;
    width: 400px;
    left: 30%;
  }

  .mealcompass__screen--12 {
    grid-column: 1;
    grid-row: 3;
  }

  .mealcompass__screen--13 {
    grid-column: 2;
    grid-row: 3;
  }
}

/* ----------------------------------------------------------
  7.3 LARGE DEVICES (1020px and larger)
--------------------------------------------------------------*/
@media only screen and (min-width: 1020px) {
  .col-lg-5 {
    width: 41.66%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33%;
  }

  h1 {
    font-size: 64px;
  }

  p {
    max-width: 37.5rem;
  }

  li {
    max-width: 37.5rem;
  }

  /* NAVBAR */

  .nav-item:link,
  .nav-item:visited {
    font-size: 28px;
  }

  .hero-img {
    background-image: url(../img/homepage/homepage__hero-background--L.svg);
  }

  .hero-intro {
    margin: 0 auto;
    height: 653px;
    width: 653px;
    padding-top: 170px;
  }

  .typewriter-text {
    min-height: 112px;
  }

  .hero--el1--S {
    display: none;
  }

  .hero--el1--M {
    display: block;
  }

  .hero--el2 {
    transform: scale(1.7);
    top: 50vh;
    left: 2vh;
  }

  .hero--el3 {
    display: block;
    top: 1vh;
    right: -5vh;
  }

  .hero--el4 {
    transform: scale(1.5);
    top: 50vh;
    right: 10vh;
  }

  #about::before {
    height: 100%;
    width: 94%;
  }

  .container__hp-about {
    display: flex;
    align-items: flex-start;
    /* justify-content: space-between; */
    margin-left: 2em;
    gap: 100px;
  }

  .decoration__about-img--right {
    display: none;
  }

  #about p {
    text-align: start;
  }

  .about-content {
    padding: 0 64;
  }

  .about__image-container {
    margin-top: -10%;
  }

  .img__homepage-about--x1 {
    width: 290px;
    max-width: 350px;
    box-shadow: -40px 40px #e3fafc;
    margin-top: 0;
    margin-right: 0;
  }

  .deco__about-img--left {
    display: block;
    position: absolute;
    left: -65px;
    top: 230px;
  }

  .filter__design-type {
    justify-content: flex-start;
    border-bottom: solid 0.5px #343a40;
    gap: 32px;
  }

  .filter__design-type li {
    border: none;
    font-size: 1.5em;
    width: auto;
    padding: 0;
  }

  .filter--active {
    background-color: transparent;
    color: #1864ab;
    font-weight: 700;
  }

  .img__homepage--project {
    width: 280px;
  }

  .background__project-img-left {
    left: -10%;
    width: 100%;
    top: 8%;
  }

  .background__project-img-right {
    left: 10%;
    width: 100%;
    top: 8%;
  }

  .project-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 64px;
    row-gap: 5rem;
  }

  .project-item {
    margin-top: 0;
  }

  .project-catchphrase {
    font-size: 2em;
    max-width: 700px;
  }

  .project-img-lingoshelf {
    grid-column: 2;
  }

  .project-text-lingoshelf {
    grid-row: 2;
  }

  .container__hp-project-content {
    max-width: none;
    margin-bottom: 0;
  }

  .btn__homepage {
    text-align: start;
  }

  .tags {
    justify-content: flex-start;
    gap: 8px;
  }

  .container__margin-top--128 {
    margin-top: 128px;
  }

  .container__project--overview {
    margin-top: 80px;
  }

  .project-section h4 {
    text-align: start;
  }

  .project-section p {
    text-align: start;
  }

  .img__project--hero {
    width: 60%;
  }

  .container__problems-solutions {
    flex-direction: row;
    max-width: none;
    justify-content: space-between;
  }

  .problems {
    flex: 1;
  }

  .solutions {
    flex: 1;
  }

  .container__learnings {
    margin-top: 80px;
  }

  .icon__arrow-prototype--L {
    position: absolute;
    display: block;
    top: 90%;
    left: 25%;
  }

  .icon__arrow-prototype--S {
    display: none;
  }

  .lingoshelf__tryIt {
    position: absolute;
    margin: 0;
    right: 15%;
  }

  /*-------------------------------------------------------
    PLANTWISE
  --------------------------------------------------------*/

  .plantwise__background--light-green::before {
    height: 140%;
    top: -40%;
  }

  .background__dark-green--gradient::before {
    height: 110%;
  }

  .plantwise__container--user-research {
    margin-top: 80px;
  }

  .plantwise__user-research-deco-S--1 {
    display: none;
  }

  .plantwise__user-research-deco-S--2 {
    display: none;
  }

  .plantwise__user-interview--results {
    padding: 64px 64px;
    gap: 4rem;
    margin: 150px 24px 250px 24px;
  }

  .plantwise__personas {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10rem;
  }

  .plantwise__persona-image {
    width: 331px;
  }

  .plantwise__persona {
    margin: 0;
  }

  .plantwise__mockup--1 {
    width: 40%;
    margin-top: -6rem;
  }

  /* PLANTWISE USER FLOW */

  .plantwise__container--user-flow {
    margin-top: 80px;
  }

  /* PLANTWISE USABILITY TESTING */

  .plantwise__background--dark-green::before {
    border-radius: 0 230px 0 0;
    height: 111%;
  }

  .plantwise__container--usability {
    margin-top: 80px;
  }

  .plantwise__grass--M {
    top: -3%;
    left: -3%;
    z-index: -1500;
    transform: scale(1);
  }

  .plantwise__leave-deco--1 {
    display: none;
  }

  .plantwise__leave-deco--2 {
    display: none;
  }

  .plantwise__leave-deco--3 {
    display: none;
  }

  .plantwise__leave-deco--4 {
    display: none;
  }

  .plantwise__leave-deco--5 {
    display: none;
  }

  .plantwise__usability-describtion-arrow-1--S {
    display: none;
  }

  .plantwise__usability-describtion-arrow-1--L {
    display: block;
    position: absolute;
    bottom: -15%;
    left: 16%;
  }

  .plantwise__usability-description-arrow-2 {
    display: block;
    position: absolute;
    transform: scale(0.3);
    bottom: -29%;
    right: -9%;
  }

  .plantwise__usability-arrow--S {
    display: none;
  }

  .plantwise__usability-arrow--M--2 {
    display: block;
    position: absolute;
    transform: scale(0.8);
    bottom: 40%;
    left: 53%;
  }

  .plantwise__usability-problem--1 {
    display: block;
  }

  .plantwise__usability-problem--3 {
    display: block;
  }

  .plantwise__usability-problem--4 {
    display: block;
  }

  .plantwise__usability-solution--1 {
    display: block;
  }

  .plantwise__usability-solution--3 {
    display: block;
  }

  .plantwise__usability-solution--4 {
    display: block;
  }

  .plantwise__usability-image {
    width: 212px;
  }

  .plantwise__container-usability-image {
    display: flex;
    width: 100%;
    gap: 1rem;
    margin: 0 auto;
  }

  .plantwise__problem--1 {
    width: 900px;
  }

  .plantwise__usability-explanation {
    margin-top: 4.3rem;
    max-width: 350px;
  }

  .plantwise__solution--2 {
    margin-top: 99px;
  }

  .plantwise__solution--2 img {
    width: 212px;
  }

  .plantwise__container-usability-problem-2 {
    display: flex;
    justify-content: space-between;
  }

  .plantwise__container-usability-problem-2 h5 {
    margin-top: 0;
  }

  .plantwise__usability-problem-2--txt {
    max-width: 400px;
  }

  .plantwise__usability-explanation-solution--2 {
    margin-top: 2rem;
  }

  /* PLANTWISE STYLE GUIDE */

  .plantwsie__style-guide-explanation {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }

  .plantwise__container-style-guide {
    margin-top: 0;
  }

  .plantwsie__style-guide--image {
    grid-column: 2;
    align-self: center;
  }

  .plantwsie__style-guide--text {
    grid-column: 1;
    grid-row: 1;
  }

  .plantwsie__media-scroller--color {
    justify-content: center;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .plantwsie__media-scroller--typography {
    grid-template-columns: auto auto;
    padding: 0;
    justify-items: start;
  }

  .plantwsie__media-scroller--typography img {
    max-width: 250px;
  }

  .plantwise__container-style-flex {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    justify-items: center;
    /* justify-content: start; */
  }

  .plantwsie__container-buttons {
    margin-top: 1rem;
    max-width: 400px;
    margin-right: 0;
    padding: 0;
  }

  .plantwsie__container-buttons h5:first-child {
    margin-top: 0;
  }

  /* PLANTWISE SCREEN MOCKUPS */

  .plantwise__screen-mockup-container--1 {
    margin-top: -5rem;
  }

  .plantwsie__container--screen-mockups {
    grid-auto-columns: auto;
  }

  .plantwise__screen-mockup--single-screen {
    margin-left: 0;
    margin-bottom: 0;
    margin: 2rem auto;
  }

  .plantwise__screen-mockup--2 {
    justify-content: start;
  }

  .plantwise__screen-mockup--3 {
    margin-right: 2rem;
    margin-top: -3rem;
  }

  .plantwise__screen-mockup--5 {
    justify-content: start;
  }

  .plantwise__screen-mockup--7 {
    margin-left: 3rem;
    margin-top: 3rem;
  }

  .plantwise__screen-mockup--8 {
    margin-left: 0rem;
    margin-top: 3rem;
  }

  .plantwise__screen-mockup--9 {
    margin-right: 9rem;
    margin-top: -29.5rem;
    margin: -29.5rem 9rem 15rem auto;
  }

  .plantwise__screen-mockup--10 {
    justify-content: start;
  }

  .plantwise__screen-mockup--13 {
    margin-right: 9rem;
    margin-top: -29.5rem;
    margin: -29.5rem 9rem 15rem auto;
  }

  .plantwise__screen-explanation--2 {
    position: absolute;
    top: 30%;
    left: 26rem;
  }

  .plantwise__screen-explanation--3 {
    position: absolute;
    top: 40%;
    right: 15rem;
  }

  .plantwise__screen-explanation--4 {
    position: absolute;
    right: 0rem;
  }

  #plantwiseFunctionality4 {
    max-width: 300px;
  }

  .plantwise__screen-explanation--5 {
    position: absolute;
    top: 32%;
    left: 26rem;
  }

  .plantwise__screen-explanation--5 p {
    max-width: 300px;
    margin-left: 2rem;
  }

  .plantwise__screen-explanation--6 {
    position: absolute;
    right: 0rem;
  }

  .plantwise__deco-cloud--6 {
    left: -10%;
  }

  .plantwise__screen-explanation--7 {
    position: absolute;
    top: 50%;
    left: 14rem;
  }

  .plantwise__screen-explanation--8 {
    position: absolute;
    top: 50%;
    left: 13rem;
  }

  .plantwise__screen-explanation--9 {
    position: absolute;
    top: 105%;
    right: 5rem;
  }

  .plantwise__screen-explanation--10 {
    position: absolute;
    top: 60%;
    left: 25rem;
  }

  .plantwise__screen-explanation--10 p {
    max-width: 300px;
    margin-left: 2rem;
  }

  .plantwise__screen-explanation--12 {
    position: absolute;
    top: 30%;
    left: 1rem;
  }

  .plantwise__screen-explanation--13 {
    position: absolute;
    top: 110%;
    right: 0rem;
  }

  .plantwise__deco-cloud--2 {
    transform: scale(1.1);
  }

  .plantwise__prototype {
    margin-top: 10rem;
  }

  /* ------------------------------------------------------
    7.2.2 LINGOSHELF
  -------------------------------------------------------- */

  .container__lingo--background--1::before {
    height: 118%;
    top: -18%;
  }

  .lingo--catchphrase {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .lingo__logo {
    transform: scale(1.4);
  }

  .lingoshelf__container--background {
    margin-top: 80px;
  }

  .lingo__5WH {
    display: block;
    position: relative;
    height: 470px;
  }

  .lingo__5WH--1 {
    position: absolute;
    width: 435px;
    left: 200px;
  }

  .lingo__5WH--2 {
    position: absolute;
    width: 45vw;
    max-width: 480px;
    top: 180px;
    right: 0px;
    right: 30px;
  }

  .lingo__5WH--3 {
    position: absolute;
    width: 40vw;
    max-width: 520px;
    top: 200px;
  }

  .lingoshelf__container--user-flow {
    margin-top: 80px;
  }

  .container__user-flow {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3rem;
  }

  .lingo__user-flow-diagram {
    margin: 0;
    width: 100%;
  }

  .lingo__user-flow-chart {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-top: 8rem;
  }

  .lingo__user-flow-chart h4 {
    flex: 2;
  }

  .lingo__user-flow-chart--1 {
    margin-top: 3rem;
  }

  .lingo__user-flow-chart--4 {
    column-gap: 2rem;
  }

  .media-scroller.lingo__low-fi-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    /* margin-right: 0; */
  }

  .carousel__image {
    max-width: 208px;
  }

  .lingo__user-flow--key-points {
    max-width: 500px;
    margin: 0;
    height: fit-content;
  }

  .lingo__user-flow-chart--2 img {
    width: 80%;
  }

  .lingo__user-flow-chart--4 img {
    width: 80%;
  }

  .lingo__user-flow-description--2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }

  .lingo__user-flow-description--3 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }

  .lingo__flow-key-points--3 {
    grid-row: 1 / 2;
  }

  .lingo__flow-key-points--4 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .lingo__before--1 {
    grid-row: 1;
    grid-column: 1;
  }

  .lingo__before--2 {
    grid-column: 1;
    grid-row: 2;
  }

  .lingo__usability-test {
    display: grid;
    grid-template-columns: 230px 1fr 1fr 230px;
    column-gap: 2rem;
    row-gap: 6rem;
  }

  .img__usability--lingo {
    width: 100%;
    margin-top: 0;
  }

  .lingo__problem {
    margin: 0;
    max-width: 250px;
  }

  .lingo__solution {
    align-self: end;
  }

  .lingo__solution--3 {
    margin-top: 0;
  }

  .lingo__solution--2 {
    grid-row: 2;
    grid-column: 3;
    align-self: start;
    margin-top: 0;
  }

  .lingo__solution2--1 {
    grid-row: 2;
    grid-column: 2/ 4;
    align-self: end;
    margin-left: 6rem;
  }

  .lingo__problem--2 {
    grid-row: 2;
    grid-column: 2;
  }

  .lingo__solution2--1 p {
    margin-bottom: 0;
  }

  .lingo__after--3 {
    grid-column: 4;
    grid-row: 3;
    margin-top: 0;
  }

  .lingo__solution2--2 {
    grid-column: 3;
    grid-row: 3;
    align-self: center;
  }

  /* LINGOSHELF FINAL SCREEN MOCKUPS */

  .lingoshelf__container-screens {
    margin-top: 80px;
  }

  .lingo__screen-mockups {
    display: block;
    margin: 0 auto;
    width: 70%;
  }

  .lingo__screen-mockup-slider .media-element {
    display: none;
  }

  .lingo__screens {
    position: relative;
    margin-top: 5em;
  }

  .lingoshelf__screens--1 {
    margin-top: 7rem;
  }

  .lingoshelf__screens--3 {
    margin-top: 8rem;
  }

  .lingo__caption {
    position: absolute;
    display: block;
    max-width: 150px;
    font-size: 0.875em;
  }

  .lingo__caption-arrow {
    position: absolute;
    display: block;
  }

  .lingo__functionality--1 {
    top: 28%;
    left: -2%;
  }

  .lingo__caption-arrow--1 {
    top: 64%;
    left: 8%;
  }

  .lingo__caption-arrow--2 {
    top: -6%;
    left: 42%;
  }

  .lingo__functionality--2 {
    max-width: 250px;
    top: -20%;
    left: 48%;
  }

  .lingo__caption-arrow--3 {
    right: 12%;
    top: 25%;
  }

  .lingo__functionality--3 {
    right: -2%;
    top: 35%;
  }

  .lingo__caption-arrow--4 {
    top: -4%;
    left: 43%;
  }

  .lingo__functionality--4 {
    max-width: 250px;
    top: -15%;
    left: 46%;
  }

  .lingo__caption-arrow--5 {
    bottom: -8%;
    right: 37%;
  }

  .lingo__functionality--5 {
    bottom: -30%;
    right: 21%;
  }

  .lingo__caption-arrow--6 {
    top: 56%;
    right: 15%;
  }

  .lingo__functionality--6 {
    top: 63%;
    right: 2%;
  }

  .lingo__caption-arrow--7 {
    top: -5%;
    left: 32%;
  }

  .lingo__functionality--7 {
    max-width: 220px;
    top: -20%;
    left: 30%;
  }

  .lingo__caption-arrow--8 {
    bottom: -8%;
    left: 26%;
  }

  .lingo__functionality--8 {
    max-width: 200px;
    bottom: -25%;
    left: 29%;
  }

  .lingo__caption-arrow--9 {
    top: -9%;
    right: 39%;
  }

  .lingo__functionality--9 {
    max-width: 250px;
    top: -23%;
    right: 14%;
  }

  .lingo__caption-arrow--10 {
    bottom: 12%;
    right: 15%;
  }

  .lingo__functionality--10 {
    bottom: 18%;
    right: 2%;
  }

  /* ---------------------------------------------------------
    MEAL COMPASS
  ---------------------------------------------------------- */

  .img__mealcompass--hero {
    width: 70%;
  }

  .mealcompass__catchphrase {
    max-width: 550px;
    line-height: 1.6;
  }

  .mealcompass__background--light-orange::before {
    height: 144%;
    top: -44%;
  }

  .mealcompass__container--project-overview {
    margin-top: 0;
  }

  .mealcompass__container--project-overview .project--overview {
    margin-top: 0;
  }

  /* MEAL COMPASS USER RESEARCH */

  .mealcompass__container--user-research {
    margin-top: 80px;
  }

  .mealcompass__5WH {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    column-gap: 3rem;
    padding: 64px 64px;
  }

  .mealcompass__research-findings {
    flex-direction: row;
    gap: 6rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: flex-start;
  }

  .mealcompass__research-findings div {
    width: 300px;
  }

  .mealcompass__user-research-arrow {
    display: block;
    position: absolute;
    transform: scale(0.8);
    top: 0%;
    right: -2%;
  }

  /* MEAL COMPASS PERSONAS */

  .mealcompass__container--personas {
    margin-top: 80px;
  }

  .mealcompass__carousel--personas {
    display: block;
  }

  .meaclmopass__container--carousel {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .mealcompass__persona-slider {
    display: none;
  }

  .carousel {
    position: relative;
    height: 595px;
    width: 842px;
    margin: 0 auto;
  }

  .carousel__track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .carousel__track {
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 250ms ease-in;
  }

  .carousel__slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
  }

  .carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #df823e;
    border-radius: 50%;
    padding: 8px;
    border: 0;
    cursor: pointer;
  }

  .carousel__button--left {
    left: -50px;
  }

  .carousel__button--right {
    right: -50px;
  }

  .carousel__button svg {
    width: 20px;
  }

  .carousel__nav {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    gap: 8px;
  }

  .carousel__indicator {
    border: 0;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: rgba(223, 130, 62, 0.3);
    cursor: pointer;
  }

  .carousel__indicator.current-slide {
    background: #df823e;
  }

  .is-hidden {
    display: none;
  }

  .carousel__persona-image {
    width: 842px;
  }

  /* MEAL COMPASS MVP */

  .mealcompass__orange-box {
    height: 100px;
    width: 100%;
    right: -48px;
  }

  .mealcompass__mvp-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mealcompass__mvp-container {
    justify-content: start;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3rem;
    margin-top: 3rem;
  }

  .mealcompass__border-right {
    border-right: dashed 2px #df823e;
    padding-right: 3rem;
  }

  .mealcompass__border-right p {
    margin: 0;
  }

  .mealcompass__container-user-stories {
    grid-template-columns: 1fr 1fr;
    justify-content: start;
    column-gap: 4rem;
    padding: 64px 64px;
  }

  .mealcompass__yellow-background-box {
    height: 500px;
  }

  /* MEAL COMPASS USER FLOW */

  .mealcompas__container--user-flow {
    margin-top: 80px;
  }

  /* MEAL COMPASS LOW FI */

  .mealcompass__container--low-fi {
    margin-top: 80px;
  }

  /* MEAL COMPASS USABILITY TESTING */

  .mealcompass__usability-testing-container {
    margin-top: 5rem;
  }

  .mealcompass__usability-testing {
    margin-top: 80px;
  }

  /* MEAL COMPASS STYLE GUIDE */

  .mealcompass__container--style-guide {
    margin-top: 80px;
  }

  .mealcompass__style-guide-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8rem;
    row-gap: 2rem;
    margin-top: 4rem;
  }

  .mealcompass__style {
    margin-top: 0;
  }

  .mealcompas__colors {
    grid-template-columns: 150px 150px 150px;
    justify-content: start;
    padding-left: 0;
  }

  .mealcompas__typography {
    grid-template-columns: 170px 170px;
    justify-content: start;
    row-gap: 0;
    padding-left: 0;
  }

  .mealcompas__typography p {
    margin-bottom: 0;
  }

  .mealcompas__container-buttons {
    grid-template-columns: 140px 140px 140px;
    padding-left: 0;
    justify-content: start;
  }

  .mealcompass__icons {
    grid-template-columns: 50px 50px 50px 50px;
    justify-content: start;
  }

  .mealcompass__categories {
    grid-template-columns: 80px 80px 80px 80px;
    row-gap: 1rem;
    column-gap: 1rem;
    margin-top: 4rem;
    justify-content: start;
  }

  .mealcompass__buttons-container {
    grid-column: 1;
    grid-row: 2;
  }

  .mealcompass__style-guide--logo {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    margin-top: 10rem;
  }

  /* MEAL COMPASS FINAL SCREENS */

  .mealcompass__container--screens {
    margin-top: 80px;
  }

  .mealcompass__screens {
    margin-right: 0;
    padding-left: 0;
    scroll-padding-inline: 0;
  }

  .mealcompass__screens--1 {
    column-gap: 300px;
    margin-bottom: 200px;
    overflow-y: hidden;
    grid-template-rows: 500px 500px;
    margin-bottom: 0;
  }

  .mealcompass__screen-arrow--1 {
    display: block;
    position: absolute;
    transform: scale(0.62);
    top: 42.5%;
    left: 25%;
  }

  .mealcompass__screen-container--1 {
    position: absolute;
    left: 80%;
  }

  .mealcompass__screen-arrow--2 {
    display: block;
    position: absolute;
    transform: scale(0.54);
    top: -75.5%;
    left: -13%;
  }

  .mealcompass__screen-arrow--3 {
    display: block;
    position: absolute;
    transform: scale(0.7);
    left: 60%;
    top: 0%;
  }

  .mealcompass__screens--2 {
    column-gap: 400px;
    overflow-y: hidden;
  }

  .mealcompass__screen--5 {
    grid-row: 1;
  }

  .mealcompass__functionality--2 {
    top: 30%;
    right: -115%;
  }

  .mealcompass__screen-container--5 {
    position: absolute;
    right: 33%;
    top: 31.5%;
  }

  .mealcompass__functionality--3 {
    top: 50%;
  }

  .mealcompass__screen-arrow--4 {
    display: block;
    position: absolute;
    transform: scale(0.6);
    top: 45%;
    left: -90%;
  }

  .mealcompass__screen--6 {
    grid-column: 1;
    grid-row: 2;
  }

  .mealcompass__screen--7 {
    grid-column: 2;
    grid-row: 2;
  }

  .mealcompass__screen-container--6 {
    position: absolute;
    top: 10%;
    left: 80%;
  }

  .mealcompass__screen-arrow--5 {
    display: block;
    position: absolute;
    top: 36.5%;
    left: 22%;
    transform: scale(0.55);
    z-index: 1;
  }

  .mealcompass__functionality--4 {
    position: absolute;
    width: 200px;
    top: 60%;
    left: 110%;
  }

  .mealcompass__screens--3 {
    column-gap: 350px;
    grid-template-rows: 613px 650px 350px;
  }

  .mealcompass__screen-arrow--6 {
    display: block;
    position: absolute;
    transform: scale(0.53);
    top: -21%;
    left: -30%;
  }

  .mealcompass__functionality--5 {
    position: absolute;
    width: 200px;
    left: -150%;
    top: 74%;
  }

  .mealcompass__screen--11 {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  /* .mealcompass__screen-container--11 {
      position: absolute;
      right: -10%;
    } */

  .mealcompass__screen-arrow--7 {
    display: block;
    position: absolute;
    transform: scale(0.65);
    right: 83%;
    top: 45%;
    z-index: 1;
  }

  .mealcompass__screen-container--12 {
    position: absolute;
    top: 20%;
  }

  .mealcompass__screen-arrow--8 {
    display: block;
    position: absolute;
    transform: scale(0.55);
    left: 48%;
    top: -56%;
  }

  .mealcompass__screen-container--13 {
    position: absolute;
    right: -130%;
    top: -70%;
  }

  .mealcompass__screen-arrow--9 {
    display: block;
    position: absolute;
    transform: scale(0.7);
    top: 75.5%;
    left: 65%;
    z-index: 1;
  }

  .mealcompass__functionality--6 {
    position: absolute;
    width: 250px;
    top: 20%;
    left: 110%;
  }

  .mealcompass__screen--12 {
    grid-column: 1;
    grid-row: 2;
  }

  .mealcompass__screen--13 {
    grid-column: 1;
    grid-row: 3;
  }

  .mealcompass__prototype {
    margin-top: 100px;
  }

  .mealcompass__tryIt {
    position: absolute;
    right: -60%;
    top: -30%;
  }
}

@media only screen and (min-width: 1200px) {
  .plantwsie__style-guide-explanation {
    gap: 0;
  }

  .lingo__solution2--1 {
    grid-column: 3;
    margin: 0;
    margin-bottom: 2rem;
  }

  .plantwise__usability-arrow--M--2 {
    left: 68%;
  }

  .plantwise__screen-explanation--3 {
    right: 11rem;
  }

  .plantwise__deco-cloud--3 {
    right: 0%;
  }

  .plantwise__screen-explanation--7 {
    left: 16rem;
  }

  .plantwise__screen-explanation--12 {
    left: 5rem;
  }

  /* LINGOSHELF */

  .lingo__functionality--1 {
    top: 37%;
    left: -2%;
  }

  .lingo__functionality--2 {
    top: -18%;
    left: 47%;
  }

  .lingo__functionality--3 {
    right: 0%;
    top: 34%;
  }

  .lingo__functionality--4 {
    top: -12%;
    left: 45%;
  }

  .lingo__functionality--5 {
    bottom: -24%;
    right: 23.5%;
  }

  .lingo__functionality--6 {
    right: 4%;
  }

  .lingo__functionality--7 {
    top: -16%;
  }

  .lingo__functionality--8 {
    bottom: -20%;
    left: 28.5%;
  }

  .lingo__functionality--9 {
    top: -20%;
    right: 17.5%;
  }

  .lingo__functionality--10 {
    bottom: 17%;
    right: 4%;
  }

  .lingo__caption-arrow--1 {
    left: 9%;
  }

  .lingo__caption-arrow--2 {
    top: -4%;
  }

  .lingo__caption-arrow--3 {
    right: 12.5%;
  }

  .lingo__caption-arrow--4 {
    top: -3%;
  }

  .lingo__caption-arrow--5 {
    bottom: -6%;
  }

  .lingo__caption-arrow--7 {
    top: -3%;
  }

  .lingo__caption-arrow--8 {
    bottom: -6%;
  }

  .lingo__caption-arrow--9 {
    top: -7%;
  }

  /* MEAL COMPASS */

  .mealcompass__cotainer-mockups {
    margin-bottom: 650px;
  }

  .mealcompass__usability-testing-container {
    grid-template-columns: 200px 200px;
    column-gap: 25rem;
  }

  .mealcompass__usability-problem-arrow--1 {
    transform: scale(0.7);
    top: -4%;
    right: -24%;
  }

  .mealcompass__usability-text--1 {
    top: 0%;
    right: -145%;
  }

  .mealcompass__usability-solution-arrow--1 {
    transform: scale(0.7);
    top: 33%;
    right: -20%;
  }

  .mealcompass__usability-text--2 {
    right: -140%;
    top: 35%;
  }

  .mealcompass__usability-problem-arrow--2 {
    transform: scale(0.7);
    top: 5%;
    right: -24%;
  }

  .mealcompass__usability-text--3 {
    top: 8%;
    right: -143%;
  }

  .mealcompass__usability-solution-arrow--2 {
    transform: scale(0.7);
    top: 20%;
    right: -20%;
  }

  .mealcompass__usability-text--4 {
    top: 20%;
    right: -145%;
  }

  .mealcompass__usability-problem-arrow--3 {
    transform: scale(0.7);
    top: 25%;
    right: -20%;
  }

  .mealcompass__usability-text--5 {
    top: 15%;
    right: -145%;
  }

  .mealcompass__usability-solution-arrow--3 {
    transform: scale(0.7);
    bottom: 0%;
    right: -35%;
  }

  .mealcompass__usability-text--6 {
    top: 28%;
    right: -143%;
  }

  .mealcompass__usability-img {
    width: 200px;
  }

  .mealcompass__usability-text {
    font-size: 14px;
    max-width: 250px;
  }

  /* MEAL COMPASS STYLE GUIDE */

  .mealcompas__typography {
    grid-template-columns: 200px 200px;
    justify-content: start;
    row-gap: 0;
    padding-left: 0;
  }

  .mealcompass__icons {
    grid-template-columns: 50px 50px 50px 50px 50px 50px;
    justify-content: start;
  }

  .mealcompass__categories {
    grid-template-columns: 80px 80px 80px 80px 80px;
    row-gap: 1rem;
    column-gap: 1rem;
    margin-top: 4rem;
    justify-content: start;
  }

  /* MEAL COMPASS FINAL SCREENS */

  .mealcompass__screen--5--S {
    display: none;
  }

  .mealcompass__screen--5--L {
    display: block;
    height: 490px;
  }

  .mealcompass__screen-container--5 {
    right: -75%;
  }

  .mealcompass__screen-arrow--4 {
    left: -38%;
  }

  .mealcompass__functionality--3 {
    left: -60%;
  }

  .mealcompass__screens--2 {
    justify-content: start;
    margin-left: 80px;
  }
}

/* ----------------------------------------------------------
  7.3 X-LARGE DEVICES (1440px and larger)
--------------------------------------------------------------*/
@media only screen and (min-width: 1440px) {
  .hero--el1--M {
    display: none;
  }

  .hero--el1--L {
    display: block;
  }

  .hero--el2 {
    top: 48vh;
    left: 2vh;
  }

  .hero--el3 {
    top: -10vh;
    right: -15vh;
  }

  .hero--el4 {
    top: 40vh;
    right: 5vh;
  }

  #about::before {
    width: 90%;
  }

  .back-to-top {
    position: fixed;
    bottom: 40px;
    right: 80px;
  }

  .lingoshelf__tryIt {
    position: absolute;
    margin: 0;
    right: 25%;
  }

  .plantwise__tryIt {
    bottom: -17%;
    right: 20%;
  }

  /* --------------------------------------------------
    PLANTWISE
  ----------------------------------------------------*/

  .plantwise__background--light-green::before {
    height: 145%;
    top: -45%;
  }

  .background__dark-green--gradient::before {
    height: 114%;
  }

  .plantwise__user-research-deco-L--1 {
    display: block;
    position: absolute;
    transform: scale(0.8);
    z-index: -500;
    top: -50%;
    left: -14%;
  }

  .plantwise__user-research-deco-L--2 {
    display: block;
    position: absolute;
    z-index: -500;
    top: 30%;
    right: -10%;
  }

  .plantwise__user-research-deco-L--3 {
    display: block;
    position: absolute;
    transform: rotate(-60deg);
    z-index: -500;
    left: -40%;
    top: -5%;
  }

  .plantwise__user-research-deco-L--4 {
    display: block;
    position: absolute;
    z-index: -500;
    top: -50%;
    right: -40%;
  }

  .plantwise__user-research-deco-L--5 {
    display: block;
    position: absolute;
    transform: rotate(-40deg);
    z-index: -500;
    bottom: -35%;
    left: 37%;
  }

  .plantwise__mockup--1 {
    width: 550px;
  }

  .container__plantwise-mockup--1 {
    max-width: 1500px;
    margin: 0 auto;
  }

  /* PLANTWISE USER FLOW */

  .plantwise__tree-card--1 {
    display: block;
    position: absolute;
    z-index: -500;
    transform: scale(0.8);
    right: 11%;
  }

  .plantwise__tree-card--2 {
    display: block;
    position: absolute;
    z-index: -400;
    transform: scale(0.8);
    right: -4%;
    top: 11%;
  }

  /*  PLANTWISE USABILITY TESTING */

  .plantwise__background--dark-green::before {
    border-radius: 0 350px 0 0;
    height: 115%;
  }

  .plantwise__background--leaves {
    background-image: url(../img/plantwise/plantwise__background--leaves.svg);
    background-size: 83%;
    background-position: top 0px left 150px;
    background-repeat: no-repeat;
    z-index: -800;
  }

  .plantwise__usability-arrow--L--1 {
    display: block;
    position: absolute;
    right: -150%;
    top: -170%;
  }

  .plantwise__tree-card--3 {
    display: block;
    position: absolute;
    right: -38%;
    bottom: -82%;
  }

  /* PLANTWISE STYLE GUIDE */

  .plantwsie__media-scroller--color {
    margin-top: 0;
  }

  /* PLANTWISE SCREEN MOCKUPS */

  .plantwise__screen-mockup-container--1 {
    margin-top: -12%;
  }

  .plantwise__screen-mockup--1 {
    justify-content: end;
  }

  .plantwise__screen-mockup--3 {
    margin-right: 0rem;
    margin-top: -10rem;
  }

  .plantwise__screen-mockup--6 {
    justify-content: end;
  }

  .plantwise__screen-mockup--7 {
    margin-right: 0rem;
    margin-top: -13rem;
  }

  .plantwise__screen-mockup--9 {
    margin-right: 0rem;
  }

  .plantwise__screen-mockup--10 {
    margin-top: -10%;
  }

  .plantwise__screen-mockup--11 {
    justify-content: end;
    margin-bottom: 5rem;
  }

  .plantwise__screen-mockup--12 {
    margin-left: 33%;
  }

  .plantwise__screen-mockup--13 {
    margin-left: 55%;
    margin-bottom: 10rem;
  }

  .plantwise__screen-explanation--1 {
    position: absolute;
    top: 30%;
    left: 12%;
  }

  .plantwise__screen-explanation--3 {
    right: 6rem;
  }

  .plantwise__screen-explanation--4 {
    top: -17%;
    left: -61%;
  }

  .plantwise__screen-explanation--6 {
    top: -20%;
    right: -10%;
  }

  .plantwise__screen-explanation--7 {
    top: 65%;
    left: 23%;
  }

  .plantwise__screen-explanation--8 {
    top: 25%;
  }

  .plantwise__screen-explanation--9 {
    top: 70%;
    right: 10%;
  }

  .plantwise__screen-explanation--10 {
    top: 30%;
  }

  .plantwise__screen-explanation--11 {
    position: absolute;
    top: 35%;
    left: 11%;
  }

  .plantwise__screen-explanation--12 {
    left: 1rem;
  }

  .plantwise__screen-explanation--13 {
    top: 110%;
    right: -5%;
  }

  .plantwise__prototype {
    margin-top: 23rem;
  }

  /* --------------------------------------------------
    LINGOSHELF
  --------------------------------------------------- */

  /* LINGOSHELF FINAL SCREEN MOCKUPS */

  .lingo__screen-mockups {
    width: 90%;
  }

  .lingo__caption {
    max-width: 200px;
    font-size: 1em;
  }

  .lingo__screens {
    margin-top: 8em;
  }

  .lingo__caption-arrow--1 {
    top: 68%;
    left: -1%;
  }

  .lingo__functionality--1 {
    top: 47%;
    left: -14%;
  }

  .lingo__caption-arrow--2 {
    top: -2%;
    left: 39%;
  }

  .lingo__functionality--2 {
    max-width: 310px;
    top: -11%;
    left: 43%;
  }

  .lingo__caption-arrow--3 {
    right: 3%;
    top: 30%;
  }

  .lingo__functionality--3 {
    max-width: 190px;
    right: -13%;
    top: 36%;
  }

  .lingo__caption-arrow--4 {
    top: -1%;
    left: 41%;
  }

  .lingo__functionality--4 {
    max-width: 300px;
    top: -11%;
    left: 43%;
  }

  .lingo__caption-arrow--5 {
    bottom: -4%;
    right: 37%;
  }

  .lingo__functionality--5 {
    bottom: -16%;
    right: 19%;
  }

  .lingo__caption-arrow--6 {
    top: 56%;
    right: 6%;
  }

  .lingo__functionality--6 {
    max-width: 190px;
    top: 60%;
    right: -8%;
  }

  .lingo__caption-arrow--7 {
    top: 0%;
    left: 26%;
  }

  .lingo__functionality--7 {
    top: -15%;
    left: 21%;
  }

  .lingo__caption-arrow--8 {
    bottom: -4%;
    left: 19%;
  }

  .lingo__functionality--8 {
    max-width: 250px;
    bottom: -17%;
    left: 22%;
  }

  .lingo__caption-arrow--9 {
    top: -4%;
    right: 38%;
  }

  .lingo__functionality--9 {
    max-width: 300px;
    top: -17%;
    right: 12%;
  }

  .lingo__caption-arrow--10 {
    bottom: 12%;
    right: 6%;
  }

  .lingo__functionality--10 {
    max-width: 170px;
    bottom: 13%;
    right: -7%;
  }

  /* -------------------------------------------------------
   MEAL COMPASS
  ------------------------------------------------------- */

  .mealcompass__background--light-orange::before {
    height: 143%;
    top: -43%;
  }

  /* MEAL COMPASS MVP */

  .mealcompass__orange-box {
    height: 140px;
    width: 100%;
    right: -48px;
  }

  .mealcompass__mvp-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* MEAL COMPASS USABILITY TESTING */

  .mealcompass__cotainer-mockups {
    margin-bottom: 450px;
  }

  .mealcompass__mockup--2 {
    top: 50%;
  }

  .mealcompass__yellow-background-box {
    height: 550px;
    top: 20%;
  }

  /* MEAL COMPASS USABILITY TESTING */

  /* .mealcompass__usability-testing {
    margin-top: 10rem;
  } */

  /* MEALCOMPASS FINAL SCREENS */

  .mealcompass__cloud-container {
    position: relative;
    overflow-x: hidden;
  }

  .mealcompass__deco--cloud--1 {
    display: block;
    position: absolute;
    top: 17%;
    left: -10%;
    transform: scale(0.9);
  }

  .mealcompass__deco--cloud--2 {
    display: block;
    position: absolute;
    top: 23%;
    right: -15%;
    transform: rotate(10deg);
  }

  .mealcompass__deco--cloud--3 {
    display: block;
    position: absolute;
    top: 50%;
    left: -16%;
    /* transform: scale(0.8); */
    transform: rotate(20deg);
  }

  .mealcompass__deco--cloud--4 {
    display: block;
    position: absolute;
    top: 69%;
    right: -15%;
    transform: scale(0.8);
  }

  .mealcompass__deco--cloud--5 {
    display: block;
    position: absolute;
    top: 89%;
    left: -10%;
    transform: rotate(10deg);
  }
}

/* ----------------------------------------------------------
  7.4 XX-LARGE DEVICES (1920px and larger)
--------------------------------------------------------------*/
@media only screen and (min-width: 1920px) {
  .hero--el2 {
    top: 50vh;
    left: 2vh;
  }

  .hero--el3 {
    top: 3vh;
    right: -15vh;
  }

  .hero--el4 {
    transform: scale(1.7);
    top: 52vh;
    right: 4vh;
  }

  #about::before {
    width: 83%;
  }

  /* PLANTWISE */

  .plantwise__background--dark-green::before {
    border-radius: 0 400px 0 0;
    height: 120%;
  }
}
