* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.team-section {
	background-color: #f2f2f2;
	padding: 80px 0;
	text-align: center;
}

.team-members {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 50px;
}

.team-member {
	background-color: white;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	margin: 20px;
	flex-basis: 30%;
	min-width: 250px;
	text-align: centre;
}

.team-member img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.team-member h2 {
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.team-member h3 {
	font-size: 18px;
	margin-bottom: 20px;
}

.team-member p {
	line-height: 1.5;
	margin-bottom: 20px;
}

.social-media {
	display: flex;
	justify-content: center;
}

.social-media li {
	margin: 10px;
	list-style: none;
}

.social-media a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: white;
	background-color: #333;
	transition: all 0.3s ease-in-out;
}

.social-media a:hover {
	background-color: #1abc9c;
}

.social-media i {
	font-size: 20px;
}

video {
    display:block;
    margin:auto;
    max-width:70;
    height:auto;
}