/*============================================================================================
	Agency Skills Area
==============================================================================================*/
.agency-skills-area {
  background: #f1f1e2;
  padding: 120px 0px;
}
.agency-skills-img {
  position: relative;
  z-index: 2;
}
.agency-skills-img::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 105px;
  background-image: url(../images/agency-skills/shape.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: -38px;
  left: -42px;
  z-index: -1;
}
.agency-skills-img img {
  width: 500px;
  height: 492px;
  object-fit: cover;
  border-radius: 12px;
}
.agency-skills-sm-title {
  font-size: 20px;
  line-height: 120%;
  color: #747681;
  margin-bottom: 16px;
  display: inline-block;
}
.agency-skills-big-title {
  font-size: 44px;
  line-height: 140%;
  margin-bottom: 26px;
}
.agency-skills-text {
  font-size: 16px;
  line-height: 160%;
  margin: 0;
}
.single-agency-skills-progress {
  margin-top: 26px;
}
.single-agency-skills-progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.skills-progress-title,
.skills-progress-percent {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}
.progress-container,
.progress {
  background-color: #f5dd9f;
  border-radius: 500px;
  position: relative;
  height: 12px;
  width: 100%;
}

.single-agency-skills-progress.progress-2 .progress-container,
.single-agency-skills-progress.progress-2 .progress {
  background-color: #acc8b8;
}
.single-agency-skills-progress.progress-2 .progress {
  background-color: #0b6755;
}
.single-agency-skills-progress.progress-2 .percentage::after {
  border-top: 10px solid #0b6755;
}
.single-agency-skills-progress.progress-3 .progress-container,
.single-agency-skills-progress.progress-3 .progress {
  background-color: #afc2eb;
}
.single-agency-skills-progress.progress-3 .progress {
  background-color: #1352fc;
}
.single-agency-skills-progress.progress-3 .percentage::after {
  border-top: 10px solid #1352fc;
}
.single-agency-skills-progress.progress-4 .progress-container,
.single-agency-skills-progress.progress-4 .progress {
  background-color: #e1cbf6;
}
.single-agency-skills-progress.progress-4 .progress {
  background-color: #9b51e0;
}
.single-agency-skills-progress.progress-4 .percentage::after {
  border-top: 10px solid #9b51e0;
}
.progress {
  background-color: #ffaf01;
  width: 0;
  transition: width 0.4s linear;
  height: 5px;
  top: 3px;
  left: 4px;
}
.percentage {
  font-size: 0px;
  position: absolute;
  left: 0;
  transition: left 0.4s linear;
}
.percentage::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  width: 10px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #ffaf01;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .agency-skills-content {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .agency-skills-area {
    padding: 56px 0px;
  }
  .agency-skills-img img {
    height: 280px;
  }
  .agency-skills-sm-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .agency-skills-big-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .skills-progress-title,
  .skills-progress-percent {
    font-size: 14px;
  }
  .single-agency-skills-progress-label {
    margin-bottom: 14px;
  }
  .agency-skills-content {
    margin-top: 32px;
  }
}

/*============================================================================================
	End Agency Skills Area
==============================================================================================*/
