/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.scrollTop{
    position: fixed;
    bottom: 800px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: url("../img/arrow-circle.png");
    border-radius: 50%;
    background-size: 75px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 100000;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}
.scrollTop.active{
    bottom: 20px;
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 376px){
    .scrollTop{
        left: 20px;
    }

    .scrollTop.active {
        bottom: 20px;
    }
}