ul {
    list-style-position:outside;
}
h1 {
  font-weight: 600;
  margin-bottom: 3rem;
}
.section.cv-top {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 64em) {
  .section.cv-top {
    margin-top: 0rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
}
.container-cv-top {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 64em) {
  .container-cv-top {
    flex-direction: column;
    align-items: center;
  }
}
.cv-top_left {
  width: 16rem;
}
@media only screen and (max-width: 64em) {
  .cv-top_left {
    margin-bottom: 3rem;
  }
}
.cv-top_right {
  text-align: right;
}
@media only screen and (max-width: 64em) {
  .cv-top_right {
    text-align: center;
  }
}

.contact-item_left {
  font-weight: 600;
}
.contact-item_right a {
  border-bottom: 2px dotted #000;
  padding-bottom: 2px;
}

.title-underlined h2 {
  position: relative;
}
.title-underlined h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  width: 100%;
  height: 1px;
}

.simple-text-block p {
  line-height: 1.5;
}

.job-item-header {
  background-color: #ddd;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
}
.job-item-header p {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.3;
}
@media only screen and (max-width: 64em) {
  .job-item-header p {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .job-item-years,
  .job-item-position,
  .job-item-company {
    padding: 0.5rem 0;
  }
}

.job-item-years {
  flex: 0 1 30%;
}
.job-item-position {
  margin-right: 0.5rem;
}

.job-item-position,
.job-item-company {
  font-weight: 600;
}

.job-item-responsibilities {
  padding-left: 2rem;
}
.job-item-responsibility {
  list-style: ;
}
.job-item-responsibility p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.features-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 64em) {
  .features-container {
    display: block;
  }
}
.features-container p {
  line-height: 1.5;
}
.features_left {
  flex: 0 40%;
  font-weight: 600;
  padding-right: 3rem;
}
@media only screen and (max-width: 64em) {
  .features_left {
    padding-right: 0;
  }
}
.features_right {
  flex: 1;
}
