
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
 body {
    font-family: 'Raleway', serif;
 }
.list-disc li {
  margin-top:8px;
  margin-bottom:8px;

}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

section h3:hover, section h3:hover span {
  cursor:pointer;
  color:rgb(13, 148, 136);
  font-family: 'Playfair Display', serif;
}

section.active h3 {
    color:rgb(20, 184, 166);
}

section {
    padding-top:0px;
    padding-left:0px;
    padding-bottom:0px;
    border-radius:5px;
    background:rgba(65,70,82,0);
    transition: all 0.5s ease;
}
section.active {
    padding-top:30px;
    padding-left:30px;
    padding-bottom:30px;
    background:rgba(65,70,82,0.3);
    margin-bottom:30px;
}


section article {
    padding-left:20px;
    padding-right:20px;
}
.timeline { 
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ccc; /* Line color */
    transform: translateX(-50%);
}

.timeline-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.timeline-panel:nth-child(odd) {
    align-items: flex-end;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #3498db; /* Dot color */
    border-radius: 50%;
    margin-bottom: 20px;
}

.timeline-content {
    max-width: 600px; /* Adjust as needed */
}


@media screen and (min-width: 1280px) {
.new-timeline .dot-right:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 2px solid #084860;
    border-radius: 50%;
    right: -9.5px;
    position: absolute;
    top: 45%;
    z-index: 30;
}
}
