
/*	Mobile  */
	@media screen and (max-width: 440px) {

		#Footer {
			width: 100%;
			margin-left: auto;
			margin-right: auto;
			display: flex;
			clear: both;
			padding-bottom: 5rem;
			padding-top: 0rem;
			background: #ffffff;
			margin-top: 2rem;
			flex-direction: column;
			align-items: center;
		}
		#Footer .innerFooter {
			max-width: 85vw;
		}
		#Footer .Message {
			display: block;
			padding-top:2rem;
			border-top: none;
		}
		#Footer .Message > img {
			margin-bottom: 2rem;
			width: 6rem !important;
			margin-top: 3rem;
		}
		.Message .MessageText h3 {
			margin: 1rem 0rem;
			text-transform: uppercase;
			font-size: 1.8rem;
		}
		#Footer .Message P {
			margin: 0;
			padding: 0;
			text-align: left;
			font-size: 1.1rem;
			line-height: 1.5em;
			color: var(--Palette1);
			font-family: var(--Font_Second);
		}
		#Footer .Message P > img {
			margin-top: 1rem;
		}
		#Footer .Message P a {
			color: #ffffff;
		}
		.footerGrid {
			margin-top: 2rem;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			row-gap: 1rem;
		}
		.footerGrid a {
			text-decoration: none;
			font-weight: 700;
			font-size: 1.4rem;
			font-family: var(--Font_Normal);
		}
		.footerGrid a i {
			margin-right: 1.5rem;
			font-weight: 300;
		}
		#Footer .Message .MessageText a b {
			color: #000000 !important;
		}

	}

/*	Desktop  */
	@media screen and (min-width: 441px) {

		#Footer {
			display:block;
			clear: both;
			padding-bottom:2rem;
			margin-top:0rem;
			background: #f9f9f9;
			margin-top: 2rem;
		}
		#Footer .innerFooter {
			max-width: 92vw;
			display: flex;
			margin-left: auto;
			margin-right: auto;
			padding-top: 2rem;
			border-top: none;
			flex-direction: row;
			align-items: flex-start;
			justify-content: flex-start;
			padding-bottom: 4rem;
		}
		#Footer .Message {
			max-width: unset;
			display: flex;
			margin-left: auto;
			margin-right: auto;
			padding-top: 2rem;
			border-top: none;
			flex-direction: column;
			align-items: flex-start;
			row-gap: 1rem;
			width: 30%;
		}
		.Message .MessageText h3 {
			margin: 0.5rem 0rem;
			text-transform: uppercase;
			font-size: 1.1rem;
		}
		#Footer .Message P {
			margin: 0;
			padding: 0;
			text-align: left;
			font-size: 0.7rem;
			line-height: 1.5em;
			color: var(--Palette1);
			font-family: var(--Font_Second);
			font-weight: 300;
		}
		#Footer .Message P a {
			color: var(--Palette1);
		}
		#Footer .Message P img {
			margin-top: 0.5rem;
		}
		.footerGrid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			grid-template-rows: repeat(3, auto);
			gap: 0.7rem;
			padding-top: 2rem;
			width: 70%;
		}
		.footerGrid a {
			text-decoration: none;
			font-weight: 700;
			font-size: 0.9rem;
			font-family: var(--Font_Normal);
		}
		.footerGrid a i {
			margin-right: 1rem;
			font-weight: 300;
		}

	}

