/* social icons */

.social a i {
  font-size: 30px;
  color: white;
}
.social a i:hover {
  background: rgb(104, 103, 97);
}
.social a .fa-twitter {
  background: rgb(150, 148, 228);
}
.social a .fa-github {
  background: rgb(104, 102, 238);
}
.social a .fa-codepen {
  background: rgb(32, 53, 47);
}
.social a .fa-linkedin-in {
  background: rgb(80, 77, 241);
}

/* index page img */

.lapee_img {
  border-top-right-radius: 20%;
  border-bottom-left-radius: 20%;
}

/* skills page progressbars */

.main {
  width: 80%;
}
.custom_progress {
  margin: 25px 0;
}
.title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
}
.title h3 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 500;
}
.barline {
  height: 12px;
  background: #c8d6e5;
  border-radius: 20px;
}

.countbar {
  height: 12px;
  background: #5f27cd;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
}
.countbar h3 {
  position: absolute;
  right: -19px;
  top: -35px;
  background: #34495e;
  color: white;
  padding: 4px 6px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
}
.countbar h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 11px;
  height: 11px;
  background: #34495e;
  transform: rotate(45deg) translateX(-60%);
}
