/* ========== CV LAYOUT ========== */
.cv-header { padding: 20px 0; }
.cv-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cv-photo {
  width: 140px;
  height: auto;
  border-radius: 4px;
  margin-right: 25px;
}
.cv-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 5px;
}
.cv-title .cv-subtitle {
  color: #fff;
  font-size: 14px;
}

strong {
    font-weight: 700;
    color: #000000;
}
.cv-container {
  display: flex;
  margin-top: 0;
  background: #fff;
}
.cv-sidebar {
  width: 260px;
  border-right: 1px solid #e8e9ee;
  padding: 20px;
}
.cv-main {
  flex: 1;
  padding: 30px;
}

ul, ol
Specificity: (0,0,1)
 {
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
   
}

.cv-sidebar h2 {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin-top: 15px;
  margin-bottom: 20px;
  TEXT-ALIGN: CENTER;
}
.cv-list li {
  font-size: 14px;
  color: #151515;
  margin-bottom: 8px;
}
.cv-list .icon {
  color: #ebb85e;
  margin-right: 8px;
}

.cv-langs li {
  position: relative;
  padding-left: 20px;
}
.cv-langs li:first-child::before {
  content: '';
  position: absolute;
  height: 4px;
  width: 80%;
  background: #2c2c2c;
  top: 0;
  left: 0;
}
.cv-langs li:last-child::before {
  content: '';
  position: absolute;
  height: 4px;
  width: 40%;
  background: #2c2c2c;
  top: 0;
  left: 0;
}

.cv-skills .skill {
  margin-bottom: 12px;
}
.cv-skills .skill span {
  display: block;
  font-size: 13px;
  color: #151515;
}
.cv-skills .bar {
  background: #e8e9ee;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}
.cv-skills .level {
  background: #2c2c2c;
  height: 100%;
}

.cv-section {
  margin-bottom: 30px;
}
.cv-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #2c2c2c;
  margin-bottom: 15px;
  position: relative;
}
.cv-section h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ebb85e;
}

.cv-job + .cv-job {
  margin-top: 18px;
}
.cv-job h4 {
  font-size: 16px;
  font-weight: 700;
  color: #151515;
}
.cv-job p {
  font-size: 14px;
  color: #2c2c2c;
}
.cv-job p span {
  color: #74757f;
  font-size: 12px;
}

.cv-qr .qr-code {
  max-width: 100px;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .cv-container { flex-direction: column; }
  .cv-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #e8e9ee; }
  .cv-main { padding-top: 20px; }
}






