/* FONT */
@font-face {
    font-family: "couture";
    src: url("font/couture-bld.otf") format("opentype");
    font-weight: 400;
    font-display: block;
}

@font-face {
    font-family: "elephant";
    src: url("font/Elephant.ttf") format("truetype");
}
@font-face {
    font-family: "Minion-Variable";
    src: url("font/Minion-Variable-Concept.otf") format("opentype");
}
@font-face {
    font-family: "Helvetica-Regular";
    src: url("font/Helvetica-Regular.otf") format("opentype");
}
@font-face {
    font-family: "Helvetica-Bold";
    src: url("font/Helvetica-Bold.ttf") format("truetype");
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{overflow-x:hidden;}

/* SCROLL A SCATTO */
html{
    scroll-snap-type: y mandatory;
    font-family: 'Minion-Variable';
    user-select: none;
}
.landing,
.about section,
.collection .header,
.collection .riga,
.collection .navigation-page,
.contact
{
    scroll-snap-align: start;
}
  
@media (max-width:60rem){  
    html{
        scroll-snap-type: none;
    }
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}
::-webkit-scrollbar-track {
    background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #cccccc;
} 
a{
    text-decoration: none;
}

/* NAVBAR */
nav{
    position: fixed;
    bottom: 3.5%;
    left: 4.5%;
    width: 26.6rem;
    font-family: 'Minion-Variable';
    border-top: 0.1rem solid rgba(221,218,213);
    z-index: 90;
    background-color: white;
    -webkit-box-shadow: -50px 50px 0px 50px #FFFFFF; 
    box-shadow: -50px 50px 0px 50px #FFFFFF;
}
nav ul li{
    flex-grow: 1;
    text-align: center;
    display: flex;
}
nav ul li a{
    flex-grow: 1;
    flex-basis: 0;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0.2rem 0;
    width: 100% !important;
    color: rgba(93,93,89);
}
.active-voice{
    border-top: 0.12rem solid rgba(93,93,89);
    transform: translateY(-0.12rem);
    padding-bottom: 0;
}
nav ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 60rem){
    nav{display: none;}
}

/* LANDING */
.landing{
    position: relative;
    background-color: white;
    z-index:99;
}
.landing .grid.desktop{
    display: grid;
    grid-template-columns: 1fr auto;
}
.landing .grid.desktop .immagine {
    height: 100vh;
    position:relative;
    z-index: 99;
}
.landing .grid.desktop .immagine img{
    height: 100%;
    padding: 4rem;
    padding-left: 0;
    padding-right: 3.5rem;
}
.landing .grid.desktop .logo{
    display:flex;
    align-items: center;
    justify-content: center;
}
.landing .grid.desktop .logo svg{
	-webkit-animation: blurFadeInOut 2s ease-in-out forwards;
	-moz-animation: blurFadeInOut 2s ease-in-out forwards;
	-ms-animation: blurFadeInOut 2s ease-in-out forwards;
	animation: blurFadeInOut 2s ease-in-out forwards;
}
.quadrato-sopra{
    width:100%;
    height:50%;
    background-color: white;
    position: absolute;
    z-index:99999;
    top:0;
    left:0;
    animation: disappear 2.5s ease-in-out;
    animation-fill-mode: forwards;
}
.quadrato-sotto{
    width:100%;
    height:50%;
    background-color: white;
    position: absolute;
    z-index:99999;
    bottom:0;
    left:0;
    animation: disappear 2.5s ease-in-out;
    animation-fill-mode: forwards;
}
.landing .grid.mobile{ display:none;}
@-webkit-keyframes blurFadeInOut {
	0% {
		opacity: 0;
		-webkit-transform: scale(1.3);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
}
@-moz-keyframes blurFadeInOut {
	0% {
		opacity: 0;
		-moz-transform: scale(1.3);
	}
	100% {
		opacity: 1;
		-moz-transform: scale(1);
	}
}
@keyframes blurFadeInOut {
	0% {
		opacity: 0;
		transform: scale(1.3);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes disappear{
    0%{
        height: 50%;
    }
    100%{
        height: 0;
    }
}
@media (max-width: 60rem){
    .landing{overflow:hidden; height:100svh;}
    .landing .grid.desktop{ display:none;}
    .landing .grid.mobile{ display:block;}
    .landing .grid.mobile{
        height: 100%;
        display: flex;
        flex-direction:column;
        align-items: center;
        justify-content:center;
    }
    .landing .grid.mobile .immagine{
        padding: 0 2.5rem;
        padding-bottom: 0.75rem;
    }
    .landing .grid.mobile .immagine img{
        width:100%;
    }
}

/* ABOUT */
.about {
    font-family: 'Helvetica-Regular';
    margin: 0 auto;
    padding-bottom: 10rem;
    position: relative;
    background-color: white;
    z-index: 4;
}
.about .sec-0{
    min-height: 100vh;
    padding: 4.5%;
}
.about .sec-0 h2{
    color: black;
    font-size: 1.8vw;
    font-weight: 200;
    line-height: 2.8vw;
    padding-top: 8rem;
    padding-bottom: 2rem;
    text-align: justify;
}
.about .sec-0 h2 span{
 font-family: 'Helvetica-Bold';
 font-size: 2.8vw;
 line-height: 2.8vw;
}
.about .sec-1{
    display: grid;
    place-content: center;
    min-height: 100vh;
    position:relative;
}
.about .sec-1 .grid{
    display:grid;
    grid-template-columns: 29% auto;
    place-items: center;
    padding: 4.5%;
    column-gap: 12%;
    /* padding-top: 8rem;
    padding-bottom: 9%; */
}
.about .sec-1 .portrait{
    height: 100%;
}
.about .sec-1 .portrait img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}
.about .sec-1 h1{
    font-size: 1.38vw;
    font-family: 'Helvetica-Bold';
    line-height: 1;
    padding-bottom: 2.3rem;
    font-weight: 200;
    color: black;
    text-transform: uppercase;
}
.about .description p{
    font-family: 'Helvetica-Regular';
    text-align: justify;
    color: black;
    font-weight: 400;
    line-height: 1.59;
    font-size: 0.95vw;
    padding-right: 11%;

}
@media(min-width:100rem){
    .about .sec-1{
        height: 100vh;
    }
}
@media (max-width: 60rem){
    .about {
        padding: 0 2.2rem;
        scroll-margin: 7rem;
    }
    .about .portrait img{
        width: 100%;
        height: auto;
    }
    .about .sec-0{
        min-height: auto;
        padding:0;
        padding-top: 0;
    }
    .about .sec-0 h2{
        font-size: 1.5rem;
        padding-bottom:3rem;
        padding-top: 0;
        line-height: 1.2;
    }
    .about .sec-0 h2 span{
        font-family: 'Helvetica-Bold';
        font-size: 2.2rem;
    }
    .about .sec-1{
        min-height: 100vh;
        display: grid;
        grid-template-columns: 100%;
        place-items: center;
        row-gap: 2rem;
    }
    .about .sec-1 .grid{
        display:grid;
        grid-template-columns: 100%;
        row-gap: 2.3rem;
        margin-top: 0;
        padding-bottom: 5rem;
        padding:0;
    }
    .about .sec-1 .description{
        padding-left: 0;
    }
    .about .sec-1 h1,
    .about .sec-2 h2,
    .about .sec-3 h2{
        font-size: 1.1rem;
        text-align: center;
        padding-bottom: 1.7rem;
    }
    .about .description p{
        padding-right: 0;
    }
    .about .sec-2{
        min-height: 100vh;
        display: grid;
        place-content:center;
        padding:0;
        padding-top:5rem;
        padding-bottom: 5rem;
    }
    .about .sec-2 .grid{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: auto auto auto;
        row-gap: 2rem;
        place-items: center;
    }
    .about .sec-2 .column-one,
    .about .sec-2 .column-three
    {
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 1.7rem;
        gap: 0.3rem;
    }
    .about .sec-2 .column-one{
        justify-self: center;
    }
    .about .sec-2 .column-three{
        justify-self: center;
    }
    .about .sec-3{
        padding-top:0;
        min-height: 100vh;
        display: grid;
        place-content: center;
    }
    .about .sec-3 h2{text-align: center;}
    .about .sec-3 .grid-2{
        display: grid;
        grid-template-columns: 100%;
        place-items: center;
        padding: 0;
        row-gap: 2.3rem;
    }
    .about .sec-3 .grid-2 .image{
        padding-right: 0;
    }
    .about .description p,
    .about .sec-3 p{
        font-size: 1rem;
    }
    .about .sec-3 .grid-2 .description{
        padding-right: 0;
        order: 2;
    }
    .about  .sec-3 .grid-2 .image{
        padding-right: 0;
        padding-left: 0;
        display:flex;
        order:1;
    }
}

/* COLLECTION */
.collection{
    margin: 0 auto;
    padding: 12rem 5rem 6rem 5rem;
    font-family: 'Helvetica-Regular';
    color: black;
}
.collection .navigation-page{
    height: 100vh;
    padding: 4.5%;
    padding-top: 9rem;
    padding-bottom: 6rem;
    position: relative;
    z-index: 4;
    background-color: white;
}
.collection .navigation-page .row{
    padding-bottom: 2.6vh;
}
.collection .navigation-page .title{
    font-family: 'Helvetica-Bold';
    text-transform: uppercase;
    font-size: 1.1rem;
    padding-right: 0.5rem;
}
.collection .navigation-page a{
    color: black;
    font-size: 1rem;
    transition: 20ms;
}
.collection .navigation-page a:hover{
    color: #7c7c7c;
}
.collection .header{
    height:100vh;
    position: relative;
    z-index: 4;
    background-color: white;
}
.collection .header h1{
    font-family: 'Helvetica-Regular';
    color: black;
    font-size: 3.3vw;
    font-weight: 400;
    line-height: 1.1;
    text-align: justify;
    padding: 0 3%;
    padding-top: 10rem;
}
.collection h2{
    font-size:1.1rem;
    font-weight: 100;
    padding-top: 5.8rem;
    padding-bottom: 1rem;
    font-family: 'Helvetica-Regular';
    line-height: 0.8;
}
.collection .riga p{
    text-align: justify;
    line-height: 1.15;
    font-size: 0.9rem;
}
.collection .grid{
    display: grid;
    grid-auto-flow: row;
    row-gap: 3rem;
}
.collection .riga{
    display: grid;
    min-height: 100vh;
    place-items: center;
    position: relative;
}
.collection .riga .container{
    font-family: 'Helvetica-Regular';
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 6rem;
}
.collection svg{
    cursor: pointer;
    scale:0.5;
    opacity: 0;
    transition: 300ms;
}
.collection .colonna-dx .img-slide:hover svg{
    opacity: 1;
}
.collection .slide-nav{
    display: flex;
}
.collection .plus-minus-toggle {
    cursor: pointer;
    height: 12px;
    position: relative;
    width: 12px;
    z-index:-1;
}
.collection .plus-minus-toggle::before{
    height: 0.085em;
    width: 12px;
    background-color: black;
    content: '';
    position: absolute;
    top: 10px;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}
.collection .plus-minus-toggle::after{
    height: 0.085em;
    width: 12px;
    background-color: black;
    content: '';
    position: absolute;
    top: 10px;
    transform: rotate(180deg);
    transition: transform 500ms ease;
}
.collection .active .plus-minus-toggle::before{
    transform: rotate(0);
}
.collection .active .plus-minus-toggle::after{
    transform: rotate(0);
}
.collection .list-desc{
    font-size: 0.9rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    position:relative;
    background-color: white;
    z-index:10;
}
.collection .list-desc h4{
    font-size: 0.9rem;
    font-weight:400;
}
.collection .list-desc p{
    font-weight: 400;
    font-size: 0.9rem;
    padding-bottom: 0.2rem;
    line-height: 1.1;
}
.collection .list-desc a{
    color: black;
}
.collection .description.active .list-desc{
    max-height: 32rem;
}
.collection .description .togg{
    cursor: pointer;
    padding: 0.7rem 0;
    padding-bottom: 1rem;
}
.collection .slide-nav{display: none; gap: 0.2rem;}
.collection .mobile{
    display: none;
}
.collection .img-slide{
    max-height:100%;
    width: 100%;
    display: flex;
    position: relative;
    user-select: none;
    justify-content: space-between;
}
.collection .img-slide svg{align-self: center}
.collection .navigator p{cursor: pointer}
.collection .img-slide img{
    max-height: 77vh;
    max-width: 42vw;
}
.collection .img-slide:hover > .navigator{
    opacity: 1;
}
#MZ1 .container{
    width:100%!important;
}
.riga .colonna-sx.desc{display:grid;}
.riga.reverse .colonna-dx.desc{display:grid;}
.collection{max-width: 100%!important; padding:0!important;}
.collection .riga .container{
    margin-top: 0!important;
    grid-template-columns: 26.5rem auto;
    column-gap: 5%;
    height:100%;
    width:100%;
    padding: 4.5%;
}
.colonna-sx{
    padding: 0 !important;
}
.colonna-dx{
    width: 100%;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2.1rem;
    padding-left: 8rem;
}
.img-slide img{
    max-height: 60rem;
}
.collection .bespoke p{
    text-align: left;
}
img.larga{max-height:70vh;}
@media(min-width:100rem){
    .container{
        grid-template-columns: 22% auto;
    }
    .container{
        grid-template-columns: 22% auto;
    }
}
@media (max-width: 60rem){
    .collection{overflow-x:hidden;}
    .collection .desktop{display: none}
    .collection .mobile{display: block;}
    .collection .navigation-page{
        padding: 0 2.5rem;
        padding-top: 2.5rem;
        padding-bottom: 5rem;
        height: auto;
        display: none;
    }
    .collection .header{
        height: auto;
        padding: 0 2.5rem;
    }
    .collection .header h1{
        font-size: 1.5rem;
        padding: 0 0;
        padding-top: 5rem;
        padding-bottom: 3rem;
        font-weight:200;
    }
    .collection-grid{
        row-gap: 0;
    }
    .collection .riga{
        min-height: auto;
        scroll-margin: 7rem;
    }
    .collection .colonna-dx{
        display: grid;
        grid-auto-flow: row;
        max-height:200vh;
        padding-top: 0.7rem;
        padding-left:0;
    }
    .collection .riga .container{
        display: flex;
        flex-direction:column;
        row-gap: 0;
        padding: 0 2.2rem;
    }
    .collection .riga .container .img-slide{
        width: 100%;
        height: 100%;
        height: 20rem;
        padding-bottom:2.5rem;
        padding-top: 0.8rem;
        justify-content: center;
    }
    .collection .img-slide .slider{
        width: 100%;
        display:flex;
        justify-content: center;
    }
    .collection .img-slide img{
        max-height:100%;
        height: 20rem;
        width: auto;
        max-width: 100%;
    }
    #Almadra-Peach img.larga,
    #Almadra-Aquamarine img.larga{
        height: 15rem;
        position: relative;
        top: 0.8rem;
    }
    .collection p.mobile{
        font-size: 1rem;
    }
    .collection h2{
        text-align: center;
    }
    .collection .list-desc h4,
    .collection .list-desc p{
        font-size: 1rem;
    }
    .collection .list-desc p {
        padding-bottom: 0;
    }
    .collection .list-desc a{
        font-family: 'Helvetica-Regular', serif;
    }
}

/* CONTACT */
.contact {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4.5%;
    font-family: 'Helvetica-Regular';
    color: black;
    position: relative;
    background-color: white;
    z-index: 4;
}
.wrap{height: 100%; width: 100%}
.contact section{
    padding-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    height: 100%;
}
.contact .right-col{height: 100%;}
.contact section img{
    height: 100%;
}
.contact section .left-col > div{
    display: flex;
    gap: 0.5rem;
    line-height: 1.3;
    font-size: 1rem;
}
.contact section .left-col .bold{
    font-weight: 900;
}
.contact .email a,
.contact .telefono a,
.contact .linkedin-link a,
.contact .instagram-link a{
    color: black;
}
.contact .email ,
.contact .telefono ,
.contact .linkedin-link ,
.contact .instagram-link {
    margin-top: 8px;
}
.contact .title h1{
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.1rem;
    padding-bottom: 1.2rem;
}
@media (max-width: 70rem){
    .contact {
        padding: 0 2rem;
    }
}
@media (max-width: 60rem){
    .contact {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        max-width: 90rem;
        margin: 0 auto;
        padding: 0 1rem;
        padding-top: 3rem;
        font-family: 'minion';
        scroll-margin: 4rem;
    }
    .contact section{
        padding: 1rem 0;
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        justify-content: flex-end;
        flex-direction: column-reverse;
    }
    .contact section img{
        max-width: 25rem;
        width: 100%;
        padding: 0 2.5rem;
    }
}
@media (max-width: 40rem){
    .contact section img{
        width: 100%;
        max-width: 100rem;
    }
    .contact {
        padding: 0 0;
        padding-top: 2rem;
        justify-content: center;
        width: 100%;
        height: auto;
    }
    .contact .left-col{
        padding-left: 2.5rem;
    }
}

/* PULSANTE BACK TO TOP */
.top-btn{
    width: 8rem;
    rotate: -90deg;
    position: fixed;
    bottom: calc(3.7rem + 3.5%);
    right: -2rem;
    cursor:pointer;
    z-index: 5;
    color:rgb(93, 93, 90);
    display:none;
}
.top-btn a{
    font-family: 'Minion-Variable';
    font-size: 0.9rem;
    text-transform: uppercase;
}
.top-btn a svg{
    font-size: 0.7rem;
    margin-left: 0.2rem;
    transition: 0.2s ease-in-out;
}
.top-btn a:hover svg{
    margin-left: 0.6rem;
}
#topbtn{
    opacity: 1;
    transition: opacity .4s, visibility .4s;
}
#topbtn.show{
    visibility: visible;
    opacity: 1;
}
@media (max-width:60rem){
    .top-btn{
        display: none;
    }
}

footer.desktop{
    position: fixed;
    width: 100vh;
    text-align:center;
    top: -1.4rem;
    right: 2.2rem;
    transform-origin: bottom right;
    color: rgb(93, 93, 90);
    font-family: 'Helvetica-Regular';
    rotate:-90deg;
    z-index: 3;
    font-size: 0.9rem;
}
footer.mobile{display:none;}
@media (max-width: 40rem){
    footer.desktop{
        display: none;
    }
    footer.mobile{
        display: block;
        position:relative;
        padding-top: 2.5rem;
        text-align: center;
        color: rgb(93, 93, 90);
        padding-bottom: 1rem;
        font-size: 0.9rem;
    }
}

/* SILLABAZIONE TESTO */
@media (max-width: 40rem){
    .about p,
    .about .sec-0 h2,
    .collection h1,
    .collection p,
    .manufact h1,
    .manufact p{ 
        hyphens: auto;
        -ms-hyphens: auto;
        -webkit-hyphens: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
.about .sec-0 h2,
.collection p{
    hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.topbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.8rem 5rem 2rem 5rem;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: white;
    z-index:98;
}
.topbar .logo{
    font-size: 1.2rem;
    font-family: 'couture';
    position: relative;
    z-index: 999;
}
.topbar .logo a{
    color: black;
}
.topbar .active{
    font-weight: 700;
}
#menuToggle{
    position: relative;
    z-index: 5;
    -webkit-user-select: none;
    user-select: none;
}
#menuToggle a{
    text-decoration: none;
    transition: color 0.3s ease;
}
#menuToggle input{
    width: 2rem;
    height: 2rem;
    position: absolute;
    opacity: 0;
    z-index: 99999999;
    -webkit-touch-callout: none;
}
#menuToggle svg{
    width: 2.4rem;
    height: 1.7rem;
    position: relative;
    z-index: 9999999;
    scale: 0.8;
    left:22%;
}
#menuIcon line{
    transition: stroke 0.3s;
}
#menuIcon .linea1{
    transition: transform 0.3s ;
}
#menuIcon .linea3{
    transition: transform 0.3s ;
}
#menuIcon.active line{
    stroke: black;
} 
#menuIcon.active .linea1{
    transform-origin: 3% 5%;
    transform: rotate(45deg);
}
#menuIcon.active .linea2{
    display: none;
}
#menuIcon.active .linea3{
    transform-origin: 15% 80%;
    transform:rotate(-45deg);
} 
#menuToggle span:first-child{
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2){
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-2px, -1px);
    -moz-transform: rotate(45deg) translate(-2px, -1px);
    transform: rotate(45deg) translate(-2px, -1px);
    background: #DDDAD5;
    position: relative;
    z-index: 1000;
}
#menuToggle input:checked ~ span:nth-last-child(3){
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2){
    transform: rotate(-45deg) translate(0, -1px);
}
#menu{
    font-family: 'Helvetica-Regular';
    background-color: white;
    position: absolute;
    /* max-width: 90rem; */
    width: 100vw;
    height: 120vh;
    padding: 50px;
    top: -2.9rem;
    right: -5rem;
    padding-top: 30vh;
    padding-left: 5rem;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: translate(300%, 0);
    -moz-transform: translate(300%, 0);
    transform: translate(300%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 999;
    box-shadow: -1px 0px 0px 1000px #10261E;
}
#menu h2{
    position: absolute;
    top: 3rem;
    left: 3rem;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-family: 'couture';
}
#menu li{
    padding-bottom: 1.5rem;
}
#menu li a{
    font-size: 2.2rem;
    color: black;
    text-transform: capitalize;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}
#menu li a:hover{
    color: #a8a5a1;
}
#menuToggle input:checked ~ ul{ transform: none; }

.topbar{opacity:0;}
.show-nav{opacity:1;}
/* .topbar{visibility: hidden;} */
.topbar{
    visibility:visible;
    padding: 2.2rem 3.9rem 1rem 3.9rem;
}


#menu{
    right: -2.5rem;
    padding-left: 2.5rem;
    box-shadow: -1px 0px 0px 1px #10261E;
    padding-top: 32vh;
}
#menu li a{
    padding-left: 3rem;
    font-size: 2.2rem;
    text-transform: uppercase;
}
#menu li{
    padding-bottom: 0.2rem;
}
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

@media (max-width: 60rem){
    .topbar{
        padding: 2.2rem 2.2rem 1rem 2.2rem;
    }
    #menu{
        right: -2rem;
        padding-left: 2.5rem;
        padding-top: 28vh;
    }
    #menu li{
    padding-bottom: 0.2rem;
    }
    #menu li a{
        padding-left: 0;
        font-size: 2.2rem;
        /* text-transform: capitalize; */
    }
}

.cursor{
    position: absolute;
    z-index: 99;
    user-select: none;
    pointer-events: none;
    transition-duration: 75ms;
    transition-timing-function: ease-out;
}
.cursor svg{
    position: absolute;
    bottom: -50%;
    right: -50%;
    transform: translate(50%, 50%);
    transition-duration: 500ms;
}
.cursor svg circle{
    transition-duration: 500ms;
}
.attivato svg{
    width: 96px;
    height: 96px;
}
.attivato svg circle{
    cx: 48;
    cy: 48;
    r: 20;
}
.hover-effect{cursor:pointer;}

@media (max-width: 60rem){
    .cursor{
        display:none;
    }
}

.about .sec-2,
.about .sec-3{
    display: none;
}
.collection .bespoke,
.collection .lead,
.collection .ship{
    display: none;
}
.manufact{max-height:0; overflow:hidden;}
.inquire{
    padding: 0.25rem 0.45rem;
    text-transform: uppercase;
    border: 0.1rem solid black; 
    margin-bottom: 2rem!important;
    font-size: 0.9rem;
    transition: 0.3s ease-in-out;
}
.inquire:hover{
    background-color: black;
    color: white!important;
}
.cont{margin-bottom: 2rem;}