.float-square-bg,
.float-square-bg-2 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    margin-top: -111px;
    z-index: 1;
}

.float-square-bg i:nth-child(1),
.float-square-bg-2 i:nth-child(1) {
    left: 10%;
    -webkit-animation-duration: 14s;
    animation-duration: 14s;
}

.float-square-bg i:nth-child(2),
.float-square-bg-2 i:nth-child(2) {
    left: 20%;
    width: 90px;
    height: 90px;
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
}

.float-square-bg i:nth-child(3),
.float-square-bg-2 i:nth-child(3) {
    left: 30%;
    -webkit-animation-duration: 18s;
    animation-duration: 18s;
}

.float-square-bg i:nth-child(4),
.float-square-bg-2 i:nth-child(4) {
    left: 40%;
    width: 50px;
    height: 50px;
    -webkit-animation-duration: 11s;
    animation-duration: 11s;
    background-color: rgba(255, 255, 255, .25);
}

.float-square-bg i:nth-child(5),
.float-square-bg-2 i:nth-child(5) {
    left: 50%;
    width: 40px;
    height: 40px;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
}

.float-square-bg i:nth-child(6),
.float-square-bg-2 i:nth-child(6) {
    left: 60%;
    width: 50px;
    height: 50px;
    -webkit-animation-duration: 17s;
    animation-duration: 17s;
    background-color: rgba(255, 255, 255, .2);
}

.float-square-bg i:nth-child(7),
.float-square-bg-2 i:nth-child(7) {
    left: 70%;
    width: 70px;
    height: 70px;
    -webkit-animation-duration: 18s;
    animation-duration: 18s;
}

.float-square-bg i:nth-child(8),
.float-square-bg-2 i:nth-child(8) {
    left: 80%;
    width: 20px;
    height: 20px;
    -webkit-animation-duration: 11s;
    animation-duration: 11s;
}

.float-square-bg i:nth-child(9) {
    left: 90%;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    background-color: rgba(255, 255, 255, .3);
}

.float-square-bg i:nth-child(10),
.float-square-bg-2 i:nth-child(10) {
    left: 100%;
    -webkit-animation-duration: 17s;
    animation-duration: 17s;
}

.float-square-bg i:nth-child(11),
.float-square-bg-2 i:nth-child(11) {
    left: 5%;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
}

.float-square-bg i:nth-child(12),
.float-square-bg-2 i:nth-child(12) {
    left: 15%;
    width: 90px;
    height: 90px;
    -webkit-animation-duration: 16s;
    animation-duration: 16s;
}

.float-square-bg i:nth-child(13),
.float-square-bg-2 i:nth-child(13) {
    left: 25%;
    -webkit-animation-duration: 14s;
    animation-duration: 14s;
}

.float-square-bg i:nth-child(14),
.float-square-bg-2 i:nth-child(14) {
    left: 35%;
    width: 50px;
    height: 50px;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    background-color: rgba(255, 255, 255, .25);
}

.float-square-bg i:nth-child(15),
.float-square-bg-2 i:nth-child(15) {
    left: 45%;
    width: 40px;
    height: 40px;
    -webkit-animation-duration: 14s;
    animation-duration: 14s;
}

.float-square-bg i:nth-child(16),
.float-square-bg-2 i:nth-child(16) {
    left: 55%;
    width: 50px;
    height: 50px;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    background-color: rgba(255, 255, 255, .2);
}

.float-square-bg i:nth-child(17),
.float-square-bg-2 i:nth-child(17) {
    left: 65%;
    width: 70px;
    height: 70px;
    -webkit-animation-duration: 16s;
    animation-duration: 16s;
}

.float-square-bg i:nth-child(18),
.float-square-bg-2 i:nth-child(18) {
    left: 75%;
    width: 20px;
    height: 20px;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
}

.float-square-bg i:nth-child(19),
.float-square-bg-2 i:nth-child(19) {
    left: 85%;
    -webkit-animation-duration: 13s;
    animation-duration: 13s;
    background-color: rgba(255, 255, 255, .3);
}

.float-square-bg i:nth-child(20),
.float-square-bg-2 i:nth-child(20) {
    left: 95%;
    width: 40px;
    height: 40px;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
}

.float-square-bg i,
.float-square-bg-2 i {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .15);
    bottom: -160px;
    -webkit-animation: square 10s infinite;
    animation: square 10s infinite;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

@keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-400px) rotate(600deg);
        transform: translateY(-400px) rotate(300deg);
    }
}

@media screen and (max-width: 700px) {

    .float-square-bg,
    .float-square-bg-2 {
        margin-top: -57px;
    }
}