.portfolio {
    padding-top: 60px;
    .portfolio-tabs {
        text-align: left;
        margin-bottom: 40px;
        display: flex;
        gap: 10px;
        @media (max-width:767px) {
            gap: 5px;
            flex-flow: row wrap;
        }

        .tab {
            border: none;
            background: transparent;
            color: #999;
            font-size: 14px;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 7px 20px;
            border-radius: 50px;

            &.active {
                color: #fff;
                background-color: var(--primary-color);
            }
        }
    }

    .portfolio-grid {
        display: flex;
        align-items: start;
        gap: 100px;
        flex-flow: row wrap;
        margin-bottom: 60px;

        @media (max-width:992px) {
            gap: 24px;
        }

        .item {
            width: calc(50% - 50px);

            @media (max-width:992px) {
                width: calc(50% - 12px);
            }

            @media (max-width:767px) {
                width: 100%;
            }

            display: flex;
            align-items: center;
            justify-content: center;

            img {
                border-radius: 16px;
            }

            .Cnt {
                margin-top: 25px;
                display: flex;
                align-items: center;
                justify-content: space-between;

                >div {
                    width: 75%;

                    h3 {
                        color: var(--white-color);
                        font-weight: 500;
                        font-size: 24px;
                        margin-bottom: 10px;
                    }
                }

                i {
                    color: var(--white-color);
                    font-size: 20px;
                    background-color: rgba(255, 255, 255, 0.1);
                    width: 90px;
                    height: 90px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    transition: all 0.3s ease;
                }
            }

            &:hover {
                i {
                    background-color: var(--primary-color);
                }
            }


        }

        .item:nth-child(even) {
            margin-top: 80px;

            @media (max-width:576px) {
                margin-top: 0;
            }
        }
    }
}