.bg-gradient-footer {
    background: linear-gradient(221deg, var(--lblue3), var(--lblue5), var(--lblue3));
    background-size: 300% 300%;
    -webkit-animation: bg-gradient-animator 10s ease infinite;
    -moz-animation: bg-gradient-animator 10s ease infinite;
    -o-animation: bg-gradient-animator 10s ease infinite;
    animation: bg-gradient-animator 10s ease infinite;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}


@-webkit-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-moz-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-o-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}



.site-footer {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}




.copyright {
    /*padding-top: 30px;*/
    padding-bottom: 30px;
    text-align: center;
    margin-top: 20px;
    border-top: 0px solid var(--blackrgba1);
}

.copyright svg {
    position: relative;
    top: 0px;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    fill: var(--developer);
    animation: pulseheart 1s infinite;
    transition: transform 0.2s ease;
}

.copyright p {
    color: var(--cccccc);
    font-size: 14px !important;
    line-height: 1.1;
    margin-bottom: 0px;
    font-family: var(--special-font);
    font-weight: 400;
}

.copyright a {
    color: var(--cccccc);
    font-size: 14px !important;
    font-weight: 600;
    font-family: var(--special-font);
}

.copyright a:focus,
.copyright a:hover {
    color: var(--lblue2);
}



@keyframes pulseheart {
    0% {
        transform: scale(0.75);
    }
    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.75);
    }
}