:root{
    /* Global Color */
    --primary_color: #FFFFFF;
    --secondary_color: #0F1126;
    --color_one: #085AFF;

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


/* css start */

.d2c_icon_box_section {
    padding: 100px 0px;
    background-image: url(../images/bg_img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_icon_box_section .d2c_card_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_icon_wrapper {
    height: 140px;
    width: 140px;
    background: var(--secondary_color);
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: var(--color_one);
    transition: all ease 0.4s;
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_icon_wrapper:hover {
    color: var(--primary_color);
    transition: all ease 0.4s;
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_content {
    font-family: var(--primary_font);
    font-weight: 700;
    font-size: 25px;
    color: var(--primary_color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 50px;
}
/* css end */


/* responsive css start */

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .d2c_icon_box_section {
        padding: 50px 0px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_content {
        margin: 30px 0px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .d2c_icon_box_section {
        padding: 50px 0px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_icon_wrapper {
        height: 130px;
        width: 130px;
        font-size: 50px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_content {
        font-size: 20px;
        margin: 30px 0px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .d2c_icon_box_section {
        padding: 70px 0px;
    }
}

/* responsive css end */