:root {
    /* Font */
    --primary_font_family: 'Lora', serif;
    --secondary_font_family: 'Poppins', sans-serif;
    /* color */
    --primary_color: #23B3F2;
    --secondary_color: #FFFFFF;
    --color_one: #3FC2FC;
    --color_two: #676767;
}

.d2c_timeline_wrapper {
    padding: 100px 0px;
}
.d2c_number h2 {
    font-family: var(--primary_font_family);
    font-weight: 700;
    font-size: 50px;
    line-height: 64px;
    color: var(--secondary_color);
    height: 150px;
    width: 150px;
    background: var(--primary_color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.d2c_divider_one {
    width: 100%;
    border: 30px solid var(--primary_color);
    border-radius: 5px 0px 0px 5px;
    opacity: 1;
    position: relative;
    margin: 40px 0px;
}
.d2c_divider_two {
    width: 100%;
    border: 30px solid var(--color_one);
    border-radius: 0px;
    opacity: 1;
    position: relative;
    margin: 40px 0px;
}
.d2c_divider_three {
    width: 100%;
    border: 30px solid var(--primary_color);
    border-radius: 0px 5px 5px 0px;
    opacity: 1;
    position: relative;
    margin: 40px 0px;
}

.d2c_divider_one::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 25px 40px 25px;
    border-color: transparent transparent #23B3F2 transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}
.d2c_divider_two::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 25px 0px 25px;
    border-color: #3FC2FC transparent transparent transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
}
.d2c_divider_three::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 25px 40px 25px;
    border-color: transparent transparent #23B3F2 transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}
.d2c_card {
    padding: 0px 15px;
}
.d2c_title {
    font-family: var(--primary_font_family);
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    text-align: center;
    color: var(--primary_color);
    margin-bottom: 15px;
}
.d2c_content {
    font-family: var(--secondary_font_family);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: var(--color_two);
    margin-bottom: 0px;
}
.d2c_hide_number h2 {
    font-family: var(--primary_font_family);
    font-weight: 700;
    font-size: 50px;
    line-height: 64px;
    color: var(--secondary_color);
    height: 150px;
    width: 150px;
    background: var(--primary_color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.d2c_hide_number {
    display: none;
}


/* Responsive CSS */

@media (min-width: 0px) and (max-width: 767px) {
    .d2c_timeline_wrapper {
        padding: 50px 0px;
    }
    .d2c_number {
        display: none;
    }
    .d2c_hide_number {
        display: block;
    }
    .d2c_divider_one {
        display: none;
    }
    .d2c_divider_two {
        display: none;
    }
    .d2c_divider_three {
        display: none;
    }
    .d2c_divider_one::before {
        display: none;
    }
    .d2c_divider_two::before {
        display: none;
    }
    .d2c_divider_three::before {
        display: none;
    }
    .d2c_hide_number h2 {
        margin-bottom: 30px;
        width: 100px;
        height: 100px;
    }
    .d2c_content {
        margin-bottom: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .d2c_timeline_wrapper {
        padding: 50px 0px;
    }
    .d2c_title {
        font-size: 20px;
        line-height: 100%;
    }
    .d2c_content {
        font-size: 14px;
    }
    .d2c_divider_one {
        margin: 70px 0px;
    }
    .d2c_divider_two {
        margin: 70px 0px;
    }
    .d2c_divider_three {
        margin: 70px 0px;
    }
    .d2c_number h2{
         height: 100px;
         width: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .d2c_timeline_wrapper {
        padding: 50px 0px;
    }
    .d2c_title {
        font-size: 24px;
        line-height: 100%;
    }
    .d2c_content {
        font-size: 16px;
    }
    .d2c_number h2{
        width: 120px;
        height: 120px;
    }
}



/* 
    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/
*/