/* .navbar-header {
    position: relative;
    width: 100%;
    background-color: var(--color-blue-primary);
    font-family: "nunito-bold";
    font-size: 2rem;
    line-height: 44px;
    font-weight: 700;
    color: var(--color-yellow-primary);
    display: flex;
    align-items: center;
} */

/* .module-content {
    position:absolute; 
    left:0px; 
    top:0px; 
    width:100%; 
    height:100%; 
    z-index:30;
} */

.navbar-footer {
    width: 100%;
    background-color: var(--color-blue-1-secondary);
    color: var(--color-white);
    position: relative;
}

.navbar-footer .footer-icon-left {
    height: 110px;
    position: absolute;
    bottom: -15px;
    left: 0;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.navbar-footer .footer-icon-right {
    height: 120px;
    position: absolute;
    bottom: -10px;
    right: 0;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}