nav {
    top: 0;
    left: 0;
    right: 0px;
    border-bottom: 2px solid #fff000;
    z-index: 101;
}

.user-icon {
    position: fixed;
    z-index: 102;
    top: 18px;
    right: 10px;
    width: 40px;
}

    .user-icon img {
        max-width: 100%;
    }

.menu {
    display: grid;
    grid-template-columns: 1fr 330px 1fr;
    padding: 0px;
}

.menu-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 101;
    max-width: 400px;
    margin-left: auto;
}

.menu-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 101;
    max-width: 400px;
    margin-right: auto;
}

.menu-center {
    margin: auto;
    position: relative;
    min-height: 40px;
    width: 100%;
    z-index: 101;
}

    .menu-center img {
        width: 100%;
        max-width: 200px
    }

.menu a {
    font-family: 'Barlow-BoldItalic';
    color: #c21931;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    text-align: center;
    width: 100%;
    display: inline-block;
    padding: 0px;
    font-weight: bold;
}

.menu .inciar-sesion {
    font-size: 12px !important;
    font-weight: 100;
    padding: 10px 0px 10px 0px;
}

.user, .bars {
    display: none;
    position: fixed;
    z-index: 103;
    color: white;
    top: 5px;
    font-size: 25px;
}

.user {
    left: 30px;
    top: -8px;
}

    .user i {
        font-size: 25px;
    }

.bars {
    right: 30px;
}

@media (max-width: 1000px) {
    .menu {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 57px;
    }

    .circle-container {
        top: -10px;
    }

    .menu-center img {
        position: relative;
        max-width: 170px;
        transform: translateX(17px);
    }
    
    .menu-center {
        text-align: center;
    }
    
    nav {
        padding-bottom: 30px;
    }

    .menu .menu-right, .menu .menu-left {
        display: none;
    }

    .user, .bars {
        display: block;
        color: #ffe638 !important;
    }

    .menu a {
        text-align: inherit;
        width: auto;
    }

    .user-icon {
        top: 11px;
        right: 63px;
        width: 32px;
    }
}


#mobileMenu {
    display: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

#mobileMenuBg {
    position: fixed;
    top: 0px;
    bottom: 0;
    right: 0;
    background: #ff3601;
    opacity: 0;
    transform: translateX(105%);
    z-index: 100;
    transition: all .3s ease;
    width: 70%;
}

@media only screen and (max-width: 1000px) {
    .nav-right {
        display: none;
    }

    #mobileMenu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        right: 5px;
        top: 8px;
        z-index: 104;
    }


    #mobileMenuBg.clicked {
        opacity: 1;
        transform: translateX(0%);
        transition: all .3s ease;
    }
}


#mobileMenuBg ul {
    list-style-type: none;
    font-family: "Barlow Condensed" !important;
    text-align: center;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    row-gap: 6%;
}

#mobileMenuBg a, #mobileMenuBg a:visited {
    text-decoration: none;
    font-size: 18px;
    font-family: "Barlow Condensed" !important;
    color: #ffe638;
    font-weight: bold;
}

#mobileMenuBg .inciar-sesion {
    padding: 10px;
}

.share {
    max-width: 50px;
    margin-left: 20px;
}


@media only screen and (max-width: 1000px) {
    .share {
        display: none;
    }
}

.share-m{
    max-width:60px;
}