﻿.gallery_block1 {
    display: block;
    width: 100%;
    height: 100%
}

    .gallery_block1 .image_container {
        width: 100%;
        padding: 40%;
        background-size: cover;
        background-position: center center;
        border-radius: 3px;
        transition: box-shadow .35s ease;
        position: relative
    }

    .gallery_block1:hover .image_container {
        box-shadow: 1px 1px 10px rgba(0,0,0,.3)
    }

    .gallery_block1 .image_container .count {
        position: absolute;
        top: 10px;
        left: 10px;
        color: white;
        text-shadow: 1px 1px 1px rgba(0,0,0,.2);
        text-align: center;
        width: 70px;
        height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 50%
    }

        .gallery_block1 .image_container .count b {
            display: block;
            font-size: 20px
        }

    .gallery_block1 .content_container h2 {
        width: 100%;
        margin: 10px 0 3px 0;
        padding: 0;
        font-size: 13px;
        font-weight: bold
    }

    .gallery_block1:hover .content_container h2 {
        color: #a87d18
    }

    .gallery_block1 .content_container small {
        width: 100%;
        font-size: 11px;
        color: #909090
    }
