.portfolios {
    width: 100%;
    position: relative;
}

.portfolio-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    margin-top: 40px;
}

.portfolios .entry {
    position: relative;
    width: 100%;
    height: auto;
}

.portfolios .entry-header {
    width: 100%;
    height: auto;
    background: var(--primary);
    padding-top: 15px;
    padding-bottom: 15px;
}

.portfolios .entry-header .menu-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 80px;
}

.portfolios .entry-header .menu-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--color-9);
    font-family: var(--font-regular);
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolios .entry-header .menu-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: fit-content;
    margin-left: 6px;
    margin-right: 6px;
}

.portfolios .entry-header a.menu-item:hover {
    text-decoration: underline;
}

.portfolios .entry-wrap {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.portfolios .entry-wrap .media {
    width: 100%;
    height: 100%;
    background: #32313d;
}

.portfolios .entry-wrap .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    appearance: none;
    opacity: 0.4;
}

.portfolios .entry-wrap .media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    appearance: none;
    opacity: 0.4;
}

.portfolios .entry-wrap .content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.portfolios .entry-wrap .content .title {
    font-weight: 800;
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--color-0);
    text-align: left;
    font-family: var(--font-bold);
    margin-bottom: 0;
}

.portfolio-categories {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    overflow-x: auto;
}

.portfolio-category {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 20px;
    padding: 0 15px;
    border: 1px solid var(--primary);
    color: var(--color-8);
    transition: all .2s ease;
    cursor: pointer;
    line-height: 1;
    width: auto;
    height: 35px;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-regular);
    user-select: none;
    border-radius: calc(var(--border-radius) - 4px);
}

.portfolio-category.is-checked {
    background-color: var(--primary);
    color: var(--color-8);
}

.portfolio-category:hover {
    opacity: .8;
}

.portfolio-category:last-child {
    margin-right: 0;
}

.portfolios .row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.portfolio-card {
    width: calc(33.3333% - 28px);
    margin-right: 40px;
    margin-bottom: 40px;
    position: relative;
    color: var(--color-9);
    text-decoration: none;
    transition: all .2s ease;
    overflow: hidden;
}

.portfolio-card:nth-child(3n) {
    margin-right: 0;
}

.portfolio-card .image {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.portfolio-card .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

.portfolio-card .image .view-project {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    visibility: hidden;
    opacity: .8;
    transition: all .2s ease;
    color: var(--color-9);
}

.portfolio-card .image .view-project .name {
    font-size: 16px;
    font-family: var(--font-semibold);
    line-height: 1;
}

.portfolio-card .image .view-project .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.portfolio-card:hover .image .view-project {
    visibility: visible;
}

.portfolio-card .content {
    width: 100%;
    position: relative;
}

.portfolio-card .content .heading {
    margin: 0;
    font-size: 24px;
    font-family: var(--font-semibold);
    line-height: 1;
    margin-bottom: 10px;
}

.portfolio-card .content .paragraph {
    font-size: 15px;
    color: var(--color-7);
    margin: 0;
    line-height: 1.5;
}