:root {
    /* Font */
    --primary_font_family: 'Raleway', sans-serif;
    --secondary_font_family: 'Roboto', sans-serif;
    /* Color */
    --primary_color: #23B3F2;
    --secondary_color: #FFFFFF;
    --color_one: #B6B6B6;
}

/* Global Style */
.d2c_timeline_wrapper {
    padding: 100px 0px;
}
.d2c_timeline_wrapper .d2c_header {
    font-family: var(--primary_font_family);
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    color: var(--primary_color);
    text-align: center;
    margin-bottom: 70px;
}
.d2c_title {
    font-family: var(--primary_font_family);
    font-weight: 700;
    font-size: 32px;
    line-height: 43px;
    color: var(--primary_color);
}
.d2c_content {
    font-family: var(--secondary_font_family);
    font-weight: 400;
    font-size: 16px;
    color: var(--color_one);
    margin-bottom: 0px;
}
.d2c_timeline {
    position: relative;
}
.d2c_timeline::after {
    content: "";
    width: 2px;
    height: 73%;
    background: var(--primary_color);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}
/* Row One Start */
.d2c_row_one .d2c_one_year_wrapper {
    position: relative;
}
.d2c_row_one .d2c_one_year_wrapper .d2c_years_one {
    font-family: var(--secondary_font_family);
    font-weight: 500;
    font-size: 46px;
    line-height: 150%;
    color: var(--primary_color);
    position: absolute;
    top: -17px;
    right: -27px;
}
.d2c_row_one .d2c_one_year_wrapper .d2c_years_one i {
    font-size: 20px;
    border: 1px solid var(--primary_color);
    border-radius: 50px;
    padding: 3px;
}

.d2c_card_wrapper_one {
    background: var(--secondary_color);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05);
    padding: 60px 30px;
    margin-left: 100px;
    position: relative;
}
.d2c_card_wrapper_one::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 60px solid var(--secondary_color);
    border-left: 100px solid transparent;
    position: absolute;
    top: 0px;
    left: -93px;
}

/* Row Two Start */
.d2c_row_two {
    margin-top: 80px;
}
.d2c_row_two .d2c_two_year_wrapper {
    position: relative;
}
.d2c_row_two .d2c_two_year_wrapper .d2c_years_two {
    font-family: var(--secondary_font_family);
    font-weight: 500;
    font-size: 46px;
    line-height: 150%;
    color: var(--primary_color);
    position: absolute;
    top: -17px;
    left: -25px;
}
.d2c_row_two .d2c_two_year_wrapper .d2c_years_two i {
    font-size: 20px;
    border: 1px solid var(--primary_color);
    border-radius: 50px;
    padding: 3px;
}

.d2c_card_wrapper_two {
    background: var(--secondary_color);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05);
    padding: 60px 30px;
    margin-right: 100px;
    position: relative;
}
.d2c_card_wrapper_two::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 60px solid var(--secondary_color);
    border-right: 100px solid transparent;
    position: absolute;
    top: 0px;
    right: -93px;
}

/* Row Three Start */
.d2c_row_three {
    margin-top: 80px;
}
.d2c_row_three .d2c_three_year_wrapper {
    position: relative;
}
.d2c_row_three .d2c_three_year_wrapper .d2c_years_three {
    font-family: var(--secondary_font_family);
    font-weight: 500;
    font-size: 46px;
    line-height: 150%;
    color: var(--primary_color);position: absolute;
    top: -17px;
    right: -27px;
}
.d2c_row_three .d2c_three_year_wrapper .d2c_years_three i {
    font-size: 20px;
    border: 1px solid var(--primary_color);
    border-radius: 50px;
    padding: 3px;
}

.d2c_card_wrapper_three {
    background: var(--secondary_color);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05);
    padding: 60px 30px;
    margin-left: 100px;
    position: relative;
}
.d2c_card_wrapper_three::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 60px solid var(--secondary_color);
    border-left: 100px solid transparent;
    position: absolute;
    top: 0px;
    left: -93px;
}

/* Responsive */

@media (min-width: 0px) and (max-width: 767px) {
    .d2c_timeline_wrapper {
        padding: 50px 0px;
    }
    .d2c_timeline_wrapper .d2c_header {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 80px;
    }
    .d2c_timeline_wrapper .d2c_timeline::after {
        display: none;
    }
    .d2c_card_wrapper_one {
        margin-top: 20px;
    }
    .d2c_card_wrapper_two {
        margin-top: 20px;
    }
    .d2c_card_wrapper_three {
        margin-top: 20px;
    }
    .d2c_card_wrapper_one::before {
        display: none;
    }
    .d2c_card_wrapper_two::after {
        display: none;
    }
    .d2c_card_wrapper_three::before {
        display: none;
    }
    .d2c_row_one .d2c_one_year_wrapper .d2c_years_one i {
        display: none;
    }
    .d2c_row_two .d2c_two_year_wrapper .d2c_years_two i {
        display: none;
    }
    .d2c_row_three .d2c_three_year_wrapper .d2c_years_three i {
        display: none;
    }
    .d2c_card_wrapper_one {
        padding: 35px 25px;
        margin-left: 0px;
    }
    .d2c_card_wrapper_two {
        padding: 35px 25px;
        margin-right: 0px;
    }
    .d2c_card_wrapper_three {
        padding: 35px 25px;
        margin-left: 0px;
    }
    .d2c_row_one .d2c_one_year_wrapper .d2c_years_one {
        vertical-align: unset;
        top: -50px;
        left: 36%;
    }
    .d2c_row_two .d2c_two_year_wrapper .d2c_years_two {
        vertical-align: unset;
        top: -50px;
        left: 36%;
    }
    .d2c_row_three .d2c_three_year_wrapper .d2c_years_three {
        vertical-align: unset;
        top: -50px;
        left: 36%;
    }
    .d2c_title {
        font-size: 28px;
    }
    .d2c_content {
        font-size: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .d2c_timeline_wrapper {
        padding: 50px 0px;
    }
    .d2c_timeline_wrapper .d2c_header {
        font-size: 40px;
        line-height: 54px;
        margin-bottom: 50px;
    }
    .d2c_timeline_wrapper .d2c_timeline::after {
        display: none;
    }
    .d2c_card_wrapper_one {
        padding: 35px 25px;
        margin-left: 0px;
    }
    .d2c_row_one .d2c_one_year_wrapper .d2c_years_one {
        right: 70px;
    }
    .d2c_card_wrapper_two {
        padding: 35px 25px;
        margin-right: 0px;
    }
    .d2c_row_two .d2c_two_year_wrapper .d2c_years_two {
        left: 70px;
    }
    .d2c_card_wrapper_three {
        padding: 35px 25px;
        margin-left: 0px;
    }
    .d2c_row_three .d2c_three_year_wrapper .d2c_years_three {
        right: 70px;
    }
    .d2c_title {
        font-size: 28px;
    }
    .d2c_content {
        font-size: 15px;
    }
    .d2c_row_two {
        margin-top: 50px;
    }
    .d2c_row_three {
        margin-top: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .d2c_timeline_wrapper {
        padding: 50px 0px;
    }
    .d2c_timeline_wrapper .d2c_header {
        font-size: 40px;
        line-height: 54px;
        margin-bottom: 60px;
    }
    .d2c_card_wrapper_one {
        padding: 35px 25px;
    }
    .d2c_card_wrapper_two {
        padding: 35px 25px;
    }
    .d2c_card_wrapper_three {
        padding: 35px 25px;
    }
    .d2c_title {
        font-size: 28px;
    }
    .d2c_content {
        font-size: 15px;
    }
    .d2c_row_two {
        margin-top: 106px;
    }
    .d2c_row_three {
        margin-top: 106px;
    }
}


/* 
    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/
*/