/* Footer */

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-size: 10px;
	font-family: 'Montserrat';

}

html {
/*	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);     DISABLES */

}

#footer{
/*	margin: 10px auto; 
	width: 100%;  */
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;

}

.footer_container{
	background-color: #6B8E23;
	width: 100%;
	padding-bottom: 10px;
	
}

.social-icon{
/*	width: 100px;
	height: 100px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 200px;
	margin-right: 200px;
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center; */
    display: flex;
    justify-content: center;

}

.social-item img {
	filter: grayscale(1);
	transition: .3s ease filter;
 	display: flex;
  	justify-content: center;

}

#footer .social-item:hover img {
	filter: grayscale(0);

}

#footer .brand img{
	margin: 10px auto;
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;

}

#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: .1rem;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}

#footer p {
	color: white;
	font-size: 1.3rem;
	text-decoration: none;
	text-align: center;

}

#footer p a {
	color: white;
	font-size: 1.3rem;
	text-decoration: none;

}

