.projects__items {
    max-width: 1066px;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 0px;
}

.project-content__info-items {
    display: grid;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-bottom: 8px;
}

.project-content__info-items--tmpl-1 {
    grid-template-columns: repeat(4, 1fr);
}
.project-content__info-items--tmpl-2 {
    grid-template-columns: 3fr 4fr 5fr;
}
.project-content__info-items--tmpl-3 {
    grid-template-columns: 288px 1fr 288px;
}

.project-content__info-item {
    border-radius: 20px;
    padding: 40px;
    background: #f6f7f9;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-content__info-item--bg-hidden {
    background-color: transparent;
    text-align: center;
    padding: 0;
}

.project-content__info-item-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 145%;
    color: #00275f;
}

.project-content__info-item-subtitle {
    font-size: 14px;
    line-height: 145%;
    color: #00275f;
    span {
        font-weight: 700;
    }
}

.project-content__info-item-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 160%;
    color: #61617e;
}

.project-content__select-t {
    color: #00275f;
    font-size: 20px;
    line-height: 160%;
    span {
        font-weight: 500;
    }
}
.project-content__imgs {
    display: grid;
    grid-template-columns: 1fr 214px 1fr;
    grid-column-gap: 11px;
    grid-row-gap: 11px;
}

.project-content__imgs-item {
    display: flex;
    height: fit-content;
}

@media (max-width: 850px) {
    .project-content__info-items--tmpl-1 {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-content__info-items--tmpl-2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .project-content__info-items--tmpl-3 {
        grid-template-columns: repeat(1, 1fr);
    }
    .project-content__info-item {
        padding: 20px;
    }
    .project-content__imgs {
        width: 100%;
        max-width: 280px;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 550px) {
    .project-content__info-items--tmpl-1 {
        grid-template-columns: repeat(1, 1fr);
    }
}
