footer {
	padding: 0;
	z-index: 1;
	border: none;
	outline: none;
	margin: 60px 0 0 0;
	position: relative;
	width: clamp(0%, 100%, 100%);
	background-color: var(--cor15);
}

.footer_svg {
	right: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	border: none;
	outline: none;
	max-width: 250px;
	fill: var(--cor15);
	position: absolute;
	stroke: transparent;
	box-sizing: content-box;
	transition: all 0.2s ease;
	bottom: calc(100% - 20px);
	pointer-events: none!important;
}

.footer_boxed {
	border: none;
	outline: none;
	row-gap: 24px;
	display: flex;
	margin: 0 auto;
	overflow: hidden;
	column-gap: 48px;
	flex-wrap: nowrap;
	padding: 60px 20px;
	align-items: flex-start;
	justify-content: flex-start;
	width: clamp(0%, calc(100% - 40px), var(--boxed_md));
}

.footer_content_logo {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	max-width: 110px;
	flex-wrap: nowrap;
	align-items: flex-start;
	transition: all 0.2s ease;
	justify-content: flex-start;
}

.footer_content_logo img {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
}

.footer_title_1 {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: 400 16px/24px 'Inter', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 16;
}

.footer_title_2 {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: 400 12px/20px 'Inter', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 12;
}

.footer_title_3 {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: right;
	color: var(--cor11);
	letter-spacing: 1px;
	word-break: break-word;
	cursor: pointer!important;
	text-align: -webkit-right;
	text-transform: uppercase;
	transition: color 0.2s ease;
	font: 400 11px/17px 'Inter', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 11;
}

.footer_title_sp_m_1 {
	margin-bottom: 8px!important;
}

.footer_content,
.footer_content div {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	width: fit-content;
	flex-direction: column;
}

.footer_content_gap_1 {
	gap: 48px;
}

.footer_content_gap_2 {
	gap: 24px;
}

.footer_content_start_start {
	align-items: flex-start;
	justify-content: flex-start;
}

.footer_content_end_start {
	align-items: flex-end;
	justify-content: flex-start;
}

.flex-shrink {
	flex-shrink: 1;
}

.flex-grow {
	flex-grow: 1;
}

@media screen and (max-width: 1440px) {
	.footer_svg {
		max-width: 150px;
		bottom: calc(100% - 12px);
	}
}

@media screen and (max-width: 983px) {
	.footer_svg {
		max-width: 100px;
		bottom: calc(100% - 8px);
	}
}

@media screen and (max-width: 576px) {
	.footer_boxed {
		flex-direction: column-reverse;
	}
	.footer_content_logo {
		max-width: 80px;
	}
	.footer_content,
	.footer_content div {
		width: 100%;
	}
	.footer_content_end_start {
		align-items: flex-start;
		justify-content: flex-start;
	}
	.footer_title_3 {
		text-align: left;
		text-align: -webkit-left;
	}
	.footer_boxed > .footer_content:first-child {
		order: 1;
	}
	.footer_content_gap_1,
	.footer_content_gap_2 {
		gap: 24px;
	}
}