.equal-card {
    height: 100%;
}
.about-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 10px;
}

.about-timeline .timeline-line {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d9d9d9;
  z-index: 1;
}

.about-timeline .timeline-item {
  position: relative;
  flex: 1;
  z-index: 2;
  padding-top: 0;
}

.about-timeline .timeline-year {
  font-size: 30px;
  font-weight: 700;
  color: #02314b;
  line-height: 1;
  margin: 0 0 34px 0;
}

.about-timeline .timeline-dot {
  position: absolute;
  top: 64px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #88c3e8;
  transform: translateY(-50%);
  z-index: 3;
}

.about-timeline .timeline-content {
  margin-top: 64px;
}

.about-timeline .timeline-content h4 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 14px 0;
  color: #02314b;
}

.about-timeline .timeline-content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #02314b;
}

@media (max-width: 980px) {
  .about-timeline {
    flex-direction: column;
    gap: 30px;
  }

  .about-timeline .timeline-line {
    display: none;
  }

  .about-timeline .timeline-dot {
    position: static;
    transform: none;
    margin-bottom: 12px;
  }

  .about-timeline .timeline-content {
    margin-top: 0;
  }

  .about-timeline .timeline-year {
    margin-bottom: 10px;
  }
}

/* Adjust width of dropdown menus */

/*set the Divi menu dropdown auto width*/

@media only screen and (min-width: 981px) {
  .nav li ul {
    width: fit-content;
    display: flex;
    flex-direction: column;
  }

  .nav li li {
    white-space: nowrap;
  }

  .nav li li a {
    width: auto !important;
  }
}

/* Adjust position of 3rd-level dropdown menus */

@media only screen and (min-width: 981px) {
  .nav li ul ul {
    margin-left: 60px;
    /* Adjust this value to move the 3rd menu to the right */
    top: 0;
    /* Keep the 3rd dropdown aligned vertically */
  }
}