@media screen {
	
	#reviews{
		display:flex;
		gap:30px;
		justify-content:center;
		flex-wrap:wrap;
	}
	
	#reviews .review{
		flex:0 0 300px;
		min-width:200px;
		max-width:350px;
		
	}
	
	#reviews .review .header{
		border-radius:30px 0 0 0;
		background-color:#555;		
		padding:5%;
		color:white;
		display:flex;
		justify-content:space-between;
		align-items:center;
	}
	
	#reviews .review img.quote{
		filter:invert(1);
	}

	#reviews .review .body{
		border-radius: 0 0 30px 0;
		background-color:#fff;		
		padding:5%;
	}
	
	#reviews .review p.author,
	#reviews .review p.location	{
		margin:0;
	}
	

}


@media only screen 
and (max-width : 768px) {


}
