/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#banner-712 {
		font-family: "Roboto", "Arial", sans-serif;
		/* 175px - 200px top */
		padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
		position: relative;
		z-index: 1;
	}
	#banner-712 .cs-container {
		text-align: center;
		width: 100%;
		max-width: 80rem;
		margin: auto;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
		gap: 1rem;
	}
	#banner-712 .cs-int-title {
		/* 39px - 61px */
		font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
		font-weight: 900;
		line-height: 1.2em;
		text-align: inherit;
		margin: 0;
		color: var(--bodyTextColorWhite);
		position: relative;
	}
	#banner-712 .cs-background {
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	#banner-712 .cs-background:before {
		/* background color overlay */
		content: "";
		position: absolute;
		display: block;
		height: 100%;
		width: 100%;
		background: #000;
		opacity: 0.75;
		top: 0;
		left: 0;
		z-index: 1;
	}
	#banner-712 .cs-background img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		/* Makes img tag act as a background image */
		object-fit: cover;
	}
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
	#banner-712 .cs-background:before {
		opacity: 1;
		background: linear-gradient(
			90.01deg,
			rgba(0, 0, 0, 0.9) 16.86%,
			rgba(0, 0, 0, 0) 100%
		);
	}
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#RTsbs-581,
	#RTsbsr-581,
	#RTsbst-581 {
		/* remove the font family so the Stitch inherits the fonts from your global stylesheet */
		font-family: "Roboto", "Arial", sans-serif;
	}
	#RTsbs-581 .cs-container,
	#RTsbsr-581 .cs-container,
	#RTsbst-581 .cs-container {
		width: 100%;
		max-width: 80rem;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		/* 48px - 64px */
		gap: clamp(3rem, 7vw, 4rem);
	}
	#RTsbs-581 .cs-content,
	#RTsbsr-581 .cs-content,
	#RTsbst-581 .cs-content {
		/* set text aling to left if content needs to be left aligned */
		text-align: left;
		width: 100%;
		max-width: 32.625rem;
		/* moved section padding to the .cs-content so we can have the cs-picture be full width on mobile without the padding preventing it from doing so */
		padding: var(--sectionPadding);
		padding-top: 0;
		/* prevents padding from affecting width and height */
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		/* centers content horizontally, set to flex-start to left align */
		align-items: flex-start;
	}
	#RTsbs-581 .cs-topper,
	#RTsbsr-581 .cs-topper,
	#RTsbst-581 .cs-topper {
		font-size: var(--topperFontSize);
		line-height: 1.2em;
		text-transform: uppercase;
		text-align: inherit;
		letter-spacing: 0.1em;
		font-weight: 700;
		color: var(--primary);
		margin-bottom: 0.25rem;
		display: block;
	}
	#RTsbs-581 .cs-title,
	#RTsbsr-581 .cs-title,
	#RTsbst-581 .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;
	}
	#RTsbs-581 .cs-text,
	#RTsbsr-581 .cs-text,
	#RTsbst-581 .cs-text {
		font-size: var(--bodyFontSize);
		line-height: 1.5em;
		text-align: inherit;
		width: 100%;
		max-width: 40.625rem;
		margin: 0;
		color: var(--bodyTextColor);
	}
	#RTsbs-581 .cs-text,
	#RTsbsr-581 .cs-text,
	#RTsbst-581 .cs-text {
		/* Override.  cs-topper cs-title and first cs-text should be removed and put into your global css sheet so it can control every instance of them on your site and is consistent. This selector is a section specific override that stays inside this stitch */
		margin-bottom: 1rem;
	}
	#RTsbs-581 .cs-text:last-of-type,
	#RTsbsr-581 .cs-text:last-of-type,
	#RTsbst-581 .cs-text:last-of-type {
		margin-bottom: 2rem;
	}
	#RTsbs-581 .cs-button-solid,
	#RTsbsr-581 .cs-button-solid,
	#RTsbst-581 .cs-button-solid {
		font-size: 1rem;
		/* 46px - 56px */
		line-height: clamp(2.875rem, 5.5vw, 3.5rem);
		text-decoration: none;
		font-weight: 700;
		text-align: center;
		margin: 0;
		color: #fff;
		min-width: 9.375rem;
		padding: 0 1.5rem;
		background-color: var(--primary);
		border-radius: 0.25rem;
		display: inline-block;
		position: relative;
		z-index: 1;
		/* prevents padding from adding to the width */
		box-sizing: border-box;
	}
	#RTsbs-581 .cs-button-solid:before,
	#RTsbsr-581 .cs-button-solid:before,
	#RTsbst-581 .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;
	}
	#RTsbs-581 .cs-button-solid:hover:before,
	#RTsbsr-581 .cs-button-solid:hover:before,
	#RTsbst-581 .cs-button-solid:hover:before {
		width: 100%;
	}
	#RTsbs-581 .cs-picture,
	#RTsbsr-581 .cs-picture,
	#RTsbst-581 .cs-picture {
		display: block;
		position: relative;
		width: 100%;
		height: 18.75rem;
	}
	#RTsbs-581 .cs-picture img,
	#RTsbsr-581 .cs-picture img,
	#RTsbst-581 .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) {
	#RTsbs-581,
	#RTsbsr-581,
	#RTsbst-581 {
		padding: var(--sectionPadding);
	}
	#RTsbs-581 .cs-container,
	#RTsbsr-581 .cs-container,
	#RTsbst-581 .cs-container {
		flex-direction: row;
		justify-content: flex-start;
		/* 60px - 128px */
		gap: clamp(3.75rem, 10vw, 8rem);
	}
	#RTsbs-581 .cs-content,
	#RTsbsr-581 .cs-content,
	#RTsbst-581 .cs-content {
		width: 53%;
		/* reset the padding, add the section padding back to the section container */
		padding: 0;
	}
	#RTsbs-581 .cs-picture,
	#RTsbsr-581 .cs-picture,
	#RTsbst-581 .cs-picture {
		width: 47vw;
		max-width: 30.875rem;
		/* 518px - 700px */
		height: clamp(32.375rem, 63vw, 43.75rem);
		/* 16px - 28px, added margin left and bottom to cs-picture so it pushes away by the same amount the yellow box element overlaps it left and bottom. This maintains consistent spacing left and bottom */
		margin: 0 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1rem, 2.4vw, 1.75rem);
		position: relative;
	}
	#RTsbs-581 .cs-picture:before,
	#RTsbsr-581 .cs-picture:before,
	#RTsbst-581 .cs-picture:before {
		/* yellow box */
		content: "";
		width: 50%;
		height: 60%;
		background: var(--secondary);
		opacity: 1;
		display: block;
		position: absolute;
		/* 16px - 28px, wrapped in calc function to multiple by negative 1 and get a negative clamp value */
		bottom: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
		left: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
	}
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#RTsbsr-581 {
		background-color: #f7f7f7;
	}
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
	#RTsbsr-581 .cs-container {
		justify-content: flex-end;
	}
	#RTsbsr-581 .cs-content {
		/* sends it to the left in the first position */
		order: -1;
	}
	#RTsbsr-581 .cs-picture {
		/* 16px - 28px, added margin left and bottom to cs-picture so it pushes away by the same amount the yellow box element overlaps it left and bottom. This maintains consistent spacing left and bottom */
		margin: 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1rem, 2.4vw, 1.75rem) 0;
	}
	#RTsbsr-581 .cs-picture:before {
		/* yellow box */
		content: "";
		width: 50%;
		height: 60%;
		background: var(--secondary);
		opacity: 1;
		display: block;
		position: absolute;
		left: auto;
		/* 16px - 28px, wrapped in calc function to multiple by negative 1 and get a negative clamp value */
		bottom: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
		right: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
	}
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#reviews-981 {
		/* remove the font family so the Stitch inherits the fonts from your global stylesheet */
		font-family: "Roboto", "Arial", sans-serif;
		padding: var(--sectionPadding);
		position: relative;
		z-index: 1;
	}
	#reviews-981 .cs-container {
		width: 100%;
		/* changes to 1280px at tablet */
		max-width: 36.5rem;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		/* 48px - 64px */
		gap: clamp(3rem, 6vw, 4rem);
	}
	#reviews-981 .cs-content {
		/* set text align to left if content needs to be left aligned */
		text-align: center;
		width: 100%;
		max-width: 56.25rem;
		display: flex;
		flex-direction: column;
		/* centers content horizontally, set to flex-start to left align */
		align-items: center;
	}
	#reviews-981 .cs-topper {
		font-size: var(--topperFontSize);
		line-height: 1.2em;
		text-transform: uppercase;
		text-align: inherit;
		letter-spacing: 0.1em;
		font-weight: 700;
		color: var(--primary);
		margin-bottom: 0.25rem;
		display: block;
	}
	#reviews-981 .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;
	}
	#reviews-981 .cs-title {
		/* Override.  cs-topper cs-title and first cs-text should be removed and put into your global css sheet so it can control every instance of them on your site and is consistent. This selector is a section specific override that stays inside this stitch */
		/* 20 characters including spaces */
		max-width: 20ch;
		margin: 0;
	}
	#reviews-981 .cs-card-group {
		width: 100%;
		padding: 0;
		margin: 0;
		display: grid;
		grid-template-columns: repeat(12, 1fr);
	}
	#reviews-981 .cs-item {
		list-style: none;
		width: 100%;
		/* 16px - 32px */
		padding: clamp(1rem, 3.1vw, 2rem);
		/* prevents padding from adding to height and width */
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
		grid-column: span 12;
		position: relative;
	}
	#reviews-981 .cs-item:last-of-type:after {
		display: none;
	}
	#reviews-981 .cs-item:after {
		content: "";
		width: 100%;
		height: 1px;
		margin: 2rem 0 0 0;
		background: #e8e8e8;
		opacity: 1;
		position: relative;
		display: block;
	}
	#reviews-981 .cs-flex-group {
		width: 100%;
		margin: 0 0 1.75rem 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 0.75rem;
	}
	#reviews-981 .cs-profile {
		width: 3.125rem;
		height: 3.125rem;
		border: 2px solid #bababa;
		background-color: #bababa;
		border-radius: 50%;
		/* clips image corners to make circle */
		overflow: hidden;
		position: relative;
		display: block;
	}
	#reviews-981 .cs-profile img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		/* makes the image behave like a background image */
		object-fit: cover;
	}
	#reviews-981 .cs-name {
		/* 20px - 25px */
		font-size: clamp(1.25rem, 2vw, 1.5625rem);
		line-height: 1.5em;
		font-weight: 700;
		margin: 0;
		color: var(--headerColor);
		display: block;
	}
	#reviews-981 .cs-job {
		font-size: 0.875rem;
		line-height: 1.2em;
		font-weight: 400;
		margin: 0;
		color: var(--bodyTextColor);
		display: block;
	}
	#reviews-981 .cs-review {
		/* 14px - 16px */
		font-size: clamp(0.875rem, 1.5vw, 1rem);
		line-height: 1.5em;
		margin: 0;
		max-width: 27.75rem;
		color: var(--bodyTextColor);
	}
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
	#reviews-981 .cs-container {
		max-width: 80rem;
	}
	#reviews-981 .cs-card-group {
		gap: 2.5rem;
	}
	#reviews-981 .cs-item {
		grid-column: span 4;
		position: relative;
	}
	#reviews-981 .cs-item:after {
		width: 1px;
		height: 80%;
		margin: 0;
		position: absolute;
		right: -1.25rem;
		top: 50%;
		transform: translateY(-50%);
	}
}
