body{
     margin: 0;
    padding: 2vh 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
}
a {
  text-decoration: none;
  color: inherit;
}
/* desktop-view */
.legacy-main-body{
    padding: 80px 0px;
    width: 75%;
    margin: 0 auto;
}
.top-section {
  display: flex;
  justify-content: flex-end;
  padding: 50px 0px;
  padding-bottom: 0;
}

.logo-right {
  height: 50px;
  width: auto;
}
.content-section{
    display: flex;
    gap: 0;
    padding: 50px 0px;
    width: 80%;
    margin: 0 auto;
}
.content-section-side{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 50vh;
}
.content-section-side.l{
padding-top: 45vh;
}
.content-section-mid {
  position: relative;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vertical-line {
  width: 1.5px;
  height: 100%;
  background-color: #3d3d3d;
}

.vertical-line-dot {
  width: 10px;
  height: 10px;
  background-color: #3d3d3d;
  border-radius: 50%;
  position: absolute;
  top: 0;

  transition: transform 0.1s linear; /* Smooth movement */
}
.content-section-side-grid{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.content-section-side-grid.right-align{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}
.year{
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    color: #6a6a6a;
}
.year-para{
    font-size: 13px;
    margin: 0;
    font-weight: 500;
color: #6a6a6a;
}
.read-more{
     font-size: 13px;
    font-weight: 600;
color: #828282;
}
.read-more span {
  font-weight: 500;
}


.read-more:hover{
    color: #999999;
}
.logo-mini-head{
   font-size: 15px;
    color: #3d3d3d;
    font-weight: 600;
    display: flex;
    justify-content: right;
    margin: 0;
    padding-bottom: 50px;
    padding-top: 10px;
}
.mobile-content{
    display: none;
}

/* bottom-section */
.bottom-section{
    display: flex;
    justify-content: space-between;
    padding-top: 30vh;
    align-items: center;
}
.mobile-bottom-text{
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    color: #353535;
    text-align: center;
    display: flex;
    justify-content: center;
}
.mobile-bottom-text span{
    color: #4f4f4f;
    font-size: 8px;
}
.dot {
    width: 35px;
    height: auto;
    margin: 0 auto; /* This centers it horizontally */
}



/* mobile-view */

@media (max-width: 767px) {
    .content-section{
    display: none;
}
.legacy-main-body{
    width: 85%;
}
.top-section {
  display: flex;
  justify-content: center;
  padding: 0px;
}
.logo-right {
  height: 50px;
  width: auto;
}
.logo-mini-head{
    display: inline;
    font-size: 12px;
    color: #3d3d3d;
    font-weight: 600;
    display: flex;
    justify-content: center;
    margin: 0;
    padding-top: 10px;
}
.mobile-content{
    display: flex;
    gap: 0;
    padding: 50px 0px;
}
.mobile-content-left{
    width: 15%;
    position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-section-side-grid{
    gap: 10px;
}
.mobile-content-right{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10vh;
}
.year-para{
    font-size: 12px;
}
.read-more{
     font-size: 10px;
}
.bottom-section{
    display: flex;
    flex-direction: column-reverse;
    gap: 3px;
    justify-content: center;
    padding-top: 15vh;
}
 .bottom-section .mobile-bottom-text:nth-child(1) {
    order: 1; /* First */
  }

  .bottom-section .mobile-bottom-text:nth-child(3) {
    order: 2; /* Second */
  }

  .bottom-section .dot {
    order: 3; /* Third */
  }
}