.home-feature {
    padding: 100px 0;
}

.home-feature.come-in {
    background: url("https://yuccahq.com/wp-content/themes/child-theme/images/page.home-img/Para-1.jpg") no-repeat center;
    /* background: url("../img/feature-bg.jpg") no-repeat center; */
    background-size: cover;
    background-attachment: fixed;
}

.home-feature.come-in .featureItem img {
    animation: showScale ease-out 0.5s 0.3s forwards;
}

.home-feature.come-in .featureItem p {
    transform: translateY(100px);
    animation: animY ease-out 0.6s 0.3s forwards;
}

.home-features_inner {
    width: 840px;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.home-feature .featureItem {
    text-align: center;
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.home-feature .featureItem img {
    opacity: 0;
    visibility: hidden;
}

.home-feature .featureItem p {
    opacity: 0;
    visibility: hidden;
    color: #fff;
    font-size: 22px;
    font-weight: 100;
    letter-spacing: 1px;
    height: 60px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home-feature .featureItem p span {
    display: block;
}

@media only screen and (max-width: 900px) {
    .home-feature {
        background-size: cover;
    }

    .home-features_inner {
        width: 400px;
        flex-flow: row wrap;
    }

    .home-feature .featureItem {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .home-features_inner {
        width: 300px;
    }

    .home-feature .featureItem p {
        font-size: 18px;
    }
}