:root{
      --primary: #004AAD;
      --primaryLight: #DBEAFE;
      --secondary: #F97316;
      --secondaryLight: #FFEDD5;
      --headerColor: #111827;
      --bodyTextColor: #374151;
      --bodyTextColorWhite: #F9FAFB;
      --backgroundColor: #FFFFFF;

      /* Font family variables */
      --headingFont: Montserrat, system-ui, sans-serif;
      --bodyFont: Open Sans, system-ui, sans-serif;
      --uiFont: Montserrat, system-ui, sans-serif;
      
      /* Font weight variables */
      --headingWeight: 700;
      --bodyWeight: 400;
      --uiWeight: 600;

      /* 13px - 16px */
      --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
      /* 31px - 49px */
      --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
      --bodyFontSize: 1rem;
      /* 60px - 100px top and bottom */
      --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    }.cs-navigation{
      z-index: 10000; /* WHY: ensure navigation is on top of all other elements */
    }body{
      margin: 0;
      padding: 0;
      font-family: var(--bodyFont);
      font-weight: var(--bodyWeight);
      background: var(--backgroundColor);
      color: var(--bodyTextColor);
    }*, *:before, *:after{
      box-sizing: border-box;
    }h1, h2, h3, h4, h5, h6{
      font-family: var(--headingFont);
      font-weight: var(--headingWeight);
      color: var(--headerColor);
    }button, input, select, textarea{
      font-family: var(--uiFont);
      font-weight: var(--uiWeight);
    }a:hover{
      color: var(--secondary);
    }/* Base Social Icon Styles */
      .cs-social-icon,
      .cs-social-icon-dark,
      .cs-social-icon-small,
      .cs-social-icon-large{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
      }/* Sizes */
      .cs-social-icon,
      .cs-social-icon-dark{ width: 24px; height: 24px; font-size: 24px; }.cs-social-icon-small{ width: 16px; height: 16px; font-size: 16px; }.cs-social-icon-large{ width: 32px; height: 32px; font-size: 32px; }/* Colors */
      .cs-social-icon,
      .cs-social-icon-small,
      .cs-social-icon-large{ color: var(--bodyTextColorWhite); }.cs-social-icon-dark{ color: var(--headerColor); }/* Font Awesome Icon Centering Fix */
      /* Ensures Font Awesome icons center properly in flex containers */
      .cs-picture > span[class*="fa-"],
      .cs-picture > span[class*="fas"],
      .cs-picture > span[class*="far"],
      .cs-picture > span[class*="fab"],
      picture > span[class*="fa-"],
      picture > span[class*="fas"],
      picture > span[class*="far"],
      picture > span[class*="fab"]{
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
      }/* Apply to cs-icon spans that are Font Awesome ONLY in flex contexts */
      /* Don't override block-level centering (margin: auto + display: block) */
      .cs-picture span.cs-icon[class*="fa-"],
      .cs-picture span.cs-icon[class*="fas"],
      .cs-picture span.cs-icon[class*="far"],
      .cs-picture span.cs-icon[class*="fab"],
      picture span.cs-icon[class*="fa-"],
      picture span.cs-icon[class*="fas"],
      picture span.cs-icon[class*="far"],
      picture span.cs-icon[class*="fab"]{
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
      }/* Font Awesome Icon Color Fix */
      /* Smart context-aware Font Awesome icon colors */
      .cs-icon-wrapper .fas[style*="color: var(--primary)"],
      .cs-icon-wrapper .far[style*="color: var(--primary)"],
      .cs-icon-wrapper .fab[style*="color: var(--primary)"]{
        color: var(--secondaryLight) !important;
      }/* Font Awesome icons in colored picture containers need contrasting color */
      /* WHY: .cs-picture often has background-color: var(--primary), icons inherit body text color which may not contrast */
      /* HOW: Use bodyTextColorWhite which is theme-aware and designed for colored backgrounds */
      .cs-picture .fas,
      .cs-picture .far,
      .cs-picture .fab,
      .cs-picture .fa-solid,
      .cs-picture .fa-regular,
      .cs-picture .fa-brands{
        color: var(--bodyTextColorWhite) !important;
      }.cs-topper{
      font-family: var(--uiFont);
      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-family: var(--headingFont);
      font-size: var(--headerFontSize);
      font-weight: var(--headingWeight);
      line-height: 1.2em;
      text-align: inherit;
      max-width: 43.75rem;
      margin: 0 0 1rem 0;
      color: var(--headerColor);
      position: relative;
    }.cs-text{
      font-family: var(--bodyFont);
      font-size: var(--bodyFontSize);
      font-weight: var(--bodyWeight);
      line-height: 1.5em;
      text-align: inherit;
      width: 100%;
      max-width: 40.625rem;
      margin: 0;
      color: var(--bodyTextColor);
    }:root{
  --primary: #004AAD;
  --primaryLight: #DBEAFE;
  --secondary: #F97316;
  --secondaryLight: #FFEDD5;
  --headerColor: #111827;
  --bodyTextColor: #374151;
  --bodyTextColorWhite: #F9FAFB;
  --backgroundColor: #FFFFFF;
  --headingFont: Montserrat, system-ui, sans-serif;
  --bodyFont: Open Sans, system-ui, sans-serif;
  --uiFont: Montserrat, system-ui, sans-serif;
  --headingWeight: 700;
  --bodyWeight: 400;
  --uiWeight: 600;
  --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;
}.cs-navigation{
  z-index: 10000;
}body{
  margin: 0;
  padding: 0;
  font-family: var(--bodyFont);
  font-weight: var(--bodyWeight);
  background: var(--backgroundColor);
  color: var(--bodyTextColor);
}*, *:before, *:after{
  box-sizing: border-box;
}h1, h2, h3, h4, h5, h6{
  font-family: var(--headingFont);
  font-weight: var(--headingWeight);
  color: var(--headerColor);
}button, input, select, textarea{
  font-family: var(--uiFont);
  font-weight: var(--uiWeight);
}a:hover{
  color: var(--secondary);
}.cs-social-icon{
  color: var(--bodyTextColorWhite);
}.cs-social-icon-dark{
  color: var(--headerColor);
}.cs-social-icon-small{
  color: var(--bodyTextColorWhite);
}.cs-social-icon-large{
  color: var(--bodyTextColorWhite);
}.cs-picture > span[class*="fa-"], .cs-picture > span[class*="fas"], .cs-picture > span[class*="far"], .cs-picture > span[class*="fab"], picture > span[class*="fa-"], picture > span[class*="fas"], picture > span[class*="far"], picture > span[class*="fab"]{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}.cs-picture span.cs-icon[class*="fa-"], .cs-picture span.cs-icon[class*="fas"], .cs-picture span.cs-icon[class*="far"], .cs-picture span.cs-icon[class*="fab"], picture span.cs-icon[class*="fa-"], picture span.cs-icon[class*="fas"], picture span.cs-icon[class*="far"], picture span.cs-icon[class*="fab"]{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}.cs-icon-wrapper .fas[style*="color: var(--primary)"], .cs-icon-wrapper .far[style*="color: var(--primary)"], .cs-icon-wrapper .fab[style*="color: var(--primary)"]{
  color: var(--secondaryLight) !important;
}.cs-picture .fas, .cs-picture .far, .cs-picture .fab, .cs-picture .fa-solid, .cs-picture .fa-regular, .cs-picture .fa-brands{
  color: var(--bodyTextColorWhite) !important;
}.cs-topper{
  font-family: var(--uiFont);
  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-family: var(--headingFont);
  font-size: var(--headerFontSize);
  font-weight: var(--headingWeight);
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}.cs-text{
  font-family: var(--bodyFont);
  font-size: var(--bodyFontSize);
  font-weight: var(--bodyWeight);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}[data-stitch="cs-navigation_ds89"] .cs-logo-wrapper{
  position: relative;
  z-index: 10001;
}.#i6ntnvg{
  display: none;
}.#itwmhjl{
  display: none;
}.#i7miot7{
  display: none;
}.#i5tjvad{
  display: none;
}.#iw6ih8b{
  display: none;
}.#ij3afkl{
  display: none;
}.#ig9gd1t{
  display: none;
}.#izd7tp7{
  display: none;
}.#iq6ci5d{
  display: none;
}.#iit7yzx{
  display: none;
}.#dark-mode-toggle-2-3{
  display: none;
}.#i7fn5h5{
  display: none;
}.#iahdvts{
  display: none;
}.#ik3k4zl{
  display: none;
}.#id97ndn{
  display: none;
}.#idoxjfe{
  display: none;
}.#dark-mode-toggle-2{
  display: none;
}.#i7fn5h5-2{
  display: none;
}.#iahdvts-2{
  display: none;
}.#ik3k4zl-2{
  display: none;
}.#id97ndn-2{
  display: none;
}.#idoxjfe-2{
  display: none;
}.#dark-mode-toggle-2-2{
  display: none;
}/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {body.dark-mode [data-stitch="dark-mode-toggle_dsB9"]:not(#_) .cs-sun{
    transform: translate(-50%, -50%);
    opacity: 1;
  }body.dark-mode [data-stitch="dark-mode-toggle_dsB9"]:not(#_) .cs-moon{
    transform: translate(-50%, -150%);
    opacity: 0;
    fill: #fff;
  }[data-stitch="dark-mode-toggle_dsB9"]:not(#_){
    display: block;
    position: absolute;
    top: 0rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    overflow: hidden;
    padding: 0;
    z-index: 1000;
    transition: top 0.3s, right 0.3s;
  }[data-stitch="dark-mode-toggle_dsB9"]:not(#_) img,
  [data-stitch="dark-mode-toggle_dsB9"]:not(#_) svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none;
  }[data-stitch="dark-mode-toggle_dsB9"]:not(#_) .cs-moon{
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s;
  }[data-stitch="dark-mode-toggle_dsB9"]:not(#_) .cs-sun{
    z-index: 1;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
  }/* Auto-generated Font Awesome icon rules (fa-icon-*)
  to normalize FA icon sizing and color consistently do not change manually to avoid being overwritten.
     */
    [data-stitch="cs-navigation_ds40"]:not(#_) .fa-icon-1{
      font-size: 9px;
      color: var(--primary);
      align-items: center;
      justify-content: center;
      z-index: 10000;
    }[data-stitch="cs-navigation_ds40"]:not(#_) .fa-icon-2{
      font-size: 14px;
      color: var(--primary);
      align-items: center;
      justify-content: center;
      z-index: 10000;
    }[data-stitch="cs-expanded_ds92"]:not(#_) .fa-icon-1{
      font-size: 9px;
      color: var(--primary);
      align-items: center;
      justify-content: center;
    }[data-stitch="cs-expanded_ds92"]:not(#_) .fa-icon-2{
      font-size: 14px;
      color: var(--primary);
      align-items: center;
      justify-content: center;
    }[data-stitch="dark-mode-toggle_dsB9"]:not(#_) .fa-icon-1{
      font-size: 9px;
      color: var(--primary);
      align-items: center;
      justify-content: center;
    }[data-stitch="dark-mode-toggle_dsB9"]:not(#_) .fa-icon-2{
      font-size: 14px;
      color: var(--primary);
      align-items: center;
      justify-content: center;
    }
}/* Tablet - 650px - 1024px */
@media only screen and (min-width: 40.625rem) and (max-width: 1299.5px) {[data-stitch="dark-mode-toggle_dsB9"]:not(#_){
    top: auto;
    right: auto;
    position: relative;
    order: 3;
  }
}/* Desktop - 1024px */
@media only screen and (min-width: 1024px) {[data-stitch="dark-mode-toggle_dsB9"]:not(#_){
    margin: 0;
    position: relative;
    transform: none;
    bottom: auto;
    right: auto;
  }[data-stitch="dark-mode-toggle_dsB9"]:not(#_):hover{
    cursor: pointer;
  }
}/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 1299.5px) {body.cs-open{
    overflow: hidden;
  }[data-stitch="cs-navigation_ds40"]:not(#_){
    width: 100%;
    padding: 0.75rem 1rem 0 1rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
    transition: transform 0.3s, background-color 0.3s;
    top: 0;
    left: 0;
}
body { padding-top: var(--headerHeight, 160px) !important; }
:root { --headerHeight: 160px; }[data-stitch="cs-navigation_ds40"]:not(#_).cs-active .cs-link{
    color: var(--bodyTextColorWhite);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).cs-active .cs-ul-wrapper{
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.1s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).cs-active .cs-li{
    transform: translateY(0);
    opacity: 1;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).scroll{
    transform: translateY(-3rem);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).scroll [data-stitch="dark-mode-toggle_dsB9"]:not(#_){
    top: 4.25rem;
    right: 4.875rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-location{
    margin: 0;
    padding: 0;
    position: relative;
    transition: height 0.3s, padding-bottom 0.3s, opacity 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-top-social{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-top-bar{
    padding-bottom: 0.75rem;
    position: relative;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-top-bar:before{
    /* grey line */
    content: '';
    width: 100vw;
    height: 1px;
    background: #EFF1F0;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: opacity 0.3s;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-bottom-bar{
    height: auto;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-logo{
    height: 2.5rem;
    width: auto;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-logo img{
    height: 100%;
    width: auto;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-logo-wrapper{
    width: auto;
    height: 100%;
    position: relative;
    z-index: 10000;
    perspective: 700px;
    transform-style: preserve-3d;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-default{
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    transition: opacity 0.3s, transform 0.6s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dark{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    transform: rotateX(180deg);
    transition: opacity 0.3s, transform 0.6s;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-desktop{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-item{
    font-size: 1rem;
    line-height: 1.5rem;
    list-style: none;
    margin: 0;
    color: #585B5D;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-remove{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-icon{
    width: 1.25rem;
    height: auto;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-header{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-link{
    font-size: 0.875rem;
    line-height: 1.5em;
    text-align: inherit;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
    transition: color 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-toggle{
    width: 3rem;
    height: 3rem;
    margin: 0;
    background-color: #F3F3F3;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-active .cs-line1{
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-active .cs-line2{
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-active .cs-line3{
    bottom: 100%;
    opacity: 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-box{
    width: 1.25rem;
    height: 0.75rem;
    position: relative;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-line{
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #585B5D;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-line1{
    top: 0;
    transform-origin: center;
    transition: transform 0.5s, top 0.3S, left 0.3S;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-line2{
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-line3{
    width: 0.75rem;
    bottom: 0;
    left: 0;
    transform: none;
    transition: bottom 0.3s, opacity 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-contact-wrapper,
  [data-stitch="cs-navigation_ds40"]:not(#_) .cs-tablet,
  [data-stitch="cs-navigation_ds40"]:not(#_) .cs-button-border{
    display: none;
    z-index: 10000;
  }
}/* Tablet - 650px - 1024px */
@media only screen and (min-width: 40.625rem) and (max-width: 1299.5px) {[data-stitch="cs-navigation_ds40"]:not(#_) .cs-location{
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-top-bar{
    padding-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-logo{
    margin-right: auto;
    order: 1;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-item{
    position: relative;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-item:nth-of-type(2):after{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-item:after{
    /* divider line */
    content: '';
    width: 1px;
    height: 100%;
    margin: 0 1rem;
    background: #CFD0D1;
    opacity: 1;
    position: relative;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-top-social{
    height: 2rem;
    visibility: visible;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-social-link{
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-social-icon{
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-bottom-bar{
    gap: 1rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link{
    font-size: 1.5rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button{
    text-decoration: none;
    margin-right: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    order: 2;
    position: relative;
    perspective: 200px;
    transform-style: preserve-3d;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button:hover .cs-wrapper{
    transform: rotateY(180deg);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button .cs-wrapper{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
    position: relative;
    z-index: 10000;
    transition: transform 0.6s;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button .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: #F3F3F3;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button .cs-icon{
    width: 1.5rem;
    height: auto;
    display: block;
    transition: transform 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button .cs-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button .cs-header{
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: #585B5D;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button .cs-link-content{
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav{
    order: 4;
    z-index: 10000;
  }
}/* Inbetween - 1024px */
@media only screen and (min-width: 1024px) {[data-stitch="cs-navigation_ds40"]:not(#_) .cs-bottom-bar{
    justify-content: flex-start;
    padding: 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-remove{
    display: flex;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-toggle{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav{
    order: 2;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-ul{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li{
    list-style: none;
    /* 24px - 28px */
    padding: clamp(1.5rem, 2.1vw, 1.75rem) 0;
    /* prevent flexbox from squishing it */
    flex: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:last-of-type{
    /* pushes the button to the far roght */
    margin-left: auto;
    padding: 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link{
    font-size: 1rem;
    line-height: 1.5em;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link.cs-active,
  [data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link:hover{
    color: var(--primary);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button{
    display: none;
    z-index: 10000;
  }
}/*-- -------------------------- -->
<---   Mobile Navigation Menu   -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (max-width: 1023.5px) {[data-stitch="cs-navigation_ds40"]:not(#_) .cs-ul-wrapper{
    width: 100%;
    height: 100vh;
    opacity: 0;
    background-color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10000;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s, opacity 0.3s;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-ul{
    margin: 0;
    padding: 3rem 0 3rem 0;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: scroll;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li{
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    opacity: 0;
    transition: transform 0.6s, opacity 0.9s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(1){
    transition-delay: 0.05s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(2){
    transition-delay: 0.1s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(3){
    transition-delay: 0.15s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(4){
    transition-delay: 0.2s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(5){
    transition-delay: 0.25s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(6){
    transition-delay: 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(7){
    transition-delay: 0.35s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(8){
    transition-delay: 0.4s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li:nth-of-type(9){
    transition-delay: 0.45s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link{
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    text-transform: uppercase;
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link:before{
    /* active state underline */
    content: '';
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: none;
    bottom: -0.125rem;
    left: 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link.cs-active:before{
    display: block;
    z-index: 10000;
  }
}/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 1023.5px) {[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li{
    text-align: center;
    width: 100%;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dropdown{
    position: relative;
    color: var(--bodyTextColorWhite);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dropdown.cs-active .cs-drop-ul{
    height: auto;
    opacity: 1;
    visibility: visible;
    margin: 0.75rem auto 0 auto;
    padding: 1.25rem 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dropdown.cs-active .cs-drop-link{
    opacity: 1;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dropdown .cs-li-link{
    position: relative;
    transition: opacity 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-icon{
    width: 1.5rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-ul{
    width: 75%;
    height: 0;
    margin: 0 auto;
    padding: 0;
    background-color: var(--primary);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-li{
    list-style: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link.cs-drop-link{
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #1a1a1a;
    z-index: 10000;
  }
}/* Desktop - 1024px */
@media only screen and (min-width: 1024px) {[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dropdown{
    position: relative;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dropdown:hover{
    cursor: pointer;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dropdown:hover .cs-drop-ul{
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dropdown:hover .cs-drop-li{
    opacity: 1;
    transform: translateY(0);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-icon{
    width: 1.5rem;
    height: auto;
    display: inline-block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-ul{
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    border-bottom: 5px solid var(--primary);
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    z-index: 10000;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-li{
    list-style: none;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    width: 100%;
    height: auto;
    color: var(--bodyTextColor);
    display: block;
    transform: translateY(-10/16rem);
    transition: opacity 0.6s, transform 0.6s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-li:nth-of-type(2){
    transition-delay: 0.15s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-li:nth-of-type(3){
    transition-delay: 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-li:nth-of-type(4){
    transition-delay: 0.45s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-li:nth-of-type(5){
    transition-delay: 0.6s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-drop-li:nth-of-type(6){
    transition-delay: 0.75s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link{
    display: flex;
    align-items: center;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link.cs-drop-link{
    font-size: 1rem;
    white-space: nowrap;
    line-height: 1.5em;
    text-decoration: none;
    padding: 0.75rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    color: var(--bodyTextColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link.cs-drop-link:hover{
    background-color: #f7f7f7;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-li-link.cs-drop-link:before{
    display: none;
    z-index: 10000;
  }
}/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 1300px) {[data-stitch="cs-navigation_ds40"]:not(#_){
    /* 136px tall */
    --headerHeight: 8.5rem;
    width: 100%;
    padding: 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    position: fixed;
    z-index: 10000;
    transition: height 0.3s, background-color 0.3s;
    top: 0;
    left: 0;
}
body { padding-top: var(--headerHeight, 160px) !important; }
:root { --headerHeight: 160px; }[data-stitch="cs-navigation_ds40"]:not(#_).scroll .cs-top-bar{
    height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).scroll .cs-top-bar:before{
    width: 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).scroll .cs-middle{
    height: 5rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).scroll .cs-logo,
  [data-stitch="cs-navigation_ds40"]:not(#_).scroll .cs-contact-wrapper{
    height: 5rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).scroll .cs-logo img{
    max-height: 5rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_).scroll .cs-toggle{
    margin-top: 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-toggle{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-logo{
    width: 20%;
    max-width: 21.25rem;
    height: var(--headerHeight);
    border-right: 1px solid #E7E7E8;
    padding: 1rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: height 0.3s;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-logo img{
    width: 80%;
    max-width: 16.25rem;
    height: auto;
    max-height: 7.5rem;
    box-sizing: border-box;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
    transition: max-height 0.3s, opacity 0.3s, transform 0.6s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-logo-wrapper{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10000;
    perspective: 700px;
    transform-style: preserve-3d;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-default{
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-dark{
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 10000;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    transform: rotateX(180deg) translateX(-50%);
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-mobile{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-top-bar{
    width: 100%;
    height: 3.5rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-top-bar:before{
    /* grey line */
    content: '';
    height: 1px;
    background: #E7E7E8;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: -2.5rem;
    right: -2.5rem;
    z-index: 10000;
    transition: width 0.3s;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-top-social{
    height: 2rem;
    visibility: visible;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-social-link{
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-social-link:hover{
    background-color: var(--primary);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-social-icon{
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-location{
    display: flex;
    flex-direction: row;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-item{
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    flex: none;
    justify-content: flex-start;
    gap: 0.25rem;
    position: relative;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-item:last-of-type:after{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-item:hover .cs-picture{
    transform: scale(1.1);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-item:after{
    /* divider line */
    content: '';
    width: 1px;
    height: 100%;
    /* 24px - 44px */
    margin: 0 1.5rem;
    background: #EFF1F0;
    opacity: 1;
    position: relative;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-link{
    font-size: 0.875rem;
    line-height: 1.5em;
    text-align: inherit;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
    transition: color 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-link:hover{
    text-decoration: underline;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-middle{
    width: 100%;
    height: var(--headerHeight);
    padding: 0 2.5rem 0 2.5rem;
    transition: height 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav{
    order: -1;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-bottom-bar{
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-desktop-button{
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    order: 2;
    position: relative;
    perspective: 200px;
    transform-style: preserve-3d;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-desktop-button:hover .cs-wrapper{
    transform: rotateY(360deg);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .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: 10000;
    transition: transform 0.6s;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .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: #F3F3F3;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-button-icon{
    width: 1.25rem;
    height: auto;
    display: block;
    transition: transform 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-header{
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: #585B5D;
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-link-content{
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: block;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav-button,
  [data-stitch="cs-navigation_ds40"]:not(#_) .cs-button-border{
    display: none;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-contact-wrapper{
    width: 18%;
    max-width: 18.375rem;
    height: var(--headerHeight);
    border-left: 1px solid #E7E7E8;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    transition: height 0.3s;
    z-index: 10000;
  }
}/* Small Desktop - 1500px */
@media only screen and (min-width: 1500px) {[data-stitch="cs-navigation_ds40"]:not(#_) .cs-nav{
    margin-right: auto;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-button-border{
    font-size: 1rem;
    line-height: 2.875rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 1.75rem;
    color: var(--headerColor);
    border: 1px solid var(--headerColor);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s, background-color 0.3s;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-button-border:hover{
    background-color: var(--headerColor);
    color: #fff;
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-button-border:hover .cs-icon{
    filter: grayscale(1) brightness(1000%);
    z-index: 10000;
  }[data-stitch="cs-navigation_ds40"]:not(#_) .cs-button-border .cs-icon{
    width: 1.25rem;
    z-index: 10000;
  }
}.extracted-style-1{ enable-background:new 0 0 480 480 }/* Font Awesome contrast fix */
[data-stitch="cs-navigation_ds40"] .cs-icon{
  color: #000000 !important;
  z-index: 10000;
}/*-- -------------------------- -->
<---         Meet Team          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {[data-stitch="meet_ds53"]:not(#_){
        text-align: center;
        padding: var(--sectionPadding);
    }[data-stitch="meet_ds53"]:not(#_) .cs-container{
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }[data-stitch="meet_ds53"]:not(#_) .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;
    }[data-stitch="meet_ds53"]:not(#_) .cs-card-group{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 16px - 20px */
        gap: clamp(1rem, 1.8vw, 1.25rem);
    }[data-stitch="meet_ds53"]:not(#_) .cs-item{
        list-style: none;
        width: 100%;
        max-width: 25rem;
        height: auto;
        aspect-ratio: 1.20588235;
        position: relative;
        z-index: 1;
    }[data-stitch="meet_ds53"]:not(#_) .cs-item:hover .cs-background:before{
        opacity: 0.7;
    }[data-stitch="meet_ds53"]:not(#_) .cs-item:hover .cs-background img{
        transform: scale(1.1);
    }[data-stitch="meet_ds53"]:not(#_) .cs-item:hover .cs-name,
    [data-stitch="meet_ds53"]:not(#_) .cs-item:hover .cs-details{
        opacity: 1;
        transform: translateY(0);
    }[data-stitch="meet_ds53"]:not(#_) .cs-link{
        text-decoration: none;
        width: 100%;
        height: 100%;
        /* 24px - 48px top & bottom */
        /* 24px - 32px left & right */
        padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: absolute;
        top: 0;
        left: 0;
    }[data-stitch="meet_ds53"]:not(#_) .cs-name{
        font-size: 1.5rem;
        text-align: left;
        line-height: 1.2em;
        font-weight: 700;
        /* 16px - 24px */
        margin: 0 0 clamp(1rem, 2vw, 1.5rem);
        color: var(--bodyTextColorWhite);
        opacity: 0;
        transform: translateY(0.625rem);
        transition:
            opacity 0.3s,
            transform 0.3s;
    }[data-stitch="meet_ds53"]:not(#_) .cs-details{
        font-size: 1rem;
        line-height: 1.2em;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
        opacity: 0;
        color: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: relative;
        transform: translateY(0.625rem);
        transition:
            opacity 0.3s,
            transform 0.6s;
        transition-delay: 0.1s;
    }[data-stitch="meet_ds53"]:not(#_) .cs-details:hover{
        pointer-events: visible;
    }[data-stitch="meet_ds53"]:not(#_) .cs-details:hover:before{
        width: 100%;
    }[data-stitch="meet_ds53"]:not(#_) .cs-details:before{
        content: "";
        width: 0%;
        height: 3px;
        background: var(--secondary);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.1875rem;
        left: 0;
        transition: width 0.3s;
    }[data-stitch="meet_ds53"]:not(#_) .cs-background{
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }[data-stitch="meet_ds53"]:not(#_) .cs-background:before{
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 10;
        transition: opacity 0.3s;
    }[data-stitch="meet_ds53"]:not(#_) .cs-background img{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes it act like a background image */
        object-fit: cover;
        /* pushes the top of the image to the top of the parent */
        object-position: top;
        transition: transform 0.6s;
    }[data-stitch="meet_ds53"]:not(#_) .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;
        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;
    }[data-stitch="meet_ds53"]:not(#_) .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;
    }[data-stitch="meet_ds53"]:not(#_) .cs-button-solid:hover:before{
        width: 100%;
    }
    /* Auto-generated Font Awesome icon rules (fa-icon-*)
  to normalize FA icon sizing and color consistently do not change manually to avoid being overwritten.
     */

}/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {[data-stitch="meet_ds53"]:not(#_) .cs-container{
        max-width: 80rem;
    }[data-stitch="meet_ds53"]:not(#_) .cs-card-group{
        flex-wrap: nowrap;
        flex-direction: row;
    }[data-stitch="meet_ds53"]:not(#_) .cs-item{
        aspect-ratio: initial;
        /* 272px - 469px */
        height: clamp(17rem, 37vw, 29.3125rem);
    }
}/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {[data-stitch="gallery_ds18"]:not(#_){
        padding: var(--sectionPadding);
        padding-left: 0;
        padding-right: 0;
    }[data-stitch="gallery_ds18"]:not(#_) .cs-container{
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }[data-stitch="gallery_ds18"]:not(#_) .cs-content{
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }[data-stitch="gallery_ds18"]:not(#_) .cs-title{
        margin: 0;
    }[data-stitch="gallery_ds18"]:not(#_) .cs-gallery{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }[data-stitch="gallery_ds18"]:not(#_) .cs-picture{
        width: 100%;
        height: 67vw;
        /* makes it square */
        aspect-ratio: 1;
        display: block;
        grid-column: span 5;
        grid-row: span 1;
        position: relative;
    }[data-stitch="gallery_ds18"]:not(#_) .cs-picture img{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    /* Auto-generated Font Awesome icon rules (fa-icon-*)
  to normalize FA icon sizing and color consistently do not change manually to avoid being overwritten.
     */

}/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {[data-stitch="gallery_ds18"]:not(#_){
        flex-direction: row;
    }[data-stitch="gallery_ds18"]:not(#_) .cs-picture{
        grid-column: span 2;
        height: 23vw;
    }
}/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {[data-stitch="services_dsF8"]:not(#_){
    padding: var(--sectionPadding);
    background-color: #FBF9F5;
  }[data-stitch="services_dsF8"]:not(#_) .cs-container{
    width: 100%;
    max-width: 80rem;
    margin: auto;
    /* 24px - 64px top & bottom */
    /* 16px - 64px left & right */
    padding: clamp(1.5rem, 4vw, 3.75rem) clamp(1rem, 4vw, 3.75rem);
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 40px - 48px */
    gap: clamp(2.5rem, 5vw, 3rem);
  }[data-stitch="services_dsF8"]:not(#_) .cs-content{
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 66.25rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }[data-stitch="services_dsF8"]:not(#_) .cs-text{
    max-width: 100%;
  }[data-stitch="services_dsF8"]:not(#_) .cs-wrapper{
    display: flex;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
  }[data-stitch="services_dsF8"]:not(#_) .cs-card-group{
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
  }[data-stitch="services_dsF8"]:not(#_) .cs-item{
    text-align: left;
    list-style: none;
    /* 24px - 32px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
    background-color: #FBF9F5;
    border-radius: 1rem;
    display: flex;
    grid-column: span 12;
    flex-direction: column;
    align-items: flex-start;
  }[data-stitch="services_dsF8"]:not(#_) .cs-h3{
    /* 20px - 25px */
    font-size: clamp(1.25rem, 4vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    /* 24px - 32px */
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
    /* 48px - 64px */
    padding-bottom: clamp(3rem, 7vw, 4rem);
    border-bottom: 1px solid #D2D8DF;
    color: var(--headerColor);
  }[data-stitch="services_dsF8"]:not(#_) .cs-item-text{
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    margin: 0 0 2rem;
    color: var(--bodyTextColor);
  }[data-stitch="services_dsF8"]:not(#_) .cs-link{
    font-size: var(--bodyFontSize);
    text-decoration: none;
    line-height: 1.5em;
    font-weight: 700;
    margin: auto 0 0 0;
    color: #986B1D;
    position: relative;
    z-index: 1;
  }[data-stitch="services_dsF8"]:not(#_) .cs-link:before{
    content: '';
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }[data-stitch="services_dsF8"]:not(#_) .cs-picture{
    width: 100%;
    height: 100vw;
    max-height: 25rem;
    border-radius: 1rem;
    /* clips image corners */
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
    order: -1;
  }[data-stitch="services_dsF8"]:not(#_) .cs-picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
    /* Auto-generated Font Awesome icon rules (fa-icon-*)
  to normalize FA icon sizing and color consistently do not change manually to avoid being overwritten.
     */

}/* Tablet - 768px */
@media only screen and (min-width: 48rem) {[data-stitch="services_dsF8"]:not(#_) .cs-item{
    grid-column: span 6;
  }[data-stitch="services_dsF8"]:not(#_) .cs-h3{
    /* 96px - 128px */
    min-height: clamp(6rem, 10vw, 8rem);
    padding-bottom: 1.5rem;
  }[data-stitch="services_dsF8"]:not(#_) .cs-picture{
    height: 33vw;
  }
}/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {[data-stitch="services_dsF8"]:not(#_) .cs-wrapper{
    flex-direction: row;
    align-items: stretch;
  }[data-stitch="services_dsF8"]:not(#_) .cs-picture{
    width: 30vw;
    max-width: 25rem;
    height: auto;
    max-height: 100%;
    /* prevents flexbox from squishing it */
    flex: none;
  }
}/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {[data-stitch="contact_ds25"]:not(#_){
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
  }[data-stitch="contact_ds25"]:not(#_) .cs-container{
    width: 100%;
    max-width: 59rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }[data-stitch="contact_ds25"]:not(#_) .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;
  }[data-stitch="contact_ds25"]:not(#_) .cs-text{
    max-width: none;
  }[data-stitch="contact_ds25"]:not(#_) .cs-form{
    width: 100%;
    /* 464px - 846px */
    max-width: clamp(29rem, 59vw, 52.875rem);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
  }[data-stitch="contact_ds25"]:not(#_) .cs-label{
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-column: span 12;
    gap: 0.5rem;
  }[data-stitch="contact_ds25"]:not(#_) .cs-input{
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding-left: 1.5rem;
    background-color: #f7f7f7;
    color: var(--bodyTextColor);
    border: none;
    border-radius: 0.5rem;
  }[data-stitch="contact_ds25"]:not(#_) .cs-select,
  [data-stitch="contact_ds25"]:not(#_) .cs-date{
    /* as the select arrow/date calendar icon are not affected by padding, we can use a transparent border on the select element to pad the arrow as much as we need */
    border-right: 1.5rem solid rgba(0, 0, 0, 0);
  }[data-stitch="contact_ds25"]:not(#_) .cs-textarea{
    height: 7.5rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
  }[data-stitch="contact_ds25"]:not(#_) .cs-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    grid-column: span 12;
  }[data-stitch="contact_ds25"]:not(#_) .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 2rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }[data-stitch="contact_ds25"]:not(#_) .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;
  }[data-stitch="contact_ds25"]:not(#_) .cs-button-solid:hover:before{
    width: 100%;
  }[data-stitch="contact_ds25"]:not(#_) .cs-submit{
    border: none;
  }[data-stitch="contact_ds25"]:not(#_) .cs-submit:hover{
    cursor: pointer;
  }[data-stitch="contact_ds25"]:not(#_) .cs-graphic{
    display: none;
    position: absolute;
  }
    /* Auto-generated Font Awesome icon rules (fa-icon-*)
  to normalize FA icon sizing and color consistently do not change manually to avoid being overwritten.
     */

}/* Tablet - 768px */
@media only screen and (min-width: 48rem) {[data-stitch="contact_ds25"]:not(#_) .cs-split{
    grid-column: span 6;
  }[data-stitch="contact_ds25"]:not(#_) .cs-graphic{
    display: block;
  }[data-stitch="contact_ds25"]:not(#_) .cs-graphic-left{
    width: 33rem;
    height: auto;
    bottom: -6.6875rem;
    left: -24.5625rem;
  }[data-stitch="contact_ds25"]:not(#_) .cs-graphic-right{
    width: 30.1875rem;
    height: auto;
    top: -2.125rem;
    right: -19.75rem;
  }
}/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {[data-stitch="contact_ds25"]:not(#_) .cs-graphic-left{
    right: -20.1875rem;
    bottom: -3.25rem;
  }[data-stitch="contact_ds25"]:not(#_) .cs-graphic-right{
    right: -18.125rem;
  }
}/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {[data-stitch="contact_ds25"]:not(#_) .cs-graphic-left{
    margin-right: 47.5rem;
    right: 50%;
    bottom: 0;
    left: initial;
  }[data-stitch="contact_ds25"]:not(#_) .cs-graphic-right{
    margin-left: 48.4375rem;
    right: initial;
    left: 50%;
  }
}/*-- -------------------------- -->
<---           Maps              -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {[data-stitch="maps_dsOSM"]:not(#_){
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
  }[data-stitch="maps_dsOSM"]:not(#_) .cs-map-container{
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
  }[data-stitch="maps_dsOSM"]:not(#_) .cs-map-container iframe{
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
  }[data-stitch="maps_dsOSM"]:not(#_) .cs-map-placeholder{
    width: 100%;
    padding: 3rem;
    text-align: center;
    background-color: #f5f5f5;
    color: #666;
  }[data-stitch="maps_dsOSM"]:not(#_) .cs-map-placeholder .cs-icon{
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
  }[data-stitch="maps_dsOSM"]:not(#_) .cs-map-placeholder .cs-label{
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--headerColor, #1a1a1a);
    margin-bottom: 0.5rem;
    display: block;
  }[data-stitch="maps_dsOSM"]:not(#_) .cs-map-placeholder .cs-description{
    font-size: 0.875rem;
    color: #666;
  }
}/* Tablet - 768px */
@media only screen and (min-width: 48rem) {[data-stitch="maps_dsOSM"]:not(#_) .cs-map-container iframe{
    height: 450px;
  }
}/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {[data-stitch="maps_dsOSM"]:not(#_) .cs-map-container iframe{
    height: 500px;
  }
}/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {[data-stitch="footer_dsCA"]:not(#_){
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-container{
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-top{
        width: 100%;
        margin-bottom: 2.5rem;
        /* 24px - 64px */
        padding-bottom: clamp(1.5rem, 5vw, 4rem);
        border-bottom: 1px solid #e8e8e8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 24px - 40px */
        gap: clamp(1.25rem, 4vw, 2.5rem);
    }[data-stitch="footer_dsCA"]:not(#_) .cs-ul{
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: 0.5rem;
        /* 24px - 36px */
        column-gap: clamp(1.5rem, 4vw, 2.25rem);
    }[data-stitch="footer_dsCA"]:not(#_) .cs-li{
        list-style: none;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-link{
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
        transition: color 0.3s;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-link:hover{
        color: var(--primary);
    }[data-stitch="footer_dsCA"]:not(#_) .cs-logo{
        width: 100%;
        max-width: 13.0625rem;
        height: auto;
        display: block;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-logo-img{
        width: 100%;
        height: auto;
        display: block;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-bottom{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-social{
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-social-li{
        list-style: none;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-social-link{
        width: 2rem;
        height: 2rem;
        background-color: #484848;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-social-link:hover{
        background-color: var(--primary);
    }[data-stitch="footer_dsCA"]:not(#_) .cs-social-link:hover .cs-social-icon{
        filter: grayscale(1) brightness(1000%);
        opacity: 1;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-social-icon{
        width: 0.75rem;
        height: auto;
        display: block;
        transition: opacity 0.3s;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-copyright{
        font-size: 1rem;
        color: var(--bodyTextColor);
        line-height: 1.5em;
        margin: 0;
        display: block;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-copyright-link,
    [data-stitch="footer_dsCA"]:not(#_) .cs-separater{
        font-size: 1rem;
        text-decoration: none;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-copyright-link:hover,
    [data-stitch="footer_dsCA"]:not(#_) .cs-separater:hover{
        color: var(--primary);
    }[data-stitch="footer_dsCA"]:not(#_) .cs-separater{
        margin: 0 1rem;
        display: inline-block;
    }/* Auto-generated Font Awesome icon rules (fa-icon-*)
  to normalize FA icon sizing and color consistently do not change manually to avoid being overwritten.
     */
    [data-stitch="footer_dsCA"]:not(#_) .fa-icon-1{
      font-size: 9px;
      color: var(--primary);
      align-items: center;
      justify-content: center;
    }
}/* Tablet - 768px */
@media only screen and (min-width: 48rem) {[data-stitch="footer_dsCA"]:not(#_) .cs-top{
        align-items: flex-start;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-bottom{
        flex-direction: row;
        justify-content: center;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-flex{
        margin: 0 auto;
    }[data-stitch="footer_dsCA"]:not(#_) .cs-social{
        /* sends it to the right in the 3rd position */
        order: 3;
    }
}