.photogallery-block {
	min-height: 500px;
}
.photogallery-albums-list {
	display: grid;
	/* grid-template-columns: repeat(auto-fit, minmax(300px, 440px)); */
	grid-template-columns: repeat(1, 1fr);
	column-gap: 2%;
	row-gap: 20px;
	padding-bottom: 70px;
}
.photogallery-albums-list-item {
    color: #000000;
    display: block;
    position: relative;
    text-decoration: none;
}

.photogallery-albums-list-item-image-container {
    height: 248px;
    position: relative;
}
.photogallery-albums-list-item-image {
    background-color: #eee;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
	border-radius: 15px;
	transition: transform 0.3s ease;
}
.photogallery-albums-list-item-image:hover {
	transform: translate(0px, -5px);
}
.photogallery-albums-list-item-title {
    display: block;
    padding: 10px 5px;
    font-size: 1.25rem;
	font-weight: 600;
	text-decoration: underline solid var(--color-blue-1) 4px;
	text-underline-offset: 8px;
}
.photogallery-albums-list-item-title:hover {
	color: var(--color-light-blue);
}
.photogallery-albums-list-item > a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.photogallery-content {
padding-bottom: 30px;
}

.photogallery-images-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	column-gap: 2%;
	row-gap: 20px;
	padding-bottom: 40px;
}

.photogallery-photo-item {
    display: inline-block;
    height: 250px;
    margin: 2px;
    overflow: hidden;
    position: relative;
	border-radius: 15px
}
.about-company__photogallery .photogallery-images-container {
	grid-auto-flow: column;
	column-gap: 20px;
	overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 0px 20px;
}
.about-company__photogallery .photogallery-photo-item {
	width: 280px;
	height: 190px;
}
.photogallery-photo-item-image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: 1.7s ease-out;
    width: 100%;
    z-index: 1;
}
.photogallery-photo-item:hover .photogallery-photo-item-image {
    transform: scale(1.2);
}
.photogallery-photo-item-title {
    background: rgba(0, 0, 0, .6);
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-size: .75rem;
    left: 0;
    overflow: hidden;
    padding: 5px;
    position: absolute;
    transition: all .2s ease;
    width: 100%;
    z-index: 3;
}
.photogallery-photo-item:hover .photogallery-photo-item-title {
    opacity: 0;
}

.photogallery-request-runner {
    width: 150px;
    height: 10px;
    margin: 20px auto;
    background: url('/static/img/inner/runner.gif') 0 0 repeat-x;
}

.photogallery-load-button-container {
    padding: 20px 0;
    text-align: center;
}

.photogallery-empty-notice {
    padding: 20px 0;
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    color: #d0d0d0;
}

.photogallery-empty-admin-notice {
    padding: 20px 0;
    text-align: center;
    font-size: .875rem;
    line-height: 20px;
}

@media (min-width: 640px) {
	.photogallery-albums-list,
	.photogallery-images-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) {

}
@media (min-width: 1024px) {
	.photogallery-albums-list,
	.photogallery-images-container {
		grid-template-columns: repeat(3, 1fr);
		padding-bottom: 100px;
	}
	.photogallery-content {
		padding: 55px 0;
	}
	.about-company__photogallery {
		box-sizing: border-box;
		margin: 0 auto;
		padding: 0 20px;
		max-width: 1400px;
	}
	.about-company__photogallery .photogallery-images-container {
		overflow-x: visible;
		overflow-y: visible;
		grid-auto-flow: row;
	}
	.about-company__photogallery .photogallery-photo-item {
		height: 250px;
		width: auto;
	}
}