
.at-item {
    animation-name: shutter-in-top2;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;

}
@keyframes shutter-in-top2 {
0%{
    transform: rotateX(-100deg);
    transform-origin: top;
    opacity: 0;
}
100%{
    transform: rotateX(0deg);
    transform-origin: top;
    opacity: 0.48;
}
}

.at-item2 {
    animation-name: shutter-in-top;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;

}
@keyframes shutter-in-top {
0%{
    transform: rotateX(-100deg);
    transform-origin: top;
    opacity: 0;
}
100%{
    transform: rotateX(0deg);
    transform-origin: top;
    opacity: 1;
}
}

.at-item3:hover {
    animation-name: scale-img ;
    animation-duration: 0.5s;
    animation-fill-mode : forwards 
}
@keyframes scale-img {
    0%{
        transform: scale(1.02);  
    }
    100%{
        transform: scale(1.05);  
    }
}