/*	-------------------------------------------------------------------------- */
/*	Base (comune)  
/*	-------------------------------------------------------------------------- */

#Footer {
	background: var(--Palette2);
	color: var(--Palette2light);
	font-family: var(--Font_Info, var(--Header_Font));
}
#Footer a {
	color: var(--Palette2light);
	text-decoration: none;
	transition: color 0.2s ease;
}
#Footer a:hover {
	color: #ec3036;
}


/*	-------------------------------------------------------------------------- */
/*	Mobile  
/*	-------------------------------------------------------------------------- */
	@media screen and (max-width: 440px) {

		#Footer {
			width: 100%;
			display: block;
			clear: both;
			padding: 3rem 2rem 2rem 2rem;
			box-sizing: border-box;
		}
		#Footer .FooterTop {
			display: flex;
			flex-direction: column;
			row-gap: 2.2rem;
			text-align: center;
			align-items: center;
		}
		#Footer .FooterLogo img {
			height: 4.5rem;
		}
		#Footer .FooterCol {
			display: flex;
			flex-direction: column;
			row-gap: 0.6rem;
		}
		#Footer .FooterCol a {
			font-size: 1.1rem;
			line-height: 1.5em;
		}
		#Footer .FooterAddress {
			font-size: 1rem;
			line-height: 1.6em;
		}
		#Footer .FooterAddress p {
			margin: 0 0 1rem 0;
		}
		#Footer .FooterAddress p:last-child {
			margin-bottom: 0;
		}

		#Footer .PartnerBox {
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-wrap: wrap;
			column-gap: 2rem;
			row-gap: 1.5rem;
			margin-top: 3rem;
			margin-bottom: 2rem;
			padding-top: 2rem;
			border-top: 0.1rem solid rgba(255,255,255,0.15);
		}
		#Footer .PartnerBox img {
			width: 7rem;
		}

		#Footer .blackRowFoot {
			display: flex;
			flex-direction: column;
			align-items: center;
			row-gap: 1.2rem;
			padding-top: 1.5rem;
			border-top: 0.1rem solid rgba(255,255,255,0.15);
		}
		#Footer .blackRowFoot .innerFooter {
			display: flex;
			align-items: center;
			column-gap: 1.6rem;
			font-size: 1.4rem;
		}
		#Footer .blackRowFoot .Powered {
			text-align: center;
			font-size: 1rem;
			margin: 0;
		}
		#Footer .blackRowFoot .Powered a img {
			width: 10rem;
			margin-top: 0.6rem;
		}

	}

/*	-------------------------------------------------------------------------- */
/*	Desktop  
/*	-------------------------------------------------------------------------- */
	@media screen and (min-width: 441px) {

		#Footer {
			display: block;
			clear: both;
			padding: 4rem 4rem 2rem 4rem;
			box-sizing: border-box;
		}
		#Footer .FooterTop {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			column-gap: 2.5rem;
			max-width: 90rem;
			margin: 0 auto;
		}
		#Footer .FooterLogo {
			flex: 0 0 14rem;
		}
		#Footer .FooterLogo img {
			height: 3rem;
		}
		#Footer .FooterCol {
			flex: 1 1 0;
			display: flex;
			flex-direction: column;
			row-gap: 0.9rem;
		}
		#Footer .FooterCol a {
			font-size: 0.8rem;
			font-weight: 400;
		}
		#Footer .FooterAddress {
			flex: 0 0 16rem;
			text-align: left;
			font-size: 0.85rem;
			line-height: 1.6em;
		}
		#Footer .FooterAddress p {
			margin: 0 0 1.2rem 0;
			cursor: default;
		}
		#Footer .FooterAddress p:last-child {
			margin-bottom: 0;
		}

		#Footer .PartnerBox {
			max-width: 90rem;
			margin: 3.5rem auto 0 auto;
			padding-top: 0rem;
			display: flex;
			align-items: center;
			justify-content: flex-end;
			flex-wrap: nowrap;
			column-gap: 2rem;
		}
		#Footer .PartnerBox img {
			width: 7rem;
			/*filter: brightness(0) invert(1);*/
		}
		#Footer .PartnerBox img.small {
			width: 6.8rem;
		}

		#Footer .blackRowFoot {
			max-width: 90rem;
			margin: 2.5rem auto 0 auto;
			padding-top: 0.5rem;
			/*border-top: 0.1rem solid rgba(255, 255, 255, 0.15);*/
			display: flex;
			flex-direction: row;
			align-items: center;
			justify-content: center;
		}
		#Footer .blackRowFoot .innerFooter {
			display: flex;
			align-items: center;
			column-gap: 0.7rem;
		}
		#Footer a i {
			width: 2rem;
			height: 2rem;
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 2rem;
			background: var(--Box_Evento_Background_Color);
			color: var(--Palette2);
			transition: all 0.2s ease;
		}
		#Footer a i:hover {
			background: var(--Box_Evento_Border_Color);
		}
		#Footer .blackRowFoot .Powered {
			display: flex;
			align-items: center;
			column-gap: 0.6rem;
			font-size: 0.7rem;
			color: var(--Palette2light);
			font-weight: 100;
			margin: 0;
			position: absolute;
			right: 8%;
		}
		#Footer .blackRowFoot .Powered img {
			width: 7rem;
			margin-top: 0.3rem;
		}

	}