.scroll-down {
    padding: 10px 15px;
    border-radius: 6px;
    position: absolute;
    left: 70px;
    bottom: 50px;
    color: white;
    background: rgba(247, 240, 235, 0.2);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.scroll-down:hover {
    background: rgba(247, 240, 235, 0.3);
}

.scroll-down:active {
    background: rgba(247, 240, 235, 0.4);
}

.scroll-down img {
    margin-left: 10px;
}

.scroll-up {
    position: fixed;
    bottom: 45px;
    right: 40px;
    padding: 15px 20px;
    background: #FEFCFB;
    box-shadow: 0 2px 4px 0 rgba(63, 63, 63, 0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    visibility: hidden;
    z-index: 10;
}

.scroll-up:hover {
    background: #F7F0EB;
}

.scroll-up:active {
    background: #F0E4DB;
}

.scroll-up img {
    margin-left: 10px;
}

@media screen and (max-width: 1024px) {
    .scroll-down {
        left: 40px;
    }
}

@media screen and (max-width: 768px) {
    .scroll-down {
        left: 20px;
        bottom: 20px;
    }

    .scroll-up {
        right: 20px;
        bottom: 20px;
        flex-direction: column-reverse;
        width: min-content;
        align-items: center;
        text-align: center;
        padding: 10px 12px;
    }

    .scroll-up img {
        margin-left: 0;
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 768px) and (min-height: 800px) {
    .scroll-down {
        bottom: 50px;
    }
}
