#footer {
	background-color: #fff;
	padding-block: 20px 88px;
	position: relative;
}

#footer .footer-container {
	display: flex;
	flex-direction: column;
	row-gap: 19px;
	padding-inline: 20px;
	padding-bottom: 20px;
}

#footer .footer-logo {
	display: block;
	max-width: 265px;
	cursor: pointer;
}

#footer .footer-links .navMenu{
	display: flex;
	flex-direction: column;
	row-gap: 12px;
	list-style: none;
}

#footer .footer-links .link {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #656565;
	/* letter-spacing: 0.6px; */
	letter-spacing: 0.5px;
}

#footer .fb-link{
	display: flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	top: 5px;
}

#footer .copyright{
	padding-inline: 20px;
	border-top: 1px solid #f5f5f5;
	font-size: 13px;
	padding-top: 16px;
	text-align: center;
}

#back-to-top{
	position: fixed;
	bottom: 18%;
	right: 15px;
	z-index: 9;
	border: none;
	outline: none;
	background-color: transparent;
	cursor: pointer;
	width: 46px;
	height: 46px;
	transition: all 0.2s;
	opacity: 0;
	visibility: hidden;
}

#back-to-top.active{
	opacity: 1;
	visibility: visible;
}


@media screen and (min-width: 768px) {
	#footer {
		padding-block: 26px 15px;
	}

	#footer .footer-logo {
		display: block;
		max-width: 360px;
	}

	#footer .footer-links{
		position: relative;
		top: 4px;
	}

	#footer .footer-links .navMenu{
		flex-direction: row;
		column-gap: 35px;
	}

	#footer .footer-links .link {
		font-size: 14px;
	}

	#back-to-top{
		bottom: 13%;
		right: 34px;
		width: 70px;
		height: 70px;
	}
}

@media screen and (min-width: 1024px) {
	#footer .footer-container {
		flex-direction: row;
		column-gap: 112px;
		padding-inline: 40px;
		align-items: center;
		padding-bottom: 30px;
	}

	#footer .copyright{
		padding-inline: 40px;
	}

	#footer .fb-link{
		margin-left: auto;
	}
}