
/*	Mobile  */
	@media screen and (max-width: 440px) {

		#Footer {
			width:100%;
			margin:0;
			padding:0;
			margin-left: auto;
			margin-right: auto;
			display:block;
			clear: both;
			padding-bottom:2rem;
			background: #b2e8fa59;
		}
		#Footer .footLogo {
			display: flex;
			align-items: center;
			justify-content: center;
			padding-top: 2rem;
		}
		#Footer .footLogo img{
			width: 15rem;
		}
		#Footer .Message {
			display: block;
			padding-top:2rem;
			padding-left: 4vw;
			padding-right: 4vw;
		}
		#Footer .Message P {
			margin:0;
			padding: 0;
			text-align:center;
			font-size:0.9rem;
			line-height:1.5em;
			color: var(--Palette1);
		}

	}

/*	Desktop  */
	@media screen and (min-width: 441px) {

		#Footer {
			display:block;
			clear: both;
			padding-bottom:3rem;
			margin-top:0rem;
			background: #b2e8fa59;
		}
		#Footer .footLogo {
			display: flex;
			align-items: center;
			justify-content: center;
			padding-top: 2rem;
		}
		#Footer .footLogo img{
			width: 15rem;
		}
		#Footer .Message {
			max-width:71.222rem;
			display: block;
			margin-left: auto;
			margin-right: auto;
			padding-top:2rem;
		}
		#Footer .Message P {
			margin:0;
			padding: 0;
			text-align:center;
			font-size:0.9rem;
			line-height:1.5em;
			color: var(--Palette1);
		}

	}

