.breadcrumbs-play{
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}
.portfolio-list{
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
}
.video-item{
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ECECEC;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 195px auto 1fr;
    align-items: flex-start;
    background: #FAFAFC;
    font-size: 18px;
    height: auto;
}
.video-item>*{
    pointer-events: none;
}
.video-item_img{
    grid-area: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-item_play{
    grid-area: 1/1;
    width: 90px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
}
.video-item_play :where(img, svg){
    width: 33%;
    height: auto;
    object-fit: contain;
    transform: translate(10%, 0);
}
.video-item_play path{
    fill: #5B758E;
}
.video-item_content{
    padding: 12px;
}
.video-item_title{
    font-weight: 700;
    line-height: 1.2em;
}
.video-item_txt{
    margin: 5px 0 0 0;
    line-height: 1.2em;
}
.project{
    display: grid;
    grid-template-columns: 660px 1fr;
    background: var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
    height: 375px;
    grid-template-rows: 375px;
}
.project.full{
    height: auto;
    grid-template-rows: auto;
}
.project.full .project_info{
    padding: 20px 20px 60px 20px;
}
.project_img-wrapper{
    position: relative;
}
.project_tag-wrapper{
    display: flex;
    gap: 10px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.project_tag{
    color: white;
    font-size: 13px;
    font-weight: 600;
    background: #D91A46;
    padding: 0 .5em;
}
.project_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project_info{
    padding: 40px;
    position: relative;
}
.project_name{
    margin: 0 0 1em 0;
}
.project_info>*{
    display: block;
}
.project_show-full-txt{
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: var(--gray);
    font-size: 14px;
    border-radius: 0;
}
.project_cost{
    font-size: 10px;
    color: #515151;
    margin: 10px 0 30px;
}
.project_props-list{
    font-size: 15px;
    margin: 30px 0;
    display: grid;
    grid-gap: 10px;
}
.project_prop-title{
    color: #8F8F8F;
}
.project_prop-item{
    display: flex;
    gap: 1em;
}
.project_more{
    font-size: 14px;
}
.load-projects{
    color: var(--gray);
    background: none;
    padding: 0;
    margin: 50px auto;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    gap: 1em;
}
.load-projects svg{
    transform: rotate(90deg);
    width: 1em;
    height: 1em;
}

.order-project{
    --img-width: 280px;
    display: flex;
}
.order-project_img-author{
    flex-shrink: 0;
    margin: -30px calc((var(--img-width)/2) * -1) -30px 0;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-project_author-info{
    text-align: right;
    display: grid;
    grid-gap: 50px;
}
.order-project_author-info-block{
    display: grid;
    grid-gap: .5em;
}
.order-project_author-info-block>*:nth-child(1){
    font-weight: 700;
}
.order-project_img{
    width: var(--img-width);
    height: var(--img-width);
    border-radius: 50%;
    object-fit: cover;
}
.order-project_txt{
    background: var(--blue);
    color: white;
    border-radius: 6px;
    padding: 40px 40px 40px calc((var(--img-width)/2) + 35px);
}
.order-project_order{
    background: var(--black);
    font-size: 12px;
    width: 100%;
    max-width: 260px;
}
.order-project{
    margin: 80px 0 115px;
}

.review-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
.feedback-gallery .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.feedback-gallery img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
@media(max-width: 1024px){
    .project{
        grid-template-columns: 1fr 1fr;
    }
    .review-grid{
        grid-template-columns: 100%;
    }
    .order-project{
        display: grid;
        grid-gap: 1em;
        --img-width: 150px;
    }
    .order-project_img-author{
        margin: 0 auto;
        flex-direction: row-reverse;
    }
    .order-project_txt{
        padding: 20px;
    }
    .order-project_author-info{
        text-align: left;
        grid-gap: 2em;
    }
    .feedback-gallery .container{
        grid-template-columns: 1fr;
    }
}
@media(max-width: 600px){
    .portfolio-list{
        gap: 24px;
        grid-template-columns: 100%;
    }
    .project{
        grid-template-columns: 100%;
        grid-template-rows: 150px 225px;
        height: auto;
    }
    .project.full{
        grid-template-rows: 150px auto;
        max-height: 100%;
    }
    .project_img-wrapper{
        height: auto;
    }
    .project_info{
        padding: 20px;
    }
    .video-item{
        grid-template-rows: 170px auto 1fr;
        font-size: 14px;
    }
    .video-item_play{
        width: 55px;
    }
}