
.portfolio-main h2{
	font-weight: 700;
	font-size: 42px;
	margin-bottom: 20px;
	text-align: center;
	color: #07294d;
}
.portfolio-main .card {
	border: 1px solid #d9e1ec;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(7, 41, 77, 0.12);
}
.portfolio-main .card .card-body .card-title{
	margin-bottom: 0px;
}
.portfolio-main .card .card-body .card-title a{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: #ffffff;
	margin: 0;
}
.portfolio-main .card .card-body{
	position: absolute;
	background: linear-gradient(180deg, rgba(7, 41, 77, 0.08) 0%, rgba(7, 41, 77, 0.92) 74%);
	padding: 18px 20px;
	display: flex;
	align-items: center;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	transition: all 0.35s ease;
	left: 0;
	top: auto;
	bottom: -100%;
	right: 0;
	min-height: 88px;
}
.portfolio-main .card:hover .card-body{
	bottom: 0;
}
.card-img{
	overflow: hidden;
	position: relative;
	background: #eef3f8;
	aspect-ratio: 4 / 3;
}
.portfolio-item .card:hover .card-img .card-img-top{
	transform: scale3D(1.08, 1.08, 1);
	opacity: .6;
}
.card-img-top{
	transition: all 500ms linear 0s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.overlay{
	background: rgba(7, 41, 77, 0.34);
	position: absolute;
	bottom: -100%;
	width: 100%;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s;
}
.overlay i{
	font-size: 35px;
	position: absolute;
	top: 42%;
	left: 50%;
	transform: translateX(-50%);
	color: #FFD700;
}
.portfolio-main .card:hover .overlay{
	bottom: 0px;
}

.projects-main .pro-item {
	margin-bottom: 30px;
}
