::-webkit-scrollbar {
  display: none;
}


:root {
  --light_green: rgba(174, 196, 184, 1);
  --pink:rgba(238, 155, 142, 1);
  --yellow:rgba(228, 133, 83, 1);
  --red:#EC594B;
  --beige:rgba(248, 218, 203, 1);
}

html,
body {
  background-color: #eff3f5;
  background-image: url(./img/whiteBackgroundPattern.png);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

h1 {
  font-family: "Circular Std";
  font-weight: 500;
  font-size: 58px;
}

h2 {
  font-family: "Circular Std";
  font-weight: 500;
  font-size: 58px;
}


p,
a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Circular Std";
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s;
}
/* 
<!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ Pre-loader ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */

/* <!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆  nav ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */

.header {
  width: 30%;
  border-radius: 30px;
}

.nav {
  position: fixed;
  top: 1rem;
  right: 35rem;
  height: 4rem;
  width: 38%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  color: white;
  z-index: 10;
  border-radius: 15px;
  background: #eff3f5;
  /* box-shadow: inset 3px 3px 6px #dadada,
            inset -6px -6px 11px #ffffff; */

  background: #eff3f5;
  box-shadow:  3px 3px 8px #b3b3b3,
             -5px -5px 16px #ffffff;

}

.nav a {
  text-decoration: none;
  font-family: Montserrat;
  font-weight: 450;
  color: #000;
}

.nav-logo {
  width: 100px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-button {
  background-color: transparent;
  border: 2px solid white;
  
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  background: #eff3f5;
  box-shadow:  2px 2px 4px #b3b3b3,
             6px 6px 10px #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button:hover {
  background-color: white;
  color: #EC594B;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
  z-index: 1000;
  background-color: transparent;
  border: 2px solid #EAE5D8;
  border-radius: 20px;
  color: #EAE5D8;
  padding: 10px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.scroll-to-top:hover {
  background-color: white;
  color: #E25888;
}












.intro{
  position: relative;
  max-width: 100vw;
}


.overlay2 {
  position: fixed;
  top: 0;
  left: 50vw;
  width: 0vw;
  height: 0;
  background:transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay-content {
  width: 40%;
}

.images2 {
  position: relative;
  height: 550px;
}

.img-holder {
  position: relative;
  width: 80%;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.img-holder img {
  position: absolute;
  top: 0;
  left: -110%;
}

.text {
  position: relative;
  margin: 1em 0;

}

.counter,
.logo p {
  width: 30vw;
  font-size: 100px;
  text-align: center;
  text-transform: uppercase;
  color: rgba(223,212,202);
}

.counter p {
  line-height: 100%;
}

.counter p span,
.logo p span {
  position: relative;
  z-index: -2;
  color: rgba(223,212,202);
}

.logo {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}

.logo p {
  line-height: 100%;
}

.logo p span {
  position: relative;
  top: 200px;
}


.shop {
  display: flex;
  justify-content: flex-end;
  gap: 2em;
}

.hero {
  width: 100vw;
  height: 100vh;
}

.hero img {
  transform: scale(2);
}

.hero-copy {
  position: absolute;
  width: 50vw;
  height: 20vh;
  top: 22rem;
  left: 60%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  border-radius: 49px;
  background: #e8e9eb;
  box-shadow: inset 5px 5px 10px #c3c3c3,
              inset -9px -9px 14px #fdfdfd;
}

.hero-copy h1 {
  position: relative;
  margin: 0;
  font-weight: 400;
  font-size: 10vw;
  color: white;
  line-height: 100%;
  left: 3vw;
}



/* Reusable "hero lighting" text effect (used for hero + other headings) */
.hero-copy h1 span {
  display: inline-block;
  position: relative;
  top: 27vw;
}

.hero-lighting span {
  position: relative;
  font-family: Montserrat;
  color: #eff3f5;
  text-shadow: 0px 1px 2px rgba(77, 77, 77, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}


/* Hover state - brightens the text */
.hero-lighting span:hover {
  color: #ffffff;
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.4);
}

/* Keep existing hero selectors working too */



@media (max-width: 900px) {
  .overlay-content {
    width: 0%;
  }
  .counter,
  .logo p {
    font-size: 1px;
  }
}

/* .circle.box {
  position: relative;
  width: 50vw;
  height: 20vh;
  top: 20%;
  left: 80%;
  overflow: hidden;
} */

.circle1 {
  position: absolute;
  width: 15vw;
  height: 3vw;
  top: 40vh;
  right: 15rem;
  border-radius: 10px;
  background: #eff3f5;
  box-shadow:  5px 5px 8px #b3b3b3,
             -5px -5px 16px #ffffff;
  transition: filter 0.25s ease, transform 0.25s ease;
}

/* Brighten up “cover” effect on hover */
.circle1::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #e0e0e0;
  box-shadow: inset 5px 5px 8px #a4a4a4,
            inset -10px -10px 21px #ffffff;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.circle1:hover{
  
  filter: brightness(1.12) saturate(1.02);
  transform: translateY(-1px);
}

.circle1:hover::before{
  opacity: 0.7;
}

/* Click / focus keeps the bright cover effect */
.circle1.is-active,
.circle1:active,
.circle1:focus-visible{
  filter: brightness(1.00) saturate(0.7);
  transform: translateY(-1px);
}

.circle1.is-active::before,
.circle1:active::before,
.circle1:focus-visible::before{
  opacity: 1;
}

.heading1 {
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  top: 30%;
  left: 30%;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
}

.circle2 {
  position: absolute;
  width: 15vw;
  height: 3vw;
  top: 40vh;
  right: 34rem;
  border-radius: 10px;
  background: #eff3f5;
  box-shadow:  5px 5px 8px #b3b3b3,
             -5px -5px 16px #ffffff;
  transition: filter 0.25s ease, transform 0.25s ease;
}

/* Brighten up “cover” effect on hover */
.circle2::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #e0e0e0;
  box-shadow: inset 5px 5px 8px #a4a4a4,
            inset -10px -10px 21px #ffffff;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.circle2:hover{
  
  filter: brightness(1.12) saturate(1.02);
  transform: translateY(-1px);
}

.circle2:hover::before{
  opacity: 0.7;
}

/* Click / focus keeps the bright cover effect */
.circle2.is-active,
.circle2:active,
.circle2:focus-visible{
  filter: brightness(1.00) saturate(0.7);
  transform: translateY(-1px);
}

.circle2.is-active::before,
.circle2:active::before,
.circle2:focus-visible::before{
  opacity: 1;
}

.heading2 {
  position: absolute;
  top: 30%;
  left: 14%;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
}


/* <!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ Project ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */

.projects{
  width: 100%;
  height: 200vh;
  
  background-color: #eff3f5;
  background-image: url(./img/whiteBackgroundPattern.png);
}

video {

  width: 100%;
  height: 100%;
}



.whitespace.w-1 {
  position: relative;
  width: 96vw;
  height: 60vh;
  top: 6vw;
  left: 2vw;
  border-radius: 100px;
  background: #eff3f5;
  box-shadow:  5px 5px 8px #b3b3b3,
             -5px -5px 16px #ffffff;
  transition: filter 0.25s ease, transform 0.25s ease;
}



.logo_vid {
  position: relative;
  width: 20vw;
  height: 40vh;
  left: 12vw;
  top: 3rem;
  
}

.whitespace.w-2 {
  width: 100vw;
  height: 45vh;
  background-color: rgba(223,212,202);
}

.gallery {
  position: relative;
  width: 80%;
  height: 200vh;
  top: 10rem;
  left: 10rem;
  display: flex;
  flex-direction: column;
}

/* New: professional evenly-spaced grid column layout for text cards */
.galleryTextGrid {
  margin-top: 6rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  align-items: start;
}

/* Makes sure the five cards feel balanced (last one doesn't look lonely) */
.galleryTextGrid .project:last-child {
  grid-column: 1 / -1;
}





.galleryScrollText {
  position: absolute;
  top: 6vh;
  right: 24vw;
  z-index: 5;

  display: inline-flex;
  gap: 0.9vw;
  align-items: center;
  padding: 1.1vw 1.4vw;
  border-radius: 28px;

  background: #eff3f5;
  box-shadow:
    10px 10px 22px rgba(179, 179, 179, 0.55),
    -10px -10px 24px rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(6px);
  will-change: transform, opacity, filter;
}

.galleryScrollTextAccent {
  font-family: Montserrat;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.6vw;
  color: var(--pink);
}

.galleryScrollTextMain {
  font-family: Montserrat;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.6vw;
  color: #2c221d;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .galleryScrollText {
    top: 4vh;
    left: 4vw;
    padding: 3vw 4vw;
    border-radius: 22px;
    gap: 2vw;
  }

  .galleryScrollTextAccent {
    font-size: 3vw;
  }

  .galleryScrollTextMain {
    font-size: 3vw;
  }
}



.project {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
}

/* Grid layout should not rely on old flex spacing rules */
.galleryTextGrid .project:has(.galleryTextCard[data-card="problem"]),
.galleryTextGrid .project:has(.galleryTextCard[data-card="brief"]) {
  margin-bottom: 0;
}


/* The Problem + The Brief should be closer together than the rest */
.project:has(.galleryTextCard[data-card="problem"]),
.project:has(.galleryTextCard[data-card="brief"]) {
  margin-bottom: 0.4em;
}




.preview-img {
  position: absolute;
  bottom: 2em;
  left: 30rem;
  max-width: 80vw;
  height: calc(50vh - 2em);
  opacity: 0.9;
  top: 18rem;
  opacity: 100%;
}

.index {
  flex: 1;
  padding-left: 2em;
  height: 0;
}

.project1 {
  position: relative;
  width: 100%;
  height: 80vh;
  left: 0;
  display: flex;
}


.index1 {
  padding-left: 13em;
  height: 0;
}

.gallery .images {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1em;
  height: 100vh;
  width: 100vw;
}

.gallery .imga {
  flex: 1;
  width: 200px;
  background-color: rgb(105, 105, 105);

}

.imga img {
  opacity: 0.9;
}

.index .mask {
  position: absolute;
  top: 0;
  left: 20em;
  height: 70px;
  overflow: hidden;
  will-change: transform;
  color: transparent;
}

.index .mask h1 {
  position: relative;
  will-change: transform;
  color: transparent
}

.index .mask h1 span {
  position: relative;
  display: inline-block;
  will-change: transform;
  color: transparent
}

.digit-wrapper,
.digit-wrapper span {
  display: inline-block;
  position: relative;
  will-change: transform;
}

.project-names {
  position: fixed;
  /* Keeps it visible while the page scrolls, then releases naturally */
  top: 50vh;
  width: 200px;
  left: 10%;
  transform: translateX(70%);
  z-index: 20;

  background: #eff3f5;
  border-radius: 22px;
  box-shadow:
    14px 14px 30px rgba(0,0,0,.12),
    -14px -14px 30px rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.55);
  padding: 14px 12px;
}




.project-names.is-hidden{
  opacity: 0 !important;
  pointer-events: none;
  transform: translateX(200vw) !important;
  transition: opacity .25s ease, transform .25s ease;
}




.indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}

.symbol {
  width: 12px;
  height: 12px;
  background-color: var(--red);
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.name {
  height: 28px;
  transition: opacity .25s ease, transform .25s ease;
}


.name p {
  color: var(--pink);
}

.name.active p {
  color: var(--red);
}



.progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 8px;
  height: 100vh;
  background-color: var(--beige);
  transform-origin: top;
  transform: scaleY(0);
}



.preview_vid {
 position: absolute;
 left: 0vw;
 width: 50vw;

}


.text p{
  position: relative;
  width: 50vw;
  font-family: Montserrat;
  font-size: 15px;
  line-height: 2;
  justify-content: center;
  left: 33vw;
}

.text_brief p{
  position: relative;
  width: 50vw;
  top: 17vw;
  font-family: Montserrat;
  font-size: 15px;
  line-height: 2;
  left: 34.5vw;
}

/* Neumorphic scroll text cards inside the gallery */
.galleryTextCard {
  position: relative;
  width: 100%;
  margin: 0;
  top: 10rem;
  background: #eff3f5;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);

  min-height: 22vh;
  height: auto;
  padding-bottom: 1.2rem;

  box-shadow:
    12px 12px 26px rgba(179, 179, 179, 0.55),
    -12px -12px 28px rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(6px);
  will-change: transform, opacity, filter;
}


.galleryTextCardHeading {
  margin: 0;
  padding: 1.3vw 2vw 0vw 2vw;

  font-family: Montserrat;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.95vw;

  color: var(--red);
  text-transform: uppercase;
}

.galleryTextCardBody {
  padding: 1.1rem 1.6rem 1.6rem 1.6rem;
}

.galleryTextCardBody p {
  position: static;
  width: 100%;
  left: auto;
  top: auto;
  margin: 0;

  font-size: 0.58vw;
  line-height: 1.85;
  color: #2c221d;
  text-transform: none;
}


@media (max-width: 900px) {
  .galleryTextGrid {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .galleryTextCard {
    width: 100%;
    margin-left: 0;
    border-radius: 22px;
    min-height: 26vh;
  }



  .galleryTextCardHeading {
    font-size: 4vw;
    letter-spacing: 0.12em;
    padding: 4vw 6vw 0 6vw;
  }

  .galleryTextCardBody {
    padding: 3vw 6vw 6vw 6vw;
  }

  .galleryTextCardBody p {
    font-size: 3.2vw;
    line-height: 1.8;
  }
}



/* Removed old absolute/offset paragraph positioning for grid layout */
.text_objectives p,
.text_solution p,
.text_targetA p {
  position: static;
  left: auto;
  top: auto;
  width: 100%;
  font-family: Montserrat;
  font-size: inherit;
  line-height: inherit;
}



.footer p {
  position: fixed;
  bottom: 2em;
  left: 40%;
  text-transform: none;
}






/* <!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ MOUSETRAIL ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */

svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

path {
  fill: none;
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* <!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ MENU PAGE ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */

.menu .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p {
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
}

.container {
  width: 100%;
  height: 100%;
  background: url(./assets/hero.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.menu-open {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  color: #eee5d2;
}

.menu-close {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  color: #a39b89;
}

.menu-open,
.menu-close {
  margin: 0.75em;
  padding: 0.75em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  cursor: pointer;
}

.menu-open p,
.menu-close p {
  position: relative;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 2vw;
  height: 100vh;
  display: flex;
  z-index: 2;
}

.menu-item {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  background: #eee5d2;
  /* border-left: 1.5px solid rgba(163, 155, 137, 0.35); */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: -1px;
}

.menu-item-index {
  height: 100%;
  padding: 1.5em 0.5em 2em 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #a39b89;
}

.menu-item-index p:nth-child(2) {
  position: relative;
  transform: rotate(-90deg);
}

.menu-link {
  position: absolute;
  bottom: 20%; /* Change this value to move the items higher */
  left: 55%;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.menu-item:nth-child(3) .menu-link {
  bottom: 30%; /* Adjust this value as needed */
}

.menu-link p {
  position: relative;
  display: flex;
  font-family: "OPTICaslon-ExtraCondensed";
  font-size: 100px;
  font-weight: lighter;
  transition: all 0.5s;
}

.menu-link p span {
  position: relative;
}

.menu-item .menu-link-main,
.menu-item .menu-link-hover {
  transition: all 0.5s;
}

.menu-link-main p {
  color: #2c221d;
}

.menu-item .menu-link-hover {
  left: 150%;
  color: rgba(163, 155, 137, 0.85);
}

.menu-item:hover .menu-link-main {
  left: -100%;
}
.menu-item:hover .menu-link-hover {
  left: 50%;
}

.menu-img {
  position: absolute;
  width: 75%;
  height: 35%;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item.menu-opened:hover .menu-img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 900px) {
  .menu {
    flex-direction: column;
  }

  .menu-link {
    bottom: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .menu-item:nth-child(3) .menu-link {
    bottom: unset;
  }

  .menu-link p {
    font-size: 80px;
  }

  .menu-link-hover {
    display: none;
  }

  .menu-item:hover .menu-link-main {
    top: 50%;
    left: 50%;
  }

  .menu-item-index {
    align-items: center;
  }

  .menu-item-index p:nth-child(1) {
    padding: 0 0.5em;
  }

  .menu-img {
    display: none;
  }
}

/* // <!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ persona's ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */









.sketch1 {
  position: relative;
  width: 100%;
  height: 150vh;

  

}

.sketch {
  position: relative;
  width: 100%;
  height: 50vh;

}



.sketch_lax_container {
  position: relative;
  width: 80vw;
  height: 45vw;
  top: 0vw;
  left: 20vw;
  background-color: transparent;


}

.s_lax_01 {
  position: relative;
  top: -2vw;
  left: 6vw;
  width: 11vw;
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.s_lax_01:hover {
  transform: scale(1.1); /* Scale up by 10% on hover */
}

.s_lax_02 {
  position: relative;
  left: 17vw;
  top: 0vw;
  width: 15vw;
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.s_lax_02:hover {
  transform: scale(1.1); /* Scale up by 10% on hover */
}

.s_lax_03 {
  position: relative;
  left: 32vw;
  width: 15vw;
  top: 0vw;
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.s_lax_03:hover {
  transform: scale(1.1); /* Scale up by 10% on hover */
}

.s_lax_04 {
  position: relative;
  top: 0vw;
  left: 47vw;
  width: 15vw;
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.s_lax_04:hover {
  transform: scale(3.1); /* Scale up by 10% on hover */
}

.s_lax_07 {
  position: relative;
  top: 0vw;
  left: 62vw;
  width: 15vw;
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.s_lax_07:hover {
  transform: scale(1.1); /* Scale up by 10% on hover */
}















#headingsketch_name {
  font-family: Montserrat;
  position: relative;
  left: 4vw;
  font-size: 4vw;
  top: 3vw;
  letter-spacing: 0.56vw;
  font-weight: bold;
  color: var(black); /* Make the fill transparent */
  text-shadow: 
      -1px -1px 0 var(black),  
       1px -1px 0 var(black),
      -1px  1px 0 var(black),
       5px  5px 0 var(black); /* Create a stroke effect */
  line-height: 1.3;
}

.scampsdescription {
  position: absolute;
  left: 4vw;
  top: 10vw;
}

.scampsdescription p {
  font-family: Montserrat;
  font-size: 11px;
  line-height: 2;
  color: #2c221d;

}





.about_heading {
  position: absolute;
  top: 25vw;
  left: 40vw;
  width: 24.6vw;
  font-family : Quincy CF;
  font-weight: 400;
  font-size : 5.5vw;
  letter-spacing : 2.65px;
  color : #EC594B;
}

.about_subh {
  position: absolute;
  width: 30vw;
  top: 23vw;
  left: 30vw;
 
  font-family: Montserrat;
  font-size: 0.8vw;
  letter-spacing: 0.2vw;
  line-height: 155%;
  font-weight: 500;
  color: var(--beige);
}

.about_p {
  position: absolute;
  width: 20vw;
  top: 5vw;
  left: 25vw;

  font-family: Montserrat;
  font-size: 0.8vw;
  letter-spacing: 0.2vw;
  line-height : 155%;
  font-weight: 500;
  color: var(--beige);
}







/* <!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ branding ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */


.branding {
  position: relative;
  width: 95vw;
  left: 3rem;
  height: 50vh;
  border-radius: 49px;
  background: #e8e9eb;
  box-shadow: inset 5px 5px 10px #c3c3c3,
              inset -9px -9px 14px #fdfdfd;

}



#headingbranding_name {
  font-family: Montserrat;
  position: relative;
  left: 4vw;
  font-size: 4vw;
  top: 3vw;
  letter-spacing: 0.56vw;
  font-weight: bold;
  color: var(black); /* Make the fill transparent */
  
}

.llogo_heading p {
  font-family: Montserrat;
  position: relative;
  left: 10vw;
  font-size: 2vw;
  top: 4vw;
  letter-spacing: 0.56vw;
  font-weight: bold;
  color: white; /* Make the fill transparent */
  line-height: 1;
}

.logo img {
  position: relative;
  width: 20%;
  top: 14vw;
  right: 15vw;
}

.cp_heading p {
  font-family: Montserrat;
  position: relative;
  left: 30vw;
  font-size: 2vw;
  top: -3vw;
  letter-spacing: 0.56vw;
  font-weight: bold;
  color: white; /* Make the fill transparent */
  line-height: 1;
}

.colourpalette {
  width: 30vw;
}


.colourpalette img {
  position: relative;
  width: 80%;
  top: 0vw;
  left: 30vw;
  
}




.llogoname_heading p {
  font-family: Montserrat;
  position: absolute;
  left: 60vw;
  font-size: 2vw;
  top: 4vw;
  letter-spacing: 0.56vw;
  font-weight: bold;
  color: white; /* Make the fill transparent */
  line-height: 1;
}

.lname {
  width: 550px;
  height: 100px;
}

.lname img {
  position: relative;
  top: -15vw;
  left: 60vw;
  
}



/* <!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ interface ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */

.InterfacedentecContainer {
  position: relative;
  width: 100%;
  height: 100vh;
  top: -30rem;

  display: grid;
  grid-template-columns: repeat(3, 1.2fr) ;
  grid-template-rows: repeat(1, 1.2fr);
  grid-column-gap: 1rem;
  grid-row-gap: 25px;
  overflow: hidden;
  background-color: #000;
  }

  .interfacedentecHeader { 
    grid-area: 1 / 1 / 3 / 2;
    
    width: 100%;
    margin-left: 70%;
    margin-bottom: 5%;
    align-content: end;
    line-height: 1.8rem;
    }

  .interfacedentecHeader h2 {
    color: #000;
    margin-bottom: 1rem;
  }


.InterfacedentecContainer img {
width: 15%;
height: auto;
object-fit: cover;
}

.InterfacedentecContainer img:hover {
transform: scale(1.5);
}

.HomeScreen { 
grid-area: 3 / 1 / 4 / 2; 
justify-self: flex-end;
align-self: center;
transition: transform 0.3s ease; 

}

.Screen2 { 
grid-area: 3 / 2 / 4 / 3;
justify-self: center;
align-self: center; 
transition: transform 0.3s ease; 

}

.Screen3 { 
grid-area: 3 / 3 / 4 / 4;
justify-self: flex-start;
align-self: center; 
transition: transform 0.3s ease; 

}

.Screen4 { 
grid-area: 4 / 1 / 5 / 2;
justify-self: flex-end;
align-self: center; 
transition: transform 0.3s ease; 

}

.Screen5 { 
grid-area: 4 / 2 / 5 / 3;
justify-self: center;
align-self: center; 
transition: transform 0.3s ease; 

}

.Screen6 { 
grid-area: 4 / 3 / 5 / 4;
justify-self: flex-start;
align-self: center; 
transition: transform 0.3s ease; 

}

.Screen7 { 
grid-area: 5 / 1 / 6 / 2; 
justify-self: flex-end;
align-self: center; 
transition: transform 0.3s ease; 

}

.Screen8 { 
grid-area: 5 / 2 / 6 / 3;
justify-self: center;
align-self: center;   
transition: transform 0.3s ease; 

}

.Screen9 { 
grid-area: 5 / 3 / 6 / 4; 
 justify-self: flex-start;
align-self: center;
transition: transform 0.3s ease; 

}

/* <!-- ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ interface video ▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ --> */


.interface_vid {
  position: relative;
  top: -30rem;

  width: 100%;

}



.Check_Section {
  width: 100%;

  height: 90vh;
  position: relative;
  left: 0vw;
  top: -31rem;

  /* overflow: hidden; */
}


.Showreel_Video {
  width: 60vw;
  height: 71vh;
  position: relative;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1440px) {
  .Showreel_Video {
    width: 63vw;
    height: 63vh;
  }
}

@media only screen and (max-width: 1194px) {
  .Showreel_Video {
    width: 85vw;
    height: 70vh;
  }
}


.heading4 {
  position: relative;
  left: 10vw;
  top: 5vw;
}







.footer {
  position: relative;
  width: 100vw;
  height: 30vw;
  background: var(--pink);
}

.footer_lax_container {
  position : relative ;
  display: inline-block;
  width : 70vw;
  height : 20vw;
  /* outline: #476F6F 2px solid; */
  overflow: hidden;
}


.connect_text {
  position: absolute;
  top:12vw;
  left: 10vw;
  font-family : Quincy CF;
  font-weight: 400;
  font-size : 5.5vw;
  letter-spacing : 0.2vw;
  color : var(--beige);
}


.contact_info{
  position: absolute;
  line-height: 1;
  width: 50vw;
  top: 3vw;
  left: 65vw;
}

.connect_line {
  position: absolute;
  width: 28vw;
  top: 60%;
  left: 38vw;
  transform: translate(-50%, -50%);
}

.j_lax_01 {
  position : relative ;
  left: 1vw;
  top: 2vw;
  width : 4vw;

}

.j_lax_02 {
  position : relative ;
  left: 8vw;
  top: 8vw;
  width : 6vw;

}

.j_lax_03 {
  position : relative ;
  left: 6vw;
  top: 7vw;
  width : 8vw;

}
































































