body {
  background-color: #0b0e22;
  margin: 0;
  font-family: sans-serif;
}

.timeline {
  position: relative;
  width: fit-content;
  margin: 0 4vw 0 0;
  display: flex;
  padding: 5dvh 0;
}

.line {
  position: absolute;
  left: 3dvw;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #435680;
  border-radius: 100px;
  z-index: 0;
}

.items-container {
  display: flex;
  flex-direction: column;
  gap: 4dvh;
  margin-left: 6dvw; /* push items right of the line */
  width: 100%;
  z-index: 1;
}

.item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-left: 1dvh;
  padding-right: 1dvh;
  padding-top: 1dvh;
  padding-bottom: 1dvh;
  width: 40dvw;
  background-color: #1c2236;
  color: white;
  border-radius: 8px;
}

.item::before {
  content: '';
  position: absolute;
  left: -3.5dvw;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0b0e22;
  box-shadow:
    0 0 0 4px #0b0e22,
    0 0 0 8px #435680;
  z-index: 2;
}

#nav-area-2 {
  padding-top: 5dvh;
  
}

.cnt {
  margin: 0;
  padding: 0;
  border: none;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.text-content {
  width: 70%;
  height: auto;
  padding: 1dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #73f5ed;
  width: 15%;
  height: 40%;
  background-color: #0b0e22;
  border: none;
  border-radius: 8px;
  padding: 1dvh;
  cursor: pointer;
}

.view {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #0b0e22;
  padding: 0 2dvw;
}

.focus-cnt{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-content{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}
.review-box{
  margin: 0;
  padding: 0;
  height: 40vh;
  width: 30%;
}