/* Board of directors / Teacher card style */
.board_section {
	background: #eaf6fb;
	padding: 60px 0;
}

.board_section .section-title h2 {
	display: inline-block;
	background: #d81b60;
	color: #fff;
	padding: 10px 30px;
	border-radius: 4px;
	font-size: 20px;
	margin-bottom: 40px;
}

.board_card {
	text-align: center;
	margin-bottom: 30px;
}

.board_card .board_photo {
	width: 160px;
	height: 190px;
	margin: 0 auto 18px;
	padding: 4px;
	background: #fff;
	border: 2px solid #17a2c9;
	border-radius: 4px;
	overflow: hidden;
}

.board_card .board_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2px;
}

.board_card .board_designation {
	font-weight: 600;
	color: #222;
	font-size: 15px;
	margin-bottom: 4px;
}

.board_card .board_name {
	font-weight: 700;
	color: #d81b60;
	font-size: 16px;
	margin-bottom: 4px;
}

.board_card .board_phone {
	color: #444;
	font-size: 13px;
}

/* Talent pool / student card */
.talent_section {
	padding: 72px 0;
	background: #fff;
}

.student-result-heading {
	margin-bottom: 46px;
}

.student-result-heading h2 {
	display: inline-block;
	margin: 0 auto 16px;
	padding: 10px 30px 14px;
	background: #990099;
	border-radius: 0 0 14px 14px;
	color: #fff;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.35;
}

.student-result-heading p {
	margin: 0;
	color: #d21c16;
	font-size: 27px;
	font-weight: 700;
	line-height: 1.35;
}

.student-result-card {
	margin-bottom: 30px;
	padding: 10px 10px 18px;
	background: #fff;
	border: 3px solid #17a2c9;
	box-shadow: 0 8px 20px rgba(11, 16, 74, 0.08);
	text-align: center;
}

.student-result-photo {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background: #111b5c;
}

.student-result-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.student-result-name {
	margin-top: 12px;
	color: #111b5c;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.student-result-title {
	margin-top: 4px;
	color: #d21c16;
	font-size: 17px;
	font-weight: 600;
}

.student-result-roll {
	margin-top: 4px;
	color: #222;
	font-size: 16px;
}

@media only screen and (max-width: 767px) {
	.student-result-heading h2 {
		font-size: 25px;
	}
	.student-result-heading p {
		font-size: 21px;
	}
	.student-result-photo {
		height: 360px;
	}
}

@media only screen and (max-width: 480px) {
	.student-result-heading h2 {
		padding: 9px 16px 12px;
		font-size: 20px;
	}
	.student-result-heading p {
		font-size: 18px;
	}
	.student-result-photo {
		height: 390px;
	}
	.student-result-name {
		font-size: 21px;
}
