// Responsive Section Styling Here
.responsive-section {
    position: relative;
    z-index: 0;
    margin-top: 120px;
    .landing-shape-03 {
        position: absolute;
        left: 50px;
        top: 50px;
        animation: updown-two 2s both linear alternate infinite;
    }
    .landing-shape-04 {
        position: absolute;
        right: 50px;
        bottom: 0px;
        animation: updown-two 3s both linear alternate infinite;
    }
    .landing-shape-05 {
        position: absolute;
        right: 0;
        top: 0;
        // animation: spin 10s both linear alternate infinite;
    }
    .landing-shape-06 {
        position: absolute;
        left: 42%;
        top: 0;
        animation: heartBeat 6s linear infinite;
    }
    .landing-shape-07 {
        position: absolute;
        left: 45%;
        bottom: 0;
        animation: heartBeat 6s linear infinite;
    }
    .landing-shape-08 {
        position: absolute;
        bottom: 0;
        left: 0;
        animation: heartBeat 6s linear infinite;
    }
}

@keyframes updown-two {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}