.proficiency-circle {
  position: relative;
  margin-top: 0.5rem;
  padding: 0 1rem 1.25rem;
}

.proficiency-circle svg {
  display: block;
  width: 100%;
}

.proficiency-number {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 2.2rem;
  color: #333333;
  position: absolute;
  width: 60px;
  margin-left: -30px;
  left: 50%;
  top: 0;
  line-height: 126px;
}

.skills-circles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.skills-circle-item {
  flex: 0 0 calc(50% - 0.25rem);
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #333333;
  text-transform: uppercase;
}

.stat-bar {
  line-height: 1;
  margin-bottom: 1.8rem;
  letter-spacing: 1px;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #333333;
}

.stat-number {
  font-size: 1.8rem;
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #333333;
}

.stat-name {
  position: relative;
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #333333;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.stat-name:before {
  content: "";
  background: #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.stat-track {
  position: absolute;
  background-color: #b3dad9;
  left: 0;
  right: 0;
  bottom: 1px;
  height: .9em;
  z-index: -1;
  transform-origin: left center;
}

.animate .stat-track {
  animation: stat 1s forwards;
}

@keyframes stat {
  from { transform: translate3d(-100%, 0px, 0px) }
  to { transform: translate3d(0%, 0px, 0px) }
}

.icon-star-custom {
  border: 2px solid #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  margin-left: calc(50% - 40px);
  box-sizing: border-box;
}

.icon-star-custom svg {
  width: 2.25rem;
  height: 2.25rem;
}
