.skill{
  width: 95%;
  height: 900px;
  position: absolute;
  top: 15rem;
  left: 50%;
  transform: translate(-50%);
  text-align: left;
  background-color: #ffffff60;
}


.skills {
  position: relative;
  width: 80%;
  height: 850px;
  margin: 0 auto;
  text-align: left;
}

.lines {
  height: 100%;
  position: relative;
}

.line {
  height: inherit;
  width: 2px;
  position: absolute;
  background: rgba(238, 238, 238, 0.6);
}

.line.l--0 {
  left: 0;
}

.line.l--25 {
  left: 25%;
}

.line.l--50 {
  left: 50%;
}

.line.l--75 {
  left: 75%;
}

.line.l--100 {
  left: calc(100% - 1px);
}

.line__label {
  display: block;
  width: 160px;
  text-align: center;
  position: absolute;
  bottom: -25px;
  right: -80px;
}

.line__label.title {
  text-transform: uppercase;
  font-weight: bold;
}

.charts {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: z;
}

.chart:not(:first-child) {
  margin-top: 10px;
}

.chart__title {
  display: block;
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
  opacity: 0;
  -webkit-animation: 1s anim-lightspeed-in ease forwards;
          animation: 1s anim-lightspeed-in ease forwards;
}

.chart--web .chart__title {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

.chart--adobe .chart__title {
  -webkit-animation-delay: 9.3s;
          animation-delay: 9.3s;
}

.chart--cad .chart__title {
  -webkit-animation-delay: 13.1s;
          animation-delay: 13.1s;
}

.chart--cae .chart__title {
  -webkit-animation-delay: 16.7s;
          animation-delay: 16.7s;
}

.chart--horiz {
  overflow: hidden;
}

.chart__bar {
  height: 30px;
  margin-bottom: 10px;
  background: -webkit-gradient(linear, right top, left top, from(#4cb8c4), to(#3cd3ad));
  background: linear-gradient(to left, #88B9D7, #101147);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  opacity: 0;
  -webkit-animation: 1s anim-lightspeed-in ease forwards;
          animation: 1s anim-lightspeed-in ease forwards;
}

.chart--web .chart__bar:nth-of-type(1) {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

.chart--web .chart__bar:nth-of-type(2) {
  -webkit-animation-delay: 7.7s;
          animation-delay: 7.7s;
}

.chart--web .chart__bar:nth-of-type(3) {
  -webkit-animation-delay: 7.9s;
          animation-delay: 7.9s;
}

.chart--web .chart__bar:nth-of-type(4) {
  -webkit-animation-delay: 8.1s;
          animation-delay: 8.1s;
}

.chart--web .chart__bar:nth-of-type(5) {
  -webkit-animation-delay: 8.3s;
          animation-delay: 8.3s;
}

.chart--adobe .chart__bar:nth-of-type(1) {
  -webkit-animation-delay: 11.3s;
          animation-delay: 11.3s;
}



.chart--adobe .chart__bar:nth-of-type(2) {
  -webkit-animation-delay: 11.5s;
          animation-delay: 11.5s;
}


.chart--adobe .chart__bar:nth-of-type(3) {
  -webkit-animation-delay: 11.7s;
          animation-delay: 11.7s;
}


.chart--adobe .chart__bar:nth-of-type(4) {
  -webkit-animation-delay: 11.9s;
          animation-delay: 11.9s;
}


.chart--adobe .chart__bar:nth-of-type(5) {
  -webkit-animation-delay: 12.1s;
          animation-delay: 12.1s;
}

.chart--adobe .chart__bar:nth-of-type(6) {
  -webkit-animation-delay: 12.3s;
          animation-delay: 12.3s;
}


.chart--cad .chart__bar:nth-of-type(1) {
  -webkit-animation-delay: 15.1s;
          animation-delay: 15.1s;
}


.chart--cad .chart__bar:nth-of-type(2) {
  -webkit-animation-delay: 15.3s;
          animation-delay: 15.3s;
}

.chart--cad .chart__bar:nth-of-type(3) {
  -webkit-animation-delay: 15.5s;
          animation-delay: 15.5s;
}


.chart--cad .chart__bar:nth-of-type(4) {
  -webkit-animation-delay: 15.7s;
          animation-delay: 15.7s;
}

.chart--cae .chart__bar:nth-of-type(1) {
  -webkit-animation-delay: 18.7s;
          animation-delay: 18.7s;
}

.chart--cae .chart__bar:nth-of-type(2) {
  -webkit-animation-delay: 18.9s;
          animation-delay: 18.9s;
}


.chart__label {
  padding-left: 10px;
  line-height: 30px;
  color: white;
}

@-webkit-keyframes anim-lightspeed-in {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes anim-lightspeed-in {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/*# sourceMappingURL=skill.css.map */

@media screen and (min-width: 780px){

  .skill{
    top: 2rem;
    left: 25rem;
    width: calc(95% - 25rem);
    transform: translate(0);
  }
}