.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    border-radius: 0px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.gallery-container h1 {
    text-align: center;
    margin-top: 70px;
}

.gallery-container p.page-description {
    text-align: center;
    max-width: 800px;
    margin: 25px auto;
    color: #888;
    font-size: 18px;
}

.tz-gallery {
    padding: 10px;
}

.tz-gallery .lightbox {
    display: block;
    overflow: hidden;
    height: 100%;
    max-height: 200px;
}
.tz-gallery .lightbox img {
    width: 100%;
    height: auto;
    min-height: 100%;
    margin-bottom: 1px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}
.tz-gallery .lightbox .image-title,
.audios-pane .audio-item .image-title,
.videos-pane .video-item .image-title  {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    color: #FFFFFF;
    opacity: 0;
    transition: 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    pointer-events: none;
}
.audios-pane .image-title {height: 130px;}
.tz-gallery .lightbox:hover .image-title,
.audios-pane .audio-item:hover .image-title,
.videos-pane .video-item:hover .image-title {
    opacity: 1;
    transition: 0.2s ease-in-out;
}

.tz-gallery img {
    border-radius: 0px;
}

.baguetteBox-button {
    background-color: transparent !important;
}


@media(max-width: 768px) {
    body {
        padding: 0;
    }

    .container.gallery-container {
        border-radius: 0;
    }
}