*{
    font-family: "Electrolize", sans-serif;

}

h1 ,h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    font-family: "Orbitron", sans-serif;

}

.light-mode {
    background-color: var(--light);
    color: var(--dark);
    
    

}




:root{
    
    --light: rgb(250,250,250);
    --dark : rgb(26,26,26);

    --black: rgb(26,26,26);
    --white: rgb(250,250,250);
    --red : rgb(132,0,0);
    
}

.bg-black{
    background-color: var(--black);
}
.bg-white{
    background-color: var(--white);
}
.bg-red{
    background-color: var(--red);
}

.txt-black{
    color: var(--black);
}
.txt-white{
    color: var(--white);
}
.txt-red{
    color: var(--red);
}

/* css navbar */
.nav-custom{
    background-color: var(--white);
    min-height:90px;
    width: 100%;
    position: fixed;
    top: 0;
    transition: 0.5s;
    z-index: 10;
         
    
}

    





/* css scrollbar */
.nav-blur{
    backdrop-filter: blur(5px) saturade(0.8);
    background: rgba(100, 100, 100, 0.9);
    border-top: 3px solid var(--red);
    box-shadow: 0px 0px 50px var(--red);
}

/* #myNavbar{
    box-shadow: 0px 0px 50px var(--red);
} */

.img-logo{
    height: 80px;
    width: 90px;
}

.nav-link{
    color: var(--black);
}

header{
    height: 100vh;
    background: linear-gradient(rgb(250,250,250), rgba(250,250,250, 0.0)), url(./assett/header.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 100px;
}
.forms{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 100vh; */
    align-items: end;
}

.btn-custom{
    height: 40px;
    width: 100px;
    border: unset;
    border-radius: 11px;
    color: var(--black);
    background: transparent;
    z-index: 1;
    position: relative;
    transition:all 250ms;
    overflow: hidden;
}
.btn-custom::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 10px;
    background-color: var(--red);
    z-index: -1;
    transition: all 250ms;

}

.btn-custom:hover{
    color: var(--white);
    
}
.btn-custom:hover::before{
    width: 100%;
}

.logoHeader{
    
    width: 400px;
    height: 380px;
    
}

@media screen and (max-width:767px){
    .logoHeader{
    
        width: 300px;
        height: 300px;
        
    }
}

body,html{
    overflow-x: hidden;
}

.numbers{
    font-size: 45px;
    color: var(--red);
    font-weight: bold;
}

.h2-forza {
    font-size: 72px;
    background: -webkit-linear-gradient( rgb(132,0,0), rgb(26,26,26));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


 }

 .titoloProdotti{
    font-size: 45px;
    background: -webkit-linear-gradient( rgb(132,0,0), rgb(26,26,26));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 }

 /* swiper css */

 .swiper {
    
    height: 300px;
  }

  .swiper {
      width: 100%;
      height: 100%;
      background: #000;
    }

    .swiper-slide {
      font-size: 18px;
      color:var(--black);
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 40px 60px;
    }

    .parallax-bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 130%;
      height: 100%;
      background-image:linear-gradient(rgba(250,250,250,0.5),rgba(250,250,250,0.2)), url(./assett/nicki-eliza-schinow-BjJP2TN8WoI-unsplash.jpg);
      -webkit-background-size: cover;
      background-size: cover;
      background-position: center;
      
    }

    .swiper-slide .title {
      font-size: 41px;
      font-weight: 300;
    }

    .swiper-slide .subtitle {
      font-size: 21px;
    }

    .swiper-slide .text {
      font-size: 14px;
      max-width: 400px;
      line-height: 1.3;
    }

    .bordoForm{
        border: 2px solid var(--red);
    }


    /* css annunci.html */

    .titleAnnunci{
        margin-top: 100px;
        
        
        

    }


    /* footer */
    .footer{
        height: max-content;
        margin-top: 30px;
       border: 2px solid var(--red);
       padding: 4rem;
       
       
       

    }

    .footer ul {
        list-style: none;
        
        
    }

    /* .bordo{
        border: 2px solid var(--red);
        min-height: 40vh;
    } */

   