.gim-friends-possibilities__item{
	color: var(--white);
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 30px 20px 30px;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: var(--black, #000);
	text-align: center;
}
.gim-friends-possibilities__item-img{
	margin-top: -20px;
	height: 220px;
	width: 100%;
	position: relative;

}
.gim-friends-possibilities__item-img:before{
	content: "";
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(to bottom, transparent, var(--black));
}
.gim-friends-possibilities__item-img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}