.hide {
	display: none !important;
}

.feature-option-bulk {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 80%;
    margin: 2.5% auto;
	
}

.feature-option {
	width: calc(30% - 16px);
	margin: 12px;
	display: inline-block;
	vertical-align: top;
	line-height: 1;
	background-color: #f3f5f5;
}

.feature-option-img {
	object-fit: cover;
    aspect-ratio: 3 / 2;
}

.feature-box {
	padding: 20px;
	padding-top: 0px;
}

.filter {
	margin: 1.5% auto;
    width: 30%;
    display: flex;
    justify-content: space-between;
}

.gold-button {
	width: 40%;
    text-align: center;
	color: #ffffff;
	background-color: #8b4b1d;
}

@media only screen and (max-width: 850px) {
	.feature-option {
		width: calc(45% - 20px);
	}
	
	.filter {
		display: flex;
		flex-direction: row;
		width: 50%;
	}
	
	.hide {
		display: none !important;
	}
}

@media only screen and (max-width:575px) {
	.feature-option {
		width: 90%;
	}
	
	.hide {
		display: none !important;
	}
}