/* ==========================
   Detergent Product Section
========================== */

.our-products{
    padding:100px 0;
    background:#f8f5f0;
}

.our-products .section-row{
    margin-bottom:60px;
}

.our-products .section-title h3{
    display:inline-block;
    font-size:16px;
    font-weight:600;
    color:#2e4dc9;
    text-transform:capitalize;
    margin-bottom:15px;
}

.our-products .section-title h2{
    font-size:46px;
    line-height:1.15;
    font-weight:600;
    color:#44cb04;
    margin-bottom:20px;
}

.our-products .section-title h2 span{
    font-family:Georgia, serif;
    font-style:italic;
    font-weight:400;
}

.our-products .section-title p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    max-width:650px;
}

.section-btn{
    text-align:right;
}

.section-btn .btn-default{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    background:#46c000;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
}

.section-btn .btn-default:hover{
    transform:translateY(-3px);
}

/* ==========================
   Product Card
========================== */

.product-item{
    margin-bottom:40px;
    text-align:center;
    height:100%;
    display:flex;
    flex-direction:column;
}

.detergent-pow{
    background:#8192d9;
    border-radius:28px;
    min-height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    transition:all .4s ease;
    padding:30px;
}

.detergent-pow figure{
    margin:0;
    width:100%;
}

.detergent-pow img{
    max-width:100%;
    max-height:220px;
    object-fit:contain;
    transition:all .4s ease;
}


.product-item:hover .detergent-pow{
    transform:translateY(-5px);
}

.product-item:hover .detergent-pow img{
    transform:scale(1.05);
}

.product-content{
    padding-top:25px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.product-content h3{
    font-size:24px;
    font-weight:700;
    color:#46c000;
    margin-bottom:15px;
    min-height:58px;
}

/* Feature List */

.product-features{
    list-style:none;
    padding:0;
    margin:0 0 20px;
    flex-grow:1;
}

.product-features li{
    position:relative;
    padding-left:22px;
    margin-bottom:8px;
    text-align:left;
    color:#666;
    font-size:14px;
    line-height:1.6;
}

.product-features li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#46c000;
    font-weight:700;
}

/* Button */

.package-btn{
    display:inline-block;
    /*padding:10px 22px;*/
    background:#46c000;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:all .3s ease;
}

.package-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}
/*.section-title{*/
/*    text-align:center;*/
/*}*/

/*.section-title p{*/
/*    margin:0 auto;*/
/*}*/

.section-title{
    text-align:left;
}

.section-description{
    text-align:left;
}

.section-description p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* ==========================
   Tablet
========================== */

@media only screen and (max-width:991px){

    .our-products{
        padding:80px 0;
    }

    .our-products .section-title h2{
        font-size:42px;
    }

    .section-btn{
        text-align:left;
        margin-top:25px;
    }

    .detergent-pow{
        min-height:280px;
    }
}

/* ==========================
   Mobile
========================== */

@media only screen and (max-width:767px){

    .our-products{
        padding:60px 0;
    }

    .our-products .section-row{
        margin-bottom:40px;
    }

    .our-products .section-title h3{
        font-size:14px;
    }

    .our-products .section-title h2{
        font-size:32px;
        line-height:1.3;
    }

    .our-products .section-title p{
        font-size:15px;
    }

    .detergent-pow{
        min-height:240px;
        padding:20px;
        border-radius:20px;
    }

    .detergent-pow img{
        max-height:180px;
    }

    .product-content h3{
        font-size:20px;
    }

    .product-features li{
        font-size:13px;
    }

    .package-btn{
        width:100%;
        text-align:center;
    }

    .section-btn .btn-default{
        width:100%;
    }
}

/* ==========================
   Small Mobile
========================== */

@media only screen and (max-width:480px){

    .our-products .section-title h2{
        font-size:28px;
    }

    .detergent-pow{
        min-height:220px;
    }

    .detergent-pow img{
        max-height:160px;
    }
}

/*.deter-pow{*/
/*    max-width:190px;*/
/*}*/