.features{
    width: 100%;
    background-color: #fff;
}

.features__container{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 115px 0px 100px 0px;
    gap: 30px;
}

.feature{
    display: flex;
    align-items: start;
    gap: 10px;
}

.feature img {
    width: 60px;
    height: 60px;
}

.feature .text-wrapper h4{
    color: #242424;
    font-weight: 600;
}

.feature .description{
    color: #898989;
    line-height: normal;
}

.feature__image{
    display: flex;
    align-items: center;
    height: 100%;
}

@media only screen and (max-width: 600px) {
    .features__container{
        grid-template-columns: 1fr;
    }
    
    .feature{
        flex-direction:column ;
        align-items: center;
    }
    .feature .text-wrapper{
        text-align: center;
    }

    .feature .description{
        text-align: center;
    }
}
