.single-gallery-wrapper .single-gallery {
    margin-top: 80px;
    display: flex;justify-content: space-between;
    flex-wrap: wrap;
}

.single-gallery-wrapper .single-gallery .title-wrapper {
    width: 100%;
}

.single-gallery-wrapper .single-gallery .title-wrapper h1 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    color: #000000;
    margin: 20px 0 20px 0;
}

.single-gallery-wrapper .single-gallery .gallery-item {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    max-height: 300px;
}

.single-gallery-wrapper .single-gallery .gallery-item a {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.single-gallery-wrapper .single-gallery .gallery-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .single-gallery-wrapper .single-gallery .gallery-item {
        width: 49%;
        max-height: 300px;
        margin-bottom: 10px;
    }

    .single-gallery-wrapper .single-gallery .gallery-item a {
        height: 100%;
    }

    .single-gallery-wrapper .single-gallery .gallery-item a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .single-gallery-wrapper .single-gallery .gallery-item {
        width: 95%;
        max-height: 300px;
        margin: 0 auto 10px;
    }
}