*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /* display: flex;
    justify-content: center;
    align-items: center; */
    overflow-x: hidden;
    background-color:  #000000;
}
.title{
    width: auto;
    height: auto;
    /* background-color: red; */
    color: white;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    font-weight: 900;
    margin-top: 100px;
    margin-bottom: 0;
}
.hero{
    width: 65%; 
    height: 500px;
}
.hero img{
    border-radius: 5px;
    height: 100%;
    display: block;
    width: 100%; 
    opacity: 0; 
    animation: fadeEffect 3s ease-in-out forwards;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    height: 100px;
    padding: 10px 30px;
}

.desktop-main-menu {
    margin-right: 50px;
    width: 100%;
}

.desktop-main-menu ul {
    display: flex;
    justify-content: space-between;
}

.desktop-main-menu ul li {
    position: relative;
    margin-right: 50px;
    padding-bottom: 2px;
}

.desktop-main-menu ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: right center;
}

.desktop-main-menu ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    transition-duration: 0.4s;
}
.previous{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(0, 0, 0, 0); 
    padding: 10px 20px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}
a{
    color: white;
    font-size: 25px;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
}
.gradient-top,.gradient-bottom{
    position: absolute;
    left: 0;
    width: 100%;
    height: 20%; 
    z-index: 2;
}
.gradient-top{
    top: 0;
    background: linear-gradient(to bottom,  rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
/* .gradient-bottom{
    bottom: 0;
    background: linear-gradient(to top,  rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
} */
.super{
    width: auto;
    height: 100vh;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* gap: 50px; */
    margin-top: 0px;
}
.container{
    margin-top: 5%;
    width: 50%;
    display: flex;
    justify-content: center ;
    align-items: center;
    gap: 25px;
    padding: 25px;
    flex-wrap: wrap;
    /* border: 0.5px dotted aqua; */
}
.container .card{
    padding-left: 50px;
    padding-top: 50px;
    position: relative;
    height: 250px;
    width: 250px;
    background-color: rgb(21, 21, 21);
    border-radius: 20px;
}
.container .card .percent{
    position: relative;
    height: 150px;
    width: 150px;
    /* transform: rotate(270deg); */
}
.container .card .percent svg{
    position: relative;
    height: 150px;
    width: 150px;
    transform: rotate(270deg);
}
.container .card .percent svg circle{
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 5px;
    stroke: black;
    transform: translate(5px,5px);
}
.container .card .percent svg circle:nth-child(2){
    stroke: var(--clr);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: progress-animation 2s linear forwards;
}
@keyframes progress-animation {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: calc(440 - (440 * var(--num)) / 100);
  }
}

.dot{
    position: absolute;
    inset: 1px;
    z-index: 10;
    animation: dotanimate 1s linear forwards;
    /* 360deg/100 = 3.6 */
}
@keyframes dotanimate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(calc(3.6deg * var(--num)));
    }
}
.dot::before{
    content: " ";
    position: absolute;
    height: 15px;
    width: 15px;
    background-color: var(--clr);
    transform: translateX(-50%);
    top: -3px;
    left: 50%;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--clr), 0 0 30px var(--clr);
}
.number{
    color: white;
    font-size: 30px;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.power{
    color: white;
    font-size: 25px;
    padding: 10px;
    padding-left: 15%;
}
@keyframes fadeEffect {
    0% {
      opacity: 0; 
    }
    100% {
      opacity: 1; 
    }
  }
  .powerr{
    font-family: Arial, Helvetica, sans-serif;
    width: 90%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card-box{
    margin-left: 30px;
    width: 80%;
    height: 80%;
    /* border: 3px solid yellow; */

    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .bio{
    width: 80px;
    /* object-fit: contain; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);

  }
  
  .bio>.row{
    color: white;
    display: flex;
    flex-wrap: wrap;
  }
  
  .bio>.row>.icon{
    background-color: #223;
    color: white;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
  }
  .bio>.row>.description{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 80px;
    width: 520px;
    transform: translateY(30px);
    transition-delay: 0.3s;
    transition: all 0.3s ease;
  }
  .description p{
    color: black;
    padding-top: 5px;

  }
  .description h3{
    text-transform: uppercase;
  }
  input{
    display: none;
  }
  input:checked + label{
    width: 600px;
  }
  input:checked + label .description{
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

