/*.static__content-inner h1 {
    color: #fff;
}*/
.wall__list {
    /*display: flex;
    flex-flow: row wrap;
    justify-content: start;*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 2px;
}
.wall__item {
    /*margin: 0 1px 1px 0;*/
    transition: .3s;
    /*display: none;*/
    aspect-ratio: 1;
}
.wall__item:nth-child(2n+4) {
    margin-right: 0;
}
.static__content-title h1 {

}
.wall__image {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.wall__date {
    margin: 10px 0 0;
    color: #b9bbc0;
}

.wall__detail-image {
    display: block;
    outline: none;
    text-decoration: none;
    border: 0 none;
    width: 100%;
    text-align: center;
}

.wall_tag {
    font-weight: bold;
    font-size: 14px;
    color: #b9bbc0;
}

.wall_info,
.wall_actions {
    display: flex;
    justify-content: space-between;
    color: #b9bbc0;
}
.wall_actions {
    margin: 5px 0 0;
}
.wall__likes {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}
.wall__likes span {
    color: #b9bbc0;
}
.wall__views {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #b9bbc0;
}
.wall__likes svg {
    height: 18px !important;
    opacity: .5;
    fill: #b9bbc0;
}
.wall__views svg {
    height: 22px !important;
    opacity: .5;
    fill: #b9bbc0;
}
.likeIt {
    border-bottom: 1px dashed #555;
    transition: .3s;
    color: #b9bbc0;
}
.likeIt:hover {
    border-bottom: 1px solid #ef6f2e;
    cursor: pointer;
    color: #ef6f2e;
}
.wall__title {
    color: #b9bbc0 !important;
    font-size: 22px !important;
}
.wall__back {
    color: #b9bbc0;
}
.wall__index {
    padding: 50px 0 0;
}
.contact__grid {
    display: flex;
    justify-content: space-between;
}
.contact__block {
    width: 48%;
}
.row__item_contact {
    flex: 0 0 25%;
    max-width: 25%;
}
.contact__data {
    flex: 0 0 100%;
    max-width: 100%;
}
.static__content-text {
    padding-top: 5px;
}
@media (max-width:992px) {
    .row__item_contact {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .contact__grid {
        flex-direction: column;
    }
    .contact__block {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .row__item_contact {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .wall__list {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .wall__index {
        /*padding: 20px 0 0;*/
    }
    /*.wall__item:nth-child(1n+3) {
        margin-right: 0;
    }
    .wall__item:nth-child(2n+4) {
        margin-right: 1px;
    }*/
}