.photo_gallery {
    /*overflow: hidden;*/
    padding-top: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}


.photo_gallery .named div{
    width: 100%;
    max-width: 288px;
    height: 288px;
    overflow: hidden;
}

.photo_gallery a.named span {
    cursor: pointer;
    margin-top: 10px;
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.photo_gallery a.named span:hover {
    text-decoration: underline;
}

.photo_gallery img {
    display: block;
    width: 100%;
    height: 100%;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    box-shadow: none;
    transition: 0.5s;
}

.photo_gallery img:hover {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.photo_gallery iframe {
    display: block;
    width: 174px;
    height: 174px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    box-shadow: none;
}

.photo_gallery a div:hover {
    box-shadow: 0 0 4px rgba(175, 13, 32, 0.5);
}

div.nav_gallery a {
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

div.nav_gallery a:hover {
    color: #f5f5f5;
}

#results .item {
    width: 120px;
    height: 180px;
    overflow: hidden;
    float: left;
    margin: 5px 5px 5px 5px;
    padding: 5px;
    border: solid 0px;
    cursor: pointer;
}

a.youtube {
    display: inline-block;
    position: relative;
}

.youtube_wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 174px;
    height: 174px;
    z-index: 1;
}

.devider, .divider{
    position: absolute;
}

@media all and (max-width: 640px) {
    body .photo_gallery{justify-content: center;}
}