/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-712 {
      /* 175px - 200px top */
      padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
      position: relative;
      z-index: 1;
  }
  #banner-712 .cs-container {
      text-align: center;
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 1rem;
  }
  #banner-712 .cs-int-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
      font-weight: 900;
      line-height: 1.2em;
      text-align: inherit;
      margin: 0;
      color: var(--bodyTextColorWhite);
      position: relative;
  }
  #banner-712 .cs-int-text {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      line-height: 1.5em;
      text-align: inherit;
      margin: 0;
      color: var(--bodyTextColorWhite);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0px 0px 8px rgba(0, 0, 0, 0.6);
      max-width: 50rem;
  }
  #banner-712 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
  }
  #banner-712 .cs-background:before {
      /* background color overlay */
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      background: #000;
      opacity: 0.65;
      top: 0;
      left: 0;
      z-index: 1;
  }
  #banner-712 .cs-background 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) {
  #banner-712 {
    padding-top: 20rem;
  }
  #banner-712 .cs-background:before {
      opacity: 1;
      background: linear-gradient(
          90.01deg,
          rgba(0, 0, 0, 0.63) 16.86%,
          rgba(0, 0, 0, 0) 100%
      );
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-82 {
        /* Centers button */
        text-align: center;
        /* Full viewport height */
        min-height: 100vh;
        /* 144px - 300px - leaving extra space for the navigation */
        padding: clamp(9rem, 25.95vw, 18.75rem) 1rem 2rem;
        position: relative;
        z-index: 1;
        /* Center content vertically */
        display: flex;
        align-items: center;
    }
    #hero-82 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-82 .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.7;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-82 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #hero-82 .cs-container {
        width: 100%;
        max-width: 67.5rem;
        margin: auto;
    }
    #hero-82 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: center;
        max-width: 51.8125rem;
        /* 16px - 24px */
        margin: 0 auto clamp(1rem, 4vw, 1.5rem);
        color: #fff;
        position: relative;
    }
    #hero-82 .cs-title:after {
        /* Divider Line */
        content: "";
        width: 6.25rem;
        height: 0.5rem;
        /* 16px - 24px */
        margin: clamp(1rem, 4vw, 1.5rem) auto clamp(1rem, 4vw, 1.5rem);
        background: var(--primary);
        opacity: 1;
        position: relative;
        display: block;
    }
    #hero-82 .cs-text {
        /* 16px - 25px */
        font-size: clamp(1rem, 1.95vw, 1.5625rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        /* 464px - 800px */
        max-width: clamp(29rem, 60vw, 50rem);
        margin: 0 auto;
        /* 40px - 48px */
        margin-bottom: clamp(2.5rem, 4vw, 3rem);
        color: #fff;
    }
    #hero-82 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        margin: auto;
        color: #000;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #hero-82 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #hero-82 .cs-button-solid:hover {
        color: #fff;
    }
    #hero-82 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Desktop Parallax Effect - 601px */
@media only screen and (min-width: 601px) {
    #hero-82 {
        background: url("../../assets/images/service-locations/burnaby/burnaby-pest-hero.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    #hero-82 .cs-background img {
        display: none;
    }
}
                                



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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-345 {
        background-color: #fff;
        text-align: center;
        padding: var(--sectionPadding);
    }
    #services-345 .cs-container {
        width: 100%;
        max-width: 90rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-345 .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;
    }

    #services-345 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #services-345 .cs-item {
        list-style: none;
        width: 100%;
        max-width: 31.25rem;
        /* 16px - 32px */
        padding: clamp(1rem, 2vw, 2rem);
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        box-sizing: border-box;
        transition:
            background-color 0.3s,
            transform 0.3s,
            box-shadow 0.3s;
    }
    #services-345 .cs-item:hover {
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 50px;
        transform: translateY(-0.4375rem);
    }
    #services-345 .cs-item:hover .cs-picture:before {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    #services-345 .cs-link {
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #services-345 .cs-picture {
        width: 5rem;
        height: 5rem;
        margin: 0;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #fff5e6;
        position: relative;
        z-index: 1;
    }
    #services-345 .cs-icon {
        height: 2rem;
        width: auto;
    }
    #services-345 .cs-h3 {
        font-size: 1.25rem;
        font-weight: 900;
        text-align: center;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #services-345 .cs-item-text {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }
    #services-345 .cs-fake-link {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        margin-top: 2rem;
        color: #3D5E25;
        display: inline-flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
    #services-345 .cs-fake-link:hover .cs-icon {
        transform: translateX(0.5rem);
    }
    #services-345 .cs-icon {
        width: 2.5rem;
        height: auto;
        display: block;
        transition: transform .3s;
    }
    #services-345 .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: #000;
        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;
    }
    #services-345 .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-345 .cs-button-solid:hover {
        color: #fff;
    }
    #services-345 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-345 .cs-card-group {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    #services-345 .cs-item {
        width: 48.9%;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-345 .cs-item {
        /* we do this so it's stackable. You can add any number of reviews you want and they will stack and center in the middle. We dont use grid because if you have an odd number of cards, they don't stay centered, they align with their grid lines. This way its more FLEX-ible*/
        width: clamp(23.47%, 22vw, 23.955%);
    }
}

                                

/*-- -------------------------- -->
<---       Neighbourhoods       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #neighbourhoods {
    padding: var(--sectionPadding);
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
  }
  
  #neighbourhoods::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="30" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="80" cy="20" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="30" cy="70" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="70" cy="80" r="1" fill="%23e2e8f0" opacity="0.3"/></svg>') repeat;
    z-index: 1;
  }
  
  #neighbourhoods h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--headerColor);
    margin: 0 0 1rem;
    position: relative;
    z-index: 2;
  }
  
  #neighbourhoods h2::after {
    content: "";
    display: block;
    width: 4rem;
    height: 0.25rem;
    background: var(--primary);
    margin: 1rem auto;
    border-radius: 0.125rem;
  }
  
  #neighbourhoods > p {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--bodyTextColor);
    position: relative;
    z-index: 2;
  }
  
  .neighbourhood-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
  }
  
  .neighbourhood-grid article {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
  }
  
  .neighbourhood-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .neighbourhood-grid article:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
  }
  
  .neighbourhood-grid article:hover::before {
    transform: scaleX(1);
  }
  
  .neighbourhood-grid article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--headerColor);
    margin: 0 0 1rem;
    position: relative;
  }
  
  .neighbourhood-grid article h3::after {
    content: "📍";
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  
  .neighbourhood-grid article:hover h3::after {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .neighbourhood-grid article p {
    color: var(--bodyTextColor);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .neighbourhood-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .neighbourhood-grid article {
    padding: 2.5rem;
  }
  
  .neighbourhood-grid article h3 {
    font-size: 1.625rem;
  }
  
  .neighbourhood-grid article p {
    font-size: 1rem;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .neighbourhood-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Neighbourhoods CTA Button */
.neighbourhoods-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.neighbourhoods-cta .cs-button-solid {
  font-size: 1rem;
  line-height: 3.5rem;
  text-decoration: none;
  font-weight: 700;
  margin: auto;
  color: #000;
  padding: 0 1.5rem;
  background-color: var(--primary);
  border-radius: 0.25rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}

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

.neighbourhoods-cta .cs-button-solid:hover {
  color: #fff;
}

.neighbourhoods-cta .cs-button-solid:hover:before {
  width: 100%;
}

/* Service Area Map */
.service-area-map-container {
  margin: 4rem 0 3rem 0;
  position: relative;
  z-index: 2;
}



.map-wrapper {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
}

.service-map {
  width: 100%;
  height: 400px;
  position: relative;
  background-color: #f8f9fa;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.map-loading {
  text-align: center;
  color: var(--bodyTextColor);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.map-loading p {
  margin: 0;
  font-size: 1rem;
  color: var(--bodyTextColor);
}

.map-error {
  text-align: center;
  color: var(--bodyTextColor);
}

.map-error p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}

/* Map responsive adjustments */
@media only screen and (min-width: 48rem) {
  .service-map {
    height: 450px;
  }
}

@media only screen and (min-width: 64rem) {
  .service-map {
    height: 500px;
  }

}      


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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbsr-2370 {
    padding: var(--sectionPadding);
    padding-bottom: 0;
    background-color: #fff;
    /* clips anything overflowing */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbsr-2370 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 49rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbsr-2370 .cs-wrapper {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #sbsr-2370 .cs-content {
    /* set text align to center if content needs to be centered */
    text-align: left;
    width: 100%;
    max-width: 43.375rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* left aligns content, set to center to align content horizontally */
    align-items: flex-start;
  }
  #sbsr-2370 .cs-header {
    /* 20px - 31px */
    font-size: clamp(1.25rem, 3vw, 1.9375rem);
    text-align: center;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: var(--headerColor);
  }
  #sbsr-2370 .cs-arrow {
    width: 9.625rem;
    height: auto;
    margin-bottom: 1.25rem;
    display: block;
  }
  #sbsr-2370 .cs-topper {
    text-align: center;
    margin: auto;
  }
  #sbsr-2370 .cs-title {
    text-align: center;
    max-width: 20ch;
    margin: auto;
    margin-bottom: 2rem;
    /* 48px - 64px */
    padding-bottom: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #sbsr-2370 .cs-title:before {
    content: '';
    width: 100vw;
    height: 1px;
    background: #D2D8DF;
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #sbsr-2370 .cs-text {
    margin-bottom: 1rem;
  }
  #sbsr-2370 .cs-text:last-of-type {
    /* 24px - 32px */
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
  #sbsr-2370 .cs-ul {
    width: 100%;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbsr-2370 .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;
  }
  #sbsr-2370 .cs-icon {
    width: 1.1875rem;
    height: auto;
    /* adds extra space between the icon and top of parent so it's more centered */
    margin-top: 3px;
    display: block;
    flex: none;
  }
  #sbsr-2370 .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: #000;
    overflow: hidden;
    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;
  }
  #sbsr-2370 .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;
  }
  #sbsr-2370 .cs-button-solid:hover {
    color: #fff;
  }
  #sbsr-2370 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbsr-2370 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(2.8vw, .75rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 32.625em;
    height: auto;
    order: 2;
    position: relative;
    z-index: 1;
  }
  #sbsr-2370 .cs-picture {
    width: 100%;
    height: auto;
    display: block;
  }
  #sbsr-2370 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
  }
  #sbsr-2370 .cs-flower {
    width: 75em;
    height: auto;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
}
/* Large Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #sbsr-2370 {
    padding: var(--sectionPadding);
    padding-bottom: 0;
  }
  #sbsr-2370 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #sbsr-2370 .cs-content {
    width: 50%;
    padding-bottom: clamp(3.75rem, 7.82vw, 6.25rem);
    align-items: flex-start;
  }
  #sbsr-2370 .cs-topper,
  #sbsr-2370 .cs-title {
    text-align: left;
    margin: 0;
  }
  #sbsr-2370 .cs-topper {
    margin-bottom: 0.25rem;
  }
  #sbsr-2370 .cs-title {
    margin-bottom: 2rem;
  }
  #sbsr-2370 .cs-image-group {
    /* set to inherit at Large Desktop */
    font-size: min(1.2vw, 1rem);
    height: auto;
    order: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
  #sbsr-2370 .cs-picture {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
  }
  #sbsr-2370 .cs-picture img {
    height: 100%;
    width: auto;
  }
  #sbsr-2370 .cs-flower {
    width: 80vw;
    max-width: 56.25rem;
  }
}
                                

/*-- -------------------------- -->
<--- Internal linking services  -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1628 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }
  #services-1628 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-1628 .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;
  }
  #services-1628 .cs-title {
    max-width: 20ch;
  }
  #services-1628 .cs-text {
    max-width: 40rem;
    position: relative;
    z-index: 1;
  }
  #services-1628 .cs-text:after {
    /* divider line */
    content: "";
    width: 100%;
    height: 1px;
    margin-top: 1.5rem;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: relative;
  }
  #services-1628 .cs-chevron {
    --chevronColor: var(--primary);
    width: 3rem;
    height: auto;
  }
  #services-1628 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    column-gap: clamp(1rem, 2.5vw, 1.25rem);
    /* 28px - 40px */
    row-gap: clamp(1.75rem, 2.5vw, 2.5rem);
  }
  #services-1628 .cs-item {
    list-style: none;
    width: 100%;
    display: flex;
    grid-column: span 12;
    flex-direction: column;
    align-items: flex-start;
  }
  #services-1628 .cs-item:hover .cs-picture img {
    opacity: .5;
    transform: scale(1.2);
  }
  #services-1628 .cs-link {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #services-1628 .cs-picture {
    width: 100%;
    height: 15rem;
    margin-bottom: 1.5rem;
    background-color: #000;
    overflow: hidden;
    display: block;
    position: relative;
  }
  #services-1628 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .6s, opacity .3s;
  }
  #services-1628 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #services-1628 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0 0 1.5rem 0;
    color: var(--bodyTextColor);
  }
  #services-1628 .cs-fake-link, .cs-inline-link {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    margin-top: auto;
    color: #3D5E25;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #services-1628 .cs-fake-link:hover .cs-icon {
    transform: translateX(0.5rem);
  }
  #services-1628 .cs-icon {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: transform .3s;
  }
  #services-1628 .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: #000;
    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;
  }
  #services-1628 .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-1628 .cs-button-solid:hover {
    color: #fff;
  }
  #services-1628 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1628 .cs-container {
    max-width: 80rem;
  }
  #services-1628 .cs-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #services-1628 .cs-flex {
    text-align: left;
    width: 40vw;
    max-width: 40rem;
    flex: none;
  }
  #services-1628 .cs-title {
    margin: 0;
  }
  #services-1628 .cs-text {
    padding: 0.75rem 0 0.75rem 1.5rem;
  }
  #services-1628 .cs-text:after {
    width: 1px;
    height: 100%;
    margin: 0 1.5rem 0 0;
    order: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  #services-1628 .cs-item {
    grid-column: span 6;
  }
  #services-1628 .cs-picture {
    /* 240px - 420px */
    height: clamp(15rem, 33vw, 26.25rem);
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-1628 .cs-item {
    grid-column: span 3;
  }
}




/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* 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);
        }
    }
    #cs-wrapper-1411 {
        display: flex;
        flex-direction: column;
        margin-top: var(--sectionPadding);
    }
    #reviews-1411 {
        /* centers the button */
        text-align: center;
        padding: var(--sectionPadding);
        background-color: #fff;
        /* clips the orbs from causing overflow issues */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #reviews-1411 .cs-container {
        width: 100%;
        /* changes to 1024px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 40px - 64px */
        gap: clamp(2.5rem, 5vw, 4rem);
    }
    #reviews-1411 .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;
    }

    #reviews-1411 .cs-title {
        max-width: 20ch;
        margin: 0;
    }
    #reviews-1411 .cs-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 28px - 60px */
        gap: clamp(1.75rem, 5vw, 3.75rem);
    }
    #reviews-1411 .cs-item {
        list-style: none;
        text-align: center;
        padding: 0;
        display: flex;
        grid-column: span 12;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }
    #reviews-1411 .cs-quote {
        width: 5.6875rem;
        height: auto;
        opacity: 0.3;
        display: block;
        position: absolute;
        top: -1.25rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    #reviews-1411 .cs-item-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 2.6vw, 1.25rem);
        line-height: 1.5em;
        margin: 0;
        margin-bottom: 1.5rem;
        color: var(--bodyTextColor);
    }
    #reviews-1411 .cs-flex-group {
        /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
        margin-top: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        /* 8px - 24px */
        gap: clamp(0.8rem, 1.5vw, 1rem);
    }
    #reviews-1411 .cs-picture {
        width: 7rem;
        height: 7rem;
        margin: 0;
        border-radius: 50%;
        box-sizing: border-box;
        border: 2px solid var(--primary);
        background-color: var(--primary);
        display: block;
        /* sends it to the bottom in the 2nd position */
        order: 2;
        /* clips image corners to make circle */
        overflow: hidden;
        position: relative;
    }
    #reviews-1411 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes the image behave like a background image */
        object-fit: cover;
    }
    #reviews-1411 .cs-name {
        font-size: 1.5625rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: block;
    }
    #reviews-1411 .cs-job {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #reviews-1411 .cs-bubbles {
        font-size: min(2.5vw, 0.7em);
        width: 35.125em;
        height: 35.125em;
        display: none;
        position: absolute;
        /* changes to 160px at larger desktop */
        left: -16.25em;
        /* changes to 30px at large desktop */
        bottom: -3.125em;
        z-index: -1;
    }
    #reviews-1411 .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 26.25em;
        height: 26.25em;
        background: transparent;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #reviews-1411 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 20.6875em;
        height: 20.6875em;
        background: var(--primary);
        opacity: 0.15;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 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;
    }
}
/* Desktop - 1204px */
@media only screen and (min-width: 64rem) {
    #cs-wrapper-1411 {
        flex-direction: row;
        margin-top: var(--sectionPadding);
    }
    #reviews-1411 {
        width: 50%;
        /* 40px - 80px */
        padding-left: clamp(2.5rem, 5vw, 5rem);
        padding-right: clamp(2.5rem, 5vw, 5rem);
    }
    #reviews-1411 .cs-content {
        text-align: left;
        align-items: flex-start;
    }
    #reviews-1411 .cs-flex,
    #reviews-1411 .cs-item {
        text-align: left;
        align-items: flex-start;
    }
    #reviews-1411 .cs-quote {
        left: 0;
        transform: none;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #reviews-1411 .cs-container {
        margin-right: 0;
    }
    #reviews-1411 .cs-flex {
        flex-direction: row;
    }
    #reviews-1411 .cs-picture {
        /* sends it to the left in the 1st position */
        order: -1;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #reviews-1411 .cs-bubbles {
        display: block;
        margin-right: 15.625rem;
        left: auto;
        right: 50%;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #reviews-1411 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #reviews-1411 .cs-title {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #reviews-1411 .cs-item-text,
    body.dark-mode #reviews-1411 .cs-name {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #reviews-1411 .cs-job {
        color: var(--bodyTextColorWhite);
        opacity: 0.7;
    }
    body.dark-mode #reviews-1411 .cs-bubbles:before {
        border-color: rgba(255, 255, 255, 0.2);
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-1411 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
    }
    #faq-1411 .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;
        /* 40px - 48px */
        gap: clamp(2.5rem, 5vw, 3rem);
    }
    #faq-1411 .cs-content {
        text-align: left;
    }
    #faq-1411 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
    }
    #faq-1411 .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;
    }
    #faq-1411 .cs-title {
        margin: 0 0 1.5rem 0;
        color: var(--bodyTextColorWhite);
    }
    #faq-1411 .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #faq-1411 .cs-faq-item {
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
        transition: border-bottom 0.3s;
    }
    #faq-1411 .cs-faq-item.active {
        border-color: var(--primary);
    }
    #faq-1411 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }
    #faq-1411 .cs-faq-item.active .cs-button:before {
        background-color: var(--primary);
        transform: rotate(315deg);
    }
    #faq-1411 .cs-faq-item.active .cs-button:after {
        background-color: var(--primary);
        transform: rotate(-315deg);
    }
    #faq-1411 .cs-faq-item.active .cs-item-p {
        height: auto;
        /* 20px - 24px bottom */
        /* 16px - 24px left & right */
        padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 1.3vw, 1.5rem);
        opacity: 1;
    }
    #faq-1411 .cs-button {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: left;
        font-weight: bold;
        /* 16px - 20px */
        padding: clamp(1rem, 1.3vw, 1.25rem) 0;
        border: none;
        background: transparent;
        color: var(--bodyTextColorWhite);
        display: block;
        width: 100%;
        position: relative;
        transition:
            background-color 0.3s,
            color 0.3s;
    }
    #faq-1411 .cs-button:hover {
        cursor: pointer;
    }
    #faq-1411 .cs-button:before {
        /* left line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--bodyTextColorWhite);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 45%;
        right: 1.5rem;
        transform: rotate(45deg);
        /* animate the transform from the left side of the x axis, and the center of the y */
        transform-origin: left center;
        transition: transform 0.5s;
    }
    #faq-1411 .cs-button:after {
        /* right line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--bodyTextColorWhite);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 45%;
        right: 1.3125rem;
        transform: rotate(-45deg);
        /* animate the transform from the right side of the x axis, and the center of the y */
        transform-origin: right center;
        transition: transform 0.5s;
    }
    #faq-1411 .cs-button-text {
        width: 80%;
        display: block;
    }
    #faq-1411 .cs-item-p {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        width: 90%;
        height: 0;
        margin: 0;
        padding: 0;
        opacity: 0;
        color: var(--bodyTextColorWhite);
        /* clips the text so it doesn't show up */
        overflow: hidden;
        transition:
            opacity 0.3s,
            padding-bottom 0.3s;
    }
    #faq-1411 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 8px - 20px */
        gap: clamp(0.5rem, 2vw, 1.25rem);
    }
    #faq-1411 .cs-item {
        width: 100%;
        text-align: center;
        list-style: none;
        margin: 0;
        /* 24px - 32px */
        padding: 2rem clamp(1.5rem, 3vw, 2rem);
        background-color: #fff;
        border-radius: 1rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        grid-column: span 6;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        transition:
            box-shadow 0.3s,
            border-color 0.3s;
    }
    #faq-1411 .cs-item:hover {
        box-shadow: 0px 4px 120px 0px rgba(0, 0, 0, 0.12);
        border-color: transparent;
    }
    #faq-1411 .cs-item:hover .cs-h3 {
        color: var(--primary);
    }
    #faq-1411 .cs-image-group {
        /* 80px - 100px */
        width: clamp(5rem, 6vw, 6.25rem);
        height: auto;
        /* 20px - 24px */
        margin: 0 0 clamp(1.25rem, 2.5vw, 1.5rem);
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        position: relative;
    }
    #faq-1411 .cs-icon {
        /* 38px - 48px */
        width: clamp(2.375rem, 3vw, 3rem);
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #faq-1411 .cs-graphic {
        width: 100%;
        height: auto;
    }
    #faq-1411 .cs-number {
        /* 25px - 49px */
        font-size: clamp(1.5625rem, 3.3vw, 3.0625rem);
        line-height: 1.2em;
        font-weight: bold;
        text-align: inherit;
        margin: 0;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #faq-1411 .cs-desc {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #faq-1411 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #faq-1411 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #faq-1411 {
        width: 50%;
        /* 40px - 80px */
        padding-left: clamp(2.5rem, 5vw, 5rem);
        padding-right: clamp(2.5rem, 5vw, 5rem);
    }
    #faq-1411 .cs-container {
        max-width: 80rem;
        margin-left: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 3.25rem;
    }
    #faq-1411 .cs-content {
        max-width: 35rem;
    }
    #faq-1411 .cs-card-group {
        max-width: 39.375rem;
        /* pushes up the same amount the cs-items are being translated up to maintain the proper spacing */
        margin-top: 3.75rem;
        align-items: stretch;
        /* sends it to the left in the 1st */
        order: -1;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #faq-1411 {
        background-color: var(--medium) rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #faq-1411 .cs-title,
    body.dark-mode #faq-1411 .cs-item-p,
    body.dark-mode #faq-1411 .cs-number,
    body.dark-mode #faq-1411 .cs-desc {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-1411 .cs-graphic {
        opacity: 0.2;
    }
    body.dark-mode #faq-1411 .cs-button {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-1411 .cs-button:before,
    body.dark-mode #faq-1411 .cs-button:after {
        background-color: var(--bodyTextColorWhite);
    }
}

#blog-2351 {
    background-color: #fff;
}

/*-- -------------------------- -->
<---          cta            -->
<--- -------------------------- -*/

/* CTA Section */
#cta-51 .cs-picture:before {
    opacity: 0.56;
}