:root {
    /* Font */
    --primary_font_family: 'Inter', sans-serif;
    --secondary_font_family: 'Lato', sans-serif;
    --auxiliary_font-family: 'Poppins', sans-serif;
    /* color */
    --primary_color: #333333;
    --secondary_color: #FFFFFF;
    --color_one: #666666;
    --color_two: #020747;
}

.d2c_timeline_main {
    padding: 100px 0px;
}
.d2c_timeline_main .d2c_header {
    font-family: var(--primary_font_family);
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    color: var(--primary_color);
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.d2c_timeline_main .d2c_card_wrapper {
    background: var(--secondary_color);
    padding: 30px;
    height: 100%;
    transition: all ease 0.4s;
    margin: 10px 0px;
}
.d2c_timeline_main .d2c_card_wrapper:hover {
    box-shadow: 0px 0px 23px rgba(0, 0, 0, 0.04);
    transition: all ease 0.4s;
}


.d2c_timeline_wrapper {
    position: relative;
}
.d2c_timeline_wrapper .d2c_icon_wrapper i {
    color: var(--color_two);
    border: 1px solid var(--color_two);
    border-radius: 50px;
    padding: 3px;
    position: relative;
}
.d2c_timeline_wrapper .d2c_icon_wrapper i::after {
    content: '';
    background: var(--color_two);
    width: 1px;
    height: 212px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}
.d2c_timeline_wrapper .row:last-child .d2c_icon_wrapper i::after {
    display: none;
}


.d2c_title {
    font-family: var(--secondary_font_family);
    font-weight: 700;
    font-size: 32px;
    line-height: 43px;
    color: var(--primary_color);
    margin-bottom: 15px;
}
.d2c_content {
    font-family: var(--auxiliary_font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--color_one);
    margin-bottom: 0;
}

/* Responsive */

@media (min-width: 0px) and (max-width: 767px) {
    .d2c_timeline_main {
        padding: 50px 0px;
    }
    .d2c_timeline_main .d2c_header {
        font-size: 28px;
        line-height: 150%;
        margin-bottom: 20px;
    }
    .d2c_timeline_main .d2c_card_wrapper {
        padding: 15px;
    }
    .d2c_title {
        font-size: 24px;
        line-height: 150%;
        margin-bottom: 10px;
    }
    .d2c_content {
        font-size: 14px;
        line-height: 120%;
    }
    .d2c_timeline_wrapper .d2c_icon_wrapper i::after {
        height: 155px;
    }
    .d2c_timeline_wrapper:first-child .row:last-child .d2c_icon_wrapper i::after {
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .d2c_timeline_main {
        padding: 50px 0px;
    }
    .d2c_timeline_main .d2c_header {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }
    .d2c_timeline_main .d2c_card_wrapper {
        padding: 20px;
    }
    .d2c_title {
        font-size: 28px;
        line-height: 150%;
    }
    .d2c_content {
        font-size: 16px;
        line-height: 150%;
    }
    .d2c_timeline_wrapper .d2c_icon_wrapper i::after {
        height: 170px;
    }
    .d2c_timeline_wrapper:first-child .row:last-child .d2c_icon_wrapper i::after {
        display: block;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .d2c_timeline_main {
        padding: 50px 0px;
    }
    .d2c_timeline_main .d2c_header {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }
    .d2c_timeline_main .d2c_card_wrapper {
        padding: 20px;
    }
    .d2c_title {
        font-size: 28px;
        line-height: 150%;
    }
    .d2c_content {
        font-size: 16px;
        line-height: 150%;
    }
    .d2c_timeline_wrapper .d2c_icon_wrapper i::after {
        height: 230px;
    }
}



/* 
    KIT Name: 10+ Timeline - Bootstrap Bundle
    Product URL: https://www.designtocodes.com/product/10-timeline-section-html-web-ui-kits-html-components
    Product Description: The Timeline kit is made of all the basic elements you need to create a stunning website, from the start.
    Author: designtocodes.com
    Author URL: https://www.designtocodes.com/
*/