

.sejarah {
    color: #0A4D68;
    font-size: 32px;
    font-weight: 500;
}

.card {
    background-color: #fff;
    width: 300px;
    transition: background-color 0.3s; /* Efek transisi saat berubah warna */
  }

  .card:hover {
    background-color: #0A4D68;
  }

  .card-content {
    padding: 20px;
    transition: color 0.3s; /* Efek transisi saat berubah warna */
  }

  .card:hover .card-content {
    color: white;
  }
  .card:hover .card-content .sejarah {
    color: white;
  }

  .card-with-line {
    position: relative;
    overflow: hidden;
  }

  .card {
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: none;
  }

  .vertical-line {
    position: relative;
    width: 2px;
    height:110%; /* Atur tinggi sesuai kebutuhan */
    background-color: #2c2c2c;
    margin: 0 10px;
  }

  .dot {
    position: absolute;
    top: -5px;
    left: -11px;
    width: 25px;
    height: 25px;
    background-color: #0A4D68;
    border-radius: 50%;
  }

