.fee_con {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 50px;
	gap: 20px;
}

.fee_con button {
	width: 100%;
	border-radius: 8px;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	text-align: left;
}

.fee_con button:hover {
	transition: all 0.3s;
	background: linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	color: #fff;
	border-radius: 50px;
	border-color: rgba(255, 168, 63, 1);
}

.fee_con button:hover a,
.fee_con button:hover .btn_down {
	color: #fff;
	transition: all 0.3s;
}

.btn_down {
	font-weight: 400;
}

.fee_con .btn_down::after {
	content: "\F30A";
	font-family: "bootstrap-icons" !important;
	margin-left: 10px;
}

@media screen and (max-width: 1280px) {
	.fee_con {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 980px) {
	.fee_con {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 520px) {
	.fee_con {
		grid-template-columns: repeat(1, 1fr);
	}
}
