/** Shopify CDN: Minification failed

Line 531:20 Unexpected "{"
Line 531:29 Expected ":"
Line 531:36 Unexpected "{"
Line 540:20 Unexpected "{"
Line 540:29 Expected ":"
Line 547:20 Unexpected "{"
Line 547:29 Expected ":"
Line 553:20 Unexpected "{"
Line 553:29 Expected ":"
Line 567:20 Unexpected "{"
... and 13 more hidden warnings

**/


/* CSS from section stylesheet tags */
.bg-hero-section {
  display: flex;
  width: 100%;
  gap: 0;
  align-items: flex-start;
  justify-content: stretch;
}

/* Each half acts as a 3:2 container. We'll use a padding-top fallback for browsers
   that don't support aspect-ratio, and prefer aspect-ratio when available. */
.bg-hero__half {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fallback block that creates height based on 3:2 (height = 66.6667% of width) */
.bg-hero__half::before {
  content: "";
  display: block;
  padding-top: 66.6666667%; /* 2 / 3 = 66.6667% -> enforces 3:2 landscape */
}

/* Default: make the image fill the container absolutely (fallback-safe) */
.bg-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
}

/* If the browser supports aspect-ratio, prefer a simpler layout:
   remove the padding-top pseudo element and let the img size itself. */
@supports (aspect-ratio: 3 / 2) {
  .bg-hero__half::before {
    display: none;
  }
  .bg-hero__half {
    aspect-ratio: 3 / 2;
  }
  .bg-hero__img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
  }
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .bg-hero-section {
    flex-direction: column;
  }
  .bg-hero__half {
    flex-basis: auto;
    width: 100%;
  }
  /* Keep 3:2 on mobile as well */
  .bg-hero__half::before { padding-top: 66.6666667%; }
}
.section-container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px; /* Add horizontal padding for smaller screens */
}

.button-container {
  display: flex;
  justify-content: flex-start; /* Align the button to the right */
  padding: 10px 0; /* Vertical padding */
}

.custom-button {
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.custom-button:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 20px; /* Adjust container padding for mobile */
  }

  .button-container {
    justify-content: center; /* Center the button on mobile */
    padding: 20px 0; /* Adjust vertical padding for mobile */
  }
  
  .custom-button {
    width: 100%; /* Make the button full width on mobile */
    padding: 0 10px;
  }
}
.custom-overview-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}

.container-1500 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}

.overview-section-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: left;
  color: black;
}

.overview-flex {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.overview-item {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.overview-item-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.overview-item-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.overview-item-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

.desktop-only {
  display: flex;
}

.mobile-slider-wrapper {
  display: none;
  position: relative;
  align-items: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: white;
  background-color: transparent;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
  z-index: 2;
}

.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }

/* RP-FWIB button styles */
.rp-button-wrapper {
  margin-top: 2rem;
}

.rp-fwib-button2 {
  display: inline-flex;
  position: relative;
  color: black; 
  align-items: center;
  padding-left: 0px;
  background-color: transparent;
  border: none;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  gap: 0.75rem;
}

.rp-fwib-button2:hover {
  color: red;
  transition: 0.2s;
}

.rp-fwib-icon {
  transform: rotate(90deg);
  width: 0.6em;
  height: 0.6em;
  margin-bottom: 2px;
  fill: currentColor;
  flex-shrink: 0;
}


@media (max-width: 768px) {
  .overview-flex {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: thick;
    scrollbar-color: black transparent;
    -webkit-overflow-scrolling: touch;
  }

  .overview-item {
    flex: none;
    width: 100%;
    scroll-snap-align: start;
    margin-right: 15px;
  }

  .mobile-slider-wrapper {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .overview-flex::-webkit-scrollbar {
    height: 30px;
  }

  .overview-flex::-webkit-scrollbar-track {
    background: transparent;
  }

  .overview-flex::-webkit-scrollbar-thumb {
    background-color: transparent;
  }

  .overview-flex {
    overscroll-behavior-x: contain;
  }
}
.gradient-section {
  width: 100%;
  box-sizing: border-box;
  /* height is set inline */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Optional text color if you add content */
  color: white;
}
.headspace {
      
      background: white;
      height: 100px;
      z-index: 0; /* Ensure it sits behind the transparent header */
    }
.home-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000000;
  overflow: hidden;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fadeInOut 21s infinite;
}

.slide-1 {
  animation-delay: 0s;
}

.slide-2 {
  animation-delay: 7s;
}

.slide-3 {
  animation-delay: 14s;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: scale(1.05); /* Starts at a slightly larger size */
  }
  5% {
    opacity: 1;
    transform: scale(1); /* Fades in and scales down to normal size */
  }
  31% {
    opacity: 1;
    transform: scale(1); /* Stays at normal size */
  }
  33.333% {
    opacity: 0;
    transform: scale(1); /* Fades out at normal size */
  }
  100% {
    opacity: 0;
    transform: scale(1.05); /* Resets to a larger size for the next loop */
  }
}

/* Optional: Add responsive adjustments */
@media (max-width: 768px) {
  .home-section {
    min-height: 100vh;
  }
}
.product-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0px 0;
  overflow: hidden;
  /* Add transition for the product-hero itself if you want other properties to transition */
}

/* Create a pseudo-element for the background image */
.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit; /* Inherit the background image from .product-hero */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease; /* Apply transition to the transform property */
  z-index: 0; /* Ensure it's behind other content */
}

.product-hero:hover::before {
  transform: scale(1.05); /* Scale the background image */
}

.product-hero .background-blur-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: none;
  transition: backdrop-filter 0.5s ease; /* Only backdrop-filter transitions here */
  z-index: 1;
}

.product-hero:hover .background-blur-layer {
  backdrop-filter: blur(4px);
}

.section-link-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

.content-wrapper {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.two-column-layout {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
}

.left-content {
  flex: 1;
  max-width: 70%;
  text-align: left;
}
  
.right-content {
  flex: 1;
  max-width: 30%;
  position: relative;
}

.right-image {
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}


/* Text styles */
.caption {
  color: white;
  font-size: 2.5rem !important;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 30px;
}

.left-paragraph p {
  color: white;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Remove hover color on text */
.section-link-wrapper:hover .caption,
.section-link-wrapper:hover .left-paragraph p {
  color: white;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .product-hero {
    padding: 0px 0;
  }

  .content-wrapper {
    width: 85%;
    padding: 0px 0;
  }

  .two-column-layout {
    flex-direction: column;
    gap: 30px;
  }

  .left-content,
  .right-content {
    max-width: 100%;
    width: 100%;
  }

  .right-content {
    margin-top: 20px;
  }

  .caption {
    padding-top: 15px;
    font-size: 2rem !important;
    margin-bottom: 20px;
  }

  .left-paragraph p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .right-image {
    box-shadow: none;
  }
}
.custom-image-grid-{{ section.id }} {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: black;
}

.custom-image-grid-{{ section.id }} .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  font-size: 0;
}

.custom-image-grid-{{ section.id }} .grid-item {
  position: relative;
  overflow: hidden;
  background: black;
}

.custom-image-grid-{{ section.id }} .grid-item-main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease;
  will-change: transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-color: black;
}

/* Desktop: blur/scale on hover */
.custom-image-grid-{{ section.id }} .grid-item:hover .grid-item-main-image {
  transform: perspective(800px) scale3d(1.08, 1.08, 1) translateZ(0);
  z-index: 2;
  filter: blur(2px) brightness(0.8);
}

.custom-image-grid-{{ section.id }} .grid-item-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50% !important;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55),
              opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

/* Desktop only: fade‐in & scale overlay on hover */
@media (hover: hover) {
  .custom-image-grid-{{ section.id }} .grid-item:hover .grid-item-title-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Responsive grid */
@media (max-width: 1200px) {
  .custom-image-grid-{{ section.id }} .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .custom-image-grid-{{ section.id }} .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-container {
    margin-top: 64px;
  }
}

/* MOBILE (≤480px): overlay always visible at 80% opacity, no transform */
@media (max-width: 480px) {
  .custom-image-grid-{{ section.id }} .grid-container {
    grid-template-columns: 1fr;
  }

  .custom-image-grid-{{ section.id }} .grid-item-title-overlay {
    opacity: 0.8 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }
}
.container1500 {
  max-width: 1500px;
  margin: 0 auto;        /* centers the container horizontally */
  padding: 10px;         /* inner spacing */
  box-sizing: border-box; /* ensures padding is included in width */
  position: block;
}
.recent-projects {
  width: 100%;
  margin: 30px 0;
  padding: 0 20px;
  isolation: isolate;
}

.content-projects-wrapper {
  display: flex;
  flex-direction: column;
}


.section-heading {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: left !important;
  margin-bottom: 2rem;
}

.image-container {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
}

.image-item {
  position: relative;
  flex: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.image-item .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.image-item.has-overlay .overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Desktop hover effect */
@media (hover: hover) and (pointer: fine) {
  .image-item:hover .main-image {
    transform: scale(1.05);
    filter: blur(2px);
  }

  .image-item.has-overlay:hover .overlay-image {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
  }
}

/* Mobile override */
@media (max-width: 768px) {
  .image-container {
    flex-direction: column;
    align-items: center;
  }

  .image-item {
    width: 100%;
    aspect-ratio: auto;
    height: 200px;
  }

  .image-item.has-overlay .overlay-image {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
  }

  .image-item .main-image {
    filter: none;
    transform: none;
  }
}

/* RP-FWIB button styles */
.rp-button-wrapper {
  margin-top: 2rem;
  margin-left: 0px;
}

.rp-fwib-button {
  display: inline-flex;
  position: relative; 
  align-items: center;
  background-color: transparent;
  color: #000;
  border: none;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  gap: 0.75rem;
}

.rp-fwib-button:hover {
  
  color: red;
}

.rp-fwib-icon {
  transform: rotate(90deg);
  width: 0.6em;
  margin-bottom: 3px;
  height: 0.6em;
  fill: currentColor;
  flex-shrink: 0;
}
.full-width-svg-holder {
  width: 100%;
  overflow: hidden;
  background-color: black;
}

.full-width-svg-holder__container {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  padding-left: var(--padding-left);
  padding-right: var(--padding-right);
  max-width: 1600px;
  margin: 0 auto;
}

/* Ensure the image is responsive and fills the container */
.full-width-svg-holder__container img {
  display: block;
  width: 100%;
  height: auto;
}

/* Style for the placeholder */
.full-width-svg-holder--placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #f0f0f0;
  height: 200px;
  border: 2px dashed #ccc;
  color: #777;
  font-family: sans-serif;
}

/* Adjust padding for smaller screens */
@media screen and (max-width: 768px) {
  .full-width-svg-holder__container {
    padding-top: var(--padding-top, 20px);
    padding-bottom: var(--padding-bottom, 20px);
    padding-left: var(--padding-left, 10px);
    padding-right: var(--padding-right, 10px);
  }
}