@charset "utf-8";
body {
    /* [disabled]margin-top: 20px; */
    /* [disabled]margin-right: 20px; */
    /* [disabled]margin-bottom: 20px; */
    /* [disabled]margin-left: 20px; */
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
#GridContainer {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-auto-rows: 100p x 300px;
    grid-gap: 10px;
    width: 90%;
    height: auto;
    margin-left: 5%;
    margin-right: 5%;
}
#GridContainer .gallery-container .galleryItem {
    width: 100%;
    height: 100%;
    position: relative;
}
.gallery-container .galleryItem .image {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}
.galleryItem .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: 50% 50%;
	cursor: pointer;
	transition:.5s ease-in-out;
}
.galleryItem:hover .image img {
    transform: scale(1.25);
}
.gallery-container .galleryItem .text {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1rem;
    pointer-events: none;
    z-index: 4;
    transition: .3s ease-in-out;
    display: none;
}
.galleryItem:hover .text {
	opacity:1;
	animation: move-down .3s linear;
	padding: 1em;
	width: 100%;
}
.w-1 {
	grid-column: span 2;
}
.w-2 {
	grid-column: span 4;
}
.w-3 {
	grid-column: span 3;
}




@keyframes move-down {
	0%{
		top:10%;
	}
	50%{
		top:35%;
	}
	100%{
		top:50%;
	}
}
