.other-features .other-features-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 70px 0;
	letter-spacing: 1px;
}

.other-features .other-features-heading h3 {
	font-family: Agenda;
	font-size: 29px;
	font-style: normal;
	font-weight: 500;
	line-height: 34px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: black;
}

.other-features .other-features-heading a {
	display: flex;
	min-width: 140px;
	min-height: 40px;
	padding: 8px 12px;
	justify-content: center;
	align-items: center;
	font-family: Agenda;
	font-size: 13px;
	font-style: normal;
	font-weight: 600 !important;
	line-height: 100%;
	text-transform: uppercase;
	color: black;
	text-align: center;
	border-radius: 2px;
	border: 1px solid black;
	background: var(--neutral-100, #FFF);
}

.other-features .other-features-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 20px;
}

.other-features .other-features-list div {
	padding: 16px 8px;
	font-family: Agenda;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	border-bottom: 1px solid #D3D3D3;
	display: flex;
	align-items: center;
}

@media (max-width: 600px) {
	.other-features .other-features-heading {
		flex-wrap: wrap;
    	justify-content: center;
		gap: 15px;
	}
	
	.other-features .other-features-list {
		grid-template-columns: 1fr;
	}
}