.ball-service-2 {
    width: 90px;
    height: 90px;
    background-color: #e8eaeb;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    bottom: 0px;
    filter: blur(30px);
    animation: expandShrink 5s infinite;
    z-index: 1;
}


.ball-service-1 {
    width: 90px;
    height: 90px;
    background-color: #e8eaeb;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 0px;
    filter: blur(30px);
    animation: expandShrink 5s infinite;
    z-index: 1;
}


.ball-home {
    width: 90px;
    height: 90px;
    background-color: #e8eaeb;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    top: 0px;
    filter: blur(30px);
    animation: expandShrink 5s infinite;
    z-index: 1;
}

@keyframes expandShrink {
    0%,
    100% {
        width: 90px;
        height: 90px;
        transform: translateX(0);
    }

    25% {
        width: 110px;
        height: 90px;
    }

    50% {
        width: 120px;
        height: 90px;
        transform: translateX(-10px);
    }

    75% {
        width: 110px;
        height: 90px;
    }
}

.animated-title {
    opacity: 0;
    animation: fadeIn 2500ms forwards;
    animation-delay: 250ms;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.animated-image {
    width: 100%;
    opacity: 0;
    animation: bounceIn 1500ms forwards;
    animation-delay: 750ms;
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    10% {
        transform: translateY(-20px);
    }
    30% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-5px);
    }
    70% {
        transform: translateY(-2.5px);
    }
    90% {
        transform: translateY(-1.25px);
    }
}

.falling-text {
    opacity: 0;
    position: relative;
    animation: fallIn 2000ms forwards;
    animation-delay: 500ms;
}

@keyframes fallIn {
    0% {
        opacity: 0;
        top: -100px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}