.footer-container{
	position: fixed;
	bottom: 0;
	left: 0;
  	width: 100%;
	background: var(--white);
	display: flex;
	justify-content: space-evenly;
	z-index: 99;
	border-top: 1px solid var(--border-color);
}

.footer-container div:nth-child(3) > .footbar-menu .footbar-icon{
	background: var(--primary);
	color: var(--white);
	width: 40px;
	height: 35px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	position: relative;
}

.footbar-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.7rem;
    line-height: 1;
    width: 70px;
    height: 2em;
	color: #828282;
}
.footbar-menu:not(.menu-active):hover{
	color: #828282;
	text-decoration: none;
}
.footbar-menu.menu-active:hover{
	color: var(--primary);
	text-decoration: none;
}
.footbar-icon i{
	font-size: 1.4rem;
}
.footbar-title{
	font-size: 0.7rem;
	white-space: nowrap;
}
.footbar-menu.menu-active{
	color: var(--primary);
	transform: scale(1.03);
}
.footbar-menu.menu-active .footbar-title{
	color: #828282;
	font-weight: 500;
}
.footbar-menu.menu-active .ri-home-4-line:before{
	content: "\EE1C";
}
.footbar-menu.menu-active .ri-community-line:before{
	content: "\ebb9";
}
.footbar-menu.menu-active .ri-building-2-line:before{
	content: "\eb08";
}
.footbar-menu.menu-active .ri-user-3-line:before{
	content: "\F255";
}
.menu-active:before{
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 2px;
	border-radius: 0 0 10px 10px;
	background: var(--primary);
}
.menu-active:after{
	content: '';
	position: absolute;
	background: linear-gradient(180deg, var(--primary) -130%, rgba(255, 255, 255, 0) 100%);
	width: 100%;
	height: 20px;
	top: 0;
}
.img-footbar{
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	object-fit: cover;
	margin-top: -5px;
}