#top .staxx-program-teachers {
	display: flex;
	gap: 6%
}
#top .staxx-program-teacher {
	display: flex;
	flex: 0 0 auto;
	gap: 25px;
	width: calc(50% - 3%);
}

#top .staxx-program-teacher-thumbnail {
	flex: 0 0 auto;
	border-radius: 50%;
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
#top .staxx-program-teacher-thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  /* grow until both axes are filled, keep aspect ratio */
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
	contain-intrinsic-size: none;
}

#top #wrap_all .all_colors h3.staxx-program-teacher-title {
	font-size: 16px;
	font-weight: 700;
}
#top .staxx-program-teacher-title a {
	color: var(--enfold-main-color-primary);
	text-decoration: underline;
}
#top .staxx-program-teacher-title a:hover {
	color: #661728;
}

@media (max-width: 767px) {
	#top .staxx-program-teachers,
	#top .staxx-program-teacher {
		flex-direction: column;
		gap: unset;
	}
	#top .staxx-program-teacher {
		width: 100%;
	}
	#top .staxx-program-teacher + .staxx-program-teacher {
		margin-top: 16px;
	}
	#top .staxx-program-teacher-thumbnail {
		margin-right: auto;
		margin-left: auto;
		width: 130px;
		height: 130px;
	}
}