/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#cta-262 {
		padding: var(--sectionPadding);
	}

	#cta-262 .cs-container {
		width: 100%;
		max-width: 80rem;
		margin: auto;
		/* 32px - 88px top & bottom */
		/* 24px - 88px left & right */
		padding: clamp(2em, 6.3vw, 5.5em) clamp(1.5em, 5.7vw, 5.5em);
		border-radius: 1rem;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 2rem;
		position: relative;
		/* clips the corners for the border radius to show */
		overflow: hidden;
		z-index: 1;
		/* prevents padding from adding to height and width */
		box-sizing: border-box;
	}

	#cta-262 .cs-background {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		z-index: -1;
	}

	#cta-262 .cs-background:before {
		/* black overlay */
		content: "";
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0.7;
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		z-index: 1;
	}

	#cta-262 .cs-background img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	#cta-262 .cs-left-section {
		max-width: 27.125rem;
	}

	#cta-262 .cs-title {
		color: var(--bodyTextColorWhite);
		margin-bottom: clamp(1.25rem, 4.2vw, 3rem);
	}

	#cta-262 .cs-button-solid {
		font-size: 1rem;
		/* 46px - 56px */
		line-height: clamp(2.875em, 5.5vw, 3.5em);
		text-decoration: none;
		font-weight: 700;
		text-align: center;
		margin: auto;
		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;
	}

	#cta-262 .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;
	}

	#cta-262 .cs-button-solid:hover:before {
		width: 100%;
	}

	#cta-262 .cs-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		/* 12px - 20px */
		gap: clamp(0.75rem, 1.6vw, 1.25rem);
	}

	#cta-262 .cs-header {
		/* 20px - 25px */
		font-size: clamp(1.25rem, 2.4vw, 1.5625rem);
		font-weight: bold;
		color: var(--primary);
		display: block;
	}

	#cta-262 .cs-p {
		/* 14px - 20px */
		font-size: clamp(0.875rem, 1.5vw, 1.25rem);
		line-height: 1.5em;
		margin: 0;
		color: var(--bodyTextColorWhite);
	}
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
	#cta-262 .cs-container {
		flex-direction: row;
		justify-content: space-between;
	}

	#cta-262 .cs-content {
		align-items: flex-end;
		text-align: right;
		/* prevents flexbox from squishing it */
		flex: none;
	}
}