:root{
    /* Global Color */
    --primary_color: #FFFFFF;
    --secondary_color: #292929;
    --color_one: #474747;

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


/* css start */

.d2c_icon_box_section {
    padding: 100px 0px;
    background: radial-gradient(65.52% 65.52% at 50.04% 9.22%, #1E1E1E 0%, #1E1E1E 100%);
}
/* Left Side CSS */
.d2c_icon_box_section .d2c_left_content_wrapper .d2c_img_wrapper {
    width: 100%;
    height: 720px;
    position: relative;
}
.d2c_icon_box_section .d2c_left_content_wrapper .d2c_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.d2c_icon_box_section .d2c_left_content_wrapper .d2c_img_wrapper .d2c_img_overlay {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.59) 30.69%, rgba(30, 30, 30, 0.59) 100%), url(.jpg);
    border-radius: 8px;
    position: absolute;
    inset: 0;
}
.d2c_icon_box_section .d2c_left_content_wrapper .d2c_left_content {
    font-family: var(--primary_font);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0px;
    color: var(--primary_color);
    padding: 0px 120px;
    position: absolute;
    bottom: 45px;
}
/* Right Side CSS */
.d2c_icon_box_section .d2c_card_wrapper {
    padding: 30px 20px;
    background: var(--secondary_color);
    border-radius: 8px;
    margin-bottom: 20px;
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_right_content {
    font-family: var(--primary_font);
    font-weight: 400;
    font-size: 16px;
    color: var(--primary_color);
    margin-bottom: 0px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.d2c_icon_box_section .d2c_card_wrapper .d2c_icon_wrapper {
    height: 100px;
    width: 100px;
    background: var(--color_one);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.iconify {
    font-size: 50px;
    color: var(--primary_color);
}
/* 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_left_content_wrapper .d2c_img_wrapper {
        height: 450px;
        margin-bottom: 20px;
    }
    .d2c_icon_box_section .d2c_left_content_wrapper .d2c_left_content {
        font-size: 12px;
        padding: 0px 33px;
    }
    .d2c_icon_box_section .d2c_card_wrapper {
        padding: 25px 20px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_right_content {
        font-size: 14px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_icon_wrapper {
        width: 85px;
        height: 85px;
        font-size: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .d2c_icon_box_section {
        padding: 50px 0px;
    }
    .d2c_icon_box_section .d2c_left_content_wrapper .d2c_img_wrapper {
        height: 450px;
    }
    .d2c_icon_box_section .d2c_left_content_wrapper .d2c_left_content {
        font-size: 12px;
        padding: 0px 47px;
        bottom: 35px;
    }
    .d2c_icon_box_section .d2c_card_wrapper {
        padding: 18px 15px;
        margin-bottom: 15px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_right_content {
        font-size: 12px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_icon_wrapper {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .d2c_icon_box_section {
        padding: 70px 0px;
    }
    .d2c_icon_box_section .d2c_left_content_wrapper .d2c_img_wrapper {
        height: 600px;
    }
    .d2c_icon_box_section .d2c_left_content_wrapper .d2c_left_content {
        font-size: 14px;
        padding: 0px 90px;
    }
    .d2c_icon_box_section .d2c_card_wrapper {
        padding: 25px 20px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_right_content {
        font-size: 14px;
    }
    .d2c_icon_box_section .d2c_card_wrapper .d2c_icon_wrapper {
        width: 85px;
        height: 85px;
        font-size: 40px;
    }
}

/* responsive css end */