


/* ==================================================================== */
/* BONUS ) BUBBLE*/
/* ==================================================================== */

.jelly-container {
    width: 100%;
    height: 130%;
    overflow: hidden;
}
div[class^="bubble-"] {
    height: 1px;
    width: 1px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translateX(-50%);
}
div[class^="bubble-"]:after {
    content: '';
    position: absolute;
    height: 85%;
    width: 85%;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) rotateZ(-45deg);
}
.bubble-1 {
    bottom: 8px;
    left: 26%;
    animation: bubble-movement 19s infinite ease-in -3.06s;
}
.bubble-2 {
    bottom: 2px;
    left: 37%;
    animation: bubble-movement 19s infinite ease-in -1.74s;
}
.bubble-3 {
    bottom: 9px;
    left: 27%;
    animation: bubble-movement 19s infinite ease-in -2.43s;
}
.bubble-4 {
    bottom: 9px;
    left: 33%;
    animation: bubble-movement 19s infinite ease-in -2.13s;
}
.bubble-5 {
    bottom: 4px;
    left: 68%;
    animation: bubble-movement 19s infinite ease-in -3.113s;
}
.bubble-6 {
    bottom: 6px;
    left: 17%;
    animation: bubble-movement 19s infinite ease-in -3.68s;
}
.bubble-7 {
    bottom: 9px;
    left: 3%;
    animation: bubble-movement 19s infinite ease-in -3.57s;
}
.bubble-8 {
    bottom: 5px;
    left: 56%;
    animation: bubble-movement 19s infinite ease-in -3.84s;
}
.bubble-9 {
    bottom: 5px;
    left: 38%;
    animation: bubble-movement 19s infinite ease-in -3.86s;
}
.bubble-10 {
    bottom: 10px;
    left: 19%;
    animation: bubble-movement 19s infinite ease-in -3.17s;
}
.bubble-11 {
    bottom: 6px;
    left: 21%;
    animation: bubble-movement 19s infinite ease-in -1.13s;
}
.bubble-12 {
    bottom: 3px;
    left: 79%;
    animation: bubble-movement 13s infinite ease-in -1.8s;
}
.bubble-13 {
    bottom: 10px;
    left: 44%;
    animation: bubble-movement 13s infinite ease-in -3.313s;
}
.bubble-14 {
    bottom: 6px;
    left: 46%;
    animation: bubble-movement 13s infinite ease-in -3.56s;
}
.bubble-15 {
    bottom: 7px;
    left: 49%;
    animation: bubble-movement 13s infinite ease-in -3.513s;
}
.bubble-16 {
    bottom: 6px;
    left: 50%;
    animation: bubble-movement 8s infinite ease-in -1.08s;
}
.bubble-17 {
    bottom: 8px;
    left: 82%;
    animation: bubble-movement 13s infinite ease-in -1.84s;
}
.bubble-18 {
    bottom: 11px;
    left: 56%;
    animation: bubble-movement 8s infinite ease-in -2.26s;
}
.bubble-19 {
    bottom: 5px;
    left: 67%;
    animation: bubble-movement 13s infinite ease-in -2.63s;
}
.bubble-20 {
    bottom: 3px;
    left: 64%;
    animation: bubble-movement 13s infinite ease-in -3.14s;
}
.bubble-21 {
    bottom: 3px;
    right: 4%;
    animation: bubble-movement 13s infinite ease-in -3.64s;
}
@keyframes bubble-movement {
    0% {
        transform: translate3d(-50%, 0, 0);
        height: 1px;
        width: 1px;
   }
    100% {
        transform: translate3d(-50%, -1200px, 0);
        height: 75px;
        width: 75px;
   }
}