/*Animation Bounce*/

.box-bounce {
    background-color: transparent;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    z-index: 1
}

.top-anime {
    position: relative
}

.box-bounce b {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #3673cf;
    /*
    box-shadow: inset -5px -5px 5px rgba(0, 0, 0, .6), 15px 15px 2px rgba(0, 0, 0, .04);*/
    position: absolute;
    -webkit-animation: moveX 6.05s linear 0s infinite alternate, moveY 6.4s linear 0s infinite alternate;
    -moz-animation: moveX 6.05s linear 0s infinite alternate, moveY 6.4s linear 0s infinite alternate;
    -o-animation: moveX 6.05s linear 0s infinite alternate, moveY 6.4s linear 0s infinite alternate;
    animation: moveX 6.05s linear 0s infinite alternate, moveY 6.4s linear 0s infinite alternate;
    background: url('../lay/images/smiley.svg');
    background-size: 100% 100%
}

@-ms-keyframes moveX {
    from {
        left: 0;
        transform: rotate(0deg);
    }
    to {
        left: calc(98vw - 120px);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes moveX {
    from {
        left: 0;
        transform: rotate(0deg);
    }
    to {
        left: calc(98vw - 120px);
        transform: rotate(360deg);
    }
}

@-moz-keyframes moveX {
    from {
        left: 0;
        transform: rotate(0deg);
    }
    to {
        left: calc(98vw - 120px);
        transform: rotate(360deg);
    }
}

@-o-keyframes moveX {
    from {
        left: 0;
        transform: rotate(0deg);
    }
    to {
        left: calc(98vw - 120px);
        transform: rotate(360deg);
    }
}

@keyframes moveX {
    from {
        left: 0;
        transform: rotate(0deg);
    }
    to {
        left: calc(98vw - 120px);
        transform: rotate(360deg);
    }
}

@-ms-keyframes moveY {
    from,
    to {
        top: 0;
    }
    20% {
        top: calc(100% - 120px)
    }
    40% {
        top: 0;
    }
    60% {
        top: calc(100% - 120px)
    }
    80% {
        top: 0;
    }
    100% {
        top: calc(100% - 120px);
    }
}

@-webkit-keyframes moveY {
    from,
    to {
        top: 0;
    }
    20% {
        top: calc(100% - 120px)
    }
    40% {
        top: 0;
    }
    60% {
        top: calc(100% - 120px)
    }
    80% {
        top: 0;
    }
    100% {
        top: calc(100% - 120px);
    }
}

@-moz-keyframes moveY {
    from,
    to {
        top: 0;
    }
    20% {
        top: calc(100% - 120px)
    }
    40% {
        top: 0;
    }
    60% {
        top: calc(100% - 120px)
    }
    80% {
        top: 0;
    }
    100% {
        top: calc(100% - 120px);
    }
}

@-o-keyframes moveY {
    from,
    to {
        top: 0;
    }
    20% {
        top: calc(100% - 120px)
    }
    40% {
        top: 0;
    }
    60% {
        top: calc(100% - 120px)
    }
    80% {
        top: 0;
    }
    100% {
        top: calc(100% - 120px);
    }
}

@keyframes moveY {
    from,
    to {
        top: 0;
    }
    20% {
        top: calc(100% - 120px)
    }
    40% {
        top: 0;
    }
    60% {
        top: calc(100% - 120px)
    }
    80% {
        top: 0;
    }
    100% {
        top: calc(100% - 120px);
    }
}


.top-anime .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-delay: 1.0s;
    -moz-animation-delay: 1.0s;
    -o-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@media (min-width: 481px)
.row-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 100% !important;
}