.project a {
    text-decoration: none;
    color: #fff;
}

.sec-title span::before {
    content: '';
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, blueviolet, rgb(110, 23, 192));
    position: absolute;
    top: 0;
    right: -12px;
    z-index: -1;
    border-radius: 10%;
    animation: blob 15s linear infinite;
}

@keyframes blob {
    0% {
        border-radius: 64% 36% 42% 58% / 44% 25% 75% 65%;
        transform: rotate(0deg);
    }

    25% {
        border-radius: 62% 38% 40% 60% / 41% 36% 64% 59%;
    }

    50% {
        border-radius: 64% 36% 37% 63% / 57% 57% 43% 43%;
    }

    75% {
        border-radius: 58% 42% 56% 44% / 36% 46% 54% 64%;
    }

    100% {
        border-radius: 64% 36% 42% 58% / 44% 25% 75% 65%;
        transform: rotate(360deg);
    }
}

.project-container {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-around;
    padding-top: 26px;
    padding-bottom: 26px;
    border-radius: 10px;
    background-color: #8d8d8d12;
}

.project-card {
    width: 350px;
    background: linear-gradient(0, #0000, #252525, #1e1e1e);
    border: 0.5px solid #e8e8e819;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    margin: 10px auto;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
    transition: all 0.2s;
}

.project-card:hover {
    box-shadow: rgba(5, 5, 5, 0.059) 0px 10px 20px -10px, rgba(0, 0, 0, 0.3) 0px 8px 16px -5px;
    transform: translateY(-2px);
}

.project-card .project-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: url(../img/projects/project01.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 4px;
}

.project-card .project-title {
    margin: 15px 0 8px;
    /* font-size: 1.2vw; */
    transition: all 0.2s;
}

.project-card .project-desc {
    /* font-size: 1vw; */
    color: #d9d9d9;
}

.project-card .project-time {
    margin-top: 10px;
    /* font-size: 12px; */
    opacity: 0.5;
}

.project-card .project-time span {
    margin: 0 6px;
}

.project-bcard {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -10%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    z-index: -1;
}

.bcard-e {
    width: 100%;
    aspect-ratio: 1;
    animation: none;
    border: 0.5px solid #0000;
    transition: all 0.3s;
}

.project-card:hover .bcard-e {
    border: 1px solid #65656538;
    animation: project 4s infinite;
}

@keyframes project {
    0% {
        background-color: #0000;
    }

    50% {
        background-color: #00e38c0f;
    }
}

.project-button {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    font-size: 1vw;
    transform: translateX(-50%);
    padding: 20px;
    display: flex;
    justify-content: center;
}

.project-button a {
    background-color: #64646479;
    margin-top: 30px;
    padding: 10px 25px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    z-index: -2 !important;
}

.project-button a:hover {
    background-color: #535353;
    box-shadow: rgba(32, 32, 32, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.project-button a::before {
    content: '';
    width: 12%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #9302fa;
    z-index: -1;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
}

.project-button a:hover {
    letter-spacing: 0.5px;
}

.project-button a:hover::before {
    background: linear-gradient(135deg, #7709d7, #00000099);
    width: 120%;
}

.project-button a i {
    margin-left: 5px;
    transition: all 0.2s;
}

.project-button a:hover i {
    transform: translateX(5px);
}