.personal-skills-content, .soft-skills-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 

    padding-top: 80px;
    overflow: hidden;

    & h1 {
        font-size: 36px;
        color: #c0eef2;
    }

    & .scroller{
        max-width: 1200px;
        margin: 0 2rem;
    }

    & .scroller[data-animated=true] {
        overflow: hidden;
        
        -webkit-mask:linear-gradient(
            90deg, 
            transparent,
            white 20%,
            white 80%, 
            transparent
        );

        mask:linear-gradient(
            90deg, 
            transparent,
            white 20%,
            white 80%, 
            transparent
        );
    }

    & .scroller[data-animated=true] .scroller__inner {
        width: max-content;
        flex-wrap: nowrap;
        animation: scroll 40s linear infinite;
    }
    
    & .scroller__inner {
        padding-block: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    & .soft-skills-section, .hard-skills-section {
        padding-top: 50px;
        
        & h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        & .skill-list {
            margin: 0;
            padding-inline: 0;
            padding: 30px 0;
            background-color: #1D2432;
        }

        & .skill-list li {
            padding: 2rem;
            font-size: 1.5rem;
            background-color: #111827;
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1rem -0.25rem #000;
        }

    }

    .hard-skills-section, .hard-skill-list {
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        & h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        & .hard-skill-list {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 0;
            padding: 30px;
            background-color: #1D2432;
        }

        & .hard-skill-list li {
            animation: slide-in-left;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            width: 300px;
            padding: 2rem;
            font-size: 1.5rem;
            background-color: #111827;
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1rem -0.25rem #000;
        }
        & .hard-skill-list li:hover:first-child i{
            color:#DC4923;
        }
        & .hard-skill-list li:hover:nth-child(2) i{
            color:#234ADB;
        }
        & .hard-skill-list li:hover:nth-child(3) i{
            color:#EED71B;
        }
        & .hard-skill-list li:hover:nth-child(4) i{
            color:#4D993E;
        }
        & .hard-skill-list li:hover:nth-child(5) i{
            color:#00D3EA;
        }
        & .hard-skill-list li:hover:last-child i{
            color:#34B5EE;
        }
    
    }


}

/* .slide-in-left {
	-webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	 animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
} */

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

/* @-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
   */