/*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 {
    font-size: 16px;
}

body {
    font-size: 1rem;
}

/*settting per eliminare la scroll bar visibile, su firefox resta visibile in quanto non basato su webkit*/
::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

svg.svg-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.menu-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    z-index: 9999999999999999999;
    display: none;
    font-family: 'Outfit', sans-serif;
}

span.menu-close-button {
    width: calc(12vh - 50px);
    height: calc(12vh - 50px);
    color: #FFF;
    font-size: 2em;
    position: fixed;
    top: 25px;
    right: 25px;
    border-radius: 50px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #FFF;
    z-index: 9999999999 !important;
    display: none;
}

span.menu-close-button:hover {
    transition: 0.2s;
    transform: scale(1.1);
}

.menu-close-icon {
    fill: #FFF;
}

/*GESTIONE DELLE ICONE HEADER*/
.header {
    width: 100vw;
    max-width: 100vw;
    height: 12vh;
    background: #000;
    border-bottom-left-radius: 120px;
    position: fixed;
    z-index: 999999999;
}

/*data-container*/
#data-container {
    width: 96vw;
    min-height: 83vh;
    height: auto;
    margin-top: 17vh;
    margin-right: 2vw;
    margin-left: 2vw;
}

@keyframes headerHidden {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes headerShowed {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes iconsGoUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-2.5rem);
    }
}

@keyframes iconsGoDown {
    from {
        transform: translateY(-2.5rem);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes titleGoUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-1.5rem);
    }
}

@keyframes titleGoDown {
    from {
        transform: translateY(-1.5rem);
    }

    to {
        transform: translateY(0);
    }
}

.hidden-header {
    animation: headerHidden 0.2s forwards;
}

.showed-header {
    animation: headerShowed 0.2s forwards;
}

.icons-container-up {
    animation: iconsGoUp 0.2s forwards;
}

.icons-container-down {
    animation: iconsGoDown 0.2s forwards;
}

.title-go-up-animation {
    animation: titleGoUp 0.2s forwards;
}

.title-go-down-animation {
    animation: titleGoDown 0.2s forwards;
}

.main-logo {
    position: absolute;
    width: 10vw;
    top: 1.5vw;
    left: 45vw;
    filter: invert(100%);
}

.menu-icon {
    position: absolute;
    top: 1.5vw;
    right: 2vw;
    cursor: pointer;
    color: #FFF;
    font-size: 1rem;
}

.menu-bar {
    width: 3rem;
    height: 3rem;
    fill: #FFF;
    display: block;
    /*--------------------------------------------------> da rimuovere appena pronto il menu e unificato il sito studios*/
}

.back-icon {
    position: absolute;
    top: 1.5vw;
    right: calc(2vw + 2vw + 1rem);
    cursor: pointer;
    color: #FFF;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-bar,
.sector-menu {
    width: 2.5rem;
    height: 2.5rem;
    fill: #FFF;
}

/************************************/
/*                                  */
/*  GESTIONE DEL MENU SECONDARIO    */
/*                                  */
/************************************/
.menu-sector {
    width: 20vw;
    height: 12vh;
    position: absolute;
    top: 0;
    right: 18.5vw;
    color: #FFF;
    background: transparent;
}

.menu-sector-list {
    list-style: none;
    width: 20vw;
    height: 12vh;
    display: inline-flex;
    align-items: center;
    column-count: 1fr
}

.menu-sector-item {
    width: auto;
    margin: 0.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0rem;
    /*0.1rem*/
    cursor: pointer;
    list-style-type: none;
    display: inline-flex;
    align-items: center;
    transition: 0.2s;
    color: #707070;
}

.menu-sector-item:hover {
    color: #FFF;
    transition: 0.2s;
}

.menu-sector-item-icon {
    justify-self: flex-end;
}

.menu-sector-item-list,
.creators-list {
    display: grid;
    position: absolute;
    padding: 0.5rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    top: 4vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    display: none;
    white-space: nowrap;
    /*evita l'andata a capo dei valori della tendina*/
}

.sub-menu-item {
    width: 100%;
    color: #FFF;
    clear: both;
    transition: 0.2s;
}

.sub-menu-item:hover {
    transition: 0.2s;
    opacity: 0.5;
}

@keyframes closingButtonMenuShow {
    from {
        display: none;
        opacity: 0;
    }

    to {
        display: flex;
        opacity: 1;
    }
}

@keyframes closiungButtonMenuHide {
    from {
        display: flex;
        opacity: 1;
    }

    to {
        display: none;
        opacity: 0;
    }
}

.show-menu-close-button {
    animation: closingButtonMenuShow;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.hide-menu-close-button {
    animation: closiungButtonMenuHide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.first-step-menu {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 88vh;
    width: 20vw;
    background: #180027;
    border-top-left-radius: 120px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
    transform: translateX(20vw);
}

ul.first-step-list,
ul.second-step-list,
ul.third-step-list {
    width: 15vw;
    max-width: 15vw;
    height: calc(3vh * 6);
    /*moltiplichiamo l'altezza di una singola voce e la moltiplichiamo per le voci presenti in quel menu*/
    max-height: calc(3vh * 6);
    /*come sopra*/
    list-style: none;
    height: auto;
    max-height: 40vh;
    color: #FFF;
}

ul.second-step-list {
    width: 15vw;
    max-width: 15vw;
}

li.first-step-item,
li.second-step-item,
li.third-step-item {
    width: auto;
    min-width: auto;
    clear: both;
    height: 3vh;
    min-height: 3vh;
    max-height: 3vh;
    color: #FFF;
    letter-spacing: 1.5px;
    margin-top: 5px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: left;
    border-radius: 50px;
    background: transparent;
    padding: 15px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.2s;
}

li.first-apply-button {
    background: #6C00AA;
}

li.first-step-item:hover {
    transition: 0.2s;
    background: #BC00FF;
}

li.second-step-item {
    justify-content: right;
}

li.second-step-item:hover {
    transition: 0.2s;
    background: #9000FF;
}

li.third-step-item:hover {
    transition: 0.2s;
    background: #480080;
}

li.third-apply-button {
    background: #480080;
    color: #BC00FF;
    font-weight: 500;
}

/*GESTIONE SECONDO STEP*/
.second-step-menu {
    position: absolute;
    right: 10vw;
    bottom: 0;
    height: 88vh;
    width: 30vw;
    background: #6C00AA;
    border-top-left-radius: 120px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 10vw;
    z-index: 99999999;
    transform: translateX(40vw);
}

.third-step-menu {
    position: absolute;
    right: 30vw;
    bottom: 0;
    height: 88vh;
    width: 30vw;
    background: #BC00FF;
    border-top-left-radius: 120px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 10vw;
    z-index: 9999999;
    transform: translateX(60vw);
}

@keyframes first-animation-movement {
    0% {
        transform: translateX(20vw);
    }

    100% {
        transform: translateX(0vw);
    }
}

@keyframes first-animation-closing {
    0% {
        transform: translateX(0vw);
    }

    100% {
        transform: translateX(20vw);
    }
}

@keyframes second-animation-movement {
    0% {
        transform: translateX(40vw);
    }

    100% {
        transform: translateX(0vw);
    }
}

@keyframes second-animation-closing {
    0% {
        transform: translateX(0vw);
    }

    100% {
        transform: translateX(40vw);
    }
}

@keyframes third-animation-movement {
    0% {
        transform: translateX(60vw);
    }

    100% {
        transform: translateX(0vw);
    }
}

@keyframes third-animation-closing {
    0% {
        transform: translateX(0vw);
    }

    100% {
        transform: translateX(60vw);
    }
}

.move-the-first {
    animation: first-animation-movement;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.close-the-first {
    animation: first-animation-closing;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.move-the-second {
    animation: second-animation-movement;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.close-the-second {
    animation: second-animation-closing;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.move-the-third {
    animation: third-animation-movement;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.close-the-third {
    animation: third-animation-closing;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

#back-to-top {
    font-size: 2em;
    color: #FFF;
    padding: 13px;
    position: fixed;
    display: none;
    bottom: 45px;
    right: 110px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    z-index: 9999999;
}

.mobile-menu-element,
.division-bar {
    display: none;
}

/*GESTIONE DEI MENU SECONDARI*/

/**************************/
/**************************/
/***                    ***/
/***    MOBILE SETTING  ***/
/***                    ***/
/**************************/
/**************************/

@media (min-width: 279px) and (max-width: 823px) {
    .header {
        height: 8vh;
        /*6vh*/
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.83) 100%);
        border-bottom-left-radius: 0;
    }

    .main-logo {
        position: absolute;
        width: 35vw;
        top: 4vw;
        left: 1rem;
        filter: invert(100%);
    }

    .back-bar {
        width: 2rem;
        height: 2rem;
        fill: #FFF;
    }

    .back-icon {
        position: absolute;
        top: 4vw;
        right: calc(2vw + 6vw + 1rem);
        cursor: pointer;
        color: #FFF;
        font-size: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-close-icon {
        fill: #FFF;
    }

    .mobile-menu-element {
        display: block;
    }

    .move-up-button {
        position: absolute;
        padding: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: #FFF;
        bottom: 10px;
        right: 10px;
        border-radius: 50px;
    }

    span.menu-close-button {
        width: calc(15vh - 3.125rem);
        height: calc(15vh - 3.125rem);
        color: #FFF;
        font-size: 4rem;
        position: fixed;
        border-radius: 3.125rem;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.2s;
        border: 1px solid #FFF;
        z-index: 9999999999;
        top: calc((10vh - 48px) / 2);
        right: 3vw;
        opacity: 0;
        display: none;
    }
}

@keyframes closingButtonMenuShow {
    from {
        display: none;
        opacity: 0;
    }

    to {
        display: flex;
        opacity: 1;
    }
}

@keyframes closiungButtonMenuHide {
    from {
        display: flex;
        opacity: 1;
    }

    to {
        display: none;
        opacity: 0;
    }
}

.show-menu-close-button {
    animation: closingButtonMenuShow;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.hide-menu-close-button {
    animation: closiungButtonMenuHide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.first-step-menu {
    position: absolute;
    right: 0;
    bottom: unset;
    top: 0;
    height: 38vh;
    width: 100vw;
    background: #180027;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
    transform: translateY(-70vh);
    padding-top: 5vh;
}

ul.first-step-list,
ul.second-step-list,
ul.third-step-list {
    width: 80vw;
    max-width: 80vw;
    height: calc(3vh * 6);
    /*moltiplichiamo l'altezza di una singola voce e la moltiplichiamo per le voci presenti in quel menu*/
    max-height: calc(3vh * 6);
    /*come sopra*/
    list-style: none;
    height: auto;
    max-height: 40vh;
    color: #FFF;
    text-align: right;
}

li.first-step-item,
li.second-step-item,
li.third-step-item {
    width: auto;
    min-width: auto;
    clear: both;
    height: 3vh;
    min-height: 3vh;
    max-height: 3vh;
    color: #FFF;
    letter-spacing: 1.5px;
    margin-top: 5px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: right;
    border-radius: 50px;
    background: transparent;
    padding: 15px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.2s;
}

li.first-apply-button {
    background: #6C00AA;
}

li.first-step-item:hover {
    transition: 0.2s;
    background: #BC00FF;
}

li.second-step-item {
    justify-content: right;
}

li.second-step-item:hover {
    transition: 0.2s;
    background: #9000FF;
}

li.third-step-item:hover {
    transition: 0.2s;
    background: #480080;
}

li.third-apply-button {
    background: #480080;
    color: #BC00FF;
    font-weight: 500;
}

/*GESTIONE SECONDO STEP*/
.second-step-menu {
    position: absolute;
    right: 0;
    bottom: unset;
    top: 0;
    height: 38vh;
    width: 100vw;
    background: #6C00AA;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: unset;
    padding-right: 0;
    z-index: 99999999;
    transform: translateY(-45vh);
    padding-top: 5vh;
}

.third-step-menu {
    position: absolute;
    right: 0;
    bottom: unset;
    top: 0;
    height: 38vh;
    width: 100vw;
    background: #BC00FF;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 0;
    z-index: 9999999;
    transform: translateY(-80vh);
    padding-top: 5vh;
}

@keyframes first-animation-movement {
    0% {
        transform: translateY(-20vh);
    }

    100% {
        transform: translateY(0vh);
    }
}

@keyframes first-animation-closing {
    0% {
        transform: translateY(0vh);
    }

    100% {
        transform: translateY(-20vh);
    }
}

@keyframes second-animation-movement {
    0% {
        transform: translateY(-40vh);
    }

    100% {
        transform: translateY(35vh);
    }
}

@keyframes second-animation-closing {
    0% {
        transform: translateY(35vh);
    }

    100% {
        transform: translateY(-40vh);
    }
}

@keyframes second-animation-halfway {
    0% {
        transform: translateY(35vh);
    }

    100% {
        transform: translateY(10vh);
    }
}

@keyframes third-animation-movement {
    0% {
        transform: translateY(-80vh);
    }

    100% {
        transform: translateY(45vh);
    }
}

@keyframes third-animation-closing {
    0% {
        transform: translateY(45vh);
    }

    100% {
        transform: translateY(-80vh);
    }
}

.move-the-first {
    animation: first-animation-movement;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.close-the-first {
    animation: first-animation-closing;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.move-the-second {
    animation: second-animation-movement;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.halfway-the-second {
    animation: second-animation-halfway;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.close-the-second {
    animation: second-animation-closing;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.move-the-third {
    animation: third-animation-movement;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.close-the-third {
    animation: third-animation-closing;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes closingButtonMenuShow {
    from {
        display: none;
        opacity: 0;
    }

    to {
        display: flex;
        opacity: 1;
    }
}

@keyframes closiungButtonMenuHide {
    from {
        display: flex;
        opacity: 1;
    }

    to {
        display: none;
        opacity: 0;
    }
}

.show-menu-close-button {
    animation: closingButtonMenuShow;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.hide-menu-close-button {
    animation: closiungButtonMenuHide;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

#back-to-top {
    font-size: 2.5rem;
    /*font-size: 2em;*/
    color: #FFF;
    padding: 8px;
    position: fixed;
    display: none;
    bottom: 3rem;
    /*bottom: 80px;*/
    right: 1rem;
    /*right: 16px;*/
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    z-index: 9999999;
}

.menu-container {
    width: 100vw;
    height: 100vh;
    background-color: #000000e4;
    backdrop-filter: blur(0.2rem);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999999999;
    color: #FFF;
    text-transform: uppercase;
}

.studios-menu-container {
    width: 20vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    box-sizing: border-box;
    background: #FFF;
    color: #000;
}

.menu-logo {
    width: 15vw;
    height: auto;
    position: absolute;
    top: 20vh;
    /*25vh*/
    left: 2rem;
    cursor: pointer;
}

.list-container {
    width: calc(20vw - 2rem);
    height: 65vh;
    position: absolute;
    bottom: 5vh;
    left: 2rem;
}

ul.studios-menu-list {
    width: calc(20vw - 2rem);
    position: absolute;
    top: 0;
    left: 1rem;
    list-style: none;
}

.studios-menu-list-item {
    width: calc(20vw - 2rem);
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 300;
    cursor: pointer;
    text-transform: uppercase;
}

.mobile-icon {
    display: none;
}

.studios-sub-menu-item {
    width: 17vw;
    clear: both;
    font-weight: 300;
    margin-left: 2vw;
    font-size: 1.2rem;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
}

.sector-menu-container {
    width: 80vw;
    height: 80vh;
    position: absolute;
    right: 0;
    top: 20vh;
    /*10vh*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    color: #FFF;
    text-transform: uppercase;
}

.single-sector-menu-container {
    width: calc(78vw / 4);
    height: calc(80vh / 2);
    padding: 1rem;
    box-sizing: border-box;
}

.single-sector-title {
    width: calc((78vw / 4) - 2rem);
    font-weight: 900;
    letter-spacing: -0.1rem;
    font-size: 2.85rem;
    line-height: 2.5rem;
    cursor: pointer;
    transition: 0.2s;
}

.single-sector-title:hover {
    transition: 0.2s;
    opacity: 0.3;
}

.single-sector-main-list {
    width: calc((78vw / 4) - 2rem);
    list-style: none;
    display: inline;
}

.single-sector-main-item {
    font-size: 1rem;
    width: auto;
    margin-right: 0.5rem;
    font-weight: 100;
    cursor: pointer;
    margin-top: 0.3rem;
    letter-spacing: 0.1rem;
    transition: 0.2s;
}

.single-sector-main-item:hover {
    transition: 0.2s;
    opacity: 0.2;
}

.single-sector-list {
    width: calc((78vw / 4) - 2rem);
    list-style: none;
    margin-top: 1.5rem;
}

.single-sector-item {
    font-weight: 300;
    font-size: 1.2rem;
    clear: both;
    letter-spacing: 0.1rem;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: 0.2s;
    cursor: pointer;
    padding-top: 0.7rem;
}

span.division-border {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    float: left;
    height: 1px;
    background: #FFF;
}

.single-sector-item:hover {
    padding-left: 0.2rem;
    transition: 0.2s;
}

/*GESTIONE MOBILE*/
@media (min-width: 279px) and (max-width: 823px) {
    #back-to-top {
        bottom: 5rem;
    }

    .menu-container {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        min-height: 100vh;
        background-color: #000000e4;
        backdrop-filter: blur(0.2rem);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999999999999;
        color: #FFF;
        text-transform: uppercase;
        overflow-x: hidden;
    }

    .menu-sector {
        display: none;
    }

    .studios-menu-container {
        width: 100vw;
        height: auto;
        /* min-height: 40vh; */ /*prima 40vh - nuovo sistema, richiude il menu e nasconde tutte le voci sottostanti, si riapre al click su "SECTORS"*/
        position: relative;
        top: unset;
        left: unset;
        margin-top: 0;
        margin-left: 0;
    }

    .menu-logo {
        width: 50vw;
        position: absolute;
        top: 1rem;
        left: 1rem;
    }

    .list-container {
        width: calc(100vw - 2rem);
        height: auto;
        position: relative;
        top: unset;
        left: unset;
        margin-top: 5rem;
        margin-left: 0;
    }

    ul.studios-menu-list {
        width: calc(100vw - 2rem);
        position: relative;
        top: 0;
        left: 0;
        list-style: none;
    }

    .studios-menu-list-item {
        width: calc(100vw - 2rem);
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
        font-weight: 300;
    }

    .mobile-icon {
        display: block;
        color: #000;
        fill: #000;
    }

    .studios-sub-menu-item {
        width: calc(100vw - 16vw);
        font-weight: 100;
        margin-left: 16vw;
        font-size: 1.1rem;
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
        display: none;
    }

    .sector-menu-container {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        position: relative;
        right: unset;
        top: unset;
        margin-left: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* 4 colonne di larghezza uguale */
        grid-template-rows: repeat(8, auto);
    }

    .single-sector-menu-container {
        width: 100vw;
        height: auto;
        min-height: 60vh;
        padding: 1rem;
        box-sizing: border-box;
        display: none;
    }

    .single-sector-title {
        width: calc(100vw - 2rem);
        font-weight: 900;
        letter-spacing: -0.1rem;
        font-size: 2.8rem;
        line-height: 2.5rem;
        transition: 0.2s;
    }

    .single-sector-main-list {
        width: calc(100vw - 2rem);
    }

    .single-sector-main-item {
        width: auto;
        font-size: 1rem;
        margin-right: 1rem;
        font-weight: 200;
        margin-top: 0.5rem;
    }

    .single-sector-list {
        width: calc(100vw - 2rem);
        margin-top: 1.5rem;
    }

    .single-sector-item {
        font-weight: 100;
        font-size: 1.2rem;
        margin-left: 0.5rem;
        transition: 0.2s;
        cursor: pointer;
    }

    .visible-sector-menu {
        display: block;
    }

    html,
    body {
        user-select: none;
    }

    /*division bar setting*/

    .division-bar {
        width: calc(100vw - 2rem);
        height: 1.1rem;
        display: flex;
        align-items: center;
        margin-top: 1rem;
    }

    .division-bar-1 {
        height: 1px;
        width: calc(((100vw - 2rem) / 5) * 1.5);
        background: #000;
    }

    .division-bar-2 {
        height: 1px;
        width: calc(((100vw - 2rem) / 5) * 1.5);
        background: #000;
    }

    .division-text {
        height: 1.1rem;
        width: calc(((100vw - 2rem) / 5) * 2);
        color: #000;
        font-weight: 900;
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.1rem;
    }

    .studios-menu-list-item-hidden{
        display: none;
    }
}

/*GESTIONE CARATTERI DESKTOP*/
@media (min-width: 1024px) and (max-width: 1279px) {
    html {
        font-size: 10px;
    }
}

@media (min-width: 1280px) and (max-width: 1365px) {
    html {
        font-size: 11px;
    }
}

@media (min-width: 1366px) and (max-width: 1439px) {
    html {
        font-size: 12px;
    }
}

@media (min-width: 1440px) and (max-width: 1679px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 1680px) and (max-width: 1919px) {
    html {
        font-size: 14px;
    }
}