:root{
    /* Global Color */
    --primary_color: #FFFFFF;
    --secondary_color: #9B51E0;
    --color_one: #363940;
    --color_two: #B8B8B8;

    /* Global Font */
    --primary_font-family: 'IBM Plex Serif', serif;
    --secondary_font-family: 'Rubik', sans-serif;
}


/* css start */

.d2c_icon_box_section {
    padding: 100px 0px;
}
.d2c_icon_box_section .d2c_column {
    padding: 10px;
}
.d2c_icon_box_section .d2c_card_wrapper {
    padding: 25px 20px;
    background: var(--primary_color);
    border-radius: 10px;
    height: 100%;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.03);
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_icon {
    font-size: 20px;
    color: var(--secondary_color);
    transition: all ease 0.4s;
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_icon:hover {
    color: #01D07C;
    transition: all ease 0.4s;
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_title {
    font-family: var(--primary_font);
    font-weight: 600;
    font-size: 18px;
    color: var(--color_one);
    padding: 3px 0px;
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_content {
    font-family: var(--secondary_font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--color_two);
}
/* Right Side Image CSS */
.d2c_icon_box_section .d2c_img_wrapper {
    height: 396px;
    position: relative;
}
.d2c_icon_box_section .d2c_img_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.d2c_icon_box_section .d2c_img_wrapper .d2c_img_overlay {
    background: linear-gradient(0deg, rgba(155, 81, 224, 0.3), rgba(155, 81, 224, 0.3));
    position: absolute;
    inset: 0;
    border-radius: 10px;
}

/* 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_img_wrapper {
        width: 100%;
        height: 340px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .d2c_icon_box_section {
        padding: 70px 0px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .d2c_icon_box_section {
        padding: 70px 0px;
    }
}

/* responsive css end */