.photo-gallery {}

.photo-gallery__inner ul {
    display: flex;
    flex-wrap: wrap;

}

.photo-gallery__inner ul li {
    width: 31%;
    margin: 0 1.16%;
    margin-bottom: 45px;
}

.photo-gallery__inner ul li p {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 4px;
}


.photo-gallery__inner ul li img:nth-of-type(2) {
    max-width: 65px;
    margin: 0 auto;
}

@media screen and (max-width:767px) {
    .photo-gallery__inner ul li {
        width: 48%;
        margin: 0 1%;
        margin-bottom: 30px;
    }
    .photo-gallery__inner ul li p {
        font-size: 14px;
    }
    .photo-gallery__inner ul li img:nth-of-type(2) {
        max-width: 45px;
    }

}