::-webkit-scrollbar {
   -webkit-appearance: none;
   width: 0px;
}

html{
    overflow-x: hidden;
}

body{
    background-color: #131113;
    overflow-x: hidden;
}

.desktop{
    display:block;
}

.mobile{
    display:none;
}


:focus-visible{
  outline: none; 
}

.n-fixed {
    position: fixed;
    width: 100%;
    padding-bottom: 0;
    top: 0;
    left: 0;
    transition: 0.3s;
    z-index: 999;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding:0;
    padding-bottom: 0.5rem;
    align-items: center;
    border-bottom: 2px solid #fff;
}

.menu-scroll{
    background-color: #000 !important;
}

.logo {
    width: 10rem;
}

.menu-icon {
    width: 2rem;
    height: 2rem;
    cursor:pointer;
    transition:0.3s;
}

.menu-icon:hover {
    transform:scale(1.1);
}




.menu{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    overflow-y: scroll;
    z-index: 1000;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    cursor:none;
}

.menu.open{
    visibility: visible;
    opacity: 1;
}


.menu .nav-container{
    border:none;
    justify-content: flex-end;
}



.close-icon {
    width: 2.5rem;
    height: 2.5rem;
    cursor:pointer;
    transition:0.3s;
}



.pointer_menu{
  position:absolute;
  top:0;
  left:0;
  transform:translate(-50%, -50%);
  width:120px;
  height:120px;
  z-index:1001;
  background-image:url('../img/gfx-cursore-blu-1.gif');
  background-size:contain;
  background-repeat:no-repeat;
  border-radius:50%;
  pointer-events:none;
  display: none;
}

.pointer_menu.active{
  display: block;
}

.menu-content {
    padding-top: 5rem;
}

.menu-list{
    list-style: none;
    padding: 0;
}

.menu-list li{
    
}

.item-menu{
    font-family: 'DIN Next LT Pro';
    font-size: 65px;
    letter-spacing: 1.5px; 
    color:#fff;
    transition:0.4s;
    font-weight:bold;
    text-decoration:none;
    line-height: 1.82;
    cursor:none;
}


.item-menu.regular{
    font-weight: normal;
}

.item-menu:hover{
    color:#0000ff;
}


.item-menu.active{
    color:#0000ff;
    
}


.sub-menu {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow-y: scroll;
    transition: max-height 0.3s;
}

.sub-menu.active{
    max-height: 500px;
}

.sub-menu li{
    padding: 13px 20px;
}

.item-sub-menu{
    color: #969696;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'DIN Next LT Pro';
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: normal;
    transition:0.4s;
    cursor:none;
}

.item-sub-menu:hover {
    color: #0000ff;
}


.item-sub-menu.active {
    color: #0000ff;
    text-decoration: line-through;
}



.hero{
    z-index:10;
}

.hero img{
    width:100%;   
}


.p-relative{
    position:relative;
}



.section-page {
    padding-top: 7rem;
}


.absolute-sec {
    position: absolute;
    top: -10vw;
    right: -13vw;
    width: 33rem;
}


.inline-button{
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-direction: column;
}


.c-link{
    color: #fff;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    text-transform: uppercase;
    transition:0.5s;
}

.c-link:hover {
    color: #24fefc;
}

.c-link:before{
    content:'';
    width: 3rem;
    height: 1px;
    position: relative;
    display: block;
    background: currentColor;
    transition:0.5s;
}

.c-link:hover:before {
    width: 5rem;
}

.c-link.active {
    color: #24fefc;
}
.c-link.active:before {
    width: 5rem;
}


.grid-images {
    display: flex;
    gap: 3rem;
}

.item-grid-images {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-grid-images h3 {
    width: 50%;
}

.img-grid{
    width:100%;
    margin-bottom:2rem;
}


.bg-s {
    margin-top: 7rem;
    background-image: url(../img/gfx_insegne_lp_bg_icone.jpg);
    padding: 5rem;
}

.subtitle{
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    text-transform: uppercase;
    margin-top:2rem;
}


.subtitle:before{
    content:'';
    width: 3rem;
    height: 1px;
    position: relative;
    display: block;
    background: currentColor;
    transition:0.5s;
    
}


footer{
    margin-top: 5rem;
    padding: 5rem 0 2rem 0;
    background-color:#000;
}


.img-footer{
    width:50%;
}


.list-footer {
    list-style: none;
    padding: 0;
}

.list-footer li{
    margin-bottom:1rem;
}


.socials {
    margin-top: 2rem;
    gap: 2rem;
    display: flex;
}
.socials a{
    color:#fff;
    background-color: #0000ff;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: .5rem 1rem;
}

.img-bs{
    height: 130px;
    margin-bottom: 2rem;
}

.img-70{
    width: 100%;
}

.sub-text-f p{
   color: #969696;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.6em;
    letter-spacing: 0px; 
    margin: 10px 0;
}

.sub-text-f p b{
   color: #fff;
   
}

.sub-text-f img {
    width: 60%;
}

.flex-space-vertical{display: flex;flex-direction: column;padding: 0 2.5rem;justify-content: space-between;}


.link-span-menu.active a{
    color:#0000ff;
}


.link-span-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-span-menu .change-collapse {
    width: 30px;
    height: 30px;
    margin: 0;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.link-span-menu .change-collapse  > .bar-1{
    width:100%;
    background: #fff;
    height: 5px;
    margin-left: 0;
}

.link-span-menu .change-collapse  > .bar-2{
    width:100%;
    background: #fff;
    height: 5px;
    margin-top: -5px;
    transition: 0.1s;
    transform:rotate(90deg);
}

.link-span-menu .change-collapse.open > .bar-2{
    transform: rotate(180deg);
}

.link-span-menu.active .change-collapse  > .bar-1{
    background:#0000ff;
}

.link-span-menu.active .change-collapse  > .bar-2{
    background:#0000ff;
}


.link-span-menu .change-collapse.active  > .bar-1{
    background:#0000ff;
}

.link-span-menu .change-collapse.active  > .bar-2{
    background:#0000ff;
}










/*SWIPER*/

.c-row {
    align-items: center;
    justify-content: space-between;
}
.c-row:not(:first-child){
    margin-top: 5rem;
}

.box-img {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center 75%;
    filter: brightness(0.5) grayscale(1);
    background-repeat: no-repeat;
    transition:0.5s;
}


.overlay-box-image{
    position:absolute;
    width: 100%;
    z-index: 10;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image:url('../img/gfx_insegne_lp_pattern.png');
}


.swiper-slide:hover .box-img{
    filter: brightness(1) grayscale(0);
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: auto;
    height: auto;
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
}


.swiper-button-next{
    right: 0;
    left: auto;
}

.swiper-button-prev{
    left: 0;
    right: auto;
}


.swiper-button-next:after{
   content:'';
}

.swiper-button-prev:after{
   content:'';
}

.swiper-button-next svg, .swiper-button-prev svg {
    width: 3rem;
    height: 3rem;
}
.st0 {
    fill: #24fefc;
}

.st1 {
    fill: #121212;
}
    
    
.text-box{
    position: absolute;
    z-index: 11;
    bottom: 0;
    width: 100%;
    padding: 0 3rem 2rem 3rem;
}

.pre-title{
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #24fefc;
}

.title-box{
    color: #fff;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    margin: 0;
    font-size: 1.7rem;
}



/*Tipography*/

h1{
    color: #fff;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    font-size: 4rem;
    margin-bottom: 2rem;
}

h2{
    color: #24fefc;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    font-size: 3rem;
    font-weight: 100;

}

h2.white{
    color: #fff;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    font-size: 3rem;
}

h3{
    color: #fff;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    font-size: 2.5rem;
}

p{
   color: #fff;
   font-family: 'DIN Next LT Pro';
   letter-spacing: 1px;
}



.title-footer {
    font-family: 'DIN Next LT Pro';
    font-weight: bold;
    text-decoration: line-through;
    letter-spacing: 1px;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle-footer{
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.text-footer a{
    color:#fff;
    text-decoration:none;
}

.text-footer a.hover{
    color:#fff;
    text-decoration:none;
}

.link-footer {
    letter-spacing: 1px;
    font-family: 'DIN Next LT Pro';
}

.link-p {
    padding: 1rem 6rem 1rem 3rem;
    width: 100%;
    justify-content: center;
}


.copyright {
    text-align: left;
    color: #969696;
    font-family: 'DIN Next LT Pro';
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4em;
    letter-spacing: -0.3px;
    margin: 0;
    margin-top: 4rem;
}

.copyright a{
    color: #fff;

}


/*form*/


form{
    margin-top:2rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

.c-input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #fff;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    color:#fff;
    border-radius: 0;
    padding-bottom: 10px;
    font-size: 18px;
}

::placeholder{
    color:#fff;
}

option{
    background-color:#121212;
}


.c-textarea {
    width: 100%;
    background: transparent;
    border: 2px solid #fff;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    color: #fff;
    padding: 10px;
    border-radius: 0;
    font-size: 18px;
}








.form-check {
    display: block;
    min-height: 1.5rem;
    display: flex;
    padding-left: 2.5em;
    flex-direction: row;
    align-items: center;
    gap:1rem;
    align-content: center;
}


.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input {
    min-width: 1.5em;
    min-height: 1.5em;
    margin-top: 0;
    vertical-align: top;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 2px solid rgb(23 23 23);
    border-color: #ffffff9e;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
}



.form-check-input:checked[type=checkbox] {
    background-image: url(/assets/img/check-grafox.svg);
    background-size: 15px 15px;
}

.form-check-input:checked {
    background-color: transparent;
    border-color: #fff;
}

.form-check-label {
    font-family: 'DIN Next LT Pro';
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    line-height: 1rem;
    letter-spacing: 1px;
}


.form-check-input:focus {
    border-color: #ffffff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 25%);
}


.btn-form {
    width: 100%;
    background: #fff;
    border-radius: 0;
    padding: 2rem 0rem;
    font-family: 'DIN Next LT Pro';
    font-weight: bold;
    font-size: 16px;
    transition: 0.5s;
    border: 2px solid #fff;
    letter-spacing: 6px;
}

.btn-form:hover {
    color: #fff;
    box-shadow: 10px 10px #ffffff57;
    border-color: #fff;
}



.f-newsletter{
    position: relative;
}

.n-input{
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #fff;
    font-family: 'DIN Next LT Pro';
    letter-spacing: 1px;
    color:#fff;
    padding-bottom: 10px;
    border-radius: 0;
    font-size: 18px;
    position:relative;
}


.send-newsletter{
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
}


.f-newsletter .form-check {
    padding-left: 1.5em;
}



#sendForm{
    opacity:1;
    visibility:visible;
    transition:0.5s;
}

.hide{
    opacity:0 !Important;
    visibility:hidden !Important;
}


.message-send {
    position: absolute;
    border: 2px solid #fff;
    color: #fff;
    top: 35%;
    width: 40%;
    font-family: 'DIN Next LT Pro';
    font-style: italic;
    font-size: 1.5rem;
    left: 30%;
    padding: 3rem;
}



.message-error {
    position: absolute;
    border: 2px solid #F44336;
    color: #F44336;
    top: 50%;
    width: 40%;
    font-family: 'DIN Next LT Pro';
    font-style: italic;
    font-size: 1.5rem;
    left: 30%;
    padding: 3rem;
}


.none{
    display:none;
}





/*LOADER*/


.loaderGif {
   display: flex;
   margin-left: auto;
   margin-right: auto;
   width: 12rem;
   height: auto;
}

#PageLoad{
   background-color: #141414;
   z-index: 9999999999;
   position: fixed;
   display: flex;
   width: 100%;
   top: 0;
   height: 100%;
   align-content: space-between;
   justify-content: space-around;
   align-items: center;
}




.unload{
opacity: 0;
visibility: hidden;
transition: 0.5s linear;
}












/*Color*/

.grey{
    color:#969696;
}

.black{
    color:#000;
}

.bg-black{
    background-color:#000;
}