:root{
    /* Global Color */
    --color_one: #fff;
    --text_color: #cbd7d9;

    /* Global Font */
    --primary_font: 'Rubik', sans-serif;
}


/* css start */

.d2c_icon_box_section{
    padding: 100px 0px;
}
.d2c_icon_card_column{
    padding: 10px;
}
.d2c_icon_card{
    padding: 40px 30px;
    background: linear-gradient(180deg, #313131 0%, #01A1AB 115.87%);
    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    height: 100%;
}
.d2c_icon_card:hover .d2c_icon_wrapper{
    margin: -103px auto 40px auto;
    transition: all ease 0.4s;
}
.d2c_icon_wrapper{
    font-size: 40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, #313131 0%, #01A1AB 115.87%);
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -93px auto 30px auto;
    transition: all ease 0.4s;
}
.d2c_icon_card h2{
    font-family: var(--primary_font);
    font-weight: 400;
    font-size: 45px;
    color: var(--color_one);
    margin-bottom: 10px;
    text-align: center;
}
.d2c_icon_card p{
    font-family: var(--primary_font);
    font-weight: 400;
    font-size: 18px;
    color: var(--text_color);
    margin-bottom: 0px;
}

/* css end */


/* responsive css start */

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .d2c_icon_box_section{
        height: auto;
        padding: 50px 0px;
    }
    .d2c_icon_wrapper{
        font-size: 40px;
        width: 100px;
        height: 100px;
    }
    .d2c_icon_card h2{
        font-size: 30px;
    }
    .d2c_icon_card p{
        font-size: 16px;
    }
    .d2c_icon_card_column {
        padding: 40px 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .d2c_icon_wrapper{
        font-size: 40px;
        width: 100px;
        height: 100px;
    }
    .d2c_icon_card h2{
        font-size: 30px;
    }
    .d2c_icon_card{
        padding: 40px 25px;
    }
    .d2c_icon_card p{
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .d2c_icon_wrapper{
        font-size: 40px;
        width: 100px;
        height: 100px;
    }
    .d2c_icon_card h2{
        font-size: 28px;
    }
    .d2c_icon_card{
        padding: 40px 15px;
    }
    .d2c_icon_card p{
        font-size: 16px;
    }
}

/* responsive css end */