/** Shopify CDN: Minification failed

Line 570:20 Unexpected "{"
Line 570:29 Expected ":"
Line 570:35 Unexpected "{"
Line 579:20 Unexpected "{"
Line 579:29 Expected ":"
Line 585:20 Unexpected "{"
Line 585:29 Expected ":"
Line 591:20 Unexpected "{"
Line 591:29 Expected ":"
Line 601:20 Unexpected "{"
... and 13 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bg-hero-section (INDEX:4) */
.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%; }
}
/* END_SECTION:bg-hero-section */

/* START_SECTION:button-external (INDEX:6) */
.section-container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
}

.button-container {
  display: flex;
  justify-content: flex-start; /* RIGHT aligned */
  gap: 10px; /* spacing between buttons */
  flex-wrap: nowrap; /* keep all buttons on one line */
  padding: 10px 0;
}

.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;
  }

  .button-container {
    justify-content: center; /* center on mobile */
    flex-wrap: wrap; /* allow 2nd line on mobile */
    gap: 15px;
    padding: 20px 0;
  }

  .custom-button {
    width: auto; /* keep natural width */
    padding: 0 10px;
  }
}
/* END_SECTION:button-external */

/* START_SECTION:custom-overview (INDEX:19) */
.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;
}

/* Container to handle the "contained" zoom effect */
.overview-item-image-container {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden; /* Clips the image when it scales */
  border-radius: 4px; /* Optional: adds a nice rounded corner to the container */
}

.overview-item-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition for both scale and opacity */
}

/* Scale effect triggered when hovering over the container/link */
.overview-item-image-container:hover .overview-item-image {
  transform: scale(1.08); /* Small, smooth zoom (8%) */
  opacity: 0.9;
}

.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;
  }
}
/* END_SECTION:custom-overview */

/* START_SECTION:gradient-section (INDEX:31) */
.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;
}
/* END_SECTION:gradient-section */

/* START_SECTION:headspace (INDEX:33) */
.headspace {
      
      background: white;
      height: 100px;
      z-index: 0; /* Ensure it sits behind the transparent header */
    }
/* END_SECTION:headspace */

/* START_SECTION:home-section (INDEX:34) */
.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-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);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  }
  31% {
    opacity: 1;
    transform: scale(1);
  }
  33.333% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .home-section {
    min-height: 100vh;
  }
}
/* END_SECTION:home-section */

/* START_SECTION:product-hero (INDEX:67) */
.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;
  }
}
/* END_SECTION:product-hero */

/* START_SECTION:projects-overview (INDEX:69) */
.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;
}

.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 .4s ease, filter .35s ease;
  background:black;
}

/* hover effect */
.custom-image-grid-{{ section.id }} .grid-item:hover .grid-item-main-image{
  transform:scale(1.06);
  filter:blur(2px) brightness(.85);
}

.custom-image-grid-{{ section.id }} .grid-item-title-overlay{
  position:absolute;
  top:50%;
  left:50%;
  width:50%!important;
  transform:translate(-50%,-50%);
  opacity:0;
  transition:opacity .35s ease;
  z-index:2;
  pointer-events:none;
}

@media (hover:hover){
  .custom-image-grid-{{ section.id }} .grid-item:hover .grid-item-title-overlay{
    opacity:1;
  }
}

/* responsive */
@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);
    margin-top:64px;
  }
}

@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:.8!important;
  }
}
/* END_SECTION:projects-overview */

/* START_SECTION:recent-projects (INDEX:71) */
.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;
}
/* END_SECTION:recent-projects */

/* START_SECTION:svg-holder-fullwidth (INDEX:78) */
.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);
  }
}
/* END_SECTION:svg-holder-fullwidth */