body {
	display: flex;
	flex-direction: column;
	margin: 0px;
	padding: 0px;
}

.primary-button:hover {
	color: #fff;
}

/* Hero styles */

.hero {
	padding-top: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-image: url("../jpg/herogradientxl.jpg");
	background-position: center bottom;
	background-repeat: no-repeat;
}

.hero-body {
	display: flex;
	flex-direction: column;
	gap: 48px;
	margin: 16px;
	align-items: center;
	padding-top: 32px;
	padding-bottom: 32px;
}

.hero-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 1440px;
}

.hero-title {
	color: var(--Primary-White, #FFF);
	text-align: center;
}

@media screen and (max-width: 768px) {
	.hero-title {
		font-size: 64px;
		line-height: 64px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
	.hero-image {
		width: 70%;
	}
}

.hero-copy-container {
	@media only screen and (min-width: 1024px) {
		width: 80%;
	}
}

.hero-body-text {
	color: var(--Primary-White, #FFF);
	text-align: center;
	font-size: 22px;
	line-height: 24px;
}

/* At this screen size, it switches to the mobile image */
@media only screen and (max-width: 1023px) {
	.hero {
		height: auto;
	}
}

/* Pinning scrolling section styles */

.gallery {
	display: flex;
	margin-top: -180px;
}

.content-side {
	width: 50%;
}

.image-side {
	height: 100vh;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.content-section-container-desktop {
	display: flex;
	align-items: center;
	height: 752px;
}

.content-section-desktop {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.content-section-text {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-right: 64px;
}

.headline {
	text-align: left;
}

.pinned-images {
	height: 575px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.pinned-image {
	position: absolute;
	width: 95%;
	align-self: center;
}

.pinned-play-pause-button {
	width: 33px;
	cursor: pointer;
	align-self: flex-end;
}

.image-side-contents {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.content-section-container-mobile {
	display: none;
}

@media screen and (max-width: 1199px) {
	.pinned-images {
		height: 525px;
	}
}

@media screen and (max-width: 768px) {
	.content-side {
		display: none;
	}

	.gallery {
		margin-top: 10px;
	}

	.image-side {
		height: auto;
		width: 100%;
		align-items: center;
	}

	.image-side-contents {
		display: none;
	}

	.pinned-image {
		display: none;
	}

	.content-section-container-mobile {
		display: flex;
		flex-direction: column;
		gap: 24px;
		padding: 24px 0px;
	}

	.pinned-button {
		margin-top: 16px;
	}

	.mobile-image {
		width: 100%;
	}
}

/* Vision mission styles */

.vision-mission-section {
	width: 80%;

	display: flex;
	flex-direction: column;
	gap: 16px;
}

.vision-mission-head {
	display: flex;
	padding: var(--40px, 40px);
	align-items: center;
	gap: var(--16px, 16px);
	align-self: stretch;
	border-radius: var(--32px, 32px) var(--32px, 32px) 0px 0px;
	background: var(--Gray-gray-1, #F5F5F5);
}

.vision-mission-body {
	display: flex;
	padding: var(--40px, 40px);
	justify-content: center;
	align-items: center;
	align-self: stretch;
	border-radius: 0px 0px var(--32px, 32px) var(--32px, 32px);
	background: var(--Primary-Dark-Blue, #002157);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.vision-mission-waves {
	width: 85%;
	position: absolute;
	transform: translateX(10%);
	right: 0px;
	bottom: 54px;
}

.vision-mission-body-title {
	color: var(--Primary-White, #FFF);
	text-align: right;
	font-family: "Open Sans";
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.4px;
	flex: 1 0 0;
	white-space: nowrap;
}

.vision-mission-head-side {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 1 0 0;
}

.vision-mission-head-title {
	color: var(--Primary---Empower-dark-blue-fill, #002157);
	text-align: center;
	font-family: "Open Sans";
	font-size: 56px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.56px;
}

.vision-mission-head-body {
	color: var(--Primary---Empower-dark-blue-fill, #002157);
	text-align: center;
	font-family: "Open Sans";
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -0.12px;
}

.vision-mission-body-titles {
	display: flex;
	gap: 135px;
	padding-bottom: 24px;
}

.vision-mission-body-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	align-self: stretch;
	color: var(--Primary-White, #FFF);
	text-align: right;
	font-family: "Open Sans";
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -0.12px;
}

.value-side {
	text-align: left;
}

.vision-mission-body-row-side {
	flex: 1 0 0;
}

@media screen and (max-width: 1024px) {
	.vision-mission-section {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.vision-mission-section {
		gap: 8px;
		align-self: auto !important;
	}

	.vision-mission-head {
		flex-direction: column;
		padding: 24px;
	}

	.vision-mission-body-titles {
		gap: 80px;
		width: 100%;
	}

	.vision-mission-body-title {
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: 120%;
		letter-spacing: -0.12px;
		white-space: inherit;
		width: 100%;
	}

	.vision-mission-body-row {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
		gap: 12px;
	}

	.vision-mission-waves {
		width: 824px;
		height: auto;
		transform: translateX(0%);
		position: absolute;
		right: 0.5px;
		bottom: 48px;
	}
}

/* Testimonial section */

.testimonial-section {
	display: flex;
	gap: 64px;
	padding: 16px 32px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.testimonial-photo {
	/* min-width: 0;
	max-width: 548px;
	width: 100%; */
  width: 50%;
	height: auto;
	flex: 1 0 0;
}

.testimonial-row {
	display: flex;
	flex-direction: column;
	/* gap: 32px;
	width: 620px; */
  width: 50%;
}

.testimonial-text {
	color: var(--Primary-Dark-Blue, #002157);
	font-family: "Open Sans";
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.256px;
}

.testimonial-text-mobile {
	display: none;
}

.testimonial-attributions {
  padding-top: 32px;
}

.testimonial-attribution-name {
	color: var(--Primary-Dark-Blue, #002157);
	font-family: "Open Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.testimonial-attribution-title {
	color: var(--Primary-Dark-Blue, #002157);
	font-family: "Open Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.07px;
}

.quote-container {
	display: flex;
}

.quote {
	width: 80px;
}

.start-quote-container {
	align-items: flex-start;
}

.end-quote-container {
	align-items: flex-end;
}

@media screen and (max-width: 899px) {
	.testimonial-section {
		flex-direction: column;
		gap: 24px;
	}

	.testimonial-photo {
		width: 320px;
	}

	.testimonial-row {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.testimonial-section {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}

/* History styles */

.history-section {
	position: relative;
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
}

.history-section::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: url('../jpg/ourhistorybanner.jpg') lightgray 0px -355.6px / 100% 241.678% no-repeat;
	background-size: cover;
	opacity: .6;
	content: "";
	z-index: -1;
}

.history-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.history-header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.history-body {
	color: var(--Primary---Empower-dark-blue-fill, #002157);
	font-family: "Open Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.128px;
	max-width: 682px;
}

@media screen and (max-width: 1199px) {
	.history-section::before {
		background: url('../jpg/ourhistorybanner.jpg') lightgray 0px -245.6px / 100% 241.678% no-repeat;
		background-size: cover;
	}
}

@media screen and (max-width: 1023px) {
	.history-section::before {
		background: url('../jpg/ourhistorybanner.jpg') lightgray 0px -260.491px / 100% 211.424% no-repeat;
		background-size: cover;
	}

	.history-title {
		font-size: 40px;
		font-style: normal;
		font-weight: 400;
	}
}


@media screen and (max-width: 899px) {
	.history-section::before {
		background: url('../jpg/ourhistorybanner.jpg') lightgray 0px -160.491px / 100% 211.424% no-repeat;
		background-size: cover;
	}
}

@media screen and (max-width: 768px) {
	.history-section::before {
		background: url('../jpg/ourhistorybanner.jpg');
		background-size: cover;
	}

	.history-title {
		font-size: 36px;
	}
}

/* Growth map section */

.growth-map-section {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 48px;
}

.growth-map-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-self: stretch;
}

.growth-numbers-container {
	display: flex;
	align-self: center;
}

.growth-numbers-column {
	display: flex;
	max-width: 220px;
	flex-direction: column;
	align-items: center;
	flex: 1 0 0;
}

.growth-number {
	color: var(--Primary-Royal, #002157);
	text-align: center;
	font-family: "Open Sans";
	font-size: 60px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

.growth-explanation {
	color: var(--Primary-Black, #000);
	text-align: center;
	font-family: "Open Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.workforce-container {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.workforce-supertext {
	color: var(--Primary-Royal, #002157);
	text-align: center;
	font-family: "Open Sans";
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 110%;
}

.workforce-text {
	text-align: center;
}

.workforce-plus {
	color: var(--Primary-Royal, var(--Primary-Black, #002157));
	text-align: center;
	font-family: "Open Sans";
	font-size: 80px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}

.workforce-number {
	color: var(--Primary-Royal, var(--Primary-Black, #002157));
	font-family: "Open Sans";
	font-size: 80px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

.workforce-subtext {
	color: var(--Primary-Black, #000);
	text-align: center;
	font-family: "Open Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.map-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: var(--80px, 80px);
	align-self: stretch;
}

.map {
	width: 875px;
	flex-shrink: 0;
}

.map-legend {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.map-legend-title {
	color: var(--Text, #1A1D1E);
	font-family: "Open Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 22px;
}

.map-legend-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.map-legend-contents {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.map-legend-row {
	display: flex;
	gap: 12px;
	align-items: center;
}

.map-legend-dot {
	width: 16px;
	height: 16px;
	border-radius: 999px;
}

.map-legend-marker {
	align-self: flex-start;
}

.pale-blue {
	background-color: #E6F3F7;
}

.light-blue {
	background-color: #CDE6F0;
}

.medium-blue {
	background-color: #89C4DC;
}

.dark-blue {
	background-color: #3A9DC5;
}

.map-legend-label {
	color: var(--Text, #1A1D1E);
	font-family: "Open Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.map-legend-label-subtext {
	color: var(--Gray-gray-5, #757575);
	font-family: "Open Sans";
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.07px;
}

@media screen and (max-width: 1199px) {
	.workforce-number {
		font-size: 72px;
	}

	.map-container {
		flex-direction: column;
	}

	.map {
		width: 705px;
		height: auto;
		align-self: center;
	}

	.map-legend {
		flex-direction: row;
		gap: 40px;
	}

	.map-legend-row {
		width: 240px;
	}
}

@media screen and (max-width: 768px) {
	.growth-map-section {
		gap: 24px;
	}

	.workforce-container {
		display: none;
	}

	.growth-map-section {
		text-align: center;
	}

	.growth-numbers-container {
		flex-direction: column;
	}

	.growth-number {
		font-size: 56px;
	}

	.growth-numbers-chevron {
		width: 69px;
		transform: rotate(90deg);
		align-self: center;
	}
}

/* Bottom cta section */

.bottom-cta-section {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 104px;
	gap: 16px;
}

.bottom-cta-section::before {
	content: '';
	position: absolute;
	width: 3563px;
	height: 1398px;
	background-color: var(--Primary-Medium-Blue, #004185);
	border-radius: 50%;
	top: 33%;
	left: 50%;
	transform: translateX(-50%);
}

.bottom-cta-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	gap: 16px;
}

.background-oval {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	z-index: -1;
}

.bottom-cta-waves {
	width: 100%;
	position: absolute;
	transform: translateY(50%);
}

.bottom-cta-image {
	width: 542px;
	position: relative;
	justify-self: center;
}

.bottom-cta-text-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bottom-cta-headline {
	color: var(--Primary---White, #FFF);
	text-align: center;
	font-family: "Open Sans";
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -0.16px;
}

.bottom-cta-text {
	color: var(--Primary---White, #FFF);
	text-align: center;
	font-family: "Open Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.bottom-cta-buttons {
	padding: 24px 0px;
	display: flex;
	gap: 16px;
	justify-content: center;
}

.bottom-cta-button {
	width: 256px !important;
	padding: 0px !important;
}

@media screen and (max-width: 1023px) {
	.bottom-cta-section {
		padding: 40px 32px;
	}

	.bottom-cta-image {
		width: 540px;
	}
}

@media screen and (max-width: 768px) {
	.bottom-cta-section {
		padding: 24px;
	}

	.bottom-cta-image {
		width: 300px;
	}


	.bottom-cta-section::before {
		top: 22%;
	}

	.bottom-cta-buttons {
		flex-direction: column;
		align-self: center;
	}
}

/* Disclosures styles */
.disclosures-section {
	/* intentionally left blank */
}

.disclosures-section p {
	font-size: 14px;
}

/* Shared styles */

.section {
	padding: 32px 64px;
	max-width: 1440px;
	align-self: center;
	margin: auto;
}

@media screen and (max-width: 1023px) {
	.section {
		padding: 32px;
	}
}

@media screen and (max-width: 768px) {
	.section {
		padding: 24px;
	}
}
