.photo-gallery {
    position: relative;
    color: #292929;
    padding: 130px 50px 50px;
}

.photo-gallery__breadcrumbs {
    position: absolute;
    top: 15px;
    left: 50px;
    display: flex;
    font-family: "Manrope";
    color: #292929;
    font-size: 10px;
    list-style: none;
    z-index: 2;
}

.photo-gallery__breadcrumbs a {
    color: currentColor;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.photo-gallery__breadcrumbs a:after {
    content: '/';
    color: #292929;
    margin: 0 5px;
}

.photo-gallery__breadcrumbs span {
    opacity: 0.5;
}

.photo-gallery__heading {
    font-family: "Bounded";
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 50px;
}

@media (max-width: 1600px) {
    .photo-gallery__heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .photo-gallery {
        padding: 60px 15px;
    }

    .photo-gallery__breadcrumbs {
        left: 15px;
    }

    .photo-gallery__heading {
        font-size: 18px;
        margin-bottom: 35px;
    }
}