
.tit_navbar {
    color: #fff;
    position: absolute;
    bottom: 80px;
    left: 40px;
}

footer ul{
    position: absolute;
    bottom:50px;
    left: 0px;
    list-style: none;
    display: flex;
    gap: 10px;
    width: 100%;
}

footer li {
    display: flex;
    align-items: center;
    gap: 2px;
    color:#999
}

footer li .bullet {
    content: "";
    width: 10px;
    height: 10px;
    border: solid 1px #ffffff;
    background-color: rgba(255, 255, 255, 0.503);
    border-radius: 100%;
    cursor: pointer;
}

footer li h5 {
    position: absolute;
    bottom: -45px;
    left: 0;
    margin-left: 40px;
    font-family: sans-serif;
    font-weight: bold;
    color: #ffffff;
    font-size: 16px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}


footer li:hover h5 {
    visibility: visible;
    opacity: 1;
}

footer .active h5 {
    visibility: visible;
    opacity: 1;
}

footer .active .bullet {
    background-color: red;
}

footer .bullet:hover, .bullet.active {
    background-color: white;
    transition: all 0.5s;

}


footer li.active:before  {
    background-color: #999;
}

footer h5.active  {
    position: absolute;
    bottom: -25px;
    left: 0;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
}

@media screen and (max-width:1024px){
    footer {
        display:none;
    }
}


