﻿.animate {
    opacity: 1;
}

.home-newsevent-listing.animate {
    animation: rtl 0.75s 1;
}

.ex-grid.animate {
    animation: ltr 0.75s 1;
}

.home-brand-award-img-contain.animate {
    animation: rtl 0.75s 1;
}

.home-brand-award-content.animate {
    animation: ltr 0.75s 1;
}

.commerce-new-member.animate {
    animation: zto 1s 1;
}

.commerce-member-col-item.animate {
    animation: szto 0.75s 1;
    transform: scale(1);
}

.home-chairman-image-contain.animate {
    animation: rtl 0.75s 1;
}

.home-chairman-content.animate {
    animation: ltr 0.75s 1;
}

.home-aboutus.animate {
    animation: rtl 0.75s 1;
}


@keyframes zto {
    from {
        opacity: 0
    }

    to {
        opacity: 1;
    }
}


@keyframes rtl {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes ltr {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}


@keyframes zto {
    from {
        opacity: 0
    }

    to {
        opacity: 1;
    }
}

@keyframes szto {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes htzto85vh {
    from {
        height: 0;
    }

    to {
        height: 85vh;
    }
}

.scroll-disable {
    height: 100%;
    overflow: hidden;
}

#preloader.animationend {
    opacity: 0;
    transition-duration: 1s;
    animation-name: bye;
    animation-duration: 1s;
    display: none;
}

@keyframes bye {

    from {
        transform: translateX(0%);
        display: block;
    }

    to {
        transform: translateX(100%);
        display: block;
    }
}

#preloader {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    background-color: #26698f;
    height: 100%;
    width: 100%;
    opacity: 1;
}

#preloader-cover {
    background-color: #fff;
    clip-path: polygon(0 0, 60% 0, 43% 100%, 0% 100%);
    height: 0%;
    opacity: 0;
}

    #preloader-cover.animate {
        animation: loaderlogo 0.75s 1;
        height: 100%;
        opacity: 1;
    }

@keyframes loaderlogo {
    from {
        opacity: 0;
        height: 0%;
    }

    to {
        opacity: 1;
        height: 100%;
    }
}

.preloader-logo {
    width: 400px;
    height: 223px;
    position: absolute;
    top: 30%;
    left: 10%;
    opacity: 0;
    animation: loaderlogo 0.75s 1;
}

    .preloader-logo.animate {
        opacity: 1;
    }
