
footer{
	position: relative;
	z-index:2;
}
footer ul.footer-menu li{
    flex: 1;
    position: relative;
}
footer ul.footer-menu li:after{
    width: 3px;
    height: 3px;
    display: block;
    border-radius: 50%;
    opacity: 0.7;
    background: var(--primary);
    position: absolute;
    top: calc(50% - 1.5px);
    left: -1.5px;
    content: " ";
}
footer ul.footer-menu li:last-child:after{
    display: none;
}
footer ul.footer-menu li a:hover {
    color: var(--primary);
}
footer .newsletter-trigger {
    position: fixed;
    background: var(--secondary);
    bottom: 1.8rem;
    left: 1.8rem;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 2rem;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
	z-index: 2;
}

footer .newsletter-box{
    position: fixed;
    bottom: 1.9rem;
    left: 5rem;
    height: 50px;
    border-radius: 999px;
    padding: 1rem;
    background: var(--secondary-dark);
    width: 190px;
    display: none;
}
footer .newsletter-box.is-active{
    display: block;
}



@media (max-width: 575px) {
    footer ul.footer-menu li {
		position: relative;
		display: inline-block;
		width: 24%;
		margin-bottom: 10px;
	}
	footer ul.footer-menu li:nth-child(4n):after {
		display: none;
	}
}