* {
  box-sizing: border-box;
}

body {
  background: rgb(1, 0, 11);
  background: linear-gradient(
    137deg,
    rgba(1, 0, 11, 1) 0%,
    rgba(60, 60, 71, 1) 35%,
    rgba(135, 135, 135, 1) 100%
  );
}

.navbar-nav {
  width: 50%;
  justify-content: space-between;
  font-size: 1em;
}

.nav-link {
  font-weight: bold;
}

.nav-link:hover {
  color: red !important;
}

.nav-item .active {
  position: relative;
}

.nav-item .active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: red;
}
.rounded {
  border-radius: 1.1rem !important;
}

#ProfileCard .card {
  margin-top: 125px;
}

.photo-content {
  height: 300px;
}

.hero {
  width: 100%;
  height: auto;
  min-height: 300px;
  transform: translate(0, -246px);
}

.photo-profile {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin-top: -87px;
}

.photo-profile .Size {
  width: 150px;
  height: auto;
}

.text-pc {
  color: #707070;
}

.timeline {
  max-width: 360px;
  border-left: 3px solid rgb(135, 104, 247);
  padding: 0 20px 0 30px;
  margin: auto auto 10px auto;
}

.content {
  background-color: #599ef7;
  padding: 10px 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  position: relative;
  color: white;
}

.content::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0f5cc0;
  border: 3px solid #ddd;
  position: absolute;
  top: 10px;
  left: -42px;
}

.content::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #599ef7 transparent transparent;
  border-width: 8px;
  position: absolute;
  left: -15px;
  top: 10px;
}

.sticky {
  position: sticky !important;
  top: 94px;
}

.reaveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}

.reaveal.active {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 990px) {
  .navbar-nav {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero {
    transform: translate(0, 0);
  }

  .photo-profile {
    margin-left: auto;
    margin-right: auto;
  }

  #ProfileCard .profil-detail,
  #ProfilCard .w-auto {
    text-align: center;
  }
}
