  /*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-1308 {
        padding: var(--sectionPadding);
        overflow: hidden;
    }

    #sbs-1308 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 4vw, 4rem);
    }
    #sbs-1308 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        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-1308 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-1308 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-1308 .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: var(--bodyTextColorWhite);
        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;
        transition: color 0.3s;
    }
    #sbs-1308 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: var(--secondary);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #sbs-1308 .cs-button-solid:hover {
        color: #fff;
    }
    #sbs-1308 .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbs-1308 .cs-ul {
        width: 100%;
        padding: 0;
        /* 32px - 48px */
        margin: clamp(2rem, 5vw, 3rem) 0 0 0;
        /* 32px - 48px */
        padding: clamp(2rem, 5vw, 3rem) 0 0 0;
        border-top: 1px solid #e8e8e8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 0.75rem;
    }
    #sbs-1308 .cs-item {
        list-style: none;
        width: 32%;
        /* making flex so we can align a heading with 1 line to the bottom */
        display: flex;
        flex-direction: column;
        align-self: stretch;
        align-content: space-between;
    }
    #sbs-1308 .cs-number {
        font-size: 1.5625rem;
        line-height: 1.2em;
        font-weight: 700;
        text-align: left;
        color: var(--primary);
        display: block;
        margin: 0 0 0.5rem 0;
    }
    #sbs-1308 .cs-h3 {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        text-align: left;
        /* auto margin top will push text to bottom if there's only one line */
        margin: 0;
        color: var(--bodyTextColor);
    }
    #sbs-1308 .cs-image-group {
        width: 100%;
        max-width: 41.875rem;
        height: 100vw;
        max-height: 39.375rem;
        position: relative;
        display: block;
        z-index: 1;
    }
    #sbs-1308 .cs-picture {
        /* big background image */
        width: 93%;
        height: 93%;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }
    #sbs-1308 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #sbs-1308 .cs-box {
        text-align: left;
        width: 70%;
        max-width: 19rem;
        /* 20px - 40px */
        padding: clamp(1.25rem, 4vw, 2.5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #1a1a1a;
        display: inline-flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 10;
    }
    #sbs-1308 .cs-desc {
        /* 16px - 31px */
        font-size: clamp(1rem, 2.5vw, 1.9375rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: inherit;
        width: 100%;
        color: var(--bodyTextColorWhite);
        position: relative;
        z-index: 10;
    }
    #sbs-1308 .cs-graphic {
        width: 150%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-1308 .cs-container {
        max-width: 80rem;
        padding-top: 0;
        /* set to horizontal arrangement */
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #sbs-1308 .cs-content {
        width: 48%;
        padding: 3rem 0;
        align-self: center;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #sbs-1308 .cs-image-group {
        width: 55%;
        max-width: 41.875rem;
        min-height: 41.875rem;
        max-height: 100%;
        height: auto;
        margin: 0;
    }
    #sbs-1308 .cs-picture {
        width: 93%;
        height: 94%;
    }
    #sbs-1308 .cs-box {
        bottom: 0rem;
    }
    #sbs-1308 .cs-graphic {
        max-width: 44.6875rem;
        left: auto;
        right: 8.125rem;
        transform: translateY(-50%);
    }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2220 {
    padding: var(--sectionPadding);
    background-color: #fdfaf8;
    position: relative;
    z-index: 1;
  }
  #services-2220 .cs-container {
    width: 100%;
    /* changes to 1840px at tablet */
    max-width: 44rem;
    margin: auto;
  }
  #services-2220 .cs-title {
    font-family: var(--headerFont);
    text-transform: uppercase;
  }
  #services-2220 .cs-card-group {
    width: 100%;
    /* changes to 100% at tablet */
    max-width: 31.25rem;
    margin: 0 auto;
    padding: 0;
    /* changes to flexbox at large desktop */
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #services-2220 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    /* 240px - 300px */
    min-height: clamp(15rem, 30vw, 18.75rem);
    margin: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    /* clips the image corners */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    grid-column: span 12;
    grid-row: span 1;
    position: relative;
  }
  #services-2220 .cs-item:hover .cs-h3,
  #services-2220 .cs-item:focus-within .cs-h3 {
    transform: translateY(-0.75rem);
  }
  #services-2220 .cs-item:hover .cs-background:before,
  #services-2220 .cs-item:focus-within .cs-background:before {
    height: 180%;
  }
  #services-2220 .cs-item:hover .cs-background img,
  #services-2220 .cs-item:focus-within .cs-background img {
    opacity: 0.5;
    transform: scale(1.1);
  }
  #services-2220 .cs-link {
    text-decoration: none;
    height: 100%;
    /* 16px - 24px */
    padding: clamp(1rem, 1.25vw, 1.5rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  #services-2220 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    transition: transform 0.3s, color 0.3s;
  }
  #services-2220 .cs-content {
    text-align: center;
    min-height: 0;
    padding: 1.5rem;
    background-color: #fbf5f1;
    justify-content: center;
    align-items: center;
  }
  #services-2220 .cs-title {
    margin: 0 0 2rem;
  }
  #services-2220 .cs-button-solid {
    font-size: calc(16 / 16 * 1rem);
    font-weight: bold;
    line-height: calc(50 / 16 * 1em);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    width: max-content;
    padding: 0 calc(30 / 16 * 1rem);
    background-color: var(--primary);
    color: #000;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    transition-delay: 0.1s;
  }
  #services-2220 .cs-button-solid:hover {
    color: #fff;
  }
  #services-2220 .cs-button-solid:hover:before {
    width: 100%;
  }
  #services-2220 .cs-button-solid:before {
    content: "";
    width: 0;
    height: 100%;
    background-color: #000;
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #services-2220 .cs-background {
    width: 100%;
    height: 100%;
    background-color: #000;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2220 .cs-background:before {
    /* gradient overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 14.59%, rgba(0, 0, 0, 0) 43.18%);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: height 0.3s;
  }
  #services-2220 .cs-background img {
    width: 100%;
    height: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    position: absolute;
    z-index: -1;
    transition: transform 0.6s, opacity 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-2220 .cs-container {
    max-width: 115rem;
  }
  #services-2220 .cs-card-group {
    max-width: 100%;
    grid-template-rows: 1fr;
  }
  #services-2220 .cs-item {
    grid-column: span 4;
  }
  #services-2220 .cs-item.cs-content {
    grid-column: span 12;
  }
}
/* Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
  #services-2220 .cs-card-group {
    min-height: 37.5rem;
    display: flex;
    flex-direction: row;
  }
  #services-2220 .cs-content {
    min-width: 22rem;
    padding: 9.75rem 0 12.5rem;
  }
}
                                
                                
                                

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1627 {
      padding: var(--sectionPadding);
      background-color: var(--primary);
    }
    #services-1627 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet */
      max-width: 34.375em;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #services-1627 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
    }
    #services-1627 .cs-title {
      max-width: 20ch;
      color: #e7e7e8;
    }
    #services-1627 .cs-text {
      max-width: 40rem;
      position: relative;
      z-index: 1;
      color: #e7e7e8;
    }
    #services-1627 .cs-text:after {
      /* divider line */
      content: "";
      width: 100%;
      height: 1px;
      margin-top: 1.5rem;
      background: var(--primary);
      opacity: 1;
      display: block;
      position: relative;
    }
    #services-1627 .cs-chevron {
      --chevronColor: var(--primary);
      width: 3rem;
      height: auto;
    }
    #services-1627 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      /* 16px - 20px */
      column-gap: clamp(1rem, 2.5vw, 1.25rem);
      /* 28px - 40px */
      row-gap: clamp(1.75rem, 2.5vw, 2.5rem);
    }
    #services-1627 .cs-item {
      list-style: none;
      width: 100%;
      display: flex;
      grid-column: span 12;
      flex-direction: column;
      align-items: flex-start;
    }
    #services-1627 .cs-item:hover .cs-picture img {
      opacity: .5;
      transform: scale(1.2);
    }
    #services-1627 .cs-link {
      text-decoration: none;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    #services-1627 .cs-picture {
      width: 100%;
      height: 15rem;
      margin-bottom: 1.5rem;
      background-color: #000;
      overflow: hidden;
      display: block;
      position: relative;
    }
    #services-1627 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform .6s, opacity .3s;
    }
    #services-1627 .cs-h3 {
      font-size: 1.25rem;
      line-height: 1.2em;
      font-weight: 700;
      text-align: left;
      margin: 0 0 0.75rem 0;
      color: #e7e7e8;
    }
    #services-1627 .cs-item-text {
      font-size: 1rem;
      line-height: 1.5em;
      text-align: left;
      margin: 0 0 1.5rem 0;
      color: #e7e7e8;
    }
    #services-1627 .cs-fake-link {
      font-size: 1rem;
      line-height: 1.2em;
      font-weight: 700;
      margin: 0;
      margin-top: auto;
      color: #e7e7e8;
      display: inline-flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
    }
    #services-1627 .cs-fake-link:hover .cs-icon {
      transform: translateX(0.5rem);
    }
    #services-1627 .cs-icon {
      width: 1.25rem;
      height: auto;
      display: block;
      transition: transform .3s;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #services-1627 .cs-container {
      max-width: 80rem;
    }
    #services-1627 .cs-content {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }
    #services-1627 .cs-flex {
      text-align: left;
      width: 40vw;
      max-width: 40rem;
      flex: none;
    }
    #services-1627 .cs-title {
      margin: 0;
    }
    #services-1627 .cs-text {
      padding: 0.75rem 0 0.75rem 1.5rem;
    }
    #services-1627 .cs-text:after {
      width: 1px;
      height: 100%;
      margin: 0 1.5rem 0 0;
      order: -1;
      position: absolute;
      left: 0;
      top: 0;
    }
    #services-1627 .cs-item {
      grid-column: span 4;
    }
    #services-1627 .cs-picture {
      /* 240px - 420px */
      height: clamp(15rem, 33vw, 26.25rem);
    }
  }


/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #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%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #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;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #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;
  }
}

#logos-2317 {
	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;
	gap: clamp(2rem, 4vw, 3rem)
}

#logos-2317 .cs-content {
	width: 100%;
	position: relative
}

#logos-2317 .cs-content::before {
	content: "";
	width: 100%;
	height: 1.5px;
	background-color: #e7e7e8;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%)
}

#logos-2317 .cs-title {
	font-size: 1.5625rem;
	font-weight: 500;
	width: fit-content;
	margin: 0 auto;
	padding: 0 1rem;
	background-color: #f7f9fb;
	color: var(--headerColor);
	position: relative
}

#logos-2317 .cs-tab-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	width: 100%
}

#logos-2317 .cs-tab {
	font-size: .875rem;
	font-weight: 500;
	padding: .5rem 1.25rem;
	border-radius: var(--border-radius-md);
	border: 1px solid #d9d9d9;
	background: transparent;
	color: var(--bodyTextColor);
	cursor: pointer;
	transition: all 0.3s ease;
}

#logos-2317 .cs-tab:hover {
	background: #f5f5f5;
	color: var(--headerColor);
  transform: translateY(-2px);
}

#logos-2317 .cs-tab.active {
	background: var(--primary);
    color: white;
    border-color: var(--primary);
}

#logos-2317 .cs-panel {
	width: 100%;
	display: none
}

#logos-2317 .cs-panel.active {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem
}

#logos-2317 .cs-logo-card {
	width: calc(50% - .75rem);
	max-width: 12.5rem;
	min-height: 5rem;
  
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem 1rem;
	box-sizing: border-box
}
#logos-2317 .cs-logo-card {
    opacity: 0;
    transform: translateY(15px);
    animation: logoReveal 0.5s ease forwards;
}

@keyframes logoReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#logos-2317 .cs-logo-card:nth-child(1)  { animation-delay: 0.1s; }
#logos-2317 .cs-logo-card:nth-child(2)  { animation-delay: 0.2s; }
#logos-2317 .cs-logo-card:nth-child(3)  { animation-delay: 0.3s; }
#logos-2317 .cs-logo-card:nth-child(4)  { animation-delay: 0.4s; }
#logos-2317 .cs-logo-card:nth-child(5)  { animation-delay: 0.5s; }
#logos-2317 .cs-logo-card:nth-child(6)  { animation-delay: 0.6s; }
#logos-2317 .cs-logo-card:nth-child(7)  { animation-delay: 0.7s; }
#logos-2317 .cs-logo-card:nth-child(8)  { animation-delay: 0.8s; }
#logos-2317 .cs-logo-card:nth-child(9)  { animation-delay: 0.9s; }
#logos-2317 .cs-logo-card:nth-child(10) { animation-delay: 1s; }
#logos-2317 .cs-logo-card:nth-child(11) { animation-delay: 1.1s; }
#logos-2317 .cs-logo-card:nth-child(12) { animation-delay: 1.2s; }
#logos-2317 .cs-logo-card:nth-child(13) { animation-delay: 1.3s; }
#logos-2317 .cs-logo-card:nth-child(14) { animation-delay: 1.4s; }

#logos-2317 .cs-logo {
	width: 100%;
	height: auto;
	max-height: 5rem;
	object-fit: contain;
	mix-blend-mode: darken
}

#logos-2317 .cs-logo-name {
	font-size: .9375rem;
	font-weight: 500;
	color: var(--color-text-secondary);
	text-align: center;
	line-height: 1.3;
	margin: 0
}

#logos-2317 .cs-logo-sub {
	font-size: .75rem;
	color: var(--color-text-tertiary);
	margin: .25rem 0 0;
	text-align: center
}

@media(min-width:48rem) {
	#logos-2317 .cs-logo-card {
		width: calc(20% - 1.2rem);
		max-width: none
	}
}

@media(min-width:81.25rem) {
	#logos-2317 .cs-panel.active {
		justify-content:center;
	}
}

                                
@media only screen and (min-width: 81.25rem) {
	#sbs-2288 .cs-content {
		padding-right: 3.25rem;
	}

	#sbs-2288 .cs-picture1 {
		bottom: 3.75rem;
		width: 32.625rem;
	}

	#sbs-2288 .cs-picture2 {
		top: 3.75rem;
		width: 24.4375rem;
	}

	#gallery .cs-stat {
		flex-direction: row;
		align-items: center;
	}
}

@media only screen and (min-width: 106.25rem) {
	#services-2287 .cs-floater-right {
		right: 50%;
		margin-right: -63.75rem;
	}

	#services-2287 .cs-floater-left {
		left: 50%;
		margin-left: -63.75rem;
	}
}

/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #stats-1660 {
    padding: var(--sectionPadding);
    overflow: hidden;
  }
  #stats-1660 .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);
    position: relative;
    z-index: 1;
  }
  #stats-1660 .cs-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  #stats-1660 .cs-flex {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 35.625rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #stats-1660 .cs-text {
    margin-bottom: 1rem;
  }
  #stats-1660 .cs-text:last-of-type {
    /* 32px - 64px */
    margin-bottom: clamp(2rem, 5vw, 4rem);
  }
  #stats-1660 .cs-stat-group {
    width: 100%;
    max-width: 53.75rem;
    /* 24px - 44px top & bottom */
    /* 24px - 40px Left & right */
    padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
    box-sizing: border-box;
    margin: 0;
    background-color: #f7f7f7;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 2rem;
    column-gap: 1rem;
    position: relative;
    z-index: 10;
  }
  #stats-1660 .cs-stat {
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    grid-column: span 6;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  #stats-1660 .cs-number {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 5vw, 3.8125rem);
    line-height: 1.2em;
    font-weight: 900;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }
  #stats-1660 .cs-desc {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    display: block;
  }
  #stats-1660 .cs-picture {
    width: 100%;
    max-width: 39.375rem;
    min-height: 25rem;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }
  #stats-1660 .cs-picture 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) {
  #stats-1660 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    position: relative;
  }
  #stats-1660 .cs-content {
    /* 40px - 60px */
    padding-bottom: clamp(2.5rem, 6vw, 3.75rem);
  }
  #stats-1660 .cs-flex {
    width: 45%;
  }
  #stats-1660 .cs-stat-group {
    width: 77vw;
  }
  #stats-1660 .cs-stat {
    grid-column: span 3;
  }
  #stats-1660 .cs-picture {
    height: 100%;
    width: 48vw;
    position: absolute;
    right: 0;
    top: 0;
  }
}

    /* ── Reset ───────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--bodyFont);
      font-size: 100%;
      color: var(--bodyTextColor);
      background: #f7f9fb;
      overflow-x: hidden;
    }

    /* ── Shared helpers matching root.css ─────────────────────────── */
    .cs-topper {
      display: block;
      margin-bottom: 0.25rem;
      text-transform: uppercase;
      font-size: var(--topperFontSize);
      line-height: 1.2em;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.05em;
    }
    .cs-title {
      margin: 0 0 1rem;
      text-transform: uppercase;
      font-family: var(--headerFont);
      font-size: var(--headerFontSize);
      line-height: 1.2em;
      font-weight: 900;
      color: var(--headerColor);
    }
    #awards-main .cs-text {
      max-width: 40.625rem;
      margin-inline: auto;
      font-size: var(--bodyFontSize);
      line-height: 1.5em;
      color: var(--bodyTextColor);
      text-align: center;
    }
    #awards-main .cs-button-solid {
      position: relative;
      z-index: 1;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border: none;
      background-color: var(--primary);
      overflow: hidden;
      padding: 0 1.75rem;
      text-decoration: none;
      text-transform: uppercase;
      font-family: var(--bodyFont);
      font-size: 1rem;
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      transition: color 0.3s;
      gap: 0.75rem;
    }
    .cs-button-solid::before {
      z-index: -1;
      position: absolute;
      top: 0; left: 0;
      content: "";
      display: block;
      background: var(--accent);
      height: 100%;
      width: 0;
      transition: width 0.3s;
    }
    .cs-button-solid:hover { color: var(--dark); }
    .cs-button-solid:hover::before { width: 100%; }

    /* ── Section wrapper ─────────────────────────────────────────────── */
    #awards-main {
      padding: var(--sectionPadding);
      background: #fff;
    }
    #awards-main .cs-container {
      margin-inline: auto;
      max-width: 80rem;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(2rem, 4vw, 2rem);
    }

    /* ── Section header ─────────────────────────────────────────────── */
    .awards-header {
      text-align: center;
      max-width: 50rem;
    }
    .awards-header .cs-title { margin-bottom: 1rem; }

    /* ── Carousel shell ─────────────────────────────────────────────── */
    .awards-carousel-wrap {
      position: relative;
      width: 100%;
    }

    /* Arrow buttons — same feel as cs-button-solid but inverted */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 3rem;
      height: 3rem;
      border: 2px solid var(--primary);
      background: #fff;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      color: var(--primary);
      /* square, no radius — matches brand's zero-radius buttons */
    }
    .carousel-arrow:hover { background: var(--primary); color: #fff; }
    .carousel-arrow svg { width: 1.25rem; height: 1.25rem; pointer-events: none; }
    .carousel-arrow--prev { left: 0; }
    .carousel-arrow--next { right: 0; }

    /* ── Carousel track ─────────────────────────────────────────────── */
    .carousel-track-outer {
      overflow: hidden;
      margin: 0 3.5rem; /* room for arrows */
    }
    .carousel-track {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      /* width set by JS */
    }

    /* ── Card ────────────────────────────────────────────────────────── */
    .award-card {
      flex: none;
      background: #fff;
      border: 1px solid #e7e7e8;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, opacity 0.35s;
      opacity: 0.45;
      transform: scale(0.95);
      /* width set by JS */
    }
    .award-card.is-active {
      opacity: 1;
      transform: scale(1);
      box-shadow: 0 8px 32px rgba(15,23,42,0.10);
    }
    /* Bottom accent line on hover — mirrors cs-item::after in reviews */
    .award-card::after {
      content: "";
      position: absolute;
      bottom: 0; left: 0;
      background: var(--secondary);
      height: 0.25rem;
      width: 0;
      transition: width 0.3s;
    }
    .award-card { position: relative; }
    .award-card:hover::after { width: 100%; }

    .award-card__img-wrap {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #f3f3f3;
    }
    .award-card__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .award-card:hover .award-card__img-wrap img { transform: scale(1.05); }

    .award-card__body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      flex: 1;
    }

    /* Year badge — echoes cs-topper style */
    .award-card__year {
      display: inline-block;
      font-family: var(--bodyFont);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--secondary);
      background: rgba(105,14,16,0.07);
      padding: 0.2rem 0.6rem;
      align-self: flex-start;
    }

    .award-card__title {
      font-family: var(--headerFont);
      font-size: 1.375rem;
      font-weight: 700;
      line-height: 1.2em;
      text-transform: uppercase;
      color: var(--headerColor);
    }

    .award-card__org {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--primary);
      line-height: 1.3em;
    }

    .award-card__desc {
      font-size: 0.9375rem;
      line-height: 1.5em;
      color: var(--bodyTextColor);
      margin-top: 0.25rem;
    }

    /* ── Pagination dots ─────────────────────────────────────────────── */
    .carousel-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .carousel-dot {
      height: 0.5rem;
      width: 0.5rem;
      background: #c6c6cd;
      border: none;
      cursor: pointer;
      transition: width 0.3s, background 0.3s;
    }
    .carousel-dot.is-active {
      width: 2rem;
      background: var(--primary);
    }

    /* ── Responsive card widths ─────────────────────────────────────── */
    /* Handled in JS via CSS custom prop */

    @media (max-width: 47.9375rem) {
      .carousel-track-outer { margin: 0 2.5rem; }
      .carousel-arrow { width: 2.5rem; height: 2.5rem; }
    }