body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 100;
  background-color: #f3f1ef;
}

html {
  font-size: 16px;
}
* {
  margin: 0;
  padding: 0;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #e32db0;
  outline-offset: 4px;
  transition: outline 0.2s ease;
}

.links-container a:focus {
  outline: 3px solid #e32db0;
}
@media (prefers-reduced-motion: no-preference) {
  .item1,
  .item2,
  .item3 {
    transition: opacity 1.5s ease, transform 1.5s ease;
  }
}
/*//////////////////////////////////////////////////////////////////*/
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
label[for="menu-icon"] {
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
}
label span {
  display: block;
  width: 20px;
  height: 20px;
  /* your hamburger icon styling here */
}
.menu-icon:checked + label,
.menu-icon:not(:checked) + label {
  position: fixed;
  top: 63px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 100;
}
.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  z-index: 200;
  top: 0;
  left: 0;
  border-top: 2px solid #ececee;
  border-bottom: 2px solid #ececee;
  transition: border-width 100ms 1500ms ease,
    top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
    height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 200ms ease, transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after {
  position: absolute;
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  z-index: 200;
  top: 10px;
  right: 4px;
  background-color: #ececee;
  margin-top: -1px;
  transition: width 100ms 1750ms ease, right 100ms 1750ms ease,
    margin-top 100ms ease, transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:before {
  top: 10px;
  transform: rotate(45deg);
  height: 2px;
  background-color: #ececee;
  border-width: 0;
  transition: border-width 100ms 340ms ease,
    top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 200ms 500ms ease,
    transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after {
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease, right 100ms ease, margin-top 100ms 500ms ease,
    transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* Default nav (for all browsers) */
.nav {
  position: fixed;
  top: 33px;
  right: 50px;
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  will-change: border-radius, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
  background-color: #e49551;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 250ms 1100ms ease,
    width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
    height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
}

/* Fade-in animation for Safari */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari-only styles */
@supports (-webkit-appearance: none) and (stroke-color: transparent) {
  .nav {
    animation: fade-in 1s ease forwards !important; /* fade-in instead of border-transform */
    border-radius: 50%; /* keep nav rounded */
  }
}

/* Keep your existing keyframes for other browsers */
@keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
    right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 700ms ease,
    width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
    height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}
.nav ul li {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}
.nav ul li:nth-child(1) {
  transition-delay: 250ms;
}
.nav ul li:nth-child(2) {
  transition-delay: 200ms;
}
.nav ul li:nth-child(3) {
  transition-delay: 150ms;
}
.nav ul li:nth-child(4) {
  transition-delay: 100ms;
}
.nav ul li:nth-child(5) {
  transition-delay: 50ms;
}
.nav ul li a {
  font-size: 9vh;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #ececee;
  text-decoration: none; /* ← prevent underline */
  transition: all 250ms linear;
}
.nav ul li a:hover {
  text-decoration: none;
  color: #b514a5;
}
.nav ul li a:after {
  display: block;
  position: absolute;
  top: 50%;
  content: "";
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  background-color: #464035;
  opacity: 0.8;
  transition: width 250ms linear;
}
.nav ul li a:hover:after {
  width: 100%;
}

.menu-icon:checked ~ .nav ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease, transform 250ms ease;
}
.menu-icon:checked ~ .nav ul li:nth-child(1) {
  transition-delay: 1400ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2) {
  transition-delay: 1480ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3) {
  transition-delay: 1560ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4) {
  transition-delay: 1640ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(5) {
  transition-delay: 1720ms;
}
.logo {
  position: absolute;
  top: 60px;
  left: 50px;
  display: block;
  z-index: 11;
  transition: all 250ms linear;
}
.logo img {
  height: 26px;
  width: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: #43411e;
}
h1 {
  font-size: 1.5em;
  font-weight: 450;
  text-align: left;
  color: #43411e;
}
h2 {
  font-weight: 300;
}
h3 {
  font-size: 1.5em;
  font-weight: 450;
  text-align: left;
  color: #43411e;
}
h4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: auto;
  font-size: 1.2em;
  font-weight: 500;
  padding: 0 5%;
  text-align: center;
}
.hero-image {
  padding-top: 0%;
  position: relative;
  display: flex;
  height: 100vh;
  background-color: #302f2f;

  background-size: contain;
  z-index: 1;
}

.bk {
  background-image: url(images/bktop2.webp);
  width: 100%;
  height: 100vh;

  background-size: cover; /* Cover the entire div */
  background-position: top; /* Center the image */
  background-repeat: no-repeat; /* Prevent tiling */
}
#bk {
  position: absolute;
  top: 0%;
  left: 0%;

  width: 100%;
  margin: 0;
  opacity: 1;
}

#moon {
  display: none;
  position: absolute;
  bottom: 40%;
  right: 25%;
  width: clamp(20rem, 40vw, 32rem);
  height: auto;
  margin: 0;
  opacity: 1;
  animation: spin 275s linear infinite;
  z-index: 10;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* Wrapper fixed by default */
#shipWrap {
  position: fixed;
  bottom: 35%;
  right: 13%;
  width: 12%;
  z-index: 50;
  transform: translate3d(0, 0, 0);
  transition: transform 1.2s ease-out, filter 1.2s ease-out;
  will-change: transform;
}

/* Spaceship image */
#spaceship {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
  transform: rotate(-20deg); /* natural tilt */
  transition: transform 0.22s ease-in;
}

#shipWrap.is-hidden {
  visibility: hidden;
  pointer-events: none;
}
/* 🔹 Idle sway (only active before trigger) */
#shipWrap.idle #spaceship {
  animation: sway 3.4s ease-in-out infinite;
}

/* Straighten */
#shipWrap.prep #spaceship {
  animation: none; /* stop swaying */
  transform: rotate(-10deg); /* straighten */
}

/* Exit */
#shipWrap.exit {
  transform: translate3d(50vw, 0, 0);
  filter: blur(8px); /* starts sharp, ends blurry */
  opacity: 0;
  transition: transform 1.5s ease-out, filter 2s ease-out, opacity 4s ease-out;
}
#shipWrap.exit #spaceship {
  transform: rotate(-20deg); /* stay straight while flying */
}

/* Keyframes */
@keyframes sway {
  0% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
#monkey {
  position: absolute;
  bottom: 45%;
  left: 0%;
  width: 43%;
  height: auto;
  margin: 0;
  z-index: 50;
  animation: sway 5.4s ease-in-out infinite;
  transform-origin: top;
}

#landing_wrapper {
  padding-top: 0em;
}
@keyframes sway {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.title {
  position: absolute;
  bottom: 10%;
  /* right: -5%; */
  left: 10%;
  width: 70%;
  margin: 0;
  overflow: hidden;
  z-index: 999;
}

#title-p-mobile2,
#title-p-mobile3,
section #title-p-mobile1 {
  display: none;
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 135.98745727539062px;
    stroke-dasharray: 135.98745727539062px;
  }
  100% {
    stroke-dashoffset: 271.97491455078125px;
    stroke-dasharray: 135.98745727539062px;
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-1 {
  animation: animate-svg-stroke-1 0.9s ease-in 0s both,
    animate-svg-fill-1 0.7s linear 0.3s both;
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 119.0673828125px;
    stroke-dasharray: 119.0673828125px;
  }
  100% {
    stroke-dashoffset: 238.134765625px;
    stroke-dasharray: 119.0673828125px;
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-2 {
  animation: animate-svg-stroke-2 0.9s ease-in 10ms both,
    animate-svg-fill-2 0.7s linear 0.35s both;
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 98.30863952636719px;
    stroke-dasharray: 98.30863952636719px;
  }
  100% {
    stroke-dashoffset: 196.61727905273438px;
    stroke-dasharray: 98.30863952636719px;
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-3 {
  animation: animate-svg-stroke-3 0.9s ease-in 20ms both,
    animate-svg-fill-3 0.7s linear 0.4s both;
}
@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 115.13406372070312px;
    stroke-dasharray: 115.13406372070312px;
  }
  100% {
    stroke-dashoffset: 230.26812744140625px;
    stroke-dasharray: 115.13406372070312px;
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-4 {
  animation: animate-svg-stroke-4 0.9s ease-in 30ms both,
    animate-svg-fill-4 0.7s linear 0.45s both;
}
@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 141.28887939453125px;
    stroke-dasharray: 141.28887939453125px;
  }
  100% {
    stroke-dashoffset: 282.5777587890625px;
    stroke-dasharray: 141.28887939453125px;
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;

    /* fill: #43411e; */
  }
}
.svg-elem-5 {
  animation: animate-svg-stroke-5 0.9s ease-in 40ms both,
    animate-svg-fill-5 0.7s linear 0.5s both;
}
@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 118.77272033691406px;
    stroke-dasharray: 118.77272033691406px;
  }
  100% {
    stroke-dashoffset: 237.54544067382812px;
    stroke-dasharray: 118.77272033691406px;
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-6 {
  animation: animate-svg-stroke-6 0.9s ease-in 50ms both,
    animate-svg-fill-6 0.7s linear 0.55s both;
}
@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 119.06758880615234px;
    stroke-dasharray: 119.06758880615234px;
  }
  100% {
    stroke-dashoffset: 238.1351776123047px;
    stroke-dasharray: 119.06758880615234px;
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-7 {
  animation: animate-svg-stroke-7 0.9s ease-in 60ms both,
    animate-svg-fill-7 0.7s linear 0.6000000000000001s both;
}
@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 135.98703002929688px;
    stroke-dasharray: 135.98703002929688px;
  }
  100% {
    stroke-dashoffset: 271.97406005859375px;
    stroke-dasharray: 135.98703002929688px;
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-8 {
  animation: animate-svg-stroke-8 0.9s ease-in 70ms both,
    animate-svg-fill-8 0.7s linear 0.65s both;
}
@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 135.9874725341797px;
    stroke-dasharray: 135.9874725341797px;
  }
  100% {
    stroke-dashoffset: 271.9749450683594px;
    stroke-dasharray: 135.9874725341797px;
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-9 {
  animation: animate-svg-stroke-9 0.9s ease-in 80ms both,
    animate-svg-fill-9 0.7s linear 0.7s both;
}
@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 83.87199401855469px;
    stroke-dasharray: 83.87199401855469px;
  }
  100% {
    stroke-dashoffset: 167.74398803710938px;
    stroke-dasharray: 83.87199401855469px;
  }
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-10 {
  animation: animate-svg-stroke-10 0.9s ease-in 90ms both,
    animate-svg-fill-10 0.7s linear 0.75s both;
}
@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 134.62933349609375px;
    stroke-dasharray: 134.62933349609375px;
  }
  100% {
    stroke-dashoffset: 269.2586669921875px;
    stroke-dasharray: 134.62933349609375px;
  }
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-11 {
  animation: animate-svg-stroke-11 0.9s ease-in 0.1s both,
    animate-svg-fill-11 0.7s linear 0.8s both;
}
@keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 115.13264465332031px;
    stroke-dasharray: 115.13264465332031px;
  }
  100% {
    stroke-dashoffset: 230.26528930664062px;
    stroke-dasharray: 115.13264465332031px;
  }
}
@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-12 {
  animation: animate-svg-stroke-12 0.9s ease-in 0.11s both,
    animate-svg-fill-12 0.7s linear 0.8500000000000001s both;
}
@keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 136.8848876953125px;
    stroke-dasharray: 136.8848876953125px;
  }
  100% {
    stroke-dashoffset: 273.769775390625px;
    stroke-dasharray: 136.8848876953125px;
  }
}
@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-13 {
  animation: animate-svg-stroke-13 0.9s ease-in 0.12s both,
    animate-svg-fill-13 0.7s linear 0.9000000000000001s both;
}
@keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 136.88487243652344px;
    stroke-dasharray: 136.88487243652344px;
  }
  100% {
    stroke-dashoffset: 273.7697448730469px;
    stroke-dasharray: 136.88487243652344px;
  }
}
@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-14 {
  animation: animate-svg-stroke-14 0.9s ease-in 0.13s both,
    animate-svg-fill-14 0.7s linear 0.95s both;
}
@keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 254.40399169921875px;
    stroke-dasharray: 254.40399169921875px;
  }
  100% {
    stroke-dashoffset: 508.8079833984375px;
    stroke-dasharray: 254.40399169921875px;
  }
}
@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-15 {
  animation: animate-svg-stroke-15 0.9s ease-in 0.14s both,
    animate-svg-fill-15 0.7s linear 1s both;
}
@keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 135.98681640625px;
    stroke-dasharray: 135.98681640625px;
  }
  100% {
    stroke-dashoffset: 271.9736328125px;
    stroke-dasharray: 135.98681640625px;
  }
}
@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-16 {
  animation: animate-svg-stroke-16 0.9s ease-in 0.15s both,
    animate-svg-fill-16 0.7s linear 1.05s both;
}
@keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 119.0668716430664px;
    stroke-dasharray: 119.0668716430664px;
  }
  100% {
    stroke-dashoffset: 238.1337432861328px;
    stroke-dasharray: 119.0668716430664px;
  }
}
@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-17 {
  animation: animate-svg-stroke-17 0.9s ease-in 0.16s both,
    animate-svg-fill-17 0.7s linear 1.1s both;
}
@keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 98.30883026123047px;
    stroke-dasharray: 98.30883026123047px;
  }
  100% {
    stroke-dashoffset: 196.61766052246094px;
    stroke-dasharray: 98.30883026123047px;
  }
}
@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-18 {
  animation: animate-svg-stroke-18 0.9s ease-in 0.17s both,
    animate-svg-fill-18 0.7s linear 1.1500000000000001s both;
}
@keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 115.13233947753906px;
    stroke-dasharray: 115.13233947753906px;
  }
  100% {
    stroke-dashoffset: 230.26467895507812px;
    stroke-dasharray: 115.13233947753906px;
  }
}
@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-19 {
  animation: animate-svg-stroke-19 0.9s ease-in 0.18s both,
    animate-svg-fill-19 0.7s linear 1.2s both;
}
@keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 141.2896270751953px;
    stroke-dasharray: 141.2896270751953px;
  }
  100% {
    stroke-dashoffset: 282.5792541503906px;
    stroke-dasharray: 141.2896270751953px;
  }
}
@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-20 {
  animation: animate-svg-stroke-20 0.9s ease-in 0.19s both,
    animate-svg-fill-20 0.7s linear 1.25s both;
}
@keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 135.98744201660156px;
    stroke-dasharray: 135.98744201660156px;
  }
  100% {
    stroke-dashoffset: 271.9748840332031px;
    stroke-dasharray: 135.98744201660156px;
  }
}
@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-21 {
  animation: animate-svg-stroke-21 0.9s ease-in 0.2s both,
    animate-svg-fill-21 0.7s linear 1.3s both;
}
@keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 98.3102798461914px;
    stroke-dasharray: 98.3102798461914px;
  }
  100% {
    stroke-dashoffset: 196.6205596923828px;
    stroke-dasharray: 98.3102798461914px;
  }
}
@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-22 {
  animation: animate-svg-stroke-22 0.9s ease-in 0.21s both,
    animate-svg-fill-22 0.7s linear 1.35s both;
}
@keyframes animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 210.69142150878906px;
    stroke-dasharray: 210.69142150878906px;
  }
  100% {
    stroke-dashoffset: 421.3828430175781px;
    stroke-dasharray: 210.69142150878906px;
  }
}
@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-23 {
  animation: animate-svg-stroke-23 0.9s ease-in 0.22s both,
    animate-svg-fill-23 0.7s linear 1.4000000000000001s both;
}
@keyframes animate-svg-stroke-24 {
  0% {
    stroke-dashoffset: 141.28823852539062px;
    stroke-dasharray: 141.28823852539062px;
  }
  100% {
    stroke-dashoffset: 282.57647705078125px;
    stroke-dasharray: 141.28823852539062px;
  }
}
@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-24 {
  animation: animate-svg-stroke-24 0.9s ease-in 0.23s both,
    animate-svg-fill-24 0.7s linear 1.4500000000000002s both;
}
@keyframes animate-svg-stroke-25 {
  0% {
    stroke-dashoffset: 203.52577209472656px;
    stroke-dasharray: 203.52577209472656px;
  }
  100% {
    stroke-dashoffset: 407.0515441894531px;
    stroke-dasharray: 203.52577209472656px;
  }
}
@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-25 {
  animation: animate-svg-stroke-25 0.9s ease-in 0.24s both,
    animate-svg-fill-25 0.7s linear 1.5000000000000002s both;
}
@keyframes animate-svg-stroke-26 {
  0% {
    stroke-dashoffset: 83.87201690673828px;
    stroke-dasharray: 83.87201690673828px;
  }
  100% {
    stroke-dashoffset: 167.74403381347656px;
    stroke-dasharray: 83.87201690673828px;
  }
}
@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-26 {
  animation: animate-svg-stroke-26 0.9s ease-in 0.25s both,
    animate-svg-fill-26 0.7s linear 1.55s both;
}
@keyframes animate-svg-stroke-27 {
  0% {
    stroke-dashoffset: 136.88523864746094px;
    stroke-dasharray: 136.88523864746094px;
  }
  100% {
    stroke-dashoffset: 273.7704772949219px;
    stroke-dasharray: 136.88523864746094px;
  }
}
@keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-27 {
  animation: animate-svg-stroke-27 0.9s ease-in 0.26s both,
    animate-svg-fill-27 0.7s linear 1.6s both;
}
@keyframes animate-svg-stroke-28 {
  0% {
    stroke-dashoffset: 90.53583526611328px;
    stroke-dasharray: 90.53583526611328px;
  }
  100% {
    stroke-dashoffset: 181.07167053222656px;
    stroke-dasharray: 90.53583526611328px;
  }
}
@keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-28 {
  animation: animate-svg-stroke-28 0.9s ease-in 0.27s both,
    animate-svg-fill-28 0.7s linear 1.6500000000000001s both;
}
@keyframes animate-svg-stroke-29 {
  0% {
    stroke-dashoffset: 136.88519287109375px;
    stroke-dasharray: 136.88519287109375px;
  }
  100% {
    stroke-dashoffset: 273.7703857421875px;
    stroke-dasharray: 136.88519287109375px;
  }
}
@keyframes animate-svg-fill-29 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-29 {
  animation: animate-svg-stroke-29 0.9s ease-in 0.28s both,
    animate-svg-fill-29 0.7s linear 1.7000000000000002s both;
}
@keyframes animate-svg-stroke-30 {
  0% {
    stroke-dashoffset: 155.9221649169922px;
    stroke-dasharray: 155.9221649169922px;
  }
  100% {
    stroke-dashoffset: 311.8443298339844px;
    stroke-dasharray: 155.9221649169922px;
  }
}
@keyframes animate-svg-fill-30 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-30 {
  animation: animate-svg-stroke-30 0.9s ease-in 0.29s both,
    animate-svg-fill-30 0.7s linear 1.7500000000000002s both;
}
@keyframes animate-svg-stroke-31 {
  0% {
    stroke-dashoffset: 258.4259338378906px;
    stroke-dasharray: 258.4259338378906px;
  }
  100% {
    stroke-dashoffset: 516.8518676757812px;
    stroke-dasharray: 258.4259338378906px;
  }
}
@keyframes animate-svg-fill-31 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #e49551;
  }
}
.svg-elem-31 {
  animation: animate-svg-stroke-31 0.9s ease-in 0.3s both,
    animate-svg-fill-31 0.7s linear 1.8s both;
}
/* section .title span:last-child {
  font-size: 1.2rem;
  text-align: left;
  animation: fade 0s ease both;
} */
section .title p {
  font-size: 2em;
  padding-top: 0.5em;
  font-weight: 300;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #f3f1ef;

  animation: byLeft 2s 0.8s ease both;
}
@keyframes byLeft {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    border-left: none;
  }
}

@-webkit-keyframes byLeft {
  0% {
    -webkit-transform: translateX(-150%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    opacity: 1;
    -webkit-filter: blur(0);
  }
}
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transform-origin: bottom right;
  transition: none;
  will-change: opacity, transform;
}
#landing_wrapper {
  margin: 0;
  margin-right: 35%;
  padding-top: 2em;
}
#landing_header {
  width: 80%;
  padding-left: 15%;
  padding-bottom: 1em;
  opacity: 1;
  line-height: 0.2;
  font-size: 2rem;
  font-weight: 500;
  color: #cfcecc;
}

#landing_header span {
  padding-bottom: 0;
}
#landing_para {
  font-size: 1.5em;
  font-weight: 300;
  padding-left: 15%;
  padding-bottom: 4em;
  line-height: 1.5;
  color: #cccfcf;
}
#landing_second_header {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 1em;
  z-index: 9;
  padding-left: 15%;
  color: #cccfcf;
}

#landing_second_header span {
  margin: 0;
  font-size: 1.2rem;
  text-align: left;
  padding-left: 1rem;
  padding-top: 0;
  font-weight: 300;
  color: #cccfcf;
}

/* #landing_quip {
  margin: 0;
  font-size: 1.2em;
  text-align: left;
  padding-left: 20rem;
  padding-bottom: 2em;
  padding-top: 0;
  font-weight: 300;
  color: #cccfcf;
} */
#landing_second_para {
  position: relative;
  font-size: 1.5em;
  font-weight: 300;
  padding-left: 15%;
  padding-bottom: 10em;
  z-index: 10;
  color: #cccfcf;
  line-height: 1.5;
}

.services {
  padding-top: 5em;
}
#vanta-canvas {
  padding-top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: clip;
  background: repeating-linear-gradient(#302f2f, #302f2f, #302f2fdf),
    repeating-linear-gradient(to right, #0556e3, #0556e3, #302f2f60);
  width: 100vw;
  position: relative;
}

.waves {
  position: relative;
  width: 100%;
  height: 45vh;
  margin-bottom: -1em;
  min-height: 6.25rem;
  max-height: 9.375rem;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@media (max-width: 768px) {
  .waves {
    height: 45vh;

    height: 3.25rem;
    min-height: 0.313rem;
  }
  h1 {
    font-size: 24px;
  }
}

.list {
  margin-top: -22em;
  display: flex;
  gap: 2em;
  padding-top: 4em;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 2em;
  justify-content: center;
  list-style: none;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  z-index: 9;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.list::-webkit-scrollbar {
  display: none;
}

.item1 {
  position: relative;
  margin-top: -2em;
  flex-shrink: 0;
  width: 26rem;
  height: 35rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 3px;
  scroll-snap-align: center;
  z-index: 1;
  transform: translateX(106%);
  opacity: 0;
  border-radius: 20px;
  background-image: url(images/interactive-visuals.webp);
  background-repeat: no-repeat;

  /* background: linear-gradient(
    -145deg,
    rgba(255, 255, 255, 0.841),
    rgba(255, 255, 255, 0.842),
    #c8c8c8ad
  ); */
}
.item1_transition {
  border-radius: 20px;
  position: relative;
  z-index: 8;
  transform: translateX(0);
  transition: 2.5s;
  opacity: 1;
}
.item2 {
  position: relative;
  margin-top: -2em;
  font-size: 1em;
  flex-shrink: 0;
  width: 26rem;
  height: 35rem;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  scroll-snap-align: center;
  z-index: 9;
  transform: translateY(0);
  opacity: 0;
  background: #fff;
}
.item2_transition {
  border-radius: 20px;
  position: relative;
  z-index: 9;
  transform: translateY(0);
  opacity: 1;
  background-image: url(images/personalized-content.webp);
  background-repeat: no-repeat;
  /* background: linear-gradient(
    -145deg,
    rgba(255, 255, 255, 0.841),
    rgba(255, 255, 255, 0.842),
    #c8c8c8ad
  ); */
}

.item3 {
  margin-top: -2em;
  font-size: 1em;
  flex-shrink: 0;
  width: 26rem;
  height: 35rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: #eef1f0ca;
  border-radius: 10px;
  scroll-snap-align: center;
  z-index: 8;
  transform: translateX(-106%);
  opacity: 0;
  border-radius: 20px;
  background-image: url(images/user-experience.webp);
  background-repeat: no-repeat;
}
.item3_transition {
  border-radius: 20px;
  position: relative;
  z-index: 8;
  transform: translateX(0);
  transition: 2.5s;

  opacity: 1;
}
.content {
  margin: 0;
  padding: 0;
  padding-top: 1em;
  padding-bottom: 2em;
}
/* .thumb2 {
  padding-bottom: 0em;
  height: 5.625rem;
  padding-top: 2em;
  margin: 0 auto;
} */
.carousal_header,
.carousal_header2 {
  text-align: left;
  padding-right: 0;
  padding-left: 5%;
  font-size: 1.2em;
  font-weight: 300;
  color: #f9f6f6;
}

.carousal_header2 {
  color: #c2bebe;
}
.carousal_para,
.carousal_para2 {
  text-align: left;
  padding-left: 5%;
  padding-right: 0;
  font-size: 1.8em;
  font-weight: 600;
  padding-top: 0.2em;
  padding-bottom: 0;
  color: #f9f6f6;
}

.carousal_para2 {
  color: #f9f6f6;
}
/* .carousal_button_wrapper {
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  font-size: 0.9em;
  margin-top: 3em;
  border-radius: 1.5rem;
  background: linear-gradient(82.3deg, #f15f79, #e98a44);
  background-size: 400%;
  color: #fff;
  border: none;
  cursor: pointer;
} */
/* .carousal_button_wrapper:hover::before {
  transform: scaleX(1);
}
.carousal_button_wrapper-content {
  position: relative;
  z-index: 1;
}
.carousal_button_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: linear-gradient(82.3deg, #02aab0, #02aab0);
  transition: all 475ms;
} */
.showcase_wrapper {
  width: 100%;
  margin: 0;
  padding-top: 5rem;
  position: relative;
}
.showcase_wrapper .monkey2 {
  width: 14%;
  position: absolute;
  right: 0;
  top: 25%;
  opacity: 0;
  margin: 0;
  animation: byRight linear forwards;
  animation-timeline: view();
  animation-range: 300px 600px;
}
@keyframes byRight {
  0% {
    transform: translateX(100%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}
.showcase_large {
  margin: 0;
  font-size: 1.7em;
  font-weight: 600;
  text-align: left;
  padding-left: 15%;
  padding-top: 0;
  line-height: 1.2;
  padding-bottom: 0.5em;
}

.showcase_large span {
  font-size: 1.2em;
  font-family: "Wallpoet", sans-serif;
}

.showcase_para {
  font-size: 1.1em;
  font-weight: 300;
  padding-left: 15%;
  padding-top: 0;
  margin-right: 25%;
  padding-bottom: 4rem;
  opacity: 1;
  text-align: justify;
  line-height: 1.5;
}
.portfolio-style {
  padding: 0;
  opacity: 0;
  clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%);
}
.scroll-byLeft2 {
  position: relative;
  overflow: hidden;
  height: auto;
  background-color: transparent;
}
.rocket-wrapper {
  position: absolute;
  left: -80px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}
.rocket-fly {
  position: absolute;
  top: 45%;
  transform: translate(-150%, -50%);
  left: 0;
  width: auto;
  opacity: 0;
  z-index: 5;
  transition: transform 2.5s ease-in-out, opacity 0.5s ease;
  pointer-events: none;
}
.space-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;

  opacity: 1;
  background-image: url(images/bg-star.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -222;
}

.portfolio-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
  margin: 0 auto;
  z-index: 2;
  opacity: 0;
  min-height: 30vh;
  width: 100%;
  padding-bottom: 5rem;
  padding-top: 5rem;
  color: #fff;
  transition: opacity 0.9s ease-out;
  background-color: #302f2fab;
  text-align: center;
}

.portfolio-header {
  padding-bottom: 0;
  margin: 0 auto;
  font-size: 3em;
  font-weight: 400;
  color: #f3f1ef;
  text-align: center;
}

.portfolio-header span {
  color: #e49551;
}
.portfolio-para {
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 1em;
  font-size: 1.4em;
  line-height: 1.7;
  font-weight: 400;
  padding-bottom: 0;
  color: #f3f1ef;
  text-align: center;
  opacity: 1;
}
.testimony_style {
  margin: 0;
  background-color: #30302f;
  padding: 0;
}
.testimony_style_quotes {
  background-image: url(images/quotes.png);
  background-repeat: no-repeat;
  background-position: top 2em right 10%;
}
.testimony_wrapper {
  padding-top: 2em;
  padding-bottom: 0em;
  width: 100%;
  text-align: left;
  line-height: 3em;
}

#testimony_para {
  padding-left: 15%;
  padding-top: 2em;
  padding-bottom: 2em;
  font-size: 2.5em;
  color: #cccfcf;
}
.t3xts {
  line-height: 1;
  word-wrap: normal;
  position: relative;
  perspective: 1000px;
  text-transform: uppercase;
}
.t3xt-5 {
  color: #e56767;
  font-size: smaller;
}
.t3xt {
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  text-transform: uppercase;
}
.t3xt-out {
  animation: text-out 0.5s ease;
}
.t3xt-in {
  animation: text-in 0.5s ease;
}
@keyframes text-out {
  to {
    transform: rotateX(90deg);
    opacity: 0;
  }
}
@keyframes text-in {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  to {
    transform: rotateX(0);
    opacity: 1;
  }
}

.example-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-left: 15%;
  padding-bottom: 3em;
}
.example-large {
  padding-left: 15%;
  font-size: 3em;
  font-weight: 500;
  padding-top: 1em;
  padding-bottom: 0.2em;
  color: #43411e;
}
.example-large span {
  font-size: 0.5em;
  color: #43411e;
  font-weight: 400;
}
.example-text {
  padding-top: 2em;
  padding-right: 1em;
  padding-bottom: 2em;
  width: 43vw;
  height: 45vh;
  font-size: 1.2em;
  font-weight: 200;
  line-height: 130%;
  /* border-top: #43411eb6 solid 0.5px;
  border-right: #43411eb6 solid 0.5px; */
}

.example-text span {
  color: #191818;
  font-weight: 400;
}
.example-images {
  width: 30vw;
  /* border-top: #43411eb6 solid 0.5px; */
  padding: 1.5em;
  display: flex;
  justify-content: center;
}

/* DEFAULT (before intersection) */
.example-images,
.example-text {
  opacity: 0; /* hidden until animated */
  /* no transform here */
  /* no animation here */
}

/* your existing keyframes stay the same */
@keyframes from-right-example {
  from {
    transform: translateX(100vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes from-left-example {
  from {
    transform: translateX(-100vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* TRIGGER CLASSES (added by JS on intersection) */
.animate-right {
  animation: from-right-example 1.4s ease-out forwards;
}
.animate-left {
  animation: from-left-example 1.4s ease-out forwards;
}

#portfolio-collage {
  width: 30vw;
  object-fit: contain;
}
#footer_style {
  position: relative;
  width: 100%;
  background: -webkit-linear-gradient(to right, #f15f79, #e98a44);
  background: linear-gradient(to right, #f15f79, #e98a44);
  padding-top: 3em;
  padding-bottom: 2em;
}
.monkey3 {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 25rem;
}
.footer_wrapper {
  margin-right: 0%;
}
#footer_large {
  margin: 0;
  font-size: 3em;
  text-align: left;
  padding-left: 15%;
  padding-bottom: 1em;
}
#footer_large span {
  margin: 0;
  font-size: 1.2rem;
  /* text-align: left; */
}
#footer_header {
  margin: 0;
  font-size: 2em;
  padding-left: 15%;
  padding-bottom: 0;
}
#footer_para {
  width: min(85%, 50rem);
  padding-top: 0;
  font-size: 1.2em;
  font-weight: 300;
  padding-left: 15%;
  padding-bottom: 0;
}
#footer-form {
  line-height: 2.5;
  padding-bottom: 5%;
}
form {
  padding-top: 1em;
  font-size: 1.1em;
  font-weight: 400;
  color: #43411e;
  padding-left: 15%;
  padding-bottom: 0;
}
#email,
input#name {
  display: block;
  height: 2rem;
  padding: 6px 16px;
  width: min(85%, 50rem);
  border-radius: 10px;
  border: none;
  background-color: #f3f3f3;
}
textarea#message {
  display: block;
  padding: 6px 16px;
  border-radius: 10px;
  width: min(85%, 50rem);
  border: none;
  background-color: #f3f3f3;
}
.form-submit-button {
  background: #43411e;
  width: 6.25rem;
  height: 2.5rem;
  color: #fff;
  border-radius: 20px;
  text-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  margin-top: 3%;
  padding-top: 0;
  cursor: pointer;
}
.footer_social_wrapper {
  padding-left: 15%;
  padding-top: 0;
}
.footer_social {
  width: 2rem; /* or 24px or whatever works best */
  padding-right: 1em;
  padding-top: 1em;
  object-fit: contain;
  flex-shrink: 0; /* Optional: prevents shrinking inside flex */
}

/*//////////////////about/////////////////////////////
/////////////////////////////////////////////////////
///////////////////////////////////////////////////*/

.background-container {
  display: flow-root;
  margin: 0 auto;
  margin-top: -1em;
  background-image: url(images/bg-night.png);
  width: 65%;
  border-radius: 10px 10px 10px 10px;
}

.page-title h1 {
  padding-left: 10%;
  font-size: 7em;
  color: #e49551;
  text-align: left;
  font-weight: 800;
  padding-top: 0%;
}
.page-title p {
  color: #c2bebe;
  padding-left: 20em;
  font-size: 1.1em;
  font-weight: 300;
}
.spacer {
  height: 3.125rem;
}

.showcase_split {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 0;
  width: 70%;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-top: 5rem;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 0.6rem;
  z-index: 999;
}

.showcase_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: fit-content;
}
.showcase_left h3 {
  font-size: 5em;
  padding: 0;
  margin: 0;
  text-align: right;
  line-height: 0.8;
  top: 0;
  min-width: 50%;
  height: auto;
  padding-left: 0;
  padding-right: 5px;
  z-index: 50;
}
.showcase_left span {
  font-size: 1.4em;
}
.showcase_right {
  flex: 1.4;
  min-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.showcase_right .showcase_para-about {
  padding-left: 1em;
}
.about-profile-pic {
  position: relative;
  width: 25rem;
  z-index: 999;
}
#profile-pic {
  position: relative;
  display: block;
  width: 100%;
  float: left;
  z-index: 12;
  z-index: 999;
}
.showcase_large-about {
  margin: 0;
  font-size: 2em;
  font-weight: 400;
  text-align: left;
  padding-left: 15%;
  padding-top: 3em;
  line-height: 1.2;
  color: #191818;
}
.para-about {
  width: 100%;
}
.showcase_para-about {
  display: block;
  margin: 0 auto;
  width: 100%;
  font-size: 1.2em;
  font-weight: 300;
  padding-left: 1%;
  padding-right: 1%;
  margin-top: -2em;
  padding-top: 3em;
  text-align: justify;
  padding-bottom: 4em;
}
.showcase_large-about span {
  font-weight: 700;
}

.showcase_split1 {
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-wrap: nowrap;
  margin: 0 auto;
  gap: 0;
}

.showcase_split2 {
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-wrap: nowrap;
  margin: 0 auto;
  gap: 0;
}

.card {
  flex: 1;
  height: 28.125rem;
  margin: 0;
  perspective: 1000px;
  cursor: pointer;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 2s;
  transform-style: preserve-3d;
}
.card.flipped .card-inner {
  transform: rotateX(90deg) rotateZ(90deg) rotateY(-90deg);
}
.card-back,
.card-front,
.card-front2 {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-front {
  display: inline;
  background: #6f5f90;
  border-radius: 10px 0 0 0;
}

.card-front2 {
  display: inline;
  background: #e56d5b;
  border-radius: 0 0 0 0;
}
.card-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  position: relative;
  height: 28.125rem;
}

.card-one-front-header,
.card-one-front-header2 {
  /* -webkit-transform-origin: 0 50%;
  -webkit-transform: rotate(-90deg) translate(-50%, 50%);
  -o-transform-origin: 0 50%;
  -o-transform: rotate(-90deg) translate(-50%, 50%); */
  transform-origin: 0 50%;
  transform: rotate(-90deg) translate(-50%, 50%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  flex: 1;
  padding-bottom: 1rem;
  text-align: center;
  padding-left: 0%;
  height: 3rem;
  width: 28.125rem; /* line-height of .wrapper div:first-child span */
  margin: auto;
  font-weight: bold;
  font-size: 1.8em;
  line-height: 2em; /* Copy to other locations */
  background: #303030;
  color: #cccfcf;
  border-radius: 0px 10px 0px 0px;
  letter-spacing: 0.5em;
}

.card-one-front-header2 {
  border-radius: 0px 0px 0px 0px;
}

.card-one-front-para {
  font-size: 1em;
  height: 100%;
  margin: 0;
  perspective: 1000px;
  position: relative;
  padding-left: 5rem; /* to make space for rotated label */
  padding-right: 1.5rem;
  padding-top: 5rem;
  text-align: justify;
}
.card-back {
  display: inline;
  background: #e7e6e8;
  transform: rotateX(90deg) rotateZ(90deg) rotateY(-90deg);
  border-radius: 10px 0 0 0;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.card-one-back-background {
  background: #e56d5b;
  /* background: linear-gradient(#e56d5b, #e2e2e2); */
  border-radius: 10px 0px 0px 100px;
  width: 100%;
  height: 14.063rem;
}

#profile-pic-about {
  padding-top: 1.8rem;
  display: block;
  width: 7.813rem;
  margin: 0 auto;
}

.card-one-back-header {
  font-size: 1.5rem;
  text-align: center;
  padding-top: 0.5em;
  font-weight: 400;
}

.card-one-back-para {
  display: block;
  margin: 0 auto;
  margin-left: 0;
  width: 90%;
  padding-top: 0.5rem;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  padding-top: 1rem;
  padding-left: 5%;
  padding-right: 5%;
  text-align: justify;
  padding-bottom: 2em;
}

.card-one-back-para span {
  font-weight: 400;
  font-size: 1em;
}
.card2 {
  flex: 1.7;
  height: 28.125rem;
  margin: 0;
  perspective: 1000px;
  cursor: pointer;
  z-index: 50;
}
.card2-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 2s;
  transform-style: preserve-3d;
}
.card2.flipped .card2-inner {
  transform: rotateY(180deg);
}
.card2-back,
.card2-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card2-front {
  display: inline;
  background: #758eb7;
  border-radius: 0 10px 0 0;
}

.card2-header-front {
  margin: auto;
  text-align: right;
  font-weight: bold;
  font-size: 1.8em;
  line-height: 2em; /* Copy to other locations */
  color: #cccfcf;
  border-radius: 0px 10px 0px 0px;
  letter-spacing: 0.5em;
}

.card2-header-back {
  background: #e56d5b;
  margin-top: 0; /* background: linear-gradient(#e56d5b, #e2e2e2); */
  border-radius: 0px 10px 100px 0px;
  width: 100%;
  height: 14.063rem;
}

.card2-para {
  display: block;
  margin: 0 auto;
  margin-left: 0;
  width: 90%;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  padding-top: 1rem;
  padding-left: 5%;
  padding-right: 5%;
  text-align: justify;
  padding-bottom: 2em;
}
.card2-back {
  display: inline;
  background: #e7e6e8;
  transform: rotateY(180deg);
  border-radius: 0 10px 0 0;
}

.faq h1 {
  padding-left: 10%;
  font-size: 7em;
  color: #e49551;
  text-align: left;
  font-weight: 800;
  padding-top: 2%;
}
.faq p {
  color: #c2bebe;
  padding-left: 20em;
  font-size: 1.1em;
  font-weight: 300;
  padding-top: 0.5em;
}

#faqSearch {
  display: block;
  margin-top: 5em;
  border-radius: 10px;
  border: 1px solid #d00606;
  width: 40%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 6rem;
}
.faq-item {
  margin-bottom: 20px;
  padding: 15px;
}
.faq-section {
  margin-bottom: 5em;
}
.faq-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}
.faq-wrapper input {
  margin-left: 15%;
}
/* Modal background */
/* === Modal Background === */
#contactModal.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.801);
  z-index: 1000;
}
.modal form {
  padding-left: 0;
}
/* === Modal Content (Flex Container) === */
#contactModal .modal-content {
  display: flex;
  flex-direction: row;
  background: #e49551;
  margin: 5% auto;
  width: 60%;
  max-width: 900px;
  border-radius: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: visible;
}

/* === Left Side: Image Container === */
.modal-left {
  flex: 0.9;
  display: flex;
  background-color: #392943;
  justify-content: center;
  border-radius: 60px 0 0 60px;

  align-items: center;
  position: relative;
  overflow: visible;
}

.modal-left img.modal-image {
  width: 115%;
  max-width: none;
  margin-left: -10em; /* floats image out of modal */
  border-radius: 8px;
  z-index: 2; /* Higher than the default content */
  position: relative; /* Needed for z-index to apply */
}

/* === Right Side: Content Container === */
.modal-right {
  flex: 1;
  padding: 2em;
  box-sizing: border-box;
  position: relative;
  color: #efeff0;
  padding-right: 5%;
}

.modal-right h2 a {
  color: inherit !important;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
}

/* === Close Button === */
#contactModal .close-button {
  position: absolute;
  top: 5%;
  right: 10%;
  background: transparent;
  border: none;
  font-size: 50px;
  cursor: pointer;
  color: #fff;
}

/* === Headings === */
.modal-content h1 {
  color: #efeff0;
  font-size: 2.5em;
  font-weight: 200;
  margin-bottom: 0.5em;
}

.modal-content h2 {
  color: #efeff0;
  font-size: 1.4em;
  font-weight: 200;
  margin-bottom: 0.4em;
}

/* === Labels === */
.modal-content label {
  color: #efeff0;
  font-size: 1em;
  font-weight: 200;
}

/* === Input Fields === */
#contactModal input[type="text"],
#contactModal input[type="email"] {
  width: 90%;
  height: 1.8rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f3f3f3;
  color: #333;
}

/* === Textarea === */
#contactModal textarea {
  width: 90%;
  height: 5rem;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #f3f3f3;
  color: #333;
  resize: vertical;
}

/* === Submit Button === */
#contactModal button[type="submit"] {
  background-color: #503163;
  color: white;
  border: none;
  font-size: 1em;
  padding: 1em 3em;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1em;
}

#contactModal button[type="submit"]:hover {
  background-color: #392943;
}

/* === Responsive Layout === */
@media (max-width: 768px) {
  #contactModal .modal-content {
    flex-direction: column;
    width: 90%;
  }

  .modal-left {
    justify-content: center;
    margin-top: 1em;
  }

  .modal-left img.modal-image {
    width: 80%;
    margin-left: 0;
  }

  .modal-right {
    padding: 1.5em;
  }
}
@media (max-width: 767px) {
  /* ---------- from your max-width:1363px block (base mobile styles) ---------- */
  h1 {
    font-size: 250%;
    font-weight: 500;
  }
  h2 {
    font-size: 100%;
    font-weight: 300;
  }

  section .title {
    padding-top: 0;
    padding-left: 5%;
    padding-right: 5%;
  }
  section .title p {
    font-size: 1.8em;
    font-weight: 500;
  }

  .links-container a {
    color: #fff;
    font-size: 3rem;
    margin: 1rem 0;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.3;
    padding: 0;
  }

  .links-container a.active {
    color: #e32db0;
  }
  #shipWrap {
    display: none;
  }
  .list {
    display: flex;
    gap: 1.5em;
    padding-left: 7em;
    padding-top: 8em;
    justify-content: space-between;
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    z-index: 9;
    scrollbar-width: none;
    padding-bottom: 2em;
    -ms-overflow-style: none;
  }
  .list::-webkit-scrollbar {
    display: none;
  }

  .item1,
  .item2,
  .item3 {
    margin-top: 0;
    flex-shrink: 0;
    width: 22rem;
    height: 33rem;
  }

  .item1_transition,
  .item2_transition,
  .item3_transition {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
  }
  .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #a3a1a1;
    transition: background 0.3s;
  }
  .dots span.active {
    background: #a3a1a1;
    width: 40px;
    border-radius: 8px;
  }

  #landing_wrapper {
    margin: 0;
    margin-right: 5%;
    padding-bottom: 2em;
  }
  #landing_header {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
    font-size: 1.3em;
    line-height: 1.3;
  }

  #landing_para {
    padding-left: 5%;
    padding-right: 5%;
    font-size: 1em;
    line-height: 1.7;
  }
  #landing_second_header {
    padding-left: 5%;
    font-size: 1.3em;
    font-weight: 600;
    padding-bottom: 0;
    padding-top: 1em;
  }
  #landing_second_header span {
    font-size: 0.8rem;
    padding-left: 0.5em;
  }

  #landing_quip {
    margin: 0;
    font-size: 1.2em;
    text-align: left;
    padding-left: 10em;
    padding-bottom: 0.5em;
    padding-top: 0;
  }
  #landing_second_para {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 8em;
    font-size: 1em;
    line-height: 1.7;
  }
  .content {
    margin: 0;
    padding: 0;
    padding-top: 1.5em;
    padding-bottom: 2em;
  }
  /* .carousal_header {
    font-size: 1.5em;
    color: #0556e3;
    padding: 0;
  } */

  .carousal_para,
  .carousal_para2 {
    padding-left: 5%;
    padding-right: 10%;
    font-size: 1.5em;
    padding-top: 0em;
    padding-bottom: 0;
  }

  .carousal_button_wrapper {
    bottom: 6%;
    width: 5.625rem;
    padding: 0.5em;
  }
  .thumb2 {
    padding-bottom: 1.5em;
    width: 5rem;
    padding-top: 1em;
  }
  .showcase_wrapper {
    width: 100%;
    margin: 0;
    padding-top: 3em;
  }
  .showcase_wrapper3 input {
    margin-left: 5%;
  }
  #faqSearch {
    width: 50%;
  }

  .showcase_large {
    width: 70%;
    padding-left: 5%;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.3;
    padding-bottom: 0.5em;
  }
  .showcase_para {
    padding-left: 5%;
    padding-right: 0;
    padding-top: 0;
    font-size: 1em;
    margin-right: 10%;
    padding-bottom: 3rem;
  }
  .portfolio-style {
    padding: 5%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .portfolio-wrapper {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .portfolio-header {
    padding-top: 5%;
    padding-bottom: 0;
    margin: auto;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 2.5em;
    font-weight: 600;
    text-align: center;
  }
  .portfolio-para {
    padding-top: 5%;
    padding-bottom: 10%;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 1.2em;
    font-weight: 200;
  }
  .testimony_wrapper {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    height: 300px;
    padding-top: 0;
    padding-bottom: 0;
  }
  #testimony_para {
    font-size: 1.6em;
    color: #cccfcf;
    line-height: 2em;
  }

  .t3xts {
    line-height: 1;
    word-wrap: normal;
    position: relative;
    perspective: 1000px;
    text-transform: uppercase;
    font-size: 0.8em;
  }
  .example-wrapper {
    padding-right: 3%;
    padding-left: 5%;
  }
  /* .example-images {
    padding-left: 3%;
    padding-right: 3%;
    width: 100%;
  } */
  #portfolio-collage {
    width: 100%;
    padding: 0;
  }

  .footer_wrapper {
    margin: 0;
    margin-right: 5%;
    padding-bottom: 0;
    line-height: 1;
  }
  #footer_large {
    margin: 0;
    font-size: 2em;
    text-align: left;
    padding-left: 5%;
  }
  #footer_quip {
    margin: 0;
    font-size: 1em;
    text-align: left;
    padding-left: 12em;
    padding-bottom: 0.5em;
  }
  #footer_header {
    margin: 0;
    font-size: 1.6em;
    padding-left: 5%;
    padding-bottom: 0.5em;
  }
  #footer_para {
    margin: 0;
    font-size: 1.1em;
    padding-left: 5%;
    line-height: 1.5;
    padding-bottom: 0;
  }
  #footer-form {
    margin: auto;
    padding-left: 5%;
    line-height: 1.8;
  }
  #email,
  input#name {
    height: 0.938rem;
    border-radius: 5px;
  }
  textarea#message {
    border-radius: 5px;
  }
  .footer_social_wrapper {
    padding-left: 5%;
  }
  .footer_social {
    width: 1.5rem;
    padding-right: 1em;
    padding-top: 1em;
  }
  #service_quip {
    margin: 0;
    font-size: 1.2em;
    text-align: center;
    padding-left: 12em;
    padding-bottom: 0.5em;
  }

  .form-submit-button {
    margin-top: 2em;
  }

  .hero-image {
    margin-top: 0%;
  }

  .monkey3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 13.75rem;
  }
  .monkey2 {
    display: none;
  }
  .testimony_style_quotes {
    background-image: url(images/quotes.png);
    background-repeat: no-repeat;
    background-position: top 2em right 3em;
  }

  /* ---------- from your max-width:800px block (overrides & mobile-only tweaks) ---------- */
  /* menu and nav */
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label {
    right: 35px;
  }

  .nav {
    top: 43px;
    right: 20px;
    display: block;
    width: 60px;
    height: 60px;
  }

  /* headings & sizes adjusted for small screens */
  h1 {
    font-size: 9vw; /* overrides earlier 250% */
  }
  .nav ul li a {
    font-size: 7vh;
  }

  section .title p {
    display: none;
  }

  /* title mobile paragraph items (animated) */
  #title-p-mobile2,
  #title-p-mobile3,
  section #title-p-mobile1 {
    line-height: 1.1;
    font-size: 1.2em;
    font-weight: 300;
    position: relative;
    display: block;
    text-decoration: none;
    color: #f3f1ef;
  }
  section #title-p-mobile1 {
    animation: byLeft 1s 0.7s ease both;
  }
  section #title-p-mobile2 {
    animation: byLeft 1s 0.9s ease both;
  }
  section #title-p-mobile3 {
    animation: byLeft 1s 1.1s ease both;
  }

  .open-sidebar-button img.gear {
    top: auto;
    left: auto;
    width: 2.5rem;
    top: 1rem;
    right: 1rem;
  }

  #bk {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 300%;
    margin: 0;
    opacity: 1;
  }

  .links-container {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
  #sidebar-active:checked ~ .links-container {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  /* .content {
    text-align: center;
    padding-top: 3em;
    padding-bottom: 3em;
  } */

  .thumb2 {
    padding-bottom: 0.5em;
    height: 4.375rem;
    padding-top: 0.5em;
  }

  /* .carousal_header {
    font-size: 1.2em;
  }
  .carousal_para {
    font-size: 1em;
  } */

  .carousal_button_wrapper {
    position: relative;
    overflow: hidden;
    height: 3rem;
    margin-top: 0.5em;
    border-radius: 1.5rem;
    background: #3d3a4e;
    background-size: 400%;
    color: #fff;
    border: none;
    cursor: pointer;
  }

  /* .showcase_large {
    font-size: 1.2em;
    padding-top: 0;
    padding-bottom: 0.5em;
  }
  .showcase_para {
    padding-top: 0;
    padding-bottom: 2rem;
  } */
  .example-large {
    font-size: 2em;
    padding-left: 5%;
    text-align: left;
  }
  .example-wrapper {
    grid-template-columns: repeat(1, 1fr);
    padding-right: 1%;
    padding-left: 5%;
    justify-content: center;
  }
  .example-text {
    border: 0;
    width: 90vw;
    font-size: 1em;
    line-height: 1.3;
    font-weight: 300;
    height: auto;
    padding-left: 0;
  }

  .example-text span {
    font-weight: 400;
    font-size: 1.1em;
  }
  .example-images {
    padding-top: 2em;
    padding-bottom: 1em;
    border: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #portfolio-collage {
    width: 90%;
    padding: 0;
  }
  .portfolio-wrapper {
    width: 100%;
    padding: 0;
  }
  .portfolio-header {
    padding-left: 5%;
    padding-right: 5%;
    font-size: 1.5em;
  }
  .portfolio-para {
    font-size: 1em;
    padding-left: 5%;
    padding-right: 5%;
    font-weight: 400;
  }

  .hero-image {
    margin-top: -10%;
  }
  #monkey {
    margin-left: -30%;
    padding-left: 0%;
    width: 110%;
    top: 25%;
    padding-bottom: 0%;
  }

  .bk {
    background-image: url(images/bktop3.webp);
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  }

  section .title {
    left: 0;
    width: 100%;
  }
  .rocket-fly {
    width: auto;
  }
  .testimony_style_quotes {
    background-position: top 0 right 0;
    background-size: 115px;
  }
  .testimony_style {
    padding-bottom: 0;
  }
  .testimony_wrapper {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }
  #testimony_para {
    padding-left: 5%;
    line-height: 0;
    padding-top: 5em;
    padding-bottom: 4em;
    font-size: 1.25em;
    color: #cccfcf;
  }
  .t3xts {
    line-height: 0;
    margin-bottom: -1em;
    text-transform: uppercase;
  }
  .t3xt-5 {
    margin-top: -2em;
  }
  .portfolio-para {
    height: auto;
  }

  .page-title h1 {
    padding-left: 0.5em;
    padding-top: 0.5em;
    font-size: 4em;
    text-align: left;
  }
  .page-title p {
    padding-left: 8em;
    font-size: 0.9em;
    font-weight: 300;
  }

  #faqSearch {
    width: 80%;
    margin-top: 5rem;
    margin-bottom: 2rem;
  }

  .faq-wrapper input {
    margin-left: 5%;
  }

  .background-container {
    width: 100%;
  }

  .about-profile-pic {
    display: none;
  }

  /* Modal adjustments */
  .modal-content h1 {
    color: #efeff0;
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 0.5em;
  }

  .modal-content h2 {
    font-size: 1em;
    font-weight: 300;
    margin-bottom: 0.2em;
  }

  .modal-content label {
    color: #cccfcf;
    font-size: 1em;
    font-weight: 300;
  }

  #contactModal .modal-content {
    margin: 5% auto;
    width: 90%;
    border-radius: 30px;
  }

  .modal-left {
    flex: 0.6;
    border-radius: 30px 30px 0 0;
  }

  .modal-left img.modal-image {
    width: 70%;
    top: 0%;
  }

  .modal-left {
    position: relative;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin-top: 0;
  }
}

@media only screen and (max-width: 1300px) {
  #shipWrap {
    display: none;
  }
  .list {
    display: flex;
    gap: 1.5em;
    padding-left: 7em;
    justify-content: left;
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    z-index: 9;
    scrollbar-width: none;
    padding-bottom: 2em;
    -ms-overflow-style: none;
  }
  .list::-webkit-scrollbar {
    display: none;
  }
}
/* Mobile landscape overrides */
@media only screen and (max-width: 1300px) and (orientation: landscape) {
  #shipWrap {
    display: none;
  }
  /* Headings */
  h1 {
    font-size: 5vw; /* smaller than portrait */
    line-height: 1.1;
  }
  h2 {
    font-size: 3vw;
  }

  /* Navigation / links */
  .links-container a {
    font-size: 1.6rem; /* down from 3rem */
    margin: 0.4rem 0;
    line-height: 1.2;
  }
  .nav ul li a {
    font-size: 4vh; /* scale with viewport height */
  }

  /* Content blocks */
  section .title p,
  #landing_para,
  #landing_quip,
  #landing_second_para,
  .carousal_para,
  .showcase_para,
  .portfolio-para,
  #footer_quip,
  #footer_para,
  #service_quip {
    font-size: 0.6em; /* smaller body text */
    line-height: 1.3;
    padding-left: 5%;
    padding-right: 5%;
  }
  .example-wrapper {
    font-size: 0.6em; /* smaller body text */
    line-height: 1.3;
    padding-left: 5%;
    padding-right: 0%;
    gap: 0;
  }

  .example-large {
    font-size: 1.2em; /* smaller body text */
    padding-left: 5%;
    padding-right: 5%;
  }

  .example-images {
    width: 100%;
    border-top: #43411eb6 solid 0.5px;
    padding: 0;
    display: flex;
    margin: 0;
  }

  .example-images img {
    display: block;
    position: absolute;
    min-width: 400px;
    margin: 0;
    padding-top: 2em;
  }

  /* Secondary headers */
  #landing_second_header,
  .showcase_large,
  .portfolio-header,
  #footer_header {
    font-size: 1.3em;
  }

  /* Carousel and buttons */
  #carousal_header {
    font-size: 1.4em;
  }
  .carousal_button_wrapper {
    height: 2.5rem;
    width: 4.5rem;
  }
  .list {
    display: flex;
    gap: 1em;
    padding-left: 7em;
    justify-content: left;
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    z-index: 9;
    scrollbar-width: none;
    padding-bottom: 2em;
    -ms-overflow-style: none;
  }
  .list::-webkit-scrollbar {
    display: none;
  }

  /* .list {
  margin-top: -20em;
  display: flex;
  gap: 2em;
  padding-top: 6em;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 2em;
  justify-content: center;
  list-style: none;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  z-index: 9;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.list::-webkit-scrollbar {
  display: none;
} */
  /* Cards / items */
  /* .item1,
  .item2,
  .item3 {
    width: 25rem;
    height: 15rem;
  } */
  .item1 {
    position: relative;

    transform: translateX(0);
    opacity: 1;
  }
  .item2 {
    transform: translateY(0);
    opacity: 1;
  }
  .item3 {
    transform: translateX(0%);
    opacity: 1;
  }

  .content {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 2em;
  }
  .thumb2 {
    padding-bottom: 1.5em;
    height: 5.625rem;
    padding-top: 0.5em;
    margin: 0 auto;
  }
  /* .carousal_header {
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    font-size: 0.7em;
    font-weight: 600;
    color: #444343;
    padding: 0;
  }
  .carousal_para {
    text-align: center;
    padding-left: 8%;
    padding-right: 8%;
    font-size: 0.7em;
    font-weight: 300;
    padding-top: 1em;
    padding-bottom: 0;
  } */
  /* Thumbnails */
  .thumb2 {
    width: 3.5rem;
    height: 3.5rem;
  }

  /* Page title */
  .page-title h1 {
    font-size: 2.2rem;
    padding-left: 0.5em;
  }
  .page-title p {
    font-size: 0.8em;
    padding-left: 1em;
  }

  /* FAQ search */
  #faqSearch {
    width: 65%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Testimony */
  #testimony_para {
    font-size: 1em;
    padding-top: 2em;
    padding-bottom: 1em;
    line-height: 1;
  }

  /* Images */
  .hero-image {
    margin-top: -3%;
  }
  #monkey {
    margin-left: -5%;
    width: 45%;
    top: 30%;
  }
  #moon {
    right: -20%;
    bottom: 20%;
  }

  /* Footer */
  #footer_large {
    font-size: 1.8em;
  }
}
