/* about page css */

#about-page-gallery, #about-page-gallery .row, #about-page-gallery .col-12, #project-gallery-1, #project-gallery-2, #project-gallery-3, #project-gallery-4{
	height:fit-content;
}
#about-page-gallery, #project-gallery-1, #project-gallery-2, #project-gallery-3, #project-gallery-4{position: relative;margin-top:60px;}

.lazysliderImageContainer{
	min-width:150px;
	margin:0px 7.5px;
	position:relative;
	height:285px;
	left:0px;
	display:inline-grid;
	box-sizing: border-box;
	overflow:hidden;
	background-color:transparent;
	transition:opacity 0.5s ease;
	
}

.lazyslider-img{
	opacity:0;
    width: 100%;
    position: absolute;
    min-height: 100%;
    transition: opacity 0.5s ease, background-color .5s ease;
    object-fit: cover;
	max-height:100%;
	opacity:.6;
	background-color:#eee;
	
}

.lazyslider-error{
	text-align:center;
	color:red;
	padding:20px;
	font-size:12px;
	font-style:italic;
}
.lazyslider-img.lazyloaded{
	opacity:.3;
	background-color:#fff;
}
.lazysliderImageContainer.center .lazyslider-img.lazyloaded{
	opacity:1;
	cursor:pointer;
	z-index: 100;
}

.lazyslider-container{
	padding: 32px 0px 0px 0px;
	position:relative;
	display:grid;
	flex-flow: nowrap;
    justify-content: center;
    overflow:hidden;
   	grid-auto-flow: column;
}
.lazyslider-arrow-container{
	display:flex;
	flex-flow: nowrap;
    justify-content: center;
    margin:64px 0 0 0;
    opacity:0;
    transition:opacity 0.5s ease;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.lazysliderarrow{
	cursor:pointer;
	position:absolute;
	top:50%;
	transform: translateY(-50%);
    width: 50%;
    height: 100%;
	opacity:.5;
	transition:opacity .3s;
}
.lazysliderarrow:hover{opacity:1;}
.lazysliderarrow.prev{left:0;background-image:url("/images/arrow-prev.png");background-position: right bottom;background-size: 25.5px 37.4px;background-repeat: no-repeat;}
.lazysliderarrow.next{right:0;background-image:url("/images/arrow-next.png");background-position: left bottom;background-size: 25.5px 37.4px;background-repeat: no-repeat;}



.lazyslider-enlarged{
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 99999;
    left: 50%;
   
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.5s ease,height 0.5s ease,width 1s ease;
    object-fit: contain;
    transform: translate(-50%,-50%);
    top: 50%;
    
}
.lazyslider-enlarged.loam{
    width:80%;
}
.lazyslider-enlarge-progress{
	height: 50px;
    width: 50%;
    text-align: center;
    position: absolute;
    z-index: 999999;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size:50px;
    color:black;
}
.lazyslider-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    left: 0%;
    top: 0%;
    cursor: pointer;
}
.lazyslider-overlay.loam {
    background-color: #39362f;
 }   
.lazyslider-overlayed{
	overflow:hidden;
}
.lazyslider-img-details {
    position: fixed;
    width: calc(100% - 53px);
    height: 10%;
    left: 50%;
    top: 0%;
    text-align: center;
    z-index: 999999;
    transform: translate(-50%,0%);
    padding: 5px;
    background-color: #fff;
    cursor: pointer;
    background-image: url(/images/close-dark.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
	opacity:.3 !important;
	transition:opacity .3s;
}
.lazyslider-img-details:hover{opacity:.6 !important;}
.lazyslider-img-details.bottom{
    top: 90%;
    background-color: #39362f;
    background-image: url(/images/close.svg);
}
.lazyslider-enlarge-container {
    height: 80vh;
    overflow: hidden;
    width: 100vw;
    position: fixed;
    top: 10%;
    left: 0px;
    z-index: 99999;
}
.lazyslider-enlarge-arrows {
    position: fixed;
    width: 100%;
    left: 50%;
    bottom: 0%;
    text-align: center;
    z-index: 999999;
    transform: translate(-50%,0%);
    padding: 5px;
    background-color: #fff;
    opacity:1;
    cursor:pointer;
	height:10vh;
}
.lazyslider-enlarge-arrows .lazysliderarrow {
    position: relative;
    transform: translate(0%,-50%);
    top: 50%;
	filter:brightness(0.9);
    opacity:1;
	width:40%;
	transition:filter .3s;
	background-size:contain;
}
.lazyslider-close-enlarge{
	height:20px;
}
.lazyslider-enlarge-arrows .lazysliderarrow.next{left:10%;right:auto;object-position: right;height:36px;}
.lazyslider-enlarge-arrows .lazysliderarrow.prev{right:10%;left:auto;object-position: left;height:36px;}
.lazyslider-enlarge-arrows .lazysliderarrow:hover{filter:brightness(.6);}

@media screen and (max-width:850px) , screen and (max-height: 850px) {
    .lazysliderImageContainer{
        width:125px;
        min-width:125px;
        height:185px;
        margin: 0px 3px;
        
    }
    .lazyslider-img {
        height: 100%;
        width:auto;
        position: relative;
        object-fit: cover;
    }

}