footer {
	width: 100vw;
	padding: 100px 8%;
	background: linear-gradient(180deg, #f5f5f5 0%, #ece7df 100%);
}

.footer_title {
	font-size: 24px;
	margin-bottom: 20px;
}

.footer_link {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	margin-bottom: 40px;
}

.footer_link a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(61, 61, 61, 0.2);
	background: rgba(255, 255, 255, 0.8);
}

.footer_disclamer p{
	font-size: var(--font-size-xs);
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 64px 24px;
	}

	.footer_link {
		flex-direction: column;
		align-items: flex-start;
	}
}
