/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 11 2026 | 10:38:12 */
@media (min-width: 992px) {

.scroll-animate{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.scroll-animate-left{
    transform:translateX(-60px);
}

.scroll-animate-right{
    transform:translateX(60px);
}

.scroll-animate.show{
    opacity:1;
    transform:translate(0,0);
}

.buttons a{
    transition: transform 0.3s ease;
}

.buttons a:hover{
    transform: translateY(-5px) scale(1.05);
}

}