.feature{
    padding: 60px 0 80px 0;
    .feature_wrapper{
        padding-top: 40px;
        .feature_wrap{
            text-align: center;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
            padding: 15px;
            background-color: #fff;
            border-radius: 10px;
            margin-bottom: 25px;
            &:hover{
                box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
            }
             .feature_img{
                display: flex;
                justify-content: center;
                align-items: center;
                img{
                    max-height: 180px;
                    width: 100%;
                    object-fit: contain;
                }
             }
             .feature_btn{
                font-size: 16px;
                padding: 8px 20px;
                border:  1px solid #d65737;
                color: #d65737;
                font-weight: 600;
                text-align: center;
                cursor: pointer;
                display: inline-block;
                margin-top: 20px;
                border-radius: 8px;
                @include text-ellips;
                &:hover{
                    background-color: #d65737;
                    color: #fff;
                }
            }
        }
    }
}