@keyframes revealRight {
    0% {
        transform: scaleX(1);
   }
    100% {
        transform: scaleX(0);
   }
}
@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
   }
    100% {
        opacity: 1;
        transform: translateY(0px);
   }
}
@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translateX(30px);
   }
    100% {
        opacity: 1;
        transform: translateX(0px);
   }
}
@keyframes slide-left {
    0% {
        opacity: 0;
        transform: translateX(-30px);
   }
    100% {
        opacity: 1;
        transform: translateX(0px);
   }
}
@keyframes zoom-out {
    0% {
        transform: scale(1.1);
   }
    100% {
        transform: scale(1);
   }
}
@keyframes slide-left-100 {
    0% {
        opacity: 0;
        transform: translateX(-100%);
   }
    100% {
        opacity: 1;
        transform: translateX(0px);
   }
}
@keyframes fades {
    0% {
        opacity: 0;
   }
    100% {
        opacity: 1;
   }
}
.fades {
    animation-name: fades;
    animation-duration: 1s;
}
.zoom-out {
    animation: 0.8s ease 0s 1 normal forwards zoom-out;
    will-change: transform;
    animation-fill-mode: both;
    animation-delay: 0s;
    visibility: visible;
    opacity: 1;
}
.zoom-out.delay1 {
    animation-delay: 0.2s;
}
.zoom-out.delay2 {
    animation-delay: 0.4s;
}
.zoom-out.delay3 {
    animation-delay: 0.6s;
}
.zoom-out.delay4 {
    animation-delay: 0.8s;
}
.zoom-out.delay5 {
    animation-delay: 0.9s;
}
.zoom-out.delay6 {
    animation-delay: 1s;
}
.zoom-out.delay7 {
    animation-delay: 1.1s;
}
.slide-up {
    animation: 0.8s ease 0s 1 normal forwards slide-up;
    will-change: transform, opacity;
    animation-fill-mode: both;
    animation-delay: 0s;
    visibility: visible;
}
.slide-up.delay1 {
    animation-delay: 0.2s;
}
.slide-up.delay2 {
    animation-delay: 0.4s;
}
.slide-up.delay3 {
    animation-delay: 0.6s;
}
.slide-up.delay4 {
    animation-delay: 0.8s;
}
.slide-up.delay5 {
    animation-delay: 0.9s;
}
.slide-up.delay6 {
    animation-delay: 1s;
}
.slide-up.delay7 {
    animation-delay: 1.1s;
}
.slide-right {
    animation: 0.8s ease 0s 1 normal forwards slide-right;
    will-change: transform, opacity;
    animation-fill-mode: both;
    animation-delay: 0s;
    visibility: visible;
}
.slide-right.delay1 {
    animation-delay: 0.2s;
}
.slide-right.delay2 {
    animation-delay: 0.4s;
}
.slide-right.delay3 {
    animation-delay: 0.6s;
}
.slide-right.delay4 {
    animation-delay: 0.8s;
}
.slide-right.delay5 {
    animation-delay: 0.9s;
}
.slide-right.delay6 {
    animation-delay: 1s;
}
.slide-left {
    animation: 0.8s ease 0s 1 normal forwards slide-left;
    will-change: transform, opacity;
    animation-fill-mode: both;
    animation-delay: 0s;
    visibility: visible;
}
.slide-left.delay1 {
    animation-delay: 0.2s;
}
.slide-left.delay2 {
    animation-delay: 0.4s;
}
.slide-left.delay3 {
    animation-delay: 0.6s;
}
.slide-left.delay4 {
    animation-delay: 0.8s;
}
.slide-left.delay5 {
    animation-delay: 0.9s;
}
.slide-left.delay6 {
    animation-delay: 1s;
}
.slide-left-100 {
    animation: 0.8s ease 0s 1 normal forwards slide-left-100;
    will-change: transform, opacity;
    animation-fill-mode: both;
    animation-delay: 0s;
    visibility: visible;
}
.slide-left-100.delay1 {
    animation-delay: 0.2s;
}
.slide-left-100.delay2 {
    animation-delay: 0.4s;
}
.slide-left-100.delay3 {
    animation-delay: 0.6s;
}
.slide-left-100.delay4 {
    animation-delay: 0.8s;
}
.slide-left-100.delay5 {
    animation-delay: 0.9s;
}
.slide-left-100.delay6 {
    animation-delay: 1s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
   }
    to {
        opacity: 1;
   }
}
.fade-in {
    animation: 0.8s ease 0s 1 normal forwards fadeIn;
    will-change: transform, opacity;
    animation-fill-mode: both;
    animation-delay: 0s;
    visibility: visible;
}
.fade-in.delay1 {
    animation-delay: 0.2s;
}
.fade-in.delay2 {
    animation-delay: 0.4s;
}
.fade-in.delay3 {
    animation-delay: 0.6s;
}
.fade-in.delay4 {
    animation-delay: 0.8s;
}
.fade-in.delay5 {
    animation-delay: 0.9s;
}
.fade-in.delay6 {
    animation-delay: 1s;
}
.fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeOut {
    from {
        opacity: 1;
   }
    to {
        opacity: 0;
   }
}
.fadeOut {
    animation-name: fadeOut;
}
.revel-animation.revel-left {
    opacity: 1;
    visibility: visible;
}
.revel-animation.revel-left:before {
    z-index: 999;
    content: '';
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2f8fd;
    transform-origin: 100% 50%;
    animation: revealRight 1.8s cubic-bezier(0.23, 1, 0.75, 1) forwards;
}

/* .news-update-card:hover .img-div{
    height: 20rem;
} */
