:root {
  --main-blue: #0078ff; /* Define initial color as blue */
  --main-white: #fff;
}


.circle-education {
    
    padding: 0.6rem 1.2rem;
    border-radius: 30%;
    background-color: var(--main-blue);
    color: var(--main-white);
    max-height: 50px;
    text-align: center;
    z-index: 2;
    font-size: 1.4rem;
    
    
  }

  
  .connecting-lines.row .col-2 {
    align-self: stretch;
  }
  .connecting-lines.row .col-2::after {
    content: "";
    position: absolute;
    border-left: 3px solid var(--main-blue);
    z-index: 1;
  }
  .connecting-lines.row .col-2.bottom::after {
    height: 50%;
    left: 50%;
    top: 50%;
  }
  .connecting-lines.row .col-2.full::after {
    height: 100%;
    left: calc(50% - 3px);
  }
  .connecting-lines.row .col-2.top::after {
    height: 50%;
    left: 50%;
    top: 0;
  }
  
  
  .timeline div {
    padding: 0;
    height: 40px;
  }
  .timeline hr {
    border-top: 3px solid var(--main-blue);
    margin: 0;
    top: 17px;
    position: relative;
  }
  .timeline .col-2 {
    display: flex;
    overflow: hidden;
  }
  .timeline .corner {
    border: 3px solid var(--main-blue);
    width: 100%;
    position: relative;
    border-radius: 15px;
  }
  .timeline .top-right {
    left: 50%;
    top: -50%;
  }
  .timeline .left-bottom {
    left: -50%;
    top: calc(50% - 3px);
  }
  .timeline .top-left {
    left: -50%;
    top: -50%;
  }
  .timeline .right-bottom {
    left: 50%;
    top: calc(50% - 3px);
  }
  