*,
html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
}


/* ======= main css code start here ================ */

.banner_img_section {
    width: 100%;
    position: relative;
}


/* .banner_section {
    background-image: url(img/cyclone_banner_img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 200px;
    position: relative;

} */

.container .cards_data_section {
    background-color: #7cd8f9;
    border: none;
    border-radius: 15px;
    box-shadow: 2px 1px 9px silver;
}

.card_body {
    background-color: #fff;
    border-radius: 10px;
}

.text_colors {
    color: #215a92;
    line-height: 30px;
    font-size: 17px;
    font-weight: 500;
}

.heart_section .cards_data_section {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
}

.heart_img {
    position: absolute;
    right: -1%;
    bottom: 0;
    top: 0%;
}

.heart_img img {
    /* animation: heartbeat 2.5s ease-in-out infinite; */
    width: 55%;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.part_two {
    /* position: relative;
    bottom: 210px; */
    margin-top: -15px
}

.timeline {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.timeline-item {
    position: relative;
    width: 20%;
    text-align: center;
    /* animation: fadeIn 1s ease-in forwards; */
}

/* @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} */

/* .timeline-item:nth-child(1) {
    animation-delay: 0s;
}

.timeline-item:nth-child(2) {
    animation-delay: 1s;
}

.timeline-item:nth-child(3) {
    animation-delay: 2s;
}

.timeline-item:nth-child(4) {
    animation-delay: 3s;
}

.timeline-item:nth-child(5) {
    animation-delay: 3s;
} */

.timeline::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    height: 3px;
    width: 100%;
    background-color: #dee2e6;
    z-index: -1;
    /* animation: moveline 6s linear forwards; */
}

@keyframes moveline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px dashed #24c4b5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* top: 20px; */
    z-index: 2;
    margin-bottom: 10px;
}

.icon {
    width: 47px;
    height: 40px;
    object-fit: contain;
    z-index: 2;
}

.date-title,
.time-title,
.venue-title {
    color: #215a92;
    font-size: 16px;
    margin-top: 10px;
    background: #fff;
}

.bike-icon {
    width: 40px;
    height: 40px;
    z-index: 3;
    position: absolute;
    bottom: 32px;
    left: 0;
    /* Position the bike above the line */
    transform: translateY(50%);
    animation: moveRight 4s ease-in-out infinite;
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }
    /* 50% {
        transform: translateX(500px);
       
    } */
    100% {
        transform: translateX(1200px);
    }
}


/* ============ media quireis start ============== */

@media only screen and (max-width: 768px) {
   .timeline-item {
    position: relative;
    width: 20%;
    text-align: center;
    /* Animation and Opacity 0 removed */
}
    /* .timeline-item:nth-child(1) {
        animation-delay: 0s;
    } */
    /* .timeline-item:nth-child(2){
        animation-delay: 1s;
    } */
    /* .timeline-item:nth-child(3) {
        animation-delay: 2s;
    } */
    /* .timeline-item:nth-child(4){
        animation-delay: 3s;
    } */
    /* .timeline-item:nth-child(5) {
        animation-delay: 4s;
    } */
    .bike-icon {
        display: none;
        /* width: 40px;
        height: 40px;
        z-index: 3;
        position: absolute;
        left: 40%;
        top: 0;
        transform: translate(-50%, -50%);
        animation: moveDown 5s ease-in-out infinite; */
    }
    @keyframes moveDown {
        0% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(50px);
            /* Adjust distance here */
        }
        100% {
            transform: translateX(0);
        }
    }
    .timeline {
        flex-direction: column;
        align-items: center;
    }
    .timeline::before {
        width: 3px;
        height: 80%;
        top: 0;
        left: 50%;
        /* transform: translateX(-50%); */
        /* animation: moveline 6s linear forwards; */
    }
    @keyframes moveline {
        0% {
            height: 0;
        }
        100% {
            height: 80%;
        }
    }
    .timeline-item {
        width: 100%;
        margin-bottom: 50px;
        position: relative;
        text-align: center;
    }
    .heart_img img {
        width: 35%;
        margin-top: 20px;
    }
    .heart_img {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        top: 95%;
    }
    .part_two {
        margin-top: -5px;
    }
}


/* ============ media quireis start end ============== */

.timeline-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headings_title {
    color: #215a92;
    text-align: center;
    font-weight: bold;
}

.sub_heading_one {
    background: #20c2b6;
    color: white;
    padding: 7px;
}

.sub_heading_two {
    background: #215a92;
    color: white;
    padding: 7px;
}

.first_heading {
    color: #215a92;
    font-weight: 700;
}

.cyclothan_img {
    width: 20%;
}

.part_five {
    background-image: url(img/walkathon-under.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    /* display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; */
}

.cycle_line_start {
    margin-top: 100px;
    position: relative;
    width: 100%;
}

.cycle_one {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    z-index: 0;
    animation: movedownCycle 1s linear forwards;
    opacity: 0;
}

@keyframes movedownCycle {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.cycle_one:nth-child(1) {
    animation-delay: 0s;
}

.cycle_one:nth-child(2) {
    animation-delay: 1s;
}

.cycle_one img {
    width: 100px;
    height: auto;
    z-index: 1;
}

.content_opposite {
    margin-left: 20px;
    flex: 1;
    text-align: left;
    color: #215a92;
}

.cycle_line_start::after {
    content: '';
    position: absolute;
    top: 3%;
    left: 4%;
    height: 100%;
    width: 4px;
    background-color: #2d649b;
    transform: translateX(-50%);
    z-index: 0;
    animation: movelinedownside 6s linear forwards;
}

@keyframes movelinedownside {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .cycle_line_start::after {
        left: 10%;
        /* Adjusted to ensure it aligns well on smaller screens */
        transform: none;
    }
    .cycle_line_start {
        margin-top: 42px;
    }
    .cycle_one {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
        /* Reduced margin for smaller screens */
    }
    .content_opposite {
        margin-left: 53px;
        margin-top: 20px;
    }
    .cycle_one img {
        width: 80px;
    }
    .regestration_button {
        font-size: 12px;
    }
    .first_heading {
        font-size: 16px;
    }
}

.card_color_sec {
    background: #20c2b6;
    padding: 14px;
    width: fit-content;
    border-radius: 5px;
    color: #fff;
}

.regestration_button {
    padding: 10px 25px 10px 25px;
    border: 0;
    background: #215a92;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    animation: heartbeat 2.5s ease-in-out infinite;
}


/* part end css end */


/*=========== form section start ========== */

.form_section {
    position: absolute;
    right: 19px;
    top: 32%;
    width: 18%;
}

.form_card {
    padding: 20px;
    border-radius: 10px;
    /* width: 40%; */
    background: var(--light-background-color, #FFF);
}

.appointment {
    color: #02778a;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.1px;
}

button.submit {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
    background-color: #04b6ae;
}

.labels {
    color: #02778a;
    font-weight: 600;
    font-size: 16px;
}

input.input_forms {
    border-radius: 5px !important;
    border: 1px solid #E6E6E6;
    background: #F9F9F9 !important;
    padding: 5px !important;
    outline: 0px;
}

.input_forms {
    border-radius: 5px !important;
    border: 1px solid #E6E6E6;
    background: #F9F9F9 !important;
    padding: 5px !important;
    outline: 0px;
    color: #7e7272;
}


/*=========== form section end ========== */

.part_7 {
    background-color: #02778a;
    background-size: cover;
    background-repeat: no-repeat;
}

.inptmedee {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.all_rows_three input,
select {
    background-color: #f9f9f9;
    padding: 6px;
    border: 0;
    color: #7e7272;
}

.all_rows_three {
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit_form_bottom {
    padding: 7px 10px 7px 10px;
    border: 0px;
    background: #20c2b6;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    /* animation: heartbeat 2.5s ease-in-out infinite; */
}

.lables_forbtn {
    color: #20c2b6;
    font-size: 18px;
    font-weight: 600;
}

@media (min-width:500px) and (max-width:770px) {
    .content_opposite {
        margin-left: 100px;
        margin-top: 20px;
    }
}

.form_card_pop {
    border-radius: 10px;
    padding: 10px;
    border: none !important;
    background: var(--light-background-color, #FFF);
    padding-top: 0px !important;
}

.lables_pop {
    color: #02778a;
    font-weight: 600;
    font-size: 15px;
}


/* ======= main css code end here ================ */