
	footer{
		background: #e7e5e5;
	    /*height: 100px;*/
		height: 100%;
		padding: 20px 0 0 0;
		color: #fff;
		font-family: regular;
	}
	.icon_link img {
		height: 60px;
		filter: grayscale(100%);
	}
	.icon_link p{
		filter: grayscale(100%);
		/*text-align: center; */
	}
	.icon_link:hover img{
		filter: grayscale(0%);
	}
	.icon_link:hover p{
		color: var(--clr-primary-1);
		filter: grayscale(0%);
	}

	.footer_bottom {
		background: #3e3b40;
	    padding: 10px 0;
	    color: #fff;
    }

    .developer{
    	float: right;
    }
    .copyright{
    	float: left;
    }

    @media screen and (max-width: 500px){
    	.icon_link img {
			height: 40px;
		}
    	.icon_link p {
			font-size: 8px;
		}
		.developer, .copyright{
	    	text-align: center;
	    	float: none;
	    	font-size: 12px;
	    	padding-top: 5px;
	    	align-items: center;
	    }
	    .copyright span {
	    	display: inline-block;
		    vertical-align: top;
		    width: 300px;
	    	word-wrap: break-word;
	    	text-align: center;
	    }
    }