/* ==========================================================================
   1. COLOR PRIMITIVES, TYPOGRAPHY & CORE LAYOUT
   ========================================================================== */
:root {
  --primary: #3985b0;         
  --primaryDark: #1a4d6c;  
  --primaryLight: #f4f8fa; 
  --actionColor: #f97316;    
  --textcolor: #0f172a;
  --headerColor: #0f172a;
  --bodyTextColor: #111;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  font-size: 100%;
}

body {
  font-family: 'Roboto', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}
.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}
                


/* ==========================================================================
   Hero
   ========================================================================== */

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-2274 {
    /* 150px - 350px Top */
    padding: clamp(9rem, 30.95vw, 21.875rem) 1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
  }
  #hero-2274 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5.5rem;
  }
  #hero-2274 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #hero-2274 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2em;
    width: 100%;
    max-width: 17ch;
    margin: 0 0 1rem;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #hero-2274 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5em;
    width: 100%;
    max-width: 43.75rem;
    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #hero-2274 .cs-button-solid {
    font-size: 1rem;
    text-align: center;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    /* clips corners of the before element */
    overflow: hidden;
    margin: 0;
    color: #fff;
    padding: 0 1.75rem;
    background-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.25rem;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #hero-2274 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #hero-2274 .cs-button-solid:hover {
    color: #fff;
  }
  #hero-2274 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-2274 .cs-picture {
    width: 100%;
    /* 427px - 581px */
    max-width: clamp(26.6875rem, 50vw, 36.3125rem);
    height: auto;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 7;
  }
  #hero-2274 .cs-picture img {
    width: 100%;
    height: auto;
    right: -17px;
    position: inherit;
  }
  #hero-2274 .cs-image-group {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  #hero-2274 .cs-background {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  #hero-2274 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-2274 .cs-background1:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.72;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  #hero-2274 .cs-background2 {
    height: 100vw;
    max-height: 30rem;
    flex: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-2274 {
    padding-bottom: 9.375rem;
    padding-top: 13rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5.625rem;
  }
  #hero-2274 .cs-container {
    justify-content: flex-start;
    flex-direction: row;
  }
  #hero-2274 .cs-content {
    text-align: left;
    width: 53%;
    align-items: flex-start;
  }
  #hero-2274 .cs-picture {
    width: 56%;
    position: absolute;
    bottom: -4.0625rem;
    right: -1.875rem;
  }

    #hero-2274 .cs-picture img {
    width: 85%;
    height: auto;
    right: 100px;
    position: absolute;
  }
  #hero-2274 .cs-image-group {
    flex-direction: row;
  }
  #hero-2274 .cs-background2 {
    width: 25vw;
    height: 100%;
    max-height: 100%;
    border-left: 2px solid var(--primaryDark);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-2274 {
    /* 100px - 172px */
    padding-bottom: clamp(6.25rem, 12vw, 10.9375rem);
  }
  #hero-2274 .cs-picture {
    width: 45%;
    /* same value as the padding, but opposite */
    bottom: calc(clamp(6.25rem, 12vw, 10.9375rem)*-1);
    /* 32px - 80px */
    right: clamp(2rem, 5vw, 5rem);
  }
  #hero-2274 .cs-background2 {
    width: 32.8125vw;
  }
}

/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #Hservices-2274 {
    width: 100%;
    padding: var(--sectionPadding);
    position: relative;
    z-index: 20;
  }
  #Hservices-2274 .cs-container {
    max-width: 80rem;
    margin: auto;
    position: relative;
    z-index: 1;
  }
  #Hservices-2274 .cs-card-group {
    width: 100%;
    max-width: 80rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 2rem;
  }
  #Hservices-2274 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
    grid-column: span 12;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s, border-color 0.3s;
  }
  #Hservices-2274 .cs-item:last-of-type .cs-link {
    /* 32px - 80px top & bottom */
    /* 16px - 80px left & right */
    padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 4vw, 5rem);
    box-sizing: border-box;
  }
  #Hservices-2274 .cs-item:last-of-type .cs-icon {
    width: 4rem;
    margin-bottom: 1.5rem;
  }
  #Hservices-2274 .cs-item:last-of-type .cs-h3 {
    font-size: 1.5625rem;
  }
  #Hservices-2274 .cs-item:last-of-type .cs-item-text {
    margin-bottom: 2rem;
  }
  #Hservices-2274 .cs-number {
    font-size: 4.5rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
  }
  #Hservices-2274 .cs-fake-link {
    font-size: 1rem;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    padding: 0 0 0.25rem 0;
    border-bottom: 1px solid var(--primary);
    color: var(--headerColor);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }
  #Hservices-2274 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #Hservices-2274 .cs-background:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 1;
    border-radius: 1rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #Hservices-2274 .cs-background img {
    width: 100%;
    height: 100%;
    opacity: 0.08;
        border-radius: 1rem;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #Hservices-2274 .cs-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  #Hservices-2274 .cs-icon {
width: 3rem;
    height: auto;
    margin: 0 0 1rem 0;
  }
  #Hservices-2274 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    text-align: inherit;
    line-height: 1.2em;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #Hservices-2274 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s, opacity 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #Hservices-2274 .cs-card-group {
    width: 44%;
  }
  #Hservices-2274 .cs-item:last-of-type {
    width: 49%;
    position: absolute;
    right: 0;
    top: calc(clamp(10rem, 20vw, 12.5rem)*-1);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #Hservices-2274 .cs-item:last-of-type {
    width: 37vw;
    max-width: 25rem;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #Hservices-2274 {
    padding: 0;
  }
  #Hservices-2274 .cs-card-group {
    width: 53.75rem;
    padding: 3.75rem 0;
    column-gap: 1.25rem;
  }
  #Hservices-2274 .cs-item {
    grid-column: span 4;
  }
  #Hservices-2274 .cs-item:last-of-type {
    top: auto;
    bottom: 0;
  }
}
                                








/* ==========================================================================
   2. SITE COMPONENTS (Hero, Dynamic Cards, Trust Banners)
   ========================================================================== */



.action-btn {
  background-color: var(--headerColor); /* Blue */
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.action-btn:hover {
  background-color: #2c6382; /* Slightly darker blue */
}
/* Premium Dynamic Flex Cards Grid */
.service-flex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.service-card {
  background: var(--lightBg);
  border: 1px solid var(--borderLine);
  border-radius: 12px;
  padding: 2.2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.card-title {
  font-size: 1.5rem;
  color: var(--headerColor);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

/* Local Trust High-Conversion Banner */
.action-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 3.5rem 2rem;
  border-radius: 16px;
  margin: 4rem 0;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.action-banner h2 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.action-banner p {
  color: #94a3b8;
  font-size: 1.3rem;
}

.phone-link {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary); /* Gold stays here for high visibility */
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0;
  letter-spacing: 0.5px;
}

.phone-link:hover {
  text-decoration: underline;
}

.action-btn {
  display: inline-block;
  background-color: var(--primary);
  color: #0f172a !important;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(245, 179, 0, 0.3);
  transition: background-color 0.2s, transform 0.1s;
}

.action-btn:hover {
  background-color: var(--primaryDark);
}

.action-btn:active {
  transform: scale(0.98);
}

/* Neighborhood SEO Pills */
.hood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.hood-pill {
  background: #ffffff;
  border: 1px solid var(--borderLine);
  border-radius: 8px;
  padding: 1rem;
  text-decoration: none;
  color: var(--headerColor);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

.hood-pill:hover {
  background: var(--lightBg);
  border-color: var(--primary);
  color: #000000;
}


/* ==========================================================================
   3. MOBILE NAVIGATION STYLES (< 1023px)       
   ========================================================================== */
@media only screen and (max-width: 1023.5px) {
  body.cs-open { 
    overflow: hidden; 
  }
  #cs-navigation { 
    width: 100%; 
    box-sizing: border-box; 
    padding: 0.25rem .5rem;
    background-color: #fff; 
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; 
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 10000; 
  }
  #cs-navigation:before { 
    content: ""; 
    width: 100%; 
    height: 0vh; 
    background: rgba(0, 0, 0, 0.6); 
    opacity: 0; 
    display: block; 
    position: absolute; 
    top: 100%; 
    right: 0; 
    z-index: -1100; 
    transition: height 0.5s, opacity 0.5s; 
    backdrop-filter: blur(10px); 
  }
  #cs-navigation.cs-active:before { 
    height: 150vh; 
    opacity: 1; 
  }
  #cs-navigation.cs-active .cs-ul-wrapper { 
    opacity: 1; 
    transform: scaleY(1); 
    transition-delay: 0.15s; 
  }
  #cs-navigation.cs-active .cs-li { 
    opacity: 1; 
    transform: translateY(0);
  }
  #cs-navigation .cs-container { 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
  }
  #cs-navigation .cs-logo { 
    display: flex;
    align-items: center;
    z-index: 10; 
    text-decoration: none; 
  }
  #cs-navigation .cs-nav {
    display: flex;
    align-items: center;
  }
  #cs-navigation .cs-toggle { 
    width: 3rem; 
    height: 3rem; 
    background-color: transparent; 
    border: none; 
    border-radius: 0.25rem; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    cursor: pointer; 
  }
  #cs-navigation .cs-active .cs-line1 { 
    top: 50%; 
    transform: translate(-50%, -50%) rotate(225deg); 
  }
  #cs-navigation .cs-active .cs-line2 { 
    top: 50%; 
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg); 
    transform-origin: center; 
  }
  #cs-navigation .cs-active .cs-line3 { 
    opacity: 0; 
    bottom: 100%; 
  }
  #cs-navigation .cs-box { 
    width: 1.5rem; 
    height: 1rem; 
    position: relative; 
  }
  #cs-navigation .cs-line { 
    width: 100%; 
    height: 2px; 
    background-color: var(--primaryDark); 
    border-radius: 2px; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
  }
  #cs-navigation .cs-line1 { top: 0; transition: transform 0.5s, top 0.3s, left 0.3s; transform-origin: center; }
  #cs-navigation .cs-line2 { top: 50%; transform: translateX(-50%) translateY(-50%); transition: top 0.3s, left 0.3s, transform 0.5s; }
  #cs-navigation .cs-line3 { bottom: 0; transition: bottom 0.3s, opacity 0.3s; }
   
  #cs-navigation .cs-ul-wrapper { width: 100%; height: auto; padding-bottom: 2.4em; background-color: #fff; box-shadow: inset rgba(0, 0, 0, 0.1) 0px 8px 24px; opacity: 0; position: absolute; top: 100%; left: 0; z-index: -1; overflow: hidden; transform: scaleY(0); transition: transform 0.4s, opacity 0.3s; transform-origin: top; }
  #cs-navigation .cs-ul { width: 100%; height: auto; max-height: 70vh; margin: 0; padding: 3rem 0 0 0; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; gap: 1.25rem; overflow: auto; }
  #cs-navigation .cs-li { text-align: center; list-style: none; width: 100%; margin-right: 0; opacity: 0; transform: translateY(-4.375rem); transition: transform 0.6s, opacity 0.9s; }
  #cs-navigation .cs-li-link { font-family: system-ui, sans-serif; font-size: 1.25rem; line-height: 1.2em; text-decoration: none; margin: 0; padding: 0.25rem; color: var(--headerColor); display: inline-block; position: relative; }
  #cs-navigation .cs-li-link:before { content: ""; width: 100%; height: 1px; background: currentColor; opacity: 1; display: none; position: absolute; bottom: -0.125rem; left: 0; }
  #cs-navigation .cs-li-link.cs-active:before { display: block; }
   
  #cs-navigation .cs-button-solid { 
    display: none !important; 
  }

  /* Mobile Dropdown Options */
  #cs-navigation .cs-dropdown { position: relative; }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul { height: auto; margin: 0.75rem 0 0 0; padding: 0.75rem 0; opacity: 1; visibility: visible; }
  #cs-navigation .cs-dropdown-toggle { background: none; border: none; text-align: inherit; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; justify-content: center; width: 100%; font-size: 1.25rem; color: var(--headerColor); font-family: system-ui, sans-serif;}
  #cs-navigation .cs-drop-icon { width: 0.9375rem; height: auto; transition: transform 0.3s; }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-icon { transform: rotate(180deg); }
  #cs-navigation .cs-drop-ul { width: 100%; height: 0; margin: 0; padding: 0; background-color: #f7f7f7; opacity: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: flex-start; align-items: center; gap: 0.75rem; overflow: hidden; transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s; }
  #cs-navigation .cs-drop-li { list-style: none; }
  #cs-navigation .cs-li-link.cs-drop-link { font-size: 1rem; color: var(--bodyTextColor); }

  #cs-navigation .cs-mobile-cta-wrapper {
    width: 100%;
    padding: 0 1.5rem;
    margin-top: 0.5rem;
    list-style: none;
  }
  #cs-navigation .cs-mobile-cta-button {
    font-family: system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    color: #111;
    background-color: var(--primary);
    border-radius: 4px;
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }
}

/* ==========================================================================
   4. DESKTOP NAVIGATION STYLES (>= 1024px)     
   ========================================================================== */
@media only screen and (min-width: 1024px) {
  #cs-navigation { width: 100%; box-sizing: border-box; padding: 0 2rem; background-color: #fff; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px; position: fixed; top: 0; left: 0; z-index: 10000; }
  #cs-navigation .cs-container { width: 100%; max-width: var(--siteMaxWidth); margin: auto; display: flex; justify-content: flex-end; align-items: center; gap: 2rem; }
  #cs-navigation .cs-toggle { display: none; }
  #cs-navigation .cs-logo { height: 4.5rem; margin-right: auto; padding: 0; display: flex; justify-content: center; align-items: center; z-index: 100; text-decoration: none; }
  #cs-navigation .cs-ul { margin: 0; padding: 0; display: flex; justify-content: flex-start; align-items: center; gap: 2.5rem; }
  #cs-navigation .cs-li { list-style: none; padding: 1.5rem 0; flex: none; }
  #cs-navigation .cs-li-link { font-family: system-ui, sans-serif; font-size: 1rem; font-weight: 500; line-height: 1.5em; text-decoration: none; padding: 0.25rem 0; color: var(--headerColor); display: block; position: relative; transition: color 0.3s; }
  #cs-navigation .cs-li-link:hover { color: #000; }
  #cs-navigation .cs-li-link:hover:before, #cs-navigation .cs-li-link.cs-active:before { width: 100%; }
  #cs-navigation .cs-li-link:before { content: ""; width: 0%; height: 2px; background: var(--primary); opacity: 1; display: block; position: absolute; bottom: 0rem; left: 0; transition: width 0.3s; }
   
  #cs-navigation .cs-mobile-cta-wrapper {
    display: none !important;
  }

  /* Desktop Hover Dropdowns */
  #cs-navigation .cs-dropdown { position: relative; }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul { opacity: 1; visibility: visible; transform: scaleY(1);  background-color: var(--primaryDark); }
  #cs-navigation .cs-dropdown:hover .cs-drop-li { opacity: 1; transform: translateY(0);  }
  #cs-navigation .cs-dropdown-toggle { background: none; border: none; text-align: inherit; cursor: pointer; display: flex; align-items: center; gap: 6px; font-size: 1rem; font-weight: 500; color: var(--headerColor); font-family: system-ui, sans-serif; }
  #cs-navigation .cs-drop-icon { width: 0.75rem; height: auto; display: inline-block; }
  #cs-navigation .cs-drop-ul { 
    min-width: 15rem;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    box-shadow: rgba(149, 157, 165, 0.45) 0px 10px 16px;
    border-top: 3px solid var(--primary);
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0%;
    transform: translateX(-50%) scaleY(0);
    z-index: 100;
    overflow: hidden;
    transform-origin: top;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
   }
  #cs-navigation .cs-drop-li { font-size: 0.95rem; text-decoration: none; list-style: none; width: 100%; height: auto; opacity: 0; display: block; transform: translateY(-0.625rem); transition: opacity 0.4s, transform 0.4s; }
  #cs-navigation .cs-li-link.cs-drop-link { font-size: 0.95rem; line-height: 1.5em; text-decoration: none; white-space: nowrap; width: 100%; box-sizing: border-box; padding: 0.75rem 1rem; color: var(--headerColor); display: block; transition: color 0.3s, background-color 0.3s; background: var(--bodyTextColorWhite); }
  #cs-navigation .cs-li-link.cs-drop-link:hover { background-color: var(--menuItemBg); color: #fff; }
  #cs-navigation .cs-li-link.cs-drop-link:before { display: none; }
   
  #cs-navigation .cs-button-solid { font-family: system-ui, sans-serif; font-size: 0.95rem; font-weight: 700; height: 2.5rem; line-height: 2.5rem; text-align: center; text-decoration: none; min-width: 9rem; margin: 0; box-sizing: border-box; padding: 0 1.25rem; background-color: var(--primary); color: var(--bodyTextColorWhite); border-radius: .25rem; display: inline-block; position: relative; z-index: 1; transition: transform 0.2s, background-color 0.3s; }
  #cs-navigation .cs-button-solid:hover { background-color: var(--primaryDark); transform: translateY(-1px); color: var(--bodyTextColorWhite); }
}








/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {


#cs-footer-2412 .cs-logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
}


#cs-footer-2412 .cs-logo {
    width: auto;
    max-width: 100%;
    height: auto;
}

#cs-footer-2412 .cs-footer-icon {
    height: auto;
    max-width: 10rem;
}




  #cs-footer-2412 {
    --gradientmix: color-mix(in lab, var(--primaryLight), black 49%);
    text-align: center;
    padding: var(--sectionPadding);
    padding-bottom: clamp(2.5rem, 6vw, 3.75rem);
    color: var(--bodyTextColorWhite);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--headerColor);
    /* .cs-quick-links */
    /* .cs-subscribe */
    /* overlay image arch */
  }
  #cs-footer-2412:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url("/assets/images/bkgtech.png") repeat 0 0;
    opacity: 0.12;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cs-footer-2412 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #cs-footer-2412 .cs-text {
    color: inherit;
  }
  #cs-footer-2412 .cs-logo {
    max-width: 20.5rem;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  #cs-footer-2412 .cs-link {
   font-family: system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5em;
    text-decoration: none;
    padding: 0.25rem 0;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
  }
  #cs-footer-2412 .cs-link-list {
   font-family: system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5em;
    text-decoration: none;
    padding: 0.25rem 0;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
  }




#cs-footer-2412 .cs-link-list::after {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    display: block;
    transition: width 0.3s;
}

#cs-footer-2412 .cs-link-list:hover:after { width: 100%; }


  #cs-footer-2412 .cs-link:hover {
    color: var(--primaryLight);
  }
  #cs-footer-2412 .cs-h2 {
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColorWhite);
    display: block;
    position: relative;
  }
  #cs-footer-2412 .cs-ul {
    max-width: none;
    margin: 0;
    margin-bottom: clamp(1.5rem, 8vw, 3rem);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: clamp(1.3125rem, 6.9vw, 3rem);
    row-gap: 0.25rem;
  }
  #cs-footer-2412 .cs-li {
    line-height: 1.675rem;
    list-style: none;
  }
  #cs-footer-2412 .cs-wrapper {
    max-width: 30.625rem;
    margin: 0 auto;
  }
  #cs-footer-2412 .cs-bottom {
    width: 100%;
    max-width: 32.625rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #cs-footer-2412 .cs-header {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 600;
    margin: 0;
    margin-bottom: 1.5rem;
  }
  #cs-footer-2412 .cs-form {
    margin-bottom: clamp(2rem, 11vw, 2.5rem);
    display: flex;
    gap: 1rem;
  }
  #cs-footer-2412 .cs-input {
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid #4C4A48;
  }
  #cs-footer-2412 .cs-submit {
    width: 3rem;
    height: 3rem;
    padding: 0;
    background-color: var(--primaryLight);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: opacity 0.3s ease;
  }
  #cs-footer-2412 .cs-submit:focus,
  #cs-footer-2412 .cs-submit:hover {
    opacity: 0.51;
  }
  #cs-footer-2412 .cs-icon {
    width: 1rem;
    height: auto;
  }
  #cs-footer-2412 .cs-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  #cs-footer-2412 .cs-social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  #cs-footer-2412 .cs-social-link:hover:after {
    border-color: var(--primaryLight);
    background-color: var(--primaryLight);
  }
  #cs-footer-2412 .cs-social-link:after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    border: 1px solid var(--bodyTextColorWhite);
    background-color: rgba(255, 255, 255, 0);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  #cs-footer-2412 .cs-legal {
    width: auto;
  }
  #cs-footer-2412 .cs-divider {
    margin: 0 1rem;
  }
  #cs-footer-2412 .cs-credit {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    margin-top: clamp(3rem, 4vw, 6.25rem);
    padding-top: 1.25rem;
    border-top: 1px solid #4C4A48;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-footer-2412 .cs-curve {
    --overlayBG: #fff;
    width: 100%;
    height: auto;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 3000;
    pointer-events: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-footer-2412 .cs-bottom {
    justify-content: space-between;
  }
  #cs-footer-2412 .cs-logo-group {
    margin-bottom: 0rem;
}
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-footer-2412 {
    padding-top: 6rem;
  }
  #cs-footer-2412 .cs-container {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
  }
  #cs-footer-2412 .cs-logo {
    margin-left: 0;
    align-self: flex-start;
  }
  #cs-footer-2412 .cs-quick-links {
    text-align: left;
    width: 15%;
    max-width: 32.66666667rem;
    margin-right: 4rem;
  }
  #cs-footer-2412 .cs-ul {
    margin: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #cs-footer-2412 .cs-wrapper {
    width: 52%;
    max-width: 32.625rem;
    margin-inline: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #cs-footer-2412 .cs-h2,
  #cs-footer-2412 .cs-header {
    text-align: left;
  }
}
                                       




















/*-- -------------------------- -->
<---         CTA home           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {

.cs-button-11 {
    text-decoration: none;
    padding-right: 1.875rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    position: relative;
    perspective: 200px;
    transform-style: preserve-3d;
}
.cs-button-11:nth-of-type(2) {
    display: none;
}
.cs-button-11:hover .cs-wrapper {
    transform: rotateY(180deg);
}
.cs-button-11 .cs-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
    position: relative;
    z-index: 1;
    transition: transform 0.6s;
}
.cs-button-11 .cs-wrapper:before {
    /* backgorund color in pseudo so we can use the primary color variable and use opacity */
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
}
.cs-button-11 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
    transition: transform 0.3s;
}
.cs-button-11 .cs-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}
.cs-button-11 .cs-header {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: block;
}
.cs-button-11 .cs-link-content {
    font-size: 0.875rem;
    line-height: 1.2em;
    font-weight: 400;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
}


.button-box {
    display: flex;
    gap: 1rem;
    align-items: center;
}


                                
  
  #cta-96 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #cta-96:before {
    /* black background on mobile */
    content: "";
    width: 100%;
    height: 50%;
    background: #1a1a1a;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  #cta-96 .cs-stripes {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* prevent stripes from overlapping sections above and below */
    overflow: hidden;
    /* Makes it so your cursor acts like it doesn't exist */
    pointer-events: none;
  }
  #cta-96 .cs-stripes:before {
    /* Stripe 1 */
    content: "";
    width: 8.25rem;
    height: 56.25rem;
    background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0.45) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0.45) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.45) 100%);
    opacity: 0.08;
    transform: rotate(-25deg);
    position: absolute;
    display: block;
    top: -9.375rem;
    /* position in the middle, 50% from the left, no matter how wide 
                   the screen gets, it will be placed on the center line of the div */
    left: 50%;
    /* push X amount of pixels from this 50% midpoint */
    margin-left: -6.25rem;
  }
  #cta-96 .cs-stripes:after {
    /* Stripe 2 */
    content: "";
    width: 8.25rem;
    height: 62.5rem;
    background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0.45) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0.45) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.45) 100%);
    opacity: 0.08;
    transform: rotate(-25deg);
    position: absolute;
    display: block;
    top: -6.25rem;
    /* position in the middle, 50% from the left, no matter how wide 
                   the screen gets, it will be placed on the center line of the div */
    left: 50%;
    /* push X amount of pixels from this 50% midpoint */
    margin-left: -15rem;
  }
  #cta-96 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-96 .cs-content {
    /* set text align to left or center if content needs to be aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* aligns the content */
    align-items: center;
  }
  #cta-96 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  #cta-96 .cs-text {
    color: var(--bodyTextColorWhite);
    margin-bottom: 2rem;
    opacity: 0.8;
  }
  #cta-96 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-96 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #cta-96 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-96 .cs-picture {
    width: 100%;
    max-width: 28.5625rem;
    margin: auto;
    position: relative;
    display: block;
    /* moves it to the 1st position at the top */
    order: -1;
    aspect-ratio: 300/475;
  }
  #cta-96 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0.5rem 0.5rem 0 0;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-96 {
    /* 144px - 225px - creates the white space above */
    margin-top: clamp(9rem, 9.9vw, 14.0625rem);
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
    background-color: var(--headerColor);
  }
  #cta-96:before {
    display: none;
  }
  #cta-96 .cs-stripes {
    /* flips the element horizontally, creating a mirror of it's 
               original orientation */
    transform: scaleX(-1);
  }
  #cta-96 .cs-stripes:before {
    margin-left: -7.5em;
  }
  #cta-96 .cs-stripes:after {
    margin-left: -15.9375em;
  }
  #cta-96 .cs-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
  }
  #cta-96 .cs-content {
    text-align: left;
    width: 50%;
    max-width: 39.375rem;
    margin: 0;
    /* 60px - 100px - this gives us the space on the bottom without padding  */
    margin-bottom: clamp(3.75rem, 6.2vw, 6.25rem);
    align-items: flex-start;
  }
  #cta-96 .cs-picture {
    width: 41vw;
    max-width: 28.5625rem;
    /* height is a percentage of parent container height. When the cs-content height changes from extra text, the height of the image adjusts. Since the container is now longer/shorter, 150% of that height with also be longer/shorter */
    height: clamp(145%, 44vw, 160%);
    /* 500px - 578px */
    max-height: clamp(31.25rem, 44vw, 36.125rem);
    margin: 0;
    /* position absolute so we can have the cs-content centered inside the black section and have it respond to different heights of the cs-content */
    position: absolute;
    left: 0;
    bottom: 0;
    /* reset */
    aspect-ratio: none;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cta-96 {
    /* 144px - 200px */
    margin-top: clamp(5em, 12.9vw, 6.5em);
  }
  #cta-96 .cs-stripes:before {
    margin-left: -13.75rem;
    width: 12.1875rem;
  }
  #cta-96 .cs-stripes:after {
    margin-left: -26.875rem;
    width: 12.125rem;
  }
}
                              












/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2414 {
    padding: var(--sectionPadding);
  }
  #services-2414 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    gap: 2rem;
  }
  #services-2414 .cs-title {
    max-width: 25ch;
  }
  #services-2414 .cs-text {
    margin-bottom: 1rem;
  }
  #services-2414 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #services-2414 .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #services-2414 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #services-2414 .cs-button-solid:hover:before {
    width: 100%;
  }
  #services-2414 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.4vw, 1.25rem);
  }
  #services-2414 .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    margin: 0;
    /* 12px - 20px */
    padding: clamp(0.75rem, 1vw, 1.25rem);
    border-radius: 0.25rem;
    background-color: #fff;
    overflow: hidden;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-item:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #d9e5eb4a;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2414 .cs-picture {
    width: 100%;
    height: 45vw;
    max-height: 21.875rem;
    /* 12px - 16px */
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    border-radius: 0.25rem;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #services-2414 .cs-h3 {
    /* 16px - 20px */
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0;
    color: var(--headerColor);
  }
  #services-2414 .cs-image-group {
    width: 100%;
    max-width: 44rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.625rem;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-map {
    width: 89%;
    height: 79vw;
    max-height: 25rem;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-map:before {
    content: '';
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0.57) 54%, #ffffff 70%, #ffffff 88%);
    pointer-events: none;
    opacity: 1;
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 2;
  }
  #services-2414 .cs-map img,
  #services-2414 .cs-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2414 .cs-arrow {
    width: 3.25rem;
    height: auto;
    margin-right: 1.25rem;
    display: block;
    position: absolute;
    bottom: 4.6875rem;
    right: 50%;
    z-index: 3;
    transform: rotate(-137deg);
  }
  #services-2414 .cs-box {
    text-align: center;
    width: 40vw;
    max-width: 11.0625rem;
    margin-right: 15.625rem;
    /* 12px - 16px top & bottom */
    /* 12px - 24px left & right */
    padding: clamp(0.75rem, 3vw, 1rem) clamp(0.75rem, 3vw, 1.5rem);
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-box:before {
    /* background color */
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 1rem;
    opacity: 0.1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2414 .cs-box:after {
    /* border color */
    content: '';
    width: 100%;
    height: 100%;
    border: 4px solid var(--headerColor);
    border-radius: 1rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2414 .cs-box-text {
    /* 12px - 16px */
    font-size: clamp(0.75rem, 3vw, 1rem);
    line-height: 1.2em;
    font-weight: 700;
    width: 100%;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }
}
/* Tablet - 700px */
@media only screen and (min-width: 43.75rem) {
  #services-2414 .cs-item {
    grid-column: span 6;
  }
  #services-2414 .cs-box {
    margin-right: 21.875rem;
  }
  #services-2414 .cs-picture {
    height: auto;
    min-height: 13.25rem;
    max-height: 100%;
  }
  #services-2414 .cs-arrow {
    margin-right: 3.75rem;
    bottom: 6.25rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-2414 .cs-container {
    align-items: flex-end;
  }
  #services-2414 .cs-content {
    text-align: left;
    width: 54vw;
    box-sizing: border-box;
    align-items: flex-start;
  }
  #services-2414 .cs-flex {
    padding-bottom: 0;
  }
  #services-2414 .cs-card-group {
    /* 200px - 325px */
    padding-left: clamp(12.5rem, 21vw, 20.3125rem);
  }
  #services-2414 .cs-item {
    grid-column: span 3;
  }
  #services-2414 .cs-picture {
    max-height: 12.5rem;
  }
  #services-2414 .cs-image-group {
    width: 41vw;
    max-width: 32.625rem;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1.25rem;
  }
  #services-2414 .cs-map {
    width: 100%;
    height: auto;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 8.25rem;
  }
  #services-2414 .cs-box {
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-2414 .cs-map {
    bottom: 4.375rem;
  }
  #services-2414 .cs-arrow {
    margin-right: 1.875rem;
    bottom: 4.375rem;
  }
}
                                


















/*-- -------------------------- -->
<-- -          Logos            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {

  #logos-2444 .cs-container {
    width: 100%;
    padding: var(--sectionPadding);
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
  #logos-2444 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #logos-2444 .cs-title {
    color: var(--bodyTextColor);
  }
  #logos-2444 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--bodyTextColor);
  }
  #logos-2444 .cs-ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #logos-2444 .cs-img {
    width: 100%;
    padding: 1rem;
    height: auto;
    filter: grayscale(1) brightness(100%);
  }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
  #logos-2444 .cs-ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #logos-2444 .cs-container {
    flex-direction: row;
  }
  #logos-2444 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
}
                                
































































/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-2320 {
    padding: var(--sectionPadding);
    display: flex;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #contact-2320 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.25rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #contact-2320 .cs-container2 {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.25rem;
    padding: 5rem 3rem;
    margin: auto;
    position: relative;
    z-index: 1;
  }
  #contact-2320 .cs-container2 .cs-topper {
    color: #fff;
  }
  #contact-2320 .cs-content {
    text-align: left;
  }
  #contact-2320 .cs-title {
    margin-bottom: 2rem;
  }
  #contact-2320 .cs-form {
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }
  #contact-2320 .cs-label {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #contact-2320 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    padding: 0;
    padding-left: 1.5rem;
    color: var(--headerColor);
    background-color: #f7f7f7;
    border: none;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
  }
  #contact-2320 .cs-input::placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact-2320 .cs-textarea {
    min-height: 7.5rem;
    padding-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
  }
  #contact-2320 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #contact-2320 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #contact-2320 .cs-button-solid:hover:before {
    width: 100%;
  }
  #contact-2320 .cs-submit {
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    border: none;
    transition: color 0.3s;
    border-radius: .25rem;
  }
  #contact-2320 .cs-submit:hover {
    cursor: pointer;
    color: #fff;
  }
  #contact-2320 .cs-map {
    width: 100%;
    max-width: 39.375rem;
    height: 25rem;
    position: relative;
    z-index: 1;
    display: block;
  }
  #contact-2320 .cs-iframe-wrapper {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* 40px - 56px */
    bottom: clamp(2.5rem, 5vw, 3.5rem);
  }
  #contact-2320 .cs-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #contact-2320 .cs-box {
    width: 90%;
    max-width: 28.125rem;
    /* 16px - 32px top & bottom */
    /* 16px left & right */
    padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 2.4vw, 1rem);
    background-color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  #contact-2320 .cs-box:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    pointer-events: none;
    opacity: 0.1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #contact-2320 .cs-icon {
    width: 2rem;
    height: auto;
    display: block;
  }
  #contact-2320 .cs-flex {
    display: flex;
    flex-direction: column;
  }
  #contact-2320 .cs-header {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.5rem;
    color: var(--headerColor);
  }
  #contact-2320 .cs-address {
    font-size: clamp(0.75rem, 2.8vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #contact-2320 .cs-hours {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contact-2320 .cs-hours-info {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    width: 75%;
    max-width: 28ch;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #contact-2320 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #contact-2320 .cs-background:before {
    /* background color overlay */
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.72;
    border-radius: .25rem;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #contact-2320 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    border-radius: .25rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-2320 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 3.25rem;
  }
  #contact-2320 .cs-container2 {
    max-width: 80rem;
  }
  #contact-2320 .cs-content {
    max-width: 32.625rem;
    /* 24px - 80px */
    padding: clamp(2rem, 5vw, 5rem) 0;
  }
  #contact-2320 .cs-title,
  #contact-2320 .cs-topper,
  #contact-2320 .cs-text {
    text-align: left;
    margin-left: 0;
  }
  #contact-2320 .cs-title {
    max-width: 32.625rem;
  }
  #contact-2320 .cs-services,
  #contact-2320 .cs-phone {
    width: 47%;
  }
  #contact-2320 .cs-button-solid {
    margin-left: 0;
  }
  #contact-2320 .cs-map {
    max-width: 39.375rem;
    height: auto;
    order: -1;
  }
}
                                











/* you can copy and paste this into your global stylesheet to be used everywhere in your site */
#button-box-837 {
    width: 100%;
    max-width: 39.375rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
#button-box-837 .cs-link {
    text-decoration: none;
    padding-right: 1.875rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    position: relative;
}
#button-box-837 .cs-link:hover:before {
    width: 100%;
    height: 3.5em;
    border-radius: 1.875rem;
}
#button-box-837 .cs-link:hover .cs-wrapper {
    transform: scale(1.2);
}
#button-box-837 .cs-link:hover .cs-icon {
    transform: translateX(0.4375rem);
}
#button-box-837 .cs-link:before {
    /* light green circle that animates on hover */
    content: "";
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 1.5rem;
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
    transition:
        width 0.3s,
        height 0.3s,
        border-radius 0.3s;
}
#button-box-837 .cs-wrapper {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
    transition: transform 0.3s;
}
#button-box-837 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
    transition: transform 0.3s;
}
#button-box-837 .cs-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}
#button-box-837 .cs-header {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    display: block;
}
#button-box-837 .cs-link-content {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 400;
    margin: 0;
    display: block;
    color: var(--headerColor);
}
#button-box-837 .cs-link-content-footer {
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 400;
  margin: 0;
  display: block;
  color: var(--bodyTextColorWhite);
}
                                



























/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1495 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    background-color: #fff;
    overflow: hidden;
  }
  #services-1495 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 56.25rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 15;
  }
  #services-1495 .cs-content {
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    width: 100%;
    /* set text align to left if content needs to be left aligned */
    text-align: center;
  }
  #services-1495 .cs-title {
    max-width: 23ch;
  }
  #services-1495 .cs-card-group {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
    margin: 0;
    width: 100%;
    padding: 0;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #services-1495 .cs-item {
    text-align: center;
    list-style: none;
    /* 16px - 24px */
    padding: 1rem clamp(.75rem, 2.4vw, 1rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid var(--primary);
    /* 40px - 60px */
    border-radius: clamp(0.5rem, 5vw, 0.75rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
  }
  #services-1495 .cs-item:hover {
    border-color: var(--secondary);
  }
  #services-1495 .cs-item:hover .cs-picture img {
    transform: scale(1.2);
  }
  #services-1495 .cs-item:hover .cs-h3,
  #services-1495 .cs-item:hover .cs-link {
    color: var(--primary);
  }
  #services-1495 .cs-item:hover .cs-arrow {
    filter: initial;
  }
  #services-1495 .cs-image-group {
    /* done in ems so we can use font size to scale it on desktop */
    width: 16.0625em;
    height: 12.5em;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 2.4vw, 1.5rem);
    position: relative;
    z-index: 1;
  }
  #services-1495 .cs-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    /* clips the image from overflowing parent on hover */
    overflow: hidden;
  }
  #services-1495 .cs-picture img {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.65s;
  }
  #services-1495 .cs-mask {
    /* SVG Colors */
    --maskBorder: #e8e8e8;
    --maskBG: #fff;
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
  }
  #services-1495 .cs-info {
    display: flex;
    flex-direction: column;
  }
  #services-1495 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    text-align: inherit;
    line-height: 1.5em;
    font-weight: 700;
    width: 100%;
    margin: 0 0 0.5rem 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    color: var(--headerColor);
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  #services-1495 .cs-ages {
    font-size: 1rem;
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--secondary);
  }
  #services-1495 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    text-align: inherit;
    line-height: 1.5em;
    max-width: 50ch;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 2.4vw, 1.5rem);
    width: 100%;
    color: var(--bodyTextColor);
  }
  #services-1495 .cs-link {
    font-size: 1rem;
    text-decoration: none;
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s;
  }
  #services-1495 .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }
  #services-1495 .cs-arrow {
    display: block;
    height: auto;
    width: 1.25rem;
    transition: filter 0.3s,
                transform 0.3s;
  }
  #services-1495 .cs-hills {
    /* hills Color */
    --hillBG: #F2FAF8;
    width: 140%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    /* positions off the top at desktop */
    bottom: -6.25rem;
    left: 50%;
    transform: translateX(-50%);
  }
  #services-1495 .cs-wrapper {
    width: 120vw;
    max-width: 106.25rem;
    height: 70%;
    display: none;
    position: absolute;
    /* 60px - 100px (same as the padding bottom of the section ) */
    bottom: clamp(3.75rem, 7.82vw, 6.25rem);
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
  }
  #services-1495 .cs-floater {
    position: absolute;
  }
  #services-1495 .cs-floater1 {
left: 0px;
    top: 6.25rem;
  }
  #services-1495 .cs-floater2 {
    bottom: -3.125rem;
    right: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-1495 .cs-container {
    max-width: 80rem;
  }
  #services-1495 .cs-card-group {
    grid-template-columns: repeat(12, 1fr);
  }
  #services-1495 .cs-item {
    grid-column: span 3;
  }
  #services-1495 .cs-image-group {
    /* scaling it down so it all fits proportionally */
    font-size: min(1.2vw, 1em);
  }
  #services-1495 .cs-wrapper {
    display: block;
  }
  #services-1495 .cs-hills {
    top: 68%;
    bottom: auto;
  }
}
                                








/*-- -------------------------- -->
<---   Contact - Service Page    -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {





  #steps-2330 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
  }

#services-2331::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.05;
    z-index: -1; /* Pushes it behind your text and cards */
}
  #steps-2330 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  #steps-2330 .cs-wrapper {
    display: contents;
  }
  #steps-2330 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #steps-2330 .cs-topper {
    color: var(--primary);
  }
  #steps-2330 .cs-title {
    margin: 0;
    max-width: 20ch;
  }
  #steps-2330 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* 32px - 60px */
    gap: clamp(2rem, 6vw, 3.75rem);
  }
  #steps-2330 .cs-item {
    list-style: none;
    display: flex;
    align-items: flex-start;
    /* 16px - 24px */
    gap: clamp(1rem, 2vw, 1.5rem);
    position: relative;
  }
  #steps-2330 .cs-item:last-of-type {
    border-bottom: none;
  }
  #steps-2330 .cs-number {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 7vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.1875em;
    color: var(--primary);
    display: block;
  }
  #steps-2330 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.125em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #steps-2330 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #steps-2330 .cs-picture {
    width: 100%;
    height: auto;
    order: 3;
  }
  #steps-2330 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
  }
  #steps-2330 .cs-floater {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-2330 .cs-floater {
    font-size: 9rem;
    text-transform: uppercase;
    line-height: 1.2em;
    font-weight: 900;
    color: #F3F3F3;
    display: block;
    position: absolute;
    top: 50%;
    right: -14.875rem;
    z-index: -2;
    transform: translateY(-50%) rotate(-90deg);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #steps-2330 .cs-container {
    max-width: 70rem;
    flex-direction: row;
    align-items: stretch;
  }
  #steps-2330 .cs-wrapper {
    max-width: 46.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  #steps-2330 .cs-title {
    width: 80%;
  }
  #steps-2330 .cs-card-group {
    max-width: 36.125rem;
    align-items: flex-end;
  }
  #steps-2330 .cs-item {
    position: relative;
    z-index: 1;
  }
  #steps-2330 .cs-item:nth-of-type(2) {
    width: 33.625rem;
  }
  #steps-2330 .cs-item:nth-of-type(3) {
    width: 31.125rem;
  }
  #steps-2330 .cs-item:nth-of-type(4) {
    width: 28.625rem;
  }
  #steps-2330 .cs-picture {
    width: 120%;
    max-height: 26.25rem;
    max-width: 42.8125rem;
  }
  #steps-2330 .cs-picture img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}

/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-choose-1824 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #why-choose-1824 .cs-container {
    width: 100%;
    max-width: 70rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #why-choose-1824 .cs-topper {
    width: auto;
  }
  #why-choose-1824 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 40.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #why-choose-1824 .cs-title {
    margin: 0;
    max-width: 20ch;
  }
  #why-choose-1824 .cs-flex {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  #why-choose-1824 .cs-box {
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
    border-radius: .25rem;
    z-index: 1;
  }
  #why-choose-1824 .cs-box-content {
    margin: 0;
    /* 32px - 40px top & bottm */
    /* 24px - 40px left & right */
    padding: clamp(2rem, 2.5vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: hidden 0.3s, opacity 0.3s, transform 0.7s;
  }
  #why-choose-1824 .cs-box-content.cs-hidden {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(3rem);
  }
  #why-choose-1824 .cs-box-icon {
    text-align: left;
    width: 3.875rem;
    height: auto;
    margin: 0 0 2rem;
    display: block;
  }
  #why-choose-1824 .cs-h3 {
    /* 25px - 31px */
    font-size: clamp(1.5625rem, 2.5vw, 1.9375rem);
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--bodyTextColorWhite);
  }
  #why-choose-1824 .cs-box-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #why-choose-1824 .cs-button-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #why-choose-1824 .cs-button {
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0 0 1.5rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #E8E8E8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
  #why-choose-1824 .cs-button.cs-active .cs-icon-wrapper,
  #why-choose-1824 .cs-button:hover .cs-icon-wrapper {
    background-color: var(--primary);
  }
  #why-choose-1824 .cs-button.cs-active .cs-icon,
  #why-choose-1824 .cs-button:hover .cs-icon {
    filter: grayscale(1) brightness(1000%);
  }
  #why-choose-1824 .cs-button.cs-active .cs-arrow,
  #why-choose-1824 .cs-button:hover .cs-arrow {
    filter: none;
    opacity: 1;
  }
  #why-choose-1824 .cs-button:hover {
    cursor: pointer;
  }
  #why-choose-1824 .cs-icon-wrapper {
    width: 3.75rem;
    height: 3.75rem;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing them */
    flex: none;
    transition: background-color 0.3s;
    border-radius: .25rem;
  }
  #why-choose-1824 .cs-icon {
    width: 2rem;
    height: auto;
    display: block;
  }
  #why-choose-1824 .cs-button-text {
    font-size: 1.25rem;
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 700;
    max-width: 19ch;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
  }
  #why-choose-1824 .cs-arrow {
    width: 2rem;
    margin-left: auto;
    filter: grayscale(1) brightness(100%);
    opacity: 0.2;
    height: auto;
    display: block;
  }
  #why-choose-1824 .cs-image-group {
    width: 100%;
    height: 100vw;
    min-height: 25rem;
    /* chnages to 100% on desktop */
    max-height: 42.5rem;
    position: relative;
    z-index: 1;
  }
  #why-choose-1824 .cs-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #why-choose-1824 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .25rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  #why-choose-1824 .cs-floater {
    /* 72px - 120px */
    width: clamp(7.5rem, 10vw, 7.5rem);
    height: clamp(7.5rem, 10vw, 7.5rem);
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
  }
  #why-choose-1824 .cs-floater-icon {
    /* 32px - 60px */
    width: clamp(5rem, 4vw, 6.75rem);
    height: auto;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #why-choose-1824 .cs-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  #why-choose-1824 .cs-flex {
    flex-direction: row;
    align-items: stretch;
  }
  #why-choose-1824 .cs-box {
    width: 50%;
    height: 100%;
    display: flex;
    order: 2;
  }
  #why-choose-1824 .cs-box-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #why-choose-1824 .cs-button-group {
    width: 50%;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #why-choose-1824 .cs-content {
    width: 53%;
    padding: 3rem 0 0 0;
    box-sizing: border-box;
  }
  #why-choose-1824 .cs-flex {
    width: 74%;
    max-width: 53rem;
    padding: 0 0 3rem;
    box-sizing: border-box;
  }
  #why-choose-1824 .cs-image-group {
    width: 40vw;
    max-width: 32.625rem;
    height: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}
      












                                

























/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/




/* Mobile - 360px */
@media only screen and (min-width: 0rem) {



  #Aboutsbs-328 .cs-button-solid {
    font-size: 1rem;
    text-align: center;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    /* clips corners of the before element */
    overflow: hidden;
    margin: 0;
    color: #fff;
    padding: 0 1.75rem;
    background-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.25rem;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    margin: 1rem 0;
  }
  #Aboutsbs-328 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--primaryDark);
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
 #Aboutsbs-328 .cs-button-solid:hover:before {
    width: 100%;
  }




    #AboutStrip-328 {
        padding: var(--sectionPadding);
        background-color: #1a1a1a;
    }
    #AboutStrip-328 .cs-stat-group {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 37.5rem;
        margin: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2.5rem;
    }
    #AboutStrip-328 .cs-item {
        list-style: none;
        width: 18.125rem;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    #AboutStrip-328 .cs-item:hover .cs-picture {
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        transform: scale(1.05);
    }
    #AboutStrip-328 .cs-picture {
        width: 5rem;
        height: 5rem;
        /* 12px - 20px */
        margin-right: clamp(0.75rem, 3vw, 1.25rem);
        border-radius: 50%;
        border: 1px solid var(--secondaryLight);
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition:
            background-color 0.3s,
            box-shadow 0.3s,
            transform 0.6s;
    }
    #AboutStrip-328 .cs-flex-group {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }
    #AboutStrip-328 .cs-icon {
        width: 2.0625rem;
        height: auto;
    }
    #AboutStrip-328 .cs-header {
        font-size: 1.25rem;
        color: var(--bodyTextColorWhite);
        font-weight: 900;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.75rem;
        display: block;
    }
    #AboutStrip-328 .cs-link,
    #AboutStrip-328 .cs-hours {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-decoration: none;
        color: #828282;
        display: block;
        transition: color.3s;
    }
    #AboutStrip-328 .cs-link:hover {
        color: var(--primary);
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #AboutStrip-328 .cs-stat-group {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 1.25rem;
        row-gap: 2rem;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #AboutStrip-328 .cs-stat-group {
        max-width: 80rem;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #Aboutsbs-328 {
        padding: var(--sectionPadding);
    }
    #Aboutsbs-328 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #Aboutsbs-328 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #Aboutsbs-328 .cs-text {
        margin-bottom: 1rem;
    }
    #Aboutsbs-328 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #Aboutsbs-328 .cs-circles {
        width: 100%;
        /* changes at desktop */
        max-width: 23.375rem;
        margin: auto;
        /* 40px - 48px */
        margin-top: clamp(2.5rem, 3vw, 3rem);
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #Aboutsbs-328 .cs-circle {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex: 1;
        aspect-ratio: 1;
    }
    #Aboutsbs-328 .cs-ring-wrapper {
        position: relative;
        margin: 0 0 0.5rem 0;
    }
    #Aboutsbs-328 .cs-number {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        font-weight: 900;
        /* prevents mouse from interacting with it */
        pointer-events: none;
        line-height: 1.2em;
        color: var(--headerColor);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #Aboutsbs-328 .cs-desc {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.4vw, 1rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        color: var(--bodyTextColor);
    }
    #Aboutsbs-328 .cs-ring {
        --ring-width: 8px;
        width: calc(100% - var(--ring-width));
        aspect-ratio: 1;
        overflow: visible;
        pointer-events: none;
        rotate: -90deg;
        scale: 1 -1;
    }
    #Aboutsbs-328 .cs-ring circle {
        fill: none;
        stroke: #f7f7f7;
        stroke-width: var(--ring-width);
    }
    #Aboutsbs-328 .cs-ring circle:last-of-type {
        stroke: var(--primaryDark);
        stroke-linecap: round;
        stroke-dasharray: calc(var(--ratio) * 314%) 314%;
        transition: stroke-dasharray 1s;
    }
    #Aboutsbs-328 .cs-circle:hover .cs-ring {
        --ratio: 0 !important;
    }
    #Aboutsbs-328 .cs-picture {
        /* set font size to scale with view width, stopping at 68% the value of em */
        font-size: min(2.16vw, 0.68em);
        width: 32.5em;
        height: 42.5em;
        /* margin top and bottom to match the exact amount the grey square overflows the parent for consistent spacing */
        margin: 3em 0;
        position: relative;
        display: block;
    }
    #Aboutsbs-328 .cs-picture:before {
        /* grey box */
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 0.75rem;
        background: var(--primary);
        opacity: .15;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        transform: rotate(15deg);
    }
    #Aboutsbs-328 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        border-radius: 0.625rem;
        object-fit: cover;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #Aboutsbs-328 .cs-container {
        max-width: 85rem;
        /* set to horizontal arrangement */
        flex-direction: row;
        justify-content: center;
        /* 77px - 160px */
        gap: clamp(4.8125rem, 11vw, 10rem);
    }
    #Aboutsbs-328 .cs-content {
        text-align: left;
        align-items: flex-start;
    }
    #Aboutsbs-328 .cs-picture {
        font-size: min(1.1vw, 1em);
        margin: 3.5em 0 3.5em 5em;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #Aboutsbs-328 .cs-circles {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    #Aboutsbs-328 .cs-ring-wrapper {
        /* breaks the children out of the container.  They can now be arrnaged as if thy are all children of the cs-circle */
        display: contents;
    }
    #Aboutsbs-328 .cs-ring {
        /* make the ring position absolute so it can sit on top of the other elements that are centered relatively in the cs-circle */
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
    }
    #Aboutsbs-328 .cs-number {
        /* make the number relative positioning so it and the cs-desc can position themselves around each other */
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    #Aboutsbs-328 .cs-desc {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
    }
}


/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-2407 {
    padding: var(--sectionPadding);
    position: relative;
  }
  #faq-2407:before {
    /* background color overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #faq-2407 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #faq-2407 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: contents;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #faq-2407 .cs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #faq-2407 .cs-title {
    margin: 0;
  }
  #faq-2407 .cs-faq-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  #faq-2407 .cs-faq-item {
    list-style: none;
    width: 100%;
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  #faq-2407 .cs-faq-item:before {
    /* background color overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  #faq-2407 .cs-faq-item.active:before {
    opacity: 0.1;
  }
  #faq-2407 .cs-faq-item.active .cs-button {
    color: var(--primary);
  }
  #faq-2407 .cs-faq-item.active .cs-icon {
    transform: rotate(180deg);
  }
  #faq-2407 .cs-faq-item.active .cs-item-p {
    height: auto;
    padding-top: 0.5rem;
    opacity: 1;
  }
  #faq-2407 .cs-button {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: transparent;
    color: var(--headerColor);
    display: flex;
    justify-content: space-between;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-2407 .cs-button:hover {
    cursor: pointer;
  }
  #faq-2407 .cs-button-text {
    width: 100%;
    display: flex;
  }
  #faq-2407 .cs-item-p {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s;
  }
  #faq-2407 .cs-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    transition: transform 0.3s;
  }
  #faq-2407 .cs-picture {
    width: 100%;
    max-width: 23.6875rem;
    height: auto;
    display: block;
    order: 4;
    position: relative;
  }
  #faq-2407 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #faq-2407 {
    padding-bottom: 0;
  }
  #faq-2407 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    /* push everything to the top */
    align-items: stretch;
    justify-content: space-between;
    gap: 2.5rem;
  }
  #faq-2407 .cs-wrapper {
    display: contents;
  }
  #faq-2407 .cs-content {
    width: 30vw;
    max-width: 25.75rem;
    display: flex;
    gap: 1rem;
    flex: none;
  }
  #faq-2407 .cs-faq-group {
    max-width: 24.625rem;
    /* 80px - 100px */
    padding-bottom: clamp(5rem, 7.82vw, 6.25rem);
    align-self: flex-start;
  }
  #faq-2407 .cs-faq-group1 {
    order: -1;
  }
  #faq-2407 .cs-picture {
    max-height: 24.5625rem;
    padding-top: 2rem;
  }
  #faq-2407 .cs-picture img {
    height: 100%;
    max-height: 100%;
    /* if using a JPG instead of PNG, set to "cover" instead of "contain" */
    object-fit: contain;
    object-position: bottom;
  }
}
                                






/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2331 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    padding-top: 2rem;
  }
  #services-2331:before {
    content: '';
    width: 100%;
    height: 40%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2331 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-2331 .cs-stat-group {
    width: 100%;
    max-width: 65rem;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  #services-2331 .cs-stat {
    list-style: none;
    display: flex;
    align-items: center;
    /* 8px - 20px */
    gap: clamp(0.5rem, 2vw, 1.25rem);
    grid-column: span 6;
  }
  #services-2331 .cs-number {
    /* 31px - 61px */
    font-size: clamp(1.9375rem, 4vw, 3.8125rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
  }
  #services-2331 .cs-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    font-weight: bold;
    margin: 0;
    color: var(--headerColor);
  }
  #services-2331 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(0.5rem, 2vw, 1.25rem);
  }
  #services-2331 .cs-item {
    /* place this in a variable to reuse for the s-icon-wrapper placement */
    --itemPadding: clamp(2rem, 3.5vw, 3rem);
    width: 100%;
    text-align: left;
    list-style: none;
    margin: 0;
    /* 16px - 48px */
    padding: var(--itemPadding);
    background-color: #fff;
    border: 1px solid #E7E7E8;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  #services-2331 .cs-item:hover .cs-h3,
  #services-2331 .cs-item:hover .cs-link,
  #services-2331 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  #services-2331 .cs-item:hover .cs-item-text {
    opacity: 0.9;
  }
  #services-2331 .cs-item:hover .cs-icon-wrapper {
    border-radius: 50%;
    transform: rotate(90deg);
  }
  #services-2331 .cs-item:hover .cs-icon {
    transform: rotate(-90deg);
  }
  #services-2331 .cs-item:hover .cs-arrow {
    filter: grayscale(1) brightness(10000%);
  }
  #services-2331 .cs-item:hover .cs-picture {
    opacity: 1;
  }
  #services-2331 .cs-icon-wrapper {
    /* 48px - 100px */
    width: clamp(3rem, 7vw, 5.25rem);
    height: clamp(3rem, 7vw, 5.25rem);
    margin: 0;
    background-color: #1a1a1a;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: var(--itemPadding);
    right: var(--itemPadding);
    z-index: 1;
    transition: transform 0.5s, border-radius 0.5s;
  }
  #services-2331 .cs-icon {
    /* 24px - 48px */
    width: clamp(1.5rem, 4vw, 3rem);
    height: auto;
    transition: transform 0.5s;
  }
  #services-2331 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.2625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }
  #services-2331 .cs-h3:before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    opacity: 1;
    display: block;
  }
  #services-2331 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    max-width: 18.75rem;
    /* 56px - 108px */
    margin: 0 0 clamp(2.5rem, 8vw, 5.75rem) 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #services-2331 .cs-link {
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    padding: 0 0 0.375rem 0;
    color: var(--headerColor);
    display: inline-flex;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    transition: color 0.3s;
  }
  #services-2331 .cs-link:hover .cs-arrow {
    transform: rotate(45deg);
  }
  #services-2331 .cs-link:before {
    /* underline */
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0rem;
    left: 0;
    color: var(--primary);
  }
  #services-2331 .cs-arrow {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: transform 0.3s;
  }
  #services-2331 .cs-picture {
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  #services-2331 .cs-picture:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.84;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #services-2331 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-2331:before {
    height: 30vw;
    max-height: 26rem;
  }
  #services-2331 .cs-container {
    max-width: 80rem;
  }
  #services-2331 .cs-stat {
    grid-column: span 3;
  }
  #services-2331 .cs-item {
    grid-column: span 4;
    justify-content: flex-start;
  }
  #services-2331 .cs-link {
    margin-top: auto;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-2331 .cs-item {
    grid-column: span 4;
  }
  #services-2331 .cs-accent {
    /* 435px - 526px */
    height: clamp(27.1875rem, 41vw, 32.875rem);
  }
}
                                





























/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-405 {
    padding: var(--sectionPadding);
    background: var(--primaryLight);
  }
  #gallery-405 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
gap: clamp(1rem, 6vw, 2rem);
    position: relative;
    z-index: 1;
  }
  #gallery-405 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #gallery-405 .cs-title {
    margin: 0 0 1.5rem 0;
  }
  #gallery-405 .cs-button-group {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    column-gap: 2rem;
  }
  #gallery-405 .cs-button {
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    background-color: transparent;
    border: none;
    transition: color 0.3s;
  }
  #gallery-405 .cs-button:hover {
    color: var(--primary);
    cursor: pointer;
  }
  #gallery-405 .cs-button.cs-active {
    color: var(--primary);
  }
  #gallery-405 .cs-gallery-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  #gallery-405 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
    /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: left top;
  }
  #gallery-405 .cs-gallery.cs-hidden {
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the gallery won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-container (left: 0). Same for the bottom:0 value, the gallery won't go past that posiiton when it animates */
    top: 0;
    left: 0;
    position: absolute;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0) scaleX(0);
  }
  #gallery-405 .cs-gallery.cs-hidden .cs-image {
    /* when gallery is hidden, add these styles to the cs-image to animate from when cs-hidden is removed from the .cs-gallery */
    transform: translateY(2.1875rem);
    opacity: 0;
  }
  #gallery-405 .cs-image {
    border-radius: 1.25rem;
    width: 46%;
    /* 150px - 300px */
    height: clamp(9.375rem, 39vw, 18.75rem);
    max-width: 21.875rem;
    /* clips the image corners */
    overflow: hidden;
    display: block;
    position: relative;
    /* when .cs-hidden is removed from the .cs-gallery, reset these values and animate between their hidden styles */
    transform: translateY(0rem);
    opacity: 1;
    transition: opacity 0.6s, transform 0.6s;
  }
  #gallery-405 .cs-image:nth-of-type(1) {
    /* the transition delays change at desktop */
    /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
    transition-delay: 0.15s;
  }
  #gallery-405 .cs-image:nth-of-type(2) {
    transition-delay: 0.3s;
  }
  #gallery-405 .cs-image:nth-of-type(3) {
    transition-delay: 0.45s;
  }
  #gallery-405 .cs-image:nth-of-type(4) {
    transition-delay: 0.6s;
  }
  #gallery-405 .cs-image:nth-of-type(5) {
    transition-delay: 0.75s;
  }
  #gallery-405 .cs-image:nth-of-type(6) {
    transition-delay: 0.9s;
  }
  #gallery-405 .cs-image:nth-of-type(7) {
    transition-delay: 1.05s;
  }
  #gallery-405 .cs-image:nth-of-type(8) {
    transition-delay: 1.2s;
  }
  #gallery-405 .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #gallery-405 .cs-image {
    width: 23.8%;
    /* 300px - 400px */
    height: clamp(18.75rem, 30vw, 25rem);
    aspect-ratio: 1;
  }
  #gallery-405 .cs-image:nth-of-type(1) {
    /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
    transition-delay: 0.15s;
  }
  #gallery-405 .cs-image:nth-of-type(2) {
    transition-delay: 0.3s;
  }
  #gallery-405 .cs-image:nth-of-type(3) {
    transition-delay: 0.45s;
  }
  #gallery-405 .cs-image:nth-of-type(4) {
    transition-delay: 0.6s;
  }
  #gallery-405 .cs-image:nth-of-type(5) {
    transition-delay: 0.15s;
  }
  #gallery-405 .cs-image:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #gallery-405 .cs-image:nth-of-type(7) {
    transition-delay: 0.45s;
  }
  #gallery-405 .cs-image:nth-of-type(8) {
    transition-delay: 0.6s;
  }
}
                                

























/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    #content-page-1398 {
        padding: var(--sectionPadding);
        background-color: #fff;
        /* clips the wave background from causing overflow issues when it goes off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
        padding-top: 6rem;
    }
    #content-page-1398 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 40px - 64px */
        gap: clamp(2.5rem, 4vw, 4rem);
        position: relative;
    }
    #content-page-1398 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 46.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #content-page-1398 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #content-page-1398 h2,
    #content-page-1398 h3,
    #content-page-1398 h4,
    #content-page-1398 h5,
    #content-page-1398 h6 {
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #content-page-1398 h2 {
        font-size: 2rem;
        margin-top: 1rem;
    }
    #content-page-1398 h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-1398 h4,
    #content-page-1398 h5,
    #content-page-1398 h6 {
        font-size: 1.25rem;
    }
    #content-page-1398 .cs-button-solid {
        margin-bottom: 2rem;
    }
    #content-page-1398 .cs-no-margin {
        margin: 0;
    }
    #content-page-1398 .cs-color {
        color: var(--primary);
    }
    #content-page-1398 p {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }
    #content-page-1398 p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page-1398 p a {
        font-size: inherit;
        line-height: inherit;
        text-decoration: underline;
        color: var(--primary);
        filter: brightness(120%);
    }
    #content-page-1398 ol,
    #content-page-1398 ul {
        padding-left: 1.5rem;
        margin: 0 0 2rem 0;
        color: var(--bodyTextColor);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #content-page-1398 ul li {
        list-style: none;
        color: inherit;
        position: relative;
    }
    #content-page-1398 ul li:before {
        /* custom list bullet */
        content: "";
        width: 3px;
        height: 3px;
        background: currentColor;
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 0.625rem;
        left: -0.75rem;
    }
    #content-page-1398 img {
        width: 100%;
        height: auto;
        display: block;
    }
    #content-page-1398 .cs-image-group {
        width: 100%;
        display: none;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2.6vw, 1.25rem);
        position: relative;
    }
    #content-page-1398 .cs-flex {
        position: relative;
    }
    #content-page-1398 .cs-background {
        width: 100%;
        height: 100%;
        /* 32px - 48px */
        border-radius: clamp(2rem, 4vw, 3rem);
        /* clips the corners of the children around the border radius */
        overflow: hidden;
        /* makes it cover the parent dimensions */
        object-fit: cover;
        display: block;
    }
    #content-page-1398 .cs-background img {
        width: 100%;
        height: 100%;
        /* makes it cover the parent like a backgorund image */
        object-fit: cover;
        display: block;
    }
    #content-page-1398 .cs-box {
        text-align: left;
        width: 100%;
        max-width: 12.5rem;
        padding: 2rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: var(--primary);
        /* 48px - 80px */
        border-radius: 2rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: absolute;
        /* 12px - 20px */
        right: clamp(0.75rem, 1.9vw, 1.5rem);
        /* 12px - 20px */
        bottom: clamp(0.75rem, 1.9vw, 1.5rem);
    }
    #content-page-1398 .cs-box-icon {
        width: 3.75rem;
        height: auto;
        display: block;
    }
    #content-page-1398 .cs-desc {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        width: 100%;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #content-page-1398 .cs-card-group {
        width: 100%;
        max-width: 39.375rem;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15.265rem, 1fr));
        align-items: center;
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #content-page-1398 .cs-item {
        list-style: none;
        /* 16px - 24px */
        padding: clamp(1rem, 3vw, 1.5rem);
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #f7f7f7;
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #content-page-1398 .cs-item:before {
        display: none;
    }
    #content-page-1398 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
    #content-page-1398 .cs-h3-icon {
        width: 2rem;
        height: auto;
        display: block;
    }
    #content-page-1398 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #content-page-1398 .cs-item-text:last-of-type {
        margin: 0;
    }
    #content-page-1398 .cs-ul {
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #content-page-1398 .cs-li {
        font-size: var(--bodyFontSize);
        list-style: none;
        line-height: 1.5em;
        width: 100%;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        /* push icon top the top so if the list item goes to two lines the icon stays at the top */
        align-items: flex-start;
        gap: 0.5rem;
    }
    #content-page-1398 .cs-icon {
        width: 1.5rem;
        height: auto;
        /* adds extra space between the icon and top of parent so it's more centered */
        margin-top: 1px;
        display: block;
    }
    #content-page-1398 .cs-bubbles {
        font-size: min(2.5vw, 0.7em);
        width: 36.375em;
        height: 34.8125em;
        display: none;
        position: absolute;
        /* changes to auto at larger desktop */
        left: -16.25em;
        /* changes to -220px at large desktop */
        bottom: -3.125em;
        z-index: -1;
    }
    #content-page-1398 .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 29em;
        height: 29em;
        background: transparent;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #content-page-1398 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 22.875em;
        height: 22.875em;
        background: var(--primary);
        opacity: 0.15;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {

    #content-page-1398 .cs-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    #content-page-1398 .cs-content {
        width: 50%;
        max-width: 42.125rem;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #content-page-1398 .cs-image-group {
        width: 44%;
        max-width: 33.875rem;
        display: flex;
    }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
        #content-page-1398 {
        padding-top: 8rem;
    }
    #content-page-1398 .cs-content {
        width: 53%;
    }
    #content-page-1398 .cs-image-group {
        width: 43%;
    }
    #content-page-1398 .cs-box {
        display: flex;
    }
    #content-page-1398 .cs-bubbles {
        font-size: 1em;
        margin-right: 37.5rem;
        display: block;
        left: auto;
        right: 50%;
        bottom: -13.75rem;
    }
}

                                /* Additional Styles for Article CTA Box & Elements */
#content-page-1398 .article-cta-box {
    width: 100%;
    margin-top: 2rem;
    padding: 2.5rem;
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

#content-page-1398 .article-cta-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 1rem;
}

#content-page-1398 .article-cta-box p {
    font-size: 1rem;
    color: var(--bodyTextColor);
    margin-bottom: 1.5rem;
    max-width: 35rem;
}

/* Ensure paragraph spacing inside markdown content */
#content-page-1398 .cs-content > *:not(:last-child) {
    margin-bottom: 1.25rem;
}



#content-page-1398 .cs-button-solid {
font-size: 1rem;
    text-align: center;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    margin: 0;
    color: #fff;
    padding: 0 1.75rem;
    background-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.25rem;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }

    #content-page-1398 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;

    }

    #content-page-1398 .cs-button-solid:hover {
    color: #fff;
  }
    #content-page-1398 .cs-button-solid:hover:before {
    width: 100%;
  }


  


  




/* ============================================ */
/*      Gallery-405 Layout & Flexbox Fix        */
/* ============================================ */

/* Ensure the main card container stacks picture and content vertically */
#gallery-405 .cs-image {
    display: flex;
    flex-direction: column;
    position: relative;
}


/* Ensure the text content container is treated as a normal block element stacked below the picture, never overlapping */
#gallery-405 .cs-image .cs-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #ffffff;
    z-index: 2;
}

/* Ensure the picture element takes its proper normal flow space above the content */
#gallery-405 .cs-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 1;
}

#gallery-405 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Typography and badge styling */
#gallery-405 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor, #1a1a1a);
    line-height: 1.3em;
}

#gallery-405 .cs-item-text {
    font-size: 0.875rem;
    color: var(--bodyTextColor, #4e4b66);
    margin: 0 0 1rem 0;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#gallery-405 .cs-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary, #0076d6);
    display: block;
    margin-bottom: 0.5rem;
}

#gallery-405 .cs-link {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary, #0076d6);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
}

#gallery-405 .cs-overlay-badge {
    margin-bottom: 1rem;
    background-color: rgba(0, 118, 214, 0.08);
    border: 1px solid rgba(0, 118, 214, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 2rem;
    display: inline-block;
    width: fit-content;
}

#gallery-405 .cs-overlay-text {
    color: var(--primary, #0076d6);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/* Remove default anchor tag purple coloring and underlines across the gallery cards */
#gallery-405 .cs-image,
#gallery-405 .cs-image:visited {
    text-decoration: none;
    color: inherit;
}













@media only screen and (max-width: 600px) {
    #gallery-405 .cs-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    #gallery-405 .cs-image {
        border-radius: 0.75rem !important;
    }

    #gallery-405 .cs-picture {
        height: 120px !important;
    }

    #gallery-405 .cs-content {
        padding: 0.85rem !important;
    }

    #gallery-405 .cs-h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }

    #gallery-405 .cs-item-text {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    #gallery-405 .cs-tag {
      display: none;
        font-size: 0.65rem !important;
        margin-bottom: 0.25rem !important;
    }

    #gallery-405 .cs-link {
        font-size: 0.75rem !important;
    }

    #gallery-405 .cs-overlay-badge {
        padding: 0.15rem 0.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    #gallery-405 .cs-overlay-text {
        font-size: 0.55rem !important;
    }
    #gallery-405 .cs-picture {
        height: 140px !important;
        display: none;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #gallery-405 .cs-picture img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}






































/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2291 {
    padding: var(--sectionPadding);
    overflow: hidden;
    padding-bottom: 2rem;
    padding-top: 6rem;
  }
  #sbs-2291 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
  }
  #sbs-2291 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #sbs-2291 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-2291 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-2291 .cs-features {
    width: 100%;
    margin: 0 0 2rem;
    /* 24px - 32px */
    padding: clamp(1.5rem, 4vw, 2rem);
    background-color: #fef5f4;
    border-left: 0.25rem solid var(--secondary);
  }
  #sbs-2291 .cs-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0 0 0.75rem;
    color: var(--headerColor);
  }
  #sbs-2291 .cs-ul {
    font-size: 0.75rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #sbs-2291 .cs-li {
    font-size: 1rem;
    line-height: 1.5em;
    list-style: none;
    /* 20px - 24px */
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    position: relative;
  }
  #sbs-2291 .cs-li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }
  #sbs-2291 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #sbs-2291 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbs-2291 .cs-button-solid:hover {
    color: #fff;
  }
  #sbs-2291 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2291 .cs-image-group {
    width: 100%;
    height: 126vw;
    max-height: 39.125rem;
    display: block;
    order: -1;
    position: relative;
    z-index: 1;
  }
  #sbs-2291 .cs-picture {
    /* big background image */
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    bottom: 5.9375rem;
    left: 0;
  }
  #sbs-2291 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-2291 .cs-box {
    text-align: left;
    width: 91%;
    max-width: 28.125rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    /* 24px - 32px */
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: var(--primaryLight);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
    position: absolute;
    right: 50%;
    bottom: 0;
    z-index: 10;
    transform: translate(50%);
  }
  #sbs-2291 .cs-number {
    /* 31px - 49px */
    font-size: clamp(1.9375rem, 4vw, 3.0625rem);
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    margin: 0;
    color: var(--primary);
  }
  #sbs-2291 .cs-heading {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.5rem;
    color: var(--headerColor);
  }
  #sbs-2291 .cs-desc {
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
  #sbs-2291 .cs-graphic {
    width: 150%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2291 .cs-box {
    flex-direction: row;
    align-items: center;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2291 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: stretch;
    gap: 1.25rem;
  }
  #sbs-2291 .cs-content {
    padding-left: 3.25rem;
    padding-bottom: 4.75rem;
  }
  #sbs-2291 .cs-image-group {
    height: auto;
    min-height: 40.125rem;
    max-height: 100%;
  }
  #sbs-2291 .cs-picture {
    bottom: 4rem;
  }
}
                                

















/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1496 {
    padding: var(--sectionPadding);
    padding-top: 0;
    position: relative;
    z-index: 1;
    background-color: #fff;
    overflow: hidden;
  }
  #services-1496 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 56.25rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2rem, 6vw, 3rem);
    position: relative;
    z-index: 15;
  }
  #services-1496 .cs-content {
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    width: 100%;
    /* set text align to left if content needs to be left aligned */
    text-align: center;
  }
  #services-1496 .cs-title {
    max-width: 23ch;
    margin: 0;
  }
  #services-1496 .cs-card-group {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
    margin: 0;
    width: 100%;
    padding: 0;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #services-1496 .cs-item {
    text-align: center;
    list-style: none;
    /* 16px - 24px */
    padding: 1rem clamp(.75rem, 2.4vw, 1rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid var(--primary);
    /* 40px - 60px */
    border-radius: clamp(0.5rem, 5vw, 0.75rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
  }
  #services-1496 .cs-item:hover {
    border-color: var(--secondary);
  }
  #services-1496 .cs-item:hover .cs-picture img {
    transform: scale(1.2);
  }
  #services-1496 .cs-item:hover .cs-h3,
  #services-1496 .cs-item:hover .cs-link {
    color: var(--primary);
  }
  #services-1496 .cs-item:hover .cs-arrow {
    filter: initial;
  }
  #services-1496 .cs-image-group {
    /* done in ems so we can use font size to scale it on desktop */
    width: 16.0625em;
    height: 12.5em;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 2.4vw, 1.5rem);
    position: relative;
    z-index: 1;
  }
  #services-1496 .cs-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    /* clips the image from overflowing parent on hover */
    overflow: hidden;
  }
  #services-1496 .cs-picture img {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.65s;
  }
  #services-1496 .cs-mask {
    /* SVG Colors */
    --maskBorder: #e8e8e8;
    --maskBG: #fff;
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
  }
  #services-1496 .cs-info {
    display: flex;
    flex-direction: column;
  }
  #services-1496 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    text-align: inherit;
    line-height: 1.5em;
    font-weight: 700;
    width: 100%;
    margin: 0 0 0.5rem 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    color: var(--headerColor);
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  #services-1496 .cs-ages {
    font-size: 1rem;
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--secondary);
  }
  #services-1496 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    text-align: inherit;
    line-height: 1.5em;
    max-width: 50ch;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 2.4vw, 1.5rem);
    width: 100%;
    color: var(--bodyTextColor);
  }
  #services-1496 .cs-link {
    font-size: 1rem;
    text-decoration: none;
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s;
  }
  #services-1496 .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }
  #services-1496 .cs-arrow {
    display: block;
    height: auto;
    width: 1.25rem;
    transition: filter 0.3s,
                transform 0.3s;
  }
  #services-1496 .cs-hills {
    /* hills Color */
    --hillBG: #F2FAF8;
    width: 140%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    /* positions off the top at desktop */
    bottom: -6.25rem;
    left: 50%;
    transform: translateX(-50%);
  }
  #services-1496 .cs-wrapper {
    width: 120vw;
    max-width: 106.25rem;
    height: 70%;
    display: none;
    position: absolute;
    /* 60px - 100px (same as the padding bottom of the section ) */
    bottom: clamp(3.75rem, 7.82vw, 6.25rem);
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
  }
  #services-1496 .cs-floater {
    position: absolute;
  }
  #services-1496 .cs-floater1 {
left: 0px;
    top: 6.25rem;
  }
  #services-1496 .cs-floater2 {
    bottom: -3.125rem;
    right: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-1496 .cs-container {
    max-width: 80rem;
  }
  #services-1496 .cs-card-group {
    grid-template-columns: repeat(12, 1fr);
  }
  #services-1496 .cs-item {
    grid-column: span 3;
  }
  #services-1496 .cs-image-group {
    /* scaling it down so it all fits proportionally */
    font-size: min(1.2vw, 1em);
  }
  #services-1496 .cs-wrapper {
    display: block;
  }
  #services-1496 .cs-hills {
    top: 68%;
    bottom: auto;
  }
}









    #sbs-2291 .cs-circles {
        width: 100%;
        /* changes at desktop */
        max-width: 30.375rem;
        margin: auto;
        /* 40px - 48px */
        margin-top: clamp(2.5rem, 3vw, 3rem);
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #sbs-2291 .cs-circle {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex: 1;
        aspect-ratio: 1;
    }
    #sbs-2291 .cs-ring-wrapper {
        position: relative;
        margin: 0 0 0.5rem 0;
    }
    #sbs-2291 .cs-number-ring {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        font-weight: 900;
        /* prevents mouse from interacting with it */
        pointer-events: none;
        line-height: 1.2em;
        color: var(--headerColor);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #sbs-2291 .cs-desc {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.4vw, 1rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        color: var(--bodyTextColor);
    }
    #sbs-2291 .cs-ring {
        --ring-width: 8px;
        width: calc(100% - var(--ring-width));
        aspect-ratio: 1;
        overflow: visible;
        pointer-events: none;
        rotate: -90deg;
        scale: 1 -1;
    }
    #sbs-2291 .cs-ring circle {
        fill: none;
        stroke: #f7f7f7;
        stroke-width: var(--ring-width);
    }
    #sbs-2291 .cs-ring circle:last-of-type {
        stroke: var(--primaryDark);
        stroke-linecap: round;
        stroke-dasharray: calc(var(--ratio) * 314%) 314%;
        transition: stroke-dasharray 1s;
    }
    #sbs-2291 .cs-circle:hover .cs-ring {
        --ratio: 0 !important;
    }


















/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  #content-page-1533 {
    padding: var(--sectionPadding);
    padding-top: 6rem;
    background-color: #fff;
    /* clips the wave background from causing overflow issues when it goes off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #content-page-1533 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 40px - 64px */
    gap: clamp(2.5rem, 4vw, 4rem);
    position: relative;
  }
  #content-page-1533 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 46.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content-page-1533 .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #content-page-1533 h2,
  #content-page-1533 h3,
  #content-page-1533 h4,
  #content-page-1533 h5,
  #content-page-1533 h6 {
    font-weight: 700;
    text-align: inherit;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #content-page-1533 h2 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  #content-page-1533 h3 {
    font-size: 1.5rem;
    color: var(--primary);
  }
  #content-page-1533 h4,
  #content-page-1533 h5,
  #content-page-1533 h6 {
    font-size: 1.25rem;
  }
  #content-page-1533 .cs-button-solid {
    margin-bottom: 2rem;
  }
  #content-page-1533 .cs-no-margin {
    margin: 0;
  }
  #content-page-1533 .cs-color {
    color: var(--primary);
  }
  #content-page-1533 p {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
  }
  #content-page-1533 p:last-of-type {
    margin-bottom: 2rem;
  }
  #content-page-1533 p a {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    color: var(--primary);
    filter: brightness(120%);
  }
  #content-page-1533 ol,
  #content-page-1533 ul {
    padding-left: 1.5rem;
    margin: 0 0 2rem 0;
    color: var(--bodyTextColor);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #content-page-1533 ul li {
    list-style: none;
    color: inherit;
    position: relative;
  }
  #content-page-1533 ul li:before {
    /* custom list bullet */
    content: '';
    width: 3px;
    height: 3px;
    background: currentColor;
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 0.625rem;
    left: -0.75rem;
  }
  #content-page-1533 img {
    width: 100%;
    height: auto;
    display: block;
  }
  #content-page-1533 .cs-image-group {
    width: 32.625em;
    height: 33.75em;
    display: none;
    position: relative;
    z-index: 1;
  }
  #content-page-1533 .cs-background {
    width: 100%;
    height: 100%;
    border-radius: 2.5em;
    /* clips the corners of the children around the border radius */
    overflow: hidden;
    /* makes it cover the parent dimensions */
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #content-page-1533 .cs-background img {
    width: 100%;
    height: 100%;
    /* makes it cover the parent like a backgorund image */
    object-fit: cover;
    display: block;
  }
  #content-page-1533 .cs-flower {
    width: 9.5625em;
    height: auto;
    position: absolute;
    right: -2em;
    top: -2.25em;
    z-index: 10;
  }
  #content-page-1533 .cs-floater {
    width: 44.375em;
    height: auto;
    position: absolute;
    left: 9.375em;
    top: 25em;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {

    #content-page-1533 {
    padding-top: 7rem;
  }




  #content-page-1533 .cs-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  #content-page-1533 .cs-content {
    width: 60%;
    max-width: 43.375rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #content-page-1533 .cs-image-group {
    font-size: min(1.3vw, 1em);
    display: block;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
      #content-page-1533 {
    padding-top: 8rem;
  }
  #content-page-1533 .cs-content {
    width: 53%;
  }
}
                                