@media screen and (min-width:1024px){
    #first *{
        cursor:pointer;
    }
    #bb{
    transition: 0.3s all ease;
    max-height: 0 ;
    opacity: 0;
}
#first:hover #bb {
    max-height: 200px;
  opacity: 1 !important;
}

}


