.et_pb_custom_gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.et_pb_custom_gallery_item_wrapper {
    position: relative;
    background: #000;
}

.et_pb_custom_gallery_item_content {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    padding: 20px;
    transition: all 0.1s ease;
}

.et_pb_custom_gallery_item_content_inner {
    transform: translateY(-10%);
    transition: 0.2s all ease;
}

.et_pb_custom_gallery_item_content:hover {
    opacity: 1;
}

.et_pb_custom_gallery_item_content:hover .et_pb_custom_gallery_item_content_inner {
    transform: translateY(0);
}

.et_pb_custom_gallery_item {
    flex: 0 1 25%;
    padding: 0 5px 10px 5px;
    position: relative;
}

@media all and (max-width: 1100px) {
    .et_pb_custom_gallery_item {
        flex: 0 1 33.3333%;
    }
}

@media all and (max-width: 830px) {
    .et_pb_custom_gallery_item {
        flex: 0 1 50%;
    }
}

@media all and (max-width: 550px) {
    .et_pb_custom_gallery_item {
        flex: 0 1 100%;
    }
}

.et_pb_custom_gallery_item img {
    width: 100%;
    display: block;
}



.gallery_item_title {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.gallery_item_name {
    display: block;
    margin-bottom: 10px;
}

.gallery_item_date {
    font-size: 13px;
    color: #666;
    display: block;
}

.gallery_item_button {
    background: #252525;
    padding: 6px 18px;
    display: inline-block;
    width: auto;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.gallery_item_keywords {
    display: block;
    margin-bottom: 10px;
}

.gallery_item_name:before {
    /*content: "by ";*/
}