.pageBackground {
	background-image: linear-gradient(#c00501, #dd3400, #ffc15c);
}

.peopleSection {
	min-height: 400px;
	font-size: 17px;
	background: #fbfaf6;
	color: #000;

	/* border: 2px solid red; */
	padding-bottom: 8px;
}

.sectionTitle {
	text-align: center;
	text-decoration: underline;
	padding-top: 16px;
	padding-bottom: 16px;
	margin-top: 0px;

	animation: entranceSlideDown 300ms ease-out 100ms 1 normal backwards;
}

.sectionGridGrid {
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	padding: 32px;
	justify-items: center;

	/* display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	align-content: center; */
}

.sectionFlexBox {
	display: flex;
	flex-wrap: wrap;
	justify-items: center;
	align-items: flex-start;
	justify-content: space-evenly;
	align-content: flex-start;
	padding: 32px;

	/* display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	align-content: center; */
}

.peopleCard {
	text-align: center;
	min-width: 280px;
	max-width: 280px;
	margin: 1rem 1.5rem;
}

.peopleCardModal {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	text-align: center;
	min-width: 240px;
}

.peopleCardText {
	animation: entranceSlideUp 700ms ease-out 0ms 1 normal backwards;
}

.peopleImage {
	width: 198px;
	height: 198px;
	margin: 12px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
	-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);

	animation: entranceSlideDown 700ms ease-out 0ms 1 normal backwards;
	transition: transform 333ms;
    animation-duration: '. ($animBase + $i * $animDelay / $l) . 'ms;
}

.peopleImage:hover {
	transform: scale(1.05);
}

.peopleName {
    font-size: 22px;
    font-weight: bold;
    color: #000; /* Set color to black */
    text-decoration: none; /* Remove underline */
}

.peopleName a {
    color: inherit; /* Inherit color from parent */
    text-decoration: none; /* Remove underline */
}

.peopleName a:hover {
    color: #00313d; /* Optional: Add a hover effect */
    text-decoration: underline; /* Optional: Add underline on hover */
}
.peopleWebsite {
    font-size: 22px;
    font-weight: bold;
    color: #000; /* Set color to black */
    text-decoration: none; /* Remove underline */
}

.peopleWebsite:hover {
    color: #00313d; /* Optional: Add a hover effect */
    text-decoration: underline; /* Optional: Add underline on hover */
}

.peopleTitle {
	padding: 0;
	margin: 4px;
	font-size: 16px;
	font-style: italic;
}

.peopleAffil {
	padding: 0;
	margin: 4px;
	color: #1973cd;
	font-size: 16px;
	font-style: italic;
	font-weight: bold;
}

.peopleEmail {
	padding: 0;
	margin: 4px;
	color: #11345c;
	font-size: 16px;
	font-style: bold;
}

.peopleModalBio {
	font-size: 14px;
	text-align: justify;
	font-weight: bold;
	padding: 8px 16px;
	animation: entranceSlideUp 999ms ease-out 0ms 1 normal backwards;
}

.peopleModalContent {
    position: fixed; /* Change to fixed to center it relative to the viewport */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Offset by half its own size */
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin: 0; /* Remove margin */
    padding: 24px;
    background: #ffffff;
    width: 60%;
    min-width: min-content;
    border-radius: 0px 18px 0px 18px;
    -webkit-border-radius: 0px 18px 0px 18px;
    -moz-border-radius: 0px 18px 0px 18px;
    box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.5);
    animation: entranceFadeIn 700ms ease-in-out 0ms 1 normal backwards;
}

.peopleModalContentClose {
	position: relative;
	margin: 15% auto;
	padding: 32px;
	background: #fbfaf6;
	width: 60%;
	min-width: min-content;

	border-radius: 0px 18px 0px 18px;
	-webkit-border-radius: 0px 18px 0px 18px;
	-moz-border-radius: 0px 18px 0px 18px;

	box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.5);

	animation: entranceFadeOut 300ms ease-in 0ms 1 normal forwards;
}

.modal {
	display: none;
	position: fixed;
	z-index: 101;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0, 0, 0, 0.7);
}

.modalCloseButton {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #c43910;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	padding: 16px;
	font-weight: bold;
	color: white;
	top: -12px;
	right: -12px;
}

.hLine {
	border: 0;
	border-top: 1px solid black;
	width: 100%;   /* edited by Bhargavi, used to be 70% */
}

@keyframes entranceFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes entranceFadeOut {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: 0;
		transform: scale(0);
	}
}

@keyframes entranceSlideDown {
	from {
		transform: translateY(-16px);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes entranceSlideUp {
	from {
		transform: translateY(16px);
	}
	to {
		transform: translateY(0);
	}
}


.font20{
    font-size: 20px ;
  }
  
.peoplebody{
    margin-bottom: 50px; 
    margin-top: 20px;
    background: #FBFAF6;
}
.alumnibody{
    margin: 50px 0 30px 0; 
    text-align: center;
}
.data_url_people{
	color: rgb(22 22 22);
    font-size: 22px;
    font-weight: bold;
    text-decoration: underline;
}