.responsiveMenuContainer {
    max-width: 1920px;
    margin-left: 16px;
    margin-right: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 1;
    background-image: url(../assets/img/Background-secondary.png);
    padding-top: 16px;
    padding-bottom: 16px;
  
}

.navigationsLinks{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.navigationsLinks li{
    color: white;
    text-decoration: none;
}

.navigationsLinks li:hover{
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
}

#responsiveMenu {
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: center
}

#calledMenuInResponsive {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

@media(max-width:1029px) {
    #calledMenuInResponsive {
        position: absolute;
        top: 64px;
        width: 100vw;
    }
}

#calledMenuInResponsive.active-calledMenuInResponsive {
    max-height: 300px;
}