.footer {
	background-image: url('../img/footer-bg.png');
	background-size: cover;
	padding-top: 20.5rem;
	padding-bottom: 3rem;
	position: relative;
}
.footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0.8rem;
	width: 38.4rem;
	height: 55.6rem;
	background-image: url('../img/footer-noise1.png');
	background-size: cover;
	pointer-events: none;
}
.footer:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 56.9rem;
	height: 41.5rem;
	background-image: url('../img/footer-noise2.png');
	background-size: cover;
	pointer-events: none;
}
.footer_logo {
	width: 24rem;
	margin: auto;
}
.footer_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8rem;
}
.footer_menu_title {
	font-family: 'NyghtSerif';
	font-weight: 300;
	font-style: italic;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1;
	margin-bottom: 2.5rem;
}
.footer_list {
	display: flex;
	gap: 3.3rem;
	margin-bottom: 4rem;
}
.footer_list_item_link {
	font-family: 'PPNeueMontreal';
	font-weight: 500;
  font-size: 2rem;
	color: #fff;
}
.footer_instagram {
	font-family: 'PPNeueMontreal';
	font-weight: 500;
  font-size: 2rem;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.footer_instagram_icon {
	width: 1.5rem;
}
.footer_right_text_lg {
	font-family: 'PPNeueMontreal';
	font-weight: 500;
  font-size: 2rem;
	color: #fff;
}
.footer_right_text {
	font-family: 'PPNeueMontreal';
  font-size: 1.4rem;
	color: #fff;
	line-height: 1.5;
	margin-top: 2rem;
}
.footer_right_text + .footer_right_text {
	margin-top: 1.5rem;
}
.footer_right_btn {
	font-family: 'PPNeueMontreal';
	font-weight: 500;
  font-size: 1.4rem;
	color: #303030;
	background-color: #fff;
	border-radius: 100vmax;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	padding: .7rem 1.5rem .7rem 1rem;
	margin-top: 2.5rem;
}
.footer_right_btn:after {
	content: "";
	mask: url(../img/blank-icon.svg) no-repeat center;
	mask-size: contain;
	background-color: #303030;
	width: 1rem;
	height: 1.1rem;
}
.footer_bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 6.4rem;
}
.copyright_text {
	font-family: 'PPNeueMontreal';
  font-size: 1.4rem;
	color: #fff;
}
.scroll_top {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
}
.scroll_top_text {
	font-family: 'PPNeueMontreal';
	font-weight: 500;
  font-size: 1.25rem;
	color: #fff;
	letter-spacing: .01em;
}
.scroll_top:after {
	content: "";
	mask: url(../img/arrow-up.svg) no-repeat center;
	mask-size: contain;
	background-color: #fff;
	width: .8rem;
	height: .7rem;
	display: block;
}
.scroll_top.active:after {
	animation-name: transformpagetop;
	animation-fill-mode: forwards;
	animation-duration: .3s;
	transition-timing-function: ease-out;
}
@media (max-width: 1024px) {
	.footer {
		padding-top: 16.5rem;
		padding-bottom: 2rem;
	}
	.footer:before {
		width: 20.8rem;
		height: 30.1rem;
	}
	.footer:after {
		width: 36rem;
		height: 25.3rem;
	}
	.footer_logo {
		width: 18rem;
	}
	.footer_box {
		flex-direction: column;
		align-items: flex-start;
		gap: 4rem;
		margin-top: 6rem;
	}
	.footer_menu_title {
		margin-bottom: 2rem;
	}
	.footer_list {
		flex-direction: column;
		gap: 1.5rem;
		margin-bottom: 4rem;
	}
	.footer_list_item_link {
		font-size: 1.7rem;
	}
	.footer_instagram {
		font-size: 1.7rem;
	}
	.footer_right_text {
		font-size: 1.2rem;
		margin-top: 1rem;
	}
	.footer_right_text + .footer_right_text {
		margin-top: 1rem;
	}
	.footer_bottom {
		flex-direction: column-reverse;
		gap: 4rem;
		margin-top: 6rem;
	}
	.copyright {
		margin-right: auto;
	}
	.copyright_text {
		font-size: 1rem;
	}
}