/*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{
    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;
}
.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;
    cursor: pointer;
}
.mobile-menu-element{
    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(4vw + 6vw + 1rem);
        cursor: pointer;
        color: #FFF;
        font-size: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-close-icon{
        fill: #FFF;
        width: 3rem;
        height: 3rem;
    }
    .mobile-menu-element{
        display: block;
    }
    .studios-menu-list-item strong{
        font-weight: 900;
    }
    .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: 25vh;
    left: 2rem;
    cursor: pointer;
}
.list-container{
    width: calc(20vw - 2rem);
    height: 65vh;
    position: absolute;
    bottom: 0;
    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: 100;
    margin-left: 2vw;
    font-size: 1.05rem;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
    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: 100;
    font-size: 1.2rem;
    clear: both;
    letter-spacing: 0.1rem;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: 0.2s;
    cursor: pointer;
    margin-top: 0.2rem;
}
.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: 100vh;
        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;
        overflow-y: scroll !important;
    }
    .menu-sector{
        display: none;
    }
    .studios-menu-container{
        width: 100vw;
        height: auto;
        min-height: 40vh;
        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.7rem !important;
        margin-bottom: 0.7rem !important;
        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;
        padding-bottom: 7rem;
    }
    .single-sector-item {
        font-weight: 100;
        font-size: 1.2rem;
        margin-left: 0.5rem;
        transition: 0.2s;
        cursor: pointer;
        margin-bottom: 1rem;
    }
    .visible-sector-menu{
        display: block;
    }

    html, body{
        user-select: 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;
    }   
}

/*GESTIONE CARATTERI MOBILE*/

@media (min-width: 279px) and (max-width: 319px) {
    .menu-icon {
        font-size: calc(1rem * 1.6);
    }
    .menu-bar {
        width: calc(3rem * 1.6);
        height: calc(3rem * 1.6);
    }
    .back-bar{
        width: calc(2rem * 1.6);
        height: calc(2rem * 1.6);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.6));
        height: calc( 15vh - calc(3.125rem * 1.6));
        font-size: calc(4rem * 1.6);
        border-radius: calc(3.125rem * 1.6);
  }
  #back-to-top { bottom: calc(5rem * 1.6); }
  .menu-container { backdrop-filter: blur(calc(0.2rem * 1.6)); }
  .menu-logo { top: calc(1rem * 1.6); left: calc(1rem * 1.6); }
  .list-container { width: calc(100vw - (2rem * 1.6)); margin-top: calc(5rem * 1.6); }
  ul.studios-menu-list { width: calc(100vw - (2rem * 1.6)); }
  .studios-menu-list-item {
    width: calc(100vw - (2rem * 1.6));
    margin-top: calc(0.3rem * 1.6);
    margin-bottom: calc(0.3rem * 1.6);
    font-size: calc(1.1rem * 1.6);
  }
  .studios-sub-menu-item {
    font-size: calc(1.1rem * 1.6);
    margin-top: calc(0.25rem * 1.6);
    margin-bottom: calc(0.25rem * 1.6);
  }
  .single-sector-menu-container { padding: calc(1rem * 1.6); }
  .single-sector-title {
    width: calc(100vw - (2rem * 1.6));
    letter-spacing: calc(-0.1rem * 1.6);
    font-size: calc(2.8rem * 1.6);
    line-height: calc(2.5rem * 1.6);
  }
  .single-sector-main-list { width: calc(100vw - (2rem * 1.6)); }
  .single-sector-main-item {
    font-size: calc(1rem * 1.6);
    margin-right: calc(1rem * 1.6);
    margin-top: calc(0.5rem * 1.6);
  }
  .single-sector-list {
    width: calc(100vw - (2rem * 1.6));
    margin-top: calc(1.5rem * 1.6);
  }
  .single-sector-item {
    font-size: calc(1.2rem * 1.6);
    margin-left: calc(0.5rem * 1.6);
  }
}

@media (min-width: 320px) and (max-width: 359px) {
    .menu-icon {
        font-size: calc(1rem * 1.524);
    }
    .menu-bar {
        width: calc(3rem * 1.524);
        height: calc(3rem * 1.524);
    }
    .back-bar{
        width: calc(2rem * 1.524);
        height: calc(2rem * 1.524);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.524));
        height: calc( 15vh - calc(3.125rem * 1.524));
        font-size: calc(4rem * 1.524);
        border-radius: calc(3.125rem * 1.524);
    }
     #back-to-top { bottom: calc(5rem * 1.524); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.524)); }
    .menu-logo { top: calc(1rem * 1.524); left: calc(1rem * 1.524); }
    .list-container { width: calc(100vw - (2rem * 1.524)); margin-top: calc(5rem * 1.524); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.524)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.524));
        margin-top: calc(0.3rem * 1.524);
        margin-bottom: calc(0.3rem * 1.524);
        font-size: calc(1.1rem * 1.524);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.524);
        margin-top: calc(0.25rem * 1.524);
        margin-bottom: calc(0.25rem * 1.524);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.524); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.524));
        letter-spacing: calc(-0.1rem * 1.524);
        font-size: calc(2.8rem * 1.524);
        line-height: calc(2.5rem * 1.524);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.524)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.524);
        margin-right: calc(1rem * 1.524);
        margin-top: calc(0.5rem * 1.524);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.524));
        margin-top: calc(1.5rem * 1.524);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.524);
        margin-left: calc(0.5rem * 1.524);
    }
}
@media (min-width: 360px) and (max-width: 389px) {
    .menu-icon {
        font-size: calc(1rem * 1.4545);
    }
    .menu-bar {
        width: calc(3rem * 1.4545);
        height: calc(3rem * 1.4545);
    }
    .back-bar{
        width: calc(2rem * 1.4545);
        height: calc(2rem * 1.4545);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.4545));
        height: calc( 15vh - calc(3.125rem * 1.4545));
        font-size: calc(4rem * 1.4545);
        border-radius: calc(3.125rem * 1.4545);
    }
     #back-to-top { bottom: calc(5rem * 1.4545); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.4545)); }
    .menu-logo { top: calc(1rem * 1.4545); left: calc(1rem * 1.4545); }
    .list-container { width: calc(100vw - (2rem * 1.4545)); margin-top: calc(5rem * 1.4545); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.4545)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.4545));
        margin-top: calc(0.3rem * 1.4545);
        margin-bottom: calc(0.3rem * 1.4545);
        font-size: calc(1.1rem * 1.4545);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.4545);
        margin-top: calc(0.25rem * 1.4545);
        margin-bottom: calc(0.25rem * 1.4545);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.4545); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.4545));
        letter-spacing: calc(-0.1rem * 1.4545);
        font-size: calc(2.8rem * 1.4545);
        line-height: calc(2.5rem * 1.4545);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.4545)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.4545);
        margin-right: calc(1rem * 1.4545);
        margin-top: calc(0.5rem * 1.4545);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.4545));
        margin-top: calc(1.5rem * 1.4545);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.4545);
        margin-left: calc(0.5rem * 1.4545);
    }
}
@media (min-width: 390px) and (max-width: 413px) {
    .menu-icon {
        font-size: calc(1rem * 1.2549);
    }
    .menu-bar {
        width: calc(3rem * 1.2549);
        height: calc(3rem * 1.2549);
    }
    .back-bar{
        width: calc(2rem * 1.2549);
        height: calc(2rem * 1.2549);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.2549));
        height: calc( 15vh - calc(3.125rem * 1.2549));
        font-size: calc(4rem * 1.2549);
        border-radius: calc(3.125rem * 1.2549);
    }
     #back-to-top { bottom: calc(5rem * 1.2549); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.2549)); }
    .menu-logo { top: calc(1rem * 1.2549); left: calc(1rem * 1.2549); }
    .list-container { width: calc(100vw - (2rem * 1.2549)); margin-top: calc(5rem * 1.2549); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.2549)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.2549));
        margin-top: calc(0.3rem * 1.2549);
        margin-bottom: calc(0.3rem * 1.2549);
        font-size: calc(1.1rem * 1.2549);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.2549);
        margin-top: calc(0.25rem * 1.2549);
        margin-bottom: calc(0.25rem * 1.2549);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.2549); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.2549));
        letter-spacing: calc(-0.1rem * 1.2549);
        font-size: calc(2.8rem * 1.2549);
        line-height: calc(2.5rem * 1.2549);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.2549)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.2549);
        margin-right: calc(1rem * 1.2549);
        margin-top: calc(0.5rem * 1.2549);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.2549));
        margin-top: calc(1.5rem * 1.2549);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.2549);
        margin-left: calc(0.5rem * 1.2549);
    }
}
@media (min-width: 414px) and (max-width: 429px) {
    .menu-icon {
        font-size: calc(1rem * 1.2308);
    }
    .menu-bar {
        width: calc(3rem * 1.2308);
        height: calc(3rem * 1.2308);
    }
    .back-bar{
        width: calc(2rem * 1.2308);
        height: calc(2rem * 1.2308);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.2308));
        height: calc( 15vh - calc(3.125rem * 1.2308));
        font-size: calc(4rem * 1.2308);
        border-radius: calc(3.125rem * 1.2308);
    }
     #back-to-top { bottom: calc(5rem * 1.2308); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.2308)); }
    .menu-logo { top: calc(1rem * 1.2308); left: calc(1rem * 1.2308); }
    .list-container { width: calc(100vw - (2rem * 1.2308)); margin-top: calc(5rem * 1.2308); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.2308)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.2308));
        margin-top: calc(0.3rem * 1.2308);
        margin-bottom: calc(0.3rem * 1.2308);
        font-size: calc(1.1rem * 1.2308);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.2308);
        margin-top: calc(0.25rem * 1.2308);
        margin-bottom: calc(0.25rem * 1.2308);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.2308); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.2308));
        letter-spacing: calc(-0.1rem * 1.2308);
        font-size: calc(2.8rem * 1.2308);
        line-height: calc(2.5rem * 1.2308);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.2308)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.2308);
        margin-right: calc(1rem * 1.2308);
        margin-top: calc(0.5rem * 1.2308);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.2308));
        margin-top: calc(1.5rem * 1.2308);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.2308);
        margin-left: calc(0.5rem * 1.2308);
    }
}
@media (min-width: 430px) and (max-width: 479px) {
    .menu-icon {
        font-size: calc(1rem * 1.2075);
    }
    .menu-bar {
        width: calc(3rem * 1.2075);
        height: calc(3rem * 1.2075);
    }
    .back-bar{
        width: calc(2rem * 1.2075);
        height: calc(2rem * 1.2075);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.2075));
        height: calc( 15vh - calc(3.125rem * 1.2075));
        font-size: calc(4rem * 1.2075);
        border-radius: calc(3.125rem * 1.2075);
    }
     #back-to-top { bottom: calc(5rem * 1.2075); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.2075)); }
    .menu-logo { top: calc(1rem * 1.2075); left: calc(1rem * 1.2075); }
    .list-container { width: calc(100vw - (2rem * 1.2075)); margin-top: calc(5rem * 1.2075); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.2075)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.2075));
        margin-top: calc(0.3rem * 1.2075);
        margin-bottom: calc(0.3rem * 1.2075);
        font-size: calc(1.1rem * 1.2075);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.2075);
        margin-top: calc(0.25rem * 1.2075);
        margin-bottom: calc(0.25rem * 1.2075);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.2075); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.2075));
        letter-spacing: calc(-0.1rem * 1.2075);
        font-size: calc(2.8rem * 1.2075);
        line-height: calc(2.5rem * 1.2075);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.2075)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.2075);
        margin-right: calc(1rem * 1.2075);
        margin-top: calc(0.5rem * 1.2075);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.2075));
        margin-top: calc(1.5rem * 1.2075);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.2075);
        margin-left: calc(0.5rem * 1.2075);
    }
}
@media (min-width: 480px) and (max-width: 539px) {
    .menu-icon {
        font-size: calc(1rem * 1.1852);
    }
    .menu-bar {
        width: calc(3rem * 1.1852);
        height: calc(3rem * 1.1852);
    }
    .back-bar{
        width: calc(2rem * 1.1852);
        height: calc(2rem * 1.1852);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.1852));
        height: calc( 15vh - calc(3.125rem * 1.1852));
        font-size: calc(4rem * 1.1852);
        border-radius: calc(3.125rem * 1.1852);
    }
     #back-to-top { bottom: calc(5rem * 1.1852); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.1852)); }
    .menu-logo { top: calc(1rem * 1.1852); left: calc(1rem * 1.1852); }
    .list-container { width: calc(100vw - (2rem * 1.1852)); margin-top: calc(5rem * 1.1852); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.1852)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.1852));
        margin-top: calc(0.3rem * 1.1852);
        margin-bottom: calc(0.3rem * 1.1852);
        font-size: calc(1.1rem * 1.1852);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.1852);
        margin-top: calc(0.25rem * 1.1852);
        margin-bottom: calc(0.25rem * 1.1852);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.1852); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.1852));
        letter-spacing: calc(-0.1rem * 1.1852);
        font-size: calc(2.8rem * 1.1852);
        line-height: calc(2.5rem * 1.1852);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.1852)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.1852);
        margin-right: calc(1rem * 1.1852);
        margin-top: calc(0.5rem * 1.1852);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.1852));
        margin-top: calc(1.5rem * 1.1852);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.1852);
        margin-left: calc(0.5rem * 1.1852);
    }
}
@media (min-width: 540px) and (max-width: 599px) {
    .menu-icon {
        font-size: calc(1rem * 1.1636);
    }
    .menu-bar {
        width: calc(3rem * 1.1636);
        height: calc(3rem * 1.1636);
    }
    .back-bar{
        width: calc(2rem * 1.1636);
        height: calc(2rem * 1.1636);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.1636));
        height: calc( 15vh - calc(3.125rem * 1.1636));
        font-size: calc(4rem * 1.1636);
        border-radius: calc(3.125rem * 1.1636);
    }
     #back-to-top { bottom: calc(5rem * 1.1636); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.1636)); }
    .menu-logo { top: calc(1rem * 1.1636); left: calc(1rem * 1.1636); }
    .list-container { width: calc(100vw - (2rem * 1.1636)); margin-top: calc(5rem * 1.1636); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.1636)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.1636));
        margin-top: calc(0.3rem * 1.1636);
        margin-bottom: calc(0.3rem * 1.1636);
        font-size: calc(1.1rem * 1.1636);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.1636);
        margin-top: calc(0.25rem * 1.1636);
        margin-bottom: calc(0.25rem * 1.1636);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.1636); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.1636));
        letter-spacing: calc(-0.1rem * 1.1636);
        font-size: calc(2.8rem * 1.1636);
        line-height: calc(2.5rem * 1.1636);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.1636)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.1636);
        margin-right: calc(1rem * 1.1636);
        margin-top: calc(0.5rem * 1.1636);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.1636));
        margin-top: calc(1.5rem * 1.1636);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.1636);
        margin-left: calc(0.5rem * 1.1636);
    }
}
@media (min-width: 600px) and (max-width: 679px) {
    .menu-icon {
        font-size: calc(1rem * 1.1531);
    }
    .menu-bar {
        width: calc(3rem * 1.1531);
        height: calc(3rem * 1.1531);
    }
    .back-bar{
        width: calc(2rem * 1.1531);
        height: calc(2rem * 1.1531);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.1531));
        height: calc( 15vh - calc(3.125rem * 1.1531));
        font-size: calc(4rem * 1.1531);
        border-radius: calc(3.125rem * 1.1531);
    }
     #back-to-top { bottom: calc(5rem * 1.1531); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.1531)); }
    .menu-logo { top: calc(1rem * 1.1531); left: calc(1rem * 1.1531); }
    .list-container { width: calc(100vw - (2rem * 1.1531)); margin-top: calc(5rem * 1.1531); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.1531)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.1531));
        margin-top: calc(0.3rem * 1.1531);
        margin-bottom: calc(0.3rem * 1.1531);
        font-size: calc(1.1rem * 1.1531);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.1531);
        margin-top: calc(0.25rem * 1.1531);
        margin-bottom: calc(0.25rem * 1.1531);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.1531); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.1531));
        letter-spacing: calc(-0.1rem * 1.1531);
        font-size: calc(2.8rem * 1.1531);
        line-height: calc(2.5rem * 1.1531);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.1531)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.1531);
        margin-right: calc(1rem * 1.1531);
        margin-top: calc(0.5rem * 1.1531);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.1531));
        margin-top: calc(1.5rem * 1.1531);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.1531);
        margin-left: calc(0.5rem * 1.1531);
    }
}
@media (min-width: 680px) and (max-width: 767px) {
    .menu-icon {
        font-size: calc(1rem * 1.1477);
    }
    .menu-bar {
        width: calc(3rem * 1.1477);
        height: calc(3rem * 1.1477);
    }
    .back-bar{
        width: calc(2rem * 1.1477);
        height: calc(2rem * 1.1477);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.1477));
        height: calc( 15vh - calc(3.125rem * 1.1477));
        font-size: calc(4rem * 1.1477);
        border-radius: calc(3.125rem * 1.1477);
    }
     #back-to-top { bottom: calc(5rem * 1.1477); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.1477)); }
    .menu-logo { top: calc(1rem * 1.1477); left: calc(1rem * 1.1477); }
    .list-container { width: calc(100vw - (2rem * 1.1477)); margin-top: calc(5rem * 1.1477); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.1477)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.1477));
        margin-top: calc(0.3rem * 1.1477);
        margin-bottom: calc(0.3rem * 1.1477);
        font-size: calc(1.1rem * 1.1477);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.1477);
        margin-top: calc(0.25rem * 1.1477);
        margin-bottom: calc(0.25rem * 1.1477);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.1477); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.1477));
        letter-spacing: calc(-0.1rem * 1.1477);
        font-size: calc(2.8rem * 1.1477);
        line-height: calc(2.5rem * 1.1477);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.1477)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.1477);
        margin-right: calc(1rem * 1.1477);
        margin-top: calc(0.5rem * 1.1477);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.1477));
        margin-top: calc(1.5rem * 1.1477);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.1477);
        margin-left: calc(0.5rem * 1.1477);
    }
}
@media (min-width: 768px) and (max-width: 823px) {
    .menu-icon {
        font-size: calc(1rem * 1.1429);
    }
    .menu-bar {
        width: calc(3rem * 1.1429);
        height: calc(3rem * 1.1429);
    }
    .back-bar{
        width: calc(2rem * 1.1429);
        height: calc(2rem * 1.1429);
    }
     span.menu-close-button {
        width: calc( 15vh - calc(3.125rem * 1.1429));
        height: calc( 15vh - calc(3.125rem * 1.1429));
        font-size: calc(4rem * 1.1429);
        border-radius: calc(3.125rem * 1.1429);
    }
     #back-to-top { bottom: calc(5rem * 1.1429); }
    .menu-container { backdrop-filter: blur(calc(0.2rem * 1.1429)); }
    .menu-logo { top: calc(1rem * 1.1429); left: calc(1rem * 1.1429); }
    .list-container { width: calc(100vw - (2rem * 1.1429)); margin-top: calc(5rem * 1.1429); }
    ul.studios-menu-list { width: calc(100vw - (2rem * 1.1429)); }
    .studios-menu-list-item {
        width: calc(100vw - (2rem * 1.1429));
        margin-top: calc(0.3rem * 1.1429);
        margin-bottom: calc(0.3rem * 1.1429);
        font-size: calc(1.1rem * 1.1429);
    }
    .studios-sub-menu-item {
        font-size: calc(1.1rem * 1.1429);
        margin-top: calc(0.25rem * 1.1429);
        margin-bottom: calc(0.25rem * 1.1429);
    }
    .single-sector-menu-container { padding: calc(1rem * 1.1429); }
    .single-sector-title {
        width: calc(100vw - (2rem * 1.1429));
        letter-spacing: calc(-0.1rem * 1.1429);
        font-size: calc(2.8rem * 1.1429);
        line-height: calc(2.5rem * 1.1429);
    }
    .single-sector-main-list { width: calc(100vw - (2rem * 1.1429)); }
    .single-sector-main-item {
        font-size: calc(1rem * 1.1429);
        margin-right: calc(1rem * 1.1429);
        margin-top: calc(0.5rem * 1.1429);
    }
    .single-sector-list {
        width: calc(100vw - (2rem * 1.1429));
        margin-top: calc(1.5rem * 1.1429);
    }
    .single-sector-item {
        font-size: calc(1.2rem * 1.1429);
        margin-left: calc(0.5rem * 1.1429);
    }
}