#footer {
	background-color: #000;
	color: #FFF;
}
@media (min-width: 900px)	 { #footer { padding: 100px 0; } }
@media (max-width: 899.99px) { #footer { padding: 75px 0; } }

/*------------------------------------------------------------------------*/

#footer > .content-wrapper > .logo {
	position: relative;
	display: block; max-width: 200px;
	
	background-image: url("../../images/logo-light.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
#footer > .content-wrapper > .logo:before {
	content: '';
	display: block;
	padding-top: 25%;
}
@media (min-width: 900px)	 { #footer > .content-wrapper > .logo { margin: 0 auto 75px; } }
@media (max-width: 899.99px) { #footer > .content-wrapper > .logo { margin: 0 auto 50px; } }

/*------------------------------------------------------------------------*/

#footer > .content-wrapper > .menu {}
#footer > .content-wrapper > .menu > .category { overflow: hidden; }
#footer > .content-wrapper > .menu > .category > .title {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 400;
}
#footer > .content-wrapper > .menu > .category > .entries {}
#footer > .content-wrapper > .menu > .category > .entries > .entry {
	line-height: 18px;
	font-size: 13px;
}
#footer > .content-wrapper > .menu > .category > .entries > .entry > a { text-decoration: underline; }

#footer > .content-wrapper > .menu > .category > .entries > .networks {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 15px;
	margin: 20px 0 0;
}
#footer > .content-wrapper > .menu > .category > .entries > .networks > .network {
	display: block; width: 12px;
	
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	filter: brightness(0) invert();
}
#footer > .content-wrapper > .menu > .category > .entries > .networks > .network:before {
	content: '';
	display: block;
	padding-top: 100%;
}
#footer > .content-wrapper > .menu > .category > .entries > .networks > .network > span { display: none; }
#footer > .content-wrapper > .menu > .category > .entries > .networks > .facebook  { background-image: url("../../images/social/facebook.svg"); }
#footer > .content-wrapper > .menu > .category > .entries > .networks > .youtube   { background-image: url("../../images/social/youtube.svg"); }
#footer > .content-wrapper > .menu > .category > .entries > .networks > .linkedin  { background-image: url("../../images/social/linkedin.svg"); }
#footer > .content-wrapper > .menu > .category > .entries > .networks > .instagram { background-image: url("../../images/social/instagram.svg"); }
#footer > .content-wrapper > .menu > .category > .entries > .networks > .tiktok	   { background-image: url("../../images/social/tiktok.svg"); }
#footer > .content-wrapper > .menu > .category > .entries > .networks > .x		   { background-image: url("../../images/social/x.svg"); }

@media (min-width: 900px) {
	#footer > .content-wrapper > .menu {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		flex-wrap: nowrap;
		column-gap: 25px;
		row-gap: 35px;
	}
	#footer > .content-wrapper > .menu > .category { flex: 1; max-width: 200px; }
	#footer > .content-wrapper > .menu > .category > .title {
		line-height: 20px;
		pointer-events: none;
	}
	#footer > .content-wrapper > .menu > .category > .entries {
		align-self: stretch;
		display: flex !important;
		flex-direction: column;
		align-items: flex-start;
		row-gap: 10px;
		padding-top: 25px;
		
		opacity: 1 !important;
	}
}
@media (max-width: 899.99px) {
	#footer > .content-wrapper > .menu > .category { border-bottom: solid 1px rgba(255,255,255,.3); }
	#footer > .content-wrapper > .menu > .category > .title {
		position: relative;
		padding-right: 35px;
		
		line-height: 55px;
		
		cursor: pointer;
	}
	#footer > .content-wrapper > .menu > .category > .title:after {
		content: '';
		position: absolute; top: 50%; right: 0; transform: translateY(-50%) rotate(45deg);
		display: block; height: 24px; width: 24px;
		
		background-image: url("../../images/icons/close-2.svg");
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		
		filter: brightness(0) invert();
		
		transition: transform .2s ease-out;
	}
	#footer > .content-wrapper > .menu > .category.open > .title:after { transform: translateY(-50%) rotate(0deg); }
	#footer > .content-wrapper > .menu > .category > .entries {
		display: none;
		padding: 5px 0 25px;
	}
	#footer > .content-wrapper > .menu > .category > .entries > .entry:not(.networks) { display: block; }
	#footer > .content-wrapper > .menu > .category > .entries > .entry:not(.networks):not(:last-child) { margin-bottom: 10px; }
}

/*------------------------------------------------------------------------*/

#footer > .content-wrapper > .copyright {
	display: flex;
	flex-direction: row;
	justify-content: center;
	column-gap: 20px;
	row-gap: 10px;
	margin: 50px 0 0;
	
	line-height: 18px;
	font-size: 13px;
}