.feature {
    background: url('../images/BG3-top.png') left top no-repeat,
                url('../images/BG3-bottom.png') right bottom no-repeat;
    background-size: 100% auto;
    background-color: #f99789;
    padding: 75px 0;
}



.feature ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.feature ul li {
    width: calc( 100% - 50px/3 );
    background: #fff;
}

.feature ul li + li {
    margin-left: 25px;
}

.feature ul li img {
    width: 100%;
}

.feature ul li .text {
    width: 100%;
    padding: 25px;
    text-align: center;
    margin-bottom: 5px;
}

.feature ul li .text .head {
    font-size: 18px;
    font-weight: 900;
    color: #fc796f;
}




@media screen and (max-width: 979px) {
    .feature {
        padding: 50px 0;
    }
    
    .feature ul {
        flex-direction: column;
    }
    
    .feature ul li {
        width: 100%;
    }
    
    .feature ul li + li {
        margin-left: 0;
        margin-top: 25px;
    }
}







