.scrollToTop {
    width: 40px;
    height: 40px;
    line-height: 45px;
    color: $white-color;
    z-index: 999;
    bottom: 30px;
    right: 30px;
    position: fixed;
    border-radius: 5px;
    @include transform(translateY(150px));
    background: $theme-color;
    text-align: center;
    font-size: 16px;
    &:hover {
        color: $white-color;
    }
    &.active {
        @include transform(translateY(0));
        animation: bounceInDown 2s ;
        -webkit-animation: bounceInDown 2s ;
        -moz-animation: bounceInDown 2s ;
    }
    img {
        width: 100%;
    }
}
.custom-button {
    color: $white-color;
    @include border-radius(30px);
    font-weight: 600;
    text-transform: uppercase;
    padding: 19px 35px 15px;
    font-size: 20px;
    letter-spacing: 1px;
    background-image: -moz-linear-gradient( 0deg, rgb(74,58,255) 0%, rgb(210,51,248) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(74,58,255) 0%, rgb(210,51,248) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(74,58,255) 0%, rgb(210,51,248) 100%);
    box-shadow: 3.708px 11.413px 13px 0px rgba(75, 66, 174, 0.36);
    &:hover {
        color: $white-color;
    }
    @include breakpoint(max-sm) {
        padding: 15px 30px 10px;
        font-size: 16px;
    }
}