/*GOOGLE FONT*/
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*HTML-BODY SETTING*/
html, body{
    position: relative;
    margin: 0;
    padding: 0;
    width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    height: auto;
    overflow-x: hidden;
    font-family: 'Jost', sans-serif;
    scroll-behavior: smooth;
    user-select: none;
    background: #FFFF;
    font-family: 'Outfit', sans-serif;
}
*{
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}
strong, span, em, br, a{
    position: unset;
    float: unset;
    margin: unset;
    padding: unset;
}
.header{
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    height: 12vh;
    min-height: 12vh;
    max-height: 12vh;
    background: #000;
    border-bottom-left-radius: 120px;
    z-index: 9999999;
}
.main-logo{
    position: absolute;
    width: 10vw;
    height: auto;
    top: 1.5vw;
    left: 45vw;
    filter: invert(100%);
}
.menu-icon{
    position: absolute;
    top: 1.5vw;
    right: 2vw;
    cursor: pointer;
}
.menu-bar{
    width: 48px;
    height: 48px;
    fill: #FFF;
    float: right;
}
/*GESTIONE MOBILE*/
@media (min-width: 279px) and (max-width: 823px) {
    .header {
        height: 6vh;
        min-height: 6vh;
        max-height: 6vh;
    }
    .menu-icon {
        top: 0vw;
        right: 1vw;
    }
    .main-logo {
        width: 30vw;
        top: 3.5vw;
        left: 35vw;
    }
}