@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
a:hover, a{
	text-decoration: none;
}
ul{
	margin: 0;
	padding: 0;
}
li{
	list-style-type: none;
}
.section-padding{
	padding: 6% 0;
}
.team-section .title h1{
	color: #3f51b5;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 1rem;
}
.team-section .top-member-info{
	width: 50%;
	margin: 0 auto;
}
.team-section .team-top .image{
	border: 1px solid #ccc;
	padding: 4px;
	display: inline-block;
	margin-bottom: 10px;
	border-radius: 50%;
}
.team-section .team-top .image img{
	object-fit: cover;
	max-width: 340px;
	height: 340px;
	border-radius: 50%;
}
.team-section .team-top .info .name,
.team-section .team-bottom .info .name{
	font-size: 24px;
	font-weight: 700;
	color: #222;
	margin-bottom: 2px;
	font-family: "Roboto", sans-serif;
}
.team-section .team-top .info .designation,
.team-section .team-bottom .info .designation{
	color: #ff5722;
	font-size: 16px;
	display: block;
	margin-bottom: 6px;
	font-family: "Roboto", sans-serif;
	font-style: italic;
}
.team-section .team-top .info li{
	display: inline-block;
}
.team-section .team-top .info .phone a,
.team-section .team-top .info .email a,
.team-section .team-bottom .info .phone a{
	font-size: 16px;
	font-weight: 700;
	color: #3f51b5;
	font-family: "Roboto", sans-serif;
}
.team-section .team-top .info .description p,
.team-section .team-bottom .info .description p{
	font-size: 16px;
	color: #666;
	margin-bottom: 0;
	margin-top: 6px;
	font-family: "Roboto", sans-serif;
	text-align: justify;
}

.team-section .team-top
{
	border-bottom: 2px dashed #ccc;
	padding-bottom: 30px;
}
.team-section .team-bottom .image{
	border: 1px solid #ccc;
	padding: 4px;
	display: inline-block;
	margin-bottom: 10px;
}
.team-section .team-bottom .image img{
	width: 250px;
    height: 250px;
    object-fit: cover;
}
.team-section .team-bottom .info .name{
	font-size: 20px;
}
.team-section .bottom-member-info{
	margin-top: 30px;
	text-align: center;
}
.team-section .bottom-member-info .description{
	text-align: left;
}

/*media query starts*/
@media screen and (max-width: 991px){
	.team-section .top-member-info{
		width: 60%;
	}
	.team-section .team-top .image img{
		max-width: 320px;
		height: 320px;
	}
}
@media screen and (max-width: 767px){
	.team-section .top-member-info{
		width: 60%;
	}
	.team-section .team-top .info .name{
		font-size: 22px;
	}
	.team-section .team-bottom .info .name{
		font-size: 20px;
	}
	.team-section .team-top .image img{
		max-width: 300px;
		height: 300px;
	}
}
@media screen and (max-width: 575px){
	.team-section .top-member-info{
		width: 60%;
	}
	.team-section .team-top .image img{
		max-width: 280px;
		height: 280px;
	}
	.team-section .team-top
	{
		padding-bottom: 20px;
	}
	.team-section .team-bottom .image img {
		width: auto; 
	}
	.team-section .team-top .info .name{
		font-size: 20px;
	}
}
@media screen and (max-width: 479px){
	.team-section .top-member-info{
		width: 100%;
	}
	.team-section .team-top .image img{
		max-width: 260px;
		height: 260px;
	}
	.team-section .team-bottom .info .name{
		font-size: 18px;
	}
	.team-section .team-top .info .designation, 
	.team-section .team-bottom .info .designation {
		margin-bottom: 0px;
	}
	.team-section .bottom-member-info {
		margin-top: 20px;
	}
}
/*media query ends*/