/* FIXED FOOTER */
section.fixed-footer{
	position:fixed;
	z-index:100;
	bottom:0;
	left:0;
	width:100%;
	background:var(--blue-color-darker);
	transform:translateY(100%);
	transition:all 0.3s;
	box-shadow:0 0 16px rgba(0,0,0,0.1);
}
section.fixed-footer.visible{
	transform:translateY(0);
}
section.fixed-footer .row{
	display:flex;
	justify-content:center;
}
section.fixed-footer a.item{
	margin: 15px 0;
	text-align: center;
	display: block;
	border-right: 1px solid var(--blue-color);
	padding: 0 20px;
	transition:all 0.3s;
	border-bottom:none;
}
section.fixed-footer a.item .icon{
	color:#fff;
}
section.fixed-footer a.item:hover .icon{
	color:var(--yellow-color);
}
section.fixed-footer a.item:last-of-type{
	border:none;
}
section.fixed-footer a.item:hover{
}
section.fixed-footer .item p{
	margin: 0;
	text-transform: uppercase;
	font-size: 1em;
	font-weight: 700;
	line-height:1.3em;
	color:var(--yellow-color);
}
section.fixed-footer .item p.smaller{
	font-size:0.6em;
}
section.fixed-footer .icon{
	margin-bottom:5px;
}
section.fixed-footer .icon i{
	font-size:1.5em;
}

@media screen and (max-width:600px){
	section.fixed-footer a.item{
		padding:0 12px;
		width:33.3%;
	}
}