@charset "UTF-8";
@-webkit-keyframes heightSlideDown {
    from {
       height: 0;
    }


    to {
        height: 100%;
    }
}
.myBounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: myBounceIn;
    animation-name: myBounceIn;
}
.bgZoom{
    animation: bgZoom 20s ease 1 forwards;
}
@-webkit-keyframes myBounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    /*60% {*/
        /*opacity: 1;*/
        /*-webkit-transform: scale3d(1.03, 1.03, 1.03);*/
        /*transform: scale3d(1.03, 1.03, 1.03);*/
    /*}*/

    /*80% {*/
        /*-webkit-transform: scale3d(0.97, 0.97, 0.97);*/
        /*transform: scale3d(0.97, 0.97, 0.97);*/
    /*}*/

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }
}

@keyframes myBounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    /*40% {*/
        /*-webkit-transform: scale3d(0.9, 0.9, 0.9);*/
        /*transform: scale3d(0.9, 0.9, 0.9);*/
    /*}*/

    /*60% {*/
        /*opacity: 1;*/
        /*-webkit-transform: scale3d(1.03, 1.03, 1.03);*/
        /*transform: scale3d(1.03, 1.03, 1.03);*/
    /*}*/

    /*80% {*/
        /*-webkit-transform: scale3d(0.97, 0.97, 0.97);*/
        /*transform: scale3d(0.97, 0.97, 0.97);*/
    /*}*/

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }
}

@keyframes bgZoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 105%;
    }
}

@-webkit-keyframes bgZoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 105%;
    }

}