#about {
    align-items: center;
    background: linear-gradient(180deg, #141414 0%, #000000 100%);
}

.about-container {
    width: 100%;
    display: flex;
    flex-direction: column;

    span {
        width: fit-content;
        margin-bottom: 1rem;
        font-size: .8vw;
        padding: 0.8rem 1rem;
        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;
        }
    }

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

    .about-text-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
        margin-bottom: 4vw;
    }

    p {
        font-size: 1vw;
        opacity: .8;
        max-width: 50%;
        line-height: 1.6;
    }

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

    .about-cards {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 2vw;
        width: 100%;

        h3 {
            font-size: 1.6vw;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #fff;
        }

        p {
            font-size: 1vw;
            font-weight: 300;
            opacity: .8;
            line-height: 1.5;
        }
    }

    .little-card,
    .big-card {
        background: #1c1c1c2a;
        border-radius: 20px;
        padding: 3vw;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 24vw;
        transition: transform 0.3s ease, border-color 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .little-card:nth-child(1) {
        background-color: rgb(255, 255, 255) !important;
        color: black !important;

        h3,
        p {
            color: black;
        }

        img {
            width: 50%;
            position: absolute;
            z-index: 1;
            top: -2vw;
            right: -3vw;
        }
    }

    .card-two {
        align-items: end;
        text-align: right;

        img {
            width: 60%;
            position: absolute;
            left: -10vw;
            bottom: -8vw;
            filter: blur(2px);
            transform: skew(10deg, 0deg);
        }

        a {
            position: absolute;
            bottom: 2vw;
            font-size: .8vw;
        }
    }

    .card-four {
        img {
            width: 40%;
            position: absolute;
            right: -6vw;
            bottom: -8vw;
            transform: skew(10deg, 0deg);
        }

        a {
            position: absolute;
            bottom: 2vw;
            font-size: .8vw;
        }
    }

    .scroll-cv {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
    }

    .cv-container {
        border-radius: 10px;
        width: 100%;
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .circular-text-wrapper {
        position: relative;
        width: 150px;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;

        background: rgba(255, 255, 255, 0.055);
        backdrop-filter: blur(20px);
        border-radius: 50%;
    }


    .circular-text {
        width: 100%;
        height: 100%;
        fill: rgba(255, 255, 255, 0.849);
        font-size: 11px;
        font-weight: 300;
        letter-spacing: 0.95px;
        text-transform: uppercase;
    }

    .circular-text-wrapper {
        a {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: transparent;
            padding: 0;
            border-radius: 0;
            backdrop-filter: none;
            width: auto;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    .logo-center {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }
}