/* Roots */
:root{
    --negro: #21211E;
    --blanco: #E2E2D2;
    --azul-o: #2E4359;
    --azul-c: #A2B3BB;
    --acento: #E45252;
}

/* Tipo general */

@font-face{
    font-family: 'Alexandria';
    src: local('Alexandria Regular'), local('Alexandria-Regular'),
             url('../resc/tipos/Alexandria-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'Alexandria';
    src: local('Alexandria ExtraLight'), local('Alexandria-ExtraLight'),
             url('../resc/tipos/Alexandria-ExtraLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'Alexandria';
    src: local('Alexandria Bold'), local('Alexandria-Bold'),
             url('../resc/tipos/Alexandria-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html{
    max-width: 100vw !important;
    overflow-x: hidden;
}



* {
    font-family: 'Alexandria';
    color: var(--negro);
    transition: 0.5s;
}

.seleccionado{
    text-decoration: underline;
}

.seleccionado:hover{
    text-decoration-color: var(--acento);
}

.noscroll{
    overflow: hidden;
}

.hide{
    display: none !important;
}

body{
    max-width: 100vw;
    background-color: var(--blanco);
}

a:hover{
    color: var(--acento);
}

.fullpage{
    width: 100vw;
    height: 100vw;
}

/*  Menú principal */


#menu_principal{
    position: fixed;
    background-color: var(--blanco);


    display: flex;
    flex-direction: column;

    height: 100%;
    min-height: 100%;
    max-height: 100%;
}

    #menu_desp ul{
        margin-top: -20vh;
    }

    #menu_desp ul li{
        font-size: 50%;
    }

    #menu_desp a:hover:before{
        content: '→';

    }

    #menu_principal *{
        text-transform: uppercase;
        max-height: 100%;
    }

    #menu_principal #principio{
        height: 20vh;
        padding: 10px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
       
    }

    #menu_principal #principio #logo{
        height: 100%;
    }

    

    #menu_principal #principio #cerrar{
        height: 50%;
        cursor: pointer;
    }

    #menu_principal #menu_desp{
        max-height: 10vh;
        padding: 15%;
        font-size: 7vw;
    }

    #menu_principal #idiomas{
        margin-top: -20vh;
        font-size: 2vw;
        text-align: right;
    }

    #menu_principal #idiomas .lista_menu{
        padding-right: 7%;
    }


#contelacion *{
    transition: 0.0s;
}

h2{
    font-size: 4vw;
    color: var(--blanco);
}


section, footer{
    padding: 8%;
}

#footer{
    background-color: var(--negro);
    padding-bottom: 2%;
}

#footer *{
    color: var(--blanco);
}

#footer #legal{
    width: 100%;
    padding-top: 5%;
    text-align: center;
    font-weight: lighter;
}

input[type=button]{
    background-color: var(--acento);
    cursor: pointer;
    padding: 1vh;
    font-size: 2vh;
    color: var(--blanco);
}

input[type=button]:hover{
    background-color: var(--negro);
    color: var(--blanco);
}