.projects-page .hero .title-box-wrapper
{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.projects-main-wrapper
{
    padding: 92px 162px;
    flex-wrap: wrap;
    gap: 26px;
    align-items: flex-start;
}

.projects-main-wrapper .project-category,
.projects-main-wrapper .project-item
{
    flex: 0 1 257px;
    height: 353px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.project-category img,
.project-item img
{
    width: 100%;
    height: calc(100% - 9px);
    object-fit: cover;
}

.project-item .title-wrapper
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px #B89A80;
    background-color: var(--accent);
}
.project-category .title-wrapper
{
    max-width: 80%;
    width: fit-content;
}
.project-category .title-wrapper .title-box
{
    width: 100%;
    padding: 5px 7px;
}
.project-category .title-box::before
{
    --mask-size: 2px;
}

.project-category .title-box h2
{
    font-size: var(--font-size-mid);
}


.detail-content
{
    width: 100%;
    padding: 90px 125px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.detail-content .right-side,
.detail-content .left-side
{
    width: 50%;
}
.detail-content .left-side
{
    padding-right: 30px;
}
.detail-content .left-side img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-content .right-side
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.detail-content .right-side .title-wrapper,
.detail-content .right-side .title-wrapper .title-box
{
    width: fit-content;
}
.detail-content .right-side .title-wrapper .title-box h2
{
    font-size: var(--font-size-big-title);
}

.detail-content .right-side .detailed-text
{
    font-size: var(--font-size-mid);
}

.detail-content .right-side .images
{
    width: 100%;
    height: fit-content;
}

.detail-content .right-side .images .swiper-slide
{
    aspect-ratio: 1;
}

.detailed-text ul
{
    display: block;
    list-style-type: disc;
    padding-left: 1em !important;
}
.detail-content li
{
    display: list-item;
    unicode-bidi: isolate;
    list-style: disc;
}

.images.swiper .swiper-slide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.images.swiper .swiper-slide a {
    height: 100%;
    display: flex
;
    justify-content: center;
    align-items: center;
}