/*-- -------------------------- -->
<---          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) {
	#sbs-578 {
		/* remove the font family so the Stitch inherits the fonts from your global stylesheet */
		font-family: "Roboto", "Arial", sans-serif;
	}
	#sbs-578 .cs-container {
		width: 100%;
		max-width: 80rem;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		/* 48px - 64px */
		gap: clamp(3rem, 7vw, 4rem);
	}
	#sbs-578 .cs-content {
		/* set text align 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;
	}
	#sbs-578 .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;
	}
	#sbs-578 .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;
	}
	#sbs-578 .cs-text {
		font-size: var(--bodyFontSize);
		line-height: 1.5em;
		text-align: inherit;
		width: 100%;
		max-width: 40.625rem;
		margin: 0;
		color: var(--bodyTextColor);
	}
	#sbs-578 .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;
	}
	#sbs-578 .cs-text:last-of-type {
		margin-bottom: 2rem;
	}
	#sbs-578 .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;
	}
	#sbs-578 .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;
	}
	#sbs-578 .cs-button-solid:hover:before {
		width: 100%;
	}
	#sbs-578 .cs-picture {
		display: block;
		position: relative;
		width: 100%;
		height: 18.75rem;
	}
	#sbs-578 .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) {
	#sbs-578 {
		padding: var(--sectionPadding);
	}
	#sbs-578 .cs-container {
		flex-direction: row;
		justify-content: flex-start;
		/* 60px - 128px */
		gap: clamp(3.75rem, 10vw, 8rem);
	}
	#sbs-578 .cs-content {
		width: 53%;
		/* reset the padding, add the section padding back to the section container */
		padding: 0;
	}
	#sbs-578 .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;
	}
	#sbs-578 .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);
	}
}

/*-- -------------------------- -->
<---         Why Choose         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#why-choose-441 {
		/* remove the font family so the Stitch inherits the fonts from your global stylesheet */
		font-family: "Roboto", "Arial", sans-serif;
		padding: var(--sectionPadding);
		background-color: #fafbfc;
	}
	#why-choose-441 .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); */
	}
	#why-choose-441 .cs-content {
		/* set text align to left if content needs to be left aligned */
		text-align: center;
		width: 100%;
		display: flex;
		flex-direction: column;
		/* centers content horizontally, set to flex-start to left align */
		align-items: center;
	}
	#why-choose-441 .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;
	}
	#why-choose-441 .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;
	}
	#why-choose-441 .cs-text {
		font-size: var(--bodyFontSize);
		line-height: 1.5em;
		text-align: center;
		width: 100%;
		max-width: 40.625rem;
		margin: 0;
		color: var(--bodyTextColor);
		margin-bottom: clamp(3rem, 6vw, 4rem);
	}
	#why-choose-441 .cs-card-group {
		width: 100%;
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		/* 12px - 20px */
		gap: clamp(0.75rem, 1.5vw, 1.25rem);
	}
	#why-choose-441 .cs-item {
		list-style: none;
		width: 100%;
		/* changes on tablet */
		max-width: 28.875rem;
		/* 24px - 40px top & bottom */
		/* 24px - 40px left & right */
		padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
		/* prevents padding from affecting height and width */
		box-sizing: border-box;
		border-radius: 1rem;
		background-color: #fff;
		border: 1px solid #dad9e3;
		box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
		position: relative;
		transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s,
			border 0.3s;
	}
	#why-choose-441 .cs-item:before {
		/* green border on hover */
		content: "";
		width: 100%;
		height: 100%;
		background: transparent;
		border: 4px solid var(--primary);
		border-radius: 0.75rem;
		/* prevents border from affecting height and width */
		box-sizing: border-box;
		/* prevents the mouse from interacting with it */
		pointer-events: none;
		opacity: 0;
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		transition: opacity 0.3s;
	}
	#why-choose-441 .cs-item:hover {
		background-color: #fff;
		transform: translateY(-0.4375rem);
		border-color: var(--primary);
	}
	#why-choose-441 .cs-item:hover:before {
		opacity: 1;
	}
	#why-choose-441 .cs-link {
		text-decoration: none;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	#why-choose-441 .cs-picture {
		/* 40px - 72px */
		width: clamp(2.5rem, 6.5vw, 4.5rem);
		/* 40px - 72px */
		height: clamp(2.5rem, 6.5vw, 4.5rem);
		margin: 0;
		margin-bottom: 1.5rem;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
		background-color: var(--primary);
		position: relative;
		z-index: 1;
	}
	#why-choose-441 .cs-icon {
		/* 24px - 32px */
		height: clamp(1.5rem, 2vw, 2rem);
		width: auto;
	}
	#why-choose-441 .cs-number {
		font-size: var(--headerFontSize);
		font-weight: 400;
		text-align: center;
		line-height: 1.2em;
		margin: 0;
		margin-bottom: 0.25rem;
		color: var(--headerColor);
		transition: color 0.3s;
	}
	#why-choose-441 .cs-desc {
		/* 14px - 20px */
		font-size: clamp(0.875rem, 1.5vw, 1.25rem);
		text-align: center;
		line-height: 1.5em;
		margin: 0;
		color: var(--bodyTextColor);
		transition: color 0.3s;
	}
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
	#why-choose-441 .cs-container {
		max-width: 80rem;
	}
	#why-choose-441 .cs-card-group {
		flex-direction: row;
		justify-content: center;
		flex-wrap: nowrap;
	}
	#why-choose-441 .cs-item {
		width: 100%;
	}
}
