/* Scroll To Top */
#return-to-top {
    position: fixed;
    bottom: 30px;
    right: 15px;
    background: rgb(28, 132, 198);
    background: rgba(28, 132, 198, 0.8);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    display: none;
    -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;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -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;
}

#return-to-top:hover {
    background: rgb(28, 132, 198)
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

/* Scroll To Top End */