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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-1308 {
      background-color: #F6F5F1;
        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: #000;
        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%);
    }
}


@media only screen and (min-width: 0rem) {
	#sbs-2316 {
		background-color: var(--bgcolor);
		padding: var(--sectionPadding);
		position: relative;
	}

	#sbs-2316 .cs-container {
		width: 100%;
		max-width: 36.5rem;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: clamp(3rem, 10vw, 4rem);
	}

	#sbs-2316 .cs-content {
		text-align: left;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: clamp(3rem, 7vw, 4.5rem);
	}

	#sbs-2316 .cs-content2 {
		gap: clamp(1.25rem, 7vw, 4.5rem);
	}

	#sbs-2316 .cs-title,
	#sbs-2316 .cs-text {
		max-width: 100%;
		margin-bottom: 2rem;
	}

	#sbs-2316 .cs-ul {
		margin: 1rem 0 2rem 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	#sbs-2316 .cs-li {
		font-size: 1rem;
		line-height: 1.5em;
		list-style: none;
		color: var(--bodyTextColor);
	}

	#sbs-2316 .cs-li:before {
		content: "";
		width: 0.5rem;
		height: 0.5rem;
		margin: 0 0.75rem 0.125rem 0.125rem;
		background: var(--secondary);
		display: inline-block;
		transform: rotate(45deg);
	}

	#sbs-2316 .cs-button-box {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 2rem;
		row-gap: 1rem;
	}

	#sbs-2316 .cs-link {
		text-decoration: none;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 1rem;
		position: relative;
	}

	#sbs-2316 .cs-icon-wrapper {
		width: 3.75rem;
		height: 3.75rem;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		transition: transform 0.3s;
		flex: none;
	}

	#sbs-2316 .cs-icon-wrapper::before {
		content: "";
		width: 100%;
		height: 100%;
		background-color: #E6FBE9;
		opacity: 1;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
	}

	#sbs-2316 .cs-icon {
		width: 1.5rem;
		height: auto;
		display: block;
		z-index: 1;
	}

	#sbs-2316 .cs-info {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
	}

	#sbs-2316 .cs-link-content {
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.2em;
		margin: 0;
		color: var(--bodyTextColor);
		display: block;
	}

	#sbs-2316 .cs-phone {
		font-size: 1.5625rem;
		font-weight: 700;
		line-height: 1.2em;
		margin: 0;
		color: var(--headerColor);
		display: block;
	}

	#sbs-2316 .cs-img {
		width: 3.75rem;
		height: auto;
	}

	#sbs-2316 .cs-signature {
		width: auto;
		height: 2.25rem;
		margin: 0 auto;
		display: block;
	}

	#sbs-2316 .cs-job {
		font-size: 1rem;
		line-height: 1.5em;
		text-align: center;
		margin-top: 0.375rem;
		padding-top: 0.25rem;
		color: var(--bodyTextColor);
		border-top: 1px solid #e7e7e8;
	}

	#sbs-2316 .cs-picture {
		display: block;
		position: relative;
		z-index: 1;
	}

	#sbs-2316 .cs-picture img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
	}

	#sbs-2316 .cs-picture1 {
		width: 100%;
		height: clamp(17.5rem, 55vw, 25rem);
	}

	#sbs-2316 .cs-picture2 {
		width: 100%;
		height: 17.5rem;
	}
}

@media only screen and (min-width: 64rem) {
	#sbs-2316 .cs-container {
		max-width: 80rem;
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
	}

	#sbs-2316 .cs-content {
		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
	}

	#sbs-2316 .cs-content2 {
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	#sbs-2316 .cs-wrapper {
		width: 100%;
		max-width: 49.6875rem;
	}

	#sbs-2316 .cs-wrapper2 {
		max-width: 25.8125rem;
		padding-bottom: 7.5rem;
	}

	#sbs-2316 .cs-picture1 {
		max-width: 25.75rem;
		height: auto;
	}

	#sbs-2316 .cs-picture2 {
		width: 64vw;
		max-width: 49.6875rem;
		height: auto;
		flex: none;
	}
}

@media only screen and (min-width: 81.25rem) {
	#sbs-2316 .cs-wrapper {
		padding-right: 4.5rem;
	}
}

@media only screen and (min-width: 0rem) {
	#stats-1574 {
		padding: var(--sectionPadding);
		position: relative;
		background-color: var(--bgcolor);
		z-index: -10;
	}

	#stats-1574 .cs-container {
		list-style: none;
		width: 100%;
		max-width: 36.5rem;
		margin: auto;
	}

	#stats-1574 .cs-card-group {

		width: 100%;
		padding: 0;
		display: grid;
		grid-auto-flow: row;
		gap: clamp(1rem, 2vw, 1.25rem);
	}

	#stats-1574 .cs-item {
		text-align: center;
		width: 100%;
		padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
		background-color: #F7F7F7;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#stats-1574 .cs-icon {
		width: auto;
		height: 3rem;
		margin-bottom: 1.5rem;
	}

	#stats-1574 .cs-stat {
		font-size: clamp(1.9375rem, 4vw, 2.4375rem);
		font-family: "Teko";
		font-weight: 700;
		line-height: 1.2em;
		margin-bottom: 0.25rem;
		color: var(--headerColor);
		display: block;
	}

	#stats-1574 .cs-info {
		font-size: clamp(0.875rem, 2vw, 1.25rem);
		line-height: 1.5em;
		color: var(--bodyTextColor);
	}

	#stats-1574 .cs-background {
		width: 100%;
		height: 9.375rem;
		object-fit: cover;
		background-color: var(--primary);
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
}

@media only screen and (min-width: 48rem) {
	#stats-1574 .cs-container {
		max-width: 80rem;
	}

	#stats-1574 .cs-card-group {
		grid-template-columns: repeat(12, 1fr);
	}

	#stats-1574 .cs-item {
		grid-column: span 3;
	}
}

@media only screen and (min-width: 64rem) {
	#stats-1574 .cs-background {
		height: 50%;
	}
}

@media only screen and (min-width: 0rem) {
	#stats-479 {
		padding: var(--sectionPadding);
		background-color: #14142b;
		overflow: hidden;
		position: relative;
		z-index: 1;
	}

	#stats-479:before,
	#stats-479:after {
		content: "";
		width: 28.3125rem;
		height: 20.8125rem;
		background: #f1f1f4;
		opacity: 0.16;
		-webkit-filter: blur(182px);
		filter: blur(182px);
		position: absolute;
		display: block;
		top: -4.125rem;
		left: -14.1875rem;
		z-index: -1;
	}

	#stats-479:after {
		display: none;
	}

	#stats-479 .cs-container {
		width: 100%;
		max-width: 59.6875rem;
		margin: auto;
	}

	#stats-479 .cs-card-group {
		width: 100%;
		margin: 0;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 3.75rem;
	}

	#stats-479 .cs-item {
		list-style: none;
		width: 47%;
		max-width: 15rem;
		margin: 0;
		padding: 0 0.75rem;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#stats-479 .cs-icon {
		width: clamp(3.125rem, 6vw, 4.75rem);
		height: auto;
		margin: 0 0 1.25rem;
		display: block;
	}

	#stats-479 .cs-number {
		font-size: clamp(1.9375rem, 4.3vw, 3.8125rem);
		line-height: 1.2em;
		text-align: center;
		font-weight: 400;
		margin: 0 0 0.25rem 0;
		color: var(--bodyTextColorWhite);
	}

	#stats-479 .cs-desc {
		font-size: clamp(1rem, 2vw, 1.15rem);
		line-height: 1.5em;
		text-align: center;
		width: 100%;
		color: var(--bodyTextColorWhite);
	}
}

@media only screen and (min-width: 48rem) {
	#stats-479:after {
		display: block;
		left: auto;
		top: 3.5625rem;
		right: -17.5625rem;
	}

	#stats-479 .cs-card-group {
		justify-content: space-between;
	}
}

@media only screen and (min-width: 0rem) {
	#services-479 {
		background-color: var(--bgcolor);
		padding: var(--sectionPadding);
		padding-top: clamp(3.75em, 11vw, 12.5em);
		overflow: hidden;
	}

	#services-479 .cs-container {
		width: 100%;
		max-width: 80rem;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#services-479 .cs-right-section {
		max-width: 52.75rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: clamp(5.5rem, 10vw, 7.375rem);
	}

	#services-479 .cs-content {
		text-align: center;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#services-479 .cs-title {
		max-width: 20ch;
	}

	#services-479 .cs-card-group {
		width: 100%;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 3.625rem;
	}

	#services-479 .cs-item {
		list-style: none;
		width: 100%;
		padding: 0 clamp(1.5rem, 2vw, 3.75rem) 2.5rem;
		border: 1px solid #b4b2c7;
		box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
		transition: border-color 0.3s;
	}

	#services-479 .cs-item:hover {
		border-color: var(--primary);
	}

	#services-479 .cs-item:hover .cs-icon-wrap {
		transform: scale(1.1);
	}

	#services-479 .cs-item:hover:before {
		opacity: 1;
	}

	#services-479 .cs-item:before {
		content: "";
		width: 100%;
		height: 100%;
		background: transparent;
		box-sizing: border-box;
		border: 3px solid var(--primary);
		pointer-events: none;
		opacity: 0;
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		transition: opacity 0.3s;
	}

	#services-479 .cs-icon-wrap {
		width: clamp(3.75rem, 7vw, 6.875rem);
		height: clamp(3.75rem, 7vw, 6.875rem);
		margin-top: calc(clamp(3.75rem, 7vw, 6.875rem) * -0.5);
		margin-bottom: clamp(1.875rem, 5vw, 2.5rem);
		background-color: #fff;
		border: 2px solid var(--primary);
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		z-index: 10;
		transition: transform 0.3s;
	}

	#services-479 .cs-icon {
		width: clamp(2rem, 5vw, 3.5rem);
		height: auto;
		display: block;
	}

	#services-479 .cs-h3 {
		font-size: clamp(1.25rem, 2vw, 1.9375rem);
		line-height: 1.2em;
		font-weight: 700;
		margin: 0 0 0.75rem 0;
		color: var(--headerColor);
	}

	#services-479 .cs-item-text {
		font-size: clamp(0.875rem, 1.5vw, 1rem);
		line-height: 1.5em;
		font-weight: 400;
		text-align: center;
		margin: 0 0 clamp(0.75rem, 3vw, 2rem);
		color: var(--bodyTextColor);
	}

	#services-479 .cs-link {
		font-size: clamp(1rem, 2vw, 1.25rem);
		line-height: 1.5em;
		text-decoration: none;
		text-transform: uppercase;
		font-weight: 700;
		margin: auto 0 0 0;
		color: var(--secondary);
		position: relative;
		display: block;
	}

	#services-479 .cs-link:hover:before {
		width: 100%;
	}

	#services-479 .cs-link:before {
		content: "";
		width: 0%;
		height: 2px;
		background: currentColor;
		opacity: 1;
		position: absolute;
		display: block;
		bottom: -2px;
		left: 0;
		transition: width 0.3s;
	}

	#services-479 .cs-left-section {
		width: 100%;
		z-index: 1;
		margin-bottom: clamp(3rem, 6vw, 4rem);
		padding-top: 12.75rem;
		padding-bottom: clamp(1.5rem, 7vw, 2.5rem);
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		position: relative;
	}

	#services-479 .cs-background {
		width: 120vw;
		height: 150vw;
		overflow: hidden;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}

	#services-479 .cs-background:before {
		content: "";
		width: 100%;
		height: 100%;
		background: linear-gradient(360deg, #073506 0%, rgba(7, 53, 6, 0) 67.27%);
		-webkit-filter: drop-shadow(0px 24px 54px rgba(87, 107, 147, 0.12));
		filter: drop-shadow(0px 24px 54px rgba(87, 107, 147, 0.12));
		opacity: 1;
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		z-index: 10;
	}

	#services-479 .cs-background img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	#services-479 .cs-cta {
		text-decoration: none;
		margin-left: 3rem;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: clamp(0.75rem, 2vw, 1.5rem);
	}

	#services-479 .cs-cta:hover .cs-arrow-wrap {
		transform: scale(1.2);
	}

	#services-479 .cs-arrow-wrap {
		width: clamp(2.5rem, 6vw, 4.375rem);
		height: clamp(2.5rem, 6vw, 4.375rem);
		background: rgba(217, 217, 217, 0.3);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: transform 0.3s;
	}

	#services-479 .cs-arrow {
		width: 1.125rem;
		height: auto;
		display: block;
	}

	#services-479 .cs-info {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}

	#services-479 .cs-tag {
		font-size: clamp(1.25rem, 2.5vw, 1.9375rem);
		line-height: 1.2em;
		font-weight: 700;
		text-align: left;
		margin: 0 0 0.25rem 0;
		color: #fff;
		display: block;
	}

	#services-479 .cs-desc {
		font-size: clamp(0.875rem, 2vw, 1.5625rem);
		line-height: 1.2em;
		font-weight: 400;
		text-align: center;
		margin: 0 0 0.25rem 0;
		color: #fff;
		display: block;
	}
}

@media only screen and (min-width: 48rem) {
	#services-479 .cs-container {
		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
		gap: clamp(3.75rem, 9vw, 8.125rem);
	}

	#services-479 .cs-left-section {
		width: 80%;
		margin: 0;
		padding-top: 0;
		justify-content: flex-start;
		order: 2;
	}

	#services-479 .cs-background {
		width: 40vw;
		height: calc(100% + 35vw);
	}

	#services-479 .cs-right-section {
		width: 55vw;
		flex: none;
	}

	#services-479 .cs-cta {
		margin-left: 0;
		transform: translateX(clamp(1.5rem, 5vw, 6.25rem));
	}

	#services-479 .cs-info {
		flex: none;
	}

	#services-479 .cs-arrow-wrap {
		flex: none;
	}

	#services-479 .cs-card-group {
		flex-direction: row;
		gap: clamp(1rem, 1.3vw, 1.25rem);
	}
}

@media only screen and (min-width: 0rem) {
	#reviews-864 {
		padding: var(--sectionPadding);
		position: relative;
		z-index: 1;
	}

	#reviews-864:before {
		content: "";
		width: 100%;
		height: 100%;
		background: var(--bgcolor);
		opacity: 1;
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		z-index: -1;
	}

	#reviews-864 .cs-container {
		width: 100%;
		max-width: 34.375rem;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: clamp(3rem, 6vw, 4rem);
	}

	#reviews-864 .cs-content {
		text-align: center;
		width: 100%;
		max-width: 56.25rem;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#reviews-864 .cs-title {
		max-width: 30ch;
	}

	#reviews-864 .cs-text {
		max-width: 100%;
	}

	#reviews-864 .cs-card-group {
		padding: 0;
		margin: 0;
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		gap: clamp(1rem, 2.5vw, 1.15rem);
	}

	#reviews-864 .cs-item {
		list-style: none;
		width: 100%;
		padding: clamp(1.25rem, 4vw, 2rem);
		background-color: #fff;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
		grid-column: span 12;
		position: relative;
	}

	#reviews-864 .cs-flex-group {
		width: 100%;
		margin: 0 0 1.25rem 0;
		padding-bottom: 1.25rem;
		border-bottom: 1px solid #E6FBE9;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 1.25rem;
	}

	#reviews-864 .cs-profile {
		width: 4rem;
		height: 4rem;
		border-radius: 50%;
		overflow: hidden;
		position: relative;
		display: block;
	}

	#reviews-864 .cs-profile img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	#reviews-864 .cs-name {
		font-size: clamp(1.25rem, 2vw, 1.5625rem);
		line-height: 1.5em;
		font-weight: 700;
		margin: 0 0 0.5rem 0;
		color: var(--headerColor);
		display: block;
	}

	#reviews-864 .cs-job {
		font-size: 0.875rem;
		line-height: 1.2em;
		font-weight: 400;
		margin: 0;
		color: var(--bodyTextColor);
		display: block;
	}

	#reviews-864 .cs-review {
		font-size: clamp(0.875rem, 1.5vw, 1rem);
		line-height: 1.5em;
		margin: 0;
		margin-bottom: 1.25rem;
		max-width: 27.75rem;
		color: var(--bodyTextColor);
	}

	#reviews-864 .cs-stars {
		width: 6.75rem;
		height: auto;
		margin: 0 0 0.5rem 0;
		display: block;
	}

	#reviews-864 .cs-desc {
		font-size: clamp(0.875rem, 1.5vw, 1rem);
		line-height: 1.5em;
		text-align: inherit;
		margin: 0;
		color: var(--bodyTextColor);
	}

	#reviews-864 .cs-button-solid {
		padding: 0 2rem;
	}

	#reviews-864 .cs-quote1,
	#reviews-864 .cs-quote2 {
		display: none;
		width: 12.125rem;
		height: auto;
		display: block;
		position: absolute;
		z-index: -1;
	}

	#reviews-864 .cs-quote1 {
		top: 0;
		left: 0;
	}

	#reviews-864 .cs-quote2 {
		bottom: 0;
		right: 0;
	}
}

@media only screen and (min-width: 48rem) {
	#reviews-864 .cs-container {
		max-width: 80rem;
	}

	#reviews-864 .cs-item {
		grid-column: span 6;
	}

	#reviews-864 .cs-item:last-of-type {
		grid-column: span 12;
	}

	#reviews-864 .cs-stars {
		margin-top: auto;
	}

	#reviews-864 .cs-quote1,
	#reviews-864 .cs-quote2 {
		display: block;
	}
}

@media only screen and (min-width: 64rem) {
	#reviews-864 .cs-item {
		grid-column: span 4;
	}

	#reviews-864 .cs-item:last-of-type {
		grid-column: span 4;
	}
}

/* -------------------------------------------- */
/*                    Logos                     */
/* -------------------------------------------- */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #logos-573 {
        padding: clamp(3.75rem, 8vw, 8.125rem) 1rem;
        background-color: var(--bgcolor);
    }

    #logos-573 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(2.5rem, 5vw, 4rem);
    }

    #logos-573 .cs-title {
        font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: center;
        margin: 0;
        color: var(--headerColor);
    }

    #logos-573 .cs-logo-wrapper {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    #logos-573 .cs-logo {
        width: auto;
        height: auto;
        max-width: 120px; /* good size for PNGs */
        display: block;
        opacity: 0.9;
        transition: opacity 0.2s ease;
    }

    #logos-573 .cs-logo:hover {
        opacity: 1;
    }
	#logos-573 .cs-partner-group {
    width: 100%;
    text-align: center;
	}

	#logos-573 .cs-subtitle {
		font-size: 1.25rem;
		font-weight: 600;
		line-height: 1.4em;
		text-align: center;
		margin-bottom: 1.5rem;
		color: var(--headerColor);
	}
	#logos-573 .cs-logo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

#logos-573 .cs-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #logos-573 .cs-logo {
        max-width: 150px; /* slightly larger on bigger screens */
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #logos-573 .cs-logo {
        max-width: 250px;
    }
	#logos-573 .cs-logo-wrapper {
	gap: clamp(2rem, 4vw, 3.5rem);
	}
}