/* Our Journey Section CSS Start */
.our-journey {
    padding-top: 70px;
    padding-bottom: 70px;
}

.our-journey .start-journey {
    border: 2.5px solid #d7d7d7;
    text-align: center;
    display: inline-block;
    padding: 30px 0px;
    width: 40%;
}

.our-journey .start-journey .heading {
    font-size: 2.2rem;
    line-height: 50px;
    font-weight: 500;
    font-family: "Area-Normal-Regular, sans-serif";
    text-transform: uppercase;
}

.our-journey .start-journey .year-heading {
    font-size: 1.5rem;
    font-family: "Area-Normal-Regular, sans-serif";
    color: #696969;
    margin-bottom: 0px;
}

.our-journey .timeline-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.our-journey .vertical-line {
    position: absolute;
    width: 2px;
    background-color: #d7d7d7;
    left: 50%;
    height: 700px;
    transform: translateX(-50%);
    opacity: 0;
}

.our-journey .circle {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: #aad04e;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.our-journey .milestone-container {
    position: relative;
}

.our-journey .milestone-container .milestone-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    position: relative;
}

.our-journey .milestone-container .milestone-row .milestone-left {
    display: flex;
    justify-content: end;
    padding-right: 60px;
}

.our-journey .milestone-container .milestone-row .milestone-left:nth-child(even) {
    display: flex;
    justify-content: start;
    padding-right: 0px;
    padding-left: 60px;
}

.our-journey .milestone-container .milestone-row .milestone-right {
    display: flex;
    justify-content: start;
    padding-left: 60px;
}

.our-journey .milestone-container .milestone-row .milestone-right:nth-child(odd) {
    display: flex;
    justify-content: end;
    padding-left: 0px;
    padding-right: 60px;
}

.our-journey .milestone-container .milestone-row .milestone-year-box {
    padding: 20px;
    font-size: 54px;
    color: #696969;
    font-family: "Area-Normal-Regular, sans-serif";
}

.our-journey .milestone-container .milestone-row .milestone-text-box {
    padding: 20px 30px;
    background-color: #f8f8f8;
}

/* Our Journey Section CSS End */

@media (max-width: 768px) {
    .our-journey .start-journey {
        width: 100%;
    }
    .our-journey .start-journey .heading {
        font-size: 1.5rem;
        line-height: 40px;
    }
    .our-journey .milestone-container .milestone-row {
        padding-top: 20px;
    }
    .our-journey .milestone-container .milestone-row:nth-child(even) {
        flex-direction: column-reverse;
    }
    .our-journey .milestone-container .milestone-row .milestone-left {
        padding-right: 12px;
        justify-content: start;
        padding-left: 80px;
    }
    .our-journey .milestone-container .milestone-row .milestone-left:nth-child(even) {
        padding-right: 12px;
        justify-content: start;
        padding-left: 80px;
    }
    .our-journey .milestone-container .milestone-row .milestone-right {
        padding-left: 80px;
    }
    .our-journey .milestone-container .milestone-row .milestone-right:nth-child(odd) {
        padding-left: 80px;
        padding-right: 12px;
    }
    .our-journey .vertical-line {
        left: 30px;
        margin-top: 30px;
    }
    .our-journey .circle {
        left: 30px;
    }
    .our-journey .milestone-container .milestone-row .milestone-year-box {
        font-size: 40px;
        padding: 5px 20px;
    }
}

/*Milestone section css end  */