.fixed{
    position: fixed;
    padding: 28.5px 41.5px;
    right: 0;
    bottom: 25%;
    background-color: #007dc6;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: 9999;
}
.scroll-nav{
    position: fixed;
    z-index: 9999;
    left: 5%;
    top: 45%;
    gap: 20px 0;
} 
.nav-title{
    color: #fff;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}
.scroll-nav.scrolled .nav-title{
    color: #222222;
}
.nav-dots{
    gap: 25px 0;
}
.nav-dot{
    background-color: #c2c2c2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.nav-dot.active{
    background-color: #fffde6;
}
.scroll-nav.scrolled .nav-dot{
    background-color: #c2c2c2;
}
.scroll-nav.scrolled .nav-dot.active{
    background-color: #222222;
}

/* mobile */ 
@media screen and (max-width: 767px){ 
    .fixed{
        padding: 10px 15px;
        bottom: 20%;
    }
    .scroll-nav{
        display: none !important;
    }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    .fixed{
        padding: 15px 20px;
        bottom: 20%;
    }
    .scroll-nav{
        display: none !important;
    }
}