:root {
  --color-resp-350-xxl: #94b49f;
  --color-resp-350-xl: #ecb390;
  --color-resp-350-l: #fa7070;
  --color-resp-350-m: #7077a1;
  --color-resp-350-s: #f0ebe3;
  --color-resp-350-xs: #9e9ba4;
  --color-background: #edf0f3;
  --color-test: #afa376;
}
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: content-box;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--color-primary-400);
}

html {
  font-family: "cholla-sans", sans-serif;
  font-weight: 400;
}
body {
  min-height: 100vh;
  margin: 0.3rem;
}

.box__layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 0.3rem;
}

.box__layout-1 {
  background-color: var(--color-background);
  grid-column: 1 / 13;
  grid-row: 1 / 8;
}

.box__layout-2 {
  background-color: var(--color-background);
  grid-column: 1 / 13;
  grid-row: 8 / 14;
}

.box__layout-3 {
  background-color: var(--color-background);
  grid-column: 1 / 13;
  grid-row: 14 / 19;
}

.box__layout-4 {
  background-color: var(--color-background);
  grid-column: 1 / 13;
  grid-row: 23 / 27;
}

.box__layout-5 {
  background-color: var(--color-background);
  grid-column: 1 / 7;
  grid-row: 19 / 23;
}

.box__layout-6 {
  background-color: var(--color-background);
  grid-column: 7 / 13;
  grid-row: 19 / 23;
}

.box__logo {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 100%;
}
.logo {
  grid-column: 2 / 7;
  grid-row: 2 / -1;
  padding: 1rem;
  width: 5rem;
}

.box__logo .role {
  font-size: 0.7rem;
  width: 5rem;
}

#mobile-menu {
  position: fixed;
  top: 8rem;
  left: 0;
  height: calc(100vh - 8rem);
  width: 100%;
  background-color: var(--color-background);
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 750;
}

#mobile-menu.open {
  display: flex;
}

#mobile-menu nav {
  height: 20rem;
  width: 90%;
  margin: 1rem auto;
}

#mobile-menu .nav-items a {
  font-size: 1.75rem;
  color: var(--color-resp-350-xs);
}

#mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border: none;
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  background-color: transparent;
  padding: 1rem;
  grid-column: 10 / 13;
  grid-row: 2/4;
}

#mobile-menu-btn span {
  width: 2.25rem;
  height: 0.2rem;
  background-color: #000;
  z-index: 100;
}

.nav-items {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}
.nav-items li {
  margin: 0 2rem;
}

.box__about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr min-content 1rem 1fr 4rem 4rem;
  gap: 1.5rem;
  padding: 1rem;
}

.box__about--h1 {
  padding-left: 2rem;
  padding-top: 5rem;
  padding-right: 2rem;
  grid-row: 1 / 3;
  grid-column: 1 /4;
  font-size: 2.8rem;
  font-weight: 300;
}

.box__about--h2 {
  padding-left: 2rem;
  padding-right: 3rem;
  grid-row: 3 / 5;
  grid-column: 1 /4;
  font-weight: 100;
  line-height: 1.4;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box__about--link {
  align-self: start;
  justify-self: start;
  padding-left: 2rem;
  padding-right: 2rem;
  grid-row: 5 /6;
  grid-column: 1 / 4;
}

.link--email {
  font-weight: 400;
  color: var(--color-resp-350-xxl);
  -webkit-transition: color 0.5s 0.25s;
  transition: color 0.5s 0.25s;
  overflow: hidden;
  font-size: 2rem;
}

.link--email:hover {
  -webkit-transition: none;
  transition: none;
  color: transparent;
}

.link--email::before {
  content: "";
  width: 100%;
  height: 6px;
  margin: -3px 0 0 0;
  background: var(--color-resp-350-xxl);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.link--email:hover::before {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.link--email span {
  position: absolute;
  height: 50%;
  width: 100%;
  left: 2rem;
  top: 0;
  overflow: hidden;
}

.link--email span::before {
  content: attr(data-letters);
  color: var(--color-resp-350-xxl);
  position: absolute;
  left: 0;
  width: 100%;
  color: var(--color-resp-350-xxl);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.link--email span:nth-child(2) {
  top: 50%;
}

.link--email span:first-child::before {
  top: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.link--email span:nth-child(2)::before {
  bottom: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.link--email:hover span::before {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.pattern2 {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5) 1px,
    transparent 1px,
    transparent 6px
  );
  background-size: 100% 100%;
}
.footer__about {
  display: none;
}
.footer__follow {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem;
  opacity: 0.2;
}

.box__last-work,
.box__working-on {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(7, 1fr);
  width: 100%;
  gap: 1.5rem;
  position: relative;
}

.link {
  outline: none;
  text-decoration: none;
  position: relative;
  font-size: 1.5rem;
  color: #9e9ba4;
  display: inline-block;
}

.link--last-work,
.link--working-on {
  grid-row: 4 / 5;
  font-weight: 700;
  font-size: 4em;
  padding: 0 10px 20px;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 400;
}

.link--last-work:hover,
.link--working-on:hover {
  color: #1e1a1b;
}

.link--last-work::before,
.link--working-on::before {
  content: "";
  position: absolute;
  height: 36px;
  width: 60%;
  top: 50%;
  margin-top: -18px;
  left: 20%;
  z-index: -1;
  background: var(--color-resp-350-xxl);
  -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(0, 1, 1);
  transform: rotate3d(0, 0, 1, 45deg) scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.link--last-work:hover::before,
.link--working-on:hover::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
}

.span--last-work,
.span--working-on {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.link--last-work .span--last-work,
.link--working-on .span--working-on {
  font-size: 35%;
  font-weight: 400;
  position: absolute;
  left: 14rem;
  color: var(--color-resp-350-m);
  bottom: -1rem;
  opacity: 0;
  -webkit-transform: translate3d(-10px, -10px, 0);
  transform: translate3d(-10px, -10px, 0);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

.link--last-work:hover span,
.link--working-on:hover span {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.triangle-1 {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 400px;
  left: 200px;
  opacity: 0.3;
}
.triangle-2 {
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50px;
  left: 150px;
  opacity: 0.3;
}

.float {
  -webkit-animation-name: Floating;
  -webkit-animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
}

.float-2 {
  -webkit-animation-name: Floating-2;
  -webkit-animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
}

@-webkit-keyframes Floating {
  from {
    -webkit-transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 50px);
  }
  to {
    -webkit-transform: translate(0, -0px);
  }
}

@-webkit-keyframes Floating-2 {
  from {
    -webkit-transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 80px);
  }
  to {
    -webkit-transform: translate(0, -0px);
  }
}

.spin-1 {
  -webkit-animation-name: Spinning;
  -webkit-animation-duration: 12s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
}

.spin-2 {
  -webkit-animation-name: Spinning;
  -webkit-animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
}

@-webkit-keyframes Spinning {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

.blob-1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22rem;
  height: 22rem;
  border: 0.5px solid var(--color-resp-350-xs);
  border-radius: 51% 49% 39% 61% / 53% 44% 56% 47%;
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
  z-index: 20;
  opacity: 0.5;
}

@keyframes animate {
  0% {
    border-radius: 44% 56% 30% 70% / 58% 51% 49% 42%;
  }
  25% {
    border-radius: 61% 39% 37% 63% / 48% 19% 81% 52%;
  }

  50% {
    border-radius: 28% 72% 33% 67% / 65% 33% 67% 35%;
  }

  75% {
    border-radius: 36% 64% 48% 52% / 59% 39% 61% 41%;
  }

  100% {
    border-radius: 44% 56% 30% 70% / 58% 51% 49% 42%;
  }
}

.blob-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22rem;
  height: 22rem;
  border: 0.5px solid var(--color-resp-350-xs);
  border-radius: 36% 64% 49% 51% / 59% 34% 66% 41%;
  animation: animate-2 8s ease-in-out infinite;
  transition: all 1s ease-in-out;
  z-index: 20;
  opacity: 0.5;
}

@keyframes animate-2 {
  0% {
    border-radius: 44% 56% 70% 30% / 50% 41% 59% 50%;
  }
  25% {
    border-radius: 34% 66% 78% 22% / 58% 54% 46% 42%;
  }

  50% {
    border-radius: 42% 58% 71% 29% / 64% 65% 35% 36%;
  }

  75% {
    border-radius: 33% 67% 52% 48% / 64% 56% 44% 36%;
  }

  100% {
    border-radius: 44% 56% 70% 30% / 50% 41% 59% 50%;
  }
}

.blob-3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18rem;
  height: 18rem;
  border: 0.5px solid var(--color-resp-350-xs);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: animate-3 10s ease-in-out infinite;
  transition: all 1s ease-in-out;
  z-index: 20;
  opacity: 0.5;
}

@keyframes animate-3 {
  0% {
    border-radius: 24% 76% 62% 38% / 30% 38% 62% 70%;
  }
  25% {
    border-radius: 24% 76% 62% 38% / 30% 42% 58% 70%;
  }

  50% {
    border-radius: 34% 66% 55% 45% / 41% 42% 58% 59%;
  }

  75% {
    border-radius: 34% 66% 37% 63% / 49% 32% 68% 51%;
  }

  100% {
    border-radius: 24% 76% 62% 38% / 30% 38% 62% 70%;
  }
}

.blob-4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18rem;
  height: 18rem;
  border: 0.5px solid var(--color-resp-350-xs);
  border-radius: 20% 80% 8% 92% / 87% 25% 75% 13%;
  animation: animate-4 6s ease-in-out infinite;
  transition: all 1s ease-in-out;
  z-index: 20;
  opacity: 0.5;
}

@keyframes animate-4 {
  0% {
    border-radius: 13% 87% 29% 71% / 76% 25% 75% 24%;
  }
  25% {
    border-radius: 24% 76% 62% 38% / 30% 42% 58% 70%;
  }

  50% {
    border-radius: 34% 66% 55% 45% / 41% 42% 58% 59%;
  }

  75% {
    border-radius: 34% 66% 37% 63% / 49% 32% 68% 51%;
  }

  100% {
    border-radius: 13% 87% 29% 71% / 76% 25% 75% 24%;
  }
}

.carl-box {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}

.button-up {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-resp-350-xs);
  overflow: hidden;
  grid-row: 3 / 4;
  font-size: 1.7rem;
  text-align: center;
}
.arrow {
  display: none;
}

.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  width: 80%;
  padding: 1.3rem;
  min-height: 250px;
  position: fixed;
  top: 50%;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  z-index: 701;
  left: 5%;
  transform: translate(0%, -50%);
  animation: fadeIn 0.5s ease, fadeOut 0.4s ease;
}

.modal .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

.modal p {
  font-size: 1.5rem;
  color: #777;
  margin: 0.4rem 0 0.2rem;
  font-weight: 200;
}

button {
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  font-family: inherit;
  font-weight: 700;
  background-color: var(--color-resp-350-xxl);
  color: var(--color-resp-350-xs);
  border-radius: 5px;
  text-align: center;
  font-size: 1em;
}

.btn-extra {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  background-color: transparent;
  color: var(--color-resp-350-xs);
  text-align: center;
  font-size: 1rem;
}

.btn-close {
  transform: translate(10px, -42px);
  padding: 0.5rem 0.6rem;
  background: #eee;
  border-radius: 50%;
}

.email__link {
  text-decoration: underline;
  color: var(--color-resp-350-xxl);
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 700;
  animation: fadeIn 0.4s ease;
  animation: fadeOut 0.4s ease;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}

.iso-box {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}

.button-down {
  display: inline-block;
  color: var(--color-resp-350-xs);
  overflow: hidden;
  grid-row: 3 / 4;
  flex-direction: column-reverse;
  font-size: 1.7rem;
  text-align: center;
}

.follow-box {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.6rem;
  color: #000000;
  padding: 3rem;
}

.follow-box::before,
.follow-box::after {
  content: "";
  height: 1px;
  display: block;
  background-color: black;
}

.follow-h1 {
  display: flex;
  justify-content: center;
  padding: 1rem;
  font-weight: 300;
}

.follow-icons-box {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
  padding-bottom: 3rem;
  position: relative;
}

.follow-icons a {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  position: relative;
}

.circle-follow a::before,
.circle-follow a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-resp-350-xxl);
  border-radius: 50%;
  content: "";
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
  -moz-transform: translateX(-50%) translateY(-50%) scale(0.2);
  transform: translateX(-50%) translateY(-50%) scale(0.2);
}

.circle-follow a::after {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 5px;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
  -moz-transform: translateX(-50%) translateY(-50%) scale(0.8);
  transform: translateX(-50%) translateY(-50%) scale(0.8);
}

.circle-follow a:hover::before,
.circle-follow a:hover::after,
.circle-follow a:focus::before,
.circle-follow a:focus::after {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
}

@media (min-width: 48rem) {
  body {
    overflow: hidden;
  }

  .box__layout {
    height: 100vh;
    gap: 0.3rem;
  }
  .box__layout-1 {
    background-color: var(-color-background);
    grid-column: 1 / 8;
  }

  .box__layout-2 {
    background-color: var(-color-background);
    grid-column: 8 / 13;
    grid-row: 1 / 5;
  }

  .box__layout-3 {
    background-color: var(-color-background);
    grid-column: 10 / 13;
    grid-row: 8 / 5;
  }

  .box__layout-4 {
    background-color: var(-color-background);
    grid-column: 8 / 10;
    grid-row: 6 / 8;
  }
  .box__layout-5 {
    background-color: var(-color-background);
    grid-column: 8 / 9;
    grid-row: 5 / 5;
  }
  .box__layout-6 {
    background-color: var(-color-background);
    grid-column: 9 / 10;
    grid-row: 5 / 5;
  }

  .box__logo {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
  }
  .logo {
    padding: 1rem;
    width: 8.5rem;
  }

  .box__logo .role {
    font-size: 1.1rem;
    padding: 0.3rem;
    width: 8rem;
  }

  #mobile-menu-btn {
    display: none;
  }

  #mobile-menu {
    display: none;
  }

  #mobile-menu.open {
    display: none;
  }

  .box__about {
    grid-template-rows: 1fr min-content 1rem 1fr 1fr;
    width: 100%;
  }

  .box__about--h1 {
    grid-row: 1 / 4;
    padding-left: 5rem;
    padding-top: 3rem;
    padding-right: 6rem;
    font-size: 4rem;
  }

  .box__about--h2 {
    padding-left: 5rem;
    padding-right: 6rem;
  }

  .box__about--link {
    padding-left: 5rem;
    padding-right: 6rem;
  }

  .link {
    font-size: 2rem;
  }

  .link--email {
    font-weight: 400;
    -webkit-transition: color 0.5s 0.25s;
    transition: color 0.5s 0.25s;
    overflow: hidden;
    font-size: 2rem;
  }

  .link--email:hover {
    -webkit-transition: none;
    transition: none;
    color: transparent;
  }

  .link--email::before {
    content: "";
    width: 100%;
    height: 6px;
    margin: -3px 0 0 0;
    background: var(--color-resp-350-xxl);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  }

  .link--email:hover::before {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  .link--email span {
    position: absolute;
    height: 50%;
    width: 100%;
    left: 5rem;
    top: 0;
    overflow: hidden;
  }

  .link--email span::before {
    content: attr(data-letters);
    color: var(--color-resp-350-xxl);
    position: absolute;
    left: 0;
    width: 100%;
    color: var(--color-resp-350-xxl);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
  }

  .link--email span:nth-child(2) {
    top: 50%;
  }

  .link--email span:first-child::before {
    top: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  .link--email span:nth-child(2)::before {
    bottom: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  .link--email:hover span::before {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  }

  .box__footer {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__about {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: end;
  }

  .footer__about li {
    color: var(--color-resp-350-xs);
    opacity: 0.2;
  }

  .footer__follow {
    display: none;
  }

  .box__last-work {
    grid-template-rows: repeat(5, 1fr);
  }

  .link--last-work {
    grid-row: 3 / 4;
    z-index: 300;
  }

  .triangle-1 {
    top: 400px;
    left: 200px;
  }
  .triangle-2 {
    top: 50px;
    left: 550px;
  }

  .box__working-on {
    grid-template-rows: repeat(4, 1fr);
    position: relative;
  }

  .link--working-on {
    grid-row: 3 / 3;
  }

  .link--working-on {
    font-size: 3rem;
  }
  .link--last-work {
    font-size: 4rem;
  }

  .link--working-on .span--working-on {
    left: 8rem;
  }

  .blob-3 {
    top: 65%;
    width: 14rem;
    height: 14rem;
  }

  .blob-4 {
    width: 14rem;
    height: 14rem;
  }

  .carl-box {
    grid-template-rows: repeat(3, 1fr);
    padding-top: 0.5rem;
  }

  .button-up {
    display: inline-block;
    height: 2em;
    grid-row: 2 / 3;
    font-size: 1.2rem;
  }

  .button-up.expand-up > * {
    display: block;
    height: 100%;
    padding: 0.5em;
    text-align: center;
    transition: margin 1s;
  }

  .button-up.expand-up:hover > * {
    margin-top: -1.6em;
  }

  .box__modal {
    grid-column: 5 / 9;
  }
  .modal {
    width: 70%;
    left: 15%;
  }

  .btn-extra {
    color: var(--color-resp-350-xxl);
  }

  .iso-box {
    grid-template-rows: repeat(3, 1fr);
    padding-top: 1rem;
  }

  .button-down {
    display: inline-block;
    height: 2em;
    grid-row: 2 / 3;
    display: flex;
    font-size: 1.2rem;
  }

  .button-down.expand-down > * {
    display: block;
    height: 100%;
    padding: 0.7em;
    text-align: center;
    transition: margin 1s;
  }

  .button-down.expand-down:hover > * {
    margin-bottom: -1.6em;
  }

  .follow-box {
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.6rem;
    color: #000000;
    padding: 3rem;
  }

  .follow-box::before,
  .follow-box::after {
    content: "";
    height: 1px;
    display: block;
    background-color: black;
  }

  .follow-h1 {
    display: flex;
    justify-content: center;
    padding: 1rem;
    font-weight: 300;
  }

  .follow-icons-box {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    padding-bottom: 1rem;
    position: relative;
  }

  .follow-icons a {
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    position: relative;
  }
}
