.mobile-main-service-img img
{
    width: 88% !important;
    height: auto;
    display: block;
    margin: 10% auto;
}

.mobile-main-line-img img
{
    width: 0.6% !important;
    height: auto;
    display: block;
    margin: 0 0 0 7%;
}


.mobile-main-content-service-content
{
    top: 9%;
}

.mobile-main-service-img {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* When in view: visible and in place */
.mobile-main-service-img.in-view {
    opacity: 1;
    transform: translateY(0);
}

.mobile-main-content-section2-header img
{
    width: 100%;
    height: auto;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(0.9);
    }
}

