.cv {
  font-family: 'Open Sans', sans-serif;
  max-width: 970px;
  margin: auto;
}

.cv-top-bar {
  display: flex;
}

.cv-top-bar__image img {
  width:320px;
}

.cv-top-bar__title {
  font-size: 30pt;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cv-top-bar__title__work {
  color: #b5b5b5;
}

.cv-top-bar__image {
  margin: 20px 20px 0 20px;
}

.divider {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #a9a9a9;
  height: 4px;
}

.cv-body__2-col {
  display: flex;
}

.cv-body__endorsments {
  flex: 3;
  margin-left: 12px;
}

.cv-body__endorsments__item {
  margin-right: 5px;
  background-color: grey;
  padding: 6px;
  color: #fff;
  border-radius: 6px;
  line-height: 38px;
  white-space: nowrap;
}

.cv-body__general-title {
  font-size: 24px;
  margin: 52px 12px 8px;
}

.cv-short-facts {
  flex: 2;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 6px;
}

.cv-short-facts__fact {
  margin-bottom: 42px;
}

.cv-short-facts__fact__title {
  font-weight: bold;
  margin-bottom: 5px;
}

.cv-body__assignments__timeline {
  position: relative;
}

.cv-body__assignments__timeline__item {
  display: flex;
  border-left: 3px solid #bcbcbc;
  padding-left: 22px;
  padding-bottom: 28px;
  margin: 0 40px;
}

.cv-body__assignments__timeline__item::before {
  position: absolute;
  background: #bcbcbc;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  margin-left: -32px;
  margin-top: 5px;
  content: "";
}
.cv-body__assignments__timeline__item:nth-child(even)::before {
  height: 25px;
  width: 25px;
  margin-left: -37px;
}


.cv-body__assignments__timeline__item__col-1 {
  flex-shrink: 0;
  flex-basis: 25%
}

.cv-body__assignments__timeline__title {
  font-size: 22px;
  font-weight: bold;
}

.cv-body__languages {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px;
}

.cv-body__languages__language {
  display: flex;
  padding: 20px 10px;
  justify-content: space-between;
}

.cv-body__languages__language:nth-child(even) {
  background-color: gainsboro;
}

.cv-body__education {
  margin: 18px;
}


/* Tablet width */
@media (max-width: 768px) {
  .cv-top-bar {
    font-size: 24px;
    flex-direction: column;
    align-items: center;
  }

  .cv-body__assignments__timeline__item__col-1 {
    display:none;
  } 

}

/* Mobile width */
@media (max-width: 375px) {
  .cv-top-bar__title {
    font-size: 25pt;
    align-items: center;
  }

  .cv-body__2-col {
    flex-direction: column;
  }

  .cv-short-facts {
    margin-top: 12px;
  }
}