.person-section {
	width: 100%;
	min-height: 100vh;
	background-image: linear-gradient(to right, #f1d1e3, #efd9ec, #ede1f3, #ede8f9, #eeeffc, #f0f3fd, #f3f7fe, #f7faff, #fafbff, #fcfcff, #fefeff, #ffffff);
	padding-top: 1.5rem;
	padding-bottom: 20px;
}

.box {
	width: 80%;
	margin: auto auto;
	border-radius: 10px;
	background-image: linear-gradient(0deg, #f0ebed 0%, #81a1e6 100%);
	box-shadow: 0 5px 5px rgba(0, 0, 0, .5);
}

.box .heading {
	width: 100%;
	padding: 20px 0 10px 0;
	border-radius: 5px 5px 0 0;
	text-align: center;
	color: #000000;
	background-color: linear-gradient(0deg, #dbacbb 0%, #e8e8e8 100%);
}

.heading h2 {
	font-family: Raleway;
	font-weight: bold;
}

.myrow {
	display: flex;
	padding: 20px;
}

.box .img-caption {
	padding-left: 20px;
}

.box .img-container {
	width: 100%;
	height: 50vh;
	display: flex;
	position: relative;
	overflow: hidden;
	border: 2px solid black;
	border-radius: 10px;
}

.box img {
	width: 100%;
	object-fit: cover;
}

.box .content {
	width: 70%;
	margin-left: 20px;
}

.box .content p {
	text-align: justify;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-weight: bold;
}

.img-caption .caption {
	margin-top: 18px;
	text-align: center;
}

.img-caption .caption b {
	font-size: 18px;
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

@media (max-width: 991px) {
	.person-section {
		width: auto;
		height: auto;
		overflow: visible;
		padding: 60px 0 0 0;
	}

	.heading h2 {
		font-size: 1.75rem;
	}

	.box {
		width: 100%;
		height: 100%;
		border-radius: 0;
	}

	.myrow {
		flex-direction: column;
		align-items: center;
		padding-top: 0px;
	}

	.box .content {
		width: 100%;
		margin: 1.5rem 0 0 0;
	}

	.box .img-caption {
		padding: 0;
	}

	.box .img-container {
		width: 15rem;
		height: min-content;
		margin: auto;
	}

}