#esteem_sec .cards {
	gap: 40px;
	justify-content: space-between;
}

#esteem_sec .cards>img {
	width: 150px;
	aspect-ratio: 5/3;
	background-color: white;
	border-radius: 4px;
	object-fit: contain;
	padding: 8px;
	filter: drop-shadow(0 4px 6px #0006);
}

#vendor_sec .container>div {
	margin-bottom: 20px;
}

#vendor_sec ul {
	font-weight: bold;
}

#vendor_sec .imgs {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
}

#vendor_sec .imgs>img {
	width: 65%;
}

#vendor_sec .imgs>img:last-child {
	justify-self: flex-end;
}

@media (max-width:650px) {
	#esteem_sec .cards {
		justify-content: center;
		gap: 40px 20px;
	}

	#esteem_sec .cards>img {
		width: 100px;
	}
}

@media (min-width:500px) {
	#vendor_sec ul {
		margin-bottom: 30px;
	}
}