body {
  height: 3000px;
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
}

/* Navigation Bar */
.navbar {
  width: 288px;
  position: fixed;
  background-color: rgba(21, 32, 43, 1);
  color: #ffffff;
  border-radius: 32px;
  top: 79px;
  left: 66px;
  padding: 16px;
  box-sizing: border-box;
}

ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
ul li:first-child {
  padding: 0;
  margin: 0;
  cursor: unset;
}
li {
  height: 60px;
  margin: 0;
  padding: 16px 28px 16px 16px;
  list-style-type: none;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: rgba(247, 249, 249, 1);
}
a {
  display: flex;
  align-items: center;
  gap: 15px;
}
li:hover {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

/* progress bar */

.green-progressbar {
  background-color: rgba(220, 245, 221, 1);
  width: 328px;
  border-radius: 8px;
  position: absolute;
  top: 79px;
  left: 420px;
  padding: 16px 24px 16px 24px;
  gap: 8px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 40px 232px;
}
.progress {
  display: grid;
  gap: 4px;
}
.title {
  display: grid;
  align-items: end;
  grid-template-columns: 47px auto;
  gap: 8px;
  font-family: "lato", sans-serif;
}
h3 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: rgba(38, 38, 38, 1);
}
.title span {
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  /* text-align: center; */
  color: rgba(111, 111, 111, 1);
}
.progress-line {
  background-color: rgba(224, 224, 224, 1);
  width: 232px;
  height: 8px;
  border-radius: 64px;
  position: relative;
  overflow: hidden;
}
.indicator-green {
  width: 100%;
  height: 8px;
  border-radius: 64px;
  background-color: rgba(25, 128, 56, 1);
  position: absolute;
}
.indicator-blue {
  width: 30%;
  height: 8px;
  border-radius: 64px;
  background-color: rgba(0, 67, 206, 1);
  position: absolute;
}
.blue-progressbar {
  background-color: rgba(197, 206, 255, 1);
  width: 328px;
  border-radius: 8px;
  position: absolute;
  top: 79px;
  left: 838px;
  padding: 16px 24px 16px 24px;
  gap: 8px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 40px 232px;
}
