.container-projects {
    margin: 0;

    padding-top: 2vw;
    display: flex;
    overflow: visible;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 4vw;

    h2 {
        font-size: 3vw;
        font-weight: 400;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #E7E7E7 0%, #424141 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    p {
        font-size: 1vw;
        font-weight: 300;
        opacity: .8;
        margin-bottom: 3vw;
        max-width: 500px;
    }

    a {
        background: linear-gradient(to bottom, #ffffff 0%, #616161 100%);
        backdrop-filter: blur(10px);
        color: black;
        text-decoration: none;
        font-weight: 500;
        padding: 22px 28px;
        border-radius: 50px;
        font-size: .8vw;
        width: fit-content;
    }

    span {
        width: fit-content;
        margin-bottom: 1rem;
        padding: 0.8rem 1rem;
        font-size: .8vw;
        font-weight: 200;
        opacity: .8;
        text-align: center;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 1rem;

        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
        border-radius: 50px;

        &::before {
            content: '';
            display: inline-block;
            width: 0.7vw;
            height: 0.7vw;
            background-image: url('../img/icon-span.svg');
            background-size: contain;
            background-repeat: no-repeat;
        }
    }

    .projects-text-col {
        position: sticky;
        align-self: flex-start;
    }

    .projects-cards-container {
        display: flex;
        flex-direction: column;
        gap: 4vw;
        width: 50%;
    }

    .projects-card {
        position: relative;
        width: 100%;
        height: 35vw;
        border-radius: 20px;
        background-image: url('../../img/projects/bg-card__projects.svg');
        background-size: cover;
        border: 1px solid rgba(255, 255, 255, 0.15);

        img {
            position: absolute;
            top: 2.5rem;
            right: 2.5rem;
            width: 1vw;
            height: 1vw;
        }
    }

    .project-tags {
        position: absolute;
        bottom: 1rem;
        left: 1.5rem;
        display: flex;
        text-align: center;
        gap: 0.8rem;
        z-index: 2;

        span {
            background-color: transparent;
            color: white;
            border: 1px solid white;
            padding: 8px 16px;
            opacity: .8;
            border-radius: 50px;
            font-size: 0.8vw;
            font-weight: 350;
            text-align: center;
            justify-content: center;

            &::before {
                content: none;
            }
        }
    }
}

.mini-cards-container-projects {
    display: flex;
    align-items: center;
    gap: 2vw;
    margin: 1vw 0;

    .mini-card {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 2vw;
        margin-top: 2vw;

        background: #1c1c1c2a;
        border-radius: 20px;

        h3 {
            margin: 0;
            font-size: 2.4vw;
            align-items: center;
            font-weight: 400;
            opacity: .8;
        }

        p {
            margin: 0;
        }
    }
}