.experience-block{
  width: 100%;
  height: 100%;
  margin-top: 1rem;
}

.experience{
  font-size: 1.4rem;
  color: gray;
  font-weight: 500;
}

.company{
  font-size: 1.6rem;
  color: #686e83;
  font-weight: 900;
}

.experience-block h2{
  font-size: 1.9rem;
  margin-top: 0.5rem;
}

.experience-block p{
  font-size: 1.4rem;
  margin-top: 1rem;
  font-weight: 500;
  color: #6b6b6b;
}

.my-services {
  margin-top: 3.2rem;

  background: #f8f7f9;
  border-radius: 3.2rem;

  display: grid;
  gap: 2.1rem;
}


.my-services > .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

.my-services > .cards > .card {
  padding: 1.6rem 1.6rem 2rem;
  background-color: #ededed;
  border-radius: 2.4rem;
  position: relative;

  display: grid;
  gap: 4.7rem;
}

.my-services > .cards > .card > img {
  position: absolute;
  top: -0.4rem;
  left: -0.4rem;
  width: 6.2rem;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center center;
}

.my-services > .cards > .card > p {
  font-size: 1.2rem;
  line-height: 110%;
  text-align: right;
  color: #5e5e5e;
}

.my-services > .cards > .card > .group {
  display: grid;
  gap: 1.8rem;
}

.my-services > .cards > .card > .group > h6 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 110%;
  color: #000000;
}

.my-services > .cards > .card > .group > .percentage {
  height: 2.3rem;
  border-radius: 100rem;
  background-color: #c3c3c3;

  display: grid;
}

.my-services > .cards > .card > .group > .percentage > span {
  width: calc((((100% - 2.3rem) / 100) * var(--percentage)) + 2.3rem);
  border-radius: 100rem;
  background-color: #201f1f;

  min-width: 2.3rem;

  color: #fff;
  text-align: right;
  display: grid;
  align-items: center;
  justify-content: end;
  padding: 0 0.6rem;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .my-services {
    padding: 4rem 3.2rem;
  }

  .my-services > .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 800px) {
  .my-services {
    padding: 4rem 2.4rem;
  }

  .my-services > h2 {
    justify-self: start;
  }
}

@media screen and (max-width: 600px) {
  .my-services {
    padding: 4rem 1.6rem;
  }

  .my-services > .cards {
    grid-template-columns: 1fr;
  }
}
