/* ==========================================================================
  Global Rest
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
*::before, *::after {
  position: absolute;
  content: "";
}
* {
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 100%;
}
body {
  min-height: 100%;
  overflow-x: hidden;
}
input, button, textarea, select {
  font: inherit;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  color: inherit;
}
div, article, section, a, ul, li, aside, address, form, picture, blockquote, button, figure, span, img, header, footer {
  position: relative;
}
p a {
  border-bottom: solid 1px currentColor;
  color: var(--cta-100);
}
p, li {
  max-width: 60ch;
}
li {
  line-height: 1.1;
}
address, cite {
  font-style: normal;
}
::selection {
  background: var(--gray-1000);
  color: var(--white);
}
/* ==========================================================================
  Body Styling
   ========================================================================== */
body {
  --body-background: var(--white);
  --body-color: var(--gray-900);
  --body-fw: 425;
  --headline-color: var(--gray-1100);
  --accent-intro: var(--primary-600);
  --nav-contact-bg: var(--black);
  --nav-contact-color: var(--white);
  --intro-span: var(--gray-300);
  --nav-underline: var(--gray-800);
  --grid-icon-bg: var(--gray-800);
  --faq-divider: var(--gray-100);
  --global-border: var(--gray-400);
}
body {
  font-family: var(--font-base);
  color: var(--body-color);
  background-color: var(--body-background);
  font-size: 1.1rem;
  font-weight: var(--body-fw);
  line-height: 1.25;
}
@media (min-width: 700px) {
  body {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 1.4rem;
  }
}
@media (min-width: 1800px) {
  body {
    font-size: 1.5rem;
  }
}
.delete-links {
  max-width: 680px;
  margin-inline: auto;
  border: solid 1px var(--gray-800);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  font-size: 1.1rem;
  justify-content: space-between;
/*  display: none;*/
}
.delete-links a {
  padding: 6px 12px;
  border-radius: 1000px;
  background: black;
  color: white;
}
/*
@media (min-width: 2000px) {
  body {
    font-size: 1.7rem;
  }
}
*/
/* ==========================================================================
  Global CSS Poperties
   ========================================================================== */
* {}
:root {
  /* ==========================================================================
   Colors
   ========================================================================== */
  /*	 Grays    */
  --gray-hue: 0;
  --gray-sat: 2%;
  --white: hsl(var(--gray-hue), var(--gray-sat), 98%);
  --black: hsl(var(--gray-hue), var(--gray-sat), 15%);
  --gray-50: hsl(0, var(--gray-sat), 99.20%);
  --gray-100: hsl(0, var(--gray-sat), 97.60%);
  --gray-200: hsl(0, var(--gray-sat), 95.30%);
  --gray-300: hsl(0, var(--gray-sat), 91.80%);
  --gray-400: hsl(0, var(--gray-sat), 86.70%);
  --gray-500: hsl(0, var(--gray-sat), 78.80%);
  --gray-600: hsl(0, var(--gray-sat), 67.50%);
  --gray-700: hsl(0, var(--gray-sat), 56.10%);
  --gray-800: hsl(0, var(--gray-sat), 45.10%);
  --gray-900: hsl(0, var(--gray-sat), 34.90%);
  --gray-1000: hsl(0, var(--gray-sat), 24.30%);
  --gray-1100: hsl(0, var(--gray-sat), 5.50%);
  /*	Primary Branding Color */
  --primary-hue: 0;
  --primary-50: hsl(var(--primary-hue), 68.00%, 98.24%);
  --primary-100: hsl(var(--primary-hue), 68.00%, 94.76%);
  --primary-200: hsl(var(--primary-hue), 68.00%, 89.61%);
  --primary-300: hsl(var(--primary-hue), 68.00%, 82.37%);
  --primary-400: hsl(var(--primary-hue), 68.00%, 70.77%);
  --primary-500: hsl(var(--primary-hue), 68.00%, 51.59%);
  --primary-600: hsl(var(--primary-hue), 68.00%, 43.06%);
  --primary-700: hsl(var(--primary-hue), 68.00%, 35.83%);
  --primary-800: hsl(var(--primary-hue), 68.00%, 28.92%);
  --primary-900: hsl(var(--primary-hue), 68.00%, 22.30%);
  --primary-1000: hsl(var(--primary-hue), 68.00%, 15.68%);
  --primary-1100: hsl(var(--primary-hue), 68.00%, 7.33%);
  /*	CTA Colors */
  --cta-100: var(--black);
  --cta-200: var(--primary-800);
  --cta-300: var(--primary-900);
  --headline-color: var(--gray-900);
  /* ==========================================================================
   Fonts
   ========================================================================== */
  /*	 Font Stack   */
  --font-base: Figtree, Inter, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  /*	Font Sizes*/
  --fs-sm: clamp(0.8rem, 0.17vw + 0.76rem, 0.89rem);
  --fs-base: clamp(1.1rem, 0.34vw + 0.91rem, 1.35rem);
  --fs-md: clamp(1.25rem, 0.61vw + 1.1rem, 1.58rem);
  --fs-lg: clamp(1.56rem, 1vw + 1rem, 1.8rem);
  --fs-xl: clamp(1.75rem, 1.56vw + 1.56rem, 2.41rem);
  --fs-xxl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);
  --fs-xxxl: clamp(3.05rem, 3.54vw + 2.17rem, 5rem);
  /*	Font Weights*/
  --fw-light: 300;
  --fw-normal: 400;
  --fw-semibold: 550;
  --fw-bold: 700;
  --fw-black: 825;
  /* ==========================================================================
   Spacing
   ========================================================================== */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 36px;
  --space-xl: 48px;
  --space-xxl: 84px;
  --space-xxxl: 128px;
  /* ==========================================================================
   Shadows
   ========================================================================== */
  --shadow-color: 286deg 2% 56%;
  --shadow-elevation-low:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34), 0.4px 0.8px 1px -1.2px hsl(var(--shadow-color) / 0.34), 1px 2px 2.5px -2.5px hsl(var(--shadow-color) / 0.34);
  --shadow-elevation-medium:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.36), 0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.36), 2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.36), 5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.36);
  --shadow-elevation-high:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34), 1.5px 2.9px 3.7px -0.4px hsl(var(--shadow-color) / 0.34), 2.7px 5.4px 6.8px -0.7px hsl(var(--shadow-color) / 0.34), 4.5px 8.9px 11.2px -1.1px hsl(var(--shadow-color) / 0.34), 7.1px 14.3px 18px -1.4px hsl(var(--shadow-color) / 0.34), 11.2px 22.3px 28.1px -1.8px hsl(var(--shadow-color) / 0.34), 17px 33.9px 42.7px -2.1px hsl(var(--shadow-color) / 0.34), 25px 50px 62.9px -2.5px hsl(var(--shadow-color) / 0.34);
  --dotted: radial-gradient(circle at 2px 2px, var(--gray-200) 2px, transparent 0);
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  src: local(''), url('../fonts/Figtree-VariableFont.woff2') format('woff2');
  font-display: swap;
}
/* ==========================================================================
  Scroll Smoother
   ========================================================================== */
#smooth-content {
  will-change: transform;
}
/* ==========================================================================
   Typography
   ========================================================================== */
p {
  margin-bottom: var(--space-m);
}
p.upsize {
  font-size: 1.15em;
}
@media (min-width: 700px) {
  p.upsize {
    font-size: 1.25em;
    text-wrap: balance;
  }
}
@media (min-width: 1200px) {
  p {
    margin-bottom: var(--space-l);
  }
}
h1, h2, h3, h4 {
  line-height: 1;
  color: var(--headline-color);
  text-wrap: balance;
}
h1, h2 {
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-m);
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2rem;
}
h2 {
  max-width: 1200px;
  font-size: 1.7rem;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  font-weight: var(--fw-semibold);
}
@media (min-width: 700px) {
  h1 {
    font-size: var(--fs-xxxl);
  }
  h2 {
    font-size: var(--fs-xxl);
  }
  h3 {
    font-size: var(--fs-lg);
  }
}
h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-s);
  font-weight: var(--fw-semibold);
}
.headline-line-accent {
  margin-bottom: var(--space-xl);
  position: relative;
}
.headline-line-accent::after {
  width: 100px;
  height: 2px;
  background: currentColor;
  left: 0;
  bottom: -1.5rem;
  opacity: 0.25;
}
/* ==========================================================================
  Little accent tags to introduce sections
   ========================================================================== */
.accent-intro {
  color: var(--accent-intro);
  margin-bottom: var(--space-m);
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  font-size: 1rem;
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}
.accent-intro-inverted {
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  background-color: var(--primary-800);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  max-width: max-content;
}
.accent-intro-flex {
  display: flex;
  gap: 6px;
  /*	align-items: center;*/
}
.accent-intro-flex svg {
  height: 0.9lh;
  fill: currentColor;
}
/* ==========================================================================
  Skip to main content link
   ========================================================================== */
.skip-link {
  -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  box-sizing: border-box;
  position: absolute;
  margin: 0;
  padding: 8px 16px;
  top: 20px;
  left: 20px;
  width: auto;
  transform: translate3d(.125rem, -5rem, 0);
  transition: transform .3s ease-out;
}
.skip-link:focus {
  -webkit-clip-path: none;
  clip-path: none;
  z-index: 999;
  background: var(--primary-800);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--primary-100);
  text-align: center;
  transform: translate3d(.125rem, .125rem, 0);
}
/* ==========================================================================
  Old site content transfer
   ========================================================================== */
.content-transfer {
  max-width: 720px;
  margin: auto;
}
.content-transfer ul {
  display: grid;
  grid-gap: 1rem;
  margin-bottom: var(--space-l);
}
.content-transfer li {
  list-style: disc;
  list-style-position: inside;
}
/* ==========================================================================
          Focus visible styles
   ========================================================================== */
/*
button {}
:is(a, button, input, textarea, summary) {
  --outline-size: max(2px, 0.08em);
  --outline-style: solid;
  --outline-color: var(--primary-700);
  --outline-offset: 4px;
}
:is(a, button, input, textarea, summary):focus {
  outline: var(--outline-size) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-offset, var(--outline-size));
}
:is(a, button, input, textarea, summary):focus-visible {
  outline: var(--outline-size) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-offset, var(--outline-size));
}
:is(a, button, input, textarea, summary):focus:not(:focus-visible) {
  outline: none;
}
*/
/*
:focus-visible {
  transition: outline-offset 50ms ease-out;
	outline: solid 2px currentColor;
	border-radius: 4px;
	
  
}

:not(:active):focus-visible {
  outline-offset: 0.3rem;
  transition-duration: 0.25s;
}
*/
/* ==========================================================================
   Utility classes
   ========================================================================== */
.isolate {
  isolation: isolate;
}
.object-fit img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
span.big-underline {
  display: inline-block;
}
span.big-underline::before {
  left: -7px;
  bottom: 10%;
  width: 105%;
  height: 14%;
  transform: skew(-18deg);
  background: orange;
  z-index: -1;
}
span.big-gradient {
  background: linear-gradient(90deg, #1f005c, #5b0060, #870160, #ac255e, #ca485c, #e16b5c, #f39060, #ffb56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 750;
}
.border-gradient {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
}
.border-gradient-purple {
  border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.center-block-limit {
  width: 100%;
}
@media (max-width: 899px) {
  .center-block-limit {
    max-width: 540px;
    margin-inline: auto;
  }
}
/* ==========================================================================
   Layout Elements
   ========================================================================== */
main .row {
  /*  padding: clamp(1.5rem, 4vw, 6rem) 0;*/
  padding: clamp(1.5rem, 8vw, 12rem) 0;
}
.stack-wrapper > .wrapper:not(:first-of-type) {
  margin-block-start: var(--space-l);
}
.wrapper {
  width: 100%;
  max-width: 1556px;
  padding: 0 16px;
  margin: auto;
}
@media (min-width: 700px) {
  .wrapper {
    padding: 0 24px;
  }
}
.inner-wrapper {
  padding: clamp(1rem, 4vw, 5rem);
  background: var(--gray-200);
}
.center-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  text-align: center;
  align-items: center;
}
.wrapper-limit {
  max-width: 720px;
}
@media (min-width: 1200px) {
  .stack-wrapper > .wrapper:not(.wrapper: first-of-type) {
    margin-block-start: var(--space-xxl);
  }
  /*
  .dotted-container {
    background: var(--primary-100);
    max-width: 1280px;
    margin: auto;
    padding: 48px 24px;
    overflow: hidden;
    border-radius: 8px;
  }
*/
  .dotted-container::before, .dotted-container::after {
    width: 20%;
    height: 40%;
    background-image: radial-gradient(circle at 2px 2px, var(--gray-400) 2px, transparent 0);
    background-size: 20px 20px;
    z-index: -1;
  }
  .dotted-container::before {
    right: 0;
    top: 0;
  }
  .dotted-container::after {
    left: 0;
    bottom: 0;
  }
}
.gradient-wrapper {
  /*	background: linear-gradient(90deg, #ffffe3, #fff4de, #ffe6d8, #ffd4d3, #ffcddd, #ffc8eb, #ffc2fd, #ecbdff);*/
  /*	background: linear-gradient(0deg, #c9ff8f, #c1f589, #b9eb84, #b1e17e, #a9d678, #a1cc72, #99c26d, #91b867)*/
}
.row-dark {
  --accent-intro: var(--white);
  --headline-color: var(--white);
  --body-background: var(--gray-1100);
  background-color: var(--body-background);
  color: var(--gray-200);
  font-weight: 300;
}
.gray-100 {
  background-color: var(--gray-100);
}
.row-vertical-gradient {
  /*	background: linear-gradient(to left, #743ad5, #d53a9d);*/
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 25%, var(--black) 25%, var(--black) 100%);
}
.row-texture::before {
  background: url("../images/elements-organic-texture-drawing-curly.svg") repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.2;
}
/* ==========================================================================
   SVG Section slants and curves and transitions
   ========================================================================== */
#swoop {
  width: 100%;
  height: 160%;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.08;
  z-index: -1;
}
#lower-left, #upper-right {
  fill: var(--gray-600);
}
.svg-slant {
  width: 100%;
  /*  height: 15vh;*/
  aspect-ratio: 12 / 1;
}
.svg-slant svg {
  width: 100%;
  height: 100%;
}
#bottom-triangle {
  fill: var(--black);
}
#stripe {
  fill: var(--primary-500);
}
#top-triangle {
  fill: orange;
}
.giant-text {
  fill: #231f20;
  font-size: 120px;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 80%;
  overflow: visible;
  /*  outline: dotted 1px red;*/
  transform: translate(-50%, -50%);
  width: 80%;
  opacity: 0.05;
}
.side-swoop {
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.15;
}
.swoop-highlight {
  fill: var(--primary-300);
}
.swoop-base {
  fill: var(--primary-500);
}
/* ==========================================================================
    Header
   ========================================================================== */
header {
/*  background: white;*/
}
/* ==========================================================================
  Branding
   ========================================================================== */
.branding-desktop {
  display: none;
  font-weight: var(--fw-semibold);
  width: 100%;
  padding: 12px 0;
  margin: auto;
  font-size: 1rem;
}
.branding-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-mobile {
  width: max(240px, 50vw);
  line-height: 1;
  padding: 1rem;
}
@media (min-width: 700px) {
  .logo-desktop {
    width: min(240px, 50vw);
  }
  .branding-desktop {
    display: flex;
  }
  .branding-mobile {
    display: none;
  }
}
@media (min-width: 700px) {
  .branding-desktop {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;

  }
  .main-nav-row {
    grid-area: 2 / 1 / 3 / 3;
  }
  .branding-contact {
    grid-area: 1 / 2 / 2 / 3;
  }
  .main-nav {
    padding-top: 16px;
    justify-content: center;
  }
}
@media (min-width: 1300px) {
  .branding-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
	  .main-nav {
    padding-top: 0;

  }
}
/* ==========================================================================
   Desktop Contact Extra Links and Click to call
   ========================================================================== */
.branding-contact {
  justify-self: end;
  display: flex;
  gap: 6px;
}
.branding-contact a {
  display: block;
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  font-weight: var(--fw-bold);
  line-height: 1;
  align-items: center;
  gap: 6px;
}
.branding-contact a svg {
  height: 0.8lh;
}
a.nav-contact-cta {
  background: var(--gray-1100);
  color: white;
}
a.nav-contact-call {
  border: solid 1px var(--gray-700);
}
/* ==========================================================================
      Desktop Navigation
   ========================================================================== */
.main-nav-row {
  /*  font-size: 1.1rem;*/
}
.main-nav a, .main-nav button {
  display: block;
  padding: 16px 24px;
  background: transparent;
  font-weight: var(--fw-bold);
}
.main-nav > li > a, .main-nav button {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-nav a:focus-visible, .main-nav button:focus-visible {
  /*  background: purple;*/
}
@media (hover:hover) and (pointer:fine) {}
.main-nav button {
  /*  background-color: transparent;*/
  display: grid;
  grid-gap: 6px;
  grid-template-columns: 1fr 1em;
  place-items: center;
}
.main-nav {
  display: flex;

}
.sub-nav {
  background: var(--body-background);
  white-space: nowrap;
  height: 0;
  display: none;
  overflow: hidden;
  border-radius: 8px;
  z-index: 10;
  position: absolute;
  top: 100%;
  border: solid 1px var(--gray-200);
  box-shadow: var(--shadow-elevation-medium);
}
.has-sub-menu > button svg {
  flex: 0 0 1em;
  overflow: visible;
}
.has-sub-menu > button line {
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke: currentColor;
  fill: none;
}
.has-sub-menu > button circle {
  fill: transparent;
  stroke-width: 3px;
  stroke: currentColor;
  r: 0;
}
.sub-nav li:not(li:last-of-type) {
  border-bottom: solid 1px rgb(0 0 0 / 0.1);
}
.sub-nav a {
  transition: all 0.2s;
  transition-timing-function: linear;
}
.sub-nav a:hover {
  /*  color: var(--white);*/
  background-color: var(--gray-400);
}
.main-nav a:hover {
  /*  color: var(--primary-700);*/
}



/* ==========================================================================
  Mobile Menu Toggle Button
   ========================================================================== */
#mobile-menu-toggle {
  width: 56px;
  height: 56px;
  cursor: pointer;
  --menu-color: var(--primary-800);
  padding: 0;
  margin: 0;
  border: none;
  line-height: 1;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}
.light #mobile-menu-toggle {
  --menu-color: var(--primary-800);
}
.burger {
  width: 34px;
  margin-bottom: 4px;
}
.burger line {
  fill: none;
  stroke: var(--menu-color);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-miterlimit: 10px;
}
.mobile-button-text {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--menu-color);
}
.mobile-button-text span {
  flex: 0 0 100%;
}
/* ==========================================================================
  Mobile Menu Dropdown
   ========================================================================== */
.mobile-nav {
  height: 0;
  overflow: hidden;
  display: none;
  position: relative;
  line-height: 1;
  /*  background: var(--gray-400);*/
}
.mobile-nav ul {
  padding: 12px 24px;
  display: grid;
  overflow: hidden;
  /*	grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));*/
}
.mobile-nav li:first-of-type {
  border-top: solid 1px hsl(0 0% 0% / 0.1);
}
.mobile-nav li {
  border-bottom: solid 1px hsl(0 0% 0% / 0.1);
}
.mobile-nav li:active {
  background: hsl(0 0% 0% / 0.1);
}
.mobile-nav li:last-of-type {
  margin-bottom: 0;
}
.mobile-nav li a {
  padding: 12px;
  background-image: url("data:image/svg+xml,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27.37 41.42'%3E%3Cpath d='M25.85 16.61 8.19 1.12 8.07 1a5 5 0 0 0-6.65.5 4.78 4.78 0 0 0 .25 7l13.87 12.15L1.67 32.83a4.88 4.88 0 0 0-.59 6.75 4.66 4.66 0 0 0 3.22 1.81 4.19 4.19 0 0 0 .5 0 5 5 0 0 0 3.2-1.2l17.38-15.33a5.34 5.34 0 0 0 2-4.21 6.38 6.38 0 0 0-1.53-4.04Z' fill='%23615d5d'/%3E%3C/svg%3E");
  background-position: 96% center;
  background-repeat: no-repeat;
  background-size: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: var(--fw-semibold);
}
/* ==========================================================================
   Phone Numbers
   ========================================================================== */
/* ===================================
   Desktop Phone
   =================================== */
.desktop-phone {
  display: none;
  font-weight: var(--fw-bold);
  font-size: 1.6rem;
  line-height: 1;
}
.desktop-phone span {
  color: var(--primary-700);
}
.desktop-phone svg {
  width: 1em;
  fill: currentColor;
}
@media (min-width: 700px) {
  .desktop-phone {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
  }
}
/* ===================================
   Menu Phone
   =================================== */
.menu-phone {
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.menu-phone a {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  margin-top: 12px;
  border-radius: 100px;
  background-color: var(--primary-800);
  color: white;
}
.menu-phone a svg {
  width: 16px;
  fill: currentColor;
}
.menu-hours {
  font-size: 0.875rem;
  margin-top: 6px;
}
/* ==========================================================================
   Global Link Styles
   ========================================================================== */
/* ==========================================================================
   Global Link Styles
   ========================================================================== */
.main-link {
  display: block;
  width: max-content;
  isolation: isolate;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.main-link svg {
  height: 0.75em;
  transition: all 0.1s;
  transition-timing-function: linear;
}
.main-link:hover svg {
  transform: translateX(6px) scale(1.1);
}
.primary-link, .secondary-link {
  padding: 12px 24px;
  border-radius: 100px;
}
/*--------------------*/
/*Primary Link Style*/
/*--------------------*/
.primary-link {
  background: linear-gradient(0deg, #89c756, #89c756, #8ac957, #8bca57, #8dcc58, #8ecf59, #90d15a, #91d45b, #93d65c, #94d75c, #95d95d, #95d95d);
  border: solid 1px var(--sc-500);
  color: var(--sc-800);
  transition: all 0.2s;
  transition-timing-function: linear;
}
.primary-link:hover {
  /*border: solid 1px var(--sc-800);*/
}
.primary-link svg path, .tertiary-link svg path {
  fill: currentColor;
}
/*--------------------*/
/*Secondary Link Style*/
/*--------------------*/
.secondary-link {
  color: var(--cta-100);
  border: solid 2px var(--cta-100);
  overflow: hidden;
  transition: all 0.2s;
  transition-timing-function: linear;
  margin-bottom: 24px;
  display: block;
  max-width: max-content;
}
.secondary-link::before {
  width: 0;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--cta-100);
  z-index: -1;
  transition: all 0.2s;
  transition-timing-function: ease-in-out;
}
.secondary-link:hover::before {
  width: 100%;
}
.secondary-link:hover {
  color: var(--primary-100);
}
/*
.secondary-link:active {
  box-shadow: none;
  transition: all 0.05s;
}
*/
/*---------------------*/
/* Tertiary Link Style */
/*---------------------*/
.tertiary-link {
  color: currentColor;
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  width: max-content;
  transition: all 0.2s;
  font-size: 1.1rem;
}
.tertiary-link::before {
  position: absolute;
  width: 0;
  height: 2px;
  background-color: currentColor;
  content: "";
  bottom: -4px;
  left: 0;
  transition: all 0.2s;
}
.tertiary-link:hover {
  color: var(--cta-200);
}
.tertiary-link:hover::before {
  width: 100%;
}
.extra-links .attention-link {
  background: #802013;
  background: var(--sc-400);
  color: var(--primary-800);
  line-height: 1;
  padding: 6px 12px;
  border-radius: 6px;
}
/*
.primary-link, .secondary-link {
  padding: 12px 24px;
  text-transform: capitalize;
  font-weight: var(--fw-semibold);
  border-radius: 4px;
  display: block;
  width: max-content;
	isolation: isolate;
}
.tertiary-link {
  color: var(--cta-100);
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  width: max-content;
  transition: all 0.2s;
}
.tertiary-link::before {
  position: absolute;
  width: 0;
  height: 2px;
  background-color: currentColor;
  content: "";
  bottom: -4px;
  left: 0;
  transition: all 0.2s;
}
.tertiary-link:hover {
  color: var(--cta-200);
}
.tertiary-link:hover::before {
  width: 100%;
}
.primary-link {
  background-color: var(--cta-100);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background-color 0.2s;
  transition-timing-function: linear;
}
.primary-link:hover {
  background-color: var(--cta-200);
}
.primary-link svg, .tertiary-link svg {
  height: 1em;
}
.primary-link svg line, .tertiary-link svg line {
  fill: none;
  stroke: currentColor;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.primary-link svg path, .tertiary-link svg path {
  fill: currentColor;
}
.secondary-link {
  color: var(--cta-100);
  border: solid 2px var(--cta-100);
  overflow: hidden;
  transition: all 0.2s;
  transition-timing-function: linear;
}
.secondary-link span {
  z-index: 2;
}
.secondary-link::before {
  width: 0;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--cta-100);
  z-index: -1;
  transition: all 0.2s;
  transition-timing-function: ease-in-out;
}
.secondary-link:hover::before {
  width: 100%;
}
.secondary-link:hover {
  color: var(--primary-100);
}
.secondary-link:active {
  box-shadow: none;
  transition: all 0.05s;
}

*/
/* ==========================================================================
   Heros
   ========================================================================== */
.hero-grid {
  display: grid;
}
@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 28% 28% 1fr;
    grid-template-rows: auto minmax(300px, 1fr);
    grid-gap: var(--space-s);
  }
  .hero-grid > * {
    border-radius: 8px;
    overflow: hidden;
  }
  .column-span-2 {
    grid-column: span 2;
    padding-bottom: 36px;
  }
}
.hero-center {
  padding: 0 24px;
  max-width: 780px;
  margin: auto;
  text-align: center;
}
.hero-center p {
  margin-inline: auto;
}
.hero-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.hero-card {
  /*	background: var(--gray-200);*/
  min-height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-intro {
    padding: 3rem;
  }
  .hero-image {
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    /*		clip-path: polygon(100% 0%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);*/
  }
}
.test-row {
  height: 300px;
  background: var(--gray-300);
  border: solid 10px white;
  border-radius: 8px;
}
.test-row img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 155%;
  aspect-ratio: 1.8 / 1;
}
/* ==========================================================================
   Photo Cards
   ========================================================================== */
.photo-cards {
  grid-gap: var(--space-s);
}
.photo-cards picture {
  aspect-ratio: 2 / 1;
}
@media (max-width: 899px) {
  .photo-cards picture {
    margin: 0 -24px var(--space-l) -24px;
    background: pink;
    max-width: calc(100% + 48px);
  }
}
@media (min-width: 900px) {
  .photo-cards > div {
    border: solid 1px var(--gray-200);
    background-color: var(--white);
    box-shadow:
      0.3px 0.4px 1.7px rgba(0, 0, 0, 0.101), 0.9px 1px 4.8px rgba(0, 0, 0, 0.145), 2.1px 2.4px 11.5px rgba(0, 0, 0, 0.189), 7px 8px 38px rgba(0, 0, 0, 0.29);
  }
  .photo-cards > div > div {
    padding: var(--space-m);
  }
}
/* ==========================================================================
   About Us 
   ========================================================================== */
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: 1fr 32px 120px 140px;
  grid-gap: 8px;
}
.about-photo-grid > * {
  overflow: hidden;
  border-radius: 8px;
}
.about-photo-grid img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.about-intro {
  grid-area: 1 / 1 / 2 / 11;
}
.about-01 {
  grid-area: 3 / 8 / 4 / 11;
}
.about-02 {
  grid-area: 2 / 1 / 4 / 8;
}
.about-05 {
  grid-area: 4 / 1 / 5 / 4;
}
.about-06 {
  grid-area: 4 / 4 / 5 / 11;
}
.about-03, .about-04 {
  display: none;
}
@media only screen and (min-width:700px) {
  .about-03, .about-04 {
    display: revert;
  }
  .about-photo-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: 1fr 32px 120px 180px 80px;
    grid-gap: 8px;
  }
  .about-01 {
    grid-area: 3 / 1 / 4 / 3;
  }
  .about-02 {
    grid-area: 2 / 3 / 4 / 7;
  }
  .about-03 {
    grid-area: 4 / 5 / 6 / 9;
  }
  .about-04 {
    grid-area: 2 / 7 / 4 / 11;
  }
  .about-05 {
    grid-area: 4 / 9 / 5 / 11;
  }
  .about-06 {
    grid-area: 4 / 1 / 5 / 5;
  }
}
@media only screen and (min-width:1000px) {
  .about-photo-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 96px) 64px 144px 1fr;
  }
  .about-intro {
    padding-top: 1rem;
    grid-area: 4 / 1 / 6 / 6;
  }
  .about-01 {
    grid-area: 1 / 1 / 2 / 3;
  }
  .about-02 {
    grid-area: 1 / 3 / 4 / 6;
  }
  .about-03 {
    grid-area: 1 / 6 / 3 / 9;
  }
  .about-04 {
    grid-area: 1 / 9 / 3 / 13;
  }
  .about-05 {
    grid-area: 3 / 6 / 5 / 8;
  }
  .about-06 {
    grid-area: 3 / 8 / 5 / 12;
  }
}
@media only screen and (min-width:1400px) {
  .about-photo-grid {
    grid-template-rows: repeat(2, 128px) 64px 192px 1fr;
  }
}
.founder {
  display: grid;
  grid-gap: var(--space-s);
}
.team {
  display: grid;
  grid-gap: var(--space-l);
  text-align: center;
}
.team > * {
  padding: clamp(1rem, 1vw + 1rem, 3rem);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.05);
  background: var(--white);
}
.team img {
  margin-bottom: var(--space-s);
}
.team h3 {
  margin-bottom: 2px;
}
.team span {
  text-transform: uppercase;
  font-size: 0.875rem;
}
.founder img {
  max-width: min(300px, 100%);
}
@media only screen and (min-width:700px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width:900px) {
  .founder {
    grid-template-columns: 40% 1fr;
    grid-gap: var(--space-xl);
  }
  .founder img {
    max-width: 100%;
  }
  .team {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ==========================================================================
   Module Layouts
   ========================================================================== */
.module-wrapper {
  width: 100%;
  /*    background: var(--gray-100);*/
}
/*
@media (min-width: 1300px) {
	.module-wrapper {
	padding: var(--space-xxl);
}
}
*/
/* ==========================================================================
   List with pics on the left side of the row
   ========================================================================== */
.left-pic-list li {
  display: grid;
  padding-block: 24px;
  border-top: solid 1px var(--global-border);
  gap: var(--space-xs);
}
.left-pic-list h3 {
	font-size: var(--fs-xl);
}
.left-pic-list li:last-of-type {
  border-bottom: solid 1px var(--global-border);
}
.left-pic-list img {
  max-width: 128px;
  border-radius: 12px;
}
.lp-list-count {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}
@media (min-width:1000px) {
  .left-pic-list li {
    padding-block: 36px;
    gap: var(--space-m);
    grid-template-columns: 40% auto 1fr;
  }
  .left-pic-list li {
    max-width: revert;
  }
  .left-pic-list img {
    max-width: 192px;
  }
}
/* ==========================================================================
   Icon list on left with big vertical picture on right
   ========================================================================== */
.vert-with-list {
  max-width: 540px;
  margin-inline: auto;
  display: grid;
  gap: var(--space-l);
}
.vert-icon-list {
  margin-top: auto;
}
.vert-icon-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-s);
  border-top: 1px solid var(--global-border);
  padding-block: 24px;
}
.vert-icon-list li:last-of-type {
  border-bottom: 1px solid var(--global-border);
}
.vert-icon-list li > div {
  color: var(--white);
  aspect-ratio: 1/1;
  background: var(--primary-800);
  border-radius: 8px;
  padding: 20%;
}
.vert-image-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.vert-image-wrap img {
  border-radius: 12px;
}
.vert-image-wrap svg {
  position: absolute;
  width: 15%;
  aspect-ratio: 1/1;
  fill: var(--body-background);
}
.vert-image-wrap svg:first-of-type {
  right: -1px;
  top: -1px;
}
.vert-image-wrap svg:last-of-type {
  left: -1px;
  bottom: -1px;
  transform: rotate(180deg);
}
@media (min-width: 900px) {
  .vert-with-list {
    max-width: 100%;
    gap: var(--space-xl);
    grid-template-columns: 1fr 50%;
  }
  .vert-icon-list li {
    grid-template-columns: 64px 1fr;
    padding-block: var(--space-l);
    text-wrap: balance;
  }
  .vert-image-wrap {
    aspect-ratio: 3/4;
  }
  .vert-image-wrap img {
    border-radius: 36px;
  }
}
/* ==========================================================================
   4 pack of pictures on right with paragraphs and big data on left
   ========================================================================== */
.right-pic-pack-wrap {
  display: grid;
  place-items: start;
  gap: var(--space-m);
}
.right-pic-pack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-s);
  padding-top: 24px;
}
.right-pic-pack img {
  border-radius: 12px;
}
.right-pic-pack figure {
  display: grid;
  place-items: center;
}
.right-pic-pack figure:nth-of-type(even) {
  margin-top: -24px;
}
.bold-stats-wrap {
  width: 100%;
}
.bold-stats-wrap p {
  border-bottom: solid 1px var(--global-border);
  padding-bottom: var(--space-m);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
}
.bold-stats {
  line-height: 1;
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
  white-space: nowrap;
}
.bold-stats span {
  font-size: var(--fs-xxxl);
  font-weight: var(--fw-bold);
  display: block;
}
@media (min-width: 700px) {
  .right-pic-pack {
    grid-template-columns: repeat(4, 1fr);
  }
  .bold-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .right-pic-pack-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr auto;
    column-gap: var(--space-l);
    padding-top: var(--space-xl);
  }
  .right-pic-pack {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-l);
    padding-top: 0;
    grid-column: 2;
    grid-row: 1 / -1;
  }
  .right-pic-pack figure:nth-of-type(even) {
    margin-top: -128px;
  }
}
@media (min-width: 1300px) {
  .right-pic-pack-wrap {
    column-gap: var(--space-xxl);
  }
}
/* ==========================================================================
   Flair
   ========================================================================== */
.flair {
  display: none;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  width: 130px;
}
.meter {
  right: 100px;
  background: url("../images/meter.webp") center center no-repeat;
  aspect-ratio: 1.05 / 1;
  background-size: contain;
}
.bulb-tools {
  left: 100px;
  background: url("../images/bulb-tools.webp") center center no-repeat;
  aspect-ratio: 0.9 / 1;
  background-size: contain;
}
.batteries {
  right: 100px;
  background: url("../images/batteries.webp") center center no-repeat;
  aspect-ratio: 1.5 / 1;
  background-size: contain;
}
@media (min-width: 1000px) {
  .flair {
    display: revert;
  }
}
@media (min-width: 1400px) {
  .flair {
    display: revert;
    width: 200px;
  }
}
/* ==========================================================================
   Side Card
   ========================================================================== */
.side-card {
  display: flex;
  flex-direction: column-reverse;
}
.side-card > * {
  padding: clamp(18px, 3.5vw, 64px);
}
@media (max-width: 699px) {
  .side-card > div:last-of-type {
    aspect-ratio: 1/1;
    width: 100%;
  }
}
@media (min-width: 700px) {
  .side-card {
    /*	grid-template-columns: 1fr 1fr;*/
    background: var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-l);
    flex-direction: row;
  }
  .side-card:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .side-card > * {
    flex: 0 0 50%;
  }
}
/* ==========================================================================
   Lists
   ========================================================================== */
.basic-list {
  display: grid;
  grid-gap: var(--space-s);
  margin-bottom: var(--space-l);
}
.basic-list li {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' stroke-width='1.5' height='24' width='24'%3E%3Cpath d='M19.5,12.75a7.5,7.5,0,0,1-15,0c0-5.25,5.25-12,7.5-12S19.5,7.5,19.5,12.75Z' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M12 8.25L12 23.25' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M15.75,12.75A3.75,3.75,0,0,1,12,16.5' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M12,13.5a3,3,0,0,1-3-3' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E") left top no-repeat;
  padding-left: var(--space-l);
  background-size: 24px;
}
/*
.basic-list li::marker {
  content: "🎉";

}
*/
.checklist-grid, .checklist-grid-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  grid-gap: var(--space-m);
  font-size: 0.9em;
}
@media (min-width: 700px) {
  .checklist-grid, .checklist-grid-numbers {
    grid-gap: var(--space-l);
  }
}
.checklist-grid li, .checklist-grid-numbers li {
  padding-left: var(--space-xl);
}
.checklist-grid li::before {
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 14 14' height='24' width='24'%3E%3Cpath fill='%23262626' fill-rule='evenodd' d='M13.637 1.19792C14.0627 1.54974 14.1227 2.18006 13.7708 2.60579L5.73084 12.335L5.72842 12.3379C5.54554 12.5575 5.31602 12.7336 5.05655 12.8534C4.79707 12.9731 4.51417 13.0336 4.22842 13.0302L4.22752 13.0302C3.93709 13.0266 3.65125 12.9573 3.39146 12.8274C3.13254 12.6979 2.9062 12.5117 2.72931 12.2826C2.72871 12.2818 2.72812 12.281 2.72752 12.2802L0.210633 9.04426C-0.128437 8.60831 -0.0499029 7.98003 0.386044 7.64096C0.821992 7.30189 1.45027 7.38043 1.78934 7.81638L4.25291 10.9838L12.2291 1.33176C12.5809 0.906034 13.2113 0.846112 13.637 1.19792Z' clip-rule='evenodd'%3E%3C/path%3E%3C/svg%3E") center center no-repeat;
}
ol {
  counter-reset: listCounter;
}
.checklist-grid-numbers li {
  --size: 28px;
  counter-increment: listCounter;
}
.checklist-grid-numbers li::before {
  content: counter(listCounter);
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  font-size: calc(var(--size)*0.5);
  border-radius: 50%;
  letter-spacing: normal;
  top: 0;
  left: 0;
  background: var(--primary-800);
  color: var(--white);
}
.tag-list {
  max-width: 1000px;
  margin: auto;
  font-size: 1.25em;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  text-align: center;
}
.tag-list li {
  flex: 1 1 20%;
  white-space: nowrap;
  padding: 8px 24px;
  margin: 6px;
  background: white;
  color: var(--text-dark2);
  font-weight: 500;
}
.stylish-list {
  line-height: 1.1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  grid-gap: 16px;
  margin: 20px auto;
}
.stylish-list li {
  padding: 6px 24px 6px 72px;
  min-height: 3rem;
  display: flex;
  align-items: center;
  background-color: var(--gray-50);
  font-weight: 400;
  font-size: 1.2rem;
  border-radius: 4px;
  box-shadow: var(--shadow-elevation-low);
}
@media (min-width: 1300px) {
  .stylish-list {
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }
}
.stylish-list li::before {
  content: '';
  width: 60px;
  height: 100%;
  position: absolute;
  background-color: var(--gray-200);
  background: var(--gray-200) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg transform='matrix(4.166666666666667,0,0,4.166666666666667,0,0)'%3E%3Cg%3E%3Cpath d='M23.41.4a1.25,1.25,0,0,0-1.76.19L10,15,6,11a1.25,1.25,0,0,0-1.77,1.77l5,5a1.26,1.26,0,0,0,1.86-.1L23.6,2.16A1.25,1.25,0,0,0,23.41.4Z' style='fill: %239595f9'%3E%3C/path%3E%3Cpath d='M19.12,11.37a1,1,0,0,0-1,1v9.25a.25.25,0,0,1-.25.25H2.37a.25.25,0,0,1-.25-.25V6.12a.26.26,0,0,1,.25-.25H13.62a1,1,0,0,0,0-2H2.12a2,2,0,0,0-2,2v16a2,2,0,0,0,2,2h16a2,2,0,0,0,2-2v-9.5A1,1,0,0,0,19.12,11.37Z' style='fill: %239595f9'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center center no-repeat;
  background-size: 18px;
  left: 0;
  top: 0;
}
.stylish-list li::after {
  content: '';
  width: 10px;
  height: 100%;
  position: absolute;
  background: var(--gray-200);
  right: 0;
  top: 0;
}
/* ==========================================================================
   Info grid with bordered content on one side and image on the other
   ========================================================================== */
.border-grid-image img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 699px) {
  .border-grid-image {
    margin: 0 -24px var(--space-l) -24px;
    aspect-ratio: 2 / 1;
  }
}
@media (min-width: 700px) {
  .border-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: 50px minmax(300px, auto) 50px;
    margin: auto;
    margin-bottom: var(--space-xxl);
  }
  .border-grid:last-of-type {
    margin-bottom: 0;
  }
  .border-grid-details {
    grid-column: 1 / span 7;
    grid-row: 1 / -1;
    border: solid 2px var(--gray-200);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 16px 12vw 16px 4vw;
    border-radius: 8px;
    z-index: 5;
  }
  .border-grid-image {
    grid-column: 7 / -1;
    grid-row: 2;
    z-index: 10;
    border-radius: 8px;
  }
  .border-grid-image img {
    border-radius: 8px;
  }
  .border-grid:nth-of-type(even) .border-grid-image {
    grid-column: 1 / span 4;
  }
  .border-grid:nth-of-type(even) .border-grid-details {
    grid-column: 4 / span 7;
    padding: 16px 4vw 16px 12vw;
  }
}
@media (min-width: 1400px) {
  .border-grid-image::before {
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle at 1px 1px, #000 1px, transparent 0);
    background-size: 10px 10px;
    z-index: -1;
  }
  .border-grid:nth-of-type(even) .border-grid-image::before {
    left: -40px;
  }
}
/* ==========================================================================
   Solid box with photo overlap
   ========================================================================== */
@media (max-width: 899px) {
  .photo-overlap-image {
    margin: 0 -24px var(--space-l) -24px;
    aspect-ratio: 2 / 1;
  }
}
@media (min-width: 900px) {
  .photo-overlap {
    display: grid;
    grid-template-columns: 1fr 64px 40%;
    grid-template-rows: 64px minmax(200px, auto) 64px;
    margin-bottom: var(--space-xl);
  }
  .photo-overlap > div {
    border-radius: 8px;
  }
  .photo-overlap-image {
    grid-area: 1 / 2 / 3 / 4;
    background: var(--gray-200);
    z-index: 2;
    overflow: hidden;
  }
  .photo-overlap-text-wrap {
    grid-area: 2 / 1 / 4 / 3;
    background: var(--gray-200);
  }
  .photo-overlap-text {
    grid-area: 2 / 1 / 3 / 2;
    padding: var(--space-l);
    padding-bottom: 0
  }
  .photo-overlap:nth-of-type(even) {
    grid-template-columns: 40% 64px 1fr;
  }
  .photo-overlap:nth-of-type(even) .photo-overlap-image {
    grid-area: 1 / 1 / 3 / 3;
  }
  .photo-overlap:nth-of-type(even) .photo-overlap-text-wrap {
    grid-area: 2 / 2 / 4 / 4;
  }
  .photo-overlap:nth-of-type(even) .photo-overlap-text {
    grid-area: 2 / 3 / 3 / 4;
  }
}
/* ==========================================================================
   Photocircle
   ========================================================================== */
.photo-circle {
  display: grid;
  grid-template: 1fr 1fr / 1fr 1fr;
  aspect-ratio: 1 / 1;
  max-width: 600px;
  margin: 4rem auto;
  /*  border-radius: 50% 50% 50% 50% / 33% 33% 67% 67%;*/
  /*	border-radius: 29% 71% 0% 100% / 30% 30% 70% 70% ;*/
  border-radius: 50%;
  overflow: hidden;
  grid-gap: 1rem;
  /*  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);*/
}
/* ==========================================================================
   Photostrips
   ========================================================================== */
.photostrip {
  --photo-spacing: 12px;
  padding: var(--photo-spacing);
}

.photostrip img {
	border-radius: 8px;
}
.photo-strip-curve::before, .photo-strip-curve::after {
  width: 120%;
  height: 64px;
  background: var(--white);
  left: -10%;
  z-index: 2;
  border-radius: 0 0 100% 100%;
  display: none;
}
.photo-strip-curve::before {
  top: 0;
  border-radius: 0 0 100% 100%;
}
.photo-strip-curve::after {
  bottom: 0;
  border-radius: 100% 100% 0 0;
}
.photostrip-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--photo-spacing);
}


@media (min-width: 768px) {
  .photostrip {
    padding: var(--photo-spacing);
  }
  .photostrip-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .photo-strip-curve::before, .photo-strip-curve::after {
    display: revert;
  }
}
/* ==========================================================================
   Testimonial Mini-Grid
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-gap: 1px;
  background: var(--gray-600);
}
.testimonial-grid h2 {
  font-weight: 500;
}
.testimonial-grid > * {
  background: var(--white);
}
cite {
  font-weight: 600;
}
cite span {
  display: block;
  font-size: 0.75em;
  color: var(--gray-800);
  font-weight: 600;
}
.testimonial-grid .tiny-review-stars {
  margin-bottom: var(--space-m);
  opacity: 0.75;
}
.grid-testimonial {
  padding: 2rem 0;
}
/*
.grid-testimonial-1 {
  background: var(--primary-200);
}
.grid-testimonial-2 {
  background: var(--primary-300);
}
.grid-testimonial-3 {
  background: var(--primary-100);
}
*/
@media (min-width: 900px) {
  .grid-testimonial {
    padding: 2rem;
  }
  .testimonial-intro {
    padding-right: var(--space-s);
  }
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-testimonial-2 {
    grid-row: span 2;
  }
  .grid-testimonial-3 {
    grid-column: span 2;
  }
}
/* ==========================================================================
   Simple Testimonial
   ========================================================================== */
.simple-testimonial {
  max-width: 860px;
  margin: auto;
  background: white url("../images/thanks-grayscale.jpg") right bottom no-repeat;
  background-size: 70%;
  padding: clamp(1rem, 4vw + 1rem, 4rem);
  color: white;
  border-radius: 8px;
  /*	overflow: hidden;*/
}
.simple-testimonial::after {
  width: 100%;
  height: 100%;
  background: var(--primary-800);
  left: 0;
  top: 0;
  opacity: 0.95;
  z-index: -1;
  border-radius: 8px;
}
.simple-testimonial cite span {
  font-weight: var(--fw-normal);
  font-color: var(--gray-522);
  font-size: 0.75em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.5rem;
}
.simple-testimonial .tiny-review-stars {
  margin-bottom: var(--space-l);
}
/* ==========================================================================
   Photo Testimonial
   ========================================================================== */
.photo-testimonial {
  max-width: 1000px;
  margin: auto;
  background: linear-gradient(180deg, var(--primary-100) 0%, var(--primary-200) 100%);
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  align-items: flex-end;
  isolation: isolate;
}
.photo-testimonial p:last-of-type {
  margin-bottom: 0;
}
.photo-testimonial::before {
  right: 0;
  top: 0;
  width: 90px;
  height: 90px;
  content: "“";
  font-size: 80px;
  display: grid;
  place-items: center;
  color: var(--primary-300);
  z-index: -1;
}
.photo-testimonial picture {
  grid-area: 1 / 1 / 2 / 2;
  height: 100%;
  width: 100%;
}
.photo-testimonial blockquote {
  grid-area: 2 / 1 / 3 / 3;
}
.photo-testimonial img {
  border-radius: 4px;
}
.photo-testimonial cite {
  grid-area: 1 / 2 / 2 / 3;
  font-weight: var(--fw-semibold)
}
.photo-testimonial cite span {
  font-weight: var(--fw-normal);
  font-color: var(--gray-522);
  font-size: 0.75em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.5rem;
}
@media (min-width: 700px) {
  .photo-testimonial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    padding: 2rem;
    grid-gap: 2rem;
    place-items: flex-start;
  }
  .photo-testimonial blockquote {
    grid-area: 1 / 2 / 2 / 3;
  }
  .photo-testimonial picture {
    grid-area: 1 / 1 / 3 / 2;
  }
  .photo-testimonial cite {
    grid-area: 2 / 2 / 3 / 3;
  }
  .photo-testimonial::before {
    top: revert;
    right: 0;
    bottom: 0;
    width: 190px;
    height: 190px;
    font-size: 25rem;
    line-height: 1;
    place-items: center;
  }
  .photo-testimonial img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-2deg);
  }
  .photo-testimonial picture::before {
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    background-color: var(--primary-400);
    left: -0.5rem;
    top: -0.5rem;
    transform: rotate(4deg);
    border-radius: 4px;
  }
}
@media (min-width: 900px) {
  .photo-testimonial {
    grid-template-columns: 0.5fr 1fr;
    padding: 3rem;
    grid-gap: 3rem;
    place-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .photo-testimonial::after {
    background-image: radial-gradient(circle at 1px 1px, var(--primary-500) 1px, transparent 0);
    background-size: 12px 12px;
    width: 20%;
    aspect-ratio: 1 / 1;
    left: -10%;
    top: -10%;
    border-radius: 4px;
    z-index: -1;
  }
}
.desk {
  width: max-content;
  margin: auto;
  margin-bottom: -16px;
}
/* ==========================================================================
   SVG Icons in standard grids
   ========================================================================== */
.grid-icon svg:first-child {
  background: var(--gray-300);
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: var(--space-s);
}
.grid-icon-solid svg {
  /*  background: var(--primary-800);*/
  width: 48px;
  height: 48px;
  /*
  padding: 12px;
  border-radius: 8px;
*/
  margin-bottom: var(--space-s);
}
.grid-icon-solid svg {
  fill: var(--primary-800);
}
.grid-icon path, .grid-icon circle, .grid-icon line, .grid-icon polyline {
  stroke: var(--black);
}
@media (min-width: 700px) {
  .grid-icon-left > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-gap: var(--space-m);
  }
}
/* ==========================================================================
   Standard Grids
   ========================================================================== */
.grid {
  display: grid;
}
.standard-gap {
  grid-row-gap: 1rem;
  grid-column-gap: var(--space-xl);
}
.mini-gap {
  grid-gap: var(--space-s);
}
.grid-inner-space {
  grid-gap: var(--space-s);
}
.grid-inner-space > * {
  padding: clamp(1rem, 3vw, 2.5rem);
  border: solid 1px var(--gray-400);
}
.grid-inner-space > * p:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 700px) {
  .grid-2-small {
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-m);
  }
  .grid-2-1 {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .grid-1-2 {
    grid-template-columns: 30% 1fr;
  }
}
/* ==========================================================================
   50/50 Color Grid with extra spacing
   ========================================================================== */
.grid-50-50 {
  grid-gap: 2rem;
}
@media (min-width: 1000px) {
  .row-50-50 {
    background: linear-gradient(90deg, white 50%, var(--primary-800) 50%);
  }
  .grid-50-50 {
    grid-template-columns: 1fr 1fr;
    place-items: center;
    grid-gap: 0;
  }
  .grid-50-50 > div:first-of-type {
    padding-right: var(--space-xl);
  }
  .grid-50-50 > div:last-of-type {
    color: var(--gray-100);
    padding-left: var(--space-xl);
  }
  .grid-50-50 > div:last-of-type h3 {
    color: var(--white);
  }
  .grid-50-50 > div:last-of-type > div:last-of-type p:last-of-type {
    margin-bottom: 0;
  }
}
/* ==========================================================================
   Grid w/inner lines and no borders 4 or 6 only
   ========================================================================== */
.grid-inner-lines p:last-of-type {
  margin-bottom: 0;
}
.grid-inner-lines {
  display: grid;
  grid-gap: 1px;
  grid-template-columns: repeat(auto-fill, minmax(clamp(16rem, 30%, 40rem), 1fr));
  background: var(--gray-200);
}
.grid-inner-lines > div {
  background: var(--white);
  font-size: 1.1rem;
  padding: 2rem;
}
.grid-inner-lines svg {
  width: 32px;
  margin-bottom: var(--space-m);
}
@media (min-width: 900px) {
  .grid-inner-lines {
    text-align: center;
  }
  .grid-inner-lines svg {
    width: 32px;
    margin: 0 auto var(--space-s) auto;
  }
}
/* ==========================================================================
   Column of 4 with border left and dot
   ========================================================================== */
.column-grid > div {
  padding-left: 24px;
  border-left: solid 1px var(--black);
  padding-bottom: 24px;
}
.column-grid h2, .column-grid h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.column-grid > div::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-500);
  border: solid 2px var(--white);
  left: -8px;
  top: 0;
}
@media (min-width: 700px) {
  .column-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--space-m);
  }
}
@media (min-width: 900px) {
  .column-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ==========================================================================
   Steps
   ========================================================================== */
.steps-wrapper {
  display: grid;
  grid-gap: var(--space-l);
}
.steps-intro {
  border-radius: 8px;
  overflow: hidden;
}
.steps-intro > div:first-of-type {
  background: var(--primary-200);
  padding: clamp(1rem, 4vw, 4rem);
}
.steps-count > div {
  --size: 36px;
  counter-increment: stepsCounter;
  padding-left: var(--space-xl);
}
.steps-count > div::before {
  content: "0"counter(stepsCounter);
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  font-size: calc(var(--size)*0.4);
  border-radius: 8px;
  letter-spacing: normal;
  top: 0;
  left: 0;
  background: var(--primary-800);
  color: var(--primary-100);
}
@media (max-width: 899px) {
  .steps-count > div::before {
    top: 0;
    left: 0;
  }
  .steps-image {
    aspect-ratio: 2/ 1;
    /*	margin-inline: -24px;*/
  }
  .steps-count > div:not(:last-of-type)::after {
    height: calc(100% + 48px);
    width: 0;
    border-left: dashed 1px var(--primary-900);
    left: 18px;
    top: 0;
    z-index: -1;
  }
  .steps-count > div:not(:last-of-type) {
    margin-bottom: var(--space-xl);
  }
}
@media (min-width: 900px) {
  .steps-wrapper {
    grid-gap: var(--space-xxl);
  }
  .steps-count {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--space-xl);
  }
  .steps-count > div {
    --size: 72px;
    padding-top: 96px;
    text-align: center;
    padding-inline: 1rem;
  }
  .steps-count > div::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: var(--fw-semibold);
  }
  .steps-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .steps-count > div:not(:last-of-type)::after {
    width: calc(100% + 48px);
    height: 0;
    border-top: dashed 1px var(--primary-900);
    left: 50%;
    top: calc(var(--size)*0.5);
    z-index: -1;
  }
  .steps-image img {
    position: absolute;
    object-fit: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
/* ==========================================================================
   Steps Center List - simple column
   ========================================================================== */
.steps-list-wrapper {}
.steps-list {
  max-width: 680px;
  margin-inline: auto;
  display: grid;
  grid-gap: var(--space-xl);
}
.step {
  padding-left: var(--space-xxl);
}
.step::before {
  left: 0;
  top: 0;
}
.step p:last-of-type {
  margin-bottom: 0;
}
.steps-list.steps-list-boxes {
  grid-gap: var(--space-m);
}
.steps-list-boxes .step {
  padding: var(--space-m);
  padding-left: calc(var(--space-xxl) + var(--space-m));
  border: solid 1px var(--gray-200);
  border-radius: 8px;
}
.steps-list-boxes .step::before {
  top: var(--space-m);
  left: var(--space-m);
}
.steps-list-counter > div {
  --size: 64px;
  counter-increment: stepsCounter;
}
.steps-list-counter > div::before {
  content: "0"counter(stepsCounter);
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  font-size: calc(var(--size)*0.4);
  border-radius: 6px;
  letter-spacing: normal;
  background: var(--primary-800);
  color: var(--primary-100);
}
.steps-dashed > div:not(:last-of-type)::after {
  height: calc(100% + var(--space-xxl));
  width: 0;
  border-left: dashed 1px var(--primary-900);
  left: calc(var(--size)*0.5);
  top: 0;
  z-index: -1;
}
.steps-list-icon .step {
  display: grid;
  grid-template-columns: var(--space-xxl) 1fr;
  /*	outline: dotted 1px red;*/
  padding-left: 0;
  --size: 64px;
}
.steps-list-icon svg {
  stroke: red;
  width: 64px;
  background: var(--primary-800);
  stroke: var(--primary-100);
  padding: 16px;
  border-radius: 4px;
}
/* ==========================================================================
   FAQ Sections
   ========================================================================== */
.faq-wrapper p {
  margin-bottom: 0;
}
.faq {
  display: grid;
  grid-row-gap: var(--space-l);
  grid-column-gap: var(--space-xxl);
}
.faq-intro {
  margin-bottom: var(--space-xl);
}
.faq h3 {}
/* ================================
   Question Marks on left side
   ================================ */
.faq-icon > div {
  padding-left: var(--space-xl);
}
.faq-icon > div::before {
  width: 28px;
  height: 28px;
  background: var(--gray-800);
  line-height: 12px;
  content: "?";
  left: 0;
  top: 0;
  padding: 8px;
  color: var(--gray-100);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
}
/* ================================
   Numbers on left side
   ================================ */
.faq-numbers {
  counter-reset: faqCounter;
}
.faq-numbers > div {
  --size: 32px;
  counter-increment: faqCounter;
  padding-left: var(--space-xl);
}
.faq-numbers > div::before {
  content: counter(faqCounter);
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  font-size: calc(var(--size)*0.5);
  border-radius: 50%;
  letter-spacing: normal;
  top: 0;
  left: 0;
  background: var(--primary-800);
  color: var(--primary-200);
}
@media (min-width: 900px) {
  .faq-standard {
    grid-template-columns: 1fr 1fr;
  }
  .faq-side-by-side > div {
    display: grid;
    grid-template-columns: 40% 1fr;
    padding-top: var(--space-l);
    border-top: solid 1px var(--primary-200);
  }
  .faq-side-by-side h3 {
    line-height: 1.4;
  }
  .faq-grid-column {
    display: grid;
    grid-template-columns: 34% 1fr;
    grid-gap: var(--space-xl);
  }
  .faq-grid-column .faq {
    grid-gap: var(--space-s);
  }
  .faq-grid-column .faq > div {
    padding: 2rem;
    border: solid 1px var(--gray-200);
    background: white;
  }
}
/* ==========================================================================
   CTA to visit contact form
   ========================================================================== */
.contact-cta-wrap {
  display: none;
}
@media (min-width: 700px) {
  .contact-cta-wrap {
    width: 100%;
    height: 240px;
    background-size: contain;
    position: relative;
    display: block;
    background: linear-gradient(115deg, rgba(40, 40, 40, 0.85) 25%, rgba(40, 40, 40, .95) 25%, rgba(40, 40, 40, 0.95) 75%, rgba(40, 40, 40, .85) 75%);
  }
  .cta-operator {
    width: 277px;
    height: 281px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("../images/man-operator-small.webp") center bottom no-repeat;
    background-size: cover;
  }
  .contact-cta {
    padding-left: 260px;
    color: white;
    width: 640px;
    margin: auto;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
  }
  .contact-cta span {
    font-size: 1.25em;
    font-weight: 600;
    display: block;
  }
}
/* ==========================================================================
   Zig Zag Panels
   ========================================================================== */
.zig-zag-image {
  min-height: 300px;
  margin-bottom: var(--space-s);
  border-radius: 8px;
  overflow: hidden;
}
.zig-zag:not(.zig-zag:last-of-type) {
  margin-bottom: var(--space-xl);
}
.zig-zag-image img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.zig-zag-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 720px) {
  .zig-zag {
    display: flex;
    flex-direction: row;
    gap: var(--space-xl);
  }
  .zig-zag:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .zig-zag > * {
    flex: 1 1 50%;
    min-height: 40vh;
  }
  .zig-zag-image {
    margin-bottom: 0;
    aspect-ratio: 1/1;
  }
}
/* ==========================================================================
      Service and Product header elements
   ========================================================================== */
.sub-header {
  display: grid;
}
@media (min-width: 700px) {
  .sub-header {
    grid-template-columns: 1fr 180px 180px 10px;
    grid-template-rows: 64px 6px auto;
    /*	  grid-column-gap: var(--space-xs);*/
    grid-gap: 4px;
  }
  .sub-header span {
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
  }
  .sub-header-bar {
    grid-row: 2;
    grid-column: 1 / -1;
    background: var(--primary-300);
    transform: skewX(-7.5deg);
  }
  .sub-header h1 {
    grid-row: 3;
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-weight: 500;
    font-size: var(--fs-xl);
    /*		transform: skewX(-7.5deg);*/
  }
  .sub-header-image {
    grid-row: 1 / -1;
    /*		border-radius: 8px;*/
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    /*		clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);*/
    /*		clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);*/
    /*		clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);*/
    /*
		filter: drop-shadow(6px 6px 2px var(--primary-400));
		border-radius: 6px;
*/
  }
  .sub-header-image-1 {
    grid-column: 2 / 3;
  }
  .sub-header-image-2 {
    grid-column: 3 / 4;
  }
}
/* ==========================================================================
      Mini-CTA Strip of icons
   ========================================================================== */
.mini-cta {
  padding: 16px 0;
  font-size: 1.1rem;
  line-height: 1;
  display: none;
  border-radius: 8px;
  color: white;
}
.mini-cta > div {
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.mini-cta span {
  display: block;
  font-size: 1.25em;
  font-weight: 600;
}
.mini-cta svg {
  width: 36px;
  fill: var(--white);
  margin-right: 12px;
}
@media (min-width: 768px) {
  .mini-cta {
    display: flex;
    justify-content: space-around;
    margin: auto;
    background: linear-gradient(115deg, var(--primary-700) 35%, var(--primary-500) 35.1%, var(--primary-500) 68%, var(--primary-300) 68.1%);
  }
}
/* ==========================================================================
   Mini Review Row
   ========================================================================== */
.mini-reviews::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #1f005c, #5b0060, #870160, #ac255e, #ca485c, #e16b5c, #f39060, #ffb56b);
  background: linear-gradient(90deg, #405c1c, #567227, #6e8832, #879f3e, #a1b74a, #becf55, #dbe762, #faff6e);
  background: linear-gradient(90deg, #5c0000, #65000a, #7b0021, #950047, #a10080, #910dbe, #633eed, #384cff);
  background: linear-gradient(90deg, #397819, #2d791e, #007c2c, #007f46, #00816c, #00839c, #0082cf, #007ef6, #0073ff, #0064ff, #0054ff, #384cff);
  filter: blur(60px);
  opacity: 0.5;
}
.mini-reviews > div {
  padding: 1.5rem;
  font-size: 1.1rem;
  display: grid;
  grid-template-rows: auto 1fr 80px;
  grid-gap: 2rem;
  box-shadow: var(--shadow-elevation-medium);
  background-color: var(--white);
  border-top: solid 2px var(--primary-600);
  border-radius: 2px;
}
.tiny-review-stars {
  width: 100px;
}
.review-author {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 1rem;
  font-weight: var(--fw-semibold);
  align-items: center;
}
.review-author img {
  border-radius: 50%;
}
.mini-reviews p {
  margin-bottom: 0;
}
.review-author span {
  display: block;
  font-size: 0.875em;
  color: var(--gray-600);
  font-weight: var(--fw-light);
}
/* ==========================================================================
   Service Counters
   ========================================================================== */
.service-stats {
  display: grid;
  grid-gap: 1rem;
  line-height: 1;
  padding: 2rem;
  text-align: center;
}
.service-stats > div {
  display: grid;
  grid-gap: 16px;
}
.stat {
  font-size: var(--fs-xxxl);
  font-weight: 900;
  background: linear-gradient(90deg, #dbd55a, #e0d25a, #e4cf5a, #e8cc5b, #ecc95c, #f0c65d, #f3c35f, #f6c061, #f9bd63, #fbba65, #fdb868, #ffb56b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.stat-decription {
  white-space: nowrap;
  text-transform: capitalize;
  font-weight: var(--fw-semibold);
}
@media (min-width: 700px) {
  .service-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 4px;
  }
  .service-stats > div:not(:last-of-type) {
    border-right: dashed 1px var(--gray-300);
  }
}
/* ==============================================================
   Contact Forms
   ============================================================== */
/* ----------------------------- */
/* Form structural elements */
/* ----------------------------- */
#main-form-wrap {
  display: grid;
  grid-gap: var(--space-l);
}
@media (min-width: 900px) {
  #main-form-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
/* ----------------------------- */
/* Pre-form Intro Text Box */
/* ----------------------------- */
.form-intro .mini-icon-left {
  margin-bottom: var(--space-m);
}
/* Social Icons in intro area*/
.contact-social {
  display: flex;
  gap: 6px;
}
.contact-social a {
  outline: solid 1px transparent;
  transition: outline 150ms linear;
  border-radius: 4px;
}
.contact-social a:focus-visible {
  outline-offset: 2px;
  outline: solid 2px var(--primary-800);
}
.contact-social svg {
  width: 36px;
}
.contact-social svg:hover {
  scale: 1.05;
}
.contact-social svg path {
  fill: var(--primary-600);
}
/* ----------------------------- */
/* Actual Form and Outer Wrapper */
/* ----------------------------- */
#form-wrap {
  padding: clamp(1.5rem, 2vw + 1rem, 5rem);
  border: solid 1px var(--gray-200);
  border-top: solid 2px var(--primary-400);
  background: var(--white);
  box-shadow: var(--shadow-elevation-medium);
}
#form-wrap::after {
  background-image: var(--dotted);
  width: 25%;
  height: 50%;
  background-size: 30px 20px;
  right: 0;
  bottom: 0;
  opacity: 0.75;
}
.form {
  caret-color: var(--primary-700);
  position: relative;
  z-index: 5;
  --field-background: white;
  --field-border: solid 4px transparent;
  --field-text: var(--primary-700);
}
span.required-instructions {
  font-size: 1rem;
  margin-bottom: var(--space-m);
  display: block;
}
.form label {
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
  font-size: 1.1rem;
  display: block;
  line-height: 1;
}
.form label span {
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.2;
  display: block;
}
/* ----------------------------- */
/* Text Fields */
/* ----------------------------- */
.form input, .form textarea {
  padding: 1rem;
  background: var(--field-background);
  color: var(--field-text);
  border: none;
  border-radius: 4px;
  outline: solid 1px var(--primary-300);
  transition: outline 150ms linear;
  display: block;
}
.form input:focus, .form textarea:focus {
  outline: solid 3px var(--primary-700);
}
.input-wrap {
  margin-bottom: var(--space-m);
}
.input-wrap input {
  width: 100%;
}
.input-wrap input:valid {
  background: var(--field-background) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 14 14' height='24' width='24'%3E%3Cpath fill='%23262626' fill-rule='evenodd' d='M0.25 7C0.25 3.27208 3.27208 0.25 7 0.25C10.7279 0.25 13.75 3.27208 13.75 7C13.75 10.7279 10.7279 13.75 7 13.75C3.27208 13.75 0.25 10.7279 0.25 7ZM9.91992 4.96291C10.1756 4.73099 10.1948 4.33573 9.96291 4.08008C9.731 3.82442 9.33574 3.80517 9.08008 4.03709C8.24933 4.79069 7.62529 5.46796 7.09853 6.29015C6.7149 6.88893 6.39195 7.55044 6.07573 8.35217L4.94869 7.18991C4.70839 6.94211 4.31271 6.93602 4.06491 7.17631C3.81711 7.41661 3.81102 7.81229 4.05131 8.06009L5.86949 9.93509C6.02045 10.0908 6.24132 10.1571 6.45306 10.1103C6.66479 10.0635 6.83715 9.91027 6.90844 9.70548C7.32868 8.49831 7.70175 7.66575 8.15104 6.96448C8.59786 6.26707 9.13695 5.67318 9.91992 4.96291Z' clip-rule='evenodd'%3E%3C/path%3E%3C/svg%3E") 96% center no-repeat;
  background-size: 24px 24px;
}
input#verify {
  text-align: center;
  display: block;
  margin-bottom: var(--space-m);
}
/* ----------------------------- */
/* Comments text field */
/* ----------------------------- */
#comments {
  width: 100%;
  height: 120px;
  resize: vertical;
  margin-bottom: var(--space-m);
  font-size: 1.1rem;
}
/* ----------------------------- */
/* Submit Button */
/* ----------------------------- */
form button {
  padding: 16px 32px;
  outline: solid 1px transparent;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: var(--fw-semibold);
  transition: all 0.25s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--primary-100);
  background: var(--primary-700);
}
.no-animation form button {
  transition: 0s;
}
form button:hover {
  background: var(--primary-900);
}
form button:focus-visible {
  outline-offset: 6px;
  outline: solid 2px var(--primary-800);
}
form button:hover svg {
  transform: translateX(5px);
}
form button svg {
  fill: currentColor;
  width: 0.75em;
  transition: all 0.25s;
}
/* ==========================================================================
   Footer a tags focus-visible
   ========================================================================== */
footer a:focus-visible {
  transition: outline-offset 50ms ease-out;
  outline: solid 2px currentColor;
  border-radius: 4px;
}
footer a:not(:active):focus-visible {
  outline-offset: 0.3rem;
  transition-duration: 0.25s;
}
/* ==========================================================================
   Main Site Footer
   ========================================================================== */
footer {
  isolation: isolate;
  /*	line-height: 1;*/
  /*  padding: 0 18px 24px 18px;*/
  font-size: 1rem;
}
.inner-footer {
  color: white;
  isolation: isolate;
  background: var(--gray-1100);
  border-radius: 12px;
  padding: var(--space-m);
  /*	padding: clamp(24px, 6vw, 96px);*/
}
.footer-intro {
  display: grid;
  gap: var(--space-m);
  place-items: start;
  margin-bottom: clamp(18px, 6vw, 96px);
}
@media (min-width: 700px) {
  footer {
    font-size: 1.1rem;
  }
  .inner-footer {
    border-radius: 24px;
  }
}
footer p {
  margin-bottom: 0;
  font-weight: 300;
}
@media (min-width: 1000px) {
  .footer-intro {
    grid-template-columns: 1fr auto;
  }
  .inner-footer {
    padding: var(--space-xl);
    padding-top: var(--space-xxl);
    border-radius: 48px;
  }
}
/* =============================
   Underline links on hover in footer
   =================================== */
footer a:not(.social-icons a)::after {
  width: 0;
  background: currentColor;
  height: 1px;
  z-index: -1;
  right: 0;
  bottom: -5px;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
footer a:not(.social-icons a):hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
/* =============================
   Footer Contact Meta Data
   ============================= */
.icon-grid-pack {
  display: grid;
  gap: var(--space-m);
  max-width: max-content;
}
.icon-grid-list {
  display: grid;
  grid-template-columns: 18px auto;
  gap: var(--space-s);
  line-height: 1;
}
.icon-grid-list svg {
  fill: white;
}
.icon-grid-list ul {
  display: grid;
  gap: var(--space-xs);
}
.icon-grid-list li {
  line-height: 1;
}
.icon-grid-list li span {
  font-size: 0.75em;
  display: block;
}
/* =============================
   Social Icons
   ============================= */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  max-width: 170px;
  gap: 4px;
}
.social-icons img {
  width: 32px;
  opacity: 0.7;
}
/* =============================
   Footer Nav
   ============================= */
.footer-nav {
  display: grid;
  gap: var(--space-m);
  /*  grid-template-columns: auto 1fr;*/
  align-items: start;
}
.footer-nav ul {
  display: grid;
  gap: var(--space-xs);
  max-width: max-content;
}
.footer-nav li {
  /*  	outline: dotted 1px yellow;*/
}
.footer-nav li:first-of-type {
  text-transform: uppercase;
  font-size: 1rem;
  opacity: 0.75;
  padding-bottom: var(--space-xs);
  max-width: max-content;
  margin-bottom: var(--space-xs);
}
.footer-nav li:first-of-type::after {
  width: 50%;
  height: 1px;
  background: currentColor;
  bottom: 0;
  left: 0;
}
@media (min-width: 700px) {
  .footer-nav {
    grid-template-columns: auto auto 1fr;
    gap: var(--space-xl);
  }
}
@media (min-width: 1300px) {
  .footer-nav ul {
    gap: var(--space-s);
  }
}
/* =============================
   Footer Big Text
   ============================= */
.footer-big-text {
  font-size: 6vw;
  font-weight: var(--fw-bold);
  margin-bottom: clamp(18px, 6vw, 96px);
}
@media (min-width: 1000px) {
  .footer-big-text {
    text-align: center;
  }
}
/* =============================
   Copywrite & Admin Links
   ============================= */
.footer-sub-meta {
  display: grid;
  gap: var(--space-s);
  color: var(--gray-200);
  font-size: 1rem;
  /*	padding-top: 64px;*/
}
.footer-logo-copyright {
  display: grid;
  gap: var(--space-xs);
}
.admin-links {
  display: grid;
  gap: var(--space-xs);
}
.payments {
  display: flex;
  gap: 4px;
}
.payments img {
  max-width: 32px;
}
@media (min-width: 900px) {
  .footer-sub-meta {
    grid-template-columns: 1fr 1fr;
  }
  .admin-links {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-m);
  }
}
/* ===============================  Footer Map ====================================== */
.location-map {
  height: 45vh;
  min-height: 250px;
  max-height: 500px;
  line-height: 1;
  /*  display: none;*/
}
.map-wrapper {
  height: 45vh;
  min-height: 250px;
  max-height: 500px;
}
footer .location-map {
  display: none;
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* ===========================  Footer Memberships ===================== */
.memberships-wrap {
  padding-top: var(--space-l);
}
.memberships {
  display: flex;
  width: 94%;
  max-width: 1500px;
  margin: auto;
  justify-content: center;
  flex-flow: row wrap;
}
.memberships > div {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.memberships img {
  max-width: 140px;
  max-height: 80px;
  width: auto;
  height: auto;
}
@media only screen and (min-width:1200px) {
  .memberships img {
    max-width: 200px;
    max-height: 100px;
  }
}
/* ========================================  Site Credits ======================================= */
.site-credits {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-m);
}
.site-credits .wrapper {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  text-align: right;
  line-height: 1.15;
}
.site-credits a {
  display: block;
  width: max-content;
}
/* ==========================================================================
   Thanks, form-error and 404 pages
   ========================================================================== */
.admin svg.admin-icon {
  width: 64px;
  margin: 0 auto var(--space-l) auto;
}
.admin .contact-social {
  justify-content: center;
}
.admin .primary-link {
  margin: auto;
}