.waves {
    position: relative;
    width: 100%;
    height: 16vh;
    margin-bottom: -30px;
    min-height: 100px;
    max-height: 150px
}

.waves.no-animation .moving-waves>use {
    animation: none
}

.wave-rotate {
    transform: rotate(180deg)
}

.moving-waves>use {
    animation: f 40s cubic-bezier(.55, .5, .45, .5) infinite
}

.moving-waves>use:first-child {
    animation-delay: -2s;
    animation-duration: 11s
}

.moving-waves>use:nth-child(2) {
    animation-delay: -4s;
    animation-duration: 13s
}

.moving-waves>use:nth-child(3) {
    animation-delay: -3s;
    animation-duration: 15s
}

.moving-waves>use:nth-child(4) {
    animation-delay: -4s;
    animation-duration: 20s
}

.moving-waves>use:nth-child(5) {
    animation-delay: -4s;
    animation-duration: 25s
}

.moving-waves>use:nth-child(6) {
    animation-delay: -3s;
    animation-duration: 30s
}

@keyframes f {
    0% {
        transform: translate3d(-90px, 0, 0)
    }

    to {
        transform: translate3d(85px, 0, 0)
    }
}

.sec_img {
    width: 350px;
    height: 200px;
    background-color: black;
    padding: 5px;
}

.h-100vh {
    height: 50vh;
}

.dark_btn {
    animation: slideUpDown 5s infinite;
    --green: #1BFD9C;
    font-size: 15px;
    padding: 0.7em 2.7em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%, transparent 60%, rgba(27, 253, 156, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
}

button:hover:before {
    transform: translateX(15em);
}

.shake_button {
    animation-name: shakeAnim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}

@keyframes shakeAnim {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-3px);
    }

    20% {
        transform: translateX(3px);
    }

    30% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    50% {
        transform: translateX(-5px);
    }

    60% {
        transform: translateX(3px);
    }

    70% {
        transform: translateX(0);
    }
}
.section-1 {
    height: 90vh;
}
.first_background {
    background-color: var(--theme_color);
}

.section-2 {
    /* background-image: url('https://i.gifer.com/origin/2c/2cba4b48c7f195c0eeda68b0d35937d0_w200.gif'); */
    /* background-image: url('https://64.media.tumblr.com/a40339de7818cbf7c08c1abfa7858537/tumblr_mvjwadkyqk1r9xz7po5_500.gif'); */
    background-size: 500px;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* background-color: black; */
    border-radius: 0px 0px 120px 120px;
}

.section-3 {
    /* background: radial-gradient(circle at -1% 57.5%, rgb(19, 170, 82) 0%, rgb(0, 102, 43) 90%); */
    /* background: linear-gradient(to right, #43e97b 0%, #38f9d7 100%); */
    /* background: linear-gradient(110.1deg, rgb(34, 126, 34) 2.9%, rgb(168, 251, 60) 90.3%); */
    border-radius: 47px;
}

/* .section-4 { */
/* cursor: none; */
/* } */

.smoke {
    /* margin-top: -30px; */
    filter: url('#filter');
}

.cursor {
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 99999;
    pointer-events: none;
}

.cursor:nth-child(1) {
    background-color: #3A1C71;
    z-index: 999999;
}

.cursor:nth-child(2) {
    width: 20px;
    height: 20px;
    border: 1px solid #3A1C71;
}

.s4_box {
    box-shadow: 0px 0px 10px #00800047;
    border: 1px solid green;
    transition: all 0.5s;
}

/* .s4_box svg{
        transition: all 0.5s;
    }
    .s4_box:hover.s4_box svg{
        transform: rotateY(180deg);
    } */
.s4_box:hover {
    border: 1px solid green !important;
    transform: translateY(-10px);
}

.box {
    width: 90px;
    height: 70px;
    background: #f0ffe6;
    box-shadow: 0px 0px 10px #00800047;
    border: 2px solid #a0cdb4;
    margin: 5px 5px;
}