#strength-wrapper {
  position: relative;
 
}

#strength {
    padding: 0 5rem;
    position: sticky;
    top: 20vh;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

#strength-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;


}

#strength-texts div:nth-child(1) {
    position: absolute;
    top: 3rem;
    left: 0;
    padding: 2rem;
    width: 100%;

    /* background-color: #dbe4ff; */
    border-radius: 2px;

    display: flex;
    justify-content: center;

    & h1{
        text-align: center;
        font-size: 3.2rem;
        color: #515151;
        font-weight: 600;

        opacity: 0;
        animation: fadeUp 0.8s ease-out forwards;
        transform: translateY(40px);
        animation-delay: 0.3s;
        
    }
    
    
}



#strength-texts div:nth-child(2) {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #666;
    font-weight: bold;
    
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
    transform: translateY(40px);
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#strength-texts > div p {
  display: inline;
  transition: color 0.3s, font-weight 0.3s;
}

.strength-text.active {
  color: #7d9bff;
  font-size: 2rem;

}

#strength-icons {
  position: relative;
  width: 20rem;
  height: 20rem;
}

#strength-icons .icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;

  & img {
    width: 20rem;
    height: 20rem;
  }
}

#strength-icons .icon.active {
  opacity: 1;
}


.trigger-zone {
  height: 100vh;
}
