.perks__filter {
	background-color: var(--light-grey);
	padding: 20px;
	margin-bottom: 30px;
}

.perks__filter__search {
	border-radius: 10px;
	font-size: 20px;
	padding: 10px 10px 10px 45px;
	border: 0;
	background-image: url('../images/perks-search-icon.svg');
	background-position: left 15px center;
	width: 100%;
	margin-bottom: 20px;
}

.perks__filter__category {
	border-radius: 10px;
	font-size: 20px;
	padding: 10px 10px 10px 10px;
	border: 0;
	margin-right: 20px;
	margin-bottom: 20px;
}

.perks__filter__button {
	background-color: var(--anza-red);
	color: #FFF;
	font-size: 19px;
	padding: 10px 20px;
	border: 0;
	border-radius: 100px;
}


.perks {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 30px;
	row-gap: 30px;
}

.perks__item {
	display: flex;
	align-items: center;
	background: #FFFFFF;
	box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.2);
	padding: 10px;
}

.perks__item__photo {
	display: block;
	height: 130px;
	width: 130px;
	background-color: var(--light-grey);
	margin-right: 20px;
	background-size: 90%;
}

.perks__item__main__title {
	display:;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.perks__item__main__address {
	margin-bottom: 20px;
}

@media only screen and (min-width: 850px) {
	
	.perks__filter {
		display: flex;
	}
	
	.perks__filter__search { 
		flex: 1;
		width: auto;
		margin-right: 20px;
		margin-bottom: 0;
	}
	
	.perks {
		grid-template-columns: 1fr 1fr;
	}
	
	.perks__item__photo {
		margin-right: 30px;
		height: 165px;
		width: 165px;
	}
	
	.perks__filter__category {
		margin-bottom: 0;
	}
	
}