@media screen and (min-width: 480px) and (max-width: 1279px){
	@media screen and (orientation: portrait) {
		.module.footer{
			position: absolute;
			height: 22px;
			width: calc(100% - 20px);
			background: white;
			font-size: 13px;
			text-align: center;
			padding: 10px;
			font-family:'Open Sans', sans-serif;
			line-height: 25px;
			border-top: 1px solid lightgray;
		}
		.module.footer[data-tag="homepage"]{
			top: calc(300% - 120px);
		}
		.module.footer[data-tag="piattaforma"]{
			top: 9135px;
		}
		.module.footer[data-tag="contatti"]{
			top: 1000px;
		}
	}
	@media screen and (orientation: landscape) {
		.module.footer{
			position: absolute;
			height: 22px;
			width: calc(100% - 20px);
			background: white;
			font-size: 13px;
			text-align: center;
			padding: 10px;
			font-family:'Open Sans', sans-serif;
			line-height: 25px;
			border-top: 1px solid lightgray;
		}
		.module.footer[data-tag="homepage"]{
			top: calc(300% - 120px);
		}
		.module.footer[data-tag="piattaforma"]{
			top: 0px;
		}
		.module.footer[data-tag="contatti"]{
			top: 1000px;
		}
	}
}