/**====================================
Contents
====================================**/
.ecomm03-features-sec{
    position: relative;
    background: #43125F;
}
.ecomm03-features-sec .ecomm03-subbg{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    height: 140px;
    z-index: 1;
}
.ecomm03-feature-card{
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 11px 24px 0 rgba(0,0,0,.08);
    overflow: hidden;
    padding: 30px;
    padding-top: 15px;
    padding-bottom: 45px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.ecomm03-feature-card figure{
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #FDF5E5;
    margin: 0 auto;
    margin-bottom: 20px;
}
.ecomm03-feature-card figure img{
    display: block;
    max-width: 60%;
    max-height: 60%;
}
.ecomm03-feature-card .card-body h4{
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}
.ecomm03-feature-card .card-body p{
    font-size: 14px;
    color: #101820;
    font-weight: 300;
}


/**====================================
Responsive 
====================================**/
@media (max-width: 1199px){
    .ecomm03-feature-card{
        padding: 15px 20px 25px;
    }
    .ecomm03-feature-card figure{
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 767px){
    .ecomm03-feature-card{
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 25px;
    }
    .ecomm03-feature-card figure{
        margin-bottom: 0;
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
    .ecomm03-feature-card .card-body h4{
        font-size: 16px;
        margin-bottom: 3px;
    }
    .ecomm03-feature-card .card-body p{
        font-size: 13px;
    }
    .ecomm03-features-sec .ecomm03-subbg{
        display: none;
    }
}



