
section {
  display: grid;
  place-items: center;
  align-items: center;
  height: 100%;
}

.hidden {
  opacity: 0;
  filter: blur(2px);
  transform: translateX(-100%);
  transition: all 0.5s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0%);
}

.ccs {
  display: flex;
  z-index: -1;
}

.cc {
  position: relative;
}

.cc:nth-child(2) {
  z-index: -1;
}

.cc:nth-child(2) {
  transition-delay: 100ms;
}

.cc:nth-child(3) {
  transition-delay: 100ms;
}

.cc:nth-child(4) {
  transition-delay: 200ms;
}

.cc:nth-child(5) {
  transition-delay: 200ms;
}

.cc:nth-child(6) {
  transition-delay: 300ms;
}




.cc span {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background-color: #00B3F0;
    color: white;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 32px;
    font-weight: 400;
    margin: 50px -15px;
  
  }
  
  .cc:not(:first-child) span {
    opacity: 0.7;
  }
  
  .cc:first-child span {
    opacity: 0.9;
  }

@property --progress-value {
  syntax: "<integer>";
  inherits: false;
  initial-value: 0;
}

@keyframes html-progress {
  to {
    --progress-value: 77;
  }
}

.move {
  opacity: 0;
  filter: blur(1px);
  transform: translateY(10px);
  transition: all 1s ease-in;
}

.move.show {
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
}

.html {
  background: radial-gradient(
      closest-side,
      white 87%,
      transparent 0% 100%
    ),
    conic-gradient(#0057a8 calc(var(--progress-value) * 1%), #dbf4ff 0);
  /* animation: html-progress 2s 1 forwards; */
}

.html::before {
  /* animation: html-progress 2s 1 forwards; */
}

.html::before {
  animation: var(--before-animation);
  -webkit-animation: var(--before-animation);
}

progress {
  visibility: hidden;
  width: 0;
  height: 0;
}

.ly-graph {
  width: 1000px;
  /* margin: 0 auto; */
  /* display: grid; */
  display: flex;
  /* grid-template-columns: 1.1fr 1.6fr;
  grid-template-rows: auto; */
  justify-content: center;
  margin: 30px 30px;
}

.progress-bar-container {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px 0px;
  text-align: center;
  padding: 20px 60px 40px 60px;
}

.progress-bar {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.progress-bar::before {
  counter-reset: percentage var(--progress-value);
  content: counter(percentage) "%";
  color: #0057a8;
  font-weight: 600;
  font-size: 70px;
}

.progress-label {
  font-size: 26px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.myProgress {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.myBar {
  width: 0%;
  height: 32px;
  transition: width 0.5s linear;
  border-radius: 15px;
}

.myBar p {
  color: white;
  text-align: end;
  padding: 0px 5px;
}

#bar1 .myBar {
  background-color: #0057a8;
}

#bar2 .myBar {
  background-color: #00b3f0;
}

#bar3 .myBar {
  background-color: #00b3f0;
}

.ly-low-graph-content {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.img-circle {
  display: flex;
  justify-content: center;
}

.img-circle img {
  width: auto;
  max-width: 100%;
}

.talent-graph {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.talent-graph img {
  width: auto;
  max-width: 100%;
}


@media (max-width: 1024px) {

  .hidden {
    opacity: 0;
    filter: blur(1px);
    transform: translateY(-10px);
    transition: ease-in 0.5s;
  }

  .show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(10px);
  }
  .progress-label {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .ly-graph {
    width: 500px;
    grid-gap:50px
  }

  .progress-bar {
    top: 35%;
    left: 50%;

    width: 200px;
    height: 200px;
  }
  .ly-low-graph-content {
    width: 130%;

  }

  .myBar {
    height: 20px;
  }

  .measurement {
    width: 100%;
  }

  .cc span {
 
    width: 110px;
    height: 110px;
    font-size: 16px;
    margin: 18px -9px;
  
}
}
@media (max-width: 765px) {


  .ly-graph {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin: 30px 0;
  }


  .myBar {
    height: 22px;
  }

  .progress-label {
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 6px;
  }

  .progress-bar {

    margin-top: 120px;
  }

  .ly-low-graph-content {
   
    width: 85%;
    padding: 20px;
    margin-bottom: 30px;
    margin-top: -50px;
}
  

  
  .progress-bar::before {
    font-size: 30px;
  }


  .ccs {
    display: block;
    z-index: -1;
  }

  .cc span {
    width: 180px;
    height: 180px;
    font-size: 20px;
    margin: 0px;
    margin-top: -27px;
  
  }
  section {
   
    margin: 30px 0px;
}

.progress-bar-container {

  padding: 0px;
}
}

.grid-talent {
  grid-template-columns: repeat(2, 1fr);
  width: 84%;
  margin: 0 auto;
}