.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #E3DAD2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top::after {
    content: "";
    width: 15px;
    height: 15px;
    border-top: 2px solid #3a3434;
    border-right: 2px solid #3a3434;
    transform: rotate(-45deg);
    margin-top: 5px;
}
@media screen and (min-width: 1024px) and (orientation: portrait){ 
    .scroll-to-top {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 1024px) {

}
@media (max-width: 768px) {
    .scroll-to-top{
        right: 20px;
    }
}

@media (max-width: 576px) {

}

@media (max-width: 480px) {

}