:root {
				/* remove this whole :root and put in your global css file that's shared on all pages, then just remove this section from all other Stitches you add later, only need this once in your global stylesheet */
				--primary: #ff420b;
				--primaryLight: #ffba43;
				--secondary: #ffba43;
				--secondaryLight: #ffba43;
				--headerColor: #1a1a1a;
				--bodyTextColor: #4e4b66;
				--bodyTextColorWhite: #fafbfc;
				/* 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 */
				--sectionTopPadding: 14rem 1.5rem 1rem 1.5rem;
				--sectionPadding: clamp(1.75rem, 7.82vw, 6.25rem) 1rem;
			}
			
			body {
			font-family: 'Roboto', 'Arial', sans-serif;
						margin: 0;
					padding: 0;
					}
			
			*, *: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: 900;
				line-height: 1.2em;
				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);
			} 
			/*-- -------------------------- -->
<---    Report A Stitch         -->
<--- -------------------------- -*/
/* Success Modal */
@media only screen and (min-width: 0em) {
  .cs-report-button {
	position: fixed;
	background-color: #fff;
	border: none;
	bottom: 1.25rem;
	right: 1.25rem;
	z-index: 10000;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	height: 2.875rem;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	border-radius: 1.875rem;
	padding: 0 1.5rem;
	transition: transform 0.2s, color 0.3s, background-color 0.3s;
  }
  .cs-report-button:hover {
	transform: scale(1.1);
	background-color: #0C293E;
	color: #fff;
  }
  .cs-report-button:hover .light {
	display: none;
  }
  .cs-report-button:hover .dark {
	display: block;
  }
  .cs-report-button .dark {
	display: none;
  }
  .cs-report-form {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
	pointer-events: none;
  }
  .cs-report-form.cs-open {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
  }
  .cs-report-form.cs-open .cs-form {
	transform: translateY(0);
  }
  .cs-report-form .cs-form {
	width: 90%;
	max-width: 46.875rem;
	/* 24px - 48px top and bottom */
	/* 16px - 48px left and right */
	padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
	/* prevents flexbox from affecting height and width */
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 1.5rem;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: flex-start;
	flex-wrap: wrap;
	position: relative;
	gap: 0.75rem;
	transform: translateY(6.25rem);
	transition: transform .3s;
  }
  .cs-report-form .closeReport {
	font-size: 20px;
	border: none;
	width: 1.8em;
	height: 1.8em;
	background: #f1f1f3;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	position: absolute;
	top: clamp(1.5rem, 5.18vw, 3rem);
	right: clamp(1rem, 4vw, 3rem);
	transition: filter .3s, transform .3s;
  }
  .cs-report-form .closeReport:hover {
	filter: brightness(90%);
	transform: rotate(90deg);
  }
  .cs-report-form h2 {
	font-size: 1.5625rem;
	text-align: left;
  }
  .cs-report-form p {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	margin: 0 0 2rem 0;
	max-width: 34.375rem;
  }
  .cs-report-form .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;
  }
  .cs-report-form .cs-input {
	font-size: 1rem;
	width: 100%;
	height: 3.5rem;
	padding: 0;
	padding-left: 1.5rem;
	color: var(--headerColor);
	background-color: #F7F7F7;
	border-radius: 0.5rem;
	border: none;
	/* prevents padding from adding to height and width */
	box-sizing: border-box;
  }
  .cs-report-form .cs-input::placeholder {
	color: #7D799C;
	opacity: .6;
  }
  .cs-report-form .cs-textarea {
	min-height: 7.5rem;
	padding-top: 1.5rem;
	margin-bottom: 0.75rem;
	font-family: inherit;
  }
  .cs-report-form .cs-button-solid {
	font-size: 1rem;
	line-height: 3.5rem;
	text-decoration: none;
	font-weight: 700;
	overflow: hidden;
	margin: 0;
	color: #fff;
	padding: 0 3rem;
	border-radius: 0.5rem;
	background-color: #0C293E;
	display: inline-block;
	position: relative;
	z-index: 1;
	transition: color .3s;
  }
  .cs-report-form .cs-button-solid:before {
	content: '';
	position: absolute;
	display: block;
	height: 100%;
	width: 0%;
	background: #1a1a1a!important;
	opacity: 1;
	top: 0;
	left: 0;
	z-index: -1;
	transition: width .3s;
  }
  .cs-report-form .cs-button-solid:hover {
	color: #0C293E;
  }
  .cs-report-form .cs-button-solid:hover:before {
	width: 100%;
  }
  .cs-report-form .cs-submit {
	width: 100%;
	min-width: 12.5rem;
	border: none;
  }
  .cs-report-form .cs-submit:hover {
	color: #fff;
	cursor: pointer!important;
  }
}
/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2295 {
	padding: var(--sectionPadding);
	background-color: #fefcf4;
	overflow: hidden;
	position: relative;
	z-index: 1;
  }
  #sbs-2295 .cs-container {
	width: 100%;
	/* changes to 1280px at tablet */
	max-width: 44rem;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* 48px - 64px */
	gap: clamp(3rem, 4vw, 4rem);
  }
  #sbs-2295 .cs-image-group {
	/* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
	font-size: min(1.98vw, .826rem);
	/* everything inside this box is in ems so we can scale it all down proportionally with a font size */
	width: 46.125em;
	height: 36.125em;
	order: -1;
	position: relative;
	z-index: 1;
	/* prevents flexbox from squishing it */
	flex: none;
  }
  #sbs-2295 .cs-picture {
	width: 100%;
	height: 100%;
	border: 1em solid var(--bodyTextColorWhite);
	display: block;
  }
  #sbs-2295 .cs-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
  }
  #sbs-2295 .cs-picture-wrapper1 {
	width: 25.75em;
	height: 28.5625em;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: absolute;
	top: 0;
	left: 0;
  }
  #sbs-2295 .cs-picture-wrapper2 {
	width: 25.8125em;
	height: 29.625em;
	display: flex;
	flex-direction: column-reverse;
	gap: 1rem;
	position: absolute;
	right: 0;
	bottom: 0;
  }
  #sbs-2295 .cs-tag {
	/* 14px - 24px */
	font-size: clamp(0.875rem, 1.4vw, 1.5rem);
	font-weight: 700;
	line-height: 1.2em;
	text-align: center;
	color: var(--headerColor);
  }
  #sbs-2295 .cs-arrow {
	width: 9.25em;
	height: 3.375em;
	position: absolute;
	top: 15.125em;
	left: 15.9375em;
	transform: rotate(30deg);
  }
  #sbs-2295 .cs-content {
	/* set text align to center if content needs to be centrally aligned */
	text-align: left;
	width: 100%;
	max-width: 36.625rem;
	display: flex;
	flex-direction: column;
	/* aligns content to the left, set to center to centrally align */
	align-items: flex-start;
  }
  #sbs-2295 .cs-title {
	max-width: 30ch;
  }
  #sbs-2295 .cs-text {
	margin-bottom: 1rem;
  }
  #sbs-2295 .cs-text:last-of-type {
	margin-bottom: 1.5rem;
  }
  #sbs-2295 .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(--headerColor);
	display: inline-block;
	position: relative;
	z-index: 1;
  }
  #sbs-2295 .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-2295 .cs-button-solid:hover:before {
	width: 100%;
  }
  #sbs-2295 .cs-h3 {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5em;
	margin: 0;
	color: var(--headerColor);
  }
  #sbs-2295 .cs-ul {
	margin: 0.75rem 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
  }
  #sbs-2295 .cs-li {
	font-size: 1rem;
	line-height: 1.5em;
	list-style: none;
	/* 20px - 24px */
	padding-left: clamp(1.25rem, 3vw, 1.5rem);
	color: var(--bodyTextColor);
	position: relative;
  }
  #sbs-2295 .cs-li strong {
	color: #1a1a1a;
  }
  #sbs-2295 .cs-li::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	margin-top: 0.5rem;
	background-color: var(--secondary);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(45deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2295 .cs-container {
	max-width: 80rem;
  }
  #sbs-2295 .cs-image-group {
	order: initial;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2295 .cs-container {
	flex-direction: row;
	align-items: stretch;
  }
  #sbs-2295 .cs-image-group {
	font-size: min(1.03vw, 1rem);
	height: auto;
  }
  #sbs-2295 .cs-picture-wrapper1 {
	height: auto;
	bottom: 7.5625em;
  }
  #sbs-2295 .cs-picture-wrapper2 {
	height: auto;
	top: 6.5em;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
	overflow: hidden;
  }
  body.scroll #cs-navigation {
	width: 100%;
	max-width: 100%;
	top: 0;
  }
  body.scroll #cs-navigation:before {
	border-radius: 0;
  }
  body.scroll #cs-navigation .cs-ul-wrapper {
	top: 100%;
  }
  #cs-navigation {
	width: 94%;
	max-width: 80rem;
	/* prevents padding from affecting height and width */
	box-sizing: border-box;
	/* 12px - 24px */
	padding: clamp(0.75rem, 2vw, 1.5rem);
	/* 12px - 24px */
	border-radius: clamp(0.75rem, 2vw, 1.5rem);
	position: fixed;
	top: 2rem;
	left: 50%;
	z-index: 10000;
	transform: translateX(-50%);
	transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation:before {
	/* background color */
	content: "";
	width: 100%;
	height: 100%;
	background: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	opacity: 1;
	/* 12px - 24px */
	border-radius: clamp(0.75rem, 2vw, 1.5rem);
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: transform 0.2s, border-radius 0.3s ease-in-out;
  }
  #cs-navigation.cs-active:before {
	transform: translateX(-50%) scale(1.03);
  }
  #cs-navigation.cs-active .cs-toggle {
	transform: rotate(180deg);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
	transform: scaleY(1);
	transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
	opacity: 1;
	transform: translateY(0);
  }
  #cs-navigation .cs-container {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1.5rem;
  }
  #cs-navigation .cs-logo {
	width: auto;
	max-width: 8.5rem;
	height: 100%;
	margin: 0 auto 0 0;
	/* prevents padding from affecting height and width */
	box-sizing: border-box;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	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: #1a1a1a;
	border: none;
	border-radius: 0.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
	transition: transform 0.6s;
  }
  #cs-navigation .cs-nav {
	/* sends it to the right in the 3rd position */
	order: 3;
  }
  #cs-navigation .cs-contact-group {
	display: none;
	position: relative;
	z-index: 10;
  }
  #cs-navigation .cs-phone {
	font-size: 1rem;
	line-height: 1.5em;
	text-decoration: none;
	margin: 0;
	color: var(--headerColor);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5rem;
	transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
	width: 1.5rem;
	height: auto;
	display: block;
  }
  #cs-navigation .cs-social {
	display: none;
  }
  #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;
  }
  #cs-navigation .cs-ul-wrapper {
	width: 100%;
	height: auto;
	padding-bottom: 2.4em;
	background-color: #fff;
	border-radius: 0 0 1.5rem 1.5rem;
	position: absolute;
	top: 85%;
	left: 0;
	z-index: -1;
	overflow: hidden;
	transform: scaleY(0);
	transition: transform 0.4s;
	transform-origin: top;
  }
  #cs-navigation .cs-ul {
	width: 100%;
	height: auto;
	max-height: 65vh;
	margin: 0;
	padding: 4rem 0 0 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 1.25rem;
	overflow: auto;
  }
  #cs-navigation .cs-li {
	text-align: center;
	list-style: none;
	width: 100%;
	margin-right: 0;
	opacity: 0;
	/* transition from these values */
	transform: translateY(-70/16rem);
	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(--headerColor);
	display: inline-block;
	position: relative;
  }
  #cs-navigation .cs-li-link.cs-active {
	color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover {
	color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
	display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-navigation .cs-contact-group {
	display: block;
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-li {
	text-align: center;
	width: 100%;
	display: block;
  }
  #cs-navigation .cs-dropdown {
	color: var(--bodyTextColorWhite);
	position: relative;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
	height: auto;
	margin: 0.75rem 0 0 0;
	padding: 0.75rem 0;
	opacity: 1;
	visibility: visible;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
	opacity: 1;
  }
  #cs-navigation .cs-dropdown .cs-li-link {
	position: relative;
	transition: opacity 0.3s;
  }
  #cs-navigation .cs-drop-icon {
	width: 0.9375rem;
	height: auto;
	position: absolute;
	top: 50%;
	right: -1.25rem;
	transform: translateY(-50%);
  }
  #cs-navigation .cs-drop-ul {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 0;
	background-color: var(--primary);
	opacity: 0;
	display: flex;
	visibility: hidden;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 0.75rem;
	overflow: hidden;
	transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
  }
  #cs-navigation .cs-drop-li {
	list-style: none;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
	/* 14px - 16px */
	font-size: clamp(0.875rem, 2vw, 1.25rem);
	color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
	position: relative;
  }
  #cs-navigation .cs-dropdown:hover {
	cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li {
	opacity: 1;
	transform: translateY(0);
  }
  #cs-navigation .cs-drop-icon {
	width: 0.9375rem;
	height: auto;
	display: inline-block;
  }
  #cs-navigation .cs-drop-ul {
	min-width: 12.5rem;
	margin: 0;
	padding: 0;
	background-color: #fff;
	box-shadow: inset rgba(149, 157, 165, 0.1) 0px 8px 10px;
	opacity: 0;
	border-bottom: 5px solid var(--primary);
	border-radius: 0 0 1.5rem 1.5rem;
	visibility: hidden;
	/* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
	position: absolute;
	top: 100%;
	z-index: -100;
	overflow: hidden;
	transform: scaleY(0);
	transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
	transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
	font-size: 1rem;
	text-decoration: none;
	list-style: none;
	width: 100%;
	height: auto;
	opacity: 0;
	display: block;
	transform: translateY(-0.625rem);
	transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
	transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
	transition-delay: 0.1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
	transition-delay: 0.15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
	transition-delay: 0.2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
	transition-delay: 0.25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
	transition-delay: 0.3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
	transition-delay: 0.35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
	transition-delay: 0.4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
	transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
	font-size: 1rem;
	line-height: 1.5em;
	text-transform: capitalize;
	text-decoration: none;
	white-space: nowrap;
	width: 100%;
	/* prevents padding from affecting height and width */
	box-sizing: border-box;
	padding: 0.75rem;
	color: var(--headerColor);
	display: block;
	transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
	color: var(--bodyTextColorWhite);
	background-color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
	display: none;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  body.scroll #cs-navigation {
	width: 100%;
	max-width: 100%;
	border-radius: 0;
	top: 0;
  }
  #cs-navigation {
	width: 94%;
	max-width: 90rem;
	height: 11rem;
	/* prevents padding from affecting height and width */
	box-sizing: border-box;
	/* 12px - 24px */
	padding: clamp(0.75rem, 2vw, 1.5rem) 0;
	background-color: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	/* 12px - 24px */
	border-radius: clamp(0.75rem, 2vw, 1.5rem);
	display: flex;
	align-items: center;
	position: fixed;
	top: 2rem;
	left: 50%;
	z-index: 10000;
	transform: translateX(-50%);
	transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation .cs-container {
	width: 100%;
	max-width: 90rem;
	margin: auto;
	/* prevents padding from affecting height and width */
	box-sizing: border-box;
	padding: 0 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
	display: none;
  }
  #cs-navigation .cs-logo {
	width: 18.4%;
	max-width: 21.875rem;
	height: 8.5rem;
	/* margin-right auto pushes everything away from it to the right */
	margin: 0 auto 0 0;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	z-index: 100;
  }
  #cs-navigation .cs-logo img {
	width: auto;
	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-contact-group {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
  }
  #cs-navigation .cs-phone {
	font-size: 1rem;
	line-height: 1.5em;
	text-decoration: none;
	margin: 0;
	color: var(--headerColor);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5rem;
	transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
	width: 1.5rem;
	height: auto;
	display: block;
  }
  #cs-navigation .cs-social {
	height: 2rem;
	opacity: 1;
	display: none;
	visibility: visible;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }
  #cs-navigation .cs-social-link {
	text-decoration: none;
	width: 2rem;
	height: 2rem;
	background-color: #f7f7f7;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s;
  }
  #cs-navigation .cs-social-link:hover {
	background-color: var(--primary);
  }
  #cs-navigation .cs-social-link:hover .cs-social-icon {
	opacity: 1;
	filter: grayscale(1) brightness(10000%);
  }
  #cs-navigation .cs-social-icon {
	width: 0.75rem;
	height: auto;
	opacity: 0.6;
	display: block;
	transition: opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
	height: 100%;
	display: flex;
	align-items: center;
	/* absolutely positioned to be dead center */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
	width: 100%;
	height: 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;
	height: 100%;
	padding: 0;
	display: flex;
	align-items: center;
	/* prevent flexbox from squishing it */
	flex: none;
  }
  #cs-navigation .cs-li-link {
	font-size: 1rem;
	line-height: 1.5em;
	text-decoration: none;
	margin: 0;
	color: var(--headerColor);
	display: block;
	position: relative;
	transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
	color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active {
	color: var(--primary);
  }
  #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;
	color: #fff;
	background-color: var(--primary);
	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%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #cs-navigation .cs-social {
	display: flex;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#services-1301 {
		padding: var(--sectionTopPadding);
		position: relative;
		z-index: 10;
		background-color: #fefcf4;
	}
	#services-1301 .cs-container {
		width: 100%;
		max-width: 80rem;
		margin: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		/* 48px - 64px */
		gap: clamp(3rem, 6vw, 4rem);
	}
	#services-1301 .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-1301 .cs-title {
		max-width: 20ch;
	}
	#services-1301 .cs-card-group {
		width: 100%;
		max-width: 80rem;
		margin: 0;
		padding: 0 1rem;
		/* prevents padding and border from affecting height and width */
		background-color: #fff;
		box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.05);
		box-sizing: border-box;
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		position: relative;
		z-index: 15;
	}
	#services-1301 .cs-item {
		text-align: left;
		list-style: none;
		width: 100%;
		border-bottom: 1px solid #e8e8e8;
		box-sizing: border-box;
		grid-column: span 12;
		transition:
			background-color 0.3s,
			border-color 0.3s;
	}
	#services-1301 .cs-item:last-of-type {
		border-bottom: none;
	}
	#services-1301 .cs-link {
		text-decoration: none;
		/* 24px - 60px top & Bottom */
		/* 24px - 16px top & Bottom */
		padding: clamp(1.5rem, 5.3vw, 3.75rem) clamp(1rem, 2.7vw, 2.5rem);
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
	}
	#services-1301 .cs-icon {
		/* 32px - 40px */
		height: clamp(2rem, 4vw, 2.5rem);
		width: auto;
		margin: 0 0 1rem 0;
	}
	#services-1301 .cs-h3 {
		/* 20px - 25px */
		font-size: clamp(1.25rem, 2vw, 1.5625rem);
		font-weight: 700;
		text-align: inherit;
		line-height: 1.2em;
		margin: 0 0 0.75rem 0;
		color: var(--headerColor);
		transition: color 0.3s;
	}
	#services-1301 .cs-item-text {
		/* 14px - 16px */
		font-size: clamp(0.875rem, 1.5vw, 1rem);
		text-align: inherit;
		line-height: 1.5em;
		margin: 0;
		color: var(--bodyTextColor);
		transition:
			color 0.3s,
			opacity 0.3s;
	}
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
	#services-1301 .cs-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 3rem;
	}
	#services-1301 .cs-title {
		margin: 0;
	}
	#services-1301 .cs-flex-group {
		width: 50%;
		/* prevents flexbox from squishing it */
		flex: none;
	}
	#services-1301 .cs-item {
		grid-column: span 6;
	}
	#services-1301 .cs-item:nth-of-type(3) {
		border-bottom: none;
	}
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
	#services-1301 .cs-card-group {
		padding: 0;
	}
	#services-1301 .cs-item {
		grid-column: span 3;
		border-bottom: 0;
		border-right: 1px solid #e8e8e8;
	}
	#services-1301 .cs-item:hover {
		background-color: #1a1a1a;
		border-color: #1a1a1a;
	}
	#services-1301 .cs-item:hover .cs-h3,
	#services-1301 .cs-item:hover .cs-item-text {
		color: var(--bodyTextColorWhite);
	}
	#services-1301 .cs-item:hover .cs-item-text {
		opacity: 0.8;
	}
	#services-1301 .cs-item:last-of-type {
		border: none;
	}
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-564 {
	padding: var(--sectionPadding);
	background-color: #fefcf4;
  }
  #services-564 .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);
  }
  #services-564 .cs-content {
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
  }
  #services-564 .cs-topper {
	color: var(--headerColor);
  }
  #services-564 .cs-text {
	margin-bottom: 1rem;
  }
  #services-564 .cs-text:last-of-type {
	margin-bottom: 2rem;
  }
  #services-564 .cs-color {
	color: var(--primary);
  }
  #services-564 .cs-h3 {
	/* 25px - 31px */
	font-size: clamp(1.5625rem, 3vw, 1.9375rem);
	line-height: 1.2em;
	font-weight: 700;
	text-align: inherit;
	/* 16px - 20px */
	margin: 0 0 clamp(1rem, 1.9vw, 1.25rem) 0;
	color: var(--headerColor);
  }
  #services-564 .cs-ul {
	width: 100%;
	margin: 0 0 2rem 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/* 16px - 24px */
	gap: clamp(1rem, 2.5vw, 1.5rem);
  }
  #services-564 .cs-li {
	/* 16px - 20px */
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 700;
	list-style: none;
	line-height: 1.5em;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	/* push icon top the top so if the list item goes to two lines the icon stays at the top */
	align-items: flex-start;
	gap: 1.25rem;
  }
  #services-564 .cs-icon {
	/* adds extra space between the icon and top of parent so it's more centered */
	margin-top: clamp(0.125rem, 0.47vw, 0.4375rem);
  }
  #services-564 .cs-button-solid {
	font-size: 1rem;
	/* 46px - 56px */
	line-height: clamp(2.875rem, 5.5vw, 3.5rem);
	text-decoration: none;
	font-weight: 700;
	text-align: center;
	margin: 0;
	color: #000;
	min-width: 9.375rem;
	padding: 0 1.5rem;
	background-color: var(--secondary);
	border-radius: 0.25rem;
	display: inline-block;
	overflow: hidden;
	position: relative;
	z-index: 1;
	/* prevents padding from adding to the width */
	box-sizing: border-box;
	transition: color 0.3s;
  }
  #services-564 .cs-button-solid:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 0%;
	background: #000;
	opacity: 1;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 0.25rem;
	transition: width 0.3s;
  }
  #services-564 .cs-button-solid:hover {
	color: #fff;
  }
  #services-564 .cs-button-solid:hover:before {
	width: 100%;
  }
  #services-564 .cs-picture {
	/* changes at tablet */
	width: 100%;
	max-width: 39.375rem;
	/* changes to a clamp at tablet */
	height: 24.75rem;
	display: block;
	position: relative;
  }
  #services-564 .cs-picture img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-564 .cs-container {
	max-width: 80rem;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
  }
  #services-564 .cs-picture {
	width: 46vw;
	/* 415px - 528px */
	height: clamp(25.9375rem, 50vw, 33rem);
  }
  #services-564 .cs-content {
	width: 45%;
	max-width: 32.5rem;
  }
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-1750 {
	padding: var(--sectionTopPadding);
	overflow: hidden;
	position: relative;
	z-index: 1;
	background-color: #fefcf4;

  }
  #contact-1750 .cs-container {
	width: 100%;
	/* changes to 1024 on desktop */
	max-width: 44rem;
	margin: auto;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	/* 48px - 64px */
	gap: clamp(3rem, 5vw, 4rem);
  }
  #contact-1750 .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;
  }
  #contact-1750 .cs-form-group {
	/* set text align to left if content needs to be left aligned */
	text-align: center;
	width: 100%;
	/* resets to 0 at tablet */
	margin: auto;
	/* prevents padding and border from affecting height and width */
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	/* centers content horizontally, set to flex-start to left align */
	align-items: center;
  }
  #contact-1750 .cs-title {
	margin: 0 0 1.5rem;
  }
  #contact-1750 .cs-form {
	width: 100%;
	/* prevents flexbox from affecting height and width */
	box-sizing: border-box;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1rem;
  }
  #contact-1750 .cs-label {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--headerColor);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-column: span 12;
	gap: 0.5rem;
  }
  #contact-1750 .cs-input {
	font-size: 1rem;
	width: 100%;
	/* 46px - 56px */
	height: clamp(2.875rem, 4.5vw, 3.5rem);
	/* prevents padding from adding to height and width */
	box-sizing: border-box;
	padding: 0;
	padding-left: 1.5rem;
	background-color: #f7f7f7;
	color: var(--headerColor);
	border: none;
  }
  #contact-1750 .cs-input::placeholder {
	color: var(--bodyTextColor);
  }
  #contact-1750 .cs-textarea {
	font-family: inherit;
	min-height: 7.5rem;
	padding-top: 1.5rem;
  }
  #contact-1750 .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 1.5rem;
	background-color: var(--primary);
	overflow: hidden;
	color: #1a1a1a;
	border: none;
	display: inline-block;
	position: relative;
	z-index: 1;
	transition: color 0.3s;
  }
  #contact-1750 .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;
  }
  #contact-1750 .cs-button-solid:hover {
	color: #fff;
  }
  #contact-1750 .cs-button-solid:hover:before {
	width: 100%;
  }
  #contact-1750 .cs-submit {
	margin: 1rem 0 0;
	color: var(--bodyTextColorWhite);
	grid-column: span 12;
	justify-self: flex-start;
  }
  #contact-1750 .cs-submit:hover {
	cursor: pointer;
  }
  #contact-1750 .cs-info-group {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
  }
  #contact-1750 .cs-detail {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--bodyTextColor);
	display: block;
  }
  #contact-1750 .cs-picture-group {
	width: 110%;
	height: 100vw;
	/* removed at desktop */
	max-height: 31.375rem;
	margin-top: 3rem;
	overflow: hidden;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
  }
  #contact-1750 .cs-iframe {
	width: 100%;
	height: 100%;
	display: block;
  }
  #contact-1750 .cs-graphic {
	width: 100%;
	min-width: 80rem;
	height: auto;
	object-fit: cover;
	position: absolute;
	left: 50%;
	z-index: 0;
	transform: translateX(-50%);
  }
  #contact-1750 .cs-top {
	top: 0;
  }
  #contact-1750 .cs-left {
	left: 4%;
	transform: rotate(270deg);
	transform-origin: left;
  }
  #contact-1750 .cs-bottom {
	bottom: 0;
	left: 0;
	transform: rotateX(180deg);
  }
  #contact-1750 .cs-dark {
	display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-1750 {
	/* using flex: 1 on both group elements to ensure they're both the same width */
  }
  #contact-1750 .cs-container {
	flex-direction: row;
	align-items: center;
  }
  #contact-1750 .cs-form-group {
	flex: 1;
  }
  #contact-1750 .cs-info-group {
	flex: 1;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-1750 .cs-container {
	width: 65%;
	max-width: 64rem;
	margin: 0 auto 0 0;
	padding: 2.5rem 1.5rem;
  }
  #contact-1750 .cs-picture-group {
	width: 90%;
	height: 100%;
	max-height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	z-index: -1;
	transform: none;
  }
  #contact-1750 .cs-picture-group {
	margin-left: -12.75rem;
	left: 50%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #contact-1750 .cs-label:nth-of-type(2),
  #contact-1750 .cs-label:nth-of-type(3) {
	grid-column: span 6;
  }
}
/* Largest Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  #contact-1750 {
	padding-top: 7vw;
	padding-bottom: 9vw;
  }
  #contact-1750 .cs-container {
	margin: 0 auto;
	transform: translateX(-22rem);
  }
}
								