/**************************************************************
Wexou.com - Web and Apps Development
Copyright : https://wexou.com
Author : Salaheddine es-sbai - https://essbai.com
Version : 1.0.0
***************************************************************/
.aosEffect,
.aosEffect.active {
    position: relative;
    transition: 1s;
}
.GreyOnScroll,
.coloredBorder {
    filter: grayscale(1);
}
.aosEffect {
    opacity: 0;
    transform: scale(80%);
    bottom: 100px;
}
.aosEffect.active {
    opacity: 1 !important;
    transform: scale(100%);
    bottom: 0;
}
.GreyOnScroll,
.GreyOnScroll.active,
.coloredBorder.active {
    position: relative;
    transition: 2s;
}
.GreyOnScroll.active {
    filter: grayscale(0);
}
.coloredBorder {
    position: relative;
    opacity: 0.5;
    transition: 1s;
}
.coloredBorder.active {
    opacity: 1;
    filter: grayscale(0);
}
.GreyPulse {
    animation: 2s infinite GreyPulse;
    transition: 1s;
}
@keyframes GreyPulse {
    from {
        filter: grayscale(1);
    }
    to {
        filter: grayscale(0);
    }
}
