#BVSC-Timeline h1 {
    font-size: 34px;
    font-weight: 600 !important;
    color: #0065C0;
    text-transform: uppercase;
    padding: 30px 0;
}

#BVSC-Timeline ul, #BVSC-Timeline ul li {
    margin: 0;
    padding: 0;
}

#BVSC-Timeline .timeline {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

    #BVSC-Timeline .timeline ul li {
        margin-bottom: 50px;
        list-style-type: none;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

#BVSC-Timeline .point {
    z-index: 2;
    position: relative;
    left: 0;
    background: #0065C0;
    padding: 3px 8px;
    color: white;
    border-radius: 5px;
    font-size:15px;
}

#BVSC-Timeline .timeline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*@media (max-width: 800px) {
    #BVSC-Timeline .point {
        min-width: 15px;
        height: 15px;
    }

    html, body {
        font-size: 15px;
    }
}

@media (max-width: 650px) {
    html, body {
        font-size: 14px;
    }

    .point {
        min-width: 12px;
        height: 12px;
    }
}

@media (max-width: 450px) {
    html, body {
        font-size: 10px;
    }

    p {
        padding: 10px !important;
    }
}*/

#BVSC-Timeline .timeline ul li .content {
    width: 50%;
    padding: 0 20px;
}


#BVSC-Timeline .timeline ul li .date {
    width: 50%;
    padding: 0 20px;
    font-weight: normal;
}

    #BVSC-Timeline .timeline ul li .date h4 {
        background-color: #e1ccec;
        width: 100px;
        text-align: center;
        padding: 5px 10px;
        border-radius: 10px;
    }

#BVSC-Timeline .timeline ul li .content h3 {
    margin-bottom: 0;
    color: #0065C0;
    font-weight: 600;
    font-size: 34px;
}

#BVSC-Timeline .timeline ul li .content p {
    margin-top: 0;
    font-size: 16px;
}



#BVSC-Timeline .timeline::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    left: 50%;
    background-color: #80808059;
}

#BVSC-Timeline .timeline ul li:nth-child(even) {
    flex-direction: row;
}

#BVSC-Timeline .timeline ul li:nth-child(odd) .date h4 {
    float: right;
}

#BVSC-Timeline .timeline ul li:nth-child(odd) .content {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0.3vw;
}

#BVSC-Timeline .timeline ul li:nth-child(odd) .date {
    padding-right: 0;
}

#BVSC-Timeline .timeline ul li:nth-child(even) .content {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0.3vw;
}

#BVSC-Timeline .timeline ul li:nth-child(even) .date {
    padding-left: 0;
}


#BVSC-Timeline .content {
    border: 1px solid #80808059;
    border-radius: 24px;
    padding: 0;
}


/* Intersection Observer */

#BVSC-Timeline .loadin {
    opacity: 0;
    transform: translateY(45px);
    transition: transform 1.5s, opacity 0.9s;
}

/* .content:nth-child(odd).loadin {
    transform: translateX(45px);
    transition: transform 0.6s, opacity 0.9s;
  }
  .content:nth-child(even).loadin {
    transform: translateX(45px);
    transition: transform 0.6s, opacity 0.9s;
  } */

#BVSC-Timeline .loadin_right {
    opacity: 0;
    transform: translateX(-55px);
    transition: transform 1.5s, opacity 0.9s;
}

#BVSC-Timeline .loadin_left {
    opacity: 0;
    transform: translateX(55px);
    transition: transform 1.5s, opacity 0.9s;
}

#BVSC-Timeline .loaded {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
}

