/*animation css start*/
.animation-container {
    width: 100%;
    height: 94vh;
    position: relative;
    overflow: hidden;
    background-color: #24984E;
    border-radius: 30px;
}


#particles-js {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.animation-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-content {
    text-align: center;
    padding: 0 2rem;
}

.animation-heading {
    color: #ffffff;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 1.1;
    font-size: clamp(48px, 10vw, 96px);
}

.animation-text {
    display: inline-block;
}

.animation-cursor {
    display: inline-block;
    margin-left: -20px;
    animation: blink 1.6s steps(1, end) infinite;
}

@keyframes blink {

    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

@media only screen and (max-width: 991px) {
      .animation-container{
      display: none;
  }
}