#back-to-top-button {
    /* display: none; */
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 101;
    border: none;
    outline: none;
    background-color: var(--colour-company);
    color: white;
    cursor: pointer;
    padding: 6px;
    border-radius: 7px;

}

#back-to-top-button:hover {
    background-color: var(--button-hover);
}

#scroll-down-button {
    /* display: block; */
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 101;
    border: none;
    outline: none;
    background-color: var(--colour-company);
    color: white;
    cursor: pointer;
    padding: 6px;
    border-radius: 7px;
    /* width: 1vw;
    height: 1vw; */
}

#scroll-down-button:hover {
    background-color: var(--button-hover);
}


.backtotop
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 20px;
}


@media (max-width: 900px)
{
    .backtotop
    {
        width: 25px;
        height: 15px;
    }
}