.photoalbum-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.photoalbum-link__image {
    display: block;
    margin: auto;
}

.photoalbum-link__image-wrapper::before {
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    content: "";
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.photoalbum-link__icon {
    position: absolute;
    width: 25px;
    height: 25px;
    margin: auto;
    right: 10px;
    bottom: 10px;
    opacity: 0.9;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 3;
    fill: #fff;
}

.photoalbum-link:hover .photoalbum-link__image-wrapper::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.photoalbum-link:hover .photoalbum-link__icon {
    opacity: 1;
}

.photoalbum-link__image-wrapper {
    position: relative;
}
.photoalbum-link__title {
    padding: 3px 0;
}
.photoalbum__text {
    margin-bottom: 20px;
}


@media (min-width:992px) {

    .photoalbum-link__icon {
        opacity: 0;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

    .photoalbum-link__image-wrapper::before {
        background-color: rgba(0, 0, 0, 0.05);
    }
}








.photostek .photoalbum__list {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin: 0 -3px;
}

.photostek .photoalbum__item {
    padding: 0 3px 10px;
    width: 50%;
    text-align: center;
}

.photostek .photoalbum-link__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-transform: none;
    margin-top: 5px;
    letter-spacing: normal;
}

@media (min-width: 500px) {
    .photostek .photoalbum__item {
        width: 33.3333%;
    }
}

@media (min-width:768px) {
    .photostek .photoalbum__item {
        width: 25%;
    }
}

@media (min-width:992px) {
    .photostek .photoalbum__item {
        width: 20%;
    }
}

@media (min-width: 1200px) {
    .photostek .photoalbum__item {
        width: 12.5%;
    }
}