@charset "UTF-8";
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(221, 221, 221, 0.6);
    width: 65px;
    height: 65px;
    /* display: block; */
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    /* border: 1px solid rgba(221, 221, 221, 0.7); */
    border: 1px solid #000;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
}
#scrollTopBtn svg, #scrollDownBtn svg {
    color: #212121;
    margin: 0;
    position: relative;
    left: 22px;
    top: 20px;
    font-size: 23px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#scrollTopBtn:hover, #scrollDownBtn:hover {
    background: rgba(221, 221, 221, 1);
    border: 1px solid #000;
}
#scrollTopBtn:hover svg, #scrollDownBtn:hover svg {
    color: #000;
    /* top: 5px; */
}

@media (max-width: 991.98px) {
    #scrollTopBtn {
        left: calc(50% - 32.5px);
        right: auto;
    }
}
#scrollDownBtn {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(221, 221, 221, 0.6);
    width: 65px;
    height: 65px;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    border: 1px solid #000;
    /* display: none; */
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
}
@media (max-width: 991.98px) {
    #scrollDownBtn {
        left: calc(50% - 32.5px);
        right: auto;
        top: 80px;
    }
}