#mission {
	/*background-image: linear-gradient(180deg, var(--saphire), var(--steelBlue), var(--blueGray), var(--beauBlue));*/
	background-image: linear-gradient(150deg, #035a9b, #2a6ea8, #4682b4, #528dbc, #5e99c5, #6ca5d5, #7ab1e6);
	border-radius: 1rem;
}

#why-us {
	background-image: linear-gradient(360deg, #b0b0b0, #b8b8b8, #c1c1c1, #c9c9c9, #d1d1d1, #dadada, #e2e2e2, #ebebeb);
	border-radius: 1rem;
}

#process {
	/*background: linear-gradient(180deg, var(--blueGray), var(--beauBlue), var(--brightGray));*/
	background: linear-gradient(180deg, #5e99c5, #6bb4d1, #83cfda, #a4e8e2, #bef3e8, #cef0e9, #ddeeea, #ebebeb);
	border: solid 1px black;
}

#team {
	border: solid 1px black;
}

#horsepower {
	border: solid 1px black;
}

#core-values {
	border: solid 1px black;
}

section {
	margin: 1rem 0;
	padding: 1rem;
}

.stepper {
	display: flex;
	max-width: 600px;
	/*height: 100px;*/
	justify-content: space-between;
	/*margin: 0 auto 70px;*/
}

.circle {
	width: 75px;
	height: 75px;
	background-color: green;
	border-radius: 50%;
}

.box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 12px;
	background-color: var(--saphire);
	color: var(--white);
	font-weight: 600;
}

.anim-3ts {
	display: flex;
	align-items: center;
	justify-content: space-around;
	min-height: 200px;
	margin: 0;
	overflow: hidden;
}

.team-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-bottom: 1rem;
	gap: 1rem;
}

.team-member {
	display: inline-block;
	position: relative;
	height: 100%;
	border: 1px solid black;
	padding: 0 0 1rem 0;
}

.team-member:hover {
	cursor: pointer;
}

.team-info {
	display: flex;
	width: 100%;
	height: auto;
}

.team-bio {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/*transform: translate(-50%, -50%);*/
	text-align: center;
	background-color: rgb(var(--matte-rgb));
	opacity: 85%;
	color: var(--white);
	font-size: 1rem;
	padding: 1.5rem;
}

.team-bio-vis {
	display: flex;
	flex-direction: column;
}

.team-bio p {
	padding: .5rem;
}

.team-content {
	display: flex;
	gap: 2rem;
}

.team-content p {
	margin-bottom: 1rem;
}

.team-content a {
	text-decoration: none;
	color: var(--saphire);
}

.team-content img {
	width: 500px;
	height: 600px;
	/*border-radius: 50%; */
}

.team-name {
	font-size: 1.5rem;
	text-align: center;
}

.team-position {
	font-size: 1.25rem;
	text-align: center;
}

.d4-frmakework {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 2rem 0;
}

.three-truths {
	display: grid;
	grid-template-columns: 1fr;
	padding: 2rem 0;
}

.elip {
	display: inline-block;
	font-size: 1.5rem;
	color: #0D1181;
	line-height: 1;
	vertical-align: middle;
}

.container-split {
	padding: 0 0 2rem 0;
}

.img-about {
	display: flex;
	align-items: center;
	padding: 0 0 0 1rem;
}

.value-container {
	display: flex;
	flex-direction: column;
}

.values {
	/*background-image: linear-gradient(135deg, var(--steelBlue), var(--blueGray), var(--brightGray));*/
	margin: 1rem 0;
	background-color: var(--brightGray);
	border-radius: 1rem 1rem 0 0;
	padding: 2rem 0;
	color: var(--modernBlack);
}

.values h3 {
	background-color: var(--whiteSmoke);
	color: var(--saphire);
	margin: 2rem 0;
	text-align: center;
}

.values p {
	padding: 1rem;
	color: var(--modernBlack);
}

.easter-egg img {
	transform: translate(0%, 0%);
}

@media(max-width: 1290px) {
	.team-content {
		flex-direction: column;
		gap: 1rem;
	}
}

@media screen and (max-width: 850px) {
	.team-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 576px) {

	section {
		padding: .25rem;
	}

	.team-container {
		grid-template-columns: 1fr;
	}

	.team-content img {
		width: 250px;
		height: 300px;
		border-radius: 50%;
	}

	.four-ds {
		grid-template-columns: 1fr;
	}

	.team-info {
		overflow-y: auto;
		overflow-x: hidden;
		transition: max-height 0.4s ease-out;
		scrollbar-width: thin;
	}

	.team-bio {
		text-align: left;
		padding: .5rem
	}
}