:root{
    /* Global Color */
    --primary_color: #1B96E5;
    --text_color: #666666;
    --heading_color: #333333;

    /* Global Font */
    --primary_font: 'Roboto', sans-serif;
    --secondary_font: 'Raleway', sans-serif;
}

::selection{
    background: var(--primary_color);
    color: #FFFFFF;
}
/* css start */

.d2c_icon_box_section{
    padding: 100px 0px;
}
.d2c_icon_box_section p{
    font-family: var(--primary_font);
    font-weight: 400;
    font-size: 16px;
    color: var(--text_color);
    margin-bottom: 0px;
}
.d2c_icon_card_column{
    padding: 10px;
}
.d2c_icon_card{
    border: 1px solid #4D7570;
    border-radius: 5px;
    padding: 20px;
    transition: .4s all ease;
}
.d2c_icon_card .d2c_img_wrapper{
    width: 55px;
    height: 50px;
}
.d2c_icon_card .d2c_img_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.d2c_icon_card:hover{
    border-color: transparent;
    transition: .4s all ease;
}
.d2c_icon_box_section .d2c_box_heading{
    font-family: var(--secondary_font);
    font-weight: 700;
    font-size: 18px;
    color: var(--heading_color);
    margin-bottom: 20px;
}
.d2c_icon_box_section h1{
    font-size: 48px !important;
}
.d2c_para{
    margin-bottom: 20px !important;
}

/* css end */


/* responsive css start */

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .d2c_icon_box_section {
        padding: 70px 0px;
    }
    .d2c_icon_box_section h1{
        font-size: 30px !important;
    }
    .d2c_icon_box_section .d2c_box_heading{
        font-size: 22px;
        margin-bottom: 10px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .container{
        max-width: 720px;
    }
    .d2c_icon_box_section {
        padding: 120px 0px;
    }
    .d2c_icon_box_section .d2c_box_heading{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .d2c_icon_box_section h1{
        font-size: 40px !important;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .d2c_icon_box_section .d2c_box_heading{
        font-size: 25px;
        margin-bottom: 10px;
    }
}

/* responsive css end */