
@media (max-width: 670px) {
	.footer {
		flex-direction: column !important;
		gap: 2rem;
	}
	.footer .buttons_wrapper {
		flex-direction: column !important;
	}
}

.footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 2rem 3rem;
	margin: 1rem 1rem;
	background-color: var(--lavendar-mist);
	border-radius: 1rem;
}

.footer .logo img {
	width: 3rem;
	height: 3rem;
	object-fit: cover;
	object-position: center;
	border-radius: 1rem;
}

.footer .logo {
	height: fit-content;
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: bold;
	font-size: 1.4rem;
}

.footer .buttons_wrapper {
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

.footer .buttons_wrapper .buttons {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer .buttons button {
	border: 0;
	padding: 1rem 2rem;
	border-radius: 1rem;
	transition: .3s;
	cursor: pointer;
}

.footer .buttons button:hover {
	background-color: #00000055;
	color: var(--lavendar-mist);
}

.footer .buttons a {
	text-align: center;
	padding: 1rem 2rem;
	border-radius: 1rem;
	background-color: #00000010;
	transition: .3s;
	cursor: pointer;
}

.footer .buttons a:hover {
	background-color: #00000055;
	color: var(--lavendar-mist);
}