.full-footer {
	border-radius: 20px 20px 0px 0px;
	background: #5DA9F7;
	box-shadow: 0px -4px 12px 0px rgba(0, 0, 0, 0.12);
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}
.ft-menu{
	display: flex;
	justify-content: space-around;
}
.ft-menu a{
	color: #fff;
	font-weight: 700;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.ft-menu a span.icon{
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: #fff;
	margin-bottom: 8px;
}
.ft-menu a:not(.active) span.icon img+img,
.ft-menu a.active span.icon img:first-child,
.ft-menu a:hover span.icon img:first-child{
	display: none;
}
.ft-menu a:hover span.icon img+img{
	display: block;
}
.ft-menu a.active span.icon,
.ft-menu a:hover span.icon{
	background-color: #FF710F;
}
@media only screen and (max-width: 991px) {
	.ft-menu a {
		font-size: 11px;
	}
	.ft-menu a span.icon {
		width: 35px;
		height: 35px;
		margin-bottom: 4px;
	}
}