/*tipografias*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;900&display=swap');

body, html
{
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
    height: 100%;
}

#cont_menu
{
    width: 100%;
    height: 130px;
    position: fixed;
    border-bottom: 1px solid #5B5B5B;
    z-index: 30;
    top: 0;
}

.menu_secc
{
    width: 100%;
    display: block;
}

#menu_secc_sup
{
    height: 70px;
    background-color: white;
}

#menu_secc_bot
{
    height: 60px;
    background-color: #EFEFEF;
}

#menu_logo
{
    height: 45px;
    margin-top: 12.5px;
    margin-left: 20px;
    cursor: pointer;
}

#menu_secc_bot a p
{
    padding: 0;
    margin: 0;
    font-size: 10px;
    color: #5B5B5B;
    font-family: Montserrat;
    font-weight: 400;
    float: left;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 60px;
    vertical-align: middle;
    cursor: pointer;
}

#menu_secc_bot a:first-child p
{
    padding-left: 25px;
}

#icon_menu
{
    display: none;
}

/*estilos movil*/
@media (max-width:1024px)
{
    #cont_menu
    {
        width: 100vw;
        height: 10vh;
        position: fixed;
        border-bottom: 0px;
        z-index: 30;
        top: 0;
    }

    #menu_secc_top
    {
        height: 10vh !important;
    }

    #menu_logo
    {
        height: 6vh;
        margin-top: 2vh;
        margin-left: 2vh;
        cursor: pointer;
    }

    #icon_menu
    {
        display: inline-flex;
        position: fixed;
        height: 7vh;
        width: 7vh;
        top: 1.5vh;
        right: 2vh;
    }

    #menu_secc_bot
    {
        width: 50vw;
        margin-left: 50vw;
        height: 90vh;
        position: fixed;
        background-color: white;
        display: none;
    }

    #menu_secc_bot a p
    {
        padding: 0;
        margin: 0;
        font-size: 10px;
        color: #5B5B5B;
        font-family: Montserrat;
        font-weight: 400;
        text-align: center;
        cursor: pointer;
        display: block;
        width: 50vw;
    }

    #menu_secc_bot a:first-child p
    {
        padding-left: 0px;
    }
}