
body {
	margin: 0;
	font-size: 62.5%;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
}

footer {
	color: grey;
	background: var(--secondary);
}

.footer-wrapper {
	display: flex;
	flex-direction: column;
	padding-top: 2em;
}

.newsletter {
	width: 80%;
	margin: auto;
	max-width: 700px;
	margin-bottom: 1em;
}

.newsletter-info {
	font-size: 1.7em;
	text-align: center;
	text-decoration: underline;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
}

#newsletter {
	font-size: 1.5em;
	border-radius: 3px;
	padding: 1em;
	border: 2px solid grey;
	outline: none;
}

#newsletter-submit {
	background: none;
	border: 2px solid var(--primary);
	color: white;
	padding: 1em;
	background: var(--primary);
	font-weight: bolder;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1.5em;
	border-radius: 3px;
}

#newsletter-submit:hover {
	background-color: var(--primary-highlight);
	border-color: var(--primary-highlight);
	transition: 0.5s;
}

.newsletterErrorBox {
	height: 30px;
	margin-bottom: 1em;
	border-radius: 5px;
	display: flex;
}

.newsletterErrorMessage {
	font-size: 1.5em;
	color: white;
	margin: auto;
	text-decoration: none
}

.success {
	background-color: rgb(114, 223, 114);
	border: 1px solid green;
}

.failed {
	background-color: rgb(235, 99, 99);
	border: 1px solid red;
}

.footer-follow-us {
	display:  flex;
	flex-direction: column;
	width: 100%;
	margin: auto;
	margin-top: 1em;
}

.follow-us-icons
{
	margin: auto;
}

.follow-us-icons img {
	width: 4em;
	margin: auto;
}

.fa-facebook {
	color: #215595;
	/* background: white; */
	border: 2px solid #215595;
	border-radius: 30px;
}

.footer-section {
	width: 100%;
}

footer p {
	color: white;
	margin: 0.5rem auto;
	font-size: 1.5em;
	font-family: 'Montserrat', sans-serif;
}

.hide {
	display: none;
	overflow: hidden;
}


