

.card{
	display: flex;
	align-items: center;
	/*align-content: space-between;*/
	justify-content: center;
	 flex-wrap: wrap;
	 flex-direction: column;
	position: relative;
	width: 360px;
	height: 480px;
	background-color: #2E375F;
	border-radius: 20px;
	overflow: hidden;
	/*margin: 20px 1.5%;*/
	margin-left: 2.5%;
	margin-bottom: 1.5%;
	transition: 0.5s;


}
.card:hover{
	background-color: #ebedf3;
	box-shadow: 2px 3px 2px 1px rgba(255, 165, 0,0.71);
-webkit-box-shadow: 2px 3px 2px 1px rgba(255, 165, 0,0.71);
-moz-box-shadow: 2px 3px 2px 1px rgba(255, 165, 0,0.71);

}

.card:hover .content2{
	transform: translateY(-60px);
	opacity: 0.9;
	padding-top: 44px;
}



.card:hover .content2 p{
	display: inherit;
	color: #2E375F;
}

.card:hover .content2 h3{
	display: inherit;
	color: #FFCD00;
	font-size: 16px;
	text-align: center;
	
}

.card:hover .content2 h4, .card:hover .content2 .fa{
	display: none;
}

.circle{
	position: absolute;
	top: -190px;
	left: 50%;
	transform: translateX(-50%);
	width: 500px;
	height: 500px;
	background-color: #333;
	clip-path: circle();
}
.circle::before{
	content: '';
	position: absolute;
	top: -8px;
	left: -16px;
	width: 100%;
	height: 100%;
	background-color: transparent;
	box-shadow: 0 0 0 20px rgba(255, 165, 0, 0.5);
	border-radius: 50%;
	z-index: 1000;
	pointer-events: none;
}

.circle .imgBx{
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 360px;
	height: 310px;
	background-color: #ff0;
	
}

.circle .imgBx img{
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
	transition: 0.5s;
}

.card:hover .circle .imgBx img, .circle .imgBx:hover img{
	transform: scale(1.5);

}

.content2{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 150px;
	padding: 20px 30px;
	transition: 0.5s;

}
.fa-linkedin{
	background: #0077b5;
	color: #fff;
	padding: 2px 4px;
	border-radius: 2px;
}
.content2 h3{
	font-size: 1.4em;
	color: #fff;
	margin-top: 7px;
	margin-bottom: 5px;
	text-align: left;
}


.content2 h4{
    font-size: 14px;
    margin-top: 7px;
	margin-bottom: 5px;
}
.content2 p{
	font-size: 14px;
	color: #fff;
	margin-top: 7px;
	margin-bottom: 5px;
	display: none;
	font-weight: 400;
}

.textIcon{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.textIcon h4{
	font-weight: 400;
	color: #FFCD00;
}

.textIcon .fa{
	color: #FFCD00;
}

