html body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.heading {
    background-color: #471642;
    color: white;
    padding: 30px 0px;
}

.heading>h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    color: #471642;
    font-weight: 700;
}

p {
    color: black;
    font-size: 14px;
}

.section3 {
    background-color: #4AB4A1;
    width: 100%;
    height: fit-content;
    padding: 60px 0px;
}

.section3>h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: white;
}

/* time line css */
h1 {
    text-align: center;
    text-transform: uppercase;
}

.container {
    width: 100%;
}

.timeline {
    counter-reset: test 0;
    position: relative;
    z-index: 1;
}

.timeline li {
    list-style: none;
    float: left;
    width: 16.666%;
    text-align: center;
    font-size: 15px;
    color: white;
}

ul:nth-child(1) {
    color: #471642;
}

.timeline li:before {
    counter-increment: test;
    content: counter(test);
    width: 50px;
    height: 50px;
    border: 3px solid #471642;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 50px;
    margin: 0 auto 10px auto;
    background: #471642;
    color: #4AB4A1;
    transition: all ease-in-out .3s;
    cursor: pointer;
}

.timeline li:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #471642;
    top: 25px;
    left: 0%;
    z-index: -999;
    transition: all ease-in-out .3s;
}

.timeline li:first-child:after{
    content: none;
}

.timeline li:last-child:after{
    content: none;
}

.timeline li:first-child:after {
    content: none;
}

.timeline li.active-tl {
    color: #4AB4A1;
}

.timeline li.active-tl:before {
    background: #471642;
    color: #4AB4A1;
}

.timeline li.active-tl+li:after {
    background: #471642;
}

/* end time line */