.single-project {
    background: var(--global--color-white);
}

.single-project .action__back--to {
    margin: 0;
}

.single-project .site-main article {
    position: relative;
    margin-top: 80px;
    margin-bottom: 0;
    background: var(--global--color-white);
    padding-bottom: 120px;
}

.single-project article:before {
    content: '';
    width: 320px;
    height: 809px;
    background: url('../images/project-background.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 35px;
    pointer-events: none;
    z-index: 1;
}

.project__content--wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
}

.project__content--wrapper > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.project__content--wrapper > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.project__content--wrapper.no__gallery {
    grid-template-columns: repeat(1, 1fr);
}

/* Project Gallery */
.project__content--gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: calc(100% + 52px);
}

.project__content--gallery-item {
    position: relative;
    overflow: hidden;
}

.project__content--gallery-item img {
    width: 100%;
    height: 397px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.project__content--gallery-item:hover img {
    /* -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); */
}

/* Project Info Section */
.project__content--info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding-left: 52px;
}

.project__content--info-term .project__content--info-item-value {
    color: var(--global--color-black);
}

.project__content--info .project__content--title {
    margin-bottom: 30px;
    color: var(--global--color-cristal-blue);
}

.project__content--info .project__content--info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 21px;
}

.project__content--info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 65px;
}

.project__content--info-item-label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 120px;
}

.project__content--info-item-value {
    color: var(--global--color-drank-grey);
}

/* Related Products List */
.project__content--info-item-value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project__content--info-item-value-list li {
    margin-bottom: 6px;
}

.project__content--info-item-value-list li:last-child {
    margin-bottom: 0;
}

.single-project.no-widgets .site-footer, .site-footer {
    margin-top: 0;
}

@media (min-width: 1440px) {
    .project__content--gallery-item,
    .project__content--gallery-item img {
        max-width: 705px;
        width: 100%;
    }

    .related-projects .container,
    .site-main > article .container {
        max-width: 1484px;
        margin: 0 auto;
    }
}   

@media (max-width: 1024.98px) {
    .project__content--info {
        padding-left: 0;
    }

    .project__content--gallery {
        width: 100%;
    }

    .project__content--info-item {
        gap: 25px;
    }
}

@media (max-width: 991.98px) {
    .project__content--gallery {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }

    .project__content--wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 40px;
    }

    .single-project .site-main article {
        padding-bottom: 60px;
        margin-top: 40px;
    }

    .single-project article:before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .project__content--gallery-item img {
        height: 297px;
    }

    .project__content--info .project__content--info-list {
        gap: 25px;
    }

    .project__content--info-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 8px;
    }

    .project__content--info .project__content--title {
        font-size: 25px;
        line-height: 32px;
    }

    .project__content--gallery {
        gap: 20px;
    }
}

@media (max-width: 570.98px) {
    .project__content--gallery-item img {
        height: 197px;
    }
}