@font-face {
    font-family: 'CaviarDream';
    src: url('../fonts/caviar_dreams/CaviarDreams.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'CaviarBold';
    src: url('../fonts/caviar_dreams/CaviarDreams_Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}


@font-face {
    font-family: 'CaviarItalic';
    src: url('../fonts/caviar_dreams/CaviarDreams_Italic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}


html {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font-family: 'CaviarDream', sans-serif;
    line-height: 1;
    font-size: 14px;
}

ol,
ul,
h1 {
    list-style: none;
    padding: inherit;
    margin: inherit;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,

q:before,
q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*============================

    Front end Menu Principal

==============================*/

.menu-principal {
    width: 100%;
    height: 100vh;
}

.menu-principal .wrap {
    width: 100%;
    height: 100%;
    background-image: url(/img/background.jpg);
    background-position: center;
    background-size: cover;
    display: grid;
    grid-template: 20% 80% / 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.wrap .menu {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: 100% / 60% 40%;
}

.menu .logo {
    display: flex;
    justify-content: center;
    align-items: end;
}

.menu .logo img {
    width: 100%;
    box-sizing: border-box;
    padding: 9% 9% 2% 9%;
}

.wrap .title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap .title h1 {
    color: white;
    background-color: #0f154932;
    font-family: 'montserrat';
    font-size: 2.9vw;
    letter-spacing: .1vw;
    box-sizing: border-box;
    padding: 1%;
    border-radius: .6vw;
    text-shadow: .2vw .2vw .3vw black;
    user-select: none;
}

@media (max-width: 800px) {

    .menu-principal .wrap {
        display: flex;
        flex-direction: column;
    }

    .wrap .menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wrap .title h1 {
    font-size: 5.9vw;
    text-align: center;
    margin-top: 6%;
    padding: 4% 2%;
}

}

/* Nav */

.menu .nav-area {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
}

.menu ul {
    width: 22vw;
}

.menu ul li {
    user-select: none;
    height: 100%;
    margin: 7% 0;
    display: flex;
}

.menu ul li a {
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(to right, rgb(230, 230, 230), rgb(167, 167, 167));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'segoe ui';
    font-size: 1.3vw;
    border-radius: 0 2vw 2vw 0;
    text-shadow: .1vw .1vw .2vw black, .1vw .1vw .2vw black;
}

.menu ul li .pleca {
    background-color: #3F4D59;
    width: .9vw;
    height: 6.5vh;
    transition: 100ms;
}

.nav-area ul li:hover .pleca {
    width: 1.9vw;
}

.nav-area ul li:hover a {
    background: white;
    text-shadow: inherit;
    color: black;
}

@media (max-width: 800px) {
    .menu .nav-area {
        display: flex;
        justify-content: center;
    }

    .menu ul {
        width: 75%;
    }

    .menu ul li a {
        font-size: 4.5vw;
        background: white;
        color: black;
        text-shadow: inherit;
    }

    .nav-area ul li:hover .pleca {
        width: .9vw;
    }
}