.menu {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: calc(100%-400px);
    background-color: var(--primaryColor);
    color: white;
    width: 0px;
    border-bottom-left-radius: 100%;
    height: 0px;
    transition: .5s ease, height .4s ease;
    overflow-y: scroll;
}

.menu {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu::-webkit-scrollbar {
    display: none !important;
}

#menu a {
    color: white;
    text-decoration: none;
    font-size: 1.6em;
    font-weight: bolder;
}

.social-links {
    bottom: 0;
    left: 0;
    right: 0;
}

.social-links i {
    cursor: pointer;
    font-size: 1em;
}

.social-links i:hover {
    color: #081c3a;
}

.menu li {
    list-style: none;
}

#closeMenu {
    color: white;
    font-size: 1.9em;
    cursor: pointer;
}

#openMenu {
    font-size: 1.9em;
    cursor: pointer;
    color: white;
}

#menu ul li {
    cursor: pointer;
}

#menu ul li:hover,
#menu ul a:hover {
    color: #081c3a;
}

#menu ul {
    line-height: 1.2em;
}


/** MENU HAMBURGER **/

.menu-btn {
    cursor: pointer;
    transition: .2s ease-in-out;
}

.menu-btn,
.brand {
    z-index: 500 !important;
}

.top-menu:hover .menu-btn {
    background-color: black;
}

.menu-btn_hamburger {
    width: 30px;
    height: 4px;
    background-color: white;
}


/* .top-menu:hover #menu-btn_hamburger_top {
    transform: rotate(90deg);
    background-color: transparent;
}

.top-menu:hover #menu-btn_hamburger_center {
    transform: rotate(180deg);
}

.top-menu:hover #menu-btn_hamburger_bottom {
    transform: rotate(90deg) translateX(-8px);
} */

.menu-btn_hamburger {
    transition-delay: 30ms;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
}

#menu-btn_hamburger_center {
    transition-duration: .35s;
}

.top-menu-item {
    cursor: pointer;
    background-color: white;
    color: black;
    font-weight: bold;
    transition: .4s ease-in-out;
}

.top-menu-item div:hover {
    color: var(--primaryColor);
    transition: .4s ease-in-out;
}

.top-menu-container {
    position: relative;
    top: -200px;
    transition: top .6s ease-in-out, opacity .9s ease-in-out;
    opacity: 0;
}

.floating-socials-btn__links__item {
    font-size: 1.5em !important;
}

@media(max-width:768px) {
    .floating-socials-btn__links {
        width: 50% !important;
    }

    .floating-socials-btn__links__item {
        font-size: 1.2em !important;
    }
}


/** MENU HAMBURGER **/