/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #hero-2349 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
  }
  #hero-2349 .cs-container {
    width: 100%;
    max-width: 112.5rem;
    margin: auto;
    /* 392px - 560px */
    padding-top: clamp(150px, 58vw, 400px);
    position: relative;
    z-index: 1;
  }
  #hero-2349 .cs-content {
    width: 100%;
    max-width: 68.75rem;
    padding: var(--sectionPadding);
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  #hero-2349 .cs-topper {
    font-size: var(--topperFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: fit-content;
    margin-bottom: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    background-color: var(--primary);
    color: var(--headerColor);
    display: block;
    position: relative;
    z-index: 1;
  }
  #hero-2349 .cs-topper:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    opacity: 0.1;
    border-radius: 0.25rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-2349 .cs-title {
    /* 39px - 90px */
    font-size: clamp(2.4375rem, 6vw, 5.625rem);
    margin-bottom: 0;
    max-width: 100%;
    color: var(--bodyTextColorWhite);
  }
  #hero-2349 .cs-text {
    margin-bottom: 2rem;
    max-width: 54.5rem;
    color: var(--bodyTextColorWhite);
  }
  #hero-2349 .cs-button-solid:hover {
    color: #1a1a1a;
  }
  #hero-2349 .cs-button-solid:before {
    background-color: #fff;
  }
  #hero-2349 .cs-button-solid {
    align-self: flex-start;
  }
  #hero-2349 .cs-stats {
    margin: 0;
    /* 24px - 40px top & bottom */
    /* 16px - 60px left & right */
    padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1rem, 5vw, 3.75rem);
    box-sizing: border-box;
    background-color: #f7f7f7;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 1.875rem;
    row-gap: 4rem;
  }
  #hero-2349 .cs-item {
    list-style: none;
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #hero-2349 .cs-number {
    /* 25px - 49px */
    font-size: clamp(1.5625rem, 5vw, 3.0625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
  }
  #hero-2349 .cs-color {
    color: var(--primary);
    display: inline-block;
    transform: translateX(5px);
  }
  #hero-2349 .cs-desc {
    /* 14px - 20px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #hero-2349 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -2;
  }
  #hero-2349 .cs-background:before {
    /* gradient Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-2349 .cs-background img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-2349 {
    padding: var(--sectionPadding);
    padding-top: 0;
    /* 48px - 60px */
    padding-bottom: clamp(3rem, 7vw, 10.75rem);
  }
  #hero-2349 .cs-content {
    width: 55%;
    padding: 0;
  }
  #hero-2349 .cs-stats {
    width: auto;
    background-color: #fff;
    column-gap: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
  }
  #hero-2349 .cs-item {
    grid-column: span 12;
  }
}
/* Large Desktop - 1600px */
@media only screen and (min-width: 100rem) {
  #hero-2349 .cs-content {
    width: 75%;
  }
  #hero-2349 .cs-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem;
  }
  #hero-2349 .cs-item {
    grid-column: span 1;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-2349 .cs-stats {
    background-color: var(--dark);
  }
  body.dark-mode #hero-2349 .cs-number,
  body.dark-mode #hero-2349 .cs-desc {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---         Locations          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #locations-1844 {
    padding: var(--sectionPadding);
    padding-top: 3.125rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #locations-1844 .cs-container {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #locations-1844 #cs-content-831 {
    /* 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;
  }
  #locations-1844 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #locations-1844 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    max-width: 28.875rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 32px - 40px top & bottom */
    padding: clamp(2rem, 4vw, 2.5rem) 2rem;
    background-color: transparent;
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: span 12;
    gap: 0.75rem;
    transition: background-color 0.3s;
  }
  #locations-1844 .cs-item:hover {
    background-color: var(--primary);
    cursor: pointer;
  }
  #locations-1844 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
  }
  #locations-1844 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #locations-1844 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #locations-1844 .cs-background img {
    width: 100%;
    height: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
  }
  #locations-1844 .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000000;
    pointer-events: none;
    opacity: 0.20;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #locations-1844 .cs-item {
    grid-column: span 6;
  }
}
/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #locations-1844 .cs-item {
    grid-column: span 3;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #services-2349 {
    padding: var(--sectionPadding);
  }
  #services-2349 .cs-card-group {
    width: 100%;
    max-width: 112.5rem;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px, changes to 100px at large desktop 1300px */
    column-gap: clamp(1rem, 3vw, 1.25rem);
    row-gap: 2rem;
  }
  #services-2349 .cs-item {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    grid-column: span 12;
  }
  #services-2349 .cs-link {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  #services-2349 .cs-icon {
    width: 1.5rem;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
  }
  #services-2349 .cs-h2 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    height: 100%;
    color: var(--headerColor);
    border-bottom: 1px solid #e3ddd9;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  #services-2349 .cs-item-text {
    font-size: 1rem;
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #services-2349 .cs-fake-link {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: bold;
    margin-top: 1rem;
    padding: 0.375rem 1.5rem;
    color: var(--headerColor);
    background-color: var(--primary);
    display: block;
    align-self: flex-start;
    transition: background-color 0.3s, color 0.3s;
  }
  #services-2349 .cs-fake-link:hover {
    background-color: var(--headerColor);
    color: var(--bodyTextColorWhite);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-2349 .cs-item {
    grid-column: span 6;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-2349 .cs-item {
    grid-column: span 3;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-2349 .cs-card-group {
    column-gap: 6.25rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services-2349 .cs-h2,
  body.dark-mode #services-2349 .cs-item-text {
    color: var(--bodyTextColorWhite);
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #services-2349 .cs-icon {
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #services-2349 .cs-item-text {
    opacity: 0.8;
  }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #sbs-2348 {
    padding: var(--sectionPadding);
    padding-top: 0;
    /* 100px - 200px */
    padding-bottom: clamp(6.25rem, 8vw, 12.5rem);
    /* clips anything overflowing */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2348 .cs-container {
    width: 100%;
    max-width: 112.5rem;
    margin: auto;
    /* 16px - 80px */
    padding: clamp(1rem, 5vw, 5rem);
    box-sizing: border-box;
    background-color: #F1EEEC;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-2348 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 47.875rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    position: relative;
    z-index: 3;
  }
  #sbs-2348 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-2348 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-2348 .cs-picture {
    width: 100%;
    height: 95vw;
    max-height: 28.125rem;
    display: block;
    order: -1;
    position: relative;
    z-index: 1;
  }
  #sbs-2348 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2348 {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2348:before {
    content: '';
    width: 100%;
    height: 80%;
    margin-left: 12.5rem;
    background: var(--headerColor);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
  }
  #sbs-2348 .cs-container {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  #sbs-2348 .cs-content {
    /* 48px - 80px */
    padding: clamp(3rem, 6vw, 5rem) 0;
  }
  #sbs-2348 .cs-picture {
    width: 43vw;
    height: auto;
    max-height: 100%;
    max-width: 50.625rem;
    flex: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbs-2348 .cs-container {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #sbs-2348 .cs-h2,
  body.dark-mode #sbs-2348 .cs-item-text {
    color: var(--bodyTextColorWhite);
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #sbs-2348 .cs-icon {
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #sbs-2348 .cs-item-text {
    opacity: .8;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #projects-583 {
    padding: var(--sectionPadding);
    background-color: var(--headerColor);
  }
  #projects-583 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #projects-583 .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;
  }
  #projects-583 .cs-topper {
    color: var(--secondary);
  }
  #projects-583 .cs-title {
    max-width: 20ch;
    color: var(--bodyTextColorWhite);
  }
  #projects-583 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 1.25rem;
    row-gap: 2.5rem;
  }
  #projects-583 .cs-item {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #projects-583 .cs-picture {
    width: 100%;
    height: 20rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
  }
  #projects-583 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #projects-583 .cs-number {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
    color: var(--bodyTextColorWhite);
    display: block;
  }
  #projects-583 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    margin: 0 0 0.75rem 0;
    color: var(--bodyTextColorWhite);
  }
  #projects-583 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #projects-583 .cs-button-solid {
    /* button override */
    background-color: var(--secondary);
    color: #000;
  }
  #projects-583 .cs-button-solid:before {
    background-color: #fff;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #projects-583 .cs-container {
    max-width: 80rem;
  }
  #projects-583 .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #projects-583 .cs-item {
    width: 48%;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #projects-583 .cs-card-group {
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #projects-583 {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
/*-- -------------------------- -->
<---           Video            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #video-1682 {
    padding: var(--sectionPadding);
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  #video-1682:before {
    content: '';
    width: 100%;
    height: 50%;
    background: var(--headerColor);
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #video-1682 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #video-1682 .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;
  }
  #video-1682 .cs-title {
    margin: 0;
    max-width: 20ch;
  }
  #video-1682 .cs-big-link {
    width: 100%;
    /* 460px - 600px */
    height: clamp(28.75rem, 43vw, 37.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #video-1682 .cs-big-link:hover .cs-background img {
    transform: scale(1.1);
  }
  #video-1682 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    /* clips the img from overflowing the container on hover */
    overflow: hidden;
  }
  #video-1682 .cs-background:before {
    /* color overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-blend-mode: multiply;
  }
  #video-1682 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform 0.7s;
  }
  #video-1682 .cs-link-icon {
    /* 80px - 110px */
    width: clamp(5rem, 11vw, 6.875rem);
    height: auto;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    backdrop-filter: blur(10px);
  }
  #video-1682 .cs-card-group {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 1.75rem;
  }
  #video-1682 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 28.125rem;
    margin: 0 auto;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-column: span 12;
    grid-row: span 1;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  #video-1682 .cs-item:hover .cs-h3,
  #video-1682 .cs-item:hover .cs-link {
    color: var(--primary);
  }
  #video-1682 .cs-item:hover .cs-arrow {
    filter: initial;
  }
  #video-1682 .cs-item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
  #video-1682 .cs-h3 {
    /* 20px - 31px */
    font-size: clamp(1.25rem, 2.6vw, 1.9375rem);
    font-weight: bold;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 1rem;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #video-1682 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0 0 1.5rem 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #video-1682 .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-decoration: none;
    margin-top: auto;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s;
  }
  #video-1682 .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }
  #video-1682 .cs-link-text {
    width: fit-content;
  }
  #video-1682 .cs-arrow {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: filter 0.3s, transform 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #video-1682 .cs-card-group {
    /* 20px - 32px */
    column-gap: clamp(1.25rem, 3vw, 2rem);
    /* 40px - 80px */
    row-gap: clamp(2.5rem, 5vw, 5rem);
  }
  #video-1682 .cs-item {
    padding: 0;
    /* 20px - 32px */
    padding-left: clamp(1.25rem, 3vw, 2rem);
    border: none;
    border-left: 1px solid var(--primary);
    grid-column: span 4;
  }
}
/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #video-1682:after {
    content: '';
    height: 100%;
    width: 40vw;
    margin-right: 20.0625rem;
    background: var(--headerColor);
    opacity: 1;
    display: block;
    position: absolute;
    right: 50%;
    top: 0;
    z-index: -1;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #video-1682 .cs-title,
  body.dark-mode #video-1682 .cs-h3,
  body.dark-mode #video-1682 .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #video-1682 .cs-item-text {
    opacity: 0.8;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-968 {
    padding: 0;
    position: relative;
    z-index: 1;
  }
  #services-968 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    padding: var(--sectionPadding);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-968 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 54.25rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-968 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 43.75rem;
    margin: 0 0 2rem;
    color: var(--bodyTextColor);
  }
  #services-968 .cs-title {
    max-width: 17ch;
  }
  #services-968 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 54.25rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.875rem;
  }
  #services-968 .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    /* margin top value to match the negative margin value of the .cs-icon-wrapper */
    margin: 2.75rem 0 0 0;
    background-color: #f7f3ee;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s;
  }
  #services-968 .cs-item:hover {
    background-color: var(--headerColor);
    cursor: pointer;
  }
  #services-968 .cs-item:hover .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  #services-968 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #services-968 .cs-item:hover .cs-link {
    color: var(--primary);
  }
  #services-968 .cs-link-group {
    text-decoration: none;
    /* 24px - 64px bottom */
    /* 24px - 40px left & right */
    padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 6vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  #services-968 .cs-icon-wrapper {
    width: 5.5rem;
    height: 5.5rem;
    margin: -2.75rem auto 2rem 0;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: calc(clamp(1.5rem, 4vw, 2.5rem)*-1);
  }
  #services-968 .cs-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #services-968 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #services-968 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 18.75rem;
    margin: 0 0 2rem 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #services-968 .cs-link {
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.2em;
    font-weight: bold;
    width: auto;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    transition: color 0.3s;
  }
  #services-968 .cs-link:hover {
    color: #fff;
  }
  #services-968 .cs-link:before {
    /* underline */
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0rem;
    left: 0;
  }
  #services-968 .cs-picture {
    display: block;
    position: relative;
    width: 100%;
    /* 360px - 430px */
    height: clamp(22.5rem, 65vw, 26.875rem);
  }
  #services-968 .cs-picture.cs-picture2 {
    display: none;
  }
  #services-968 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #services-968 .cs-background {
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  #services-968 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.84;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #services-968 .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) {
  #services-968 .cs-container {
    max-width: 80rem;
  }
  #services-968 .cs-item {
    grid-column: span 6;
  }
}
/* Large Desktop - 1024px */
@media only screen and (min-width: 81.25rem) {
  #services-968 {
    padding: var(--sectionPadding);
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  #services-968 .cs-container {
    padding: 0;
    align-items: flex-end;
  }
  #services-968 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #services-968 .cs-picture {
    height: 100%;
    width: 40vw;
    margin-right: 20.0625rem;
    background-color: var(--headerColor);
    position: absolute;
    right: 50%;
    top: 0;
  }
  #services-968 .cs-picture.cs-picture1 {
    display: none;
  }
  #services-968 .cs-picture.cs-picture2 {
    display: block;
  }
  #services-968 .cs-picture.cs-picture2 img {
    opacity: .2;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services-968 {
    background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/chevron-pattern-light2.svg");
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
  }
  body.dark-mode #services-968 .cs-title,
  body.dark-mode #services-968 .cs-text,
  body.dark-mode #services-968 .cs-h3,
  body.dark-mode #services-968 .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #services-968 .cs-text,
  body.dark-mode #services-968 .cs-item-text {
    opacity: 0.9;
  }
  body.dark-mode #services-968 .cs-item {
    background-color: var(--medium);
  }
}
/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1640 {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    overflow: hidden;
  }
  #sbs-1640 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-1640 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #sbs-1640 .cs-topper:before {
    background-color: var(--headerColor);
  }
  #sbs-1640 .cs-title {
    margin: 0 0 2.5rem 0;
    color: var(--headerColor);
  }
  #sbs-1640 .cs-text {
    margin-bottom: 1rem;
    color: var(--headerColor);
    opacity: .8;
  }
  #sbs-1640 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-1640 .cs-button-solid {
    background-color: var(--headerColor);
    color: #fff;
    align-self: flex-start;
  }
  #sbs-1640 .cs-picture {
    width: 100%;
    height: auto;
    min-height: 26.25rem;
    display: block;
    position: relative;
    z-index: 1;
  }
  #sbs-1640 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-1640 .cs-stats-group {
    width: 100%;
    max-width: 35.625rem;
    display: flex;
    flex-direction: column;
  }
  #sbs-1640 .cs-stats {
    width: 100%;
    max-width: 39.375rem;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 1.5rem;
    column-gap: 0.75rem;
  }
  #sbs-1640 .cs-stat {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    grid-column: span 4;
    flex-direction: column;
    align-self: stretch;
    align-content: space-between;
  }
  #sbs-1640 .cs-number {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 5vw, 3.8125rem);
    line-height: 1.2em;
    font-weight: 900;
    text-align: left;
    color: var(--bodyTextColorWhite);
    display: block;
    margin: 0 0 0.25rem 0;
  }
  #sbs-1640 .cs-desc {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    text-align: left;
    /* auto margin top will push text to bottom if there's only one line */
    margin: 0;
    color: var(--primary);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-1640 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-1640 .cs-stats-group {
    /* 52px - 90px */
    margin-bottom: clamp(3.25rem, 7vw, 5.625rem);
    /* 60px - 120px */
    padding-top: clamp(3.75rem, 10vw, 7.5rem);
    /* 60px - 80px */
    padding-bottom: clamp(3.75rem, 8vw, 5rem);
    position: relative;
    z-index: 1;
  }
  #sbs-1640 .cs-stats-group:before {
    content: '';
    width: 200vw;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    display: block;
    top: 100%;
    left: -100%;
    z-index: -1;
    transform: translateX(-50%);
  }
  #sbs-1640 .cs-picture {
    height: 100%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbs-1640 {
    background-color: rgba(0, 0, 0, 0.6);
  }
  body.dark-mode #sbs-1640 .cs-stats-group:before {
    background-color: var(--dark);
  }
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-1600 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #contact-1600 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    /* 48px - 80px */
    gap: clamp(3rem, 6vw, 5rem);
  }
  #contact-1600 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 37.5rem;
    /* resets to 0 at tablet */
    margin: auto;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #contact-1600 .cs-title {
    margin: 0 0 2rem 0;
  }
  #contact-1600 .cs-form {
    width: 100%;
    padding: 0;
    /* prevents flexbox from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }
  #contact-1600 .cs-label {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #contact-1600 .cs-label:last-of-type {
    margin-bottom: 2rem;
  }
  #contact-1600 .cs-input {
    font-size: 1rem;
    width: 100%;
    /* 46px - 56px */
    height: clamp(2.875rem, 4vw, 3.5rem);
    padding: 0;
    padding-left: 1.5rem;
    color: var(--headerColor);
    background-color: #f7f7f7;
    border: none;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
  }
  #contact-1600 .cs-input::placeholder {
    color: #7D799C;
    opacity: .6;
  }
  #contact-1600 .cs-textarea {
    min-height: 7.5rem;
    padding-top: 1.5rem;
    font-family: inherit;
  }
  #contact-1600 .cs-submit {
    text-transform: inherit;
    border: none;
  }
  #contact-1600 .cs-submit:hover {
    cursor: pointer;
  }
  #contact-1600 .cs-wrapper {
    /* 32px - 108px */
    padding: clamp(2rem, 8vw, 6.75rem) 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #contact-1600 .cs-card-group {
    width: 75%;
    max-width: 25.8125rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
    position: relative;
    z-index: 1;
  }
  #contact-1600 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    margin: 0;
    /* 16px - 40px top & Bottom */
    /* 24px - 40px left & right */
    padding: clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 5vw, 2.5rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    border: 1px solid #E8E8E8;
    background-color: #fff;
    position: relative;
    z-index: 1;
  }
  #contact-1600 .cs-item:hover:before {
    opacity: 1;
  }
  #contact-1600 .cs-item:hover .cs-header {
    color: var(--primary);
  }
  #contact-1600 .cs-item:hover .cs-item-text,
  #contact-1600 .cs-item:hover .cs-link {
    color: var(--bodyTextColorWhite);
  }
  #contact-1600 .cs-item:hover .cs-text,
  #contact-1600 .cs-item:hover .cs-link {
    opacity: .8;
  }
  #contact-1600 .cs-item:hover .cs-link:hover {
    color: var(--primary);
  }
  #contact-1600 .cs-item:hover .cs-icon {
    filter: grayscale(1) brightness(1000%);
  }
  #contact-1600 .cs-item:before {
    /* hover border and background */
    content: '';
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity .3s;
  }
  #contact-1600 .cs-header {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    /* 12px - 16px */
    margin: 0 0 clamp(0.75rem, 1.6vw, 1rem);
    display: block;
    transition: color .3s;
  }
  #contact-1600 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
    transition: color .3s;
  }
  #contact-1600 .cs-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
    transition: color .3s;
  }
  #contact-1600 .cs-icon {
    width: 1rem;
    height: auto;
  }
  #contact-1600 .cs-background {
    height: 100%;
    width: 100%;
    max-width: 32.625rem;
    position: absolute;
    /* 60px - 188px */
    left: clamp(3.75rem, 9vw, 11.75rem);
    top: 0;
    z-index: -1;
  }
  #contact-1600 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-1600 {
    padding-top: 0;
  }
  #contact-1600 .cs-container {
    max-width: 80rem;
    /* removed at large desktop. This is to clip the cs-background */
    overflow: hidden;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #contact-1600 .cs-content {
    text-align: left;
    width: 42%;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    order: 1;
  }
  #contact-1600 .cs-form {
    padding: 0;
  }
  #contact-1600 .cs-submit {
    margin-left: 0;
  }
  #contact-1600 .cs-wrapper {
    width: 50%;
    max-width: 39.375rem;
    order: 2;
  }
  #contact-1600 .cs-card-group {
    padding: 0;
  }
  #contact-1600 .cs-card-background {
    display: none;
  }
  #contact-1600 .cs-background {
    display: block;
  }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
  #contact-1600 .cs-container {
    overflow: visible;
  }
  #contact-1600 .cs-background {
    left: 11.75rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #contact-1600 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #contact-1600:before {
    opacity: .1;
  }
  body.dark-mode #contact-1600 .cs-title,
  body.dark-mode #contact-1600 .cs-text,
  body.dark-mode #contact-1600 .cs-header,
  body.dark-mode #contact-1600 .cs-item-text,
  body.dark-mode #contact-1600 .cs-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #contact-1600 .cs-link,
  body.dark-mode #contact-1600 .cs-item-text {
    opacity: .8;
  }
  body.dark-mode #contact-1600 .cs-icon {
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #contact-1600 .cs-label {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #contact-1600 .cs-input {
    background-color: var(--medium);
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #contact-1600 .cs-input::placeholder {
    color: #fff;
    opacity: .5;
  }
  body.dark-mode #contact-1600 .cs-item {
    border: 1px solid var(--accent);
  }
  body.dark-mode #contact-1600 .cs-item:before {
    opacity: 1;
    background-color: var(--dark);
  }
}
