.conttagline{
    height:fit-content;
    min-height: fit-content;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    color: #fff;
    background-color: #00000000;
    position: relative;
    z-index:2 ;
}
.neural-network {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 0;
    background-color: #00000000;
    overflow: hidden;
}

.canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.teamdes{
    display: flex;
    flex-direction: column;
    width: calc(100% - 60px) ;
    margin: 0;
    padding: 30px;
    font-family: Arial, Helvetica, sans-serif;

}
.team-section {
    display: flex;
    flex-direction: row;
    width: calc(100% - 60px) ;
    min-width: fit-content;
    gap: 20px;
    height: 60%;
    min-height: fit-content;
    justify-content: space-evenly;
    align-items: center;
    background-color: #00000000;
    min-height: 400px;
    padding: 30px;
  }
  .photo{
    height: 400px;
    width: 300px;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat; 
    border: 1px solid #35d77900;
  }
  .photo:hover{
    border: 1px solid #35d779;
  }
  .team-member {
    height: fit-content;
    margin-top: -30px;
    font-family: Arial, Helvetica, sans-serif;
 }
  .pos{
    font-size: 18px;
    color: #9b9999;
  }
  .team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
  }
  
.bink1{
    color: #ffffff;
    font-size: 20px;
}
.bink1:hover{
    
    color: #818181;
}
@media(max-width:700px){
    .team-section{
        flex-direction: column;
        gap: 60px;
    }
    .conttagline{
        height: fit-content;
    }
}
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  