
  
.aboutPage-right-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2em;
}

.aboutPage-right-item-title {
  width: 120px;
  margin-right: 60px;
}

.aboutPage-right-item-title > span {
  width: 80px;
  display: inline-block;
  border: 1px solid black;
  padding: 1px 5px 3px 5px;
  font-variant: all-small-caps;
  line-height: 70%;
  height: 70%;
  margin-top: 0.25em;
  position: relative;
}

/* mobile */
@media (max-width: 768px) {
  .aboutPage-right-item-title > span {
    width: 50px;
    padding: 1px 5px 2px 5px;
  }
}

.aboutPage-right-item-content > p {
  padding: 0;
  margin: 0;
  margin-top: 2px;
}

.aboutPage-right-item-content {
  position: relative;
  width: 100%;
}
.circle {
  width: 0.8vw;
  height: 0.8vw;
  display: inline-block;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 0.4vw;
  left: -35px;
}

.old {
  font-variant: all-small-caps;
  text-transform: uppercase;
}

.circle-left {
  width: 0.8vw;
  height: 0.8vw;
  display: inline-block;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 0.4vw;
  left: 0;
}

/* mobile circle */
@media (max-width: 768px) {
  .circle {
    width: 2vw;
    height: 2vw;
    top: 1.5vw;
  }
  .circle-left {
    width: 2vw;
    height: 2vw;
    top: 1vw;
  }
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: line-through;
}