.footer-container {
	background-color: #222;
	padding: 2rem 10%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.footer-links {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-links-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-links-group > p {
	color: #fff;
	font-weight: 600;
	margin: 0;
	font-size: 1.1rem;
}

.footer-links-group > a {
	color: #fff;
	text-decoration: none;
	display: block;
	font-weight: 500;
	border-bottom: 1px solid rgb(255, 255, 255, 0.25);
	width: fit-content;
}

.footer-copyright {
	margin-top: 2rem;
}

.footer-copyright > p {
	color: #fff;
	font-size: 0.8rem;
	margin: 0;
}

.footer-tixify {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer-desc > h2, .footer-desc > p {
	color: #fff;
	font-weight: 600;
}

.contact-us {
	color: #fff;
	font-weight: 500;
	font-size: 1rem;
}

.contact-us p {
	margin: 0;
}

.download-app {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}

.download-app img {
	width: 150px;
}

.footer-payment {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	justify-content: flex-end;
	align-items: flex-end;
}

.footer-payment img {
	width: 3rem;
	height: 1.5rem;
	object-fit: contain;
	border-radius: 0.25rem;
}

.footer-payment-logo {
	width: 3rem;
	height: 1.5rem;
	object-fit: contain;
	border-radius: 0.25rem;
}


@media screen and (max-width: 768px) { 
	.footer-container {
		grid-template-columns: 1fr;
	}

	.footer-links {
		flex-direction: column;
		flex-wrap: nowrap;
	}


	.footer-copyright {
		margin-bottom: 2rem;
	}

	.footer-payment {
		justify-content: flex-start;
		gap: 0.25rem;
		flex-wrap: wrap;
	}

	.footer-payment img {
		width: 15%;
		height: auto;
	}

	.download-app img {
		width: 100%;
		height: auto;
	}

	.footer-links {
		width: 100%;
	}
}