.sc-cards {
    height: fit-content;
    position: relative;
    display: flex;
    /*font-size: 1.1vw;*/
}

.sc-cards .card {
    background: linear-gradient(90deg, #080509f0, #1a171cf1, #080509d7);
    padding: 10px 30px;
    border-radius: 8px;
    position: relative;
    opacity: 0;
    color: #eef7ff;
    /* FEEC37, 4CC9FE, e9de0e, B1B2FF, ff4bde, 6DECB9, FF8225, 77E4C8, EEF7FF*/
    backdrop-filter: blur(4px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
    /* background: white; */
}

.sc-cards .card-m {
    position: absolute;
    top: 0;
    z-index: 10;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.15s;
    cursor: pointer;
}

.sc-cards .card-m:hover {
    box-shadow: inset -10px -10px 50px #0000009c,
        rgba(0, 0, 0, 0.352) 0px 5px 10px -5px, rgba(0, 0, 0, 0.05) 0px 5px 8px;
    transform: translateY(-1px);
}

.skills-animation {
    animation: animate 0.8s forwards cubic-bezier(0.23, 0.5, 0.32, 1.08);
}

@keyframes animate {
    0% {
        top: 50vw;
        height: 100px;
    }

    95% {
        opacity: 1;
        height: 110%;
    }

    100% {
        top: 0;
        opacity: 1;
        height: auto;
    }
}
