@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap');

*
{
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.leader-main
{
	width: 100%;
	height: auto;
	background: #fff;
	padding: 40px 0;
	position: relative;
	overflow: hidden;
}

.leader-head
{
	text-align: center;
}

.leader-main::before
{
	position: absolute;
	content: 'OUR';
	font-size: 240px;
	font-weight: 600;
	left: -50px;
	top: 140px;
	transform: translate(0, -50%);
	color: rgb(180, 180, 180);
	opacity: 0.1;
}

.leader-main::after
{
	position: absolute;
	content: 'LEADER';
	font-size: 240px;
	font-weight: 600;
	right: -50px;
	bottom: 100px;
	transform: translate(0, -50%);
	color: white;
	color: rgb(150, 150, 150);
	opacity: 0.1;
	z-index: 0;
}

.leader-head h1
{
	font-size: 38px;
	font-weight: 600;
	color: #000;
}

.card-container
{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 0 100px;
	overflow: hidden;
/*	border: 1px solid red;*/
}

.mainCard
{
	width: 80%;
	height: auto;
	padding: 20px;
	position: relative;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	margin: 80px 0;
	z-index: 1;
/*	border: 1px solid red;*/
}

.leader-img-box
{
	background: transparent;
	width: auto;
	/*display: flex;
	justify-content: center;
	align-items: center;*/
	position: absolute;
	left: 0px;
	top: -40px;
	z-index: 1;
}

.blob 
{ 
  width: 250px;
  height: auto;
  z-index: 1;
}

.leader-img
{
	width: 180px;
	height: 180px;
	border-radius: 8px;
}

.leader-info
{
	width: 100%;
	height: auto;
	background: #262626;
	padding: 20px 20px 20px 250px;
	position: relative;
	overflow: hidden;
	border-radius: 10px 0 0 120px;
}

.leader-info::before
{
	content: '';
	position: absolute;
	width: 40px;
	height: 100px;
	right: 0px;
	bottom: -40px;
	transform: rotate(55deg);
	background: blue;
	filter: blur(5px);
/*	border: 2px solid red;*/
}

.leader-info p
{
	font-size: 12px;
	line-height: 20px;
	word-spacing: 2px;
	margin-top: 20px;
	font-weight: 400;
	color: #fff;
}

.leader-info h3
{
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

.leader-info h3 span
{
	color: rgb(160, 160, 160);
}

.leader-social
{
	width: 14%;
	height: auto;
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.leader-social img
{
	width: 25px;
	height: auto;
	cursor: pointer;
}




/* ------------> Responsive Start <------------- */

@media (max-width: 768px)
{

	.leader-main
	{
		height: auto;
	}

	.mainCard
	{
		width: 100%;
		margin: 100px 0;
	}

	.leader-head
	{
		text-align: center;
		margin-bottom: 0px;
	}

	.leader-main::before,
	.leader-main::after
	{
		display: none;
	}

	.leader-head h1
	{
		font-size: 42px;
		font-weight: 600;
		font-style: italic;
		/*color: white;*/
	}

	.card-container
	{
		padding: 50px 10px 0 10px;
		height: auto;
	}

	.mainCard
	{
		width: 100%;
		padding: 0px;
		border: 0;
	}

	.leader-img-box
	{
		width: auto;
		height: auto;
		left: 50%;
		top: -150px;
		transform: translate(-50%, 0);
		z-index: 1;
	}

	.blob 
	{ 
	  width: 200px;
	  height: auto;
	}

	.leader-img
	{
		width: 150px;
		height: 150px;
		border-radius: 8px;
	}

	.leader-info
	{
		width: 100%;
		height: auto;
		background: #262626;
		padding: 100px 10px 10px 10px;
		text-align: center;
		border-radius: 0px;
	}

	.leader-info p
	{
		font-size: 12px;
		margin-top: 10px;
	}

	.leader-social
	{
		width: 100%;
		height: auto;
		display: flex;
		justify-content: center;
		margin-top: 10px;
	}

	.leader-social img
	{
		width: 25px;
		height: auto;
		cursor: pointer;
	}

}