/* CSS Document */

/* Here we save the footer-related responsive css. Everything used on footer for smaller devices (except for the colors) should be here */

@media screen and (min-width: 900px){
	body{
		padding-bottom: 440px;
	}
	
	footer{
		position: absolute;
		bottom: 0px;
		width: 100%;
	}
}

@media screen and (max-width: 900px){
	footer ul#footer_menu {
		font-size: 1.1rem;
	}	
}


@media screen and (max-width: 800px){
	
	footer ul#footer_menu{
		display: none;
	}
	
	footer #footer_container{
		padding-top: 257px;
		background-size: contain;
	}
	
	footer #footer_bottom img{
		margin-bottom: 30px;
	}
	
	footer #footer_social{
		margin-top: -150px;
		flex-wrap: wrap;
		width: auto;
	}
	
	footer #footer_bottom{
		max-width: calc(100% - 20px);
		padding: 0 10px;
	}
	
	footer #footer_bottom img{
		max-width: 100%;
		width: 200px;
	}

	footer #footer_social img{
		width: 35px;
		margin: 0 5px 10px 5px;
	}

	footer ul#footer_menu {
		font-size: 1.1rem;
	}	
}

@media screen and (max-width: 525px){
	
	footer #footer_social{
		width: calc(100% - 20px);
		padding: 0 10px;
		justify-content: space-around;
	}
	
	footer #footer_bottom span{
		font-size: 0.6rem;
	}
	
}

@media screen and (max-width: 300px){
	
	footer #footer_bottom span{
		font-size: 0.4rem;
	}
	
}
