/* TRANSITION ANIMATION BETWEEN PAGES */
::view-transition-old(root) {
  animation: 0.4s ease-in both move-out;
}
  
::view-transition-new(root) {
  animation: 0.4s ease-in both move-in;
}

/* Create a custom animation */
@keyframes move-out {
  from {
    transform: translateY(0%);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes move-in {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0%);
  }
}


/********** GENERAL STYLES ************/
html, body, section.horizontal {
  overflow-x: hidden;
}
body { 
  margin: 0;
  padding: 0;
  font-family: 'Instrument Sans', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif, -apple-system, system-ui, BlinkMacSystemFont;
}
body.hide-custom-cursor {
	cursor: default; /* or none, depending on your use case */
}
.wf-loading {
	visibility: hidden;
}
.wf-active {
	visibility: visible;
}
body.fonts-loaded {
  visibility: visible;
}
.lg-on,
.lg-on body,
.lg-on #smooth-wrapper,
.lg-on #smooth-content,
.no-scroll,
.no-scroll body,
.no-scroll #smooth-wrapper,
.no-scroll #smooth-content {
  overflow: hidden !important;
  height: 100% !important;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

#smooth-wrapper {
	background: radial-gradient(circle at 89.98% 8.02%, #fefefe, transparent 67%),radial-gradient(circle at 49.01% 13.86%, #fefefe, transparent 61%),radial-gradient(circle at 9.00% 17.53%, #fdfdfd, transparent 58%),radial-gradient(circle at 7.83% 86.25%, #e5e9da, transparent 67%),radial-gradient(circle at 93.02% 91.98%, #e5e9da, transparent 61%),radial-gradient(circle at 47.68% 82.93%, #f8f3f0, transparent 100%),radial-gradient(circle at 50% 50%, #ffffff, #ffffff 100%);
  background-size: 240% 240%;
  animation: gradient-animation 8s ease infinite;
	transition: opacity 0.3s ease-in-out;
}
.cs #smooth-wrapper {
	background: rgb(255,255,255);
	background: radial-gradient(circle, rgba(255,255,255,1) 1%, rgba(230,232,218,1) 24%, rgba(246,236,235,1) 49%, rgba(242,248,238,1) 73%, rgba(255,255,255,1) 99%);
}
.design #smooth-wrapper {
	background: rgb(255,255,255);
	background: radial-gradient(circle, rgba(255,255,255,1) 1%, rgba(230,232,218,1) 24%, rgba(246,236,235,1) 49%, rgba(242,248,238,1) 73%, rgba(255,255,255,1) 99%);
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@property --card-bg {
  syntax: "<color>";
  inherits: false;
  initial-value: #e5e9da;
}

@property --shine-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #f2f7e0;
}

@property --shine-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #eae3d9;
}

@property --shine-3 {
  syntax: "<color>";
  inherits: false;
  initial-value: #fbf9fa;
}

@keyframes animate-color-1 {
  from {
    --shine-1: initial;
  }
  to {
    --shine-1: lightgreen;
  }
}

@keyframes animate-color-2 {
  from {
    --shine-2: initial;
  }
  to {
    --shine-2: lightorange;
  }
}

@keyframes animate-color-3 {
  from {
    --shine-3: initial;
  }
  to {
    --shine-3: white;
  }
}

p {
    transform: scale(1);
}
a {
	position: relative;
	text-decoration: none;
}
a:focus, a:hover, a:active, a.active {
	color: inherit;
	text-decoration: none;
}
a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-in-out;
  transform: scaleX(0);
}
a:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.gallery-item a:before,
.img-container a:before {
  display: none;
}


/************** HEADER STYLES************/
header {
	position: fixed;
	width: 125px;
	height: 100vh;
	z-index: 1;
}
.inner-header {
  position: relative;
  height: 100%;
  z-index: 1;
}

.logo {
  position: absolute;
  top: 25px;
  left: 25px;
}
.logosvg {
  isolation: isolate;
  mix-blend-mode: difference; /* Apply this to the entire SVG */
  will-change: transform; /* Forces a compositing layer */
  transform: translateZ(0); /* Also forces hardware acceleration */
}
.logo-group {
	isolation: isolate;
}
.fixed-color {
	mix-blend-mode: normal;
}

.logo-vertical {
  width: 26px; /* set the width of the logo */
  height: 165px; /* set the height of the logo */
  display: inline-block; /* make the logo an inline-block element */
}

.logo-horizontal {
  width: 100%;
  height: auto;
	max-width: 200px;
  display: inline-block;
}
.logo svg {
	position: relative;
  width: 100%; /* make the SVG full width of its container */
  height: 100%; /* make the SVG full height of its container */
  display: block; /* make the SVG a block element */
}

.logo a:before {
	display: none;
}

@media (max-width: 960px) {
  :root {
    --header-height: 80px;
    --background-color: #ffffff;
  }
	header {
    position: fixed;
    width: 100vw;
    height: var(--header-height);
    z-index: 2;
	}

	.logo {
        left: 0px;
	}
    /*
    .logosvg.headline-pinned .cinq2 {
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
  
    .logosvg:not(.headline-pinned) .cinq2 {
        opacity: 1;
        transition: opacity 0.3s ease-in-out;
    }
    */
    header .blur {
    --blur-height: calc(var(--header-height) * 1.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    height: var(--blur-height);
    -webkit-mask-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 58 70'%3E%3Cpath fill='url(%23a)' d='M0 52h54v18H0z'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M54 52h4a4 4 0 0 0-4 4z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' d='M0 0h58v52H0z'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='27' x2='27' y1='52' y2='70' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.188'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E), url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 52 52'%3E%3Cpath fill='%23000' d='M-15000 0h30000v30000h-30000z'/%3E%3C/svg%3E), url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 254 70'%3E%3Cpath fill='url(%23a)' d='M4 52h250v18H4z'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M4 52H0a4 4 0 0 1 4 4z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' d='M0 0h254v52H0z'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='129' x2='129' y1='52' y2='70' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.188'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E);
    mask-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 58 70'%3E%3Cpath fill='url(%23a)' d='M0 52h54v18H0z'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M54 52h4a4 4 0 0 0-4 4z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' d='M0 0h58v52H0z'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='27' x2='27' y1='52' y2='70' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.188'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E), url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 52 52'%3E%3Cpath fill='%23000' d='M-15000 0h30000v30000h-30000z'/%3E%3C/svg%3E), url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 254 70'%3E%3Cpath fill='url(%23a)' d='M4 52h250v18H4z'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M4 52H0a4 4 0 0 1 4 4z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' d='M0 0h254v52H0z'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='129' x2='129' y1='52' y2='70' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='.188'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E);
    left: 0;
    -webkit-mask-position: left, left top, right;
    mask-position: left, left top, right;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto, 100% var(--header-height), auto;
    mask-size: auto, 100% var(--header-height), auto;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;

    border: 1px solid hsla(var(--background-color));

    background: rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .logo-horizontal.over-section2-index .cinq2 {
    fill: #ffffff !important;
  }
  .logo-horizontal.over-section3-index .cinq2 {
    fill: #2e331f !important;
  }
  .logo-horizontal.over-section4-index .cinq2 {
    fill: #2e331f !important;
  }
  .logo-horizontal.over-section5-index .cinq2 {
    fill: #ffffff !important;
  }
  .logo-horizontal.over-section6-index .cinq2 {
    fill: #ffffff !important;
  }
}


/************* GENERAL HOMEPAGE SECTIONS *****************/
section {
  position: relative;
  width: calc(100vw - 125px);
  min-height: 100%;
	left: 75px;
	margin-bottom: -1px;
	z-index: 1;
}
#section1-index {
	background-color: #d9e0d0;
  /* background: linear-gradient(222deg,#dcf1c0,#eff5e4,#d0e7a6,#eef1e9); */
  background-size: 240% 240%;
  animation: gradient-animation 8s ease infinite;
	border-radius: 12px 12px 12px 12px;

}
#section2-index {
	background: #262119;
	border-radius: 0px 0px 12px 12px;
    margin-top: -8px;
    z-index: 0;
}
#section3-index {
	background: #f8f9f3;
  border-radius: 12px 12px 12px 12px;
    margin-top: -8px;
    z-index: 1;
}
#section4-index {
	background: transparent;
}
#approach {
	z-index: 1;
}
#section5-index {
	background: rgb(23,34,38);
	background: linear-gradient(0deg, rgba(23,34,38,1) 0%, rgba(14,78,58,1) 100%);
  border-radius: 12px 12px 0px 0px;
	z-index:1;
}
#section6-index {
	background-color: #172226;
  border-radius: 0px 0px 12px 12px;
	z-index:1;
}
/*
#section4 {
  background: radial-gradient(
      300px circle at 55% 60% in oklab, 
      var(--shine-2), transparent 100% 100%
    ), radial-gradient(
      farthest-side circle at 75% 30% in oklab, 
      var(--shine-1) 0%, var(--card-bg) 100%
    ), radial-gradient(
      300px circle at 55% 60% in oklab, 
      var(--shine-3), transparent 100% 100%
    );
  background-blend-mode: color-burn;
  animation: animate-color-1 8s infinite linear alternate, 4s animate-color-2 1s infinite linear alternate, 2s animate-color-3 1s infinite linear alternate;
}
*/
@media (max-width: 960px) {
	section { 
	  width: 100%;
		left: 0px;
		border-radius: 0 0 0 0;
	}
  #section1-index,
	#design,
	#motion,
    #section6-index {
		border-radius: 0 0 0 0;
	}
}

.highlight {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 5px 3px;
  margin: 0px 0 -5px 0;
  line-height: .7em;
}

.highlight-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%; /* animate this */
  height: 100%;
  background-color: #b2e327;
  z-index: 1;
}

.highlight-text {
  position: relative;
  z-index: 2;
  color: #d9e0d0; /* start text color */
}

@media (max-width: 768px) {
  .main {
    padding: 20px;
  }
}


/************* H1 HEADLINE STYLES *******************/
.headline h1 { /* HOME PAGE MAIN SECTION HEADLINES */
  font-size: clamp(2rem, calc(3.35vw + 0.18rem), 3.52rem);
  margin: 0;
  line-height: 0.78;
	font-family: 'owners-xxwide', arial, tahoma, sans-serif;
	font-weight: 800;
	text-transform: uppercase;
}
.headline-portfolio h1 { /* PORTFOLIO PAGES MAIN HEADLINE */
	font-size: clamp(8.5rem, calc(5.0vw + 0.18rem), 5.0rem);
	margin: 0;
	line-height: 0.78;
	font-family: 'owners-xxnarrow', arial, tahoma, sans-serif;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.headline-design h1 {
	font-size: clamp(2rem, calc(2.35vw + 0.18rem), 3.52rem);
  margin: 0;
  line-height: 1;
	font-family: 'owners-xxwide', arial, tahoma, sans-serif;
	font-weight: 500;
	text-transform: uppercase;
}
#section1-motion .headline-motion h1 {
	font-size: clamp(4rem, calc(6.35vw + 0.18rem), 6.52rem);
  margin: 0;
  line-height: 0.78;
	font-family: 'owners-xxnarrow', arial, tahoma, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}
#section3-motion .headline-motion h1 {
	font-size: clamp(4rem, calc(6.35vw + 0.18rem), 6.52rem);
  margin: 0;
  line-height: 1;
	font-family: 'owners-xnarrow', arial, tahoma, sans-serif;
	font-weight: 500;
	text-transform: uppercase;
}
#section5-motion .headline-motion h1 {
	font-size: clamp(6rem, calc(6.35vw + 0.18rem), 6.52rem);
    margin: 0;
    line-height: 1;
	font-family: 'owners-xnarrow', arial, tahoma, sans-serif;
	font-weight: 500;
	text-transform: uppercase;
}
footer .headline h1 {
  line-height: 1;
}
.word {
  display: inline-block;
  white-space: nowrap;
}
.icon-wrapper {
  display: inline-flex;
  align-items: baseline;
}
.icon-wrapper svg {
  height: 0.5em;
  width: auto;
  vertical-align: baseline;
  margin-left: 0.2em;
}
.headline span {
  display: inline-block;
}

@media (max-width: 960px) {
    .headline h1 { /* HOME PAGE MAIN SECTION HEADLINES */
        font-size: clamp(1.25rem, calc(3.35vw + 0.18rem), 3.52rem);
        line-height: 1;
    }
    .headline-portfolio h1 {
        font-size: clamp(4.5rem, calc(5.0vw + 0.18rem), 5.0rem);
    }
	footer .headline h1 {
		font-size: clamp(1.25rem, calc(3.35vw + 0.18rem), 3.52rem);
	}
}

/*********** FOR ANIMATION IN ****************/
.headline h1, .headline-portfolio h1 {
  visibility: hidden; /* Hide initially */
}
.headline h1.ready, .headline-portfolio h1.ready {
  visibility: visible;
}


/************ HORIZONTAL SECTION ***********/
section.horizontal {
  overflow-x: hidden;
  overflow-y: hidden;
	left: initial;
  width: initial;
}
section.horizontal .pin-wrap,
section.horizontal .animation-wrap {
  display: flex;
  position: relative;
  z-index: 1;  
  height: 100vh;
}
section.horizontal .item {
  position: relative;
  flex: 0 0 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1.7;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow:hidden;
}
section.horizontal .item.short-item {
  flex: 0 0 1px;
  height: 100vh;
}
section.horizontal .item.post-waves {
  flex: 0 0 500px;
  height: 100vh;
}
section.horizontal .item.long-item {
  flex: 0 0 250vw;
  height: 100vh;
  background: transparent;
}
section.horizontal .animation-wrap.to-right {
  float: left;
}
section.horizontal .animation-wrap.to-left {
  float: right; 
}
.horizontal h1.waves {
		color: #00c375;
    font-family: 'owners-xnarrow';
    font-weight: 900;
    font-size: 40rem;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0 auto 0 auto;
    padding: 0 10% 0 5%;
}
@media (max-width: 960px) {
  section.horizontal {
    overflow-x: unset;
    overflow-y: unset;
  }
  section.horizontal .item.long-item {
    flex: 0 0 100vw;
    overflow: visible;
  }
  section.horizontal .animation-wrap.to-right {
    float: none;
  }
  section.horizontal .animation-wrap.to-left {
    float: none; 
  }
  .horizontal h1.waves {
    font-family: 'owners-xxnarrow';
    font-size: 25vh;
    font-size: clamp(9.0rem, calc(3.55vw + 0.18rem), 6.0rem);
    line-height: .85;
    white-space: break-spaces;
    padding: 0 40px 0 40px;
    text-align: left;
  }
}

/*********** APPROACH SECTION **************/
.approach_container {
  position: relative;
  display: block;
  width: 80vw;
  height: 80vh;
  margin: 0 auto;
}
.custom-inner-section {
  height: 100%; /* Make sure it fills its parent */
  overflow: hidden; /* Prevent native scrollbars from appearing on `.innerpin` */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.innerpin {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; /* Stack child elements (panels) vertically */
  position: relative;
  top: 0;
  overflow: hidden; /* Hide scrollbars */
  border-radius: 12px 12px 12px 12px;
  border: 5px solid #00c375;
}
.scroll-innerpin {
  position:relative;
  height: 100%;
}
.panel {
  flex: 0 0 100%; /* Each panel takes full width */
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3%;
  border: none;
}
.approach_headline h2 {
  font-size: clamp(2rem, calc(3.48vw + 0.18rem), 3.52rem);
  margin: 0;
  line-height: 1;
	font-family: 'owners-xxwide', arial, tahoma, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
  color: #242f35;
}
.panel:nth-child(1) {
  background-color: rgba(255,255,255,.4);
}
.panel:nth-child(2) {
  background-color: rgba(255,255,255,.4);
}
.panel:nth-child(3) {
  background-color: rgba(255,255,255,.4);
}
.panel:nth-child(4) {
  background-color: rgba(255,255,255,.4);
}
.panel:nth-child(5) {
  background-color: rgba(255,255,255,.4);
}
.panel_content h4 {
  position: relative;
  display: block;
  color: #354d2b;
  font-family: 'Instrument Sans', arial, tahoma, sans-serif;
  font-weight: 500;
  font-size: 1.0rem;
}
.panel_content .h4-underline:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  height: .025rem;
  background-color: #7fdfb9;
  width: var(--width, 0);
  transition: width 0.5s;
}
.panel_content .h4-underline span {
  position: relative;
  display: inline-block;
}
.panel_content .h4-underline span:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  background-color: #00c377;
  width: var(--span-width, 0);
  transition: width 0.5s;
}
.panel_content p, .panel_content ul li {
  color: #545952;
  font-family: 'Instrument Sans', arial, tahoma, sans-serif;
  font-weight: 400;
  font-size: .8rem;
}
.approach_key {
  position: absolute;
  display: flex;
  align-items: center;
  justify-self: center;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00c375;
  z-index: 1;
}
.approach_key span {
  width: 95%;
  display: inline;
  text-align: center;
  color: white;
  font-family: 'owners-xnarrow', arial, tahoma, sans-serif;
  font-size: 1.75rem;
  line-height: 1em;
  letter-spacing: 2px;
}
@media (max-width: 960px) {
  .approach_headline h2 {
    font-size: clamp(1.0rem, calc(3.48vw + 0.18rem), 3.52rem);
  }
}


/********CHILD PAGE GENERAL TEXT STYLES ********/
.specialty-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Instrument Sans', arial, tahoma, sans-serif;
}
.cs .specialty-list {
	margin: 0 0 20px 0;
}
.specialty-list li {
  margin: 0 0 20px 0;
  font-size: 1.0em;
}
.cs .specialty-list li {
	margin: 0 0 3px 0;
}
.specialty-list li:first-child {
  font-family: 'lft-etica-mono', monospace;
  font-weight: 200;
  text-transform: uppercase;
}
h3.overview {
  text-transform: uppercase;
  font-size: 1.55em;
  font-family: 'owners-xnarrow', arial, tahoma, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
p.overview {
  font-family: 'lft-etica-mono', monospace;
  font-weight: 200;
  text-transform: uppercase;
}
.overview ul {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}
.overview ul li,
.overview p {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.0em;
}
.overview p.overview_title,
.overview ul li:first-child {
  font-family: "lft-etica-mono", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
}

/*CASE STUDY TESTMONIALS*/
.testimonial_box {
	font-size: 1.0em;
}
.testimonial_mark {
	position: relative;
	width: 55px;
	height: 30px;
	margin: 0 0 10px 0;
}
.testimonial_mark:before,
.testimonial_mark:after {
	position: absolute;
	font-family: 'owners-xxwide', arial, tahoma, sans-serif;
	font-weight: 800;
	line-height: 1;
	font-size: 1.25rem;
}
.testimonial_mark:before {
	content: '“';
	top: 0;
	left: 0;
}
.testimonial_mark:after {
	content: '”';
	top: 7px;
	left: 22px;
}
.testimonial_quote {
  font-family: 'Instrument Sans', arial, tahoma, sans-serif;
	font-weight: 100;
	line-height: 1.5rem;
	margin: 0 0 20px 0;
}
.testimonial_name {
  font-family: 'lft-etica-mono', arial, tahoma, sans-serif;
	font-size: .65em;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 10px 0;
}
.testimonial_position {
  font-family: 'Instrument Sans', arial, tahoma, sans-serif;
	font-size: .65em;
	font-weight: 100;
	line-height: 1;
}

/********COMPANY SECTION *******/
.company-list {
  list-style: none;
  color: #feffff;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  justify-self: right;
}
.company-list li {
  position: relative;
  color: #feffff;
  padding: 0.0rem 0.5rem 1rem 0.5rem;
  margin: 0.5rem 0;
}
.company-list li:first-child {
  color: #9cf573;
  font-weight: 600;
}
.company-list li:last-child:after {
  display:none;
}
.company-list li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.025em;
  background-color: rgba(128,138,101,.5);
  transform-origin: left;
}
@media (max-width: 960px) {
  .company-list {
    justify-self: left;
  }
}

@media (max-width: 840px) {
    .marquee {
      white-space: nowrap;
    }
    .marquee__inner {
      display: flex;
      gap: 20px;
    }
    .marquee__content {
      display: flex; 
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 20px;
    }
  
    .marquee li {
      padding: 0 20px; 
      margin: 0 10px;
    }
}

/***** FOOTER *********/
footer {
	position: relative;
  z-index: 10;
  margin-top: -1px;
}
.footer-logo-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
	transition: all 0.15s ease;
}
.footer-logo {
  width: 100%;
  height: auto;
  display: block;
	transition: all 0.15s ease;
}

.brandmagic-icon {
	display: inline-block;
	vertical-align: middle; /* Prevents alignment quirks with h1 */
	opacity: 0;
	transition: opacity 0.5s ease;
}
.brandmagic-icon svg {
	transition: all 0.5s ease;
}

.footer-ul {
	color: #fff;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	list-style: none;
	font-family: 'Instrument Sans', arial, tahoma, sans-serif;
	font-weight: 400;
}
.footer-p a,
.footer-ul a {
  font-family: 'Instrument Sans', arial, tahoma, sans-serif;
  font-weight: 400;
	color: #fff;
}
.footer-ul a.startlink {
  color:#b2e327;
}
.footer-p.copyright {
  color: #576157;
}

.dots {
  position: absolute;
  bottom: 40px;
  left: 35px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.progress-dot {
	position: relative;
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid #5bbf9b;
  border-radius: 50%;
}
.progress-dot:hover,
.progress-dot.active {
  background: #5bbf9b;
  border: 1px solid #5bbf9b;
}
.progress-dot[data-section-title]::before,
.progress-dot[data-section-title]::after {
	opacity: 0;
	transition: opacity 0.025s ease-out;
}
.progress-dot[data-section-title]:hover::before,
.progress-dot[data-section-title].active::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	bottom: initial;
	transform: translateY(-50%) rotate(45deg);
	transform-origin: initial;
	width: 23px;
	height: 23px;
	background-color: #27ae60;
	border-radius: 2px;
	opacity: 1;
}
.progress-dot[data-section-title]:hover::after,
.progress-dot[data-section-title].active::after {
  content: attr(data-section-title);
  position: absolute;
  top: 50%;
  left: 30px; /* Offset the tooltip to the right of the dot */
  transform: translateY(-50%);
  background-color: #27ae60;
  color: #fff;
  padding: 8px 15px;
	font-family: 'owners-xnarrow', arial, tahoma, sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	padding: 6px 15px;
	font-size: 1.25rem;
	line-height: 1;
    letter-spacing: 2px;
  white-space: nowrap;
  border-radius: 6px; /* Rounded tooltip box */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
	opacity: 1;
}
@media (max-width: 960px) {
	.dots { display: none; }
}
.progress-dot[data-index="1"]:before {
    display: none;
}



/* ******** WAVELINES ************/
.wavelines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  min-width: 100%;
  transform: translateZ(0); /* Force GPU acceleration for smoother animation */
}

.txt1, .txt2 {
    color: #00c375;
    font-family: 'owners-xxnarrow';
    font-weight: 900;
    font-size: 90vh;
    transition: font-size 0.2s ease-in-out;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    dominant-baseline: middle;
    text-anchor: middle;
}
@media screen and (min-width: 2400px) {
    .txt1, .txt2 {
      font-size: clamp(1rem, calc(2vw + 0.5rem), 50rem);
    }
}
/*
.waveline-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.waveline {
  position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: auto;
  overflow: visible;
}

polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  translate: 0 25px;
}
*/


.text-white {
	color: #ffffff;
}
.text-lavender {
	color: #a695db;
}
.text-black {
	color: #000000;
}


/* Flex Alignment */
.flex-vertical-top .columns {
  align-items: start;
}
.flex-vertical-middle .columns {
  align-items: center;
}
.flex-vertical-bottom .columns {
  align-items: end;
}
.flex-vertical-top-important .columns {
  align-items: start !important;
}
.flex-vertical-middle-important .columns {
  align-items: center !important;
}
.flex-vertical-bottom-important .columns {
  align-items: end !important;
}


.bg-gradient-primary {
  background-image: radial-gradient(
    circle at 78% 16%,
    #fafffc 0,
    #5cf0bb 22%,
    #5cf0bb 57%,
    #fafffc 100%
  );
}
.gradient-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 66.02%, #ffffff, transparent 81%),
    radial-gradient(circle at 9.99% 31.01%, #ebf1e5, transparent 84%),
    radial-gradient(circle at 50% 50%, #fffefb, #e6f1e7 100%);
}

.bottomBadge {
  position: fixed;
  bottom: 20px;
  right: 0px;
  width: 150px;
  background-color: #011514;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px 0 0 5px;
  text-transform: uppercase;
  font-family: "owners-xnarrow", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 0.88;
}
.bottomBadge:before {
	display: none;
}

/********* GENERAL SLIDER STYLES *********/
:root {
  --design-slide-height: 780px;
  --motion-slide-height: 630px;
  --company-slide-height: 700px;
}
.gallery {
    position: relative;
    display: flex;
    align-items: center;
    /*justify-content: center; *THIS FUCKS UP THE SIDE SCROLL ACTION */
	
	width: 100%;
	overflow: hidden;
}
.gallery.gallery-design {
    height: var(--design-slide-height) !important;
}
.gallery.gallery-motion {
	height: var(--motion-slide-height) !important;
}
.gallery.gallery-company {
    height: var(--company-slide-height) !important;
}
.gallery-item {
    position: relative;
    display: flex;
	align-items: self-start;
    justify-content: center;
    flex-shrink: 0;
    will-change: transform;
	width: auto;
	height: 100%;
	margin: 0 12px 0px 12px;
    padding: 0 0 0 0;
}
.portfolio .gallery-item {
    margin: 0 16px 0px 16px;
}
.gallery-item.has-info {
	padding: 0 0 0px 0;
}
.gallery-company .gallery-item {
  padding: 0 0 180px 0;
  margin: 0px 0px 0px 0px;
}
.gallery-item:first-child {
	margin-left: 32px;
}
.portfolio .gallery-item:first-child {
	margin-left: 32px;
}
.gallery-company .gallery-item:first-child {
	margin-left: 0px;
}
.gallery .gallery-img img {
    opacity: 0;
}
.gallery-design .gallery-img {
    max-width: 100%;
    height: calc(var(--design-slide-height) - 90px) !important;
}
.gallery-motion .gallery-img {
    max-width: 100%;
    height: calc(var(--motion-slide-height) - 90px) !important;
}
.gallery-company .gallery-img {
    max-width: 100%;
    height: calc(var(--company-slide-height) - 90px) !important;
}
.gallery-item img {
  max-width: 100%;
  height: auto;
  object-fit: cover; /* Cover will maintain aspect ratio while filling container */
  /* Alternatively: use 'contain' to show the entire image without cropping */
  object-position: center; /* Center the image within the container */
  aspect-ratio: attr(data-width) / attr(data-height);
	
}
.gallery-item:not(.is-mobile-graphic) img {
	border-radius: 12px;
}
@media (max-width: 960px) {
	:root {
		--design-slide-height: auto;
		--motion-slide-height: auto;
        --company-slide-height: auto;
	}
	.gallery-item,
    .gallery-item-mobile {
		flex-shrink: 0;
		max-width: 90vw;
		height: auto;
		display: flex;
		align-items: self-start;
		justify-content: center;
	}
	.gallery-item img,
	.gallery-item-mobile img {
		max-height: 40vh;         /* Or any height you want to standardize */
		width: auto;
		height: auto;
		max-width: 90vw;
		object-fit: contain;      /* Keeps aspect ratio, fits inside */
		display: block;
		
	}
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.slide-content {
  position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0px;
  box-sizing: border-box;
  z-index: 2;
	
}
.gallery-item.has-info:hover .slide-content,
.gallery-item.has-info.active .slide-content {
  opacity: 1;
}
@media (max-width: 960px) {
    .gallery-item.has-info {
        padding: 0 0 90px 0;
    }
    .gallery-item.has-info .slide-content {
        opacity: 1;
    }
}
.cc__controls {
  align-self: anchor-center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  position: relative;
}
.cc__controls-left {
  transform: rotate(-135deg);
  background: transparent;
  border: none;
}
.cc__controls-right {
  transform: rotate(45deg);
  background: transparent;
  border: none;
}
.nuxt-icon.nuxt-icon--fill, .nuxt-icon.nuxt-icon--fill * {
  fill: #00c375 !important;
}
.nuxt-icon svg {
  height: 1em;
  margin-bottom: .125em;
  vertical-align: middle;
  width: 1em;
}

.campaign-title {
  font-family: 'Instrument Sans', arial, helvetica, tahoma, sans-serif;
  font-size: .8em;
  margin: 0 0 15px 0;
  font-weight: 400;
}
.client-name {
  font-family: 'Instrument Sans', arial, helvetica, tahoma, sans-serif;
  font-weight: 400;
  font-size: .6rem;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.client-name span {
  font-family: 'lft-etica-mono', arial, helvetica, tahoma, sans-serif;
  font-weight: 100;
  text-transform: uppercase;
}

.radius0{border-radius:0}.radius1{border-radius:1px}.radius2{border-radius:2px}.radius3{border-radius:3px}.radius4{border-radius:4px}.radius5{border-radius:5px}.radius6{border-radius:6px}.radius7{border-radius:7px}.radius8{border-radius:8px}.radius9{border-radius:9px}.radius10{border-radius:10px}.radius11{border-radius:11px}.radius12{border-radius:12px}.radius13{border-radius:13px}.radius14{border-radius:14px}.radius15{border-radius:15px}.radius16{border-radius:16px}.radius17{border-radius:17px}.radius18{border-radius:18px}.radius19{border-radius:19px}.radius20{border-radius:20px}.radius21{border-radius:21px}.radius22{border-radius:22px}.radius23{border-radius:23px}.radius24{border-radius:24px}.radius25{border-radius:25px}.radius26{border-radius:26px}.radius27{border-radius:27px}.radius28{border-radius:28px}.radius29{border-radius:29px}.radius30{border-radius:30px}.radius31{border-radius:31px}.radius32{border-radius:32px}.radius33{border-radius:33px}.radius34{border-radius:34px}.radius35{border-radius:35px}.radius36{border-radius:36px}.radius37{border-radius:37px}.radius38{border-radius:38px}.radius39{border-radius:39px;}.radius40{border-radius:40px}.radius41{border-radius:41px}.radius42{border-radius:42px}.radius43{border-radius:43px}.radius44{border-radius:44px}.radius45{border-radius:45px}.radius46{border-radius:46px}.radius47{border-radius:47px}.radius48{border-radius:48px}.radius49{border-radius:49px}.radius50{border-radius:50px}.radius51{border-radius:51px}.radius52{border-radius:52px}.radius53{border-radius:53px}.radius54{border-radius:54px}.radius55{border-radius:55px}.radius56{border-radius:56px}.radius57{border-radius:57px}.radius58{border-radius:58px}.radius59{border-radius:59px}.radius60{border-radius:60px}.radius61{border-radius:61px}.radius62{border-radius:62px}.radius63{border-radius:63px}.radius64{border-radius:64px}.radius65{border-radius:65px}.radius66{border-radius:66px}.radius67{border-radius:67px}.radius68{border-radius:68px}.radius69{border-radius:69px}.radius70{border-radius:70px}.radius71{border-radius:71px}.radius72{border-radius:72px}.radius73{border-radius:73px}.radius74{border-radius:74px}.radius75{border-radius:75px}.radius76{border-radius:76px}.radius77{border-radius:77px}.radius78{border-radius:78px}.radius79{border-radius:79px;}.radius80{border-radius:80px}.radius81{border-radius:81px}.radius82{border-radius:82px}.radius83{border-radius:83px}.radius84{border-radius:84px}.radius85{border-radius:85px}.radius86{border-radius:86px}.radius87{border-radius:87px}.radius88{border-radius:88px}.radius89{border-radius:89px;}.radius90{border-radius:90px}.radius91{border-radius:91px}.radius92{border-radius:92px}.radius93{border-radius:93px}.radius94{border-radius:94px}.radius95{border-radius:95px}.radius96{border-radius:96px}.radius97{border-radius:97px}.radius98{border-radius:98px}.radius99{border-radius:99px;}.radius100{border-radius:100px;}

/* Accessibility */
.sr-only,
.screen-reader-text {
	position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}
.p-none {
	display: none;
}
.text-no-wrap {
    text-wrap-mode: nowrap;
    white-space: no-wrap;
}

a[href^="tel"], a[href^="sms"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

/* Smooth Scrollbar styles */
.scrollbar-track {
  background: rgba(222, 222, 222, 0.15) !important;
}

.scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5) !important;
}

.inner-cursor {
	position: fixed;
	left: 10px;
	width: 10px;
	height: 10px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	mix-blend-mode: difference;
	border-radius: 50%;
	pointer-events: none;
	transition: width: 0.5s, height 0.5s;
}
.inner-cursor.grow {
	width: 25px;
	height: 25px;
	transition: width 0.5s, height 0.5s;
}
.outer-cursor {
	position: fixed;
	left: 10px;
	width: 25px;
	height: 25px;
	transform: translate(-50%, -50%);
	border:1px solid #fff;
  border-radius: 50%;
	mix-blend-mode: difference;
  pointer-events: none;
}
body.hide-custom-cursor .inner-cursor,
body.hide-custom-cursor .outer-cursor {
	display: none; /* or none, depending on your use case */
}

/* ------------------------------------------------------------ *\
	SWIPER CAROUSEL CURSOR
\* ------------------------------------------------------------ */
.swiper-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.swiper-cursor.visible {
  opacity: 1;
  visibility: visible;
}
.swiper-cursor .cursor__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -80%) scale(0.7);
  width: 100px;
  height: 100px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
}
.visible .swiper-cursor .cursor__inner {
  transform: translate(-50%, -80%) scale(1);
}

.embed-container { 
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; overflow: hidden; 
  max-width: 100%; 
} 

.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
  position: absolute; 
  top: 0; left: 0; 
  width: 100%; 
  height: 100%; 
}

.img-container {
	position: relative;
}
.img-container img {
	border-radius: 12px 12px 12px 12px;
}

.mobile-play {
	display: none;
}
@media (max-width: 960px) {
	.mobile-play {
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		margin: 0 auto;
		opacity: 1;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}
  .play-video {
		position: relative;
		display: block;
		width: 142px;
    background-color: transparent;
    color: #141C16;
    border: .05rem solid #B3E327;
    border-radius: 1.5rem;
    padding: 8px 20px 8px 8px;
		top: 50%;
    left: 50%;
		transform: translate(-50%, -50%);
		
		background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
    backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
	}
}


/************** MOBILE MENU **************/
.hamburger {
  position: absolute;
	top: 25px;
	right: 0px;
  width: 1.35em;
  height: 1em;
  font-size: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hamburger.is-sm {
  font-size: 1rem;
}
.hamburger.is-md {
  font-size: 1.5rem;
}
.hamburger.is-lg {
  font-size: 2rem;
}
.hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.075em;
  background: #131d15;
  transition: inherit;
}
.over-section2-index.hamburger .hamburger-line {
  background: #00c375;
}
.over-section5-index.hamburger .hamburger-line {
  background: #00c375;
}
.interactive .hamburger-line {
    background: #00c375;
  }
.hamburger-line:nth-child(1) {
  top: 0.125em;
}
.hamburger.is-active .hamburger-line:nth-child(1), .w-nav-button.w--open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotateZ(-135deg);
}
.hamburger-line:nth-child(2) {
  top: 0.35em;
	opacity: 1;
}
.hamburger.is-active .hamburger-line:nth-child(2), .w-nav-button.w--open .hamburger-line:nth-child(2) {
  right: 50%;
  width: 100%;
	opacity: 0;
	transform: translateX(-100%);
}
.hamburger-line:nth-child(3) {
  top: 0.575em;
  width: 0.625em;
}
.hamburger.is-active .hamburger-line:nth-child(3), .w-nav-button.w--open .hamburger-line:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotateZ(135deg);
}

.mobile-menu__container {
  position: fixed;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 999;
  height: 0;
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.2s;
  overflow: hidden;
  background-color: #00c375;
	
	opacity: 0;
	transform: scale(0);
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
}
.mobile-menu__container.open {
	height: 100%;
	opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}
.mobile-menu__list {
  transition: 0.5s;
  transition-delay: 0.5s;
  list-style: none;
  padding-left: 0;
	counter-reset: menu-item-counter; /* Initialize the counter */
}
.mobile-menu__item {
	counter-increment: menu-item-counter;
	font-size: 4rem;
	font-family: 'owners-xnarrow';
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	margin: 15px 0 15px 0;
	padding: 0 0 0 0;
	opacity: 0;
	transition: all 200ms 310ms;
}
.mobile-menu__item:before {
	content: "0" counter(menu-item-counter);
	font-family: 'lft-etica-mono', arial, tahoma, sans-serif;
	font-size: 13px;
	font-weight: 100;
	color: #158e4e;
	margin-right: 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -25px;
	transition: all 100ms 210ms;
}
.mobile-menu__item:hover:before {
	color: #335310;
}
.mobile-menu__container.open ul li {
	opacity: 1;
  transform: translateX(0);
}
.mobile-menu__item:nth-child(odd) {
  transform: translateX(50%);
}
.mobile-menu__item:nth-child(even) {
  transform: translateX(-50%);
}
.mobile-menu__item:last-child {
  transform: none;
}
.mobile-menu__link {
  text-decoration: none;
  color: #ffffff;
	transition: all 0.5s ease;
}
.mobile-menu__link:hover {
  text-decoration: none;
  color: #2f3420;
}
.mobile-menu__link:before {
	display: none;
}
.menu_toggle.close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 0;
	transform: scale(0);
  transition: all 350ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.mobile-menu__container.open .menu_toggle.close-btn {
	opacity: 1;
  transform: scale(1);
  transition-delay: .35s;
}

.embed {
  position: relative;
  padding-bottom: 80%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.embed iframe,
.embed object,
.embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 960px) {
  .embed {
    position: relative;
    padding-bottom: unset;
    padding-top: unset;
    height: unset;
    overflow: unset;
  }
  .embed iframe,
  .embed object,
  .embed embed {
      position: relative;
      top: unset;
      left: unset;
      width: unset;
      height: unset;
  }
}



[data-tooltip]::before {
  /* needed - do not touch */
  content: attr(data-tooltip);
  position: absolute;
  z-index: 50;
  transition: all 0.15s ease;
  padding: 5px;
  color: #333;
  opacity: 1;
  min-width: 200px;
  background: yellow;
  margin-top: -50px;
  margin-left: 20px;
  border-radius: 10px;
  font-size: .75em;
  text-align: center;
  box-shadow: 2px 2px 1px silver;
}

[data-tooltip]:not([data-tooltip-persistent])::before {
  pointer-events: none;
}

.vlightbox {
    position: relative;
    display: block;
}

/* CONTACT FORM */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    overflow: auto;
    opacity: 0;
    transition: background 300ms ease, opacity 300ms ease;
}
.custom-modal-overlay.visible {
    background: rgba(255, 255, 255, 0.88);
    opacity: 1;
}
.custom-modal-overlay.fade-out {
    opacity: 0;
    background: rgba(255, 255, 255, 0.0);
}

/* Modal box */
.custom-modal {
    position: relative;
    background: #edf5ec;
    padding: 2rem;
    max-width: calc(100vw - 115px);
    height: calc(100vh - 35px);
    top: 50%;
    left: calc(50% + 25px);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}
.custom-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.custom-modal.form_complete {
    background: #111611;
}
.custom-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}
@media (max-width: 960px) {
    .custom-modal {
        padding: 125px 1.25rem 1.25rem 1.25rem;
        max-width: calc(100vw - 40px);
        height: calc(100vh - 40px);
        left: 50%;
        overflow: auto;
    }
}

#contactform h3 {
  color: #00cb8c;
  letter-spacing: 2px;
}
.form_complete h3 {
    color: #a8e000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#contactform label {
  color: #111611;
  z-index: 0;
  font-family: 'Instrument Sans', arial, tahoma, sans-serif;
  font-weight: 400;
  font-size: .75rem;
  line-height: 1;

}
#contactform .formblock {
  position: relative;
}
#contactform input[type="text"],
#contactform input[type="email"],
#contactform input[type="tel"],
#contactform textarea {
  box-sizing: border-box;
  font-family: 'Instrument Sans', arial, tahoma, sans-serif;
  font-weight: 400;
}

#contactform .form-input:focus {
  border-color: #ccc;
  box-shadow: unset;
}

.effect-21 {
  border: 1px solid #111611;
  padding: 12px 9px;
  transition: 0.4s;
  background: transparent;
  border-radius: 8px;
  height: unset;
  font-size: 1.0rem;
  z-index: 1;
}
/*
.effect-21 ~ .focus-border:before,
.effect-21 ~ .focus-border:after{content: ""; position: absolute; top: 0; right: 0; width: 0; height: 2px; background-color: #35ba60; transition: 0.2s; transition-delay: 0.2s;}
.effect-21 ~ .focus-border:after{top: auto; bottom: 0; right: auto; left: 0; transition-delay: 0.6s;}
.effect-21 ~ .focus-border i:before,
.effect-21 ~ .focus-border i:after{content: ""; position: absolute; top: 0; left: 0; width: 2px; height: 0; background-color: #35ba60; transition: 0.2s;}
.effect-21 ~ .focus-border i:after{left: auto; right: 0; top: auto; bottom: 0; transition-delay: 0.4s;}
.effect-21:focus ~ .focus-border:before,
.effect-21:focus ~ .focus-border:after,
.has-content.effect-21 ~ .focus-border:before,
.has-content.effect-21 ~ .focus-border:after{width: 100%; transition: 0.2s; transition-delay: 0.6s;}
.effect-21:focus ~ .focus-border:after,
.has-content.effect-21 ~ .focus-border:after{transition-delay: 0.2s;}
.effect-21:focus ~ .focus-border i:before,
.effect-21:focus ~ .focus-border i:after,
.has-content.effect-21 ~ .focus-border i:before,
.has-content.effect-21 ~ .focus-border i:after{height: 100%; transition: 0.2s;}
.effect-21:focus ~ .focus-border i:after,
.has-conten.effect-21 ~ .focus-border i:after{transition-delay: 0.4s;}
.effect-21 ~ label{position: absolute; left: 14px; width: 100%; top: 10px; color: #aaa; transition: 0.3s; z-index: -1; letter-spacing: 0.5px;}
.effect-21:focus ~ label, .has-content.effect-21 ~ label{top: -30px; left: 8px; font-size: .8rem; color: #35ba60; transition: 0.3s; z-index:0; }
*/

#contactform .progress,
#contactform .progress::-webkit-progress-bar,
#contactform .progress::-moz-progress-bar {
  background: #35ba60 !important;
  color: #35ba60 !important;
}

#contactform .progress:indeterminate {
  animation: progress-indeterminate 1.5s linear infinite !important;
  background: #eef0f3 linear-gradient(to right,#35ba60 30%,#eef0f3 30%) top left/150% 150% no-repeat !important;
}

.progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #eef0f3;
    border: 0;
    border-radius: .1rem;
    color: #b3e327;
    height: .2rem;
    position: relative;
    width: 100%
}

.progress::-webkit-progress-bar {
    background: 0 0;
    border-radius: .1rem
}

.progress::-webkit-progress-value {
    background: #b3e327;
    border-radius: .1rem
}

.progress::-moz-progress-bar {
    background: #b3e327;
    border-radius: .1rem
}

.progress:indeterminate {
    animation: progress-indeterminate 1.5s linear infinite;
    background: #eef0f3 linear-gradient(to right,#b3e327 30%,#eef0f3 30%) top left/150% 150% no-repeat
}

.progress:indeterminate::-moz-progress-bar {
    background: 0 0
}

#contactform input[type="text"]::-webkit-input-placeholder,
#contactform input[type="email"]::-webkit-input-placeholder,
#contactform input[type="tel"]::-webkit-input-placeholder,
#contactform textarea::-webkit-input-placeholder {
  color: #A9B7A7 !important;
  font-family: 'Instrument Sans', arial, tahoma, sans-serif !important;
  font-weight: 400 !important;
}

#contactform input[type="text"]:-moz-placeholder,
#contactform input[type="email"]:-moz-placeholder,
#contactform input[type="tel"]:-moz-placeholder,
#contactform textarea:-moz-placeholder,
#contactform input[type="text"]::-moz-placeholder,
#contactform input[type="email"]::-moz-placeholder,
#contactform input[type="tel"]::-moz-placeholder,
#contactform textarea::-moz-placeholder {
    color: #A9B7A7 !important;
    font-family: 'Instrument Sans', arial, tahoma, sans-serif !important;
    font-weight: 400 !important;
}

#contactform input[type="text"]:-ms-input-placeholder,
#contactform input[type="email"]:-ms-input-placeholder,
#contactform input[type="tel"]:-ms-input-placeholder,
#contactform textarea:-ms-input-placeholder {
    color: #A9B7A7 !important;
    font-family: 'Instrument Sans', arial, tahoma, sans-serif !important;
    font-weight: 400 !important;
}

#contactform input[type="text"]::placeholder,
#contactform input[type="email"]::placeholder,
#contactform input[type="tel"]::placeholder,
#contactform textarea::placeholder {
    color: #A9B7A7 !important;
    font-family: 'Instrument Sans', arial, tahoma, sans-serif !important;
    font-weight: 400 !important;
}

.gslide-inline {
    background: #edf5ec;
    text-align: left;
    max-height: 100vh;
    height: 100% !important;
    overflow: auto;
    width: 100% !important;
    max-width: 100%;
    margin: auto;
}


/* VIDEO LIGHTBOX */
html.lightbox-scroll-lock,
html.lightbox-scroll-lock body {
    overflow: hidden !important;
    height: 100% !important;
}

html.lightbox-scroll-lock .smooth-wrapper {
    pointer-events: none;
    transform: none !important;
    will-change: auto !important;
    height: 100vh !important;
    overflow: hidden !important;
}
.lg-toolbar .lg-icon {
    color: unset;
    height: 88px;
    margin: 10px 10px 0 0;
    padding: 0;
    width: 88px;
}
.lg-toolbar .lg-close:after {
    display: none;
    content: "";
}
.cvideo-lightbox .lg-backdrop {
    background: rgba(255,255,255,.85);
}
.cvideo-lightbox .lg-outer {
    width: calc(100% - 125px);
    height: calc(100% - 50px);
    position: fixed;
    top: 15px;
    left: 75px;
    right: 35px;
    bottom: 35px;
    border-radius: 12px;
    background: #edf5ec;
}
.lg-outer .lg-object {
    max-height: 95%;
}
@media (max-width: 960px) {
    .cvideo-lightbox .lg-outer {
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        position: fixed;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}