﻿
.BgComingSoon
{
    /*background: url('../Images/BGs/12DarkNature.jpg') no-repeat center center fixed;*/

    background: url('../Images/BGs/15NatureWithBaloons.jpg') no-repeat center center fixed;
    background-size: cover;
   
}

.MoveLeft100s
{
    -webkit-animation: MoveLeftAnimation 100s linear infinite;
    -moz-animation: MoveLeftAnimation 100s linear infinite;
    animation: MoveLeftAnimation 100s linear infinite;
}


.MoveLeft150s
{
    -webkit-animation: MoveLeftAnimation 150s linear infinite;
    -moz-animation: MoveLeftAnimation 150s linear infinite;
    animation: MoveLeftAnimation 150s linear infinite;
}


.MoveTop150s
{
    -webkit-animation: MoveTopAnimation 100s linear infinite;
    -moz-animation: MoveTopAnimation 100s linear infinite;
    animation: MoveTopAnimation 100s linear infinite;
}


.SimpleMovement150s
{
    -webkit-animation: SimpleMovementAnimation 150s linear infinite;
    -moz-animation: SimpleMovementAnimation 150s linear infinite;
    animation: SimpleMovementAnimation 150s linear infinite;
}


.SimpleMovement100s
{
    -webkit-animation: SimpleMovementAnimation 100s linear infinite;
    -moz-animation: SimpleMovementAnimation 100s linear infinite;
    animation: SimpleMovementAnimation 100s linear infinite;
}



@-webkit-keyframes MoveLeftAnimation
{
    0%
    {
        margin-left: -50%;
    }

    50%
    {
        margin-left: 100%;
    }
    0%
    {
        margin-left: -50%;
    }
}

@-moz-keyframes MoveLeftAnimation
{
    0%
    {
        margin-left: -50%;
    }

    50%
    {
        margin-left: 100%;
    }

    0%
    {
        margin-left: -50%;
    }
}

@keyframes MoveLeftAnimation
{
    0%
    {
        margin-left: -50%;
    }

    50%
    {
        margin-left: 100%;
    }

    0%
    {
        margin-left: -50%;
    }
}



@-webkit-keyframes SimpleMovementAnimation
{
    0%
    {
        margin-left: 0%;
        margin-bottom:5%;
    }

    100%
    {
        margin-left: 100%;
        margin-bottom: 10%;
    }
}

@-moz-keyframes SimpleMovementAnimation
{

    0%
    {
        margin-left: 0%;
        margin-bottom: 5%;
    }

    100%
    {
        margin-left: 100%;
        margin-bottom: 10%;
    }
}

@keyframes SimpleMovementAnimation
{

    0%
    {
        margin-left:0%;
        margin-bottom: 5%;
    }

    100%
    {
        margin-left: 100%;
        margin-bottom: 10%;
    }
}





@-webkit-keyframes MoveTopAnimation
{
    0%
    {
        margin-top: 35%;
    }

    100%
    {
        margin-top: -20%;
    }
    
}

@-moz-keyframes MoveTopAnimation
{
    0%
    {
        margin-top: 35%;
    }

    100%
    {
        margin-top: -20%;
    }
}

@keyframes MoveTopAnimation
{
    0%
    {
        margin-top: 35%;
    }

    100%
    {
        margin-top: -20%;
    }
}

