


.portfolio-items {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}



 .portfolio-items-header img{
	width: 150px;
	height: 150px;
 }

 @media only screen and (max-width: 768px) {
	.portfolio-items-header img{
		width: 480px;
		height: 400px;
	 }
	
	}

	@media only screen and (max-width: 420px) { 
		.portfolio-items-header img{
			width: 300px;
			height: 300px;
		 }

	}	

 .portfolio-items-header h1 {
	margin-bottom: 50px;

}
 .all-portfolio-items {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
 .portfolio-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
 .portfolio-item-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-color: black;
	color: white;
}
 .portfolio-item-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
 .portfolio-item-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}
 .portfolio-item-info p {
	color: white;
}
.portfolio-item-img-logo {
	width: 150px;
	height: 150px;
	margin-bottom: 50px;
	object-fit: unset;
}
 .portfolio-item-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
 .portfolio-item-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	/*background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);*/
	opacity: 0.7;
}
 .portfolio-item-img img {
	transition: 0.3s ease transform;
}
 .portfolio-item:hover .portfolio-item-img img {
	transform: scale(1.1);
}




