* {
	margin: 0;
	padding: 0;
	border: 0;
	background-color: transparent;
	background: none;
}

img {
	display: block;
	width: 100%;
	height: 100%;
}

.wrapper-secondary {
	width: 85%;
	margin: 0 auto;
}
#spotlight {
	padding: 200px 0 200px;
	background-repeat: no-repeat;
	background-size: cover;
}

#spotlight .left {
	display: flex;
	flex-direction: column;
}

#spotlight .left h1 {
	color: #ffffff;
	font-weight: 600;
	font-size: 55px;
}

#spotlight .left p {
	color: #ffffff;
	letter-spacing: 0.5px;
	width: 31%;
}
#details {
	padding: 100px 0;
}
#details .body {
	display: flex;
	/* align-items: center; */
	/* justify-content: space-between; */
	gap: 150px;
	margin-bottom: 30px;
}
#details .body .left {
	width: 40%;
	height: 350px;
}
#details .body .left img.ground {
	width: 100%;
	height: 100%;
	display: block;
}
#details .body .right {
	width: 40%;
}
#details .body .right span.name {
	margin-bottom: 20px;
	display: block;
	color: #232323;
	opacity: 0.5;
}
#details .body .right h2.heading {
	color: #232323;
	margin-bottom: 30px;
}
#details .body .right h2.heading span.blue {
	color: #054289;
}
#details .body .right p.paragraph {
	line-height: 1.6em;
	font-size: 20px;
}
#objectives {
	padding: 80px 0;
}
#objectives h2.heading {
	color: #141414;
	margin-bottom: 50px;
	text-align: center;
}
#objectives .objective-cards {
	display: flex;
	flex-direction: column;
	margin: 0 140px;
}
#objectives .objective-cards .card {
	border: 1px solid #e1e1e1;
	margin-bottom: 30px;
	border-radius: 20px;
	padding: 24px 20px;
	display: flex;
	align-items: center;
	gap: 50px;
	min-height: 178px;
	/* height: 180px; */
}
#objectives .objective-cards .left {
}
#objectives .objective-cards .left h3.number {
	font-size: 60px;
	color: #032a58;
}
#objectives .objective-cards .right .paragraph {
	color: #828282;
	line-height: 24px;
}
/* student cell */
#student-cells {
	padding: 80px 0;
}
#student-cells div.top {
}
#student-cells div.top h2.heading {
	color: #141414;
	text-align: center;
}
#student-cells div.top p.paragraph {
	text-align: center;
	width: 58%;
	margin: 20px auto 30px;
}
#student-cells .club-cards {
	margin-top: 64px;
	width: 100%;
	column-gap: 25px;
	row-gap: 50px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

#student-cells .club-cards .card {
	background: #ffffff;
	border: 1px solid #e1e1e1;
	border-radius: 24px;
	padding: 20px;
	overflow: hidden;
}

#student-cells .club-cards .card:hover {
	box-shadow: 7px 11px 30px rgba(0, 0, 0, 0.06);
	border: 1px solid transparent;
}

#student-cells .club-cards .card:hover .img-container img {
	transform: scale(1.1);
}

#student-cells .club-cards .card .img-container {
	/* width: 320px; */
	height: 200px;
	overflow: hidden;
	border-radius: 12px;
}

#student-cells .club-cards .card .img-container img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 12px;
	object-fit: cover;
	transition: transform 0.2s;
}

#student-cells .club-cards .card .details {
	margin-top: 28px;
}

#student-cells .club-cards .card .details h3 {
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: #232323;
	margin-bottom: 8px;
}

#student-cells .club-cards .card .details p {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.5px;
	color: #828282;
}
@media all and (max-width: 1380px) {
	#spotlight .left p {
		width: 50%;
	}
}
@media all and (max-width: 1280px) {
	#details .body {
		gap: 61px;
		margin: unset;
	}
	#details .body .right p.paragraph {
		font-size: 18px;
	}
	#objectives .objective-cards {
		margin: 0 60px;
	}

	#student-cells .club-cards .card .details p {
		font-size: 15px;
	}
	#student-cells .club-cards .card .img-container {
		height: 205px;
	}
}
@media all and (max-width: 1080px) {
	#details .body {
		gap: 50px;
	}
	#details .body .right h2.heading {
		font-size: 24px;
		margin-bottom: 16px;
	}
	#details .body .right p.paragraph {
		font-size: 17px;
	}
	#details .body .left {
		height: 330px;
		width: 47%;
	}
	#details .body .right p.paragraph {
		font-size: 15px;
	}

	#objectives .objective-cards {
		margin: 0 50px;
	}
	#objectives .objective-cards .right p.paragraph {
		font-size: 14px;
	}
	#student-cells div.top p.paragraph {
		width: 75%;
	}

	#student-cells .club-cards {
		row-gap: 30px;
	}
	#student-cells .club-cards .card .details p {
		font-size: 14px;
	}
}
@media all and (max-width: 980px) {
	#details {
		padding: 80px 0;
	}
	#details .body {
		gap: 30px;
		flex-direction: column;
		align-items: center;
	}
	#details .body .left {
		height: 355px;
		width: 70%;
	}
	#details .body .right {
		width: 85%;
		text-align: center;
	}
	#objectives {
		padding: 50px 0;
	}
	#objectives .objective-cards .left h3.number {
		font-size: 50px;
	}
	#student-cells {
		padding: 60px 0;
	}
	#student-cells .club-cards {
		grid-template-columns: 1fr 1fr;
	}
}
@media all and (max-width: 768px) {
	#spotlight {
		padding: 155px 0;
	}
	#spotlight .left p {
		width: 80%;
	}
	#details {
		padding: 40px 0;
	}
	#details .body .left {
		height: 390px;
		width: 100%;
	}
	#details .body .right {
		width: 100%;
	}

	#objectives .objective-cards {
		margin: 0 30px;
	}
	#objectives .objective-cards .card {
		flex-wrap: wrap;
		gap: 0;
	}
	#student-cells {
		padding: 40px 0;
	}
	#student-cells div.top p.paragraph {
		width: 80%;
	}
}
@media all and (max-width: 640px) {
	#spotlight .left h1 {
		font-size: 40px;
	}
	#details .body .left {
		height: 350px;
	}
	#objectives .objective-cards {
		margin: 0;
	}
	#objectives .objective-cards .left h3.number {
		font-size: 40px;
	}
	#student-cells div.top p.paragraph {
		width: 90%;
	}
	#student-cells .club-cards {
		grid-template-columns: 1fr;
	}
}
@media all and (max-width: 480px) {
	/* #spotlight .left h1 {
		font-size: 40px;
	} */
	#spotlight .left {
		text-align: center;
	}
	#spotlight .left p {
		width: 100%;
		font-size: 14px;
	}
	#spotlight {
		padding: 90px 0;
	}
	#spotlight .left h1 {
		font-size: 27px;
	}
	#details {
		padding: 50px 0px 35px;
	}
	#details .body .left {
		height: unset;
	}
	#details .body .right h2.heading {
		font-size: 22px;
	}
	#details .body .right p.paragraph {
		font-size: 14px;
		text-align: justify;
	}
	#objectives {
		padding: 30px 0;
	}
	#objectives h2.heading {
		font-size: 26px;
	}
	#objectives .objective-cards .card {
		justify-content: center;
		text-align: justify;
	}
	#objectives .objective-cards .right p.paragraph {
		font-size: 14px;
		line-height: 22px;
	}
	#student-cells {
		padding: 20px 0px 50px;
	}
	#student-cells div.top h2.heading {
		font-size: 26px;
	}
	#student-cells div.top p.paragraph {
		width: 100%;
	}
	#student-cells .club-cards {
		margin-top: 40px;
	}
	#student-cells .club-cards .card .details h3 {
		font-size: 18px;
	}
	#student-cells .club-cards .card .details p {
		font-size: 14px;
		line-height: 22px;
	}
}
@media all and (max-width: 360px) {
	#spotlight .left h1 {
		font-size: 37px;
	}
	#spotlight .left p {
		font-size: 14px;
	}
	#details .body .right h2.heading {
		font-size: 18px;
	}
	#details .body .right p.paragraph {
		line-height: 1.4em;
		font-size: 14px;
	}
	#objectives h2.heading {
		margin-bottom: 25px;
	}
	#student-cells h2.heading {
		font-size: 26px;
	}
	#student-cells .club-cards {
		margin-top: 30px;
	}
	#student-cells .club-cards .card .details h3 {
		font-size: 18px;
	}
}

@media all and (max-width: 320px) {
	#spotlight .left h1 {
		font-size: 34px;
	}

	#details .body .right h2.heading {
		line-height: 25px;
	}
}
