@keyframes fadeInUp {
    from {
        transform: translate3d(0,80px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,80px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}
@keyframes fadeOutDown {
    from {
        transform: translate3d(0,0,0);
        opacity: 1
    }

    to {
        transform: translate3d(0,80px,0);
        opacity: 0
    }
}

@-webkit-keyframes fadeOutDown {
    from {
        transform: translate3d(0,0,0);
        opacity: 1
    }

    to {
        transform: translate3d(0,80px,0);
        opacity: 0
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}
.fadeOutDown {
    opacity: 0;
    animation-name: fadeOutDown;
    -webkit-animation-name: fadeOutDown;
}

/* image hide show */
.animte_polygon_right {
    transition: clip-path 2s !important;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.animte_polygon_down {
    transition: clip-path 2s !important;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.animte_polygon_full {
    transition: clip-path 2s !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@keyframes animte_polygon_load {
    from {
        transition: clip-path 2s !important;
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }

    to {
        transition: clip-path 2s !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@-webkit-keyframes animte_polygon_load {
    from {
        transition: clip-path 2s !important;
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }

    to {
        transition: clip-path 2s !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
.animte_polygon_load {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-name: animte_polygon_load;
    -webkit-animation-name: animte_polygon_load;
}

@keyframes animte_polygon_up_down {
    from {
        transition: clip-path 2s !important;
        clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    }

    to {
        transition: clip-path 2s !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@-webkit-keyframes animte_polygon_up_down {
    from {
        transition: clip-path 2s !important;
        clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    }

    to {
        transition: clip-path 2s !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
.animte_polygon_up_down {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-name: animte_polygon_up_down;
    -webkit-animation-name: animte_polygon_up_down;
    animation-delay: 0.35s;
}