#footer > .menu {
	display: flex; max-width: 750px;
	flex-direction: column;
	align-items: center;
	padding: 0 25px;
	margin: 0 auto 70px;
}
@media (min-width: 900px)	 { #footer > .menu { row-gap: 35px; } }
@media (max-width: 899.99px) { #footer > .menu { row-gap: 30px; } }

/*--------------------------------------------------------------------------------------------------------------------*/

#footer > .menu a {
	font-weight: 100;
	cursor: pointer;
}
@media (min-width: 900px)	 { #footer > .menu a { font-size: 35px; } }
@media (max-width: 899.99px) { #footer > .menu a { font-size: 25px; } }
.loaded #footer > .menu a { transition: font-weight .2s ease-out; }
#footer > .menu a:hover,
#footer > .menu a.current { font-weight: 600; }

/*--------------------------------------------------------------------------------------------------------------------*/

#footer > .menu > .submenu-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#footer > .menu > .submenu-container > .submenu-btn {
	position: relative;
	padding-right: 35px;
}
#footer > .menu > .submenu-container > .submenu-btn:after {
	content: '';
	position: absolute; top: 50%; right: 0; transform: translateY(-50%);
	display: block; width: 14px; height: 8px;
	
	background-color: var(--off-color);
	
	-webkit-mask-image: url("../../images/icons/arrow.down.svg");
	mask-image: url("../../images/icons/arrow.down.svg");
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}
.loaded #footer > .menu > .submenu-container > .submenu-btn:after { transition: transform .2s ease-out; }
#footer > .menu > .submenu-container > .submenu-btn.open:after { transform: translateY(-50%) scale(-1); }
#footer > .menu > .submenu-container > .submenu {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 20px;
	margin-top: 35px;
}
@media (min-width: 900px)	 { #footer > .menu > .submenu-container > .submenu > .submenu-item { font-size: 25px; } }
@media (max-width: 899.99px) { #footer > .menu > .submenu-container > .submenu > .submenu-item { font-size: 16px; } }

/*--------------------------------------------------------------------------------------------------------------------*/

#footer > .menu > .home-btn {
	flex: 0 0 168px; width: 132px;
	
	background-image: url("../../images/logo.white.svg");
	background-position: bottom center;
	background-size: 100% auto;
	background-repeat: no-repeat;
}