.portfolio-wrapper{
	margin-top: 30px;
	width:100%;
	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.portfolio-container{
	padding: 0px 90px 0px;
	max-width:1000px;
	

}


.portfolio-grid{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	flex-direction: column;
	margin-top: 30px;

}


.project-container{
  display: flex;
  flex-wrap: wrap;
  gap:60px;
  align-items: center;
  justify-content: center;

  color: white;
  padding: 20px 00px;
  max-width: 1000px;
  width:80%;
  padding-bottom:100px;


}

.project{
	background: #fff;
	flex: 0 0 calc(35% - 80px);
	border-radius: 14px;
	display: flex;
	height: 350px;
	flex-direction: column;
	box-shadow: 0px 0px 3px #b7a2f1;
	transition: transform 0.3s, box-shadow 0.3s;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	padding: 0px 10px;
	z-index:12;

}


.project:hover{
	transform: translateY(0px);
  box-shadow: 0px 0px 10px #b7a2f1;

}

.project-img-container{
	flex:4;
	display: flex;
	border-radius: 10px 10px 0px 0px;
	width: 40%;
	margin-top: 10px;
	align-items: center;
	justify-content: center;

}

.project-img{
	width: 90%;       /* makes the image fill the width */
  object-fit: cover; /* crop image to cover frame */
  object-position: center; /* center the crop */


}




.project-text{
	padding: 20px;
	position: relative;
	flex:5;
	top:-15px;
	color: var(--dark);



}

.project-title{
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom:20px;
	text-align: center;
}



.title-pre{
	font-weight: 200;
	font-size: 1.2rem;

}

.project-desc{
	font-weight: lighter;
	font-size: 1rem;
	color: var(--dark);

}

.project:hover .project-desc{
	
}



.project-btn{
	position: relative;
	top:-25px;
	color: var(--gold);
	border: 0.5px solid var(--gold);
	padding: 5px 15px;
	border-radius: 5px;
	transition: background-color 0.2s, color 0.2s;
}

.project:hover .project-btn{
	background-color: var(--gold);
	color:var(--darkg);

}







@media (max-width: 1150px){

	.portfolio-container{
	padding: 0px 50px 0px;
	max-width:1000px;
	

}


.project-container{
	gap:40px;
	width:90%;
	padding-bottom:100px;
}

.project{
	flex: 0 0 calc(40% - 40px);
	max-width: 250px;
	height:350px;
}

.project-title{
	font-size: 1.2rem;
}

.project-desc, .project-btn{
	font-size: 1rem;
}




}




@media (max-width: 960px){

	.project-container{
		padding: 20px 25px;
		padding-bottom:100px;
		width:90%;
		max-width: 900px;

	}
	.project{
	flex: 0 0 calc(36% - 40px);
	min-width: 250px;
	height:340px;
}
}

@media (max-width: 750px){

	.project-container{
		padding: 20px 15px;
		padding-bottom:100px;
	}
	.project{
	flex: 0 0 calc(50% - 40px);
	height:330px;
}
}

@media (max-width: 650px){


	.project-container{
		padding: 20px 15px;
		width:80%;
		padding-bottom:100px;
		gap: 55px;
	}

	.project{
	
	height:320px;
	min-width: 220px;
}
}