:root {
	--p-pos: 3rem;
	--p-2pos: 6rem;
	--p-neg: 3rem;
	--minwidth-1: 20rem;
	--maxwidth-1: 30rem;
}

.abt-banner {
	padding-top: var(--p-2pos);
	padding-bottom: var(--p-2pos);
	padding-right: 5%;
	padding-left: 5%;
}

figcaption {
	font-family: var(--font-4);
	font-size: 1.5rem;
	margin-bottom: 0;
	text-align: left;
	padding-top: 0.3rem;
}

.abt-row {
	max-width: 80rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-left: var(--p-neg-1);
	margin-right: var(--p-neg-1);
	flex-wrap: wrap;
}

.abt-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: var(--p-pos);
	padding-right: var(--p-pos);
	flex: 0 0 50%;
	min-width: var(--minwidth-1);
}

.abt-col-txt {
	align-items: flex-start;
}

@media only screen and (max-width: 768px) {
	.abt-col {
		flex: unset;
		padding-left: 15px;
		padding-right: 15px;
	}

	.abt-col-txt {
		padding-top: var(--p-pos);
		order: 1;
	}
}

.align-l {
	text-align: left;
}

.align-r {
	text-align: right;
}

.sub-text-1,
.subtext-2 {
	font-weight: 400;
	margin-bottom: 0.2rem;
}

.sub-text-1 {
	font-size: 0.85rem;
}

.sub-text-2 {
	font-size: 0.7rem;
}

/* Flipping cards */
.flip-card {
	background-color: transparent;
	width: 11rem;
	height: 11rem;
	margin: 1.5rem 1.5rem 0.75rem 1.5rem;
	perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

#team h3 {
	font-family: var(--font-1);
}

/* This container is needed to position the front and back side */
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
	overflow: hidden;
	border-radius: 50%;
}

/* Style the back side */
.flip-card-back {
	transform: rotateY(180deg);
	border-radius: 50%;
	overflow: hidden;
	border-radius: 50%;
}
