
.animator-wrapper .banner-thumb {
    width: 100%;
    max-width: 336px;
    position: relative;
}

.animator-wrapper .banner-thumb img {
    height: 100% !important;
    width: 100%;
}

.animator-wrapper .banner-thumb .item-2 {
    position: absolute;
    left: 0;
    top: 0;
    animation: bannerAnime 2s linear infinite;
    z-index: 1;
}

@keyframes bannerAnime {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/*Footer Tree Animation*/
@keyframes footerAnime1 {
    0% {
        opacity: 1;
    }

    76% {
        opacity: 1;
    }

    77% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes footerAnime2 {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    76% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.animator-wrapper.footer-thumb {
    position: relative;
}

.animator-wrapper .footer-thumb img {
    height: 100% !important;
    width: 100%;
}

.animator-wrapper .footer-thumb .item-1 {
    animation: footerAnime1 2s linear infinite;
}

.animator-wrapper .footer-thumb .item-2 {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    animation: footerAnime2 2s linear infinite;
    z-index: 1;
}

/*Hero Bird Ends*/
/*xAxis Animation*/
@keyframes xAxisMove {
    0% {
        transform: translateX(-25px);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25px);
    }
}

.animator-wrapper .xAxisMove {
    animation: xAxisMove 4s linear infinite;
}

/*tAxis Animation*/
@keyframes yAxisMove {
    0% {
        transform: translateY(-25px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-25px);
    }
}

.animator-wrapper .yAxisMove {
    animation: yAxisMove 4s linear infinite;
}

/*triAngleMove Animation*/
@keyframes triAngleMove {
    0% {
        transform: translate(-25px, 25px);
    }

    33% {
        transform: translate(-25px, -25px);
    }

    66% {
        transform: translate(25px, -25px);
    }

    100% {
        transform: translate(-25px, 25px);
    }
}

.animator-wrapper .triAngleMove {
    animation: triAngleMove 6s alternate infinite;
}

/*rotationMove Animation*/
@keyframes rotationMove {
    0% {
        transform: translate(-25px, 0) rotate(0deg);
    }

    50% {
        transform: translate(25px, 25px) rotate(360deg);
    }

    100% {
        transform: translate(0, -25px) rotate(0deg);
    }
}

.animator-wrapper .rotationMove {
    animation: rotationMove 8s alternate infinite;
}

/*spin Animation*/
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.animator-wrapper .spin {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 8s alternate infinite;
}

/* Tilt Animation*/
@keyframes tilt {
    0% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.animator-wrapper .tilt {
    animation: tilt 1s alternate infinite;
}

.circular-border-rotate {
    width: 391px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.circular-border-rotate img {
    width: 100%;
}

.circular-border-rotate::before, .circular-border-rotate::after {
    content: "";
    border: 2px dashed #dddded;
    border-radius: 50%;
    aspect-ratio: 1;
    position: absolute;
    top: 50%;
    left: 52%;
    z-index: -1;
}

.circular-border-rotate::after {
    width: 86%;
    animation: clockSpin 100s linear infinite;
}

.circular-border-rotate::before {
    width: 67%;
    animation: antiClockSpin 100s linear infinite;
}

@keyframes clockSpin {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes antiClockSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/*spinMove Animation*/
@keyframes spinMove {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.spinMove {
    animation: spinMove 8s alternate infinite;
}



