:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #ff6a3e;
    --primaryLight: #ffba43;
    --secondary: #F85D12;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    --bodyTextColorBlack: #000000;
    /* 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, 3.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Bricolage Grotesque", sans-serif;
}


/* Mobile - 360px */
/* Mobile */
@media only screen and (min-width: 0rem) {
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
#hero-2344 {
    padding: var(--sectionPadding);
    /* 120px 0 160px */
    padding-top: clamp(7.5rem, 12vw, 10rem);
  }
  #hero-2344 .cs-container.inner_page_banner {
    width: 100%;
    max-width: 112.5rem;
    margin: auto;
    /* 420px - 560px */
    padding-top: clamp(10rem, 8vw, 35rem);
    position: relative;
    z-index: 1;
  }


  #hero-2344 .cs-container {
    width: 100%;
    max-width: 112.5rem;
    margin: auto;
    /* 420px - 560px */
    padding-top: clamp(26.25rem, 65vw, 35rem);
    position: relative;
    z-index: 1;
  }

  #hero-2344 .cs-container:before {
    /* gradient Overlay */
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-2344 .cs-content {
    /* 24px - 40px top & bottom */
    /* 16px - 40px left & right */
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  #hero-2344 .cs-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #hero-2344 .cs-flex2 {
    max-width: 33.75rem;
  }
  #hero-2344 .cs-title {
    /* 39px - 90px */
    font-size: clamp(2.4375rem, 6vw, 5.625rem);
    margin-bottom: 0;
    color: var(--bodyTextColorWhite);
  }
  #hero-2344 .cs-text {
    color: var(--bodyTextColorWhite);
    margin-bottom: 2rem;
  }
  #hero-2344 .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;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #hero-2344 .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;
  }
  #hero-2344 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-2344 .cs-button-solid {
    align-self: flex-start;
  }
  #hero-2344 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -2;
  }
  #hero-2344 .cs-background img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }


/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
#services-2344 {
    padding: var(--sectionPadding);
    padding-top: 0;
  }
  #services-2344 .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-2344 .cs-item {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    grid-column: span 12;
  }
  #services-2344 .cs-link {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #services-2344 .cs-h2 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    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-2344 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #services-2344 .cs-item-text {
    font-size: 1rem;
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }

  /*-- -------------------------- -->
  <---          About Us          -->
  <--- -------------------------- -*/
  #sbs-2277 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #sbs-2277 .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-2277 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #sbs-2277 .cs-flex {
    /* 48px - 64px */
    margin-bottom: clamp(3rem, 6vw, 4rem);
  }
  #sbs-2277 .cs-wrapper {
    width: 100%;
  }
  #sbs-2277 .cs-title {
    max-width: 25ch;
  }
  #sbs-2277 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-2277 .cs-ul {
    width: 100%;
    max-width: 39.375rem;
    margin: 2rem 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  #sbs-2277 .cs-li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #sbs-2277 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-2277 .cs-icon {
    width: 1.0625rem;
    height: auto;
    margin-top: 0.1875rem;
  }
  #sbs-2277 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin: 0;
  }
  #sbs-2277 .cs-item-text strong {
    color: var(--headerColor);
  }
  #sbs-2277 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbs-2277 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbs-2277 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2277 .cs-image-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }
  #sbs-2277 .cs-card-group {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    /* 16px - 20px */
    column-gap: clamp(1rem, 2.3vw, 1.25rem);
  }
  #sbs-2277 .cs-item {
    list-style: none;
    width: 100%;
    /* 24px - 32px */
    padding: clamp(1.5rem, 4vw, 2rem);
    background-color: #111418;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  #sbs-2277 .cs-item:last-of-type {
    background-color: var(--primary);
  }
  #sbs-2277 .cs-item-icon {
    width: 3rem;
    height: auto;
    display: block;
  }
  #sbs-2277 .cs-number {
    /* 31px - 49px */
    font-size: clamp(1.9375rem, 4vw, 3.0625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--bodyTextColorWhite);
    display: block;
  }
  #sbs-2277 .cs-desc {
    font-size: 1.25rem;
    line-height: 1.2em;
    display: block;
  }
  #sbs-2277 .cs-picture {
    width: 100%;
    height: 90vw;
    max-height: 31.25rem;
    display: block;
    position: relative;
    z-index: 1;
  }
  #sbs-2277 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-2277 .cs-floater {
    width: auto;
    /* 50px - 160px */
    height: clamp(3.125rem, 8vw, 10rem);
    position: absolute;
    /* 18px - 60px */
    top: clamp(1.125rem, 6vw, 3.75rem);
    right: 0;
  }


/*-- -------------------------- -->
<---          Services 2        -->
<--- -------------------------- -*/
#services-1847 {
    padding: var(--sectionPadding);
    background-color: #222222;
}
#services-1847 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
}
#services-1847 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
}
#services-1847 .cs-title {
    /* 28px - 44px */
    margin: 0 0 clamp(1.75rem, 6vw, 2.75rem);
    color: var(--bodyTextColorWhite);
}
#services-1847 .cs-ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#services-1847 .cs-li {
    width: 100%;
    border-bottom: 1px solid #767676;
}
#services-1847 .cs-link {
    text-decoration: none;
    padding: 1.25rem 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#services-1847 .cs-link:hover .cs-h3 {
    color: var(--primary);
}
#services-1847 .cs-link:hover .cs-icon {
    transform: scale(1.2);
}
#services-1847 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    margin: 0;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
}
#services-1847 .cs-icon {
    width: 2rem;
    height: auto;
    display: block;
    transition: transform 0.3s;
    transform-origin: bottom left;
}
#services-1847 .cs-image-group {
    /* scales the whole group based on the view width size and stop when that vales equals .8rem, resets at tablet */
    font-size: min(2.235vw, .8em);
    width: 39.375em;
    height: 38.3125em;
    display: block;
    position: relative;
    z-index: 1;
}
#services-1847 .cs-picture {
    position: absolute;
}
#services-1847 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
#services-1847 .cs-picture1 {
    width: 25.8125em;
    height: 33.75em;
    top: 0;
    left: 0;
}
#services-1847 .cs-picture2 {
    width: 19.0625em;
    height: 22.8125em;
    right: 0;
    bottom: 0;
    z-index: 10;
}
#services-1847 .cs-floater {
    /* 62px - 120px */
    width: clamp(3.875rem, 14vw, 7.5rem);
    height: clamp(3.875rem, 14vw, 7.5rem);
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 34%;
    left: 57%;
    z-index: 10;
    transform: translate(-50%);
}
#services-1847 .cs-floater-icon {
    /* 32px - 60px */
    width: clamp(2rem, 4.6vw, 3.75rem);
    height: auto;
    display: block;
}

/*-- -------------------------- -->
<---          Portfolio         -->
<--- -------------------------- -*/
#gallery-2297 {
    padding: var(--sectionPadding);
    background-color: #fef5f4;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #gallery-2297 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }
  #gallery-2297 .cs-content {
    width: 100%;
    /* causes the items of cs-content to become children of the cs-container, allowing us to put the buttons below the gallery */
    display: contents;
  }
  #gallery-2297 .cs-title {
    margin: 0 0 3rem;
  }
  #gallery-2297 .cs-button-group {
    margin: 2rem auto 0;
    display: flex;
    order: 2;
    /* 20px - 40px */
    column-gap: clamp(1.25rem, 3.4vw, 2.5rem);
    row-gap: 1rem;
  }
  #gallery-2297 .cs-button {
    padding: 1rem;
    background-color: #f3f3f3;
    border: none;
    transition: background-color 0.3s;
  }
  #gallery-2297 .cs-button:hover {
    background-color: var(--primary);
    cursor: pointer;
  }
  #gallery-2297 .cs-button:hover .cs-arrow {
    filter: invert(1) brightness(1000%);
  }
  #gallery-2297 .cs-arrow {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
  }
  #gallery-2297 .cs-gallery-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  #gallery-2297 .cs-gallery {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    position: relative;
    transform-style: preserve-3d;
    perspective: 700px;
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
    /* makes the transform scaling origin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: left top;
  }
  #gallery-2297 .cs-gallery.cs-hidden {
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    position: absolute;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the gallery won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-container (left: 0). Same for the top:0 value, the gallery won't go past that posiiton when it animates */
    top: 0;
    left: 0;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0) scaleX(0);
  }
  #gallery-2297 .cs-gallery.cs-hidden .cs-image {
    opacity: 0;
    /* when gallery is hidden, add these styles to the cs-image to animate from when cs-hidden is removed from the .cs-gallery */
    transform: translateY(2.1875rem) rotateX(90deg);
  }
  #gallery-2297 .cs-image {
    /* 320px - 524px */
    min-height: clamp(20rem, 35vw, 32.75rem);
    /* clips the image corners */
    overflow: hidden;
    opacity: 1;
    display: block;
    grid-column: span 12;
    position: relative;
    /* when .cs-hidden is removed from the .cs-gallery, reset these values and animate between their hidden styles */
    transform: translateY(0rem) rotateX(0);
    transition: opacity 0.6s, transform 0.6s;
  }
  #gallery-2297 .cs-image:nth-of-type(1) {
    /* the transition delays change at desktop */
    /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
    transition-delay: 0.1s;
  }
  #gallery-2297 .cs-image:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #gallery-2297 .cs-image:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  #gallery-2297 .cs-picture {
    width: 100%;
    height: 100%;
    background-color: #000;
    /* makes it act like a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #gallery-2297 .cs-picture img {
    width: 100%;
    height: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.65s, opacity 0.3s;
  }
  #gallery-2297 .cs-info {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  #gallery-2297 .cs-tag {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 2vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
  }
  #gallery-2297 .cs-project {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1rem;
    background-color: #fff;
    color: var(--headerColor);
  }
  #gallery-2297 .cs-stats {
    max-width: 80rem;
    /* 48px - 120px */
    margin: clamp(3rem, 9vw, 7.5rem) auto 0;
    display: flex;
    flex-direction: column;
    /* 16px - 24px */
    column-gap: clamp(1rem, 3vw, 1.5rem);
    row-gap: 2rem;
  }
  #gallery-2297 .cs-stat {
    display: flex;
    flex-direction: column;
    column-gap: 1.25rem;
    row-gap: 0.5rem;
  }
  #gallery-2297 .cs-number {
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    color: var(--primary);
  }
  #gallery-2297 .cs-desc {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--headerColor);
  }


/*-- -------------------------- -->
<---             CTA            -->
<--- -------------------------- -*/
#cta-2236 {
    background-color: #f7f7f7;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #cta-2236 .cs-container {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #cta-2236 .cs-container::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta-2236 .cs-content {
    /* aligns text centrally. set to left to left-align text */
    text-align: center;
    padding: var(--sectionPadding);
    /* 60px - 150px */
    padding-top: clamp(3.75rem, 8.82vw, 9.375rem);
    padding-bottom: clamp(3.75rem, 8.82vw, 9.375rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centrally aligns items. set to flex-start to left-align items */
    align-items: center;
    z-index: 2;
  }
  #cta-2236 .cs-title {
    /* 31px - 39px */
    font-size: clamp(1.9375rem, 3vw, 2.4375rem);
    color: var(--bodyTextColorWhite);
  }
  #cta-2236 .cs-text {
    margin: 0 0 2rem;
    color: var(--bodyTextColorWhite);
  }
  #cta-2236 .cs-button-outline {
    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: 12.5rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    /* 32px - 48px */
    padding: 0 clamp(2rem, 4vw, 3rem);
    color: var(--bodyTextColorWhite);
    border: 1px solid var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    transition: color 0.3s;
  }
  #cta-2236 .cs-button-outline:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cta-2236 .cs-button-outline:hover {
    color: var(--headerColor);
  }
  #cta-2236 .cs-button-outline:hover:before {
    width: 100%;
  }
  #cta-2236 .cs-video-wrapper {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
  }
  #cta-2236 .cs-video-wrapper:hover {
    cursor: pointer;
  }
  #cta-2236 .cs-video-wrapper:hover .cs-play {
    transform: translate(-50%, -50%) scale(1.2);
  }
  #cta-2236 .cs-video-wrapper video,
  #cta-2236 .cs-video-wrapper .cs-picture {
    width: 100%;
    height: 100%;
    /* makes image act as a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #cta-2236 .cs-video-wrapper video img,
  #cta-2236 .cs-video-wrapper .cs-picture img {
    width: 100%;
    height: 100%;
    /* makes image act as a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #cta-2236 .cs-video-wrapper video:before,
  #cta-2236 .cs-video-wrapper .cs-picture:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    /* prevents the cursor from interacting with it */
    pointer-events: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }


/*-- -------------------------- -->
<---         Testimonials       -->
<--- -------------------------- -*/
#reviews-1604 {
    background-color: #f7f7f7;
    position: relative;
    z-index: 1;
  }
  #reviews-1604 .cs-container {
    width: 100%;
    /* changes to 1024px at tablet */
    max-width: 36.5rem;
    margin: auto;
    margin-bottom: -5.75rem;
    padding: var(--sectionPadding);
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #reviews-1604 .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-1604 .cs-title {
    max-width: 20ch;
    margin: 0;
  }
  #reviews-1604 .cs-review {
    list-style: none;
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    /* 24px - 40px */
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background-color: #fff;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    /* clips the pseudo box from overflowing */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* prevents flexbox from squishing it */
    flex: none;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  #reviews-1604 .cs-quote {
    --quoteColor: var(--primary);
    width: 6.25rem;
    height: auto;
    margin: 0;
    opacity: .1;
    display: block;
    position: absolute;
    /* changes to 40px at tablet */
    right: 0;
    bottom: 0;
  }
  #reviews-1604 .cs-review-text {
    /* 16px - 25px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5em;
    margin: 0 0 2rem 0;
    color: var(--bodyTextColor);
  }
  #reviews-1604 .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: flex-start;
    align-items: center;
    gap: 0.75rem;
  }
  #reviews-1604 .cs-profile {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0;
    border-radius: 50%;
    box-sizing: border-box;
    /* clips image corners to make circle */
    overflow: hidden;
    position: relative;
    display: block;
  }
  #reviews-1604 .cs-profile img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes the image behave like a background image */
    object-fit: cover;
  }
  #reviews-1604 .cs-name {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }
  #reviews-1604 .cs-job {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    font-weight: 400;
    margin: 0.25rem 0 0 0;
    color: var(--secondary);
    display: block;
  }
  #reviews-1604 .cs-img {
    width: 100%;
    max-width: 80rem;
    /* reduced to 60vw at tablet */
    height: 100vw;
    /* changed to 640px at tablet */
    max-height: 28.125rem;
    margin: auto;
    display: block;
    position: relative;
    z-index: -1;
  }
  #reviews-1604 .cs-img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }


/*-- -------------------------- -->
<---         Footer Logo        -->
<--- -------------------------- -*/
#logos-2345 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #logos-2345 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
  }
  #logos-2345 .cs-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #logos-2345 .cs-logo {
    /* adjust the clamps as needed for your logos to be arrnaged the way you want them */
    height: auto;
    margin: 0;
    display: block;
  }
  #logos-2345 .cs-logo.logo1 {
    width: clamp(104px, 13vw, 178px);
  }
  #logos-2345 .cs-logo.logo2 {
    width: clamp(35px, 7vw, 62px);
  }
  #logos-2345 .cs-logo.logo3 {
    width: clamp(86px, 15vw, 173px);
  }
  #logos-2345 .cs-logo.logo4 {
    width: clamp(112px, 15vw, 187px);
  }
  #logos-2345 .cs-logo.logo5 {
    width: clamp(58px, 10vw, 121px);
  }
  #logos-2345 .cs-logo.logo6 {
    width: clamp(99px, 10vw, 133px);
  }

/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
#footer-2345 {
    padding: var(--sectionPadding);
    padding-top: 0;
    /* 32px - 60px */
    padding-bottom: clamp(2rem, 7vw, 3.75rem);
  }
  #footer-2345 .cs-container {
    width: 100%;
    max-width: 112.5rem;
    margin: auto;
    /* 24px - 100px top & bottom */
    /* 16px - 100px left & right */
    padding: clamp(1.5rem, 8vw, 6.25rem) clamp(1rem, 6.5vw, 6.25rem);
    /* 24px - 40px */
    padding-bottom: clamp(1.5rem, 5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    background-color: #1A1A1A;
  }
  #footer-2345 .cs-cta {
    width: 100%;
    /* 80px - 128px */
    margin-bottom: clamp(5rem, 10vw, 8rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
    column-gap: 4rem;
  }
  #footer-2345 .cs-title {
    /* 31px - 39px */
    font-size: clamp(1.9375rem, 3vw, 2.4375rem);
    max-width: 75rem;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #footer-2345 .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);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #footer-2345 .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;
  }
  #footer-2345 .cs-button-solid:hover:before {
    width: 100%;
  }
  #footer-2345 .cs-button-solid {
    flex: none;
  }
  #footer-2345 .cs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  #footer-2345 .cs-content {
    max-width: 32.25rem;
  }
  #footer-2345 .cs-logo {
    width: 10.875rem;
    height: auto;
    margin-bottom: 1rem;
    display: block;
  }
  #footer-2345 .cs-text {
    /* 32px - 60px */
    margin-bottom: clamp(2rem, 7vw, 3.75rem);
    color: var(--bodyTextColorWhite);
  }
  #footer-2345 .cs-nav {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
  }
  #footer-2345 .cs-nav-li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #footer-2345 .cs-nav-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
  }
  #footer-2345 .cs-nav-link:hover {
    color: var(--primary);
  }
  #footer-2345 .cs-ul {
    width: 100%;
    max-width: 47.25rem;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 24px - 32px */
    row-gap: clamp(1.5rem, 5vw, 2rem);
    /* 24px - 64px */
    column-gap: clamp(1.5rem, 5vw, 2rem);
  }
  #footer-2345 .cs-li {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    grid-column: span 12;
  }
  #footer-2345 .cs-header {
    font-size: 1rem;
    line-height: 1.5em;
    color: #A3A3A3;
    display: block;
  }
  #footer-2345 .cs-contact {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-decoration: none;
    font-weight: 700;
    color: var(--bodyTextColorWhite);
  }
  #footer-2345 .cs-logo {
    width: 10.875rem;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
  }
  #footer-2345 .cs-logo-img {
    width: 100%;
    height: auto;
    display: block;
  }
  #footer-2345 .cs-flex {
    width: 100%;
    max-width: 17.6875rem;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 1.25rem;
  }
  #footer-2345 .cs-wrapper {
    width: 100%;
    display: flex;
  }
  #footer-2345 .cs-copyright,
  #footer-2345 .cs-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    white-space: nowrap;
    color: #A3A3A3;
    display: inline-block;
    transition: color 0.3s;
  }
  #footer-2345 .cs-link:hover {
    color: var(--primary);
  }
  #footer-2345 .cs-bottom {
    width: 100%;
    /* 48px - 60px */
    margin-top: clamp(3rem, 7vw, 3.75rem);
    /* 24px - 40px */
    padding-top: clamp(1.5rem, 5vw, 2.5rem);
    border-top: 1px solid #434240;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  #footer-2345 .cs-copyright {
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
  }
  #footer-2345 .cs-copyright-link {
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
  }
  #footer-2345 .cs-copyright-link:hover {
    color: var(--primary);
  }
  #footer-2345 .cs-terms {
    display: flex;
    align-items: center;
    order: -1;
  }
  #footer-2345 .cs-divider {
    font-size: 1rem;
    margin: 0 1rem;
    color: #a3a3a3;
    display: inline-block;
  }


/*-- -------------------------- -->
<---    Service Page Gallery    -->
<--- -------------------------- -*/
#gallery-2281 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #gallery-2281:before {
    content: '';
    width: 100%;
    height: 22.5rem;
    margin-right: 3.4375rem;
    background: var(--primary);
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #gallery-2281 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #gallery-2281 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  #gallery-2281 .cs-title {
    margin: 0;
  }
  #gallery-2281 .cs-button-group {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1rem;
    /* 20px - 40px */
    column-gap: clamp(1.25rem, 3.4vw, 2.5rem);
  }
  #gallery-2281 .cs-button {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5em;
    padding: 0;
    color: var(--bodyTextColor);
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #gallery-2281 .cs-button:before {
    content: '';
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s, bottom 0.3s, transform 0.3s;
  }
  #gallery-2281 .cs-button:hover {
    color: var(--primary);
    cursor: pointer;
  }
  #gallery-2281 .cs-button:hover:before {
    opacity: 1;
    bottom: -0.625rem;
  }
  #gallery-2281 .cs-button.cs-active {
    color: var(--primary);
  }
  #gallery-2281 .cs-button.cs-active:before {
    opacity: 1;
    bottom: -0.625rem;
  }
  #gallery-2281 .cs-gallery-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  #gallery-2281 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    position: relative;
    perspective: 700px;
    transform-style: preserve-3d;
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
    /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: left top;
  }
  #gallery-2281 .cs-gallery.cs-hidden {
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the gallery won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-container (left: 0). Same for the top:0 value, the gallery won't go past that posiiton when it animates */
    top: 0;
    left: 0;
    position: absolute;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0) scaleX(0);
  }
  #gallery-2281 .cs-gallery.cs-hidden .cs-image {
    /* when gallery is hidden, add these styles to the cs-image to animate from when cs-hidden is removed from the .cs-gallery */
    transform: translateY(2.1875rem) rotateX(90deg);
    opacity: 0;
  }
  #gallery-2281 .cs-image {
    /* 300px - 420px */
    min-height: clamp(18.75rem, 40vw, 26.25rem);
    /* clips the image corners */
    overflow: hidden;
    display: block;
    grid-column: span 12;
    position: relative;
    /* when .cs-hidden is removed from the .cs-gallery, reset these values and animate between their hidden styles */
    transform: translateY(0rem) rotateX(0);
    opacity: 1;
    transition: opacity 0.6s, transform 0.6s;
  }
  #gallery-2281 .cs-image:nth-of-type(1) {
    /* the transition delays change at desktop */
    /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
    transition-delay: 0.1s;
  }
  #gallery-2281 .cs-image:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #gallery-2281 .cs-image:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  #gallery-2281 .cs-image:nth-of-type(4) {
    transition-delay: 0.4s;
  }
  #gallery-2281 .cs-image:nth-of-type(5) {
    transition-delay: 0.5s;
  }
  #gallery-2281 .cs-image:nth-of-type(6) {
    transition-delay: 0.6s;
  }
  #gallery-2281 .cs-image:nth-of-type(7) {
    transition-delay: 0.7s;
  }
  #gallery-2281 .cs-image:nth-of-type(8) {
    transition-delay: 0.8s;
  }
  #gallery-2281 .cs-picture {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
  }
  #gallery-2281 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    transition: transform 0.65s, opacity 0.3s;
  }
  #gallery-2281 .cs-info {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: clamp(1rem, 2vw, 1.5rem);
    left: 0;
    z-index: 10;
  }
  #gallery-2281 .cs-tag {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 2vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    color: var(--bodyTextColorWhite);
    background-color: var(--primary);
  }
  #gallery-2281 .cs-project {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1rem;
    color: var(--headerColor);
    background-color: #fff;
  }

/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/
#why-choose-2317 {
    padding: var(--sectionPadding);
    padding-bottom: 0;
    position: relative;
  }
  #why-choose-2317 .cs-container {
    width: 100%;
    /* changes to 1440px on desktop */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  #why-choose-2317 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    /* 48px - 64px */
    margin-bottom: clamp(3rem, 6vw, 4rem);
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #why-choose-2317 .cs-title {
    margin: 0;
  }
  #why-choose-2317 .cs-content-picture {
    width: 100%;
    height: 20.5rem;
    display: block;
  }
  #why-choose-2317 .cs-content-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #why-choose-2317 .cs-ul {
    width: 100%;
    max-width: 39.375rem;
    margin: 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  #why-choose-2317 .cs-li {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid #e7e7e8;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
    /* remove the border and spacing on the last cs-li */
  }
  #why-choose-2317 .cs-li:last-of-type {
    margin: 0;
    padding: 0;
    border: none;
  }
  #why-choose-2317 .cs-icon {
    width: 3rem;
    height: auto;
    display: block;
  }
  #why-choose-2317 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: left;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
  }
  #why-choose-2317 .cs-li-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #why-choose-2317 .cs-picture {
    width: 100%;
    height: 22.5rem;
    display: block;
  }
  #why-choose-2317 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #why-choose-2317 .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;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #why-choose-2317 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #why-choose-2317 .cs-button-solid:hover:before {
    width: 100%;
  }


/*-- -------------------------- -->
<---     Why Choose Us Logos    -->
<--- -------------------------- -*/
#logos-2317 {
    /* 60px - 120px top & bottom */
    /* 16px - 40px left & right */
    padding: clamp(3.75rem, 8vw, 7.5rem) clamp(1rem, 2vw, 2.5rem) clamp(3.75rem, 6vw, 6.25rem);
  }
  #logos-2317 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #logos-2317 .cs-content {
    width: 100%;
    position: relative;
    /* grey background line */
  }
  #logos-2317 .cs-content::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #e7e7e8;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  #logos-2317 .cs-title {
    font-size: 1.5625rem;
    font-weight: 700;
    /* we set the width to fit the content, center the title with margin: auto; on the sides, then apply a background. this cuts the grey line 16px either side of the title, no matter how long it it */
    width: fit-content;
    margin: 0 auto;
    padding: 0 1rem;
    background-color: #fff;
    z-index: 1;
  }
  #logos-2317 .cs-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-self: stretch;
  }
  #logos-2317 .cs-logo {
    width: 45%;
    max-width: 12.5rem;
    height: auto;
    margin: 0;
    mix-blend-mode: darken;
    display: block;
  }


/*-- -------------------------- -->
<---    About Us Page Story     -->
<--- -------------------------- -*/
#sbs-2283 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2283 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-2283 .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;
  }
  #sbs-2283 .cs-content-images {
    display: none;
  }
  #sbs-2283 .cs-text {
    max-width: 100%;
    margin-bottom: 1rem;
  }
  #sbs-2283 .cs-text:last-of-type {
    margin: 0;
  }
  #sbs-2283 .cs-card-group {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    order: 3;
  }
  #sbs-2283 .cs-item {
    list-style: none;
    /* 24px - 32px */
    padding: clamp(1.5rem, 5vw, 2rem);
    border-left: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
  }
  #sbs-2283 .cs-item:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #sbs-2283 .cs-item-picture {
    display: none;
  }
  #sbs-2283 .cs-h3 {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
  }
  #sbs-2283 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #sbs-2283 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbs-2283 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbs-2283 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2283 .cs-image-group {
    /* scales the whole group based on the view width size and stop when that vales equals .74em, resets at desktop */
    font-size: min(2.48vw, 1rem);
    width: 36.5em;
    height: 38.6875em;
    display: block;
    position: relative;
    z-index: 1;
    order: 2;
  }
  #sbs-2283 .cs-picture {
    display: block;
    position: absolute;
  }
  #sbs-2283 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-2283 .cs-picture1 {
    width: 23.8125em;
    height: 23.8125em;
    border-right: 0.875em solid #FEF5F4;
    border-bottom: 0.875em solid #FEF5F4;
    top: 0;
    bottom: 17.5625em;
    left: 0;
  }
  #sbs-2283 .cs-picture2 {
    width: 23.875em;
    height: 20.375em;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  #sbs-2283 .cs-picture3 {
    width: 13.4375em;
    height: 9.5em;
    bottom: 10em;
    left: 6.25em;
  }


/*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/
#meet-team-1085 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
}
#meet-team-1085 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
}
#meet-team-1085 .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;
}
#meet-team-1085 .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;
}
#meet-team-1085 .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;
}
#meet-team-1085 .cs-topper {
    color: var(--secondary);
}
#meet-team-1085 .cs-title {
    margin: 0;
    color: var(--bodyTextColorWhite);
}
#meet-team-1085 .cs-card-group {
    width: 100%;
    max-width: 59.6875rem;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
    position: relative;
}
#meet-team-1085 .cs-item {
    list-style: none;
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
#meet-team-1085 .cs-item:hover .cs-picture:before,
#meet-team-1085 .cs-item:hover .cs-picture:after {
    opacity: 1;
}
#meet-team-1085 .cs-item:hover .cs-picture img {
    transform: scale(1.1);
}
#meet-team-1085 .cs-item:hover .cs-info {
    background-color: var(--primary);
}
#meet-team-1085 .cs-item:hover .cs-name,
#meet-team-1085 .cs-item:hover .cs-job {
    color: var(--bodyTextColorWhite);
}
#meet-team-1085 .cs-picture {
    width: 100%;
    height: auto;
    margin: 0;
    aspect-ratio: 1.49090909;
    /* clips the img corners */
    /* clips img tag from overflowing it on hover */
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
}
#meet-team-1085 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes sure the top of the image is at the top of the parent, heads won't get cut off this way */
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform 0.7s;
}
#meet-team-1085 .cs-info {
    width: 100%;
    /* 16px - 24px top & bottom */
    padding: clamp(1rem, 2.5vw, 1.5rem) 1.25rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: background-color 0.3s;
}
#meet-team-1085 .cs-name {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    width: 80%;
    margin: 0 0 0.25rem 0;
    color: var(--bodyTextColorWhite);
    display: block;
    transition: color 0.3s;
}
#meet-team-1085 .cs-job {
    font-size: 1rem;
    line-height: 1.5em;
    max-width: 70%;
    margin-right: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    display: block;
    transition: color 0.3s;
}
#meet-team-1085 .cs-arrow {
    width: 2rem;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25rem;
}
#meet-team-1085 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#meet-team-1085 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 1;
}
#meet-team-1085 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
}

/*-- -------------------------- -->
<---         Portfolio          -->
<--- -------------------------- -*/
@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);
    }
}
#gallery-1374 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
}
#gallery-1374 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
}
#gallery-1374 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
}

#gallery-1374 .cs-topper {
    color: var(--secondary);
}
#gallery-1374 .cs-image-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    /* 16px - 60px */
    gap: clamp(1rem, 4.3vw, 3.75rem);
}
#gallery-1374 .cs-link {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#gallery-1374 .cs-item {
    list-style: none;
    width: 100%;
    height: 100%;
    margin: 0;
    grid-column: span 12;
}
#gallery-1374 .cs-item:hover .cs-h3,
#gallery-1374 .cs-item:hover .cs-desc {
    color: #fff;
}
#gallery-1374 .cs-item:hover .cs-item-text {
    background-color: var(--primary);
}
#gallery-1374 .cs-item:hover .cs-icon-wrapper {
    border-color: #fff;
}
#gallery-1374 .cs-item:hover .cs-icon {
    filter: brightness(1000%) grayscale(1);
}
#gallery-1374 .cs-picture {
    width: 100%;
    /* 344px - 420px */
    height: clamp(21.5rem, 30vw, 26.25rem);
    margin: auto;
    border-radius: 0;
    display: block;
    position: relative;
    overflow: hidden;
}
#gallery-1374 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
#gallery-1374 .cs-item-text {
    /* 16px - 20px top & bottom, 16px - 40px left & right */
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2.8vw, 2.5rem);
    background-color: #f7f7f7;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* makes the item text the element that grows to fill the container */
    flex-grow: 1;
    gap: 1rem;
    transition: background-color 0.3s;
}
#gallery-1374 .cs-flex {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
#gallery-1374 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 1.8vw, 1.5625rem);
    line-height: 1.2em;
    text-align: left;
    margin: 0;
    color: #1a1a1a;
    transition: color 0.3s;
}
#gallery-1374 .cs-desc {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.5em;
    color: #1a1a1a;
    transition: color 0.3s;
}
#gallery-1374 .cs-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border: 1px solid #bababa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents the parent flexbox from shrinking the icon */
    flex-shrink: 0;
    transition: border-color 0.3s;
}
#gallery-1374 .cs-icon {
    width: auto;
    height: 0.75rem;
    transition: filter 0.3s;
}
#gallery-1374 .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;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 3rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}
#gallery-1374 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
}
#gallery-1374 .cs-button-solid:hover:before {
    width: 100%;
}

.view_all_works {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

#gallery-2297 .cs-icon {
    width: auto;
    height: 0.75rem;
    transition: filter 0.3s;
}
#gallery-2297 .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;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0;
    display: inline-block;
    position: relative;
    z-index: 1;
}
#gallery-2297 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
}
#gallery-2297 .cs-button-solid:hover:before {
    width: 100%;
}

#gallery-1374 .cs-bubbles {
    width: 25.9375rem;
    height: 34.125rem;
    position: absolute;
    right: -10.25rem;
    bottom: -2.875rem;
    z-index: -1;
}
#gallery-1374 .cs-bubbles:before {
    /* white border bubble */
    content: "";
    width: 21.3125rem;
    height: 21.3125rem;
    background: transparent;
    opacity: 1;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    animation-name: floatAnimation;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}
#gallery-1374 .cs-bubbles:after {
    /* orange bubble */
    content: "";
    width: 21.3125rem;
    height: 21.3125rem;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}


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





}


/* Tablet - 768px */
@media only screen and (min-width: 550px) {


}


/* Tablet - 600px */
@media only screen and (min-width: 600px) {


}

/* In-between - 650px */
@media only screen and (min-width: 650px) {
/*-- -------------------------- -->
<---         Footer Logo        -->
<--- -------------------------- -*/
  #logos-2345 .cs-container {
    flex-direction: row;
  }
  #logos-2345 .cs-row {
    /* makes the cs-row non-existent and elts the children interact with the children from outside the cs-row */
    display: contents;
  }
}


/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
#hero-2344 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    /* 64px - 100px */
    gap: clamp(4rem, 10vw, 6.25rem);
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
#services-2344 .cs-item {
  grid-column: span 6;
}

/*-- -------------------------- -->
<---          About Us          -->
<--- -------------------------- -*/
#sbs-2277 .cs-container {
    max-width: 80rem;
}
#sbs-2277 .cs-card-group {
    flex-direction: row;
    position: absolute;
    top: 0;
    right: 2rem;
}
#sbs-2277 .cs-item {
    width: 12.5rem;
    flex-direction: column;
}
#sbs-2277 .cs-picture {
    height: 30rem;
    max-height: initial;
    /* 60px - 80px */
    margin-top: clamp(3.75rem, 7vw, 5rem);
    position: relative;
    z-index: -1;
}

/*-- -------------------------- -->
<---          Services 2        -->
<--- -------------------------- -*/
#services-1847 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}
#services-1847 .cs-content {
    text-align: left;
    padding: 3.25rem 0;
    align-items: flex-start;
    align-self: center;
}
#services-1847 .cs-image-group {
    font-size: min(1.265vw, 1rem);
    height: auto;
    min-height: 38.3125em;
    flex: none;
}
#services-1847 .cs-picture1 {
    height: 88.091354%;
}
#services-1847 .cs-picture2 {
    height: 59.54323%;
}

/*-- -------------------------- -->
<---          Portfolio         -->
<--- -------------------------- -*/
  #gallery-2297 .cs-container {
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-2297 .cs-content {
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }
  #gallery-2297 .cs-title {
    margin: 0;
  }
  #gallery-2297 .cs-button-group {
    margin: 0;
  }
  #gallery-2297 .cs-image {
    grid-column: span 4;
  }
  #gallery-2297 .cs-stats {
    flex-direction: row;
  }
  #gallery-2297 .cs-stat {
    flex: 1;
  }


/*-- -------------------------- -->
<---         Testimonials       -->
<--- -------------------------- -*/
#reviews-1604 {
    padding: var(--sectionPadding);
  }
  #reviews-1604 .cs-container {
    max-width: 80rem;
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  #reviews-1604 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #reviews-1604 .cs-item {
    grid-column: span 6;
  }
  #reviews-1604 .cs-review {
    width: 67%;
  }
  #reviews-1604 .cs-quote {
    right: 2.5rem;
  }
  #reviews-1604 .cs-img {
    height: 60vw;
    max-height: 40rem;
  }


/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
  #footer-2345 .cs-ul {
    width: 80%;
    max-width: 44rem;
  }
  #footer-2345 .cs-li {
    grid-column: span 6;
  }
  #footer-2345 .cs-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  #footer-2345 .cs-terms {
    order: initial;
  }


/*-- -------------------------- -->
<---    Service Page Gallery    -->
<--- -------------------------- -*/
#gallery-2281:before {
    width: 100vw;
    /* 395px - 445px */
    height: clamp(24.6875rem, 30vw, 30.625rem);
    left: auto;
    right: 50%;
    display: none;
}
#gallery-2281 .cs-content {
    text-align: left;
    align-items: flex-start;
}
#gallery-2281 .cs-button-group {
    border-bottom: 1px solid #E7E7E8;
}
#gallery-2281 .cs-button {
    padding-bottom: 1.25rem;
}
#gallery-2281 .cs-button:hover:before {
    transform: scale(1);
    bottom: -1px;
}
#gallery-2281 .cs-button.cs-active:before {
    bottom: -1px;
    transform: scale(1);
}
#gallery-2281 .cs-button:before {
    transform: scale(0);
    transition: transform 0.3s;
}
#gallery-2281 .cs-image {
    grid-column: span 4;
}


/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/
#why-choose-2317 .cs-container {
    max-width: 80rem;
    gap: 1rem;
}
#why-choose-2317 .cs-content-group {
    padding-right: 1.25rem;
    display: grid;
    grid-template-columns: auto auto;
    /* 32px - 48px */
    column-gap: clamp(2rem, 3vw, 3rem);
}
#why-choose-2317 .cs-content {
    grid-column: span 2;
}
#why-choose-2317 .cs-content-picture {
    /* 284px - 458px */
    width: clamp(17.75rem, 34vw, 28.625rem);
    height: 100%;
    grid-column: span 1;
}
#why-choose-2317 .cs-ul {
    margin-top: 0;
}

/*-- -------------------------- -->
<---     Why Choose Us Logos    -->
<--- -------------------------- -*/
#logos-2317 .cs-logo {
    width: 15%;
    /* the max width becomes whatever the actual width of the image is */
    max-width: max-content;
}



}

/* Mobile - 1023.5px */
@media only screen and (max-width: 1023.5px) {
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
body.cs-open {
    overflow: hidden;
  }
  body.cs-open #cs-navigation {
    background-color: #1a1a1a;
  }
  #cs-navigation {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    background-color: rgba(26, 26, 26, 0.84);
    position: fixed;
    z-index: 10000;
    transition: background-color 0.3s;
  }
  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -1100;
    transition: height 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active:before {
    height: 150vh;
    opacity: 1;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-top-bar {
    width: 100%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-top-container {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.125rem;
  }
  #cs-navigation .cs-top-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: #f7f7f7;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #cs-navigation .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-top-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: auto;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-container {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #ffffff;
  }
  #cs-navigation .cs-logo {
    width: 9.1875rem;
    height: auto;
    margin: 0 auto 0 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    /* 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;
  }
  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: #484848;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #fafbfc;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .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-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }

}


/* Tablet - 650px - 1024px */
@media only screen and (min-width: 40.625rem) and (max-width: 1023.5px) {


}


/* Small Desktop - 1024px */
@media only screen and (max-width: 1023.5px) {
/*-- -------------------------- -->
<---   Mobile Navigation Menu   -->
<--- -------------------------- -*/
#cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
    background-color: #1a1a1a;
    overflow: hidden;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transition: transform 0.4s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    transition: transform 0.6s, opacity 0.9s;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--secondary);
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--secondary);
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }

}


/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
#services-2344 .cs-item {
  grid-column: span 3;
}

/*-- -------------------------- -->
<---          About Us          -->
<--- -------------------------- -*/
#sbs-2277 .cs-content {
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
}
#sbs-2277 .cs-title {
    /* margin: 0; */
    margin-bottom: 30px;
}
#sbs-2277 .cs-wrapper {
    display: flex;
    gap: 6rem;
    width: 100%;
}
#sbs-2277 .cs-flex {
    /* max-width: 26.25rem; */
    margin: 0;
    /* 60px - 80px, same amount as the margin top on the cs-picture on tablet  */
    padding-top: clamp(3.75rem, 7vw, 0);
    width: 45%;
}
#sbs-2277 .cs-image-group {
    height: auto;
    width: 55%;
}
#sbs-2277 .cs-picture {
  height: 100%;
}

/*-- -------------------------- -->
<---          Portfolio         -->
<--- -------------------------- -*/
#gallery-2297 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
  }
  #gallery-2297 .cs-image:hover .cs-tag,
  #gallery-2297 .cs-image:hover .cs-project {
    opacity: 1;
    transform: translateX(0);
  }
  #gallery-2297 .cs-image:hover .cs-picture img {
    opacity: 0.2;
    transform: scale(1.3);
  }
  #gallery-2297 .cs-tag {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s;
  }
  #gallery-2297 .cs-project {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out, opacity 0.3s;
    transition-delay: 0.1s;
  }


/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
#footer-2345 .cs-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #footer-2345 .cs-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  #footer-2345 .cs-ul {
    width: 50%;
  }
  #footer-2345 .cs-li {
    grid-column: span 12;
  }

/*-- -------------------------- -->
<---    Service Page Gallery    -->
<--- -------------------------- -*/
  #gallery-2281 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
  }
  #gallery-2281 .cs-image:hover .cs-tag,
  #gallery-2281 .cs-image:hover .cs-project {
    transform: translateX(0);
    opacity: 1;
  }
  #gallery-2281 .cs-image:hover .cs-picture img {
    opacity: 0.2;
    transform: scale(1.3);
  }
  #gallery-2281 .cs-tag {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s;
  }
  #gallery-2281 .cs-project {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out, opacity 0.3s;
    transition-delay: 0.1s;
  }

/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/
#why-choose-2317 .cs-container {
    max-width: 90rem;
    flex-direction: row;
    align-items: stretch;
  }
  #why-choose-2317 .cs-picture {
    /* 221px - 413px */
    width: clamp(13.8125rem, 21vw, 25.8125rem);
    height: auto;
    flex: 1 0 auto;
  }


/*-- -------------------------- -->
<---    About Us Page Story     -->
<--- -------------------------- -*/
#sbs-2283 .cs-container {
    max-width: 80rem;
    gap: 2rem;
  }
  #sbs-2283 .cs-content {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 2.75rem;
    position: relative;
    z-index: 10;
  }
  #sbs-2283 .cs-flex {
    width: 100%;
    max-width: 46.125rem;
  }
  #sbs-2283 .cs-content-images {
    width: 45vw;
    max-width: 25.75rem;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    order: -1;
  }
  #sbs-2283 .cs-li {
    align-items: center;
  }
  #sbs-2283 .cs-image-group {
    display: none;
  }
  #sbs-2283 .cs-picture1 {
    width: 100%;
    /* -133px to -165px */
    height: calc(100% + clamp(8.3125rem, 13vw, 10.3125rem));
    top: 0;
  }
  #sbs-2283 .cs-picture3 {
    width: 56%;
    min-height: 100px;
    max-width: 14.5625rem;
    left: 50%;
    top: calc(100% + 5rem);
    transform: translateX(-50%);
  }
  #sbs-2283 .cs-picture3 img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    object-fit: initial;
  }
  #sbs-2283 .cs-card-group {
    width: 50%;
    max-width: 32.5625rem;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  #sbs-2283 .cs-item-picture {
    width: 30vw;
    max-width: 25.8125rem;
    border: none;
    display: block;
    position: absolute;
    /* 72px - 130px */
    right: calc(100% + clamp(4.5rem, 8.5vw, 8.125rem));
    top: 2.25rem;
    bottom: 0;
  }
  #sbs-2283 .cs-item-picture:before {
    display: none;
  }
  #sbs-2283 .cs-picture2 {
    width: 100%;
    height: 100%;
  }


/*-- -------------------------- -->
<---        Contact Page        -->
<--- -------------------------- -*/
#contact-2320 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 3.25rem;
  }
  #contact-2320 .cs-container2 {
    max-width: 80rem;
  }
  #contact-2320 .cs-content {
    max-width: 32.625rem;
    /* 24px - 80px */
    padding: clamp(2rem, 5vw, 5rem) 0;
  }
  #contact-2320 .cs-title,
  #contact-2320 .cs-topper,
  #contact-2320 .cs-text {
    text-align: left;
    margin-left: 0;
  }
  #contact-2320 .cs-title {
    max-width: 32.625rem;
  }
  #contact-2320 .cs-services,
  #contact-2320 .cs-phone {
    width: 47%;
  }
  #contact-2320 .cs-button-solid {
    margin-left: 0;
  }
  #contact-2320 .cs-map {
    max-width: 39.375rem;
    height: auto;
    order: -1;
  }

/*  */

#gallery-2281 .cs-gallery {
  width: 100%;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  /* 16px - 20px */
  gap: clamp(1rem, 1.5vw, 1.25rem);
  position: relative;
  perspective: 700px;
  transform-style: preserve-3d;
  transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
  /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
  transform-origin: left top;
}

/*  */


}


/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
#services-2344 .cs-card-group {
  column-gap: 6.25rem;
}

/*-- -------------------------- -->
<---          Portfolio         -->
<--- -------------------------- -*/
#gallery-2297 .cs-stat {
    flex-direction: row;
    align-items: center;
}

/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
#footer-2345 .cs-li {
  grid-column: span 6;
}

/*-- -------------------------- -->
<---     Why Choose Us Logos    -->
<--- -------------------------- -*/
#logos-2317 .cs-logo-wrapper {
  justify-content: space-between;
}

/*  */

#gallery-2281 .cs-gallery {
  width: 100%;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  /* 16px - 20px */
  gap: clamp(1rem, 1.5vw, 1.25rem);
  position: relative;
  perspective: 700px;
  transform-style: preserve-3d;
  transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
  /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
  transform-origin: left top;
}

/*  */


}



/* Large Desktop - 1600px */
@media only screen and (min-width: 1600px) {

    #gallery-2281 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    position: relative;
    perspective: 700px;
    transform-style: preserve-3d;
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
    /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: left top;
  }

}


/* Mobile - 767px */
@media only screen and (max-width: 767.5px) {
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
#cs-navigation .cs-top-link:nth-of-type(2) {
  display: none;
}

}


/* Small Desktop - 1024px */
@media only screen and (min-width: 1024px) {
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
#cs-navigation {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.84);
    position: fixed;
    z-index: 10000;
  }
  #cs-navigation .cs-top-bar {
    width: 100%;
    background-color: #F85D12;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-top-container {
    width: 100%;
    max-width: 80rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.125rem;
  }
  #cs-navigation .cs-top-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: #f7f7f7;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #cs-navigation .cs-top-link:hover {
    text-decoration: underline;
  }
  #cs-navigation .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-top-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: auto;
    height: auto;
    display: block;
    transition: transform 0.3s;
  }
  #cs-navigation .cs-social-link:hover {
    transform: translateY(-0.25rem);
  }
  #cs-navigation .cs-social-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    /* same height as the cs-ul-wrapper */
    height: 5.8125rem;
    margin: auto;
    /* prevents padding from affecting height */
    box-sizing: border-box;
    padding: 0 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 12.3125rem;
    height: 3.75rem;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  /* #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  } */
  #cs-navigation .cs-ul-wrapper {
    /* absolutely positioned to be dead center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .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);
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 2.25rem 0;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    /* 14px - 16px */
    font-size: clamp(1rem, 0.6vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColorBlack);
    display: block;
    position: relative;
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:before {
    content: "";
    width: 0%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: width 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--secondary);
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--secondary);
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    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;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-nav-button {
    line-height: 2.875rem;
  }


}

/* Inbetween - 600px */
@media only screen and (min-width: 37.5rem) {
/*-- -------------------------- -->
<---    Service Page Gallery    -->
<--- -------------------------- -*/
#gallery-2281 .cs-image {
  grid-column: span 6;
}

/*-- -------------------------- -->
<---         Portfolio          -->
<--- -------------------------- -*/
#gallery-1374 .cs-item {
    grid-column: span 6;
}


}


/* Tablet - 550px */
@media only screen and (min-width: 34.375rem) {
/*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/
#meet-team-1085 .cs-item {
    grid-column: span 4;
}
#meet-team-1085 .cs-picture {
    /* 220px - 294px */
    height: clamp(13.75rem, 25vw, 18.375rem);
    aspect-ratio: initial;
}


}