.photo-block.container {
    background: white;
    padding: 60px;
    border-radius: 50px;
    margin-top: 20px;
}

.photo-date {
    font-weight: 300;
    font-size: 18px;
    line-height: 150.5%;
    color: rgba(43, 43, 43, 0.7);
}

.photo-date p {
    display: inline-block;
    margin-bottom: 0;
}

.photo-title {
    margin-top: 10px;
    font-weight: 500;
    font-size: 48px;
    line-height: 118%;
    color: #2B2B2B;
}

.photo-count {
    float: right;
}

.gallery {
    margin-top: 40px;
}

.gallery a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.gallery a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    border-radius: 30px;
    opacity: 0;
    transition: .3s;
}

.gallery a::after {
    position: absolute;
    content: url("../img/main/eye.svg");
    left: calc(50% - 28px);
    top: calc(50% - 28px);
    transition: .3s;
    opacity: 0;
}

.gallery a:hover::before,
.gallery a:hover::after {
    opacity: 1;
}

.gallery .col-md-4 {
    height: 218px;
    padding: 15px;
    overflow: hidden;
}