.card-profiles {
  position: relative;
  margin: auto;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.2);
  background: white;
  overflow: hidden;
}
.card-profiles .ds-top {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #f27233;
  animation: dsTop 1.5s;
}
.card-profiles .avatar-holder {
  position: absolute;
  margin: auto;
  top: 40px;
  right: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px white, inset 0 0 0 5px whitesmoke, inset 0 0 0 5px whitesmoke, inset 0 0 0 5px whitesmoke, inset 0 0 0 5px whitesmoke;
  background: white;
  overflow: hidden;
  animation: mvTop 1.5s;
}
.card-profiles .avatar-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-profiles .name-profiles {
  position: absolute;
  margin: auto;
  top: 35px;
  right: 0;
  bottom: 0;
  left: 0;
  width: inherit;
  height: 40px;
  text-align: center;
  animation: fadeIn 2s ease-in;
  color: black;
  font-size: 20px;
}
.card-profiles .ds-info {
  position: absolute;
  margin: auto;
  top: 150px;
  bottom: 0;
  right: 0;
  left: 0;
  width: inherit;
  height: 40px;
  display: flex;
}
.card-profiles .ds-info .pens, .card-profiles .ds-info .projects, .card-profiles .ds-info .posts {
  position: relative;
  left: -300px;
  width: 83.3333333333px;
  text-align: center;
  color: white;
  animation: fadeInMove 2s;
  animation-fill-mode: forwards;
}
.card-profiles .ds-info .pens h6, .card-profiles .ds-info .projects h6, .card-profiles .ds-info .posts h6 {
  text-transform: uppercase;
  color: crimson;
}
.card-profiles .ds-info .pens p, .card-profiles .ds-info .projects p, .card-profiles .ds-info .posts p {
  font-size: 12px;
}
.card-profiles .ds-info .ds:nth-of-type(2) {
  animation-delay: 0.5s;
}
.card-profiles .ds-info .ds:nth-of-type(1) {
  animation-delay: 1s;
}

@keyframes fadeInMove {
  0% {
    opacity: 0;
    left: -300px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes htmlSkill {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}
@keyframes cssSkill {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes jsSkill {
  0% {
    width: 0;
  }
  100% {
    width: 75%;
  }
}
@keyframes mvBottom {
  0% {
    bottom: -150px;
  }
  100% {
    bottom: 10px;
  }
}
@keyframes mvTop {
  0% {
    top: -150px;
  }
  100% {
    top: 40px;
  }
}
@keyframes dsTop {
  0% {
    top: -150px;
  }
  100% {
    top: 0;
  }
}/*# sourceMappingURL=card-profiles.css.map */