@keyframes rotateImage {
    0% {
        transform: rotate(65deg); 
        opacity: 0;  
    }
    100% {
        transform: rotate(0deg);  
        opacity: 1;  
    }
}


.unmatch-service .left ul li .image > img {
    width: 100%;
    transform: rotate(65deg);  
    opacity: 0;  
    transition: none;  
}


.active .unmatch-service .left ul li .image > img {
    animation-name: rotateImage; 
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards; 
}


.active .unmatch-service .left ul li:nth-child(1) .image > img {
    animation-delay: 2s;
}

.active .unmatch-service .left ul li:nth-child(2) .image > img {
    animation-delay: 3s;
}

.active .unmatch-service .left ul li:nth-child(3) .image > img {
    animation-delay: 4s;
}

.active .unmatch-service .left ul li:nth-child(4) .image > img {
    animation-delay: 5s;
}

.active .unmatch-service .left ul li:nth-child(5) .image > img {
    animation-delay: 6s;
}

.active .unmatch-service .left ul li:nth-child(6) .image > img {
    animation-delay: 7s;
}

.active .unmatch-service .left ul li:nth-child(7) .image > img {
    animation-delay: 8s;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.active .unmatch-service .left ul li {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0;  
}

.active .unmatch-service .left ul li:nth-child(1) {
    animation-delay: 1.5s;
}

.active .unmatch-service .left ul li:nth-child(2) {
    animation-delay: 2.5s;
}

.active .unmatch-service .left ul li:nth-child(3) {
    animation-delay: 3.5s;
}

.active .unmatch-service .left ul li:nth-child(4) {
    animation-delay: 4.5s;
}

.active .unmatch-service .left ul li:nth-child(5) {
    animation-delay: 5.5s;
}

.active .unmatch-service .left ul li:nth-child(6) {
    animation-delay: 6.5s;
}

.active .unmatch-service .left ul li:nth-child(7) {
    animation-delay: 7.5s;
}


@keyframes fadeInButton {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.active .unmatch-service .unmatched_btn {
    animation-name: fadeInButton;
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0; 
    animation-delay: 9s;  
}

