* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "eina";

}
/*Scrolling animation_*/

@keyframes appear{
    from{
        opacity: 0;
        scale : 0.5;
    }
    to{
        opacity : 1;
        scale: 1;
    }
}
@keyframes appear-2{
    from{
        opacity: 0;
        transform: translateX(-100px);
    }
    to{
        opacity : 1;
        transform: translateX(0px);
    }
}
@keyframes appear-3{
    from{
        opacity: 0;
        transform: translateX(100px);
    }
    to{
        opacity : 1;
        transform: translateX(0px);
    }
}


@font-face {
    font-family: "eina2";
    src: url(Fonts/Eina-bold2.otf);
}

@font-face {
    font-family: "eina";
    src: url(Fonts/Eina.otf);
}
html{
    scroll-behavior: smooth;
}
header{
    padding: 10px 5%;

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

body {
    color: #fff;
    background: rgb(18,14,31);
    background: linear-gradient(90deg, rgba(18,14,31,1) 0%, rgba(17,17,19,1) 100%); 
}

.text-logo {
    font-family: 'eina2';
    font-size: 40px;
    transition: 0.5s;
}
.text-logo:hover{
    transform: translateY(-8px);
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin: 42px;
}

nav ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    position: relative;
    font-family: "eina2";
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 1px;
    background: #714BC8;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

span {
    color: #BDA0FF;
    font-family: "eina2";
}


/* VEILLE TECHNO */
   

.underline-veille {
    position: relative;
}

.underline-veille::after {
    content: '';
    position: absolute;
    left: -12px; /* Ajuster cette valeur pour décaler la ligne à gauche */
    bottom: -12px; /* Ajuster cette valeur pour décaler la ligne vers le bas */
    width: calc(100% - 15px); /* Ajuster cette valeur pour la longueur de la ligne */
    border-bottom: 3.5px solid #BDA0FF; /* Ajuster la couleur et l'épaisseur de la ligne */
}

.veille-title{
    color: #BDA0FF;
    font-family: 'eina2';
    font-size: 35px;
    animation : appear 0.3s linear;
    animation-timeline: view() ;
    animation-range: entry 0% cover 40%;
    padding: 150px 0;
    text-align: center;
}

/* AVTR VISION*/

#vision{
    padding: 150px 0;
}
.vision-box{
    width: 80%;
    margin: auto;
}
.vision h1{
    font-size: 25px;
    color: #BDA0FF;
    font-family: 'eina2';

}


/*Bouttons*/

.btn {
    padding: 1.3em 3em;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #fff ;
    background-color: #402379;
    border: none;
    border-radius: 45px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-top: 60px;
  }
  
  .btn:hover {
    background-color: #BDA0FF;
    color: #fff;
    transform: translateY(-7px);
  }
  
  .btn:active {
    transform: translateY(-1px);
  }





#neuralink{
    padding: 150px 0;
}
.neuralink-box{
    width: 80%;
    margin: auto;
}
.neuralink h1{
    font-size: 25px;
    color: #BDA0FF;
    font-family: 'eina2';
}