#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 99;
    border: 2px solid var(--primary-blue);
    outline: none;
    background-color: white;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 15px;
    border-radius: 100%;
    transition: all 0.5s ease;
    font-size: 18px;

}

#backToTopBtn:hover {
    background-color: var(--primary-blue);
    color: white;
    border: 2px solid white;
}

@media (max-width:1200px) {
#backToTopBtn{
       bottom: 90px !important;
}
}