.eco_friendly_text_box_container{
    /* border: 1px solid; */
}
.eco_friendly_text_box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
}
.eco_friendly_text_box .eco-friendly-link{
    display: flex;
    column-gap: .3rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--logo-dark-color);
    transition: all .4s ease-in;
}
.eco_friendly_text_box .eco-friendly-link.clicked{
    color: var(--light-browne);
}
.eco_friendly_text_box .eco-friendly-link:hover{
    color: var(--light-browne);
}
.all_product_box_bg_change{
    background-color: var(--light-browne);
}
.all_product_box_bg_change *{
    color: var(--black-color);
}


@media (max-width:550px){
    .eco_friendly_text_box{
        grid-template-columns: repeat(1,1fr);
    }
}