@import url('https://fonts.googleapis.com/css2?family=Inter&amp;family=Montserrat&amp;display=swap');



.text-gradient{
    background: linear-gradient(90deg, #00F802 2%, #006B37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-item:hover{
    background: linear-gradient(90deg, #00F802 2%, #006B37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
transition: 0.3s all ease-in-out;
}

.inter{
    font-family: 'Inter', sans-serif !important;
}


.gradient-box {

    position: relative;
    box-sizing: border-box;
    box-shadow: 2px 2px 10px 2px rgba(255, 255, 255, 0.15); 
    color: #FFF;
    background: #0D0D0D;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
     
}

.gradient-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -1px; /* !importanté */
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #00F802, #006B37);
}



.lock-length {
    position: relative;
    box-sizing: border-box;

    color: #FFF;
    background: #0D0D0D;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    border-radius: 10px;
}

.lock-length::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    z-index: -10;
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to bottom, #00F802, #006B37);
}

.lock-length-child {
    display: block; 
    text-align: center;
    padding: 1px;
    box-shadow: 2px 2px 10px 2px rgba(255, 255, 255, 0.15);
    position: relative;
    border-radius: 10px;
    z-index: 100;
    background: linear-gradient(to top, #00F802, #006B37);
}   

.child2{
    padding: 1rem 1rem;

    border-radius: inherit; /* !importanté */
    background-color: #0D0D0D;
}


.border-gradient{
    
    border: 1px solid #00F802;
    background: linear-gradient(0deg, #006838 -78.02%, rgba(0, 0, 0, 0.00) 26.1%);
}


.bg-texture{
    background-image: url('../img/texture.png');    
    background-size: cover;
}

